Commit Graph

313 Commits (aa34704b4d28225afb3e9a0d563826c7bb58a378)
 

Author SHA1 Message Date
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
OpenGnSys Support Team 32673cf337 live: adding logging to notify that image file already exists
Just informational, provide a notice that the file already exists.
2023-12-17 20:53:43 +01:00
OpenGnSys Support Team dff126cf40 live: ensure image file exists after partclone
check that there is a file and that is accessible
2023-12-17 11:27:28 +01:00
OpenGnSys Support Team 2bddf205d9 live: display filesystem and device path if image_create() fails
display filesystem and path to device.
2023-12-16 17:15:34 +01:00
OpenGnSys Support Team 5d19ff5fe9 live: validate rw access to image folder after remount
check that it is readable and writable
2023-12-16 17:14:02 +01:00
OpenGnSys Support Team 41cf2eb229 utils: use f-string in raise ValueError in run_lzop_partcloneinfo()
Otherwise it shows:

  ValueError: Unable to process image {image_path}
2023-12-15 17:31:16 +01:00
OpenGnSys Support Team 6c49815d73 live: report permissions and last update when creating image
add .permissions and .lastupdate to json to report to ogserver.
2023-12-12 17:51:50 +01:00
OpenGnSys Support Team b97c4d157a live: report image size when creating image
add .size json field to report the real size of the image file.
2023-12-12 11:33:48 +01:00
OpenGnSys Support Team d34ef0ab25 utils: sw_inventory: report unknown OS for software inventory
Users can create an image of a filesystem that contains no OS, therefore,
instead of rising an exception when no OS is detected, deliver a "unknown"
OS and an empty list of software.
2023-11-17 13:32:06 +01:00
Jose M. Guisado 4e10c46563 live: use legacy backup image suffix
Image backup is considered a legacy feature. Use the legacy mechanism of
naming image backups by adding ".ant" suffix.

Previously, by using the strftime suffix clients were reporting that the
disk were getting full rather quickly.

When a good method for image deletion is implemented then a proper
backup naming mechanism should be reconsidered.
2023-10-24 09:56:09 +02:00
Jose M. Guisado b49ec83bcd live: hw_inventory: fix empty pci storage size bug
When a client's hardware presents an empty pci storage child there is an
invalid call to _bytes_to_human a string is supplied as a default value
if the storage child does not present a 'size' attribute.

Fix this by checking if 'size' is present in the JSON output from lshw.
If size is present then map the bytes to a human readable string using
_bytes_to_human, if no size is present then use 'Empty slot' to indicate
that the memory bank is not being used.
2023-10-18 13:32:24 +02:00
Jose M. Guisado 59eac6d0d5 live: hw_inventory: fix typo
Add missing underscore to _bytes_to_human call.

Fixes: 39c13287c5 ("live: hw_inventory: fix empty memory bank bug")
2023-10-18 12:05:23 +02:00
Jose M. Guisado 39c13287c5 live: hw_inventory: fix empty memory bank bug
When a client's hardware presents an empty memory bank and invalid call
to _bytes_to_human is performed because None is passed as a parameter.

	size = _bytes_to_human(obj.get('size', None))

Fix this by checking if 'size' is present in the JSON output from lshw.
If size is present then map the bytes to a human readable string using
_bytes_to_human, if no size is present then use 'Empty slot' to indicate
that the memory bank is not being used.
2023-10-05 16:19:36 +02:00
Jose M. Guisado 49038f125a src: improve logging messages
Some users have mistakenly reported tiptorrent problems when the process
takes a long time. Specifically by rebooting or powering off the client
in the middle of the md5sum computation stage, just after the tiptorrent
transfer.

Same problem occurs when image creation command takes a long period of
time.

In order to help the user understand the different stages of commands
such as image creation or image restore using tiptorrent, the following
changes have been made to the current logging solution:

- Add log messages to warn users not to reboot or shut down the client
  during a tiptorrent transfer, and also during the md5sum computation
  stage.

