]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/install-bootloader
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / src / installer / install-bootloader
CommitLineData
ff3bae7b
MT
1#!/bin/bash
2############################################################################
3# #
4# This file is part of the IPFire Firewall. #
5# #
6# IPFire 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 2 of the License, or #
9# (at your option) any later version. #
10# #
11# IPFire 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 IPFire; if not, write to the Free Software #
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
20# Copyright (C) 2014 IPFire Team <info@ipfire.org>. #
21# #
22############################################################################
23
c1397b7a 24GRUB_INSTALL_ARGS="--no-floppy --recheck --force"
ff3bae7b 25
5946f1f9
MT
26function find_bootloader_device() {
27 local mp
28 for mp in /boot /; do
29 if find_device "${mp}"; then
30 return 0
31 fi
32 done
33
34 return 1
35}
36
37function find_device() {
38 local mountpoint="${1}"
ff3bae7b
MT
39
40 local root
41 local dev mp fs flags rest
42 while read -r dev mp fs flags rest; do
43 # Skip unwanted entries
44 [ "${dev}" = "rootfs" ] && continue
45
5946f1f9 46 if [ "${mp}" = "${mountpoint}" ] && [ -b "${dev}" ]; then
ff3bae7b
MT
47 root="$(basename "${dev}")"
48 break
49 fi
50 done < /proc/mounts
51
52 # Get the actual device from the partition that holds /
5946f1f9
MT
53 while [ -n "${root}" ]; do
54 if [ -e "/sys/block/${root}" ]; then
eadde44b 55 echo "/dev/${root}"
5946f1f9
MT
56 return 0
57 fi
58
59 # Remove last character
60 root="${root::-1}"
61 done
ff3bae7b
MT
62
63 return 1
64}
65
5946f1f9 66function device_is_mdraid() {
ff3bae7b
MT
67 local device="${1}"
68
eadde44b 69 [ -d "/sys/block/${device/\/dev/}/md" ]
ff3bae7b
MT
70}
71
72function mdraid_get_slaves() {
73 local device="${1}"
74
75 local slave
eadde44b
MT
76 for slave in /sys/block/${device/\/dev/}/slaves/*; do
77 echo "/dev/$(basename "${slave}")"
ff3bae7b
MT
78 done 2>/dev/null
79}
80
81function grub_update_config() {
82 echo "Updating configuration..."
83
84 if ! grub-mkconfig -o /boot/grub/grub.cfg &>/dev/null; then
85 echo "Could not update configuration. Aborting." >&2
86 return 1
87 fi
88
89 return 0
90}
91
92function grub_install() {
93 local device="${1}"
94
95 echo "Installing GRUB on ${device}..."
96
97 if [ ! -b "${device}" ]; then
98 echo "${device} does not exist or is not a block device" >&2
99 return 1
100 fi
101
c1397b7a
MT
102 local arches
103 case "$(uname -m)" in
104 aarch64)
105 arches="arm64-efi"
106 ;;
c1397b7a
MT
107 x86_64)
108 arches="i386-pc x86_64-efi"
109 ;;
110 esac
111
112 local arch
113 for arch in ${arches}; do
114 local args="--target=${arch}"
115
116 case "${arch}" in
117 *-efi)
118 # Skip all EFI architectures if no EFI partition exists
119 if [ ! -d "/boot/efi" ]; then
120 continue
121 fi
122
123 args="${args} --efi-directory=/boot/efi"
124
125 # Don't try to modify the BIOS when we are
126 # not running on EFI right now
127 if [ ! -d "/sys/firmware/efi" ]; then
128 args="${args} --no-nvram"
129 fi
130 ;;
131 esac
132
133 local removable
134 for removable in "" "--removable"; do
135 if ! grub-install ${GRUB_INSTALL_ARGS} ${args} \
136 ${removable} "${device}" &>/dev/null; then
137 echo "Could not install GRUB on ${device}" >&2
138 return 1
139 fi
140
141 # Do not try to install with --removable for non-efi architectures
142 [[ "${arch}" =~ \-efi$ ]] || break
143 done
ff3bae7b
MT
144 done
145
c1397b7a 146 return 0
ff3bae7b
MT
147}
148
149function main() {
eadde44b
MT
150 local device="${1}"
151
ff3bae7b 152 # Find the root device
ff3bae7b 153 if [ -z "${device}" ]; then
eadde44b
MT
154 device="$(find_bootloader_device)"
155 if [ -z "${device}" ]; then
156 echo "Could not find root device. Aborting." >&2
157 return 1
158 fi
159
160 echo "Found bootloader device: ${device}"
ff3bae7b
MT
161 fi
162
eadde44b
MT
163 if [ ! -b "${device}" ]; then
164 echo "${device} does not exist" >&2
165 return 2
166 fi
ff3bae7b
MT
167
168 # Update configuration files
eadde44b 169 grub_update_config || return $?
ff3bae7b
MT
170
171 # Handle mdraid devices
5946f1f9 172 if device_is_mdraid "${device}"; then
ff3bae7b
MT
173 local slave
174 for slave in $(mdraid_get_slaves "${device}"); do
4c68bcb5 175 grub_install "${slave}" || return $?
ff3bae7b
MT
176 done
177
178 # Handle normal block devices
179 else
4c68bcb5 180 grub_install "${device}" || return $?
ff3bae7b
MT
181 fi
182
183 return 0
184}
185
186# Run main function
eadde44b 187main "$@" || exit $?