Commit Graph

333 Commits (55fadef718711ad6ddfc3fc29380a4cf0dddc38e)
 

Author SHA1 Message Date
Alejandro Sirgo Rica 55fadef718 utils: drop ogCopyEfiBootLoader script
Implement a Python equivalent of ogCopyEfiBootLoader as the
function copy_efi_bootloader. This function copies the contents of
the folder of the EFI loader in the ESP into a ogBoot folder at
the root of the partition target of an image creation.
copy_efi_bootloader is a Windows only functionality.
2024-03-26 13:32:58 +01:00
Alejandro Sirgo Rica 57787dab54 live: improve lzop and partclone error handling
Control non 0 returncode of the lzop and partclone subprocess
in image creation and restoration because this means that either
lzop or partclone has failed.
The implementation must cover cases such as not enough storage
space and log errors into /tmp/command.log and the log file of
the client handling the request.
Check the returncode of lzop and partclone subprocesses and
log the stderr of the process reporting non zero returncode.
2024-03-26 13:32:48 +01:00
Alejandro Sirgo Rica 16dcc9b25b live: improve logging in image_create
Log the whole context of the error when an exception happens.
The previous exception handling was hidding important information
about the cause of the error.
2024-03-26 13:23:04 +01:00
Alejandro Sirgo Rica 97647c32aa utils: add enforce_gpt argument to get_efi_partition()
The Windows bootloader only supports a UEFI boot from a GPT
partition. Set enforce_gpt to True in every codepath related to
Windows. When enforce_gpt is set to True get_efi_partition()
raises an exception when an MBR partition scheme is detected.
2024-03-26 13:23:04 +01:00
Alejandro Sirgo Rica 42791a1a7c revert 7f18485: improve uefi detection mechanism
Make is_uefi_supported() only check for /sys/firmware/efi as
get_efi_partition() will detect a missing ESP or an invalid
partition scheme. Stop using get_efi_partition() inside
is_uefi_supported() as the former is eventually called in every
UEFI related code.
UEFI supports both MBR and GPT as partition schemes and this is
a required change to handle the particular case of Windows not
being able to boot UEFI from a MBR partition scheme.
2024-03-26 13:15:58 +01:00
Alejandro Sirgo Rica 049b7a5a2b src: make exception messages more contextual and explicit
Provide more information in exception messages as those are the
source of the logging messages. Add information about paths, files
or configuration related to the operation associated to the
exception.
2024-03-21 10:29:57 +01:00
Alejandro Sirgo Rica 8741b2e272 src: change generic exception types to be more explicit
Replace exception types to be more explicit about the nature of
the error.
Improve the exception raising semantics by using the 'from' keyword,
this wraps an older exception into a new one so it is still considered
the same object.
2024-03-21 10:29:57 +01:00
Alejandro Sirgo Rica 167fd29634 utils: fix string not being defined as f-strings when they should
Add the string prefix f'' to string instances formated as f-string
but not properly constructed to expand the inline variables.
2024-03-21 10:29:57 +01:00
Alejandro Sirgo Rica 657af13351 virtual: add missing check=True to subprocess.run()
Raise exception from subprocess.run() calls as previous code is
trying to capture these exceptions to handle de errors.
2024-03-21 10:29:57 +01:00
Alejandro Sirgo Rica 2a4ce65a20 src: centralize error logging into send_internal_server_error
Use only the exception messages as the main resource for error
messages.
The previous error code had string duplication in the form of:
	logging.error('msg here')
	raise Exception('msg here')

