Commit Graph

634 Commits (730d42a872ca48d64d10f3a9c0b668795300dfa0)
 

Author SHA1 Message Date
OpenGnSys Support Team 730d42a872 src: handle refresh response after image restore
use context to store disk, partition and image id that is requested to client
and handle refresh response from ogclient to update database, otherwise, an
explicit refresh from web frontend is required.
2025-02-13 13:24:42 +01:00
OpenGnSys Support Team 91c042ed61 client: incorrect partition type conversion to hexadecimal
partition code is already in decimal as integer, appending 0x to this decimal
results in an incorrect hexadecimal conversion when storing it to the database.

The web frontend bogusly displays "Empty" as partition type until a refresh
happens.
2025-02-12 13:42:48 +01:00
Alejandro Sirgo Rica acf9c07236 rest: send image/update to ogClient for update operations
Send image/update instead of only image/create for both update
and create operations. A failed update operation using the
error handler of OG_CMD_IMAGE_CREATE results in the deletion
of the image from database.

Fail if the image already exists for an image create operation.
2025-02-04 09:42:36 +01:00
OpenGnSys Support Team 4db69ad054 boot: set hostname in grub configuration
add missing hostname= to grub configuration.
2025-01-30 14:09:05 +01:00
OpenGnSys Support Team d8b271f503 cfg: rename user in ogserver.json
use default user in samba, otherwise it breaks ogrelive
2025-01-21 21:21:56 +01:00
Alejandro Sirgo Rica 2daa9cdb36 src: prevent unlinking image to a partition
Fix partition code parse from strng to integer in
og_update_client_disk_info(), forcing a positive partition format
detection every refresh. This caused the unlink of images in every
partition during a refresh command.

Remove image idimagen=0 SQL instruction from software inventory.
Prevent image unlink during a sofware inventory command for a specific
partition.
2025-01-14 14:59:11 +01:00
OpenGnSys Support Team 41c8dec51c rest: use http error code to report mac is in use
report 409 conflict if mac is in use
2025-01-13 12:30:45 +01:00
Alejandro Sirgo Rica 31d426b018 rest: prevent repo deletion if it is in use
Check if the repo is used by any client before the deletion in
/repository/delete
2024-12-16 11:59:15 +01:00
OpenGnSys Support Team 5e21716afb cfg: add samba configuration and use it in ogrelive template
add samba credentials to ogserver.json

       "samba" : {
               "user" : "og",
               "pass" : "test"
       }

and use it in ogrelive template.
2024-12-12 16:05:55 +01:00
Alejandro Sirgo Rica 6a63218f85 rest: add POST oglive/default
Remove 'is_default' column from 'lives' database table and add
column 'priority' of type INT. This new value can store a priority
value but the actual design only stores 1 or 0.

Update GET oglive/list to use the new 'priority' database value.

Add POST oglive/default.
Set the database column 'priority' to 1 if the new default
exists in the database. Set the others to priority 0.
Modify legacy ogliveinfo.json if the new default coresponds to a
live not found in the database. Edit the field 'default' of the
file's json.
2024-12-10 16:33:49 +01:00
OpenGnSys Support Team e3188191d9 rest: add and use http error code to improve error reporting
Use http error code to improve better error reporting:

- 404 Not Found
  + object is not found

- 409 Conflict
  + object already exists

- 423 Locked
  + object is in use

- 500 Internal Server Error:
  + database query fails
  + out of memory

- 501 Service Unavailable
  + Cannot connect to database

- 507 Insufficient Storage
  + Disk is full
2024-12-10 12:12:43 +01:00
OpenGnSys Support Team 8f52b8911e rest: extend og_rest_ctx to provide http error
this is to improve error reporting for ogcp and ogcli
2024-12-05 17:12:30 +01:00
OpenGnSys Support Team ef3bad6e14 rest: consolidate rest API handlers
add struct og_rest_ctx and use it to consolidate rest API handlers and to
ease future extensibility.
2024-12-03 10:08:24 +01:00
OpenGnSys Support Team da31efb4e0 rest: statify image restore and create function
only used in rest.c, remove the forward declaration in json.h
2024-12-02 23:55:35 +01:00
Alejandro Sirgo Rica 00d54325d3 rest: update POST /shell/run for cmd execution
Remove legacy "echo" parameter.
Add boolean "inline" parameter to determine if the execution is
an inline command or a predefined script in /opt/opengnsys/shell/
2024-11-27 14:06:29 +01:00
OpenGnSys Support Team 113472d5c0 src: add built-in ogrelive grub2 boot mode template
Add built-in ogrelive grub2 boot mode template and use it to generate the grub2
boot file for each computer for the new live system.

