Commit Graph

350 Commits (7d26f0f69b01016f1a8c563ac734253e2f9c6d5b)
 

Author SHA1 Message Date
Jose M. Guisado 2172f00cde live: fix ogChangeRepo invocation
Add missing samba credentials parameter in ogChangeRepo invocation.

Credentials are loaded from ogClient config file.

Any production deployment should use its own samba user and password.
ogChangeRepo fails when using default samba credentials in a production
environment.

Fixes: a1edbe904b ("legacy: rewrite ogChangeRepo")
Fixes: 3703fd6063 ("live: support native unicast cache image restore")
2023-03-27 15:48:03 +02:00
Jose M. Guisado c0e14e0c95 live: fix unicast cache error log message
Removes undefined 'repo' variable from error logging message.

This caused the traceback to be polluted with an unhelpful message
about this variable being undefined.

Fixes: 3703fd606 ("live: support native unicast cache image restore")
2023-03-27 15:48:03 +02:00
Jose M. Guisado 0ebcd9f776 live: add linux swap parttype
Adds linux swap partition type, mapped to the 'LINUX-SWAP' string in web
interfaces like ogCP or webconsole.

Fixes: 29c53e54e9 ("live: add parttypes.py")
2023-03-23 09:49:46 +01:00
Jose M. Guisado 97e753cbfd ogRest: improve error logging when executing operations
Capture all possible Python exceptions in the try/except block of every
opengnsys operation.

Create an error handling function to deduplicate code in the except
block. The error handling function resets the ogRest state to IDLE and
sends the corresponding 500 Internal Server Error.

This *does not cover* every possible error. There are functions inside
ogThread which contain code that may raise errors that are not covered
by any try/except block.
2023-03-10 11:26:46 +01:00
Jose M. Guisado 5b5ef607ec ogRest: remove root logger constant
Remove unnecesary root logger constant: LOGGER

The root logger is used by default when executing:

	logging.debug()
	logging.info()
	logging.warning()
	...

There is no point in doing:

	LOGGER = logging.getLogger()  # Get root logger
	LOGGER.debug()  # Use root logger
2023-03-10 11:26:46 +01:00
Jose M. Guisado b58ccca48b legacy: improve readability of ogGetImageInfo helper functions
Change the name of the helper functions used when getting opengnsys
image information (legacy ogGetImageInfo bash script). As of now the
process consist of decompressing the image file with lzop and feeding
that output to partclone.info.

Prefer a more explicit function name rather than "process_image_*"

Add comment about skipping the first two lines of partclone.info output.
Usually, partclone.info starts printing out these two lines that are not
related to the partclone image information:

	Partclone v0.3.23 http://partclone.org
	Showing info of image (-)

As long as partclone.info output doesn't change we'll be fine, but we
should not depend on human readable output. This might change in the
future (i.e. adding json output format to partclone.info).
2023-03-10 11:26:42 +01:00
Jose M. Guisado c9a3a763dd legacy: rewrite ogGetImageInfo
Rewrites this legacy script behavior using native Python code, using
subprocess module when executing programs like partclone.info or lzop

ogGetImageInfo is a bash script that retrieves information regarding an
OpenGnsys partition image, specifically:

- clonator
- compressor
- filesystem
- datasize (size of the partition image)

This rewrite only supports partclone and lzop compressed images. This is
standard behavior, we have no reports of other programs or compression
algorithms in use.

Keep this legacy function with hungarian notation to emphasize this is
still a legacy component that may be replaced in the future.
2023-03-02 13:15:10 +01:00
Jose M. Guisado a1edbe904b legacy: rewrite ogChangeRepo
Drop ogChangeRepo Bash script in favor of a native Python
approach. Use only necessary subprocess calls instead of bringing
all the logic of this function into a Bash script black box.

