Commit Graph

456 Commits (f942b19eae90e9ca468cbe0a93e5dc9ad02b38d0)
 

Author SHA1 Message Date
Alejandro Sirgo Rica f942b19eae src: fix cache mount in new ogLive
Mount cache in image_create() image_restore() and cache_fetch().

Remove init_cache() and ensure /opt/opengnsys/images/ exists
within the cache mountpoint if it does not exists in cache_mount().
2024-10-08 10:07:45 +02:00
OpenGnSys Support Team fe960010a0 live: remove useless check in compute_md5
this never returns -1 on error, an exception is rised instead
2024-10-05 08:40:55 +02:00
Alejandro Sirgo Rica 0f167cf29f src: consolidate compute_md5 functions
Add compute_md5 function in src/utils/fs.py

Remove identical md5 functions from src/live/ogOperations.py and
src/utils/tiptorrent.py

Move error checks from ogOperations.py into compute_md5 function in
src/utils/fs.py
2024-10-02 14:50:14 +02:00
Alejandro Sirgo Rica cc70274079 src: check if the system is hibernated before /image/create
Mount the system partition in readonly mode and check for the
hiberfil.sys file if the target system is a Windows.

Fail the image creation process if the target system is hibernated.
2024-10-02 14:25:04 +02:00
Alejandro Sirgo Rica a2baad8c0b ogclient: add --server-ip flag to override the server's IP
Add CLI flag to override the server IP defined in the config file.
2024-10-02 10:38:03 +02:00
OpenGnSys Support Team f1b1532f78 live: refactor poweroff and reboot
- enable WoL
- check for poweroff and reboot before checking for busybox.
- call new shutdown method
2024-10-01 22:12:17 +02:00
OpenGnSys Support Team e003ff6d8c tiptorrent: missing f-string in error
tip_client_get() needs f-string to display error
2024-10-01 17:48:07 +02:00
OpenGnSys Support Team cf9e1c96fd live: fix EBUSY error in newer kernels with mkfs
python-libfdisk does not close file descriptor to /dev/sda after completing
partitioning. This results EBUSY errors when formatting partitions with mkfs
in newer kernels. Encapsulate code to partition in method so python garbage
collection knows ctx objects can be release then close file descritor to
/dev/sda.

ogRest is not accessible from _partition(), remove check to ogRest.terminated,
actually no need to terminate inmediately when formatting is ongoing, better
leave things in consistent state when stop command is received.
2024-10-01 17:02:49 +02:00
Alejandro Sirgo Rica f0953c969a live: report correct partition size unit in setup() log
Log the correct partition size unit. Use MiB instead of MB.
2024-10-01 16:49:58 +02:00
Alejandro Sirgo Rica e30e934272 src: replace DEVICE env variable with get_ethernet_interface()
Use a python function to obtain the main net interface. Detect
the first ethernet inferface in use.
Stop using the DEVICE environment variable.
2024-10-01 15:32:54 +02:00
OpenGnSys Support Team 8f437bb954 live: remove unused probe
unused since ogserver's commit 87be2ce08 #980 Change initial probe to refresh
2024-09-30 14:42:29 +02:00
OpenGnSys Support Team 9c18ef7392 live: use busybox otherwise poweroff/reboot commands 2024-09-30 14:42:29 +02:00
Alejandro Sirgo Rica 9c2ae873f2 live: disable browser operations if the binary is missing
Add shutils.which checks before every browser operations to
skip the subprocess call if the binary is missing.
2024-09-27 14:27:00 +02:00
Alejandro Sirgo Rica 8754c21694 src: report used and free partition data in bytes
Add "used_size" and "free_size" to the partition data and the
cache data.

Old response from ogClient for /cache/delete, /cache/fetch
and /image/restore:
{
  'cache': [
    {'name': 'windows.img', 'size': 2432370213, checksum: '5d4dcc677bc19f40a647d0002f4ade90'},
    {'name': 'linux.img', 'size': 243234534213, checksum: '3eb22f888f88a55ad954f55644e1192e'}
  ]
}