Use grub2 http to download vmlinuz, initrd.img.

Use live support to download filesystem.squashfs through http.

check for vmlinuz in cache, as usual, otherwise fallback to network boot.
2024-11-25 12:18:34 +01:00
OpenGnSys Support Team 232e6eb308 rest: add og_boot_params_find() and og_boot_params_free() and use them
Prepare to reuse this code for the new live system.

Add two new fields to represent server and repository IP.
2024-11-25 10:33:47 +01:00
OpenGnSys Support Team c110bd7d8d rest: do not release dbi in og_get_client_mode_params()
caller function releases this, this results in double free.
2024-11-25 10:33:47 +01:00
Alejandro Sirgo Rica aebf2281bf rest: allow creation of folder with same name in different nodes
Check the parent node along with the folder name to identify if
the folder already exists.

Fix error when using a folder name defined in any other folder.
2024-11-21 17:07:28 +01:00
Alejandro Sirgo Rica 0ea0394709 rest: rename "name" to "directory" in GET /oglive/list
Rename name field for the contents of the new live format.
2024-11-21 13:34:27 +01:00
Alejandro Sirgo Rica 16baa88541 refresh: update client login status from "status" field value
Update the session status based on the value of the "status" field
in the refresh response, the possible values are:
LINUXS, LINUX, WINS, WIN.
2024-11-18 10:09:08 +01:00
Alejandro Sirgo Rica 4103945785 rest: add POST /oglive/add and POST /oglive/delete
Add API to register and delete oglives from the database.

POST /oglive/add
Register an installed oglive in the database, if the entry already
exists update its creation date.

Example request payload:
{"name": "ogrelive-6.1.0-26"}

POST /oglive/delete
Remove an installed oglive from the database

Example request payload:
{"name": "ogrelive-6.1.0-26"}
2024-11-11 12:29:11 +01:00
Alejandro Sirgo Rica 892a8fa2e5 rest: update GET /oglive/list to include oglive data from database
Append oglive info at the end of the array of the "oglive" entry.
Each entry defines the name of the oglive and the creation date.
2024-11-11 12:29:11 +01:00
OpenGnSys Support Team 55179decb7 client: improve error reporting for image creation reponse
provide a bit more information in the logs to identify the error
2024-11-07 19:01:38 +01:00
OpenGnSys Support Team 1fd62a4850 client: use image id in last command context
instead of using image id that client reports
2024-11-07 18:57:32 +01:00
OpenGnSys Support Team e67cdafb71 client: no need to update repository id after creating image
this repository id is already added to the database when the image creation is
requested, remove this code to update it again when the client replies
2024-11-07 18:52:07 +01:00
OpenGnSys Support Team 24e70ac3ff rest: switch to use grub2 templates as base directory
use grub2 template for GET /mode to list boot modes
2024-10-31 16:45:30 +01:00
OpenGnSys Support Team bff3d1dc9d client: remove image stub entry image creation registration fails
if client succeeds to create the image but server fails to register this image,
then remove the image stub in the database.
2024-10-31 01:19:46 +01:00
OpenGnSys Support Team 479998d76f src: add last client command context and use it for image creation
Add last client command context that is used in the request to client.

This allows to remove the stub image entry in the database in case that the
image creation fails.
2024-10-31 01:18:57 +01:00
OpenGnSys Support Team 83b1be6589 client: add helper function to reset last client command information
just a preparation, no functional changes are intended.
2024-10-31 00:39:43 +01:00
OpenGnSys Support Team 16cc22df3e src: place last client command information in struct
just a preparation, no functional changes are intended.
2024-10-31 00:37:03 +01:00
OpenGnSys Support Team 2febb50a92 rest: do not remove image on center delete
if center is removed, leave images in place, image belongs to
repository, not to center.

This comes from b4870733 ('#942 Add REST POST /center/delete method')
2024-10-30 12:20:42 +01:00
Alejandro Sirgo Rica e679925bd0 src: add safe_strtoull for safe string to number conversion
Add safe_strtoull to validate the execution of strtoull.
Definining the base of the number is required becase partition
codes are base 16 but they lack the 0x prefix.

Replace uses of atoi and strtoull/strtoul and log the conversion
errors.
2024-10-25 15:09:31 +02:00
Alejandro Sirgo Rica e960063a13 rest: add conditional boot mode configuration for ogReLive
Add a different boot mode configuration for the legacy live and the
new live.

Remove outdated params for ogReLive.
2024-10-24 13:45:49 +02:00
OpenGnSys Support Team 1d36d6c652 Revert "rest: add fetch param to boot mode configuration"
Some equipment reports this error:

  Error 28: Selected item cannot fit into memory

