]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/hw.h
installer: Add support to install on EFI systems
[ipfire-2.x.git] / src / installer / hw.h
CommitLineData
f0fa1795
MT
1/*#############################################################################
2# #
3# IPFire - An Open Source Firewall Distribution #
4# Copyright (C) 2014 IPFire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19#############################################################################*/
20
21#ifndef HEADER_HW_H
22#define HEADER_HW_H
23
24#include <libudev.h>
25
25fcce25 26#define DESTINATION_MOUNT_PATH "/harddisk"
fb76fc51
MT
27#define SOURCE_MOUNT_PATH "/cdrom"
28#define SOURCE_TEST_FILE SOURCE_MOUNT_PATH "/" DISTRO_SNAME "-" DISTRO_VERSION ".media"
f0fa1795 29
d7dd283b
MT
30#define HW_MAX_DISKS 32
31#define STRING_SIZE 1024
32#define DEV_SIZE 128
33
25fcce25 34#define HW_PATH_BOOT "/boot"
92e78233 35#define HW_PATH_BOOT_EFI "/boot/efi"
25fcce25
MT
36#define HW_PATH_DATA "/var"
37
d7dd283b
MT
38#define HW_PART_TYPE_NORMAL 0
39#define HW_PART_TYPE_RAID1 1
40
25fcce25
MT
41#define HW_PART_TABLE_MSDOS 0
42#define HW_PART_TABLE_GPT 1
43
44#define HW_FS_SWAP 0
45#define HW_FS_REISERFS 1
46#define HW_FS_EXT4 2
47#define HW_FS_EXT4_WO_JOURNAL 3
70a44b52 48#define HW_FS_XFS 4
92e78233 49#define HW_FS_FAT32 5
25fcce25
MT
50
51#define HW_FS_DEFAULT HW_FS_EXT4
52
7b4790d3
MT
53#define RAID_METADATA "1.0"
54
9dd16c6d
MT
55#define SERIAL_BAUDRATE 115200
56
25fcce25
MT
57#define BYTES2MB(x) ((x) / 1024 / 1024)
58#define MB2BYTES(x) ((unsigned long long)(x) * 1024 * 1024)
59
f0fa1795
MT
60struct hw {
61 struct udev *udev;
92e78233 62 char arch[STRING_SIZE];
5fb499f1 63 int efi;
f0fa1795
MT
64};
65
d7dd283b
MT
66struct hw_disk {
67 char path[DEV_SIZE];
68 unsigned long long size;
69
70 char description[STRING_SIZE];
71 char vendor[STRING_SIZE];
72 char model[STRING_SIZE];
73
74 // Reference counter
75 int ref;
76};
77
78struct hw_destination {
79 char path[DEV_SIZE];
d7dd283b
MT
80
81 int is_raid;
4a0d9bef 82 int raid_level;
d7dd283b
MT
83 const struct hw_disk* disk1;
84 const struct hw_disk* disk2;
85
25fcce25 86 int part_table;
48d6a112 87 char part_bootldr[DEV_SIZE];
d7dd283b 88 char part_boot[DEV_SIZE];
92e78233 89 char part_boot_efi[DEV_SIZE];
d7dd283b
MT
90 char part_swap[DEV_SIZE];
91 char part_root[DEV_SIZE];
25fcce25 92 int part_boot_idx;
92e78233 93 int part_boot_efi_idx;
25fcce25
MT
94
95 int filesystem;
96
97 unsigned long long size;
48d6a112 98 unsigned long long size_bootldr;
25fcce25 99 unsigned long long size_boot;
92e78233 100 unsigned long long size_boot_efi;
25fcce25
MT
101 unsigned long long size_swap;
102 unsigned long long size_root;
d7dd283b
MT
103};
104
f0fa1795
MT
105struct hw* hw_init();
106void hw_free(struct hw* hw);
107
25fcce25 108int hw_mount(const char* source, const char* target, const char* fs, int flags);
f0fa1795
MT
109int hw_umount(const char* target);
110
111char* hw_find_source_medium(struct hw* hw);
112
ee00d203 113struct hw_disk** hw_find_disks(struct hw* hw, const char* sourcedrive);
d7dd283b 114void hw_free_disks(struct hw_disk** disks);
335c5bd1 115unsigned int hw_count_disks(const struct hw_disk** disks);
d7dd283b 116struct hw_disk** hw_select_disks(struct hw_disk** disks, int* selection);
a3e135c8 117struct hw_disk** hw_select_first_disk(const struct hw_disk** disks);
d7dd283b 118
92e78233 119struct hw_destination* hw_make_destination(struct hw* hw, int part_type, struct hw_disk** disks,
a8fca245 120 int disable_swap);
25fcce25 121
c4e96674
MT
122unsigned long long hw_memory();
123
46b56e20
MT
124int hw_create_partitions(struct hw_destination* dest, const char* output);
125int hw_create_filesystems(struct hw_destination* dest, const char* output);
25fcce25
MT
126
127int hw_mount_filesystems(struct hw_destination* dest, const char* prefix);
128int hw_umount_filesystems(struct hw_destination* dest, const char* prefix);
129
d78fffa0 130int hw_destroy_raid_superblocks(const struct hw_destination* dest, const char* output);
46b56e20
MT
131int hw_setup_raid(struct hw_destination* dest, const char* output);
132int hw_stop_all_raid_arrays(const char* output);
4a0d9bef 133
92e78233 134int hw_install_bootloader(struct hw* hw, struct hw_destination* dest, const char* output);
7f69d8a4 135int hw_write_fstab(struct hw_destination* dest);
f5007e9c 136
38c6822d
MT
137char* hw_find_backup_file(const char* output, const char* search_path);
138int hw_restore_backup(const char* output, const char* backup_path, const char* destination);
139
335c5bd1
MT
140int hw_start_networking(const char* output);
141
282ec35e
MT
142void hw_sync();
143
f0fa1795 144#endif /* HEADER_HW_H */