calamares/src/modules/grubcfg/main.py

227 lines
7.7 KiB
Python
Raw Normal View History

2014-08-19 14:57:22 +02:00
#!/usr/bin/env python3
2015-02-18 15:06:10 +01:00
# -*- coding: utf-8 -*-
#
2014-08-19 14:57:22 +02:00
# === This file is part of Calamares - <http://github.com/calamares> ===
#
2015-02-21 10:24:13 +01:00
# Copyright 2014-2015, Philip Müller <philm@manjaro.org>
# Copyright 2015-2017, Teo Mrnjavac <teo@kde.org>
# Copyright 2017, Alf Gaida <agaida@siduction.org>
# Copyright 2017, Adriaan de Groot <groot@kde.org>
# Copyright 2017, Gabriel Craciunescu <crazy@frugalware.org>
2014-08-19 14:57:22 +02:00
#
2015-02-18 15:37:03 +01:00
# Calamares is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2014-08-19 14:57:22 +02:00
#
2015-02-18 15:37:03 +01:00
# Calamares is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2014-08-19 14:57:22 +02:00
#
2015-02-18 15:37:03 +01:00
# You should have received a copy of the GNU General Public License
# along with Calamares. If not, see <http://www.gnu.org/licenses/>.
2014-08-19 14:57:22 +02:00
import libcalamares
import os
import re
2014-08-19 14:57:22 +02:00
2014-08-19 14:57:22 +02:00
def modify_grub_default(partitions, root_mount_point, distributor):
"""
Configures '/etc/default/grub' for hibernation and plymouth.
2015-02-20 20:54:25 +01:00
@see bootloader/main.py, for similar handling of kernel parameters
2015-02-20 20:54:25 +01:00
:param partitions:
:param root_mount_point:
:param distributor:
:return:
"""
2014-08-19 14:57:22 +02:00
default_dir = os.path.join(root_mount_point, "etc/default")
default_grub = os.path.join(default_dir, "grub")
2015-02-17 14:38:30 +01:00
distributor_replace = distributor.replace("'", "'\\''")
dracut_bin = libcalamares.utils.target_env_call(
["sh", "-c", "which dracut"]
)
2017-09-04 12:42:51 +02:00
have_dracut = dracut_bin == 0 # Shell exit value 0 means success
2014-08-19 15:46:36 +02:00
use_splash = ""
swap_uuid = ""
swap_outer_uuid = ""
swap_outer_mappername = None
2014-08-19 14:57:22 +02:00
if libcalamares.globalstorage.contains("hasPlymouth"):
if libcalamares.globalstorage.value("hasPlymouth"):
use_splash = "splash"
2014-08-19 14:57:22 +02:00
cryptdevice_params = []
2017-09-04 12:42:51 +02:00
if have_dracut:
for partition in partitions:
has_luks = "luksMapperName" in partition
if partition["fs"] == "linuxswap" and not has_luks:
swap_uuid = partition["uuid"]
if (partition["fs"] == "linuxswap" and has_luks):
swap_outer_uuid = partition["luksUuid"]
swap_outer_mappername = partition["luksMapperName"]
if (partition["mountPoint"] == "/" and has_luks):
cryptdevice_params = [
"rd.luks.uuid={!s}".format(partition["luksUuid"])
]
else:
for partition in partitions:
has_luks = "luksMapperName" in partition
if partition["fs"] == "linuxswap" and not has_luks:
swap_uuid = partition["uuid"]
if (partition["mountPoint"] == "/" and has_luks):
cryptdevice_params = [
"cryptdevice=UUID={!s}:{!s}".format(
partition["luksUuid"], partition["luksMapperName"]
),
"root=/dev/mapper/{!s}".format(
partition["luksMapperName"]
),
"resume=/dev/mapper/{!s}".format(
partition["luksMapperName"]
)
]
kernel_params = ["quiet"]
2015-06-14 12:56:56 +02:00
if cryptdevice_params:
kernel_params.extend(cryptdevice_params)
if use_splash:
kernel_params.append(use_splash)
2015-06-14 12:56:56 +02:00
if swap_uuid:
kernel_params.append("resume=UUID={!s}".format(swap_uuid))
2014-08-19 14:57:22 +02:00
if have_dracut and swap_outer_uuid:
kernel_params.append("rd.luks.uuid={!s}".format(swap_outer_uuid))
if have_dracut and swap_outer_mappername:
kernel_params.append("resume=/dev/mapper/{!s}".format(
swap_outer_mappername))
distributor_line = "GRUB_DISTRIBUTOR='{!s}'".format(distributor_replace)
2014-08-19 14:57:22 +02:00
if not os.path.exists(default_dir):
os.mkdir(default_dir)
have_kernel_cmd = False
have_distributor_line = False
if "overwrite" in libcalamares.job.configuration:
overwrite = libcalamares.job.configuration["overwrite"]
else:
overwrite = False
if os.path.exists(default_grub) and not overwrite:
with open(default_grub, 'r') as grub_file:
lines = [x.strip() for x in grub_file.readlines()]
for i in range(len(lines)):
if lines[i].startswith("#GRUB_CMDLINE_LINUX_DEFAULT"):
kernel_cmd = "GRUB_CMDLINE_LINUX_DEFAULT=\"{!s}\"".format(
" ".join(kernel_params)
)
lines[i] = kernel_cmd
have_kernel_cmd = True
elif lines[i].startswith("GRUB_CMDLINE_LINUX_DEFAULT"):
regex = re.compile(r"^GRUB_CMDLINE_LINUX_DEFAULT\s*=\s*")
line = regex.sub("", lines[i])
line = line.lstrip()
line = line.lstrip("\"")
line = line.lstrip("'")
line = line.rstrip()
line = line.rstrip("\"")
line = line.rstrip("'")
existing_params = line.split()
for existing_param in existing_params:
existing_param_name = existing_param.split("=")[0]
2015-06-14 12:56:56 +02:00
# the only ones we ever add
if existing_param_name not in [
"quiet", "resume", "splash"]:
kernel_params.append(existing_param)
kernel_cmd = "GRUB_CMDLINE_LINUX_DEFAULT=\"{!s}\"".format(
" ".join(kernel_params)
)
lines[i] = kernel_cmd
have_kernel_cmd = True
elif (lines[i].startswith("#GRUB_DISTRIBUTOR")
or lines[i].startswith("GRUB_DISTRIBUTOR")):
lines[i] = distributor_line
have_distributor_line = True
else:
lines = []
2015-06-14 12:56:56 +02:00
if "defaults" in libcalamares.job.configuration:
for key, value in libcalamares.job.configuration[
"defaults"].items():
if value.__class__.__name__ == "bool":
if value:
escaped_value = "true"
else:
escaped_value = "false"
else:
escaped_value = str(value).replace("'", "'\\''")
2015-06-14 12:56:56 +02:00
lines.append("{!s}='{!s}'".format(key, escaped_value))
if not have_kernel_cmd:
kernel_cmd = "GRUB_CMDLINE_LINUX_DEFAULT=\"{!s}\"".format(
" ".join(kernel_params)
)
lines.append(kernel_cmd)
2014-08-19 14:57:22 +02:00
if not have_distributor_line:
lines.append(distributor_line)
2014-08-19 14:57:22 +02:00
if cryptdevice_params:
lines.append("GRUB_ENABLE_CRYPTODISK=y")
2014-08-19 14:57:22 +02:00
with open(default_grub, 'w') as grub_file:
grub_file.write("\n".join(lines) + "\n")
return None
2014-08-19 14:57:22 +02:00
2015-02-18 15:37:03 +01:00
2014-08-19 14:57:22 +02:00
def run():
"""
Calls routine with given parameters to modify '/etc/default/grub'.
2015-02-20 20:54:25 +01:00
:return:
"""
fw_type = libcalamares.globalstorage.value("firmwareType")
if (libcalamares.globalstorage.value("bootLoader") is None
and fw_type != "efi"):
return None
2014-08-19 14:57:22 +02:00
partitions = libcalamares.globalstorage.value("partitions")
if fw_type == "efi":
esp_found = False
for partition in partitions:
if (partition["mountPoint"]
== libcalamares.globalstorage.value("efiSystemPartition")):
esp_found = True
if not esp_found:
return None
2014-08-19 14:57:22 +02:00
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
branding = libcalamares.globalstorage.value("branding")
distributor = branding["bootloaderEntryName"]
2015-06-14 12:56:56 +02:00
return modify_grub_default(partitions, root_mount_point, distributor)