because line is too long, revert this commit until there is a better way
to add fetch= only on new live images.
2024-10-15 11:08:06 +02:00
Alejandro Sirgo Rica 65b397f59f rest: fix GET /session payload structure
Split partition data by client instead of a single array with every
partition.

Old payload structure:
{
  'sessions': [{'disk': 1, 'partition': 1, 'name': 'unknown'}, {'disk': 1, 'partition': 2, 'name': 'unknown'}, {'disk': 1, 'partition': 1, 'name': 'Ubuntu 22.04.4 LTS 64 bits'}]
}

New payload structure:
{
  'sessions': [
     {'addr': '1.1.1.1', 'partitions': ['disk': 1, 'partition': 1, 'name': 'Ubuntu 22.04.4 LTS 64 bits']},
     {'addr': '1.1.1.2', 'partitions': [{'disk': 1, 'partition': 1, 'name': 'unknown'}, {'disk': 1, 'partition': 2, 'name': 'unknown'}]}
  ]
}
2024-10-11 12:17:28 +02:00
Alejandro Sirgo Rica ca3503b716 src: remove placeholder image in failed image/create
Delete image data after a failed image creation.
2024-10-04 12:39:22 +02:00
Alejandro Sirgo Rica d6d15a753e src: move og_delete_image to dbi.c
Move og_delete_image into dbi.c as og_dbi_delete_image to use it
from client.c

no functional changes.
2024-10-04 12:00:22 +02:00
Alejandro Sirgo Rica d1734b30ec rest: add fetch param to boot mode configuration
Add "fetch=http://IP_REPO/OGLIVEDIR/filesystem.squashfs" string
to the client boot mode configuration.
2024-10-03 12:17:00 +02:00
OpenGnSys Support Team 89ba3f1b4f src: inet_aton() returns 0 on error
not < 0, fix this.
2024-10-01 12:35:13 +02:00
OpenGnSys Support Team e81685bba0 rest: do not allow two repositories to use the same IP address
repository need to have unique IP address, otherwise bail out.
2024-10-01 12:33:59 +02:00
OpenGnSys Support Team 85ca21be00 rest: validate name in repository/{add,update}
do not allow request without name.
2024-09-30 14:41:49 +02:00
OpenGnSys Support Team 760a82af2c rest: remove unused probe
unused since 87be2ce08
2024-09-30 14:41:49 +02:00
Alejandro Sirgo Rica 491bf6f5e9 rest: add free and used cache to GET /cache/list
Add "used_cache" and "free_cache" fields to the payload of GET
/cache/list.
2024-09-26 12:45:11 +02:00
OpenGnSys Support Team 3c395ecea2 client: move image list to cache data to consolidate it
Move list of images in the cache to cache_data. Add new functions to
initialize cache data (image list) and release it.
2024-09-25 14:49:17 +02:00
OpenGnSys Support Team 65aee8f3f3 json: move list_head at the tip of struct og_cache_image
this is accessed on list iterations in first place, improve cache locality.
2024-09-25 14:48:49 +02:00
Alejandro Sirgo Rica c7bfc370ae src: add used_size and free_size to partition data
Extend database table ordenadores_particiones to add new "used_size" and "free_size" fields.

  FIELD       TYPE
| tamano    | bigint   |
| uso       | tinyint  |
| used_size | bigint   |
| free_size | bigint   |

"tamano" is the field storing the total size of the partition.
"uso" is a field storing the integer percentage of use, it is preserved for backwards compatibility with scritps that access the database.
"used_size" and "free_size" contain the used and free partition
size in bytes.

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'}
    ]
  }
}

Parse the new "free_size" and "used_size" fields of each partition data in the response payload of /refresh

Parse "free_size" and "used_size" fields of the cache data in the reponse payload of /image/restore, /cache/delete and /cache/fetch

Replace "used_size" field of GET /client/setup with the value
of the new database field "used_size"
2024-09-25 12:09:32 +02:00
OpenGnSys Support Team b74a05cf38 client: log error on refresh
Report failure when trying to refresh client information.
2024-09-23 13:51:14 +02:00
OpenGnSys Support Team bdf4c60411 client: remove redundant refresh validation
json parser already validates attributes must be set on.
2024-09-23 13:51:14 +02:00
OpenGnSys Support Team 5d97a721d0 ogAdmServer: replace old actualizaConfiguracion
Reimplement the legacy funcion actualizaConfiguracion with
og_update_client_config in src/client.c

if disk does not exist, add it, otherwise update disk contents.

if partition size, code, filesystem or os is different, reset image id,
otherwise update partition usage only.

delete partitions that are gone at the end.
2024-09-23 13:51:07 +02:00