/
niceSOFT
/
systemd
Обзор
Документация
Войти
/
niceSOFT
/
systemd
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/core/mount.h
106 строк
3 KB
Daan De Meyer
string-table: Introduce DECLARE_STRING_TABLE_LOOKUP() and friends
01 янв 2026, 22:05
01 янв 2026, 22:05
aec52c1
Код
Авторство
О чём код?
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "cgroup.h" #include "core-forward.h" #include "execute.h" #include "kill.h" #include "pidref.h" #include "unit.h" typedef enum MountExecCommand { MOUNT_EXEC_MOUNT, MOUNT_EXEC_UNMOUNT, MOUNT_EXEC_REMOUNT, _MOUNT_EXEC_COMMAND_MAX, _MOUNT_EXEC_COMMAND_INVALID = -EINVAL, } MountExecCommand; typedef enum MountResult { MOUNT_SUCCESS, MOUNT_FAILURE_RESOURCES, /* a bit of a misnomer, just our catch-all error for errnos we didn't expect */ MOUNT_FAILURE_TIMEOUT, MOUNT_FAILURE_EXIT_CODE, MOUNT_FAILURE_SIGNAL, MOUNT_FAILURE_CORE_DUMP, MOUNT_FAILURE_START_LIMIT_HIT, MOUNT_FAILURE_PROTOCOL, _MOUNT_RESULT_MAX, _MOUNT_RESULT_INVALID = -EINVAL, } MountResult; typedef struct MountParameters { char *what; char *options; char *fstype; } MountParameters; /* Used while looking for mount points that vanished or got added from/to /proc/self/mountinfo */ typedef enum MountProcFlags { MOUNT_PROC_IS_MOUNTED = 1 << 0, MOUNT_PROC_JUST_MOUNTED = 1 << 1, MOUNT_PROC_JUST_CHANGED = 1 << 2, } MountProcFlags; typedef struct Mount { Unit meta; char *where; MountParameters parameters_proc_self_mountinfo; MountParameters parameters_fragment; bool from_proc_self_mountinfo:1; bool from_fragment:1; MountProcFlags proc_flags; bool sloppy_options; bool lazy_unmount; bool force_unmount; bool read_write_only; MountResult result; MountResult reload_result; MountResult clean_result; mode_t directory_mode; usec_t timeout_usec; ExecCommand exec_command[_MOUNT_EXEC_COMMAND_MAX]; ExecContext exec_context; KillContext kill_context; CGroupContext cgroup_context; ExecRuntime *exec_runtime; CGroupRuntime *cgroup_runtime; MountState state, deserialized_state; ExecCommand *control_command; MountExecCommand control_command_id; PidRef control_pid; sd_event_source *timer_event_source; unsigned n_retry_umount; } Mount; extern const UnitVTable mount_vtable; void mount_fd_event(Manager *m, int events); char* mount_get_where_escaped(const Mount *m); char* mount_get_what_escaped(const Mount *m); char* mount_get_options_escaped(const Mount *m); const char* mount_get_fstype(const Mount *m); DECLARE_STRING_TABLE_LOOKUP(mount_exec_command, MountExecCommand); DECLARE_STRING_TABLE_LOOKUP(mount_result, MountResult); DEFINE_CAST(MOUNT, Mount);