New response:
{
  'cache': {
    'used_size': 4520232322423,
    'free_size': 48273465287452945,
    'images': [
      {'name': 'windows.img', 'size': 2432370213, checksum: '5d4dcc677bc19f40a647d0002f4ade90'},
      {'name': 'linux.img', 'size': 243234534213, checksum: '3eb22f888f88a55ad954f55644e1192e'}
    ]
  }
}
2024-09-25 14:35:41 +02:00
Alejandro Sirgo Rica 3b40ec7918 sw_inventory: consolidate os_probe logic
Reuse os_probe() function from probe.py and change the fallback
case to "unknown" to prevent OS id mismatch in ogserver.

The OS id mismatch causes the images to stop being associated with
partitions after the /refresh command.
2024-09-25 14:35:41 +02:00
Alejandro Sirgo Rica 51258613cc src: verify the fields of the efibootmgr json in /refresh
Don't send the efi data in the /refresh payload if efibootmgr
is missing any of the json keys.

Log the missing keys in case of missing some.
2024-09-25 14:35:41 +02:00
Alejandro Sirgo Rica 11a963c709 utils: Add windows_register_c_drive implementation
Add python implementation of the legacy ogWindowsRegisterPartition
function.

This function configures the system partition to be considered the
new C drive after a Windows image restore.

The drive letter configuration is stored in the SYSTEM hive of
the windows registry. The node MountedDevices contains all the
configuration as key-value pairs.
The C drive key \DosDevices\C: contains a different value based on
the partitioning type.

GPT
the value is DMIO:ID: followed by the 16 byte GUID of the
partition.
Example: DMIO:ID:\xc9\xfc\x1c\x86\x13\x11O\t\xa2\x9c{/\xf1\xdf\xe4)

MBR
The value is a little endian byte sequence with 2 parts.
The first 4 bytes correspond to the disk id. The second part is
the byte offset start of the partition in that disk.
Example: \xe1\\\x9cP\x00\x00\x10j\x18\x00\x00\x00

If we format the MBR value in a more readable way we get
e1 5c 9c 50 00 00 10 6a 18 00 00 00
In this case the disk ID is 509c5ce1.
The partition offset is 186a100000.

This patch adds the following helper functions to:

- get_disk_id_bytes(): to obtain the disk identifier.

- get_part_id_bytes(): to obtain a partition identifier as UUID
  for MBR or DMIO:ID format for GPT.

- get_sector_size(): to query the sector size of a specific disk.
  Read /sys/class/block/{device_name}/queue/hw_sector_size to obtain the value.
  This is MBR specific.

- get_partition_start_offset(): to query the start sector of a specific
  partition and disk. Use sfdisk with the -J argument to get fdisk data in
  json format. This is MBR specific.
2024-09-12 10:43:09 +02:00
Alejandro Sirgo Rica 595770163a live: add boot entries into /refresh payload
Add 'efi' key into the refresh payload. The value for that key
has the following structure:

'efi': {
  'entries': [
    {
      "order": 0,
      "name": "Boot0000",
      "active": false,
      "description": "grub"
    },
    {
      "order": 1,
      "name": "Boot0001",
      "active": true,
      "description": "UEFI: PXE IP4 Realtek PCIe GBE Family Controller"
    }
  ]
}

If the client is not a EFI system it won't add the 'efi' field.
If an entry is not in the boot order it won't have the 'order' field.
2024-09-10 17:23:18 +02:00
Alejandro Sirgo Rica f31e55fea4 bcd: make recovery modifications optional
Ignore recovery disable if no Recovery node is found in the BCD.
2024-09-10 15:37:08 +02:00
OpenGnSys Support Team 084650e4b1 live: use correct variable name in restore unicast cache
fe40f9c5 ('src: add POST cache/fetch method') broke unicast cache restore.

