1
0
mirror of https://github.com/systemd/systemd synced 2025-10-06 12:14:46 +02:00

Compare commits

...

7 Commits

Author SHA1 Message Date
Lennart Poettering
f6c81cc805 repart: do not enforce 10M min size for immutable file systems by default 2025-07-15 22:58:27 +09:00
Li Tian
9e3c496bd3 90-uki-copy.install: Skip removing UKI related when BOOT_ENTRY_TYPE=type1
Commit b6d499768394
("Add --entry-type=type1|type2 option to kernel-install.")

Skip removing UKI related contents when BOOT_ENTRY_TYPE=type1

Signed-off-by: Li Tian <litian@redhat.com>
2025-07-15 22:56:33 +09:00
Lennart Poettering
987d283aca
machined mini tweaks (#38226) 2025-07-15 14:33:44 +02:00
DaanDeMeyer
dbbbdde266 nspawn: Generalize parse_bind_user_shell()
Preparation for reuse in vmspawn.
2025-07-15 14:22:52 +02:00
Lennart Poettering
d32ca63318 machined: use RET_GATHER() more 2025-07-15 13:09:08 +02:00
Lennart Poettering
4baede011d machined: align string table 2025-07-15 12:49:08 +02:00
Lennart Poettering
0fa8b51962 tree-wide: the env var is called $XDG_RUNTIME_DIR, not $XDG_RUNTIME_DIRECTORY 2025-07-15 12:49:08 +02:00
11 changed files with 49 additions and 38 deletions

View File

@ -143,7 +143,7 @@ strategies to avoid these issues:
the sticky bit has a different meaning for them. the sticky bit has a different meaning for them.
6. Don't use `/tmp/` or `/var/tmp/`, but use your own sub-directory under 6. Don't use `/tmp/` or `/var/tmp/`, but use your own sub-directory under
`/run/` or `$XDG_RUNTIME_DIRECTORY` (the former if privileged, the latter if `/run/` or `$XDG_RUNTIME_DIR` (the former if privileged, the latter if
unprivileged), or `/var/lib/` and `~/.config/` (similar, but with unprivileged), or `/var/lib/` and `~/.config/` (similar, but with
persistency and suitable for larger data). The two temporary directories persistency and suitable for larger data). The two temporary directories
`/tmp/` and `/var/tmp/` come with the implicit clean-up semantics described `/tmp/` and `/var/tmp/` come with the implicit clean-up semantics described

View File

@ -13,6 +13,7 @@
#include "log.h" #include "log.h"
#include "missing-network.h" #include "missing-network.h"
#include "parse-util.h" #include "parse-util.h"
#include "path-util.h"
#include "process-util.h" #include "process-util.h"
#include "string-util.h" #include "string-util.h"
#include "strv.h" #include "strv.h"
@ -369,6 +370,29 @@ int parse_fd(const char *t) {
return fd; return fd;
} }
int parse_user_shell(const char *s, char **ret_sh, bool *ret_copy) {
char *sh;
int r;
if (path_is_absolute(s) && path_is_normalized(s)) {
sh = strdup(s);
if (!sh)
return -ENOMEM;
*ret_sh = sh;
*ret_copy = false;
} else {
r = parse_boolean(s);
if (r < 0)
return r;
*ret_sh = NULL;
*ret_copy = r;
}
return 0;
}
static const char *mangle_base(const char *s, unsigned *base) { static const char *mangle_base(const char *s, unsigned *base) {
const char *k; const char *k;

View File

@ -20,6 +20,7 @@ int parse_sector_size(const char *t, uint64_t *ret);
int parse_range(const char *t, unsigned *lower, unsigned *upper); int parse_range(const char *t, unsigned *lower, unsigned *upper);
int parse_errno(const char *t); int parse_errno(const char *t);
int parse_fd(const char *t); int parse_fd(const char *t);
int parse_user_shell(const char *s, char **ret_sh, bool *ret_copy);
#define SAFE_ATO_REFUSE_PLUS_MINUS (1U << 30) #define SAFE_ATO_REFUSE_PLUS_MINUS (1U << 30)
#define SAFE_ATO_REFUSE_LEADING_ZERO (1U << 29) #define SAFE_ATO_REFUSE_LEADING_ZERO (1U << 29)

View File

@ -33,6 +33,11 @@ UKI_DIR="$BOOT_ROOT/EFI/Linux"
case "$COMMAND" in case "$COMMAND" in
remove) remove)
if [ "$KERNEL_INSTALL_BOOT_ENTRY_TYPE" = "type1" ]; then
[ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && \
echo "BOOT_ENTRY_TYPE=type1, not removing UKI related."
exit 0
fi
[ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && \ [ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && \
echo "Removing $UKI_DIR/$ENTRY_TOKEN-$KERNEL_VERSION*.efi and extras" echo "Removing $UKI_DIR/$ENTRY_TOKEN-$KERNEL_VERSION*.efi and extras"
exec rm -rf \ exec rm -rf \

View File

@ -1569,7 +1569,7 @@ static int setup_environment(
/* Also create a per-area subdirectory for $XDG_RUNTIME_DIR, so that each area has their own /* Also create a per-area subdirectory for $XDG_RUNTIME_DIR, so that each area has their own
* set of runtime services. We follow the same directory structure as for $HOME. Note that we * set of runtime services. We follow the same directory structure as for $HOME. Note that we
* do not define any form of automatic clean-up for the per-aera subdirs beyond the regular * do not define any form of automatic clean-up for the per-aera subdirs beyond the regular
* clean-up of the whole $XDG_RUNTIME_DIRECTORY hierarchy when the user finally logs out. */ * clean-up of the whole $XDG_RUNTIME_DIR hierarchy when the user finally logs out. */
r = make_area_runtime_directory(handle, ur, runtime_directory, area, &per_area_runtime_directory); r = make_area_runtime_directory(handle, ur, runtime_directory, area, &per_area_runtime_directory);
if (r != PAM_SUCCESS) if (r != PAM_SUCCESS)

View File

@ -1605,8 +1605,8 @@ int machine_open_root_directory(Machine *machine) {
static const char* const machine_class_table[_MACHINE_CLASS_MAX] = { static const char* const machine_class_table[_MACHINE_CLASS_MAX] = {
[MACHINE_CONTAINER] = "container", [MACHINE_CONTAINER] = "container",
[MACHINE_VM] = "vm", [MACHINE_VM] = "vm",
[MACHINE_HOST] = "host", [MACHINE_HOST] = "host",
}; };
DEFINE_STRING_TABLE_LOOKUP(machine_class, MachineClass); DEFINE_STRING_TABLE_LOOKUP(machine_class, MachineClass);

View File

@ -198,15 +198,13 @@ static int manager_enumerate_machines(Manager *m) {
k = manager_add_machine(m, de->d_name, &machine); k = manager_add_machine(m, de->d_name, &machine);
if (k < 0) { if (k < 0) {
r = log_error_errno(k, "Failed to add machine by file name %s: %m", de->d_name); RET_GATHER(r, log_error_errno(k, "Failed to add machine by file name %s: %m", de->d_name));
continue; continue;
} }
machine_add_to_gc_queue(machine); machine_add_to_gc_queue(machine);
k = machine_load(machine); RET_GATHER(r, machine_load(machine));
if (k < 0)
r = k;
} }
return r; return r;

View File

@ -1003,29 +1003,6 @@ int config_parse_bind_user(
return 0; return 0;
} }
int parse_bind_user_shell(const char *s, char **ret_sh, bool *ret_copy) {
char *sh;
int r;
if (path_is_absolute(s) && path_is_normalized(s)) {
sh = strdup(s);
if (!sh)
return -ENOMEM;
*ret_sh = sh;
*ret_copy = false;
} else {
r = parse_boolean(s);
if (r < 0)
return r;
*ret_sh = NULL;
*ret_copy = r;
}
return 0;
}
int config_parse_bind_user_shell( int config_parse_bind_user_shell(
const char *unit, const char *unit,
const char *filename, const char *filename,
@ -1053,7 +1030,7 @@ int config_parse_bind_user_shell(
return 0; return 0;
} }
r = parse_bind_user_shell(rvalue, &sh, &copy); r = parse_user_shell(rvalue, &sh, &copy);
if (r == -ENOMEM) if (r == -ENOMEM)
return log_oom(); return log_oom();
if (r < 0) { if (r < 0) {

View File

@ -276,8 +276,6 @@ CONFIG_PARSER_PROTOTYPE(config_parse_userns_ownership);
CONFIG_PARSER_PROTOTYPE(config_parse_bind_user); CONFIG_PARSER_PROTOTYPE(config_parse_bind_user);
CONFIG_PARSER_PROTOTYPE(config_parse_bind_user_shell); CONFIG_PARSER_PROTOTYPE(config_parse_bind_user_shell);
int parse_bind_user_shell(const char *s, char **ret_sh, bool *ret_copy);
const char* resolv_conf_mode_to_string(ResolvConfMode a) _const_; const char* resolv_conf_mode_to_string(ResolvConfMode a) _const_;
ResolvConfMode resolv_conf_mode_from_string(const char *s) _pure_; ResolvConfMode resolv_conf_mode_from_string(const char *s) _pure_;

View File

@ -1542,7 +1542,7 @@ static int parse_argv(int argc, char *argv[]) {
case ARG_BIND_USER_SHELL: { case ARG_BIND_USER_SHELL: {
bool copy = false; bool copy = false;
char *sh = NULL; char *sh = NULL;
r = parse_bind_user_shell(optarg, &sh, &copy); r = parse_user_shell(optarg, &sh, &copy);
if (r == -ENOMEM) if (r == -ENOMEM)
return log_oom(); return log_oom();
if (r < 0) if (r < 0)

View File

@ -955,7 +955,7 @@ static uint64_t partition_fstype_min_size(const Context *c, const Partition *p)
} }
static uint64_t partition_min_size(const Context *context, const Partition *p) { static uint64_t partition_min_size(const Context *context, const Partition *p) {
uint64_t sz, override_min; uint64_t sz;
assert(context); assert(context);
assert(p); assert(p);
@ -997,9 +997,17 @@ static uint64_t partition_min_size(const Context *context, const Partition *p) {
sz = d; sz = d;
} }
override_min = p->suppressing ? MAX(p->size_min, p->suppressing->size_min) : p->size_min; uint64_t min_size = p->size_min;
if (p->suppressing && (min_size == UINT64_MAX || p->suppressing->size_min > min_size))
min_size = p->suppressing->size_min;
return MAX(round_up_size(override_min != UINT64_MAX ? override_min : DEFAULT_MIN_SIZE, context->grain_size), sz); /* Default to 10M min size, except if the file system is read-only, in which case let's not enforce a
* minimum size, because even if we wanted to we couldn't take possession of the extra space
* allocated. */
if (min_size == UINT64_MAX)
min_size = (p->format && fstype_is_ro(p->format)) || p->verity != VERITY_OFF ? 1 : DEFAULT_MIN_SIZE;
return MAX(round_up_size(min_size, context->grain_size), sz);
} }
static uint64_t partition_max_size(const Context *context, const Partition *p) { static uint64_t partition_max_size(const Context *context, const Partition *p) {