]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd.socket.xml
man: add link to functionfs docs
[thirdparty/systemd.git] / man / systemd.socket.xml
CommitLineData
1f812fea 1<?xml version='1.0'?> <!--*-nxml-*-->
1f812fea 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
1f812fea
LP
4
5<!--
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
1f812fea
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
1f812fea 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
1f812fea
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22-->
23
24<refentry id="systemd.socket">
798d3a52
ZJS
25 <refentryinfo>
26 <title>systemd.socket</title>
27 <productname>systemd</productname>
28
29 <authorgroup>
30 <author>
31 <contrib>Developer</contrib>
32 <firstname>Lennart</firstname>
33 <surname>Poettering</surname>
34 <email>lennart@poettering.net</email>
35 </author>
36 </authorgroup>
37 </refentryinfo>
38
39 <refmeta>
40 <refentrytitle>systemd.socket</refentrytitle>
41 <manvolnum>5</manvolnum>
42 </refmeta>
43
44 <refnamediv>
45 <refname>systemd.socket</refname>
46 <refpurpose>Socket unit configuration</refpurpose>
47 </refnamediv>
48
49 <refsynopsisdiv>
50 <para><filename><replaceable>socket</replaceable>.socket</filename></para>
51 </refsynopsisdiv>
52
53 <refsect1>
54 <title>Description</title>
55
56 <para>A unit configuration file whose name ends in
57 <literal>.socket</literal> encodes information about an IPC or
58 network socket or a file system FIFO controlled and supervised by
59 systemd, for socket-based activation.</para>
60
61 <para>This man page lists the configuration options specific to
62 this unit type. See
63 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
64 for the common options of all unit configuration files. The common
65 configuration items are configured in the generic [Unit] and
66 [Install] sections. The socket specific configuration options are
67 configured in the [Socket] section.</para>
68
69 <para>Additional options are listed in
70 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
71 which define the execution environment the
72 <option>ExecStartPre=</option>, <option>ExecStartPost=</option>,
73 <option>ExecStopPre=</option> and <option>ExecStopPost=</option>
74 commands are executed in, and in
75 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
76 which define the way the processes are terminated, and in
77 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
78 which configure resource control settings for the processes of the
79 socket.</para>
80
81 <para>For each socket file, a matching service file must exist,
82 describing the service to start on incoming traffic on the socket
83 (see
84 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>
85 for more information about .service files). The name of the
86 .service unit is by default the same as the name of the .socket
87 unit, but can be altered with the <option>Service=</option> option
88 described below. Depending on the setting of the
89 <option>Accept=</option> option described below, this .service
90 unit must either be named like the .socket unit, but with the
91 suffix replaced, unless overridden with <option>Service=</option>;
92 or it must be a template unit named the same way. Example: a
93 socket file <filename>foo.socket</filename> needs a matching
94 service <filename>foo.service</filename> if
95 <option>Accept=false</option> is set. If
96 <option>Accept=true</option> is set, a service template file
97 <filename>foo@.service</filename> must exist from which services
98 are instantiated for each incoming connection.</para>
99
100 <para>Unless <varname>DefaultDependencies=</varname> is set to
101 <option>false</option>, socket units will implicitly have
102 dependencies of type <varname>Requires=</varname> and
103 <varname>After=</varname> on <filename>sysinit.target</filename>
104 as well as dependencies of type <varname>Conflicts=</varname> and
105 <varname>Before=</varname> on
106 <filename>shutdown.target</filename>. These ensure that socket
107 units pull in basic system initialization, and are terminated
108 cleanly prior to system shutdown. Only sockets involved with early
109 boot or late system shutdown should disable this option.</para>
110
111 <para>Socket units will have a <varname>Before=</varname>
112 dependency on the service which they trigger added implicitly. No
113 implicit <varname>WantedBy=</varname> or
114 <varname>RequiredBy=</varname> dependency from the socket to the
115 service is added. This means that the service may be started
116 without the socket, in which case it must be able to open sockets
117 by itself. To prevent this, an explicit
118 <varname>Requires=</varname> dependency may be added.</para>
119
120 <para>Socket units may be used to implement on-demand starting of
121 services, as well as parallelized starting of services. See the
122 blog stories linked at the end for an introduction.</para>
123
124 <para>Note that the daemon software configured for socket
125 activation with socket units needs to be able to accept sockets
126 from systemd, either via systemd's native socket passing interface
127 (see
128 <citerefentry><refentrytitle>sd_listen_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>
129 for details) or via the traditional
b5c7d097 130 <citerefentry project='freebsd'><refentrytitle>inetd</refentrytitle><manvolnum>8</manvolnum></citerefentry>-style
798d3a52
ZJS
131 socket passing (i.e. sockets passed in via standard input and
132 output, using <varname>StandardInput=socket</varname> in the
133 service file).</para>
134 </refsect1>
135
136 <refsect1>
137 <title>Options</title>
138
139 <para>Socket files must include a [Socket] section, which carries
140 information about the socket or FIFO it supervises. A number of
141 options that may be used in this section are shared with other
142 unit types. These options are documented in
143 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
144 and
145 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
146 The options specific to the [Socket] section of socket units are
147 the following:</para>
148
149 <variablelist class='unit-directives'>
150 <varlistentry>
151 <term><varname>ListenStream=</varname></term>
152 <term><varname>ListenDatagram=</varname></term>
153 <term><varname>ListenSequentialPacket=</varname></term>
154 <listitem><para>Specifies an address to listen on for a stream
155 (<constant>SOCK_STREAM</constant>), datagram
156 (<constant>SOCK_DGRAM</constant>), or sequential packet
157 (<constant>SOCK_SEQPACKET</constant>) socket, respectively.
158 The address can be written in various formats:</para>
159
160 <para>If the address starts with a slash
161 (<literal>/</literal>), it is read as file system socket in
162 the <constant>AF_UNIX</constant> socket family.</para>
163
164 <para>If the address starts with an at symbol
165 (<literal>@</literal>), it is read as abstract namespace
166 socket in the <constant>AF_UNIX</constant> family. The
167 <literal>@</literal> is replaced with a
168 <constant>NUL</constant> character before binding. For
169 details, see
170 <citerefentry project='man-pages'><refentrytitle>unix</refentrytitle><manvolnum>7</manvolnum></citerefentry>.</para>
171
172 <para>If the address string is a single number, it is read as
173 port number to listen on via IPv6. Depending on the value of
174 <varname>BindIPv6Only=</varname> (see below) this might result
175 in the service being available via both IPv6 and IPv4
176 (default) or just via IPv6.
177 </para>
178
179 <para>If the address string is a string in the format
180 v.w.x.y:z, it is read as IPv4 specifier for listening on an
181 address v.w.x.y on a port z.</para>
182
183 <para>If the address string is a string in the format [x]:y,
184 it is read as IPv6 address x on a port y. Note that this might
185 make the service available via IPv4, too, depending on the
186 <varname>BindIPv6Only=</varname> setting (see below).
187 </para>
188
189 <para>Note that <constant>SOCK_SEQPACKET</constant> (i.e.
190 <varname>ListenSequentialPacket=</varname>) is only available
191 for <constant>AF_UNIX</constant> sockets.
192 <constant>SOCK_STREAM</constant> (i.e.
193 <varname>ListenStream=</varname>) when used for IP sockets
194 refers to TCP sockets, <constant>SOCK_DGRAM</constant> (i.e.
195 <varname>ListenDatagram=</varname>) to UDP.</para>
196
197 <para>These options may be specified more than once in which
198 case incoming traffic on any of the sockets will trigger
199 service activation, and all listed sockets will be passed to
200 the service, regardless of whether there is incoming traffic
201 on them or not. If the empty string is assigned to any of
202 these options, the list of addresses to listen on is reset,
203 all prior uses of any of these options will have no
204 effect.</para>
205
206 <para>It is also possible to have more than one socket unit
207 for the same service when using <varname>Service=</varname>,
208 and the service will receive all the sockets configured in all
209 the socket units. Sockets configured in one unit are passed in
210 the order of configuration, but no ordering between socket
211 units is specified.</para>
212
213 <para>If an IP address is used here, it is often desirable to
214 listen on it before the interface it is configured on is up
215 and running, and even regardless of whether it will be up and
216 running at any point. To deal with this, it is recommended to
217 set the <varname>FreeBind=</varname> option described
218 below.</para></listitem>
219 </varlistentry>
220
221 <varlistentry>
222 <term><varname>ListenFIFO=</varname></term>
223 <listitem><para>Specifies a file system FIFO to listen on.
224 This expects an absolute file system path as argument.
225 Behavior otherwise is very similar to the
226 <varname>ListenDatagram=</varname> directive
227 above.</para></listitem>
228 </varlistentry>
229
230 <varlistentry>
231 <term><varname>ListenSpecial=</varname></term>
232 <listitem><para>Specifies a special file in the file system to
233 listen on. This expects an absolute file system path as
234 argument. Behavior otherwise is very similar to the
235 <varname>ListenFIFO=</varname> directive above. Use this to
236 open character device nodes as well as special files in
237 <filename>/proc</filename> and
238 <filename>/sys</filename>.</para></listitem>
239 </varlistentry>
240
241 <varlistentry>
242 <term><varname>ListenNetlink=</varname></term>
243 <listitem><para>Specifies a Netlink family to create a socket
244 for to listen on. This expects a short string referring to the
245 <constant>AF_NETLINK</constant> family name (such as
246 <varname>audit</varname> or <varname>kobject-uevent</varname>)
247 as argument, optionally suffixed by a whitespace followed by a
248 multicast group integer. Behavior otherwise is very similar to
249 the <varname>ListenDatagram=</varname> directive
250 above.</para></listitem>
251 </varlistentry>
252
253 <varlistentry>
254 <term><varname>ListenMessageQueue=</varname></term>
255 <listitem><para>Specifies a POSIX message queue name to listen
256 on. This expects a valid message queue name (i.e. beginning
257 with /). Behavior otherwise is very similar to the
258 <varname>ListenFIFO=</varname> directive above. On Linux
259 message queue descriptors are actually file descriptors and
260 can be inherited between processes.</para></listitem>
261 </varlistentry>
262
8c7c9839
PS
263 <varlistentry>
264 <term><varname>ListenUSBFunction=</varname></term>
81eb21b9
ZJS
265 <listitem><para>Specifies a
266 <ulink url="https://www.kernel.org/doc/Documentation/usb/functionfs.txt">functionfs</ulink>
267 endpoint location to
268 listen on. This expects an absolute file system path as the
8c7c9839
PS
269 argument. Behavior otherwise is very similar to the
270 <varname>ListenFIFO=</varname> directive above. Use this to
81eb21b9
ZJS
271 open functionfs endpoint <filename>ep0</filename>. When using
272 this option, activated service has to have the
273 <varname>USBFunctionDescriptors</varname> and
274 <varname>USBFunctionStrings</varname> options set.
275 </para></listitem>
8c7c9839
PS
276 </varlistentry>
277
798d3a52
ZJS
278 <varlistentry>
279 <term><varname>BindIPv6Only=</varname></term>
280 <listitem><para>Takes a one of <option>default</option>,
281 <option>both</option> or <option>ipv6-only</option>. Controls
282 the IPV6_V6ONLY socket option (see
3ba3a79d 283 <citerefentry project='die-net'><refentrytitle>ipv6</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
284 for details). If <option>both</option>, IPv6 sockets bound
285 will be accessible via both IPv4 and IPv6. If
286 <option>ipv6-only</option>, they will be accessible via IPv6
287 only. If <option>default</option> (which is the default,
288 surprise!), the system wide default setting is used, as
289 controlled by
290 <filename>/proc/sys/net/ipv6/bindv6only</filename>, which in
291 turn defaults to the equivalent of
292 <option>both</option>.</para>
293 </listitem>
294 </varlistentry>
295
296 <varlistentry>
297 <term><varname>Backlog=</varname></term>
298 <listitem><para>Takes an unsigned integer argument. Specifies
299 the number of connections to queue that have not been accepted
300 yet. This setting matters only for stream and sequential
301 packet sockets. See
302 <citerefentry><refentrytitle>listen</refentrytitle><manvolnum>2</manvolnum></citerefentry>
303 for details. Defaults to SOMAXCONN (128).</para></listitem>
304 </varlistentry>
305
306 <varlistentry>
307 <term><varname>BindToDevice=</varname></term>
308 <listitem><para>Specifies a network interface name to bind
309 this socket to. If set, traffic will only be accepted from the
310 specified network interfaces. This controls the
311 SO_BINDTODEVICE socket option (see
3ba3a79d 312 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
313 for details). If this option is used, an automatic dependency
314 from this socket unit on the network interface device unit
315 (<citerefentry><refentrytitle>systemd.device</refentrytitle><manvolnum>5</manvolnum></citerefentry>
316 is created.</para></listitem>
317 </varlistentry>
318
319 <varlistentry>
320 <term><varname>SocketUser=</varname></term>
321 <term><varname>SocketGroup=</varname></term>
322
323 <listitem><para>Takes a UNIX user/group name. When specified,
324 all AF_UNIX sockets and FIFO nodes in the file system are
325 owned by the specified user and group. If unset (the default),
326 the nodes are owned by the root user/group (if run in system
327 context) or the invoking user/group (if run in user context).
328 If only a user is specified but no group, then the group is
329 derived from the user's default group.</para></listitem>
330 </varlistentry>
331
332 <varlistentry>
333 <term><varname>SocketMode=</varname></term>
334 <listitem><para>If listening on a file system socket or FIFO,
335 this option specifies the file system access mode used when
336 creating the file node. Takes an access mode in octal
337 notation. Defaults to 0666.</para></listitem>
338 </varlistentry>
339
340 <varlistentry>
341 <term><varname>DirectoryMode=</varname></term>
342 <listitem><para>If listening on a file system socket or FIFO,
343 the parent directories are automatically created if needed.
344 This option specifies the file system access mode used when
345 creating these directories. Takes an access mode in octal
346 notation. Defaults to 0755.</para></listitem>
347 </varlistentry>
348
349 <varlistentry>
350 <term><varname>Accept=</varname></term>
351 <listitem><para>Takes a boolean argument. If true, a service
352 instance is spawned for each incoming connection and only the
353 connection socket is passed to it. If false, all listening
354 sockets themselves are passed to the started service unit, and
355 only one service unit is spawned for all connections (also see
356 above). This value is ignored for datagram sockets and FIFOs
357 where a single service unit unconditionally handles all
358 incoming traffic. Defaults to <option>false</option>. For
359 performance reasons, it is recommended to write new daemons
360 only in a way that is suitable for
361 <option>Accept=false</option>. A daemon listening on an
362 <constant>AF_UNIX</constant> socket may, but does not need to,
363 call
364 <citerefentry><refentrytitle>close</refentrytitle><manvolnum>2</manvolnum></citerefentry>
365 on the received socket before exiting. However, it must not
366 unlink the socket from a file system. It should not invoke
367 <citerefentry><refentrytitle>shutdown</refentrytitle><manvolnum>2</manvolnum></citerefentry>
368 on sockets it got with <varname>Accept=false</varname>, but it
369 may do so for sockets it got with
370 <varname>Accept=true</varname> set. Setting
371 <varname>Accept=true</varname> is mostly useful to allow
372 daemons designed for usage with
b5c7d097 373 <citerefentry project='freebsd'><refentrytitle>inetd</refentrytitle><manvolnum>8</manvolnum></citerefentry>
798d3a52 374 to work unmodified with systemd socket
3b1c5241
SL
375 activation.</para>
376
377 <para>For IPv4 and IPv6 connections the <varname>REMOTE_ADDR</varname>
378 environment variable will contain the remote IP, and <varname>REMOTE_PORT</varname>
379 will contain the remote port. This is the same as the format used by CGI.
380 For SOCK_RAW the port is the IP protocol.</para></listitem>
798d3a52
ZJS
381 </varlistentry>
382
383 <varlistentry>
384 <term><varname>MaxConnections=</varname></term>
385 <listitem><para>The maximum number of connections to
386 simultaneously run services instances for, when
387 <option>Accept=true</option> is set. If more concurrent
388 connections are coming in, they will be refused until at least
389 one existing connection is terminated. This setting has no
390 effect on sockets configured with
391 <option>Accept=false</option> or datagram sockets. Defaults to
392 64.</para></listitem>
393 </varlistentry>
394
395 <varlistentry>
396 <term><varname>KeepAlive=</varname></term>
397 <listitem><para>Takes a boolean argument. If true, the TCP/IP
398 stack will send a keep alive message after 2h (depending on
399 the configuration of
400 <filename>/proc/sys/net/ipv4/tcp_keepalive_time</filename>)
401 for all TCP streams accepted on this socket. This controls the
402 SO_KEEPALIVE socket option (see
3ba3a79d 403 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
404 and the <ulink
405 url="http://www.tldp.org/HOWTO/html_single/TCP-Keepalive-HOWTO/">TCP
406 Keepalive HOWTO</ulink> for details.) Defaults to
407 <option>false</option>.</para></listitem>
408 </varlistentry>
409
410 <varlistentry>
411 <term><varname>KeepAliveTimeSec=</varname></term>
412 <listitem><para>Takes time (in seconds) as argument . The connection needs to remain
413 idle before TCP starts sending keepalive probes. This controls the TCP_KEEPIDLE
414 socket option (see
3ba3a79d 415 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
416 and the <ulink
417 url="http://www.tldp.org/HOWTO/html_single/TCP-Keepalive-HOWTO/">TCP
418 Keepalive HOWTO</ulink> for details.)
419 Defaults value is 7200 seconds (2 hours).</para></listitem>
420 </varlistentry>
421
422 <varlistentry>
423 <term><varname>KeepAliveIntervalSec=</varname></term>
424 <listitem><para>Takes time (in seconds) as argument between
425 individual keepalive probes, if the socket option SO_KEEPALIVE
426 has been set on this socket seconds as argument. This controls
427 the TCP_KEEPINTVL socket option (see
3ba3a79d 428 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
429 and the <ulink
430 url="http://www.tldp.org/HOWTO/html_single/TCP-Keepalive-HOWTO/">TCP
431 Keepalive HOWTO</ulink> for details.) Defaults value is 75
432 seconds.</para></listitem>
433 </varlistentry>
434
435 <varlistentry>
436 <term><varname>KeepAliveProbes=</varname></term>
437 <listitem><para>Takes integer as argument. It's the number of
438 unacknowledged probes to send before considering the
439 connection dead and notifying the application layer. This
440 controls the TCP_KEEPCNT socket option (see
3ba3a79d 441 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
442 and the <ulink
443 url="http://www.tldp.org/HOWTO/html_single/TCP-Keepalive-HOWTO/">TCP
444 Keepalive HOWTO</ulink> for details.) Defaults value is
445 9.</para></listitem>
446 </varlistentry>
447
448 <varlistentry>
449 <term><varname>NoDelay=</varname></term>
450 <listitem><para>Takes a boolean argument. TCP Nagle's
451 algorithm works by combining a number of small outgoing
452 messages, and sending them all at once. This controls the
453 TCP_NODELAY socket option (see
3ba3a79d 454 <citerefentry project='die-net'><refentrytitle>tcp</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
455 Defaults to <option>false</option>.</para></listitem>
456 </varlistentry>
457
458 <varlistentry>
459 <term><varname>Priority=</varname></term>
460 <listitem><para>Takes an integer argument controlling the
461 priority for all traffic sent from this socket. This controls
462 the SO_PRIORITY socket option (see
3ba3a79d 463 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
464 for details.).</para></listitem>
465 </varlistentry>
466
467 <varlistentry>
468 <term><varname>DeferAcceptSec=</varname></term>
469
470 <listitem><para>Takes time (in seconds) as argument. If set,
471 the listening process will be awakened only when data arrives
472 on the socket, and not immediately when connection is
473 established. When this option is set, the
474 <constant>TCP_DEFER_ACCEPT</constant> socket option will be
475 used (see
3ba3a79d 476 <citerefentry project='die-net'><refentrytitle>tcp</refentrytitle><manvolnum>7</manvolnum></citerefentry>),
798d3a52
ZJS
477 and the kernel will ignore initial ACK packets without any
478 data. The argument specifies the approximate amount of time
479 the kernel should wait for incoming data before falling back
dd2b607b 480 to the normal behavior of honouring empty ACK packets. This
798d3a52
ZJS
481 option is beneficial for protocols where the client sends the
482 data first (e.g. HTTP, in contrast to SMTP), because the
483 server process will not be woken up unnecessarily before it
484 can take any action.
485 </para>
486
487 <para>If the client also uses the
488 <constant>TCP_DEFER_ACCEPT</constant> option, the latency of
489 the initial connection may be reduced, because the kernel will
490 send data in the final packet establishing the connection (the
491 third packet in the "three-way handshake").</para>
492
493 <para>Disabled by default.</para>
494 </listitem>
495 </varlistentry>
496
497 <varlistentry>
498 <term><varname>ReceiveBuffer=</varname></term>
499 <term><varname>SendBuffer=</varname></term>
500 <listitem><para>Takes an integer argument controlling the
501 receive or send buffer sizes of this socket, respectively.
502 This controls the SO_RCVBUF and SO_SNDBUF socket options (see
3ba3a79d 503 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
504 for details.). The usual suffixes K, M, G are supported and
505 are understood to the base of 1024.</para></listitem>
506 </varlistentry>
507
508 <varlistentry>
509 <term><varname>IPTOS=</varname></term>
510 <listitem><para>Takes an integer argument controlling the IP
511 Type-Of-Service field for packets generated from this socket.
512 This controls the IP_TOS socket option (see
3ba3a79d 513 <citerefentry project='die-net'><refentrytitle>ip</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
514 for details.). Either a numeric string or one of
515 <option>low-delay</option>, <option>throughput</option>,
516 <option>reliability</option> or <option>low-cost</option> may
517 be specified.</para></listitem>
518 </varlistentry>
519
520 <varlistentry>
521 <term><varname>IPTTL=</varname></term>
522 <listitem><para>Takes an integer argument controlling the IPv4
523 Time-To-Live/IPv6 Hop-Count field for packets generated from
524 this socket. This sets the IP_TTL/IPV6_UNICAST_HOPS socket
525 options (see
3ba3a79d 526 <citerefentry project='die-net'><refentrytitle>ip</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52 527 and
3ba3a79d 528 <citerefentry project='die-net'><refentrytitle>ipv6</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
529 for details.)</para></listitem>
530 </varlistentry>
531
532 <varlistentry>
533 <term><varname>Mark=</varname></term>
534 <listitem><para>Takes an integer value. Controls the firewall
535 mark of packets generated by this socket. This can be used in
536 the firewall logic to filter packets from this socket. This
537 sets the SO_MARK socket option. See
3ba3a79d 538 <citerefentry project='die-net'><refentrytitle>iptables</refentrytitle><manvolnum>8</manvolnum></citerefentry>
798d3a52
ZJS
539 for details.</para></listitem>
540 </varlistentry>
541
542 <varlistentry>
543 <term><varname>ReusePort=</varname></term>
544 <listitem><para>Takes a boolean value. If true, allows
545 multiple
546 <citerefentry><refentrytitle>bind</refentrytitle><manvolnum>2</manvolnum></citerefentry>s
547 to this TCP or UDP port. This controls the SO_REUSEPORT socket
548 option. See
3ba3a79d 549 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
798d3a52
ZJS
550 for details.</para></listitem>
551 </varlistentry>
552
553 <varlistentry>
554 <term><varname>SmackLabel=</varname></term>
555 <term><varname>SmackLabelIPIn=</varname></term>
556 <term><varname>SmackLabelIPOut=</varname></term>
557 <listitem><para>Takes a string value. Controls the extended
558 attributes <literal>security.SMACK64</literal>,
559 <literal>security.SMACK64IPIN</literal> and
560 <literal>security.SMACK64IPOUT</literal>, respectively, i.e.
561 the security label of the FIFO, or the security label for the
562 incoming or outgoing connections of the socket, respectively.
563 See <ulink
564 url="https://www.kernel.org/doc/Documentation/security/Smack.txt">Smack.txt</ulink>
565 for details.</para></listitem>
566 </varlistentry>
567
568 <varlistentry>
569 <term><varname>SELinuxContextFromNet=</varname></term>
570 <listitem><para>Takes a boolean argument. When true, systemd
571 will attempt to figure out the SELinux label used for the
572 instantiated service from the information handed by the peer
573 over the network. Note that only the security level is used
574 from the information provided by the peer. Other parts of the
575 resulting SELinux context originate from either the target
576 binary that is effectively triggered by socket unit or from
577 the value of the <varname>SELinuxContext=</varname> option.
578 This configuration option only affects sockets with
579 <varname>Accept=</varname> mode set to
580 <literal>true</literal>. Also note that this option is useful
581 only when MLS/MCS SELinux policy is deployed. Defaults to
582 <literal>false</literal>. </para></listitem>
583 </varlistentry>
584
585 <varlistentry>
586 <term><varname>PipeSize=</varname></term>
587 <listitem><para>Takes a size in bytes. Controls the pipe
588 buffer size of FIFOs configured in this socket unit. See
589 <citerefentry><refentrytitle>fcntl</refentrytitle><manvolnum>2</manvolnum></citerefentry>
590 for details. The usual suffixes K, M, G are supported and are
591 understood to the base of 1024.</para></listitem>
592 </varlistentry>
593
594 <varlistentry>
595 <term><varname>MessageQueueMaxMessages=</varname>,
596 <varname>MessageQueueMessageSize=</varname></term>
597 <listitem><para>These two settings take integer values and
598 control the mq_maxmsg field or the mq_msgsize field,
599 respectively, when creating the message queue. Note that
600 either none or both of these variables need to be set. See
3ba3a79d 601 <citerefentry project='die-net'><refentrytitle>mq_setattr</refentrytitle><manvolnum>3</manvolnum></citerefentry>
798d3a52
ZJS
602 for details.</para></listitem>
603 </varlistentry>
604
605 <varlistentry>
606 <term><varname>FreeBind=</varname></term>
607 <listitem><para>Takes a boolean value. Controls whether the
608 socket can be bound to non-local IP addresses. This is useful
609 to configure sockets listening on specific IP addresses before
610 those IP addresses are successfully configured on a network
611 interface. This sets the IP_FREEBIND socket option. For
612 robustness reasons it is recommended to use this option
613 whenever you bind a socket to a specific IP address. Defaults
614 to <option>false</option>.</para></listitem>
615 </varlistentry>
616
617 <varlistentry>
618 <term><varname>Transparent=</varname></term>
619 <listitem><para>Takes a boolean value. Controls the
620 IP_TRANSPARENT socket option. Defaults to
621 <option>false</option>.</para></listitem>
622 </varlistentry>
623
624 <varlistentry>
625 <term><varname>Broadcast=</varname></term>
626 <listitem><para>Takes a boolean value. This controls the
627 SO_BROADCAST socket option, which allows broadcast datagrams
628 to be sent from this socket. Defaults to
629 <option>false</option>.</para></listitem>
630 </varlistentry>
631
632 <varlistentry>
633 <term><varname>PassCredentials=</varname></term>
634 <listitem><para>Takes a boolean value. This controls the
635 SO_PASSCRED socket option, which allows
636 <constant>AF_UNIX</constant> sockets to receive the
637 credentials of the sending process in an ancillary message.
638 Defaults to <option>false</option>.</para></listitem>
639 </varlistentry>
640
641 <varlistentry>
642 <term><varname>PassSecurity=</varname></term>
643 <listitem><para>Takes a boolean value. This controls the
644 SO_PASSSEC socket option, which allows
645 <constant>AF_UNIX</constant> sockets to receive the security
646 context of the sending process in an ancillary message.
647 Defaults to <option>false</option>.</para></listitem>
648 </varlistentry>
649
650 <varlistentry>
651 <term><varname>TCPCongestion=</varname></term>
652 <listitem><para>Takes a string value. Controls the TCP
653 congestion algorithm used by this socket. Should be one of
654 "westwood", "veno", "cubic", "lp" or any other available
655 algorithm supported by the IP stack. This setting applies only
656 to stream sockets.</para></listitem>
657 </varlistentry>
658
659 <varlistentry>
660 <term><varname>ExecStartPre=</varname></term>
661 <term><varname>ExecStartPost=</varname></term>
662 <listitem><para>Takes one or more command lines, which are
663 executed before or after the listening sockets/FIFOs are
664 created and bound, respectively. The first token of the
665 command line must be an absolute filename, then followed by
666 arguments for the process. Multiple command lines may be
667 specified following the same scheme as used for
668 <varname>ExecStartPre=</varname> of service unit
669 files.</para></listitem>
670 </varlistentry>
671
672 <varlistentry>
673 <term><varname>ExecStopPre=</varname></term>
674 <term><varname>ExecStopPost=</varname></term>
675 <listitem><para>Additional commands that are executed before
676 or after the listening sockets/FIFOs are closed and removed,
677 respectively. Multiple command lines may be specified
678 following the same scheme as used for
679 <varname>ExecStartPre=</varname> of service unit
680 files.</para></listitem>
681 </varlistentry>
682
683 <varlistentry>
684 <term><varname>TimeoutSec=</varname></term>
685 <listitem><para>Configures the time to wait for the commands
686 specified in <varname>ExecStartPre=</varname>,
687 <varname>ExecStartPost=</varname>,
688 <varname>ExecStopPre=</varname> and
689 <varname>ExecStopPost=</varname> to finish. If a command does
690 not exit within the configured time, the socket will be
691 considered failed and be shut down again. All commands still
692 running will be terminated forcibly via
693 <constant>SIGTERM</constant>, and after another delay of this
694 time with <constant>SIGKILL</constant>. (See
695 <option>KillMode=</option> in
696 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>.)
697 Takes a unit-less value in seconds, or a time span value such
698 as "5min 20s". Pass <literal>0</literal> to disable the
699 timeout logic. Defaults to
700 <varname>DefaultTimeoutStartSec=</varname> from the manager
701 configuration file (see
702 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
703 </para></listitem>
704 </varlistentry>
705
706 <varlistentry>
707 <term><varname>Service=</varname></term>
708 <listitem><para>Specifies the service unit name to activate on
709 incoming traffic. This setting is only allowed for sockets
710 with <varname>Accept=no</varname>. It defaults to the service
711 that bears the same name as the socket (with the suffix
712 replaced). In most cases, it should not be necessary to use
713 this option.</para></listitem>
714 </varlistentry>
715
716 <varlistentry>
717 <term><varname>RemoveOnStop=</varname></term>
718 <listitem><para>Takes a boolean argument. If enabled, any file
719 nodes created by this socket unit are removed when it is
720 stopped. This applies to AF_UNIX sockets in the file system,
721 POSIX message queues, FIFOs, as well as any symlinks to them
722 configured with <varname>Symlinks=</varname>. Normally, it
723 should not be necessary to use this option, and is not
724 recommended as services might continue to run after the socket
725 unit has been terminated and it should still be possible to
726 communicate with them via their file system node. Defaults to
727 off.</para></listitem>
728 </varlistentry>
729
730 <varlistentry>
731 <term><varname>Symlinks=</varname></term>
732 <listitem><para>Takes a list of file system paths. The
733 specified paths will be created as symlinks to the AF_UNIX
734 socket path or FIFO path of this socket unit. If this setting
735 is used, only one AF_UNIX socket in the file system or one
736 FIFO may be configured for the socket unit. Use this option to
737 manage one or more symlinked alias names for a socket, binding
738 their lifecycle together. Defaults to the empty
739 list.</para></listitem>
740 </varlistentry>
741
742 </variablelist>
743
744 <para>Check
745 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
746 and
747 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
748 for more settings.</para>
749
750 </refsect1>
751
752 <refsect1>
753 <title>See Also</title>
754 <para>
755 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
756 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
757 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
758 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
759 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
760 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
761 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
762 <citerefentry><refentrytitle>systemd.directives</refentrytitle><manvolnum>7</manvolnum></citerefentry>
763 </para>
764
765 <para>
766 For more extensive descriptions see the "systemd for Developers" series:
767 <ulink url="http://0pointer.de/blog/projects/socket-activation.html">Socket Activation</ulink>,
768 <ulink url="http://0pointer.de/blog/projects/socket-activation2.html">Socket Activation, part II</ulink>,
769 <ulink url="http://0pointer.de/blog/projects/inetd.html">Converting inetd Services</ulink>,
770 <ulink url="http://0pointer.de/blog/projects/socket-activated-containers.html">Socket Activated Internet Services and OS Containers</ulink>.
771 </para>
772 </refsect1>
1f812fea
LP
773
774</refentry>