(2024-09-09 10:05:22) ogClient: [ERROR] - name 'image_name' is not defined
Traceback (most recent call last):
File "/opt/opengnsys/ogClient/src/ogRest.py", line 175, in image_restore
payload = ogRest.operations.image_restore(request, ogRest)
File "/opt/opengnsys/ogClient/src/live/ogOperations.py", line 520, in image_restore
self._restore_image_unicast(repo, name, partdev, cache)
File "/opt/opengnsys/ogClient/src/live/ogOperations.py", line 242, in _restore_image_unicast
image_path = f'{OG_CACHE_IMAGE_PATH}{image_name}.img'
NameError: name 'image_name' is not defined
2024-09-09 12:23:00 +02:00
OpenGnSys Support Team 05b7a576b0 live: incorrect indentation
f2a2f53074 ('live: remove file from cache with no checksum file') broke
indentation which breaks ogClient.
2024-09-03 19:44:43 +02:00
Alejandro Sirgo Rica 6704abc620 live: add disk index bounds check
Add disk index bounds checks for setup() and image_create().
Prevent backtrace logging when an invalid disk index is used.
2024-09-02 14:25:54 +02:00
OpenGnSys Support Team f2a2f53074 live: remove file from cache with no checksum file
Maybe result of a partial download? then, remove it to leave cache in consistent
state.
2024-09-02 13:59:36 +02:00
Alejandro Sirgo Rica f7b37ba010 utils: replace the legacy function ogConfigureFstab
Implement configure_fstab() as a replacement of ogConfigureFstab.

Create src/utils/fstab.py to implement the main fstab
configuration functions. Define two fstab helper classes,
FstabBuilder and FstabEntry.

FstabEntry
Represents each line in the fstab file.
Has the values: device, mountpoint, fstype, options, dump_code
and pass_code.

FstabBuilder
Contains a list of FstabEntry. Handles loading of a
preexisting fstab file and the serialization of multiple
FstabEntry into a file.

The fstab configuration has 3 main steps:

Root partition:
- Update the device field with the device where
the new system is installed.

Swap partition:
- Preserve all the swapfile entries in every case.
- If the filesystem has a swap partition: update the device field
  in the first fstab swap entry and remove the rest swap entries
  pointing to a swap partition. Only one swap partition is supported.
  Create a new fstab entry if no preexisting swap entry exists.
- If the system has no swap partition remove every swap partition
  entry.

EFI partition:
- Update the device field of the EFI fstab entry if it exists.
  Create a new fstab entry if no preexisting EFI entry exists.

Add get_filesystem_id to disk.py to obtain the UUID.
Define every device field as a UUID. That method is more robust
than a plain device path as it works after disks being added or
removed.
2024-08-30 12:19:48 +02:00
OpenGnSys Support Team c09c064f28 postinstall: ignore legacy scripts non-zero return code
legacy scripts are not reliable, legacy scripts continue processing on errors,
warn on errors until they are converted to native code instead.
2024-08-30 11:56:41 +02:00
OpenGnSys Support Team 9270a6c58f src: append .img to log that report image fetching 2024-08-29 13:10:50 +02:00
OpenGnSys Support Team 3d47b5069a src: use logging.warning()
logging.warn() is deprecated since 3.3.

And use .error() instead when command is unsupported or client is busy, that
should not ever happen.
2024-08-27 12:44:13 +02:00
OpenGnSys Support Team 4b62b80be7 utils: bcd: update logging related to BCD updates with MBR partition
MBR requires manual bcdedit invocation to generalize image before creation.
Report via logging that no BCD update occurs.
2024-08-27 12:34:58 +02:00
OpenGnSys Support Team 8839950758 live: report that up-to-date image already exists in cache 2024-08-21 09:28:01 +02:00
OpenGnSys Support Team 19e8825805 utils: return False instead of rising exception
if image file and checksum are not found in the cache, then report checksum
validation has failed so it can proceed to fetch new files from server.
2024-08-21 09:21:53 +02:00
OpenGnSys Support Team 1ca3992f71 src: remove call to restoreImageCustom script
remove call to custom version of legacy script, display warning.
2024-08-21 09:21:53 +02:00
Alejandro Sirgo Rica 9fa4a5f651 live: clean files after a failed cache image copy
Remove image files after a failed image copy operation.
2024-08-09 11:05:02 +02:00
Alejandro Sirgo Rica 73ecb48113 src: log without backtrace in not implemented functions
Don't log a backtrace when a not implemented function is called
in ogClient.
Log a "Function not implemented" message.
2024-08-09 11:05:02 +02:00
Alejandro Sirgo Rica 71b3211d3d postinstall: remove shell=True
Remove the use of shell=True.
2024-08-09 11:05:02 +02:00
Alejandro Sirgo Rica fe40f9c5d6 src: add POST cache/fetch method
Add API REST method to fetch an image.
Consolidate image fetch loging for cache/fetch and image/restore.