That approach also has the downside of having log duplication as
it had the local logging.err() and a global logging.exception()
inside send_internal_server_error capturing the exception message.
The actual code only requires raising an exception with a proper
error message.
Improve exception messages to give more error context.
Log every AssertionError as a backtrace.
Use the 'raise Exception from e' syntax to modify the a previously
raised exception 'e' into an exception with aditional context or
different type. This also prevents the message that warns about
newer exceptions being launch after an initial exception.
2024-03-21 10:29:57 +01:00
Alejandro Sirgo Rica 0cbf16461e ogclient: consolidate logging in client core
The main function must be able to handle the login of critical
error in the main ogClient class instance. Add a try except block
to the ogCLient run logic and move the relevant  error logs into
the except block.
Delegate the error messages to the exception message. This is the
first step towards error message deduplication.
2024-03-21 10:29:57 +01:00
Alejandro Sirgo Rica 8012562302 utils: implement BIOS boot for windows
Create ogboot.me and ogboot.secondboot as empty files and
ogboot.firstboot with the value "iniciado" in the root of
the BIOS Windows system partition.
The files must contain data for GRUB to be able to write content,
therefore these are created containing 3072 null bytes.
The Windows boot process is handled by the "pxe" profile.
There the files ogboot.me, ogboot.firstboot and ogboot.secondboot
are used as a state machine to chose between booting Windows and
ogLive.
The first Windows boot happens if ogboot.me and ogboot.firstboot
are identical, then "iniciado" is written in ogboot.firstboot.
We skip this stage as we create ogboot.firstboot with 'iniciado'.
The second Windows boot occurs if ogboot.me and ogboot.secondboot
are boot identical, then "iniciado" is written in ogboot.secondboot.
After the Windows boot ogLive is booted.
2024-03-21 10:29:21 +01:00
Alejandro Sirgo Rica ddf08779ae utils: add disk index checks in get_partition_device
Control the possibility of a bad disk index. Handle the checks in
a similar fashion to the get_efi_partition function.
2024-03-21 10:29:13 +01:00
Alejandro Sirgo Rica a3ffdf2370 utils: implement BIOS boot for Linux
Create a bios.py file to hold all the BIOS specific functions.
Implement the _boot_bios_linux in Python. The new boot process
tries to find the vmlinuz and initrd binaries at the desired
partition. Then it tries to load them with kexec with the proper
Grub boot params.
One step closer to the removal of the boot legacy script.
2024-03-21 10:29:13 +01:00
Alejandro Sirgo Rica 37600660f3 live: check if cache partition is available before calling tiptorrent
The image restore command must check if the cache partition is
available. Otherwise if the user forgets to create the cache
tiptorrent fails.
2024-03-21 10:29:06 +01:00
Alejandro Sirgo Rica 52ab38fc28 utils: handle exceptions caused by the hivex package
The mage creation process was being interrupted by an error
trying to read the Windows registry by the Hivex library.
Now the exceptions are handled and an error is reported.
2024-03-08 13:03:33 +01:00
Alejandro Sirgo Rica f5501aac91 utils: implement linux distro id detection
The OS probe logic must be able to check a distro programmatically,
add get_linux_distro_id to return an id whitout versioning.
Ensure the availability of 'ubuntu' when we need to ensure certain
features are only used with a supported system.
2024-03-08 13:03:33 +01:00
Alejandro Sirgo Rica 4d4171e459 utils: move all boot from OS functionality into boot.py
This change is a preparative for reimplementing the BIOS boot
in order to deprecate the legacy script. All the codepaths to
boot systems located at a partition are now called from the
boot_os_at function enabling an easier structure for the incoming
code.
2024-03-08 13:03:00 +01:00
Alejandro Sirgo Rica 7f18485eff utils: improve uefi detection mechanism
Checking the existence /sys/firmware/efi as it might appear
sometimes in BIOS installs if the BIOS configuration is not
proper. Checking for the EFI partition is the safest method
to veryfy the install type.
2024-03-08 12:43:10 +01:00
Alejandro Sirgo Rica 9970c8e33d utils: handle missing file in getlinuxversion function
The function getlinuxversion receives a path to the os-release
file. The case of not being able to open it was not handled and
thus causing an unwanted exception.
2024-03-08 12:43:10 +01:00
Alejandro Sirgo Rica aa34704b4d utils: improve logging in the get_efi_partition function
Log each partition that gets checked and make the exception messages
more informative.
2024-03-08 12:43:01 +01:00
OpenGnSys Support Team 673cada250 uefi: update EFIBOOTMGR_BIN to use /opt/opengnsys/sbin/efibootmgr
debian package with json support provides the binary through this path, update it.
2024-03-05 15:37:34 +01:00
Alejandro Sirgo Rica 8e8ed280f9 uefi: define EFIBOOTMGR_BIN to ease changing the efibootmgr binary
The json functionality proposed upstream might be merged one day
in efibootmgr so deploying a fork would not be needed anymore.
This change aims to ease the migration once that day comes.
2024-03-04 11:33:10 +01:00
Alejandro Sirgo Rica 66941e9f79 live: drop IniciarSesion script when uefi booting into linux
Replace IniciarSesion script in favor of native Python code when booting
a UEFI system into Linux. This completes the implementation of booting
into an OS on a UEFI compliant system.
2024-03-04 11:33:10 +01:00
Jose M. Guisado 23b4b1feb6 live: drop IniciarSesion script when uefi booting
Replace IniciarSesion script in favor of native Python code when booting
a UEFI system. This applies when running the "session" command.