ogChangeRepo unmounts the current OpenGnsys image samba folder
(/opt/opengnsys/images) and mounts (connects to) a new directory using
the new provided ip address. Keeping access mode from previous mount.
If anything goes wrong when mounting the new directory, it will fallback
to mounting the previous directory.

If no previous OpenGnsys image samba directory is detected, this
functions tries to mount the new directory anyway. In this case,
it will raise CalledProcessError if something goes wrong.
2023-03-02 09:33:33 +01:00
Jose M. Guisado 1858950af1 legacy: improve readability of cambiar_accesso
Expand function docstring and do not use CalledProcessError handling to
return True or False. Just checking for returncode value is simpler.
2023-03-02 09:09:39 +01:00
Jose M. Guisado 782f46a199 live: rewrite setup operation
Rewrites the setup operation using python-libfdisk module instead of an
external bash script. Consolidating the operation into Python's code,
limiting external subprocesses to well known programs and small
concrete tasks that are difficult to fully integrate into Python.

Use parttypes.py to fetch partition types from python-libfdisk module.
Use fs.py to create any specified supported filesystem.

OpenGnsys cache partitions are created labelling the partition as
"CACHE". Stops setting non-standard MBR hexcode (0xca) to the cache
partition in addition to the filesystem label.

Any partition specified as type EMPTY will be ignored.
2023-02-09 13:26:06 +01:00
Jose M. Guisado 7801d483d4 utils: add init_cache function
init_cache() creates the default directory in which OpenGnsys stores
images when using any cache enabled transfer method.

As of this commit this folder must exist for tiptorrent.py to
work properly.

Subprocess Popen object inside tiptorrent.py use
'cwd' optional parameter like:

	cwd='/opt/opengnsys/cache/opt/opengnsys/images/'

This folder convention might change in the future.
2023-02-08 17:11:44 +01:00
Jose M. Guisado eac942660f utils: add fs.py
Adds utility module which wraps several mkfs.* calls as a subprocess.

The main utility function is mkfs(fs, disk, partition, label), which
subsequently calls the corresponding mkfs_*(partition_device) function.

mkfs() supports specifying a drive label where supported.

Other modules using fs.py should call mkfs() only.
2023-02-08 17:11:44 +01:00
Jose M. Guisado 29c53e54e9 live: add parttypes.py
Adds parttypes.py module with utility functions to get partition types
(parttypes) from python-libfdisk.

Supports standard partition types, either DOS or GPT.
DOS labels use a hex code to define partition types, python-libfdisk
exposes get_parttype_from_code to look up for DOS partition types from a
given hexcode.
GPT label uses a string (UUID) for each supported partition type,
python-libfdisk exposes get_parttype_from_string to look up for GPT
partition types from a given string.
2023-02-08 17:11:44 +01:00
Jose M. Guisado c010c42008 live: clear ogbrowser log before image_create
Remove any previous unrelated log message shown in the "real time log"
html page before executing this command.
2022-12-05 16:37:35 +01:00
Jose M. Guisado 7f6a7b664b log: add file handler for ogLive "real time log"
Clients running in ogLive can show log messages via a lighttp server.
Particularly, a html page named "real time log" consists of <text-area>
tags with the contents of two particular text files
/tmp/session.log and /tmp/command.log

Adds a Python logging handler in order to write ogClient log messages
into /tmp/session.log. This way ogClient logs are show in the "real time
log" html page too.
2022-12-05 16:19:57 +01:00
Jose M. Guisado 70f1d0d71d live: clear ogbrowser logs before image_restore
Clears content of blue text areas in the real time log view before
executing a restore image operation.

Adds private function _ogbrowser_clear_logs, this function writes to a
couple of text files present in the ogLive environment.
The contents of this file are printed out to the blue text areas
in the "real time log" view.
2022-12-01 15:22:58 +01:00
Jose M. Guisado 699a6c242a live: improve error paths
Fix error paths in live operations which do not
reset the "browser" to the main page (one with the menu).

Add error logging messages when:

