6 .Nd System wide and per-user daemon/agent configuration files
8 This document details the parameters that can be given to an XML property list that can be loaded into
13 Daemons or agents managed by
15 are expected to behave certain ways.
17 A daemon or agent launched by
19 MUST NOT do the following in the process directly launched by
22 .Bl -bullet -offset indent -compact
27 Do the moral equivalent of
31 and have the parent process
37 A daemon or agent launched by
39 SHOULD NOT do the following as a part of their startup initialization:
41 .Bl -bullet -offset indent -compact
43 Setup the user ID or group ID.
45 Setup the working directory.
51 Close "stray" file descriptors.
57 Setup resource limits with
63 Ignore the SIGTERM signal.
66 A daemon or agent launched by
70 .Bl -bullet -offset indent -compact
72 Launch on demand given criteria specified in the XML property list.
73 More information can be found later in this man page.
75 Catch the SIGTERM signal.
77 .Sh XML PROPERTY LIST KEYS
78 The follow keys can be used to describe the configuration details of your daemon or agent.
79 Property lists are Apple's standard configuration file format. Please see
81 for more information. Please note. Property list files are expected to have their name end in ".plist".
85 This required key uniquely identifies the job to
87 .It Sy Disabled <boolean>
88 This optional key is used to disable your job. The default is false.
89 .It Sy UserName <string>
90 This optional key specifies the user to run the job as. This key is only applicable when launchd is running as root.
91 .It Sy GroupName <string>
92 This optional key specifies the group to run the job as. This key is only applicable when launchd is running as root. If UserName is set and GroupName is not, the the group will be set to the default group of the user.
93 .It Sy inetdCompatibility <dictionary>
94 The presence of this key specifies that the daemon expects to be run as if it were launched from inetd.
95 .Bl -ohang -offset indent
97 This flag corresponds to the "wait" or "nowait" option of inetd. If true, then the listening socket is passed via the standard in/out/error file descriptors. If false, then
99 is called on behalf of the job, and the result is passed via the standard in/out/error descriptors.
101 .It Sy LimitLoadToHosts <array of strings>
102 This configuration file only applies to the hosts listed with this key.
103 .It Sy LimitLoadFromHosts <array of strings>
104 This configuration file only applies to hosts NOT listed with this key.
105 .It Sy LimitLoadToSessionType <string>
106 This configuration file only applies to sessions of the type specified. This key is used
107 in concert with the -S flag to
109 .It Sy Program <string>
110 This key maps to the first argument of
112 If this key is missing, then the first element of the array of strings provided to the ProgramArguments will be used instead.
113 This key is required in the absence of the ProgramArguments key.
114 .It Sy ProgramArguments <array of strings>
115 This key maps to the second argument of
117 This key is required in the absence of the Program key. Please note! Many people are confused by this key. Please read
120 .It Sy EnableGlobbing <boolean>
125 mechanism to update the program arguments before invocation.
126 .It Sy OnDemand <boolean>
127 This key was used in Mac OS X 10.4 to control whether a job was kept alive or not. The default was true.
128 This key has been deprecated and replaced in Mac OS X 10.5 with the more powerful KeepAlive option.
129 .It Sy KeepAlive <boolean or dictionary of stuff>
130 This optional key is used to control whether your job is to be kept
131 continuously running or to let demand and conditions control the invocation. The
132 default is false and therefore only demand will start the job. The value may be
133 set to true to unconditionally keep the job alive. Alternatively, a dictionary
134 of conditions may be specified to selectively control whether
136 keeps a job alive or not. If multiple keys are provided, launchd ORs them, thus
137 providing maximum flexibility to the job to refine the logic and stall if necessary. If
139 finds no reason to restart the job, it falls back on demand based invocation.
140 Jobs that exit quickly and frequently when configured to be kept alive will be
141 throttled to converve system resources.
142 .Bl -ohang -offset indent
143 .It Sy SuccessfulExit <boolean>
144 If true, the job will be restarted as long as the program exits and with an exit
145 status of zero. If false, the job will be restarted in the inverse condition.
146 This key implies that "RunAtLoad" is set to true, since the job needs to run at
147 least once before we can get an exit status.
148 .It Sy NetworkState <boolean>
149 If true, the job will be kept alive as long as the network is up, where up is
150 defined as at least one non-loopback interface being up and having IPv4 or IPv6
151 addresses assigned to them.
152 If false, the job will be kept alive in the inverse condition.
153 .It Sy PathState <dictionary of booleans>
154 Each key in this dictionary is a file-system path. If the value of the key is
155 true, then the job will be kept alive as long as the path exists.
156 If false, the job will be kept alive in the inverse condition. The intent of this
157 feature is that two or more jobs may create semaphores in the file-system namespace.
158 .It Sy OtherJobEnabled <dictionary of booleans>
159 Each key in this dictionary is the label of another job. If the value of the key is
160 true, then this job is kept alive as long as that other job is enabled. Otherwise,
161 if the value is false, then this job is kept alive as long as the other job is disabled.
162 This feature should not be considered a substitute for the use of IPC.
164 .It Sy RunAtLoad <boolean>
165 This optional key is used to control whether your job is launched once at the time the job is loaded. The default is false.
166 .It Sy RootDirectory <string>
167 This optional key is used to specify a directory to
169 to before running the job.
170 .It Sy WorkingDirectory <string>
171 This optional key is used to specify a directory to
173 to before running the job.
174 .It Sy EnvironmentVariables <dictionary of strings>
175 This optional key is used to specify additional environmental variables to be setup before running the job.
176 .It Sy Umask <integer>
177 This optional key specifies what value should be passed to
179 before running the job. Known bug: Property lists don't support octal, so please convert the value to decimal.
180 .It Sy TimeOut <integer>
181 The recommended idle time out (in seconds) to pass to the job. If no value is specified, a default time out will be supplied by
183 for use by the job at check in time.
184 .It Sy ExitTimeOut <integer>
187 waits before sending a SIGKILL signal. The default value is 20 seconds. The value zero is interpreted as infinity.
188 .It Sy ThrottleInterval <integer>
189 This key lets one override the default throttling policy imposed on jobs by
191 The value is in seconds, and by default, jobs will not be spawned more than once every 10 seconds.
192 The principle behind this is that jobs should linger around just in case they are needed again in the near future. This not only
193 reduces the latency of responses, but it encourages developers to amortize the cost of program invocation.
194 .It Sy InitGroups <boolean>
195 This optional key specifies whether the job should have
197 be called before running the job.
198 The default is true in 10.5 and false in 10.4. This key will be ignored if the UserName key is not set.
199 .It Sy WatchPaths <array of strings>
200 This optional key causes the job to be started if any one of the listed paths are modified.
201 .It Sy QueueDirectories <array of strings>
202 Much like the WatchPaths option, this key will watch the paths for modifications. The difference being that the job will only be started if the path is a directory and the directory is not empty.
203 .It Sy StartOnMount <boolean>
204 This optional key causes the job to be started every time a filesystem is mounted.
205 .It Sy StartInterval <integer>
206 This optional key causes the job to be started every N seconds.
207 If the system is asleep, the job will be started the next time the computer
208 wakes up. If multiple intervals transpire before the computer is woken, those
209 events will be coalesced into one event upon wake from sleep.
210 .It Sy StartCalendarInterval <dictionary of integers or array of dictionary of integers>
211 This optional key causes the job to be started every calendar interval as specified. Missing arguments are considered to be wildcard. The semantics are much like
213 Unlike cron which skips job invocations when the computer is asleep, launchd
214 will start the job the next time the computer wakes up. If multiple intervals
215 transpire before the computer is woken, those events will be coalesced into one
216 event upon wake from sleep.
217 .Bl -ohang -offset indent
218 .It Sy Minute <integer>
219 The minute on which this job will be run.
220 .It Sy Hour <integer>
221 The hour on which this job will be run.
223 The day on which this job will be run.
224 .It Sy Weekday <integer>
225 The weekday on which this job will be run (0 and 7 are Sunday).
226 .It Sy Month <integer>
227 The month on which this job will be run.
229 .It Sy StandardOutPath <string>
230 This optional key specifies what file should be used for data being sent to stdout when using
232 .It Sy StandardErrorPath <string>
233 This optional key specifies what file should be used for data being sent to stderr when using
235 .It Sy Debug <boolean>
236 This optional key specifies that
238 should adjust its log mask temporarily to LOG_DEBUG while dealing with this job.
239 .It Sy WaitForDebugger <boolean>
240 This optional key specifies that
242 should instruct the kernel to have the job wait for a debugger to attach before any code in the job is executed.
243 .It Sy SoftResourceLimits <dictionary of integers>
244 .It Sy HardResourceLimits <dictionary of integers>
245 Resource limits to be imposed on the job. These adjust variables set with
247 The following keys apply:
248 .Bl -ohang -offset indent
249 .It Sy Core <integer>
250 The largest size (in bytes) core file that may be created.
252 The maximum amount of cpu time (in seconds) to be used by each process.
253 .It Sy Data <integer>
254 The maximum size (in bytes) of the data segment for a process; this defines how far a program may extend its break with the
257 .It Sy FileSize <integer>
258 The largest size (in bytes) file that may be created.
259 .It Sy MemoryLock <integer>
260 The maximum size (in bytes) which a process may lock into memory using the
263 .It Sy NumberOfFiles <integer>
264 The maximum number of open files for this process.
265 .It Sy NumberOfProcesses <integer>
266 The maximum number of simultaneous processes for this user id.
267 .It Sy ResidentSetSize <integer>
268 The maximum size (in bytes) to which a process's resident set size may grow.
269 This imposes a limit on the amount of physical memory to be given to a process;
270 if memory is tight, the system will prefer to take memory from processes that
271 are exceeding their declared resident set size.
272 .It Sy Stack <integer>
273 The maximum size (in bytes) of the stack segment for a process; this defines
274 how far a program's stack segment may be extended. Stack extension is
275 performed automatically by the system.
277 .It Sy Nice <integer>
278 This optional key specifies what
280 value should be applied to the daemon.
281 .It Sy AbandonProcessGroup <boolean>
284 kills any remaining processes with the same process group ID as the job.
285 Setting this key to true disables that behavior.
286 .It Sy HopefullyExitsFirst <boolean>
287 This optional key causes programs to exit earlier during system shutdown.
288 This key exists because some jobs do more than flush buffers and exit like
289 they're supposed to. The use of this key should be considered a
290 temporary solution until the software can be changed to only flush dirty buffers
292 .It Sy HopefullyExitsLast <boolean>
293 This optional key causes programs to exit later during system shutdown. This
294 key exists because some jobs don't reference count their clients, and therefore
295 do not know when it is safe to exit. The use of this key should be considered a
296 temporary solution until the software can be changed to properly reference
298 .It Sy LowPriorityIO <boolean>
299 This optional key specifies whether the kernel should consider this daemon to be low priority when doing file system I/O.
300 .It Sy LaunchOnlyOnce <boolean>
301 This optional key specifies whether the job can only be run once and only once.
302 In other words, if the job cannot be safely respawned without a full machine
303 reboot, then set this key to be true.
304 .It Sy MachServices <dictionary of booleans or a dictionary of dictionaries>
305 This optional key is used to specify Mach services to be registered with the
306 Mach bootstrap sub-system. Each key in this dictionary should be the name of
307 service to be advertised. The value of the key must be a boolean and set to true.
308 Alternatively, a dictionary can be used instead of a simple true value.
309 .Bl -ohang -offset indent
310 .It Sy ResetAtClose <boolean>
311 If this boolean is false, the port is recycled, thus leaving clients to remain oblivious
312 to the demand nature of job. If the value is set to true, clients receive port
313 death notifications when the job lets go of the receive right. The port will be
314 recreated atomically with respect to bootstrap_look_up() calls, so that clients
315 can trust that after receiving a port death notification, the new port will
316 have already been recreated. Setting the value to true should be done with
317 care. Not all clients may be able to handle this behavior. The default value is false.
318 .It Sy HideUntilCheckIn <boolean>
319 Reserve the name in the namespace, but cause bootstrap_look_up() to fail until the job has checked in with
323 Finally, for the job itself, the values will be replaced with Mach ports at the time of check-in with
325 .It Sy Sockets <dictionary of dictionaries... OR dictionary of array of dictionaries...>
326 This optional key is used to specify launch on demand sockets that can be used to let
328 know when to run the job. The job must check-in to get a copy of the file descriptors using APIs outlined in
330 The keys of the top level Sockets dictionary can be anything. They are meant for the application developer to use to
331 differentiate different which descriptors correspond to which application level protocols (e.g. http vs. ftp vs. DNS...).
332 At check in time, the value of each Sockets dictionary key will be an array of descriptors. Daemon/Agent writers should
333 consider all descriptors of a given key to be to be effectively equivalent, even though each file descriptor likely represents
334 a different networking protocol which conforms to the criteria specified in the job configuration file.
336 The parameters below are used as inputs to call
338 .Bl -ohang -offset indent
339 .It Sy SockType <string>
340 This optional key tells
342 what type of socket to create. The default is "stream" and other valid values for this key
343 are "dgram" and "seqpacket" respectively.
344 .It Sy SockPassive <boolean>
345 This optional key specifies whether
349 should be called on the created file descriptor. The default is true ("to listen").
350 .It Sy SockNodeName <string>
351 This optional key specifies the node to
356 .It Sy SockServiceName <string>
357 This optional key specifies the service on the node to
362 .It Sy SockFamily <string>
363 This optional key can be used to specifically request that "IPv4" or "IPv6" socket(s) be created.
364 .It Sy SockProtocol <string>
365 This optional key specifies the protocol to be passed to
367 The only value understood by this key at the moment is "TCP".
368 .It Sy SockPathName <string>
369 This optional key implies SockFamily is set to "Unix". It specifies the path to
374 .It Sy SecureSocketWithKey <string>
375 This optional key is a variant of SockPathName. Instead of binding to a known
376 path, a securely generated socket is created and the path is assigned to the
377 environment variable that is inherited by all jobs spawned by launchd.
378 .It Sy SockPathMode <integer>
379 This optional key specifies the mode of the socket. Known bug: Property lists
380 don't support octal, so please convert the value to decimal.
381 .It Sy Bonjour <boolean or string or array of strings>
382 This optional key can be used to request that the service be registered with the
383 .Xr mDNSResponder 8 .
384 If the value is boolean, the service name is inferred from the SockServiceName.
385 .It Sy MulticastGroup <string>
386 This optional key can be used to request that the datagram socket join a multicast group.
387 If the value is a hostname, then
389 will be used to join the correct multicast address for a given socket family.
390 If an explicit IPv4 or IPv6 address is given, it is required that the
391 SockFamily family also be set, otherwise the results are undefined.
396 Unlike many bootstrapping daemons, launchd has no explicit dependency model.
397 Interdependencies are expected to be solved through the use of IPC.
398 It is therefore in the best interest of a job developer who expects dependents
399 to define all of the sockets in the configuration file. This has the added
400 benefit of making it possible to start the job based on demand instead of
402 .Sh EXAMPLE XML PROPERTY LISTS
404 The following XML Property List simply keeps "exampled" running continuously:
406 .Dl <?xml version="1.0" encoding="UTF-8"?>
407 .Dl <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
408 .Dl <plist version="1.0">
411 .Dl <string>com.example.exampled</string>
412 .Dl <key>ProgramArguments</key>
414 .Dl <string>exampled</string>
416 .Dl <key>KeepAlive</key>
422 .Bl -tag -width "/System/Library/LaunchDaemons" -compact
423 .It Pa ~/Library/LaunchAgents
424 Per-user agents provided by the user.
425 .It Pa /Library/LaunchAgents
426 Per-user agents provided by the administrator.
427 .It Pa /Library/LaunchDaemons
428 System wide daemons provided by the administrator.
429 .It Pa /System/Library/LaunchAgents
430 Mac OS X Per-user agents.
431 .It Pa /System/Library/LaunchDaemons
432 Mac OS X System wide daemons.