WIP: Only UEFI boots Windows systems. Raise NotImplementedError
exception trying to boot a Linux system using UEFI.
2024-03-04 11:33:10 +01:00
Jose M. Guisado 517c99e542 utils: add boot.py
Add utility module related to the process of booting a system from a
client's partition.

The main utility function to boot a clients system is boot_os_at(), from
which firmware (UEFI or BIOS) and os-family specific private functions are invoked.

This initial commit adds UEFI windows boot function.
2024-03-04 11:33:10 +01:00
Jose M. Guisado 4129256caf utils: add uefi.py
Add UEFI related utilities inside a new utility module: uefi.py

	_check_efibootmgr_json
	======================
Check if the system efibootmgr executable supports JSON output. This is
a private function used only by other functions from uefi.py.

	is_uefi_supported
	=================
Check if the system supports UEFI firmware.

	run_efibootmgr_json
	===================
Runs efibootmgr with json output support. Return the JSON output as a
Python dict.

	efibootmgr_create_bootentry
	===========================
Create nvram boot entry. This bootentry is usually later set to boot
next just once via "BootNext" nvram variable.

	efibootmgr_delete_bootentry
	===========================
Delete a nvram boot entry. Used to avoid duplicates when booting the
same disk and partition from a given client.

	efibootmgr_bootnext
	===================
Set nvram "BootNext" variable to a given boot entry so after client
reboot, PXE is not executed and the given boot entry takes precedence.

Add dependency with efibootmgr version >= 18, and efibootmgr JSON output
which is currently out of tree from util-linux repo.
2024-03-04 11:33:10 +01:00
Jose M. Guisado e3c375f8d7 probe: add basic os family detection
Add a basic OS family enumeration: OSFamily.

Add utility function that probes for an installed Linux or Windows
system, returns the corresponding enum value, OSFamily.UNKNOWN
otherwise.
2024-03-04 11:33:10 +01:00
Jose M. Guisado bb3264d8f4 disk: add get_efi_partition function
Add utility function inside disk.py to find, if any, the first ESP
partition of a given disk.

The disk is provided as an integer (starting at 1 following OpenGnsys
scripts usual values), meaning the (n-1)th disk from the disk array
returned from get_disks(). In the future a better mechanism should be
put in place to fetch probed disks from a running client.

This change is part of the upcoming drop of "IniciarSesion" script in
favor of a Python native approach. Specifically regarding UEFI systems.
2024-03-04 11:33:10 +01:00
OpenGnSys Support Team 14752ce14c cache: improve logging
use info instead of debug to make it easier to debug problems when creating the
cache.
2024-02-22 11:41:27 +01:00
OpenGnSys Support Team e3bb01f5f1 live: improve logging with setup command
Improve logging when setting up partition, provide more hints on progress.

Fail in case partition layout is not supported.
2024-02-22 11:33:50 +01:00
OpenGnSys Support Team 26ca4c7950 fs: add swap support and improve mkfs logging 2024-02-22 10:52:03 +01:00
OpenGnSys Support Team 8ff6341b69 utils: use returncode from subprocess in ogChangeRepo()
... the exception shows the samba password in the logs

