1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <linux/oom.h>
29 #include <sys/prctl.h>
30 #include <sys/mount.h>
34 #include "conf-parser.h"
35 #include "load-fragment.h"
38 #include "securebits.h"
40 #include "unit-name.h"
42 #define DEFINE_CONFIG_PARSE_ENUM(function,name,type,msg) \
43 static int function( \
44 const char *filename, \
46 const char *section, \
59 if ((x = name##_from_string(rvalue)) < 0) { \
60 log_error("[%s:%u] " msg ": %s", filename, line, rvalue); \
69 static int config_parse_deps(
78 UnitDependency d
= PTR_TO_UINT(data
);
88 FOREACH_WORD(w
, l
, rvalue
, state
) {
92 if (!(t
= strndup(w
, l
)))
95 k
= unit_name_printf(u
, t
);
101 r
= unit_add_dependency_by_name(u
, d
, k
, NULL
, true);
111 static int config_parse_names(
112 const char *filename
,
130 FOREACH_WORD(w
, l
, rvalue
, state
) {
134 if (!(t
= strndup(w
, l
)))
137 k
= unit_name_printf(u
, t
);
143 r
= unit_merge_by_name(u
, k
);
153 static int config_parse_listen(
154 const char *filename
,
173 if (!(p
= new0(SocketPort
, 1)))
176 if (streq(lvalue
, "ListenFIFO")) {
177 p
->type
= SOCKET_FIFO
;
179 if (!(p
->path
= strdup(rvalue
))) {
184 p
->type
= SOCKET_SOCKET
;
186 if ((r
= socket_address_parse(&p
->address
, rvalue
)) < 0) {
187 log_error("[%s:%u] Failed to parse address value: %s", filename
, line
, rvalue
);
192 if (streq(lvalue
, "ListenStream"))
193 p
->address
.type
= SOCK_STREAM
;
194 else if (streq(lvalue
, "ListenDatagram"))
195 p
->address
.type
= SOCK_DGRAM
;
197 assert(streq(lvalue
, "ListenSequentialPacket"));
198 p
->address
.type
= SOCK_SEQPACKET
;
201 if (socket_address_family(&p
->address
) != AF_LOCAL
&& p
->address
.type
== SOCK_SEQPACKET
) {
203 return -EPROTONOSUPPORT
;
208 LIST_PREPEND(SocketPort
, port
, s
->ports
, p
);
213 static int config_parse_socket_bind(
214 const char *filename
,
232 if ((r
= parse_boolean(rvalue
)) < 0) {
233 log_error("[%s:%u] Failed to parse bind IPv6 only value: %s", filename
, line
, rvalue
);
237 s
->bind_ipv6_only
= r
? SOCKET_ADDRESS_IPV6_ONLY
: SOCKET_ADDRESS_BOTH
;
242 static int config_parse_nice(
243 const char *filename
,
251 ExecContext
*c
= data
;
259 if ((r
= safe_atoi(rvalue
, &priority
)) < 0) {
260 log_error("[%s:%u] Failed to parse nice priority: %s", filename
, line
, rvalue
);
264 if (priority
< PRIO_MIN
|| priority
>= PRIO_MAX
) {
265 log_error("[%s:%u] Nice priority out of range: %s", filename
, line
, rvalue
);
275 static int config_parse_oom_adjust(
276 const char *filename
,
284 ExecContext
*c
= data
;
292 if ((r
= safe_atoi(rvalue
, &oa
)) < 0) {
293 log_error("[%s:%u] Failed to parse OOM adjust value: %s", filename
, line
, rvalue
);
297 if (oa
< OOM_DISABLE
|| oa
> OOM_ADJUST_MAX
) {
298 log_error("[%s:%u] OOM adjust value out of range: %s", filename
, line
, rvalue
);
303 c
->oom_adjust_set
= true;
308 static int config_parse_mode(
309 const char *filename
,
327 l
= strtol(rvalue
, &x
, 8);
328 if (!x
|| *x
|| errno
) {
329 log_error("[%s:%u] Failed to parse mode value: %s", filename
, line
, rvalue
);
330 return errno
? -errno
: -EINVAL
;
333 if (l
< 0000 || l
> 07777) {
334 log_error("[%s:%u] mode value out of range: %s", filename
, line
, rvalue
);
342 static int config_parse_exec(
343 const char *filename
,
351 ExecCommand
**e
= data
, *nce
= NULL
;
364 FOREACH_WORD_QUOTED(w
, l
, rvalue
, state
)
367 if (!(n
= new(char*, k
+1)))
371 FOREACH_WORD_QUOTED(w
, l
, rvalue
, state
)
372 if (!(n
[k
++] = strndup(w
, l
)))
377 if (!n
[0] || !path_is_absolute(n
[0])) {
378 log_error("[%s:%u] Invalid executable path in command line: %s", filename
, line
, rvalue
);
383 if (!(nce
= new0(ExecCommand
, 1)))
387 if (!(nce
->path
= strdup(n
[0])))
390 exec_command_append_list(e
, nce
);
404 static int config_parse_usec(
405 const char *filename
,
421 if ((r
= parse_usec(rvalue
, usec
)) < 0) {
422 log_error("[%s:%u] Failed to parse time value: %s", filename
, line
, rvalue
);
429 DEFINE_CONFIG_PARSE_ENUM(config_parse_service_type
, service_type
, ServiceType
, "Failed to parse service type");
430 DEFINE_CONFIG_PARSE_ENUM(config_parse_service_restart
, service_restart
, ServiceRestart
, "Failed to parse service restart specifier");
432 static int config_parse_bindtodevice(
433 const char *filename
,
449 if (rvalue
[0] && !streq(rvalue
, "*")) {
450 if (!(n
= strdup(rvalue
)))
455 free(s
->bind_to_device
);
456 s
->bind_to_device
= n
;
461 DEFINE_CONFIG_PARSE_ENUM(config_parse_output
, exec_output
, ExecOutput
, "Failed to parse output specifier");
462 DEFINE_CONFIG_PARSE_ENUM(config_parse_input
, exec_input
, ExecInput
, "Failed to parse input specifier");
464 static int config_parse_facility(
465 const char *filename
,
481 if ((x
= log_facility_from_string(rvalue
)) < 0) {
482 log_error("[%s:%u] Failed to parse log facility: %s", filename
, line
, rvalue
);
486 *o
= LOG_MAKEPRI(x
, LOG_PRI(*o
));
491 static int config_parse_level(
492 const char *filename
,
508 if ((x
= log_level_from_string(rvalue
)) < 0) {
509 log_error("[%s:%u] Failed to parse log level: %s", filename
, line
, rvalue
);
513 *o
= LOG_MAKEPRI(LOG_FAC(*o
), x
);
517 static int config_parse_io_class(
518 const char *filename
,
526 ExecContext
*c
= data
;
534 if ((x
= ioprio_class_from_string(rvalue
)) < 0) {
535 log_error("[%s:%u] Failed to parse IO scheduling class: %s", filename
, line
, rvalue
);
539 c
->ioprio
= IOPRIO_PRIO_VALUE(x
, IOPRIO_PRIO_DATA(c
->ioprio
));
540 c
->ioprio_set
= true;
545 static int config_parse_io_priority(
546 const char *filename
,
554 ExecContext
*c
= data
;
562 if (safe_atoi(rvalue
, &i
) < 0 || i
< 0 || i
>= IOPRIO_BE_NR
) {
563 log_error("[%s:%u] Failed to parse io priority: %s", filename
, line
, rvalue
);
567 c
->ioprio
= IOPRIO_PRIO_VALUE(IOPRIO_PRIO_CLASS(c
->ioprio
), i
);
568 c
->ioprio_set
= true;
573 static int config_parse_cpu_sched_policy(
574 const char *filename
,
583 ExecContext
*c
= data
;
591 if ((x
= sched_policy_from_string(rvalue
)) < 0) {
592 log_error("[%s:%u] Failed to parse CPU scheduling policy: %s", filename
, line
, rvalue
);
596 c
->cpu_sched_policy
= x
;
597 c
->cpu_sched_set
= true;
602 static int config_parse_cpu_sched_prio(
603 const char *filename
,
611 ExecContext
*c
= data
;
619 /* On Linux RR/FIFO have the same range */
620 if (safe_atoi(rvalue
, &i
) < 0 || i
< sched_get_priority_min(SCHED_RR
) || i
> sched_get_priority_max(SCHED_RR
)) {
621 log_error("[%s:%u] Failed to parse CPU scheduling priority: %s", filename
, line
, rvalue
);
625 c
->cpu_sched_priority
= i
;
626 c
->cpu_sched_set
= true;
631 static int config_parse_cpu_affinity(
632 const char *filename
,
640 ExecContext
*c
= data
;
650 FOREACH_WORD(w
, l
, rvalue
, state
) {
655 if (!(t
= strndup(w
, l
)))
658 r
= safe_atou(t
, &cpu
);
661 if (r
< 0 || cpu
>= CPU_SETSIZE
) {
662 log_error("[%s:%u] Failed to parse CPU affinity: %s", filename
, line
, rvalue
);
666 CPU_SET(cpu
, &c
->cpu_affinity
);
669 c
->cpu_affinity_set
= true;
674 static int config_parse_capabilities(
675 const char *filename
,
683 ExecContext
*c
= data
;
691 if (!(cap
= cap_from_text(rvalue
))) {
695 log_error("[%s:%u] Failed to parse capabilities: %s", filename
, line
, rvalue
);
700 cap_free(c
->capabilities
);
701 c
->capabilities
= cap
;
706 static int config_parse_secure_bits(
707 const char *filename
,
715 ExecContext
*c
= data
;
725 FOREACH_WORD(w
, l
, rvalue
, state
) {
726 if (first_word(w
, "keep-caps"))
727 c
->secure_bits
|= SECURE_KEEP_CAPS
;
728 else if (first_word(w
, "keep-caps-locked"))
729 c
->secure_bits
|= SECURE_KEEP_CAPS_LOCKED
;
730 else if (first_word(w
, "no-setuid-fixup"))
731 c
->secure_bits
|= SECURE_NO_SETUID_FIXUP
;
732 else if (first_word(w
, "no-setuid-fixup-locked"))
733 c
->secure_bits
|= SECURE_NO_SETUID_FIXUP_LOCKED
;
734 else if (first_word(w
, "noroot"))
735 c
->secure_bits
|= SECURE_NOROOT
;
736 else if (first_word(w
, "noroot-locked"))
737 c
->secure_bits
|= SECURE_NOROOT_LOCKED
;
739 log_error("[%s:%u] Failed to parse secure bits: %s", filename
, line
, rvalue
);
747 static int config_parse_bounding_set(
748 const char *filename
,
756 ExecContext
*c
= data
;
766 FOREACH_WORD(w
, l
, rvalue
, state
) {
771 if (!(t
= strndup(w
, l
)))
774 r
= cap_from_name(t
, &cap
);
778 log_error("[%s:%u] Failed to parse capability bounding set: %s", filename
, line
, rvalue
);
782 c
->capability_bounding_set_drop
|= 1 << cap
;
788 static int config_parse_timer_slack_ns(
789 const char *filename
,
797 ExecContext
*c
= data
;
806 if ((r
= safe_atolu(rvalue
, &u
)) < 0) {
807 log_error("[%s:%u] Failed to parse time slack value: %s", filename
, line
, rvalue
);
811 c
->timer_slack_ns
= u
;
816 static int config_parse_limit(
817 const char *filename
,
825 struct rlimit
**rl
= data
;
826 unsigned long long u
;
834 if ((r
= safe_atollu(rvalue
, &u
)) < 0) {
835 log_error("[%s:%u] Failed to parse resource value: %s", filename
, line
, rvalue
);
840 if (!(*rl
= new(struct rlimit
, 1)))
843 (*rl
)->rlim_cur
= (*rl
)->rlim_max
= (rlim_t
) u
;
847 static int config_parse_cgroup(
848 const char *filename
,
861 FOREACH_WORD(w
, l
, rvalue
, state
) {
865 if (!(t
= strndup(w
, l
)))
868 r
= unit_add_cgroup_from_text(u
, t
);
878 static int config_parse_sysv_priority(
879 const char *filename
,
887 int *priority
= data
;
895 if ((r
= safe_atoi(rvalue
, &i
)) < 0 || i
< 0) {
896 log_error("[%s:%u] Failed to parse SysV start priority: %s", filename
, line
, rvalue
);
904 DEFINE_CONFIG_PARSE_ENUM(config_parse_kill_mode
, kill_mode
, KillMode
, "Failed to parse kill mode");
906 static int config_parse_mount_flags(
907 const char *filename
,
915 ExecContext
*c
= data
;
919 unsigned long flags
= 0;
926 FOREACH_WORD(w
, l
, rvalue
, state
) {
927 if (strncmp(w
, "shared", l
) == 0)
929 else if (strncmp(w
, "slave", l
) == 0)
931 else if (strncmp(w
, "private", l
) == 0)
934 log_error("[%s:%u] Failed to parse mount flags: %s", filename
, line
, rvalue
);
939 c
->mount_flags
= flags
;
945 static int open_follow(char **filename
, FILE **_f
, Set
*names
, char **_final
) {
956 /* This will update the filename pointer if the loaded file is
957 * reached by a symlink. The old string will be freed. */
960 char *target
, *k
, *name
;
962 if (c
++ >= FOLLOW_MAX
)
965 path_kill_slashes(*filename
);
967 /* Add the file name we are currently looking at to
968 * the names of this unit */
969 name
= file_name_from_path(*filename
);
970 if (!(id
= set_get(names
, name
))) {
972 if (!(id
= strdup(name
)))
975 if ((r
= set_put(names
, id
)) < 0) {
981 /* Try to open the file name, but don't if its a symlink */
982 if ((fd
= open(*filename
, O_RDONLY
|O_CLOEXEC
|O_NOCTTY
|O_NOFOLLOW
)) >= 0)
988 /* Hmm, so this is a symlink. Let's read the name, and follow it manually */
989 if ((r
= readlink_malloc(*filename
, &target
)) < 0)
992 k
= file_in_same_dir(*filename
, target
);
1002 if (!(f
= fdopen(fd
, "r"))) {
1004 close_nointr_nofail(fd
);
1013 static int merge_by_names(Unit
**u
, Set
*names
, const char *id
) {
1021 /* Let's try to add in all symlink names we found */
1022 while ((k
= set_steal_first(names
))) {
1024 /* First try to merge in the other name into our
1026 if ((r
= unit_merge_by_name(*u
, k
)) < 0) {
1029 /* Hmm, we couldn't merge the other unit into
1030 * ours? Then let's try it the other way
1033 other
= manager_get_unit((*u
)->meta
.manager
, k
);
1037 if ((r
= unit_merge(other
, *u
)) >= 0) {
1039 return merge_by_names(u
, names
, NULL
);
1046 unit_choose_id(*u
, id
);
1054 static void dump_items(FILE *f
, const ConfigItem
*items
) {
1055 const ConfigItem
*i
;
1056 const char *prev_section
= NULL
;
1057 bool not_first
= false;
1060 ConfigParserCallback callback
;
1063 { config_parse_int
, "INTEGER" },
1064 { config_parse_unsigned
, "UNSIGNED" },
1065 { config_parse_size
, "SIZE" },
1066 { config_parse_bool
, "BOOLEAN" },
1067 { config_parse_string
, "STRING" },
1068 { config_parse_path
, "PATH" },
1069 { config_parse_strv
, "STRING [...]" },
1070 { config_parse_nice
, "NICE" },
1071 { config_parse_oom_adjust
, "OOMADJUST" },
1072 { config_parse_io_class
, "IOCLASS" },
1073 { config_parse_io_priority
, "IOPRIORITY" },
1074 { config_parse_cpu_sched_policy
, "CPUSCHEDPOLICY" },
1075 { config_parse_cpu_sched_prio
, "CPUSCHEDPRIO" },
1076 { config_parse_cpu_affinity
, "CPUAFFINITY" },
1077 { config_parse_mode
, "MODE" },
1078 { config_parse_output
, "OUTPUT" },
1079 { config_parse_input
, "INPUT" },
1080 { config_parse_facility
, "FACILITY" },
1081 { config_parse_level
, "LEVEL" },
1082 { config_parse_capabilities
, "CAPABILITIES" },
1083 { config_parse_secure_bits
, "SECUREBITS" },
1084 { config_parse_bounding_set
, "BOUNDINGSET" },
1085 { config_parse_timer_slack_ns
, "TIMERSLACK" },
1086 { config_parse_limit
, "LIMIT" },
1087 { config_parse_cgroup
, "CGROUP [...]" },
1088 { config_parse_deps
, "UNIT [...]" },
1089 { config_parse_names
, "UNIT [...]" },
1090 { config_parse_exec
, "PATH [ARGUMENT [...]]" },
1091 { config_parse_service_type
, "SERVICETYPE" },
1092 { config_parse_service_restart
, "SERVICERESTART" },
1093 { config_parse_sysv_priority
, "SYSVPRIORITY" },
1094 { config_parse_kill_mode
, "KILLMODE" },
1095 { config_parse_listen
, "SOCKET [...]" },
1096 { config_parse_socket_bind
, "SOCKETBIND" },
1097 { config_parse_bindtodevice
, "NETWORKINTERFACE" },
1098 { config_parse_usec
, "SECONDS" },
1099 { config_parse_path_strv
, "PATH [...]" },
1100 { config_parse_mount_flags
, "MOUNTFLAG [...]" }
1106 for (i
= items
; i
->lvalue
; i
++) {
1108 const char *rvalue
= "OTHER";
1110 if (!streq_ptr(i
->section
, prev_section
)) {
1116 fprintf(f
, "[%s]\n", i
->section
);
1117 prev_section
= i
->section
;
1120 for (j
= 0; j
< ELEMENTSOF(table
); j
++)
1121 if (i
->parse
== table
[j
].callback
) {
1122 rvalue
= table
[j
].rvalue
;
1126 fprintf(f
, "%s=%s\n", i
->lvalue
, rvalue
);
1130 static int load_from_path(Unit
*u
, const char *path
) {
1132 static const char* const section_table
[_UNIT_TYPE_MAX
] = {
1133 [UNIT_SERVICE
] = "Service",
1134 [UNIT_TIMER
] = "Timer",
1135 [UNIT_SOCKET
] = "Socket",
1136 [UNIT_TARGET
] = "Target",
1137 [UNIT_DEVICE
] = "Device",
1138 [UNIT_MOUNT
] = "Mount",
1139 [UNIT_AUTOMOUNT
] = "Automount",
1140 [UNIT_SNAPSHOT
] = "Snapshot"
1143 #define EXEC_CONTEXT_CONFIG_ITEMS(context, section) \
1144 { "WorkingDirectory", config_parse_path, &(context).working_directory, section }, \
1145 { "RootDirectory", config_parse_path, &(context).root_directory, section }, \
1146 { "User", config_parse_string, &(context).user, section }, \
1147 { "Group", config_parse_string, &(context).group, section }, \
1148 { "SupplementaryGroups", config_parse_strv, &(context).supplementary_groups, section }, \
1149 { "Nice", config_parse_nice, &(context), section }, \
1150 { "OOMAdjust", config_parse_oom_adjust, &(context), section }, \
1151 { "IOSchedulingClass", config_parse_io_class, &(context), section }, \
1152 { "IOSchedulingPriority", config_parse_io_priority, &(context), section }, \
1153 { "CPUSchedulingPolicy", config_parse_cpu_sched_policy,&(context), section }, \
1154 { "CPUSchedulingPriority", config_parse_cpu_sched_prio, &(context), section }, \
1155 { "CPUSchedulingResetOnFork", config_parse_bool, &(context).cpu_sched_reset_on_fork, section }, \
1156 { "CPUAffinity", config_parse_cpu_affinity, &(context), section }, \
1157 { "UMask", config_parse_mode, &(context).umask, section }, \
1158 { "Environment", config_parse_strv, &(context).environment, section }, \
1159 { "StandardInput", config_parse_input, &(context).std_input, section }, \
1160 { "StandardOutput", config_parse_output, &(context).std_output, section }, \
1161 { "StandardError", config_parse_output, &(context).std_output, section }, \
1162 { "TTYPath", config_parse_path, &(context).tty_path, section }, \
1163 { "SyslogIdentifier", config_parse_string, &(context).syslog_identifier, section }, \
1164 { "SyslogFacility", config_parse_facility, &(context).syslog_priority, section }, \
1165 { "SyslogLevel", config_parse_level, &(context).syslog_priority, section }, \
1166 { "Capabilities", config_parse_capabilities, &(context), section }, \
1167 { "SecureBits", config_parse_secure_bits, &(context), section }, \
1168 { "CapabilityBoundingSetDrop", config_parse_bounding_set, &(context), section }, \
1169 { "TimerSlackNS", config_parse_timer_slack_ns, &(context), section }, \
1170 { "LimitCPU", config_parse_limit, &(context).rlimit[RLIMIT_CPU], section }, \
1171 { "LimitFSIZE", config_parse_limit, &(context).rlimit[RLIMIT_FSIZE], section }, \
1172 { "LimitDATA", config_parse_limit, &(context).rlimit[RLIMIT_DATA], section }, \
1173 { "LimitSTACK", config_parse_limit, &(context).rlimit[RLIMIT_STACK], section }, \
1174 { "LimitCORE", config_parse_limit, &(context).rlimit[RLIMIT_CORE], section }, \
1175 { "LimitRSS", config_parse_limit, &(context).rlimit[RLIMIT_RSS], section }, \
1176 { "LimitNOFILE", config_parse_limit, &(context).rlimit[RLIMIT_NOFILE], section }, \
1177 { "LimitAS", config_parse_limit, &(context).rlimit[RLIMIT_AS], section }, \
1178 { "LimitNPROC", config_parse_limit, &(context).rlimit[RLIMIT_NPROC], section }, \
1179 { "LimitMEMLOCK", config_parse_limit, &(context).rlimit[RLIMIT_MEMLOCK], section }, \
1180 { "LimitLOCKS", config_parse_limit, &(context).rlimit[RLIMIT_LOCKS], section }, \
1181 { "LimitSIGPENDING", config_parse_limit, &(context).rlimit[RLIMIT_SIGPENDING], section }, \
1182 { "LimitMSGQUEUE", config_parse_limit, &(context).rlimit[RLIMIT_MSGQUEUE], section }, \
1183 { "LimitNICE", config_parse_limit, &(context).rlimit[RLIMIT_NICE], section }, \
1184 { "LimitRTPRIO", config_parse_limit, &(context).rlimit[RLIMIT_RTPRIO], section }, \
1185 { "LimitRTTIME", config_parse_limit, &(context).rlimit[RLIMIT_RTTIME], section }, \
1186 { "ControlGroup", config_parse_cgroup, u, section }, \
1187 { "ReadWriteDirectories", config_parse_path_strv, &(context).read_write_dirs, section }, \
1188 { "ReadOnlyDirectories", config_parse_path_strv, &(context).read_only_dirs, section }, \
1189 { "InaccessibleDirectories",config_parse_path_strv, &(context).inaccessible_dirs, section }, \
1190 { "PrivateTmp", config_parse_bool, &(context).private_tmp, section }, \
1191 { "MountFlags", config_parse_mount_flags, &(context), section }
1193 const ConfigItem items
[] = {
1194 { "Names", config_parse_names
, u
, "Unit" },
1195 { "Description", config_parse_string
, &u
->meta
.description
, "Unit" },
1196 { "Requires", config_parse_deps
, UINT_TO_PTR(UNIT_REQUIRES
), "Unit" },
1197 { "RequiresOverridable", config_parse_deps
, UINT_TO_PTR(UNIT_REQUIRES_OVERRIDABLE
), "Unit" },
1198 { "Requisite", config_parse_deps
, UINT_TO_PTR(UNIT_REQUISITE
), "Unit" },
1199 { "RequisiteOverridable", config_parse_deps
, UINT_TO_PTR(UNIT_REQUISITE_OVERRIDABLE
), "Unit" },
1200 { "Wants", config_parse_deps
, UINT_TO_PTR(UNIT_WANTS
), "Unit" },
1201 { "Conflicts", config_parse_deps
, UINT_TO_PTR(UNIT_CONFLICTS
), "Unit" },
1202 { "Before", config_parse_deps
, UINT_TO_PTR(UNIT_BEFORE
), "Unit" },
1203 { "After", config_parse_deps
, UINT_TO_PTR(UNIT_AFTER
), "Unit" },
1204 { "RecursiveStop", config_parse_bool
, &u
->meta
.recursive_stop
, "Unit" },
1205 { "StopWhenUnneeded", config_parse_bool
, &u
->meta
.stop_when_unneeded
, "Unit" },
1207 { "PIDFile", config_parse_path
, &u
->service
.pid_file
, "Service" },
1208 { "ExecStartPre", config_parse_exec
, u
->service
.exec_command
+SERVICE_EXEC_START_PRE
, "Service" },
1209 { "ExecStart", config_parse_exec
, u
->service
.exec_command
+SERVICE_EXEC_START
, "Service" },
1210 { "ExecStartPost", config_parse_exec
, u
->service
.exec_command
+SERVICE_EXEC_START_POST
, "Service" },
1211 { "ExecReload", config_parse_exec
, u
->service
.exec_command
+SERVICE_EXEC_RELOAD
, "Service" },
1212 { "ExecStop", config_parse_exec
, u
->service
.exec_command
+SERVICE_EXEC_STOP
, "Service" },
1213 { "ExecStopPost", config_parse_exec
, u
->service
.exec_command
+SERVICE_EXEC_STOP_POST
, "Service" },
1214 { "RestartSec", config_parse_usec
, &u
->service
.restart_usec
, "Service" },
1215 { "TimeoutSec", config_parse_usec
, &u
->service
.timeout_usec
, "Service" },
1216 { "Type", config_parse_service_type
, &u
->service
.type
, "Service" },
1217 { "Restart", config_parse_service_restart
, &u
->service
.restart
, "Service" },
1218 { "PermissionsStartOnly", config_parse_bool
, &u
->service
.permissions_start_only
, "Service" },
1219 { "RootDirectoryStartOnly", config_parse_bool
, &u
->service
.root_directory_start_only
, "Service" },
1220 { "ValidNoProcess", config_parse_bool
, &u
->service
.valid_no_process
, "Service" },
1221 { "SysVStartPriority", config_parse_sysv_priority
, &u
->service
.sysv_start_priority
, "Service" },
1222 { "KillMode", config_parse_kill_mode
, &u
->service
.kill_mode
, "Service" },
1223 { "NonBlocking", config_parse_bool
, &u
->service
.exec_context
.non_blocking
, "Service" },
1224 { "BusName", config_parse_string
, &u
->service
.bus_name
, "Service" },
1225 EXEC_CONTEXT_CONFIG_ITEMS(u
->service
.exec_context
, "Service"),
1227 { "ListenStream", config_parse_listen
, &u
->socket
, "Socket" },
1228 { "ListenDatagram", config_parse_listen
, &u
->socket
, "Socket" },
1229 { "ListenSequentialPacket", config_parse_listen
, &u
->socket
, "Socket" },
1230 { "ListenFIFO", config_parse_listen
, &u
->socket
, "Socket" },
1231 { "BindIPv6Only", config_parse_socket_bind
, &u
->socket
, "Socket" },
1232 { "Backlog", config_parse_unsigned
, &u
->socket
.backlog
, "Socket" },
1233 { "BindToDevice", config_parse_bindtodevice
, &u
->socket
, "Socket" },
1234 { "ExecStartPre", config_parse_exec
, u
->socket
.exec_command
+SOCKET_EXEC_START_PRE
, "Socket" },
1235 { "ExecStartPost", config_parse_exec
, u
->socket
.exec_command
+SOCKET_EXEC_START_POST
, "Socket" },
1236 { "ExecStopPre", config_parse_exec
, u
->socket
.exec_command
+SOCKET_EXEC_STOP_PRE
, "Socket" },
1237 { "ExecStopPost", config_parse_exec
, u
->socket
.exec_command
+SOCKET_EXEC_STOP_POST
, "Socket" },
1238 { "TimeoutSec", config_parse_usec
, &u
->socket
.timeout_usec
, "Socket" },
1239 { "DirectoryMode", config_parse_mode
, &u
->socket
.directory_mode
, "Socket" },
1240 { "SocketMode", config_parse_mode
, &u
->socket
.socket_mode
, "Socket" },
1241 { "KillMode", config_parse_kill_mode
, &u
->socket
.kill_mode
, "Socket" },
1242 { "Accept", config_parse_bool
, &u
->socket
.accept
, "Socket" },
1243 EXEC_CONTEXT_CONFIG_ITEMS(u
->socket
.exec_context
, "Socket"),
1245 { "What", config_parse_string
, &u
->mount
.parameters_fragment
.what
, "Mount" },
1246 { "Where", config_parse_path
, &u
->mount
.where
, "Mount" },
1247 { "Options", config_parse_string
, &u
->mount
.parameters_fragment
.options
, "Mount" },
1248 { "Type", config_parse_string
, &u
->mount
.parameters_fragment
.fstype
, "Mount" },
1249 { "TimeoutSec", config_parse_usec
, &u
->mount
.timeout_usec
, "Mount" },
1250 { "KillMode", config_parse_kill_mode
, &u
->mount
.kill_mode
, "Mount" },
1251 EXEC_CONTEXT_CONFIG_ITEMS(u
->mount
.exec_context
, "Mount"),
1253 { "Where", config_parse_path
, &u
->automount
.where
, "Automount" },
1255 { NULL
, NULL
, NULL
, NULL
}
1258 #undef EXEC_CONTEXT_CONFIG_ITEMS
1260 const char *sections
[3];
1265 char *filename
= NULL
, *id
= NULL
;
1269 /* Dirty dirty hack. */
1270 dump_items((FILE*) path
, items
);
1277 sections
[0] = "Unit";
1278 sections
[1] = section_table
[u
->meta
.type
];
1281 if (!(symlink_names
= set_new(string_hash_func
, string_compare_func
)))
1284 if (path_is_absolute(path
)) {
1286 if (!(filename
= strdup(path
))) {
1291 if ((r
= open_follow(&filename
, &f
, symlink_names
, &id
)) < 0) {
1302 STRV_FOREACH(p
, u
->meta
.manager
->unit_path
) {
1304 /* Instead of opening the path right away, we manually
1305 * follow all symlinks and add their name to our unit
1306 * name set while doing so */
1307 if (!(filename
= path_make_absolute(path
, *p
))) {
1312 if ((r
= open_follow(&filename
, &f
, symlink_names
, &id
)) < 0) {
1321 /* Empty the symlink names for the next run */
1322 while ((sn
= set_steal_first(symlink_names
)))
1338 if ((r
= merge_by_names(&merged
, symlink_names
, id
)) < 0)
1342 u
->meta
.load_state
= UNIT_MERGED
;
1347 /* Now, parse the file contents */
1348 if ((r
= config_parse(filename
, f
, sections
, items
, u
)) < 0)
1351 free(u
->meta
.fragment_path
);
1352 u
->meta
.fragment_path
= filename
;
1355 u
->meta
.load_state
= UNIT_LOADED
;
1359 while ((k
= set_steal_first(symlink_names
)))
1362 set_free(symlink_names
);
1371 int unit_load_fragment(Unit
*u
) {
1376 if (u
->meta
.fragment_path
) {
1378 if ((r
= load_from_path(u
, u
->meta
.fragment_path
)) < 0)
1385 /* Try to find the unit under its id */
1386 if ((r
= load_from_path(u
, u
->meta
.id
)) < 0)
1389 /* Try to find an alias we can load this with */
1390 if (u
->meta
.load_state
== UNIT_STUB
)
1391 SET_FOREACH(t
, u
->meta
.names
, i
) {
1393 if (t
== u
->meta
.id
)
1396 if ((r
= load_from_path(u
, t
)) < 0)
1399 if (u
->meta
.load_state
!= UNIT_STUB
)
1403 /* Now, follow the same logic, but look for a template */
1404 if (u
->meta
.load_state
== UNIT_STUB
&& u
->meta
.instance
) {
1407 if (!(k
= unit_name_template(u
->meta
.id
)))
1410 r
= load_from_path(u
, k
);
1416 if (u
->meta
.load_state
== UNIT_STUB
)
1417 SET_FOREACH(t
, u
->meta
.names
, i
) {
1419 if (t
== u
->meta
.id
)
1422 if (!(k
= unit_name_template(t
)))
1425 r
= load_from_path(u
, k
);
1431 if (u
->meta
.load_state
!= UNIT_STUB
)
1440 void unit_dump_config_items(FILE *f
) {
1441 /* OK, this wins a prize for extreme ugliness. */
1443 load_from_path(NULL
, (const void*) f
);