Resquest payload structure:
{
    'image': 'linux.img'
    'type': 'TIPTORRENT'
    'repository': '12.141.10.2'
}

The client will try to fetch'image' from 'repository' into cache.

Resquest response structure:
{
    'cache': [
        {'name': 'windows.img', 'size': 2432370213, checksum: '5d4dcc677bc19f40a647d0002f4ade90'},
        {'name': 'linux.img', 'size': 243234534213, checksum: '3eb22f888f88a55ad954f55644e1192e'}
    ]
}
2024-08-09 11:04:56 +02:00
OpenGnSys Support Team 89d711be2a postinstall: ignore output when invoking legacy scripts
output is never consumed.
2024-08-08 13:36:32 +02:00
OpenGnSys Support Team 9be639ae78 postinstall: add logging to report this stage
log that image restoration has entered OS configuration stage.
2024-08-08 12:21:05 +02:00
OpenGnSys Support Team 9ee5f4adaa live: move filesystem expansion out of OS configuration
just a clean up.
2024-08-06 18:39:37 +02:00
OpenGnSys Support Team 9a52df7711 postinstall: add logging to report postconfiguration script invocation 2024-08-06 18:16:23 +02:00
OpenGnSys Support Team 16251d42d3 postinstall: typo in maximum win hostname error
s/nor/not
2024-08-06 17:30:19 +02:00
OpenGnSys Support Team fd64b84bcc postinstall: linux does not allow more than 64 bytes long hostnames
As per:

  $ getconf HOST_NAME_MAX
  64

truncate it to the maximum.
2024-08-06 17:29:57 +02:00
OpenGnSys Support Team e9ee1b1c9f ogclient: remove external reference 2024-08-06 10:56:30 +02:00
OpenGnSys Support Team 1011957bb7 live: use correct loglevel when reporting issues with listing cache contents
instead of using info to report errors.
2024-07-31 22:29:29 +02:00
OpenGnSys Support Team 9b317cf3e0 utils: disk: revisit logging to find EFI partition
instead of

	Checking partition "Microsoft Basic Data"...
	Checking partition "EFI System"...

show

	Searching EFI partition...
	EFI partition found at /dev/sda1

and refer to EFI partition consistently in logs.
2024-07-30 16:50:17 +02:00
OpenGnSys Support Team 9a553765b4 utils: postinstall: show hostname in logs
Display the hostname that is set in the logs.
2024-07-30 16:40:07 +02:00
OpenGnSys Support Team 1329c0955b live: validate checksum only once if image is already in cache
if image already exists in the cache, skip a second checksum validation.

log shows duplicated entries:

	Verifying checksum for example.img, please wait...
	Checksum is OK for example.img
	Verifying checksum for example.img, please wait...
	Checksum is OK for example.img

because tip_check_csum() is called twice in this case.
2024-07-30 16:19:03 +02:00
OpenGnSys Support Team 1376b1900d live: remove old image and checksum file on download
Restoring an updated image file (with different checksum) could fail while the
old checksum file could remain in place.

Remove image and checksum file before fetching the new files.
2024-07-30 16:11:43 +02:00
OpenGnSys Support Team 49017c00ca utils: tip_check_csum() uses local checksum file
.full.sum file in the local cache contains the local checksum for this file,
this checksum is calculated by tip_write_csum(), therefore, there is no need to
calculate this checksum again from the image file in the cache, use this
checksum content instead.

if .full.sum is not available, then cache is inconsistent, tip_check_csum()
is called after checking if image file exists, raise an exception.

checksum could mismatch in two situations:

a) new image version (checksum is different)
b) image is corrupted

in both cases, a new fresh image needs to be retrieved.

this speeds up checksum validation.
2024-07-30 16:11:40 +02:00
OpenGnSys Support Team a846d5e343 live: unicast-direct does not validate checksum
this restore method is unreliable, add warning to the logs.
2024-07-30 00:51:37 +02:00
OpenGnSys Support Team c6ab7a4a2d utils: enhance logging for checksum mismatch
display checksum for server and local file when checksum mismatches.
2024-07-30 00:51:37 +02:00