specify the error which tells us what has happened according to man mount(8)
Return Codes.
2024-02-21 11:16:19 +01:00
OpenGnSys Support Team 92ef3d68aa live: call partprobe on the specific disk
otherwise partprobe does its best to find the disk, according to what I see
through strace.
2024-02-19 11:56:25 +01:00
OpenGnSys Support Team dbda6abd22 poweroff: always call poweroff_oglive and _reboot_oglive
Remove leftover fallback to directly call utilities to poweroff and reboot.
2024-02-19 10:07:27 +01:00
Alejandro Sirgo Rica bcbbe26573 fs: improve value parsing from command output
value extraction did not have error checking and was handled in
a one-liner. The actual implementation expands the parsing logic
and moves it into a function.
2024-02-19 10:06:02 +01:00
OpenGnSys Support Team 4109bb6ecc live: split logging to warn not to turn off client during image creation
just split this log message.
2024-02-15 16:58:51 +01:00
OpenGnSys Support Team 5e11432e9d utils: remove repository change in restoreImageCustom
this is broken, it uses default uses and password, remove it.
2024-02-15 16:58:51 +01:00
OpenGnSys Support Team 2da8b98fff fs: check if writing md5sum to full.sum file fails
writing to file might fail (permission denied, disk full), check for errors.
2024-02-15 16:58:51 +01:00
OpenGnSys Support Team 8fb8a0a66d fs: return unknown if blkid fails
instead of rising an exception
2024-02-15 16:58:51 +01:00
OpenGnSys Support Team bf7eb1542d fs: logging ext4 resize error
log error in case resize2fs fails.
2024-02-15 16:58:51 +01:00
OpenGnSys Support Team d6c32bba5d fs: check if ntfsresize actually succeded to shrink filesystem
According to ntfsresize.c, this retuns 0 in case nothing needs to be done.
It should be safe to check for non-zero error and bail out in that case.
2024-02-15 16:58:46 +01:00
OpenGnSys Support Team 0f30b1349d fs: disentagle dry-run ntfsresize loop to probe for best shrink size
Revisit 5056b8f0d5 ("fs: validate ntfsresize dry-run output") that has
introduced a possible infinity loop.

Disentangle this loop while at it: iterate until best smallest size is
found by probing.
2024-02-15 16:36:28 +01:00
OpenGnSys Support Team 0fc7f8f33e src: ogChangeRepo returns zero on success and -1 on error
do not return the returncode, instead return an integer.

do not use

	except CalledProcessError as e:

it causes a another exception while handling exception.

Remount the original image repository.

it should be possible to simplify this further by:

- stacking mounts, no need to umount initial repo and mount it again
  when switching to the new repo, because remount back initial repo
  might fail (!)

- use check=False and simply check for x.returncode
2024-02-15 16:22:23 +01:00
OpenGnSys Support Team 44250d0334 live: remove mbuffer leftover in image restore command
Remove mbuffer, this is never used.

mbuffer has been never been used since ogClient supports native image restore.

Originally this was used like this:

	partclone [...] | mbuffer -q -M 40M | lzop [...]

supposely to speed up partclone in case the device where the read happens is
slowier than the device that is used for writes.

See mbuffer(1) manpage examples.

In any case, this needs benchmarking to really make sure this is helping.

Remove it until that ever happens.
2024-02-15 16:22:23 +01:00
OpenGnSys Support Team 6b1f20faf3 live: log message improvements for image creation and restore
Provide more context information for debugging issues with image creation and
restore.
2024-02-15 16:22:13 +01:00
Alejandro Sirgo Rica 478c4447be src: improve error check in image_create and image_restore
cover more error cases where exceptions need to be raised.
check return code in the invoked subprocess.

restoreImageCustom has been intentionally left behind, it
is unclear what this custom script returns on success and
error.
2024-02-14 12:28:28 +01:00
Alejandro Sirgo Rica c1529c5eec src: fix whitespace in ogOperations.py
make whitespace conherent with the rest of the file contents.
2024-02-14 11:09:54 +01:00
OpenGnSys Support Team 5056b8f0d5 fs: validate ntfsresize dry-run output
validate 'Needed relocations: ' is in place before stepping on the split chunks

(2024-01-11 10:28:16) ogClient: [ERROR] - Exception when running "image create" subprocess
Traceback (most recent call last):
  File "/opt/opengnsys/ogClient/src/live/ogOperations.py", line 454, in image_create
    ogReduceFs(disk, partition)
  File "/opt/opengnsys/ogClient/src/utils/fs.py", line 105, in ogReduceFs
    _reduce_ntfsresize(partdev)
  File "/opt/opengnsys/ogClient/src/utils/fs.py", line 235, in _reduce_ntfsresize
    extra_size = int(out_resize_dryrun.split('Needed relocations : ')[1].split(' ')[0])*1.1+1024
IndexError: list index out of range

if not present, no need to adjust size
2024-01-11 12:55:37 +01:00
OpenGnSys Support Team 9beb55894d live: refine existing logging
- suggest to check permissions in samba folder
- fix typo, s/filesyste/filesystem/
2023-12-18 13:47:29 +01:00