]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - src/core/load-fragment.h
ssh-generator: generate /etc/issue.d/ with VSOCK ssh info data (#37819)
[thirdparty/systemd.git] / src / core / load-fragment.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2#pragma once
3
4#include "core-forward.h"
5
6/* These functions are declared in the header to make them accessible to unit tests. */
7bool contains_instance_specifier_superset(const char *s);
8int unit_is_likely_recursive_template_dependency(Unit *u, const char *name, const char *format);
9
10/* Config-parsing helpers relevant only for sources under src/core/ */
11int parse_crash_chvt(const char *value, int *data);
12int parse_confirm_spawn(const char *value, char **console);
13
14/* Read service data from .desktop file style configuration fragments */
15
16int unit_load_fragment(Unit *u);
17
18void unit_dump_config_items(FILE *f);
19
20CONFIG_PARSER_PROTOTYPE(config_parse_unit_deps);
21CONFIG_PARSER_PROTOTYPE(config_parse_obsolete_unit_deps);
22CONFIG_PARSER_PROTOTYPE(config_parse_unit_string_printf);
23CONFIG_PARSER_PROTOTYPE(config_parse_reboot_parameter);
24CONFIG_PARSER_PROTOTYPE(config_parse_unit_strv_printf);
25CONFIG_PARSER_PROTOTYPE(config_parse_unit_path_printf);
26CONFIG_PARSER_PROTOTYPE(config_parse_colon_separated_paths);
27CONFIG_PARSER_PROTOTYPE(config_parse_unit_path_strv_printf);
28CONFIG_PARSER_PROTOTYPE(config_parse_documentation);
29CONFIG_PARSER_PROTOTYPE(config_parse_socket_listen);
30CONFIG_PARSER_PROTOTYPE(config_parse_socket_protocol);
31CONFIG_PARSER_PROTOTYPE(config_parse_socket_bind);
32CONFIG_PARSER_PROTOTYPE(config_parse_exec_nice);
33CONFIG_PARSER_PROTOTYPE(config_parse_exec_oom_score_adjust);
34CONFIG_PARSER_PROTOTYPE(config_parse_exec_coredump_filter);
35CONFIG_PARSER_PROTOTYPE(config_parse_exec);
36CONFIG_PARSER_PROTOTYPE(config_parse_service_timeout);
37CONFIG_PARSER_PROTOTYPE(config_parse_service_timeout_abort);
38CONFIG_PARSER_PROTOTYPE(config_parse_service_timeout_failure_mode);
39CONFIG_PARSER_PROTOTYPE(config_parse_service_type);
40CONFIG_PARSER_PROTOTYPE(config_parse_service_exit_type);
41CONFIG_PARSER_PROTOTYPE(config_parse_service_restart);
42CONFIG_PARSER_PROTOTYPE(config_parse_service_restart_mode);
43CONFIG_PARSER_PROTOTYPE(config_parse_socket_bindtodevice);
44CONFIG_PARSER_PROTOTYPE(config_parse_exec_output);
45CONFIG_PARSER_PROTOTYPE(config_parse_exec_input);
46CONFIG_PARSER_PROTOTYPE(config_parse_exec_input_text);
47CONFIG_PARSER_PROTOTYPE(config_parse_exec_input_data);
48CONFIG_PARSER_PROTOTYPE(config_parse_exec_io_class);
49CONFIG_PARSER_PROTOTYPE(config_parse_exec_io_priority);
50CONFIG_PARSER_PROTOTYPE(config_parse_exec_cpu_sched_policy);
51CONFIG_PARSER_PROTOTYPE(config_parse_exec_cpu_sched_prio);
52CONFIG_PARSER_PROTOTYPE(config_parse_exec_cpu_affinity);
53CONFIG_PARSER_PROTOTYPE(config_parse_exec_mount_apivfs);
54CONFIG_PARSER_PROTOTYPE(config_parse_exec_secure_bits);
55CONFIG_PARSER_PROTOTYPE(config_parse_root_image_options);
56CONFIG_PARSER_PROTOTYPE(config_parse_exec_root_hash);
57CONFIG_PARSER_PROTOTYPE(config_parse_exec_root_hash_sig);
58CONFIG_PARSER_PROTOTYPE(config_parse_capability_set);
59CONFIG_PARSER_PROTOTYPE(config_parse_exec_mount_propagation_flag);
60CONFIG_PARSER_PROTOTYPE(config_parse_timer);
61CONFIG_PARSER_PROTOTYPE(config_parse_trigger_unit);
62CONFIG_PARSER_PROTOTYPE(config_parse_path_spec);
63CONFIG_PARSER_PROTOTYPE(config_parse_socket_service);
64CONFIG_PARSER_PROTOTYPE(config_parse_service_sockets);
65CONFIG_PARSER_PROTOTYPE(config_parse_unit_env_file);
66CONFIG_PARSER_PROTOTYPE(config_parse_ip_tos);
67CONFIG_PARSER_PROTOTYPE(config_parse_unit_condition_path);
68CONFIG_PARSER_PROTOTYPE(config_parse_unit_condition_string);
69CONFIG_PARSER_PROTOTYPE(config_parse_kill_mode);
70CONFIG_PARSER_PROTOTYPE(config_parse_notify_access);
71CONFIG_PARSER_PROTOTYPE(config_parse_emergency_action);
72CONFIG_PARSER_PROTOTYPE(config_parse_unit_mounts_for);
73CONFIG_PARSER_PROTOTYPE(config_parse_syscall_filter);
74CONFIG_PARSER_PROTOTYPE(config_parse_syscall_archs);
75CONFIG_PARSER_PROTOTYPE(config_parse_syscall_errno);
76CONFIG_PARSER_PROTOTYPE(config_parse_syscall_log);
77CONFIG_PARSER_PROTOTYPE(config_parse_environ);
78CONFIG_PARSER_PROTOTYPE(config_parse_pass_environ);
79CONFIG_PARSER_PROTOTYPE(config_parse_unset_environ);
80CONFIG_PARSER_PROTOTYPE(config_parse_unit_slice);
81CONFIG_PARSER_PROTOTYPE(config_parse_cg_weight);
82CONFIG_PARSER_PROTOTYPE(config_parse_cg_cpu_weight);
83CONFIG_PARSER_PROTOTYPE(config_parse_memory_limit);
84CONFIG_PARSER_PROTOTYPE(config_parse_tasks_max);
85CONFIG_PARSER_PROTOTYPE(config_parse_delegate);
86CONFIG_PARSER_PROTOTYPE(config_parse_delegate_subgroup);
87CONFIG_PARSER_PROTOTYPE(config_parse_managed_oom_mode);
88CONFIG_PARSER_PROTOTYPE(config_parse_managed_oom_mem_pressure_limit);
89CONFIG_PARSER_PROTOTYPE(config_parse_managed_oom_mem_pressure_duration_sec);
90CONFIG_PARSER_PROTOTYPE(config_parse_managed_oom_preference);
91CONFIG_PARSER_PROTOTYPE(config_parse_device_policy);
92CONFIG_PARSER_PROTOTYPE(config_parse_device_allow);
93CONFIG_PARSER_PROTOTYPE(config_parse_io_device_latency);
94CONFIG_PARSER_PROTOTYPE(config_parse_io_device_weight);
95CONFIG_PARSER_PROTOTYPE(config_parse_io_limit);
96CONFIG_PARSER_PROTOTYPE(config_parse_job_mode);
97CONFIG_PARSER_PROTOTYPE(config_parse_job_mode_isolate);
98CONFIG_PARSER_PROTOTYPE(config_parse_exec_selinux_context);
99CONFIG_PARSER_PROTOTYPE(config_parse_exec_apparmor_profile);
100CONFIG_PARSER_PROTOTYPE(config_parse_exec_smack_process_label);
101CONFIG_PARSER_PROTOTYPE(config_parse_address_families);
102CONFIG_PARSER_PROTOTYPE(config_parse_exec_preserve_mode);
103CONFIG_PARSER_PROTOTYPE(config_parse_exec_directories);
104CONFIG_PARSER_PROTOTYPE(config_parse_set_credential);
105CONFIG_PARSER_PROTOTYPE(config_parse_load_credential);
106CONFIG_PARSER_PROTOTYPE(config_parse_import_credential);
107CONFIG_PARSER_PROTOTYPE(config_parse_set_status);
108CONFIG_PARSER_PROTOTYPE(config_parse_namespace_path_strv);
109CONFIG_PARSER_PROTOTYPE(config_parse_temporary_filesystems);
110CONFIG_PARSER_PROTOTYPE(config_parse_private_tmp);
111CONFIG_PARSER_PROTOTYPE(config_parse_private_users);
112CONFIG_PARSER_PROTOTYPE(config_parse_private_pids);
113CONFIG_PARSER_PROTOTYPE(config_parse_protect_control_groups);
114CONFIG_PARSER_PROTOTYPE(config_parse_cpu_quota);
115CONFIG_PARSER_PROTOTYPE(config_parse_unit_cpu_set);
116CONFIG_PARSER_PROTOTYPE(config_parse_protect_home);
117CONFIG_PARSER_PROTOTYPE(config_parse_protect_hostname);
118CONFIG_PARSER_PROTOTYPE(config_parse_protect_system);
119CONFIG_PARSER_PROTOTYPE(config_parse_bus_name);
120CONFIG_PARSER_PROTOTYPE(config_parse_exec_utmp_mode);
121CONFIG_PARSER_PROTOTYPE(config_parse_working_directory);
122CONFIG_PARSER_PROTOTYPE(config_parse_fdname);
123CONFIG_PARSER_PROTOTYPE(config_parse_user_group_compat);
124CONFIG_PARSER_PROTOTYPE(config_parse_user_group_strv_compat);
125CONFIG_PARSER_PROTOTYPE(config_parse_namespace_flags);
126CONFIG_PARSER_PROTOTYPE(config_parse_restrict_filesystems);
127CONFIG_PARSER_PROTOTYPE(config_parse_bind_paths);
128CONFIG_PARSER_PROTOTYPE(config_parse_exec_keyring_mode);
129CONFIG_PARSER_PROTOTYPE(config_parse_protect_proc);
130CONFIG_PARSER_PROTOTYPE(config_parse_proc_subset);
131CONFIG_PARSER_PROTOTYPE(config_parse_job_timeout_sec);
132CONFIG_PARSER_PROTOTYPE(config_parse_job_running_timeout_sec);
133CONFIG_PARSER_PROTOTYPE(config_parse_log_extra_fields);
134CONFIG_PARSER_PROTOTYPE(config_parse_log_namespace);
135CONFIG_PARSER_PROTOTYPE(config_parse_collect_mode);
136CONFIG_PARSER_PROTOTYPE(config_parse_pid_file);
137CONFIG_PARSER_PROTOTYPE(config_parse_exit_status);
138CONFIG_PARSER_PROTOTYPE(config_parse_disable_controllers);
139CONFIG_PARSER_PROTOTYPE(config_parse_oom_policy);
140CONFIG_PARSER_PROTOTYPE(config_parse_numa_policy);
141CONFIG_PARSER_PROTOTYPE(config_parse_numa_mask);
142CONFIG_PARSER_PROTOTYPE(config_parse_ip_filter_bpf_progs);
143CONFIG_PARSER_PROTOTYPE(config_parse_show_status);
144CONFIG_PARSER_PROTOTYPE(config_parse_status_unit_format);
145CONFIG_PARSER_PROTOTYPE(config_parse_output_restricted);
146CONFIG_PARSER_PROTOTYPE(config_parse_crash_chvt);
147CONFIG_PARSER_PROTOTYPE(config_parse_timeout_abort);
148CONFIG_PARSER_PROTOTYPE(config_parse_swap_priority);
149CONFIG_PARSER_PROTOTYPE(config_parse_mount_images);
150CONFIG_PARSER_PROTOTYPE(config_parse_socket_timestamping);
151CONFIG_PARSER_PROTOTYPE(config_parse_socket_defer_trigger);
152CONFIG_PARSER_PROTOTYPE(config_parse_extension_images);
153CONFIG_PARSER_PROTOTYPE(config_parse_bpf_foreign_program);
154CONFIG_PARSER_PROTOTYPE(config_parse_cgroup_socket_bind);
155CONFIG_PARSER_PROTOTYPE(config_parse_restrict_network_interfaces);
156CONFIG_PARSER_PROTOTYPE(config_parse_watchdog_sec);
157CONFIG_PARSER_PROTOTYPE(config_parse_tty_size);
158CONFIG_PARSER_PROTOTYPE(config_parse_log_filter_patterns);
159CONFIG_PARSER_PROTOTYPE(config_parse_open_file);
160CONFIG_PARSER_PROTOTYPE(config_parse_memory_pressure_watch);
161CONFIG_PARSER_PROTOTYPE(config_parse_cgroup_nft_set);
162CONFIG_PARSER_PROTOTYPE(config_parse_mount_node);
163CONFIG_PARSER_PROTOTYPE(config_parse_concurrency_max);
164
165/* gperf prototypes */
166const struct ConfigPerfItem* load_fragment_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
167extern const char load_fragment_gperf_nulstr[];