* _restartBrowser fails.
* ogChangeRepo fails.

Improve checksum fetch error handling. For example, when an invalid
repository IP is specified.
2022-11-17 15:55:42 +01:00
Javier Sánchez Parra 94f6793f96 log: declare samba handler only in live mode
ogClient in linux mode only write its logs to syslog and the console.

Also, raise exception if mode its not supported.
2022-11-02 16:37:46 +01:00
Javier Sánchez Parra f1fff0b0b6 log: import fcntl only on linux
Otherwise, ogClient do not work on Windows because fcntl module do not
exists on Windows.
2022-11-02 16:37:41 +01:00
Jose M. Guisado 3703fd6063 live: support native unicast cache image restore
UNICAST-CACHE consist of:

1. Checking if the target image is already present at the opengnsys
   cache partition. If so, check for integrity (local and remote
   checksum). If the image is not present in the cache partition,
   download the target image into it.
2. Restore the image from cache partition.

This commit add support for this operation natively from ogClient
Python's code.
2022-11-02 14:09:39 +01:00
Jose M. Guisado 55c76c9d70 tiptorrent: improve raised exceptions for tip_client_get
Raise exception when tiptorrent-client subprocess runs normally but
exits with non-zero code. (For example, if download file allocation
failed)
2022-09-29 13:24:43 +02:00
Jose M. Guisado f2515fcde9 live: don't use python open() when reading image
Specifies the image path in the lzop subprocess string.

It might be interesting to study efficient mechanisms to read large
binary files in python before using open() with default parameters for
buffered binary reading.
2022-09-23 12:12:35 +02:00
Jose M. Guisado 00a95bdb61 live: rewrite image_restore
Integrates image restore command into native ogClient code. Further
reduces the need for external Bash scripts.

After a succesful image restore, OS configuration is still using
external Bash script "osConfigure/osConfigureCustom".
2022-09-14 17:12:14 +02:00
Jose M. Guisado 5d799773f6 utils: add tiptorrent.py
Utility and wrapper functions related to the usage of tiptorrent.
To be used by the image restore command.
2022-09-14 17:12:14 +02:00
Jose M. Guisado 52838e2ce6 utils: add get_partition_device
Maps a disk and partition number to the corresponding device path
('/dev/sdXY', '/dev/nvmeXnYpZ', ...)
2022-09-14 17:12:14 +02:00
Jose M. Guisado 87e738b33f image_restore: fix ogCopyEfiBootLoader
ogCopyEfiBootloader is an invalid legacy bash function name.

Rename to the correct function name 'ogCopyEfiBootLoader' and
rename utility python wrapper too.

Fixes: 0bd037c1a409c65fbcb01355ee0dd6dca770330e
2022-09-14 17:12:14 +02:00
Jose M. Guisado 91077da273 utils: minor fix for ogReduceFs and ogExtendFs
Do not return the subprocess result for ogReduceFs/ogExtendFs.

ogReduceFs works with or without the target filesystem mounted.
ogExtendFs requires the target filesystem to be mounted.

'ogMount' legacy script invocation should be replaced by a better
mount/umount wrapper.
2022-09-14 17:12:14 +02:00
Jose M. Guisado cb0bd3d194 image_create: add legacy ogCopyEfiBootloader
Use legacy script that saves the Windows-specific content from the ESP
to the image target filesystem.

Current image restore solution from OpenGnsys scripts expect the EFI
partition to be stored in the target system partition. (Only for Windows
10)

For example, storing the ESP in the NTFS partition of a Windows image.

Expect use of bash script ogCopyEfiBootloader until further
integration is merged.
2022-09-14 17:10:45 +02:00
Jose M. Guisado 3550da73e6 image_create: partial integration into python
Integrates some parts of this operation into native code, eg: the md5
checksum computation.

Wraps non native processes and commands using the subprocess module.
For example, legacy.py stores bash commands pending integration.