- Add a log message telling the user that the image creation processes
  have started.

- Use logging.exception inside "except:" blocks to print a traceback
  with the log messsage.
  (https://docs.python.org/3/library/logging.html#logging.exception)
2023-08-01 18:26:10 +02:00
Jose M. Guisado ee0d62db44 hw_inventory: use dict.get
The first stage of parsing the "lshw -json" command output is to load
the json string into a Python dictionary. lshw output is large and
varies from machine to machine, so it's not safe to assume that
different keys will be present in the dictionary.

Use dict.get() instead of dict[key] to avoid KeyError exceptions.
2023-07-21 11:55:25 +02:00
Jose M. Guisado 035995fc8c live: add image backup option in image creation
Backup image file if image creation request included

	"backup": true

This only applies when the target image is already present in the
repository folder before running the partclone subprocess.

This parameter is ignored if the target image is not present in the
repository.
2023-07-06 17:52:52 +02:00
Jose M. Guisado 5c3cf47023 rest: add backup parameter
Support parsing of "backup" parameter inside incoming requests.

Prepare ogClient support for backup image creation in "image create"
operation.
2023-07-06 17:38:32 +02:00
Jose M. Guisado 0c03d82ca8 ogclient: add support for X-Sequence header
Enable parsing of "X-Sequence" HTTP headers from incoming requests.
Add "seq" field in restRequest class.

Enable adding "X-Sequence" to outgoing responses.
Add "seq" field inside restResponse class.

Store current client sequence number inside ogClient class.

Ideally, the restRequest object should be used to retrieve the
sequence number but not all processing functions inside ogRest.py
receive the request as parameter (eg: process_refresh).
In the other hand, all processing functions receive the ogClient object.
2023-06-14 14:50:55 +02:00
Jose M. Guisado 926a73cf33 fs: fix subprocess input inside _extend_resize2fs
The subprocess module expects bytes-like object for "input" parameter by
default. Passing a string object result in the following error:

(2023-06-13 14:44:43) ogClient: [ERROR] - Exception when running "image create" subprocess
(2023-06-13 14:44:43) ogClient: [ERROR] - Unexpected error
Traceback (most recent call last):
  File "/opt/opengnsys/ogClient/src/live/ogOperations.py", line 465, in image_create
    ogExtendFs(disk, partition)
  File "/opt/opengnsys/ogClient/src/utils/fs.py", line 124, in ogExtendFs
    _extend_ntfsresize(partdev)
  File "/opt/opengnsys/ogClient/src/utils/fs.py", line 250, in _extend_ntfsresize
    proc = subprocess.run(cmd, input='y')
  File "/usr/lib/python3.8/subprocess.py", line 495, in run
    stdout, stderr = process.communicate(input, timeout=timeout)
  File "/usr/lib/python3.8/subprocess.py", line 1013, in communicate
    self._stdin_write(input)
  File "/usr/lib/python3.8/subprocess.py", line 962, in _stdin_write
    self.stdin.write(input)
TypeError: a bytes-like object is required, not 'str'

Fixes: dd999bfe34 ("utils: rewrite ogReduceFs")
2023-06-13 17:34:20 +02:00
Jose M. Guisado 88668cb195 fs: fix bug when ntfsresize reports nothing to do
There is a corner case in which a target NTFS filesystem is already
shrunken. When this happens ntfsresize text output parsing breaks.

Check when ntfsresize reports nothing to do, warn the user about this
and stop the dry-run ntfsresize loop.
2023-06-13 17:34:04 +02:00
Jose M. Guisado 666d2fb50f fs: fix typo inside _extend_resize2fs
_extend_ntfsresize contains an incorrect variable name inside
subprocess.run referring the resize command value.

Simplify this variable name inside each specific _extend_* function:

	s/cmd_resize2fs/cmd
	s/cmd_ntfsresize/cmd
2023-06-13 09:06:13 +02:00