Supports python >=3.6, expected until more modern ogLives are put into
production environments.
2022-08-24 09:48:35 +02:00
Jose M. Guisado 74a61d6a7d refresh: use '0' if disk has no label
If disk has no label, python-libfdisk returns None when accessing

	cxt.label

Fixes bug when running refresh on computers whose disk/s have no label.
2022-08-22 17:05:12 +02:00
Jose M. Guisado 1b5281c2a1 live: enable details for libfdisk context object
Enables details in libfidsk context constructor call. Ensures size are
displayed as bytes (and not as a human readable string).

Avoids further arithmetical errors (e.g: converting from bytes to KB)
2022-06-08 10:27:06 +02:00
Jose M. Guisado c159c76294 live: remove unused parseGetConf function
parseGetConf was necessary for parsing output from OpenGnsys
script "getConfiguration", which has been replaced since commit
1ab981a539 ("live: replace getConfiguration with refresh")
2022-06-08 10:27:06 +02:00
Jose M. Guisado 30fdcceea3 src: improve logging
Adds new logging handler redirecting messages to the log file
located in the Samba shared directory (applies to live mode
clients, i.e: ogLive)

Parses log level configuration from ogclient.json. See:

{
	"opengnsys": {
		...
                "log": "INFO",
		...
	}
	...
}

Adds --debug option to set root logger level to DEBUG when starting
ogClient. Overrides log level from config file.

In addition:

- Replaces any occurence of print with a corresponding logging function.
- Unsets log level for handlers, use root logger level instead.
- Default level for root logger is INFO.
- Replaces level from response log messages to debug (ogRest)
2022-06-08 10:27:06 +02:00
Jose M. Guisado 1ab981a539 live: replace getConfiguration with refresh
Old refresh was a wrapper around getConfiguration bash script.

New refresh operation does what getConfiguration used to do
externally. See commit 097769b971.
2022-06-01 11:48:30 +02:00
Javier Sánchez Parra 6c441e94e2 live: assume VFAT is always FAT32
fdisk reports VFAT, however, OpenGnsys does not have such entry in the
filesystem table. Add an alias to FAT32 as a workaround.
2022-06-01 11:48:30 +02:00
Jose M. Guisado 621d1b9147 utils: mount_mkdir success if target is a mountpoint
Returns true if target is already a mountpoint. Does not call mount.

It's possible that another device might be mounted in the target
mountpoint. A future check between the source and target for
equal device major:minor must be added.
2022-06-01 11:48:30 +02:00
Jose M. Guisado 81ee4b02dd live: generate cache.txt file in refresh
Generates a cache.txt file if a cache partition is detected.

OpenGnsys stores information about stored images in its 'cache'
partition via a text file.

The file is stored in a samba shared directory, mounted at
'/opt/opengnsys/log/' in a live client. The file name is '{ip}.cache.txt'.

Previously, the generation of this file was delegated to external bash
scripts.
2022-06-01 11:48:30 +02:00
Jose M. Guisado 4e5b17ce6d probe: detect 64 bit operating systems
OpenGnsys partition images store OS information, including
the OS name appended with "64 bits" when the OS is meant for 64 bit
machines.

The detected OS name when probing (refresh) is important, if it differs
from what's stored in the DB OpenGnsys will wipe last image restored
information when running a refresh.

See actualizaConfiguracion from legacy ogserver (ogAdmServer.c) code:

	dato = dbi_result_get_uint(result, "idnombreso");
	if (idsoi == dato) {
		swu = false;
	}
	...
	if (swu) {
		result_update = dbi_conn_queryf(dbi->conn,
		"UPDATE ordenadores_particiones SET "
			" codpar=0x%s,"
			" tamano=%s,"
			" uso=%s,"
			" idsistemafichero=%d,"
			" idnombreso=%d,"
			" idimagen=0,"
			" idperfilsoft=0,"
			" fechadespliegue=NULL"
			" WHERE idordenador=%d AND numdisk=%s AND numpar=%s",
2022-05-09 12:57:36 +02:00
Javier Sánchez Parra a3cf8d150a Add link speed to refresh response
Probe response already has client's link speed, but this API is
deprecated.
2022-05-09 08:56:43 +02:00
Jose M. Guisado ad2d4a1f1a utils: fix winreghives path string
Adds missing slash in the windows reghives path f-string.

When calling os_probe inside refresh (live/ogOperations) the mountpoint
is passed without a trailing slash.
2022-04-28 16:11:30 +02:00
Jose M. Guisado e6079c42ea live: detect cache partitions in new refresh
Detects OpenGnsys cache partition when building the partition setup of a
live system.

OpenGnsys labels a Linux/ext4 partition as "CACHE".
2022-04-28 16:11:11 +02:00
Jose M. Guisado 3da8100a3b live: get partition number using partno attribute
Removes a workaround enumaration of the partitions of a given libfdisk
context. Use Partition class partno attribute.

This enables detecting non contiguous partitions, like:

	/dev/sda
		/dev/sda1
		/dev/sda2
		/dev/sda4
2022-04-27 10:03:02 +02:00
Jose M. Guisado ad3d3b2d19 utils: decode probing subprocess stdout
Cannot replace str ('\n') when stdout is a bytes object.

Also fixes some typos (i.e: proc_releaseid stdout was used twice).
2022-04-27 09:38:38 +02:00
Jose M. Guisado 097769b971 live: use utils.py and fdisk in refresh operation
Use python binding for libfdisk to retrieve disk label and partition
information [1]. Use utils.py for the rest of the process.

This change aims to drop dependency with external script
'getConfiguration' from the OpenGnsys scripting ecosystem.

Keeps the same json payload structure for the refresh response.

[1] https://git.48k.eu/python-libfdisk/
2022-04-21 09:47:31 +02:00
Jose M. Guisado d3f9788aab live: use utils.py for probe operation
Import ethtool function from utils.py
2022-04-21 09:47:31 +02:00
Jose M. Guisado a9bc953f63 Add partcodes.py to src/live
partcodes.py is used for mapping GPT partition UIIDs to hexcode/decimal
values.

OpenGnsys stores partition types in the database using the decimal
value of this hexcode. The hexcode used for GPT partition UUID is the
same as defined internally in gdisk [1].

[1]
https://sourceforge.net/p/gptfdisk/code/ci/master/tree/parttypes.cc#l75
2022-04-21 09:47:31 +02:00
Jose M. Guisado 902e019505 Add utils modules
* disk.py

	Disk discovery

* fs.py

	Uses psutil to fetch fs usage information

* menu.py

	ogBrowser menu generation

* net.py: gets nic status information

	IP address, MAC address and ethernet speed.

* probe.py: probes mountpoints for operating systems

	Uses hivexget command to try fetching Windows installation
	information.
	Looks for /etc/os-release for probing linux systems.
2022-04-21 09:47:04 +02:00
Jose M. Guisado 79d3062f81 Revert "#1065 linux: add systray icon"
This reverts commit 69d214f63b.
2022-02-03 10:33:37 +01:00
Jose M. Guisado fa0e48a778 #1065 Init event socket according to mode
Commit 700aa89ea9 introduced the use of getattr when getting event
socket to avoid errors in case it was not initialized.

Prefer to initialize accordingly inside the ogClient class constructor.
2022-02-02 08:51:34 +01:00
Jose M. Guisado 700aa89ea9 #1065 Use getattr when retrieving event socket
If ogClient does not run on windows or linux mode, it does not create a
datagram event socket.

If ogClient runs in virtual or live mode this will cause an error when
calling get_event_socket because the class instance has no member
"event_sock".

Use getattr when retrieving the event socket from ogClient class, if
there is no event socket, then return None.

Fixes 2465ef25b7 (Add event datagram socket)
2022-02-01 16:04:00 +01:00