]> git.ipfire.org Git - thirdparty/systemd.git/blame - NEWS
Merge pull request #13136 from keszybz/readd-ntp-units.d
[thirdparty/systemd.git] / NEWS
CommitLineData
d657c51f 1systemd System and Service Manager
220a21d3 2
6af90583
LP
3CHANGES WITH 243 in spe:
4
4cd82631
LP
5 * Previously, filters defined with SystemCallFilter= would have the
6 effect that an calling an offending system call would terminate the
7 calling thread. This behaviour never made much sense, since killing
8 individual threads of unexpecting processes is likely to create more
9 problems than it solves. With this release the default action changed
10 from killing the thread to killing the whole process. For this to
11 work correctly both a kernel version (>= 4.14) and a libseccomp
12 version (>= 2.4.0) supporting this new seccomp action is required. If
13 an older kernel or libseccomp is used the old behaviour continues to
14 be used. This change does not affect any services that have no system
15 call filters defined, or that use SystemCallErrorNumber= (and thus
16 see EPERM or another error instead of being killed when calling an
17 offending system call). Note that systemd documentation always
18 claimed that the whole process is killed. With this change behaviour
19 is thus adjusted to match the documentation.
20
6af90583
LP
21 * The "kernel.pid_max" sysctl is now bumped to 4194304 by default,
22 i.e. the full 22bit range the kernel allows, up from the old 16bit
23 range. This should improve security and robustness a bit, as PID
24 collisions are made less likely (though certainly still
25 possible). There are rumours this might create compatibility
26 problems, though at this moment no practical ones are known to
27 us. Downstream distributions are hence advised to undo this change in
28 their builds if they are concerned about maximum compatibility, but
29 for everybody else we recommend leaving the value bumped. Besides
30 improving security and robustness this should also simplify things as
31 the maximum number of allowed concurrent tasks was previously bounded
32 by both "kernel.pid_max" and "kernel.threads-max" and now only a
33 single knob is left ("kernel.threads-max"). There have been concerns
34 that usability is affected by this change because larger PID numbers
35 are harder to type, but we believe the change from 5 digit PIDs to 7
36 digit PIDs is not too hampering for usability.
37
2875a36b
LP
38 * MemoryLow= and MemoryMin= gained hierarchy-aware counterparts,
39 DefaultMemoryLow= and DefaultMemoryMin=, which can be used to
acdb4b52
CD
40 hierarchically set default memory protection values for a particular
41 subtree of the unit hierarchy.
42
22bf131b
CD
43 * Memory protection directives can now take a value of zero, allowing
44 explicit opting out of a default value propagated by an ancestor.
45
2875a36b
LP
46 * A new setting DisableControllers= has been added that may be used to
47 explicitly disable one or more cgroups controllers for a unit and all
48 its children.
49
87cf1f8f
LP
50 * systemd now defaults to the "unified" cgroup hierarchy setup during
51 build-time, i.e. -Ddefault-hierarchy=unified is now the build-time
52 default. Previously, -Ddefault-hierarchy=hybrid was the default. This
53 change reflects the fact that cgroupsv2 support has matured
54 substantially in both systemd and in the kernel, and is clearly the
55 way forward. Downstream production distributions might want to
56 continue to use -Ddefault-hierarchy=hybrid (or even =legacy) for
57 their builds as unfortunately the popular container managers have not
58 caught up with the kernel API changes.
59
51b568f7
ZJS
60 * Man pages are not built by default anymore (html pages were already
61 disabled by default), to make development builds quicker. When
62 building systemd for a full installation with documentation, meson
63 should be called -Dman=true and/or -Dhtml=true as appropriate. The
64 default was changed based on the assumption that quick one-off or
65 repeated development builds are much more common than full optimized
66 builds for installation, and people need to pass various other
67 options to when doing "proper" builds anyway, so the gain from making
68 development builds quicker is bigger than the one time disruption for
69 packagers.
70
71 Two scripts are created in the *build* directory to generate and
72 preview man and html pages on demand, e.g.:
73
74 build/man/man systemctl
75 build/man/html systemd.index
76
e110599b
YW
77 * libidn2 is used by default if both libidn2 and libidn are installed.
78 Please use -Dlibidn=true when libidn is favorable.
79
2875a36b 80 * The D-Bus "wire format" of the CPUAffinity= attribute is changed on
9120e2bf
ZJS
81 big-endian machines. Before, bytes were written and read in native
82 machine order as exposed by the native libc __cpu_mask interface.
83 Now, little-endian order is always used (CPUs 0–7 are described by
84 bits 0–7 in byte 0, CPUs 8–15 are described by byte 1, and so on).
85 This change fixes D-Bus calls that cross endianness boundary.
86
2875a36b
LP
87 The presentation format used for CPUAffinity= by "systemctl show" and
88 "systemd-analyze dump" is changed to present CPU indices instead of
89 the raw __cpu_mask bitmask. For example, CPUAffinity=0-1 would be
90 shown as CPUAffinity=03000000000000000000000000000… (on
91 little-endian) or CPUAffinity=00000000000000300000000000000… (on
92 64-bit big-endian), and is now shown as CPUAffinity=0-1, matching the
93 input format. The maximum integer that will be printed in the new
94 format is 8191 (four digits), while the old format always used a very
95 long number (with the length varying by architecture), so they can be
96 unambiguously distinguished.
9120e2bf 97
51b568f7
ZJS
98 * /usr/sbin/halt.local is no longer supported. Implementation in
99 distributions was inconsistent and it seems this functionality was
100 very rarely used.
101
102 To replace this functionality, users should:
103 - either define a new unit and make it a dependency of final.target
104 (systemctl add-wants final.target my-halt-local.service)
105 - or move the shutdown script to /usr/lib/systemd/system-shutdown/
106 and ensure that it accepts "halt", "poweroff", "reboot", and
107 "kexec" as an argument, see the description in systemd-shutdown(8).
108
109 * When a [Match] section in .link or .network file is empty (contains
110 no match patterns), a warning will be emitted. Please add any "match
9120e2bf 111 all" pattern instead, e.g. OriginalName=* or Name=* in case all
51b568f7
ZJS
112 interfaces should really be matched.
113
b070c7c0
MS
114 * A new setting NUMAPolicy= may be used to set process memory
115 allocation policy. Setting can be specified in system.conf and
116 hence will set the default policy for PID1. Default policy can be
d238709c 117 overridden on per-service basis. Related setting NUMAMask= is used to
b070c7c0
MS
118 specify NUMA node mask that should be associated with the selected
119 policy.
2875a36b
LP
120
121 * PID 1 will now listen to Out-Of-Memory (OOM) events the kernel
eebaa724 122 generates when processes it manages are reaching their memory limits,
2875a36b
LP
123 and will place their units in a special state, and optionally kill or
124 stop the whole unit.
125
126 * The service manager will now expose bus properties for the IO
127 resources used by units. This information is also shown in "systemctl
128 status" now (for services that have IOAccounting=yes set). Moreover,
129 the IO accounting data is included in the resource log message
130 generated whenever a unit stops.
131
132 * units may now configure an explicit time-out to apply to when killed
133 with SIGABRT, for example when a service watchdog is hit. Previously,
134 the regular TimeoutStopSec= time-out was applied in this case too —
135 now a separate time-out may be set using TimeoutAbortSec=.
136
137 * Services may now send a special WATCHDOG=trigger message with
138 sd_notify() to trigger an immediate "watchdog missed" event, and thus
139 request service take down. This is useful both for testing watchdog
140 handling, but also for defining error paths in services, that shall
141 be handled the same way as watchdog events.
142
143 * There are two new per-unit settings IPIngressFilterPath= and
144 IPEgressFilterPath= which allow configuration of a BPF program
145 (usually by specifying a path to a program uploaded to /sys/fs/bpf/)
146 to apply to the IP packet ingress/egress path of all processes of a
147 unit. This is useful to allow running systemd services with BPF
148 programs set up externally.
149
150 * systemctl gained a new "clean" verb for removing the state, cache,
151 runtime or logs directories of a service while it is terminated. The
152 new verb may also be used to remove the state maintained on disk for
153 timer units that have Persistent= configured.
154
155 * During the last phase of shutdown systemd will now automatically
156 increase the log level configured in the "kernel.printk" sysctl so
157 that any relevant loggable events happening during late shutdown are
158 made visible. Previously, loggable events happening so late during
159 shutdown were generally lost if the "kernel.printk" sysctl was set to
160 high thresholds, as regular logging daemons are terminated at that
161 time and thus nothing is written to disk.
162
163 * If processes terminated during the last phase of shutdown do not exit
164 quickly systemd will now show their names after a short time, to make
165 debugging easier. After a longer time-out they are forcibly killed,
166 as before.
167
168 * journalctl (and the other tools that display logs) will now highlight
169 warnings in yellow (previously, both LOG_NOTICE and LOG_WARNING where
170 shown in bright bold, now only LOG_NOTICE is). Moreover, audit logs
171 are now shown in blue color, to separate them visually from regular
172 logs. References to configuration files are now turned into clickable
173 links on terminals that support that.
174
175 * systemd-journald will now stop logging to /var/log/journal during
176 shutdown when /var/ is on a separate mount, so that it can be
177 unmounted safely during shutdown.
178
179 * systemd-resolved gained support for a new 'strict' DNS-over-TLS mode.
180
37d7a7d9
JN
181 * systemd-resolved "Cache=" configuration option in resolved.conf has been extended
182 to also accept the 'no-negative' value. Previously,
183 only a boolean option was allowed (yes/no), having yes as the default.
184 If this option is set to 'no-negative', negative answers are skipped
185 from being cached while keeping the same cache heuristics for positive answers.
186 The default remains as "yes" (i. e. caching is enabled).
187
2875a36b
LP
188 * The predictable naming scheme for network devices now supports
189 generating predictable names for "netdevsim" devices.
190
191 * systemd-networkd now supports MACsec, nlmon, IPVTAP and Xfrm
192 interfaces natively.
193
194 * systemd-networkd's bridge FDB support now allows configuration of a
195 destination address for each entry (Destination=), as well as the
196 VXLAN VNI (VNI=), as well as an option to declare what an entry is
197 associated with (AssociatedWith=).
198
199 * systemd-networkd's DHCPv4 support now understands a new MaxAttempts=
200 option for configuring the maximum number of attempts to request a
201 DHCP lease. It also learnt a new BlackList= option for blacklisting
202 DHCP servers (a similar setting has also been added to the IPv6 RA
203 client), as well as a SendRelease= option for configuring whether to
204 send a DHCP RELEASE message when terminating.
205
206 * systemd-networkd's DHCPv4 and DHCPv6 stacks can now be configured
207 seperately in the [DHCPv4] and [DHCPv6] sections.
208
209 * systemd-networkd's VXLAN support gained a new option
eebaa724 210 GenericProtocolExtension= for enabling VXLAN Generic Protocol
2875a36b
LP
211 Extension support, as well as IPDoNotFragment= for setting the IP
212 "Don't fragment" bit on outgoing packets. A similar option has been
213 added to the GENEVE support.
214
215 * In systemd-networkd's [Route] section you may now configure
216 FastOpenNoCookie= for configuring per-route TCP fast-open support, as
217 well as TTLPropagate= for configuring Label Switched Path (LSP) TTL
218 propagation. The Type= setting now supports local, broadcast,
219 anycast, multicast, any, xresolve routes, too.
220
221 * systemd-networkd's [Network] section learnt a new option
222 DefaultRouteOnDevice= for automatically configuring a default route
223 onto the network device.
224
225 * systemd-networkd's bridging support gained two new options ProxyARP=
226 and ProxyARPWifi= for configuring proxy ARP behaviour as well as
227 MulticastRouter= for configureing multicast routing behaviour.
228
229 * systemd-networkd's FooOverUDP support gained the ability to configure
230 local and peer IP addresses via Local= and Peer=. A new option
231 PeerPort= may be used to configure the peer's IP port.
232
233 * systemd-networkd's TUN support gained a new setting VnetHeader= for
234 tweaking Generic Segment Offload support.
235
236 * networkctl gained a new "delete" command for removing virtual network
237 devices, as well as a new "--stats" switch for showing device
238 statistics.
239
240 * systemd-networkd's .network and .link files gained a new Property=
241 setting in the [Match] section, to match against devices with
242 specific udev properties.
243
244 * systemd-networkd's tunnel support gained a new option
245 AssignToLoopback= for selecting whether to use the loopback device
246 "lo" as underlying device.
247
70183735 248 * systemd-networkd's MACAddress= setting in the [Neighbor] section has
2875a36b
LP
249 been renamed to LinkLayerAddress=, and it now allows configuration of
250 IP addresses, too.
251
252 * The CriticalConnection= setting in .network files is now deprecated,
253 and replaced by a new KeepConfiguration= setting which allows more
254 detailed configuration of the IP configuration to keep in place.
255
256 * systemd-analyze gained a new "timestamp" verb for parsing and
257 converting timestamps. It's similar to the existing "systemd-analyze
258 calendar" command which does the same for recurring calendar
259 events. It also gained a new "condition" verb for parsing and testing
260 ConditionXYZ= expressions.
261
262 * systemd-logind now exposes a per-session SetBrightness() bus call,
263 which may be used to securely change the brightness of a kernel
264 brightness device, if it belongs to the session's seat. By using this
265 call unprivileged clients can make changes to "backlight" and "leds"
266 devices securely with strict requirements on session
267 membership. Desktop environments may use this to generically make
268 brightness changes to such devices without shipping private SUID
eebaa724 269 binaries or specific udev rules for that purpose.
2875a36b
LP
270
271 * "udevadm info" gained a --wait-for-initialization switch to wait for
272 a device to be initialized.
273
274 * systemd-hibernate-resume-generator will now look for resumeflags= on
275 the kernel command line, which is similar to rootflags= and may be
276 used to configure device timeouts for waiting for the hibernation
277 device to show up.
278
279 * sd-event learnt a new API call sd_event_source_disable_unref() for
280 disabling and unref'ing an event source in a single function. A
281 related call sd_event_source_disable_unrefp() has been added for use
282 with GCC's cleanup extension.
283
284 * The sd-id128.h public API gained a new definition
285 SD_ID128_UUID_FORMAT_STR for formatting a 128bit ID in UUID format
286 with printf().
287
288 * "busctl introspect" gained a new switch --xml-interface for dumping
289 XML introspection data unmodified.
290
291 * PID 1 may now show the unit name instead of the unit description
292 string in its status output during boot. This may be configured in
293 the StatusUnitFormat= setting in /etc/systemd/system.conf or the
294 kernel command line option systemd.status_unit_format=.
295
296 * The systemd.debug_shell kernel command line option now optionally
297 takes a tty name to spawn the debug shell on, which allows selecting
298 a different tty than the built-in default.
299
a4d5848a
AZ
300 * Service units gained a new ExecCondition= setting which will run
301 before ExecStartPre= and either continue execution of the unit (for
302 clean exit codes), stop execution without marking the unit failed
303 (for exit codes 1 through 254), or stop execution and fail the unit
304 (for exit code 255 or cases of abnormal termination).
305
6af90583
LP
306
307
d822bd4e 308CHANGES WITH 242:
9b89e602
ZJS
309
310 * In .link files, MACAddressPolicy=persistent (the default) is changed
311 to cover more devices. For devices like bridges, tun, tap, bond, and
312 similar interfaces that do not have other identifying information,
313 the interface name is used as the basis for persistent seed for MAC
314 and IPv4LL addresses. The way that devices that were handled
fd9baae8
ZJS
315 previously is not changed, and this change is about covering more
316 devices then previously by the "persistent" policy.
9b89e602
ZJS
317
318 MACAddressPolicy=random may be used to force randomized MACs and
319 IPv4LL addresses for a device if desired.
320
321 Hint: the log output from udev (at debug level) was enhanced to
322 clarify what policy is followed and which attributes are used.
323 `SYSTEMD_LOG_LEVEL=debug udevadm test-builtin net_setup_link /sys/class/net/<name>`
324 may be used to view this.
325
c111cd98
YW
326 Hint: if a bridge interface is created without any slaves, and gains
327 a slave later, then now the bridge does not inherit slave's MAC.
328 To inherit slave's MAC, for example, create the following file:
329 ```
330 # /etc/systemd/network/98-bridge-inherit-mac.link
331 [Match]
332 Type=bridge
333
334 [Link]
335 MACAddressPolicy=none
336 ```
337
9b89e602
ZJS
338 * The .device units generated by systemd-fstab-generator and other
339 generators do not automatically pull in the corresponding .mount unit
340 as a Wants= dependency. This means that simply plugging in the device
341 will not cause the mount unit to be started automatically. But please
5787c509
LP
342 note that the mount unit may be started for other reasons, in
343 particular if it is part of local-fs.target, and any unit which
344 (transitively) depends on local-fs.target is started.
9b89e602 345
5787c509
LP
346 * networkctl list/status/lldp now accept globbing wildcards for network
347 interface names to match against all existing interfaces.
348
349 * The $PIDFILE environment variable is set to point the absolute path
350 configured with PIDFile= for processes of that service.
9b89e602
ZJS
351
352 * The fallback DNS server list was augmented with Cloudflare public DNS
353 servers. Use `-Ddns-servers=` to set a different fallback.
354
355 * A new special target usb-gadget.target will be started automatically
356 when a USB Device Controller is detected (which means that the system
357 is a USB peripheral).
358
5787c509
LP
359 * A new unit setting CPUQuotaPeriodSec= assigns the time period
360 relatively to which the CPU time quota specified by CPUQuota= is
361 measured.
9b89e602 362
5787c509 363 * A new unit setting ProtectHostname= may be used to prevent services
9b89e602
ZJS
364 from modifying hostname information (even if they otherwise would
365 have privileges to do so).
366
5787c509 367 * A new unit setting NetworkNamespacePath= may be used to specify a
9b89e602
ZJS
368 namespace for service or socket units through a path referring to a
369 Linux network namespace pseudo-file.
370
5787c509
LP
371 * The PrivateNetwork= setting and JoinsNamespaceOf= dependencies now
372 have an effect on .socket units: when used the listening socket is
373 created within the configured network namespace instead of the host
374 namespace.
375
376 * ExecStart= command lines in unit files may now be prefixed with ':'
377 in which case environment variable substitution is
378 disabled. (Supported for the other ExecXYZ= settings, too.)
379
2eb466fc
LP
380 * .timer units gained two new boolean settings OnClockChange= and
381 OnTimezoneChange= which may be used to also trigger a unit when the
382 system clock is changed or the local timezone is
383 modified. systemd-run has been updated to make these options easily
384 accessible from the command line for transient timers.
385
386 * Two new conditions for units have been added: ConditionMemory= may be
387 used to conditionalize a unit based on installed system
388 RAM. ConditionCPUs= may be used to conditionalize a unit based on
39e445c9 389 installed CPU cores.
2eb466fc
LP
390
391 * The @default system call filter group understood by SystemCallFilter=
392 has been updated to include the new rseq() system call introduced in
393 kernel 4.15.
394
ab80eca1
ZJS
395 * A new time-set.target has been added that indicates that the system
396 time has been set from a local source (possibly imprecise). The
397 existing time-sync.target is stronger and indicates that the time has
398 been synchronized with a precise external source. Services where
399 approximate time is sufficient should use the new target.
400
2eb466fc
LP
401 * "systemctl start" (and related commands) learnt a new
402 --show-transaction option. If specified brief information about all
403 jobs queued because of the requested operation is shown.
404
5787c509
LP
405 * systemd-networkd recognizes a new operation state 'enslaved', used
406 (instead of 'degraded' or 'carrier') for interfaces which form a
407 bridge, bond, or similar, and an new 'degraded-carrier' operational
408 state used for the bond or bridge master interface when one of the
409 enslaved devices is not operational.
9b89e602 410
5787c509
LP
411 * .network files learnt the new IgnoreCarrierLoss= option for leaving
412 networks configured even if the carrier is lost.
413
414 * The RequiredForOnline= setting in .network files may now specify a
9b89e602 415 minimum operational state required for the interface to be considered
5787c509
LP
416 "online" by systemd-networkd-wait-online. Related to this
417 systemd-networkd-wait-online gained a new option --operational-state=
418 to configure the same, and its --interface= option was updated to
419 optionally also take an operational state specific for an interface.
9b89e602 420
2eb466fc
LP
421 * systemd-networkd-wait-online gained a new setting --any for waiting
422 for only one of the requested interfaces instead of all of them.
423
9b89e602
ZJS
424 * systemd-networkd now implements L2TP tunnels.
425
5787c509
LP
426 * Two new .network settings UseAutonomousPrefix= and UseOnLinkPrefix=
427 may be used to cause autonomous and onlink prefixes received in IPv6
9b89e602
ZJS
428 Router Advertisements to be ignored.
429
5787c509
LP
430 * New MulticastFlood=, NeighborSuppression=, and Learning= .network
431 file settings may be used to tweak bridge behaviour.
432
433 * The new TripleSampling= option in .network files may be used to
434 configure CAN triple sampling.
9b89e602 435
78bb2866
YW
436 * A new .netdev settings PrivateKeyFile= and PresharedKeyFile= may be
437 used to point to private or preshared key for a WireGuard interface.
9b89e602 438
5787c509
LP
439 * /etc/crypttab now supports the same-cpu-crypt and
440 submit-from-crypt-cpus options to tweak encryption work scheduling
441 details.
9b89e602
ZJS
442
443 * systemd-tmpfiles will now take a BSD file lock before operating on a
444 contents of directory. This may be used to temporarily exclude
445 directories from aging by taking the same lock (useful for example
446 when extracting a tarball into /tmp or /var/tmp as a privileged user,
447 which might create files with really old timestamps, which
5787c509
LP
448 nevertheless should not be deleted). For further details, see:
449
450 https://systemd.io/TEMPORARY_DIRECTORIES
9b89e602 451
70d8401d
LP
452 * systemd-tmpfiles' h line type gained support for the
453 FS_PROJINHERIT_FL ('P') file attribute (introduced in kernel 4.5),
454 controlling project quota inheritance.
455
9b89e602
ZJS
456 * sd-boot and bootctl now implement support for an Extended Boot Loader
457 (XBOOTLDR) partition, that is intended to be mounted to /boot, in
458 addition to the ESP partition mounted to /efi or /boot/efi.
459 Configuration file fragments, kernels, initrds and other EFI images
460 to boot will be loaded from both the ESP and XBOOTLDR partitions.
461 The XBOOTLDR partition was previously described by the Boot Loader
5787c509
LP
462 Specification, but implementation was missing in sd-boot. Support for
463 this concept allows using the sd-boot boot loader in more
464 conservative scenarios where the boot loader itself is placed in the
465 ESP but the kernels to boot (and their metadata) in a separate
466 partition.
9b89e602 467
5787c509
LP
468 * A system may now be booted with systemd.volatile=overlay on the
469 kernel command line, which causes the root file system to be set up
470 an overlayfs mount combining the root-only root directory with a
471 writable tmpfs. In this setup, the underlying root device is not
472 modified, and any changes are lost at reboot.
9b89e602 473
5787c509
LP
474 * Similar, systemd-nspawn can now boot containers with a volatile
475 overlayfs root with the new --volatile=overlay switch.
9b89e602
ZJS
476
477 * systemd-nspawn can now consume OCI runtime bundles using a new
478 --oci-bundle= option. This implementation is fully usable, with most
479 features in the specification implemented, but since this a lot of
480 new code and functionality, this feature should most likely not
481 be used in production yet.
482
5787c509
LP
483 * systemd-nspawn now supports various options described by the OCI
484 runtime specification on the command-line and in .nspawn files:
9b89e602 485 --inaccessible=/Inaccessible= may be used to mask parts of the file
5787c509 486 system tree, --console=/--pipe may be used to configure how standard
9b89e602
ZJS
487 input, output, and error are set up.
488
489 * busctl learned the `emit` verb to generate D-Bus signals.
490
491 * systemd-analyze cat-config may be used to gather and display
492 configuration spread over multiple files, for example system and user
493 presets, tmpfiles.d, sysusers.d, udev rules, etc.
494
5787c509
LP
495 * systemd-analyze calendar now takes an optional new parameter
496 --iterations= which may be used to show a maximum number of iterations
497 the specified expression will elapse next.
498
499 * The sd-bus C API gained support for naming method parameters in the
500 introspection data.
501
502 * systemd-logind gained D-Bus APIs to specify the "reboot parameter"
503 the reboot() system call expects.
504
505 * journalctl learnt a new --cursor-file= option that points to a file
9b89e602
ZJS
506 from which a cursor should be loaded in the beginning and to which
507 the updated cursor should be stored at the end.
508
509 * ACRN hypervisor and Windows Subsystem for Linux (WSL) are now
510 detected by systemd-detect-virt (and may also be used in
511 ConditionVirtualization=).
512
513 * The behaviour of systemd-logind may now be modified with environment
514 variables $SYSTEMD_REBOOT_TO_FIRMWARE_SETUP,
515 $SYSTEMD_REBOOT_TO_BOOT_LOADER_MENU, and
516 $SYSTEMD_REBOOT_TO_BOOT_LOADER_ENTRY. They cause logind to either
517 skip the relevant operation completely (when set to false), or to
518 create a flag file in /run/systemd (when set to true), instead of
519 actually commencing the real operation when requested. The presence
520 of /run/systemd/reboot-to-firmware-setup,
521 /run/systemd/reboot-to-boot-loader-menu, and
522 /run/systemd/reboot-to-boot-loader-entry, may be used by alternative
523 boot loader implementations to replace some steps logind performs
524 during reboot with their own operations.
525
526 * systemctl can be used to request a reboot into the boot loader menu
5787c509
LP
527 or a specific boot loader entry with the new --boot-load-menu= and
528 --boot-loader-entry= options to a reboot command. (This requires a
529 boot loader that supports this, for example sd-boot.)
9b89e602
ZJS
530
531 * kernel-install will no longer unconditionally create the output
532 directory (e.g. /efi/<machine-id>/<kernel-version>) for boot loader
533 snippets, but will do only if the machine-specific parent directory
534 (i.e. /efi/<machine-id>/) already exists. bootctl has been modified
535 to create this parent directory during sd-boot installation.
536
537 This makes it easier to use kernel-install with plugins which support
538 a different layout of the bootloader partitions (for example grub2).
539
a3134241 540 * During package installation (with `ninja install`), we would create
1fa3ba90
PM
541 symlinks for getty@tty1.service, systemd-networkd.service,
542 systemd-networkd.socket, systemd-resolved.service,
543 remote-cryptsetup.target, remote-fs.target,
a3134241
ZJS
544 systemd-networkd-wait-online.service, and systemd-timesyncd.service
545 in /etc, as if `systemctl enable` was called for those units, to make
546 the system usable immediately after installation. Now this is not
547 done anymore, and instead calling `systemctl preset-all` is
548 recommended after the first installation of systemd.
549
bf65b7e0
LP
550 * A new boolean sandboxing option RestrictSUIDSGID= has been added that
551 is built on seccomp. When turned on creation of SUID/SGID files is
552 prohibited.
553
554 * The NoNewPrivileges= and the new RestrictSUIDSGID= options are now
555 implied if DynamicUser= is turned on for a service. This hardens
556 these services, so that they neither can benefit from nor create
557 SUID/SGID executables. This is a minor compatibility breakage, given
558 that when DynamicUser= was first introduced SUID/SGID behaviour was
559 unaffected. However, the security benefit of these two options is
560 substantial, and the setting is still relatively new, hence we opted
561 to make it mandatory for services with dynamic users.
562
5b2fc74f
LP
563 Contributions from: Adam Jackson, Alexander Tsoy, Andrey Yashkin,
564 Andrzej Pietrasiewicz, Anita Zhang, Balint Reczey, Beniamino Galvani,
565 Ben Iofel, Benjamin Berg, Benjamin Dahlhoff, Chris, Chris Morin,
566 Christopher Wong, Claudius Ellsel, Clemens Gruber, dana, Daniel Black,
567 Davide Cavalca, David Michael, David Rheinsberg, emersion, Evgeny
568 Vereshchagin, Filipe Brandenburger, Franck Bui, Frantisek Sumsal,
569 Giacinto Cifelli, Hans de Goede, Hugo Kindel, Ignat Korchagin, Insun
c3287a42
LP
570 Pyo, Jan Engelhardt, Jonas Dorel, Jonathan Lebon, Jonathon Kowalski,
571 Jörg Sommer, Jörg Thalheim, Jussi Pakkanen, Kai-Heng Feng, Lennart
572 Poettering, Lubomir Rintel, Luís Ferreira, Martin Pitt, Matthias
573 Klumpp, Michael Biebl, Michael Niewöhner, Michael Olbrich, Michal
ab80eca1
ZJS
574 Sekletar, Mike Lothian, Paul Menzel, Piotr Drąg, Riccardo Schirone,
575 Robin Elvedi, Roman Kulikov, Ronald Tschalär, Ross Burton, Ryan
1e5d2d65
ZJS
576 Gonzalez, Sebastian Krzyszkowiak, Stephane Chazelas, StKob, Susant
577 Sahani, Sylvain Plantefève, Szabolcs Fruhwald, Taro Yamada, Theo
578 Ouzhinski, Thomas Haller, Tobias Jungel, Tom Yan, Tony Asleson, Topi
579 Miettinen, unixsysadmin, Van Laser, Vesa Jääskeläinen, Yu, Li-Yu,
580 Yu Watanabe, Zbigniew Jędrzejewski-Szmek
c3287a42 581
1e5d2d65 582 — Warsaw, 2019-04-11
bf65b7e0 583
d0f71749 584CHANGES WITH 241:
b4ff3dbb
ZJS
585
586 * The default locale can now be configured at compile time. Otherwise,
587 a suitable default will be selected automatically (one of C.UTF-8,
588 en_US.UTF-8, and C).
589
590 * The version string shown by systemd and other tools now includes the
591 git commit hash when built from git. An override may be specified
592 during compilation, which is intended to be used by distributions to
593 include the package release information.
594
595 * systemd-cat can now filter standard input and standard error streams
596 for different syslog priorities using the new --stderr-priority=
597 option.
598
599 * systemd-journald and systemd-journal-remote reject entries which
600 contain too many fields (CVE-2018-16865) and set limits on the
601 process' command line length (CVE-2018-16864).
602
603 * $DBUS_SESSION_BUS_ADDRESS environment variable is set by pam_systemd
604 again.
605
08e1fe42
ZJS
606 * A new network device NamePolicy "keep" is implemented for link files,
607 and used by default in 99-default.link (the fallback configuration
608 provided by systemd). With this policy, if the network device name
609 was already set by userspace, the device will not be renamed again.
610 This matches the naming scheme that was implemented before
611 systemd-240. If naming-scheme < 240 is specified, the "keep" policy
612 is also enabled by default, even if not specified. Effectively, this
613 means that if naming-scheme >= 240 is specified, network devices will
614 be renamed according to the configuration, even if they have been
615 renamed already, if "keep" is not specified as the naming policy in
616 the .link file. The 99-default.link file provided by systemd includes
617 "keep" for backwards compatibility, but it is recommended for user
618 installed .link files to *not* include it.
619
620 The "kernel" policy, which keeps kernel names declared to be
621 "persistent", now works again as documented.
622
ba7a6b8c
LP
623 * kernel-install script now optionally takes the paths to one or more
624 initrd files, and passes them to all plugins.
bd36ef0a 625
57c03b1e
LP
626 * The mincore() system call has been dropped from the @system-service
627 system call filter group, as it is pretty exotic and may potentially
628 used for side-channel attacks.
629
774d6375
ZJS
630 * -fPIE is dropped from compiler and linker options. Please specify
631 -Db_pie=true option to meson to build position-independent
bd36ef0a
YW
632 executables. Note that the meson option is supported since meson-0.49.
633
27325875
LW
634 * The fs.protected_regular and fs.protected_fifos sysctls, which were
635 added in Linux 4.19 to make some data spoofing attacks harder, are
636 now enabled by default. While this will hopefully improve the
637 security of most installations, it is technically a backwards
638 incompatible change; to disable these sysctls again, place the
639 following lines in /etc/sysctl.d/60-protected.conf or a similar file:
640
641 fs.protected_regular = 0
642 fs.protected_fifos = 0
643
644 Note that the similar hardlink and symlink protection has been
645 enabled since v199, and may be disabled likewise.
646
a77f438b
LT
647 * The files read from the EnvironmentFile= setting in unit files now
648 parse backslashes inside quotes literally, matching the behaviour of
649 POSIX shells.
650
ba7a6b8c
LP
651 * udevadm trigger, udevadm control, udevadm settle and udevadm monitor
652 now automatically become NOPs when run in a chroot() environment.
653
654 * The tmpfiles.d/ "C" line type will now copy directory trees not only
655 when the destination is so far missing, but also if it already exists
656 as a directory and is empty. This is useful to cater for systems
657 where directory trees are put together from multiple separate mount
658 points but otherwise empty.
659
660 * A new function sd_bus_close_unref() (and the associated
661 sd_bus_close_unrefp()) has been added to libsystemd, that combines
662 sd_bus_close() and sd_bus_unref() in one.
663
664 * udevadm control learnt a new option for --ping for testing whether a
665 systemd-udevd instance is running and reacting.
666
ecebd1ec
YW
667 * udevadm trigger learnt a new option for --wait-daemon for waiting
668 systemd-udevd daemon to be initialized.
669
d0f71749
LP
670 Contributions from: Aaron Plattner, Alberts Muktupāvels, Alex Mayer,
671 Ayman Bagabas, Beniamino Galvani, Burt P, Chris Down, Chris Lamb, Chris
672 Morin, Christian Hesse, Claudius Ellsel, dana, Daniel Axtens, Daniele
673 Medri, Dave Reisner, David Santamaría Rogado, Diego Canuhe, Dimitri
674 John Ledkov, Evgeny Vereshchagin, Fabrice Fontaine, Filipe
675 Brandenburger, Franck Bui, Frantisek Sumsal, govwin, Hans de Goede,
676 James Hilliard, Jan Engelhardt, Jani Uusitalo, Jan Janssen, Jan
677 Synacek, Jonathan McDowell, Jonathan Roemer, Jonathon Kowalski, Joost
678 Heitbrink, Jörg Thalheim, Lance, Lennart Poettering, Louis Taylor,
679 Lucas Werkmeister, Mantas Mikulėnas, Marc-Antoine Perennou,
680 marvelousblack, Michael Biebl, Michael Sloan, Michal Sekletar, Mike
681 Auty, Mike Gilbert, Mikhail Kasimov, Neil Brown, Niklas Hambüchen,
682 Patrick Williams, Paul Seyfert, Peter Hutterer, Philip Withnall, Roger
683 James, Ronnie P. Thomas, Ryan Gonzalez, Sam Morris, Stephan Edel,
684 Stephan Gerhold, Susant Sahani, Taro Yamada, Thomas Haller, Topi
685 Miettinen, YiFei Zhu, YmrDtnJu, YunQiang Su, Yu Watanabe, Zbigniew
686 Jędrzejewski-Szmek, zsergeant77, Дамјан Георгиевски
687
36d28ebc 688 — Berlin, 2019-02-14
ba7a6b8c 689
32673162 690CHANGES WITH 240:
fcb97512 691
e68a35a7
ZJS
692 * NoNewPrivileges=yes has been set for all long-running services
693 implemented by systemd. Previously, this was problematic due to
694 SELinux (as this would also prohibit the transition from PID1's label
695 to the service's label). This restriction has since been lifted, but
696 an SELinux policy update is required.
697 (See e.g. https://github.com/fedora-selinux/selinux-policy/pull/234.)
698
aa2437e2
YW
699 * DynamicUser=yes is dropped from systemd-networkd.service,
700 systemd-resolved.service and systemd-timesyncd.service, which was
701 enabled in v239 for systemd-networkd.service and systemd-resolved.service,
702 and since v236 for systemd-timesyncd.service. The users and groups
703 systemd-network, systemd-resolve and systemd-timesync are created
704 by systemd-sysusers again. Distributors or system administrators
705 may need to create these users and groups if they not exist (or need
706 to re-enable DynamicUser= for those units) while upgrading systemd.
787a133f
YW
707 Also, the clock file for systemd-timesyncd may need to move from
708 /var/lib/private/systemd/timesync/clock to /var/lib/systemd/timesync/clock.
aa2437e2 709
b1a082cd
ZJS
710 * When unit files are loaded from disk, previously systemd would
711 sometimes (depending on the unit loading order) load units from the
712 target path of symlinks in .wants/ or .requires/ directories of other
713 units. This meant that unit could be loaded from different paths
714 depending on whether the unit was requested explicitly or as a
715 dependency of another unit, not honouring the priority of directories
716 in search path. It also meant that it was possible to successfully
717 load and start units which are not found in the unit search path, as
718 long as they were requested as a dependency and linked to from
719 .wants/ or .requires/. The target paths of those symlinks are not
720 used for loading units anymore and the unit file must be found in
721 the search path.
722
fcb97512 723 * A new service type has been added: Type=exec. It's very similar to
421e3b45 724 Type=simple but ensures the service manager will wait for both fork()
fcb97512
LP
725 and execve() of the main service binary to complete before proceeding
726 with follow-up units. This is primarily useful so that the manager
727 propagates any errors in the preparation phase of service execution
728 back to the job that requested the unit to be started. For example,
729 consider a service that has ExecStart= set to a file system binary
421e3b45
ZJS
730 that doesn't exist. With Type=simple starting the unit would be
731 considered instantly successful, as only fork() has to complete
732 successfully and the manager does not wait for execve(), and hence
733 its failure is seen "too late". With the new Type=exec service type
734 starting the unit will fail, as the manager will wait for the
735 execve() and notice its failure, which is then propagated back to the
736 start job.
fcb97512
LP
737
738 NOTE: with the next release 241 of systemd we intend to change the
739 systemd-run tool to default to Type=exec for transient services
740 started by it. This should be mostly safe, but in specific corner
741 cases might result in problems, as the systemd-run tool will then
6b1ab752 742 block on NSS calls (such as user name look-ups due to User=) done
fcb97512
LP
743 between the fork() and execve(), which under specific circumstances
744 might cause problems. It is recommended to specify "-p Type=simple"
745 explicitly in the few cases where this applies. For regular,
746 non-transient services (i.e. those defined with unit files on disk)
747 we will continue to default to Type=simple.
748
0972c1ae
LP
749 * The Linux kernel's current default RLIMIT_NOFILE resource limit for
750 userspace processes is set to 1024 (soft) and 4096
751 (hard). Previously, systemd passed this on unmodified to all
752 processes it forked off. With this systemd release the hard limit
0abf9492 753 systemd passes on is increased to 512K, overriding the kernel's
0972c1ae
LP
754 defaults and substantially increasing the number of simultaneous file
755 descriptors unprivileged userspace processes can allocate. Note that
756 the soft limit remains at 1024 for compatibility reasons: the
757 traditional UNIX select() call cannot deal with file descriptors >=
758 1024 and increasing the soft limit globally might thus result in
759 programs unexpectedly allocating a high file descriptor and thus
760 failing abnormally when attempting to use it with select() (of
761 course, programs shouldn't use select() anymore, and prefer
762 poll()/epoll, but the call unfortunately remains undeservedly popular
763 at this time). This change reflects the fact that file descriptor
764 handling in the Linux kernel has been optimized in more recent
765 kernels and allocating large numbers of them should be much cheaper
766 both in memory and in performance than it used to be. Programs that
767 want to take benefit of the increased limit have to "opt-in" into
421e3b45
ZJS
768 high file descriptors explicitly by raising their soft limit. Of
769 course, when they do that they must acknowledge that they cannot use
770 select() anymore (and neither can any shared library they use — or
771 any shared library used by any shared library they use and so on).
772 Which default hard limit is most appropriate is of course hard to
773 decide. However, given reports that ~300K file descriptors are used
774 in real-life applications we believe 512K is sufficiently high as new
775 default for now. Note that there are also reports that using very
776 high hard limits (e.g. 1G) is problematic: some software allocates
777 large arrays with one element for each potential file descriptor
778 (Java, …) — a high hard limit thus triggers excessively large memory
779 allocations in these applications. Hopefully, the new default of 512K
780 is a good middle ground: higher than what real-life applications
781 currently need, and low enough for avoid triggering excessively large
782 allocations in problematic software. (And yes, somebody should fix
783 Java.)
0972c1ae 784
a8b627aa
LP
785 * The fs.nr_open and fs.file-max sysctls are now automatically bumped
786 to the highest possible values, as separate accounting of file
787 descriptors is no longer necessary, as memcg tracks them correctly as
788 part of the memory accounting anyway. Thus, from the four limits on
789 file descriptors currently enforced (fs.file-max, fs.nr_open,
790 RLIMIT_NOFILE hard, RLIMIT_NOFILE soft) we turn off the first two,
791 and keep only the latter two. A set of build-time options
a579d42a 792 (-Dbump-proc-sys-fs-file-max=false and -Dbump-proc-sys-fs-nr-open=false)
a8b627aa
LP
793 has been added to revert this change in behaviour, which might be
794 an option for systems that turn off memcg in the kernel.
795
4f7dc24f
LP
796 * When no /etc/locale.conf file exists (and hence no locale settings
797 are in place), systemd will now use the "C.UTF-8" locale by default,
798 and set LANG= to it. This locale is supported by various
799 distributions including Fedora, with clear indications that upstream
800 glibc is going to make it available too. This locale enables UTF-8
801 mode by default, which appears appropriate for 2018.
802
230450d4
LR
803 * The "net.ipv4.conf.all.rp_filter" sysctl will now be set to 2 by
804 default. This effectively switches the RFC3704 Reverse Path filtering
805 from Strict mode to Loose mode. This is more appropriate for hosts
806 that have multiple links with routes to the same networks (e.g.
807 a client with a Wi-Fi and Ethernet both connected to the internet).
808
6b1ab752 809 Consult the kernel documentation for details on this sysctl:
230450d4
LR
810 https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt
811
23305a29
CD
812 * CPUAccounting=yes no longer enables the CPU controller when using
813 kernel 4.15+ and the unified cgroup hierarchy, as required accounting
814 statistics are now provided independently from the CPU controller.
815
6b1ab752 816 * Support for disabling a particular cgroup controller within a sub-tree
a8467688
CD
817 has been added through the DisableControllers= directive.
818
8f044cf9
CD
819 * cgroup_no_v1=all on the kernel command line now also implies
820 using the unified cgroup hierarchy, unless one explicitly passes
821 systemd.unified_cgroup_hierarchy=0 on the kernel command line.
822
6b1ab752
LP
823 * The new "MemoryMin=" unit file property may now be used to set the
824 memory usage protection limit of processes invoked by the unit. This
4e1dfa45 825 controls the cgroup v2 memory.min attribute. Similarly, the new
6b1ab752 826 "IODeviceLatencyTargetSec=" property has been added, wrapping the new
4e1dfa45 827 cgroup v2 io.latency cgroup property for configuring per-service I/O
6b1ab752
LP
828 latency.
829
4e1dfa45
CD
830 * systemd now supports the cgroup v2 devices BPF logic, as counterpart
831 to the cgroup v1 "devices" cgroup controller.
6b1ab752
LP
832
833 * systemd-escape now is able to combine --unescape with --template. It
834 also learnt a new option --instance for extracting and unescaping the
835 instance part of a unit name.
836
837 * sd-bus now provides the sd_bus_message_readv() which is similar to
838 sd_bus_message_read() but takes a va_list object. The pair
839 sd_bus_set_method_call_timeout() and sd_bus_get_method_call_timeout()
421e3b45 840 has been added for configuring the default method call timeout to
6b1ab752
LP
841 use. sd_bus_error_move() may be used to efficiently move the contents
842 from one sd_bus_error structure to another, invalidating the
843 source. sd_bus_set_close_on_exit() and sd_bus_get_close_on_exit() may
844 be used to control whether a bus connection object is automatically
845 flushed when an sd-event loop is exited.
846
847 * When processing classic BSD syslog log messages, journald will now
848 save the original time-stamp string supplied in the new
849 SYSLOG_TIMESTAMP= journal field. This permits consumers to
850 reconstruct the original BSD syslog message more correctly.
851
852 * StandardOutput=/StandardError= in service files gained support for
853 new "append:…" parameters, for connecting STDOUT/STDERR of a service
854 to a file, and appending to it.
855
856 * The signal to use as last step of killing of unit processes is now
857 configurable. Previously it was hard-coded to SIGKILL, which may now
858 be overridden with the new KillSignal= setting. Note that this is the
46b028f2 859 signal used when regular termination (i.e. SIGTERM) does not suffice.
421e3b45
ZJS
860 Similarly, the signal used when aborting a program in case of a
861 watchdog timeout may now be configured too (WatchdogSignal=).
6b1ab752
LP
862
863 * The XDG_SESSION_DESKTOP environment variable may now be configured in
864 the pam_systemd argument line, using the new desktop= switch. This is
865 useful to initialize it properly from a display manager without
866 having to touch C code.
867
421e3b45
ZJS
868 * Most configuration options that previously accepted percentage values
869 now also accept permille values with the '‰' suffix (instead of '%').
6b1ab752 870
6b1ab752
LP
871 * systemd-resolved may now optionally use OpenSSL instead of GnuTLS for
872 DNS-over-TLS.
873
874 * systemd-resolved's configuration file resolved.conf gained a new
875 option ReadEtcHosts= which may be used to turn off processing and
876 honoring /etc/hosts entries.
877
878 * The "--wait" switch may now be passed to "systemctl
879 is-system-running", in which case the tool will synchronously wait
880 until the system finished start-up.
881
882 * hostnamed gained a new bus call to determine the DMI product UUID.
883
884 * On x86-64 systemd will now prefer using the RDRAND processor
885 instruction over /dev/urandom whenever it requires randomness that
886 neither has to be crypto-grade nor should be reproducible. This
887 should substantially reduce the amount of entropy systemd requests
888 from the kernel during initialization on such systems, though not
889 reduce it to zero. (Why not zero? systemd still needs to allocate
890 UUIDs and such uniquely, which require high-quality randomness.)
891
892 * networkd gained support for Foo-Over-UDP, ERSPAN and ISATAP
893 tunnels. It also gained a new option ForceDHCPv6PDOtherInformation=
894 for forcing the "Other Information" bit in IPv6 RA messages. The
d6131be9 895 bonding logic gained four new options AdActorSystemPriority=,
6b1ab752 896 AdUserPortKey=, AdActorSystem= for configuring various 802.3ad
d6131be9
YW
897 aspects, and DynamicTransmitLoadBalancing= for enabling dynamic
898 shuffling of flows. The tunnel logic gained a new
899 IPv6RapidDeploymentPrefix= option for configuring IPv6 Rapid
900 Deployment. The policy rule logic gained four new options IPProtocol=,
901 SourcePort= and DestinationPort=, InvertRule=. The bridge logic gained
902 support for the MulticastToUnicast= option. networkd also gained
903 support for configuring static IPv4 ARP or IPv6 neighbor entries.
6b1ab752
LP
904
905 * .preset files (as read by 'systemctl preset') may now be used to
906 instantiate services.
907
908 * /etc/crypttab now understands the sector-size= option to configure
909 the sector size for an encrypted partition.
910
911 * Key material for encrypted disks may now be placed on a formatted
421e3b45
ZJS
912 medium, and referenced from /etc/crypttab by the UUID of the file
913 system, followed by "=" suffixed by the path to the key file.
6b1ab752
LP
914
915 * The "collect" udev component has been removed without replacement, as
421e3b45 916 it is neither used nor maintained.
6b1ab752
LP
917
918 * When the RuntimeDirectory=, StateDirectory=, CacheDirectory=,
919 LogsDirectory=, ConfigurationDirectory= settings are used in a
920 service the executed processes will now receive a set of environment
421e3b45
ZJS
921 variables containing the full paths of these directories.
922 Specifically, RUNTIME_DIRECTORY=, STATE_DIRECTORY, CACHE_DIRECTORY,
923 LOGS_DIRECTORY, CONFIGURATION_DIRECTORY are now set if these options
924 are used. Note that these options may be used multiple times per
925 service in which case the resulting paths will be concatenated and
926 separated by colons.
6b1ab752
LP
927
928 * Predictable interface naming has been extended to cover InfiniBand
929 NICs. They will be exposed with an "ib" prefix.
930
931 * tmpfiles.d/ line types may now be suffixed with a '-' character, in
932 which case the respective line failing is ignored.
933
934 * .link files may now be used to configure the equivalent to the
935 "ethtool advertise" commands.
936
937 * The sd-device.h and sd-hwdb.h APIs are now exported, as an
938 alternative to libudev.h. Previously, the latter was just an internal
939 wrapper around the former, but now these two APIs are exposed
940 directly.
941
942 * sd-id128.h gained a new function sd_id128_get_boot_app_specific()
943 which calculates an app-specific boot ID similar to how
944 sd_id128_get_machine_app_specific() generates an app-specific machine
945 ID.
946
947 * A new tool systemd-id128 has been added that can be used to determine
948 and generate various 128bit IDs.
949
950 * /etc/os-release gained two new standardized fields DOCUMENTATION_URL=
951 and LOGO=.
952
953 * systemd-hibernate-resume-generator will now honor the "noresume"
954 kernel command line option, in which case it will bypass resuming
955 from any hibernated image.
956
957 * The systemd-sleep.conf configuration file gained new options
958 AllowSuspend=, AllowHibernation=, AllowSuspendThenHibernate=,
959 AllowHybridSleep= for prohibiting specific sleep modes even if the
421e3b45 960 kernel exports them.
6b1ab752
LP
961
962 * portablectl is now officially supported and has thus moved to
963 /usr/bin/.
964
965 * bootctl learnt the two new commands "set-default" and "set-oneshot"
966 for setting the default boot loader item to boot to (either
967 persistently or only for the next boot). This is currently only
968 compatible with sd-boot, but may be implemented on other boot loaders
969 too, that follow the boot loader interface. The updated interface is
970 now documented here:
971
972 https://systemd.io/BOOT_LOADER_INTERFACE
973
974 * A new kernel command line option systemd.early_core_pattern= is now
975 understood which may be used to influence the core_pattern PID 1
976 installs during early boot.
977
978 * busctl learnt two new options -j and --json= for outputting method
979 call replies, properties and monitoring output in JSON.
980
981 * journalctl's JSON output now supports simple ANSI coloring as well as
982 a new "json-seq" mode for generating RFC7464 output.
983
984 * Unit files now support the %g/%G specifiers that resolve to the UNIX
985 group/GID of the service manager runs as, similar to the existing
986 %u/%U specifiers that resolve to the UNIX user/UID.
987
988 * systemd-logind learnt a new global configuration option
989 UserStopDelaySec= that may be set in logind.conf. It specifies how
990 long the systemd --user instance shall remain started after a user
991 logs out. This is useful to speed up repetitive re-connections of the
992 same user, as it means the user's service manager doesn't have to be
993 stopped/restarted on each iteration, but can be reused between
994 subsequent options. This setting defaults to 10s. systemd-logind also
995 exports two new properties on its Manager D-Bus objects indicating
421e3b45
ZJS
996 whether the system's lid is currently closed, and whether the system
997 is on AC power.
6b1ab752
LP
998
999 * systemd gained support for a generic boot counting logic, which
1000 generically permits automatic reverting to older boot loader entries
1001 if newer updated ones don't work. The boot loader side is implemented
1002 in sd-boot, but is kept open for other boot loaders too. For details
1003 see:
1004
1005 https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT
1006
1007 * The SuccessAction=/FailureAction= unit file settings now learnt two
1008 new parameters: "exit" and "exit-force", which result in immediate
1009 exiting of the service manager, and are only useful in systemd --user
1010 and container environments.
1011
1012 * Unit files gained support for a pair of options
1013 FailureActionExitStatus=/SuccessActionExitStatus= for configuring the
1014 exit status to use as service manager exit status when
1015 SuccessAction=/FailureAction= is set to exit or exit-force.
1016
1017 * A pair of LogRateLimitIntervalSec=/LogRateLimitBurst= per-service
1018 options may now be used to configure the log rate limiting applied by
1019 journald per-service.
1020
1021 * systemd-analyze gained a new verb "timespan" for parsing and
1022 normalizing time span values (i.e. strings like "5min 7s 8us").
1023
1024 * systemd-analyze also gained a new verb "security" for analyzing the
1025 security and sand-boxing settings of services in order to determine an
1026 "exposure level" for them, indicating whether a service would benefit
1027 from more sand-boxing options turned on for them.
1028
1029 * "systemd-analyze syscall-filter" will now also show system calls
1030 supported by the local kernel but not included in any of the defined
1031 groups.
1032
1033 * .nspawn files now understand the Ephemeral= setting, matching the
1034 --ephemeral command line switch.
1035
1036 * sd-event gained the new APIs sd_event_source_get_floating() and
1037 sd_event_source_set_floating() for controlling whether a specific
1038 event source is "floating", i.e. destroyed along with the even loop
1039 object itself.
1040
1041 * Unit objects on D-Bus gained a new "Refs" property that lists all
421e3b45
ZJS
1042 clients that currently have a reference on the unit (to ensure it is
1043 not unloaded).
6b1ab752
LP
1044
1045 * The JoinControllers= option in system.conf is no longer supported, as
1046 it didn't work correctly, is hard to support properly, is legacy (as
4e1dfa45 1047 the concept only exists on cgroup v1) and apparently wasn't used.
6b1ab752
LP
1048
1049 * Journal messages that are generated whenever a unit enters the failed
421e3b45
ZJS
1050 state are now tagged with a unique MESSAGE_ID. Similarly, messages
1051 generated whenever a service process exits are now made recognizable,
5238e957 1052 too. A tagged message is also emitted whenever a unit enters the
421e3b45 1053 "dead" state on success.
6b1ab752
LP
1054
1055 * systemd-run gained a new switch --working-directory= for configuring
1056 the working directory of the service to start. A shortcut -d is
1057 equivalent, setting the working directory of the service to the
1058 current working directory of the invoking program. The new --shell
1059 (or just -S) option has been added for invoking the $SHELL of the
1060 caller as a service, and implies --pty --same-dir --wait --collect
421e3b45 1061 --service-type=exec. Or in other words, "systemd-run -S" is now the
6b1ab752
LP
1062 quickest way to quickly get an interactive in a fully clean and
1063 well-defined system service context.
1064
1065 * machinectl gained a new verb "import-fs" for importing an OS tree
1066 from a directory. Moreover, when a directory or tarball is imported
1067 and single top-level directory found with the OS itself below the OS
1068 tree is automatically mangled and moved one level up.
1069
421e3b45
ZJS
1070 * systemd-importd will no longer set up an implicit btrfs loop-back
1071 file system on /var/lib/machines. If one is already set up, it will
1072 continue to be used.
6b1ab752
LP
1073
1074 * A new generator "systemd-run-generator" has been added. It will
1075 synthesize a unit from one or more program command lines included in
1076 the kernel command line. This is very useful in container managers
1077 for example:
1078
1079 # systemd-nspawn -i someimage.raw -b systemd.run='"some command line"'
1080
1081 This will run "systemd-nspawn" on an image, invoke the specified
421e3b45
ZJS
1082 command line and immediately shut down the container again, returning
1083 the command line's exit code.
6b1ab752 1084
421e3b45 1085 * The block device locking logic is now documented:
6b1ab752
LP
1086
1087 https://systemd.io/BLOCK_DEVICE_LOCKING
1088
1089 * loginctl and machinectl now optionally output the various tables in
1090 JSON using the --output= switch. It is our intention to add similar
1091 support to systemctl and all other commands.
1092
1093 * udevadm's query and trigger verb now optionally take a .device unit
1094 name as argument.
1095
1096 * systemd-udevd's network naming logic now understands a new
421e3b45 1097 net.naming-scheme= kernel command line switch, which may be used to
6b1ab752
LP
1098 pick a specific version of the naming scheme. This helps stabilizing
1099 interface names even as systemd/udev are updated and the naming logic
1100 is improved.
1101
67081438
LP
1102 * sd-id128.h learnt two new auxiliary helpers: sd_id128_is_allf() and
1103 SD_ID128_ALLF to test if a 128bit ID is set to all 0xFF bytes, and to
1104 initialize one to all 0xFF.
1105
144d7f1d
LP
1106 * After loading the SELinux policy systemd will now recursively relabel
1107 all files and directories listed in
1108 /run/systemd/relabel-extra.d/*.relabel (which should be simple
1109 newline separated lists of paths) in addition to the ones it already
1110 implicitly relabels in /run, /dev and /sys. After the relabelling is
1111 completed the *.relabel files (and /run/systemd/relabel-extra.d/) are
1112 removed. This is useful to permit initrds (i.e. code running before
1113 the SELinux policy is in effect) to generate files in the host
1114 filesystem safely and ensure that the correct label is applied during
1115 the transition to the host OS.
1116
98a7b55a
LP
1117 * KERNEL API BREAKAGE: Linux kernel 4.18 changed behaviour regarding
1118 mknod() handling in user namespaces. Previously mknod() would always
1119 fail with EPERM in user namespaces. Since 4.18 mknod() will succeed
1120 but device nodes generated that way cannot be opened, and attempts to
1121 open them result in EPERM. This breaks the "graceful fallback" logic
1122 in systemd's PrivateDevices= sand-boxing option. This option is
1123 implemented defensively, so that when systemd detects it runs in a
1124 restricted environment (such as a user namespace, or an environment
1125 where mknod() is blocked through seccomp or absence of CAP_SYS_MKNOD)
1126 where device nodes cannot be created the effect of PrivateDevices= is
1127 bypassed (following the logic that 2nd-level sand-boxing is not
1128 essential if the system systemd runs in is itself already sand-boxed
1129 as a whole). This logic breaks with 4.18 in container managers where
1130 user namespacing is used: suddenly PrivateDevices= succeeds setting
1131 up a private /dev/ file system containing devices nodes — but when
1132 these are opened they don't work.
1133
d238709c 1134 At this point it is recommended that container managers utilizing
98a7b55a
LP
1135 user namespaces that intend to run systemd in the payload explicitly
1136 block mknod() with seccomp or similar, so that the graceful fallback
1137 logic works again.
1138
1139 We are very sorry for the breakage and the requirement to change
1140 container configurations for newer kernels. It's purely caused by an
1141 incompatible kernel change. The relevant kernel developers have been
1142 notified about this userspace breakage quickly, but they chose to
1143 ignore it.
1144
455027c9
ZJS
1145 * PermissionsStartOnly= setting is deprecated (but is still supported
1146 for backwards compatibility). The same functionality is provided by
1147 the more flexible "+", "!", and "!!" prefixes to ExecStart= and other
1148 commands.
1149
b4ff3dbb
ZJS
1150 * $DBUS_SESSION_BUS_ADDRESS environment variable is not set by
1151 pam_systemd anymore.
1152
08e1fe42
ZJS
1153 * The naming scheme for network devices was changed to always rename
1154 devices, even if they were already renamed by userspace. The "kernel"
1155 policy was changed to only apply as a fallback, if no other naming
1156 policy took effect.
1157
bd36ef0a
YW
1158 * The requirements to build systemd is bumped to meson-0.46 and
1159 python-3.5.
1160
6b1ab752
LP
1161 Contributions from: afg, Alan Jenkins, Aleksei Timofeyev, Alexander
1162 Filippov, Alexander Kurtz, Alexey Bogdanenko, Andreas Henriksson,
1163 Andrew Jorgensen, Anita Zhang, apnix-uk, Arkan49, Arseny Maslennikov,
1164 asavah, Asbjørn Apeland, aszlig, Bastien Nocera, Ben Boeckel, Benedikt
c37e2358
LP
1165 Morbach, Benjamin Berg, Bruce Zhang, Carlo Caione, Cedric Viou, Chen
1166 Qi, Chris Chiu, Chris Down, Chris Morin, Christian Rebischke, Claudius
1167 Ellsel, Colin Guthrie, dana, Daniel, Daniele Medri, Daniel Kahn
1168 Gillmor, Daniel Rusek, Daniel van Vugt, Dariusz Gadomski, Dave Reisner,
1169 David Anderson, Davide Cavalca, David Leeds, David Malcolm, David
1742aae2
ZJS
1170 Strauss, David Tardon, Dimitri John Ledkov, Dmitry Torokhov, dj-kaktus,
1171 Dongsu Park, Elias Probst, Emil Soleyman, Erik Kooistra, Ervin Peters,
1172 Evgeni Golov, Evgeny Vereshchagin, Fabrice Fontaine, Faheel Ahmad,
1173 Faizal Luthfi, Felix Yan, Filipe Brandenburger, Franck Bui, Frank
1174 Schaefer, Frantisek Sumsal, Gautier Husson, Gianluca Boiano, Giuseppe
1175 Scrivano, glitsj16, Hans de Goede, Harald Hoyer, Harry Mallon, Harshit
1176 Jain, Helmut Grohne, Henry Tung, Hui Yiqun, imayoda, Insun Pyo, Iwan
1177 Timmer, Jan Janssen, Jan Pokorný, Jan Synacek, Jason A. Donenfeld,
1178 javitoom, Jérémy Nouhaud, Jeremy Su, Jiuyang Liu, João Paulo Rechi
1179 Vita, Joe Hershberger, Joe Rayhawk, Joerg Behrmann, Joerg Steffens,
1180 Jonas Dorel, Jon Ringle, Josh Soref, Julian Andres Klode, Jun Bo Bi,
1181 Jürg Billeter, Keith Busch, Khem Raj, Kirill Marinushkin, Larry
1182 Bernstone, Lennart Poettering, Lion Yang, Li Song, Lorenz
1183 Hübschle-Schneider, Lubomir Rintel, Lucas Werkmeister, Ludwin Janvier,
1184 Lukáš Nykrýn, Luke Shumaker, mal, Marc-Antoine Perennou, Marcin
1185 Skarbek, Marco Trevisan (Treviño), Marian Cepok, Mario Hros, Marko
1186 Myllynen, Markus Grimm, Martin Pitt, Martin Sobotka, Martin Wilck,
1187 Mathieu Trudel-Lapierre, Matthew Leeds, Michael Biebl, Michael Olbrich,
1188 Michael 'pbone' Pobega, Michael Scherer, Michal Koutný, Michal
1189 Sekletar, Michal Soltys, Mike Gilbert, Mike Palmer, Muhammet Kara, Neal
1190 Gompa, Neil Brown, Network Silence, Niklas Tibbling, Nikolas Nyby,
1191 Nogisaka Sadata, Oliver Smith, Patrik Flykt, Pavel Hrdina, Paweł
1192 Szewczyk, Peter Hutterer, Piotr Drąg, Ray Strode, Reinhold Mueller,
1193 Renaud Métrich, Roman Gushchin, Ronny Chevalier, Rubén Suárez Alvarez,
1194 Ruixin Bao, RussianNeuroMancer, Ryutaroh Matsumoto, Saleem Rashid, Sam
1195 Morris, Samuel Morris, Sandy Carter, scootergrisen, Sébastien Bacher,
1196 Sergey Ptashnick, Shawn Landden, Shengyao Xue, Shih-Yuan Lee
1197 (FourDollars), Silvio Knizek, Sjoerd Simons, Stasiek Michalski, Stephen
1198 Gallagher, Steven Allen, Steve Ramage, Susant Sahani, Sven Joachim,
1199 Sylvain Plantefève, Tanu Kaskinen, Tejun Heo, Thiago Macieira, Thomas
1200 Blume, Thomas Haller, Thomas H. P. Andersen, Tim Ruffing, TJ, Tobias
1201 Jungel, Todd Walton, Tommi Rantala, Tomsod M, Tony Novak, Tore
1202 Anderson, Trevonn, Victor Laskurain, Victor Tapia, Violet Halo, Vojtech
1203 Trefny, welaq, William A. Kennington III, William Douglas, Wyatt Ward,
1204 Xiang Fan, Xi Ruoyao, Xuanwo, Yann E. Morin, YmrDtnJu, Yu Watanabe,
1205 Zbigniew Jędrzejewski-Szmek, Zhang Xianwei, Zsolt Dollenstein
1206
1207 — Warsaw, 2018-12-21
6b1ab752 1208
e8498f82 1209CHANGES WITH 239:
019cb3ab
SH
1210
1211 * NETWORK INTERFACE DEVICE NAMING CHANGES: systemd-udevd's "net_id"
d69f5282
ZJS
1212 builtin will name network interfaces differently than in previous
1213 versions for virtual network interfaces created with SR-IOV and NPAR
1214 and for devices where the PCI network controller device does not have
1215 a slot number associated.
1216
1217 SR-IOV virtual devices are now named based on the name of the parent
1218 interface, with a suffix of "v<N>", where <N> is the virtual device
1219 number. Previously those virtual devices were named as if completely
1220 independent.
1221
1222 The ninth and later NPAR virtual devices will be named following the
1223 scheme used for the first eight NPAR partitions. Previously those
1224 devices were not renamed and the kernel default (eth<n>) was used.
1225
1226 "net_id" will also generate names for PCI devices where the PCI
1227 network controller device does not have an associated slot number
1228 itself, but one of its parents does. Previously those devices were
1229 not renamed and the kernel default (eth<n>) was used.
019cb3ab 1230
6e2d744b
YW
1231 * AF_INET and AF_INET6 are dropped from RestrictAddressFamilies= in
1232 systemd-logind.service. Since v235, IPAddressDeny=any has been set to
fe903cf4
LP
1233 the unit. So, it is expected that the default behavior of
1234 systemd-logind is not changed. However, if distribution packagers or
1235 administrators disabled or modified IPAddressDeny= setting by a
1236 drop-in config file, then it may be necessary to update the file to
1237 re-enable AF_INET and AF_INET6 to support network user name services,
1238 e.g. NIS.
1239
1240 * When the RestrictNamespaces= unit property is specified multiple
1241 times, then the specified types are merged now. Previously, only the
1242 last assignment was used. So, if distribution packagers or
1243 administrators modified the setting by a drop-in config file, then it
1244 may be necessary to update the file.
e0eee477 1245
1fc83d09
LP
1246 * When OnFailure= is used in combination with Restart= on a service
1247 unit, then the specified units will no longer be triggered on
1248 failures that result in restarting. Previously, the specified units
1249 would be activated each time the unit failed, even when the unit was
1250 going to be restarted automatically. This behaviour contradicted the
1251 documentation. With this release the code is adjusted to match the
1252 documentation.
1253
41a4c3ec
LP
1254 * systemd-tmpfiles will now print a notice whenever it encounters
1255 tmpfiles.d/ lines referencing the /var/run/ directory. It will
1256 recommend reworking them to use the /run/ directory instead (for
5cadf58e
ZJS
1257 which /var/run/ is simply a symlinked compatibility alias). This way
1258 systemd-tmpfiles can properly detect line conflicts and merge lines
1259 referencing the same file by two paths, without having to access
1260 them.
41a4c3ec 1261
ce55bd5e
ZJS
1262 * systemctl disable/unmask/preset/preset-all cannot be used with
1263 --runtime. Previously this was allowed, but resulted in unintuitive
fe903cf4
LP
1264 behaviour that wasn't useful. systemctl disable/unmask will now undo
1265 both runtime and persistent enablement/masking, i.e. it will remove
1266 any relevant symlinks both in /run and /etc.
ce55bd5e 1267
e01d9e21
LP
1268 * Note that all long-running system services shipped with systemd will
1269 now default to a system call whitelist (rather than a blacklist, as
1270 before). In particular, systemd-udevd will now enforce one too. For
1271 most cases this should be safe, however downstream distributions
1272 which disabled sandboxing of systemd-udevd (specifically the
1273 MountFlags= setting), might want to disable this security feature
1274 too, as the default whitelisting will prohibit all mount, swap,
1275 reboot and clock changing operations from udev rules.
1276
5cadf58e
ZJS
1277 * sd-boot acquired new loader configuration settings to optionally turn
1278 off Windows and MacOS boot partition discovery as well as
1279 reboot-into-firmware menu items. It is also able to pick a better
1280 screen resolution for HiDPI systems, and now provides loader
41a4c3ec
LP
1281 configuration settings to change the resolution explicitly.
1282
c9299be2
IT
1283 * systemd-resolved now supports DNS-over-TLS. It's still
1284 turned off by default, use DNSOverTLS=opportunistic to turn it on in
c086ce8c
LP
1285 resolved.conf. We intend to make this the default as soon as couple
1286 of additional techniques for optimizing the initial latency caused by
1287 establishing a TLS/TCP connection are implemented.
1288
73c718a9
YW
1289 * systemd-resolved.service and systemd-networkd.service now set
1290 DynamicUser=yes. The users systemd-resolve and systemd-network are
abc291aa
LP
1291 not created by systemd-sysusers anymore.
1292
1293 NOTE: This has a chance of breaking nss-ldap and similar NSS modules
5238e957 1294 that embed a network facing module into any process using getpwuid()
abc291aa
LP
1295 or related call: the dynamic allocation of the user ID for
1296 systemd-resolved.service means the service manager has to check NSS
1297 if the user name is already taken when forking off the service. Since
1298 the user in the common case won't be defined in /etc/passwd the
1299 lookup is likely to trigger nss-ldap which in turn might use NSS to
1300 ask systemd-resolved for hostname lookups. This will hence result in
1301 a deadlock: a user name lookup in order to start
1302 systemd-resolved.service will result in a host name lookup for which
1303 systemd-resolved.service needs to be started already. There are
1304 multiple ways to work around this problem: pre-allocate the
1305 "systemd-resolve" user on such systems, so that nss-ldap won't be
1306 triggered; or use a different NSS package that doesn't do networking
1307 in-process but provides a local asynchronous name cache; or configure
1308 the NSS package to avoid lookups for UIDs in the range `pkg-config
1309 systemd --variable=dynamicuidmin` … `pkg-config systemd
1310 --variable=dynamicuidmax`, so that it does not consider itself
1311 authoritative for the same UID range systemd allocates dynamic users
1312 from.
73c718a9 1313
41a4c3ec
LP
1314 * The systemd-resolve tool has been renamed to resolvectl (it also
1315 remains available under the old name, for compatibility), and its
1316 interface is now verb-based, similar in style to the other <xyz>ctl
5cadf58e
ZJS
1317 tools, such as systemctl or loginctl.
1318
75da262a
LP
1319 * The resolvectl/systemd-resolve tool also provides 'resolvconf'
1320 compatibility. It may be symlinked under the 'resolvconf' name, in
5cadf58e
ZJS
1321 which case it will take arguments and input compatible with the
1322 Debian and FreeBSD resolvconf tool.
41a4c3ec
LP
1323
1324 * Support for suspend-then-hibernate has been added, i.e. a sleep mode
3f9a0a52 1325 where the system initially suspends, and after a timeout resumes and
41a4c3ec
LP
1326 hibernates again.
1327
1328 * networkd's ClientIdentifier= now accepts a new option "duid-only". If
1329 set the client will only send a DUID as client identifier.
1330
1331 * The nss-systemd glibc NSS module will now enumerate dynamic users and
1332 groups in effect. Previously, it could resolve UIDs/GIDs to user
1333 names/groups and vice versa, but did not support enumeration.
1334
1335 * journald's Compress= configuration setting now optionally accepts a
1336 byte threshold value. All journal objects larger than this threshold
1337 will be compressed, smaller ones will not. Previously this threshold
1338 was not configurable and set to 512.
1339
5cadf58e
ZJS
1340 * A new system.conf setting NoNewPrivileges= is now available which may
1341 be used to turn off acquisition of new privileges system-wide
1342 (i.e. set Linux' PR_SET_NO_NEW_PRIVS for PID 1 itself, and thus also
1343 for all its children). Note that turning this option on means setuid
1344 binaries and file system capabilities lose their special powers.
1345 While turning on this option is a big step towards a more secure
1346 system, doing so is likely to break numerous pre-existing UNIX tools,
1347 in particular su and sudo.
41a4c3ec
LP
1348
1349 * A new service systemd-time-sync-wait.service has been added. If
1350 enabled it will delay the time-sync.target unit at boot until time
bc99dac5 1351 synchronization has been received from the network. This
41a4c3ec
LP
1352 functionality is useful on systems lacking a local RTC or where it is
1353 acceptable that the boot process shall be delayed by external network
1354 services.
1355
1356 * When hibernating, systemd will now inform the kernel of the image
1357 write offset, on kernels new enough to support this. This means swap
1358 files should work for hibernation now.
1359
5cadf58e
ZJS
1360 * When loading unit files, systemd will now look for drop-in unit files
1361 extensions in additional places. Previously, for a unit file name
41a4c3ec
LP
1362 "foo-bar-baz.service" it would look for dropin files in
1363 "foo-bar-baz.service.d/*.conf". Now, it will also look in
1364 "foo-bar-.service.d/*.conf" and "foo-.service.d/", i.e. at the
1365 service name truncated after all inner dashes. This scheme allows
1366 writing drop-ins easily that apply to a whole set of unit files at
1367 once. It's particularly useful for mount and slice units (as their
5cadf58e
ZJS
1368 naming is prefix based), but is also useful for service and other
1369 units, for packages that install multiple unit files at once,
41a4c3ec 1370 following a strict naming regime of beginning the unit file name with
5cadf58e
ZJS
1371 the package's name. Two new specifiers are now supported in unit
1372 files to match this: %j and %J are replaced by the part of the unit
1373 name following the last dash.
1374
1375 * Unit files and other configuration files that support specifier
88099359 1376 expansion now understand another three new specifiers: %T and %V will
5cadf58e 1377 resolve to /tmp and /var/tmp respectively, or whatever temporary
88099359
ZJS
1378 directory has been set for the calling user. %E will expand to either
1379 /etc (for system units) or $XDG_CONFIG_HOME (for user units).
41a4c3ec
LP
1380
1381 * The ExecStart= lines of unit files are no longer required to
1382 reference absolute paths. If non-absolute paths are specified the
1383 specified binary name is searched within the service manager's
5cadf58e
ZJS
1384 built-in $PATH, which may be queried with 'systemd-path
1385 search-binaries-default'. It's generally recommended to continue to
1386 use absolute paths for all binaries specified in unit files.
41a4c3ec 1387
c7f93e28
ZJS
1388 * Units gained a new load state "bad-setting", which is used when a
1389 unit file was loaded, but contained fatal errors which prevent it
ba1dc1a1
LP
1390 from being started (for example, a service unit has been defined
1391 lacking both ExecStart= and ExecStop= lines).
c7f93e28 1392
41a4c3ec
LP
1393 * coredumpctl's "gdb" verb has been renamed to "debug", in order to
1394 support alternative debuggers, for example lldb. The old name
1395 continues to be available however, for compatibility reasons. Use the
5cadf58e
ZJS
1396 new --debugger= switch or the $SYSTEMD_DEBUGGER environment variable
1397 to pick an alternative debugger instead of the default gdb.
41a4c3ec
LP
1398
1399 * systemctl and the other tools will now output escape sequences that
1400 generate proper clickable hyperlinks in various terminal emulators
1401 where useful (for example, in the "systemctl status" output you can
1402 now click on the unit file name to quickly open it in the
1403 editor/viewer of your choice). Note that not all terminal emulators
1404 support this functionality yet, but many do. Unfortunately, the
1405 "less" pager doesn't support this yet, hence this functionality is
1406 currently automatically turned off when a pager is started (which
1407 happens quite often due to auto-paging). We hope to remove this
5cadf58e
ZJS
1408 limitation as soon as "less" learns these escape sequences. This new
1409 behaviour may also be turned off explicitly with the $SYSTEMD_URLIFY
1410 environment variable. For details on these escape sequences see:
41a4c3ec
LP
1411 https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
1412
1413 * networkd's .network files now support a new IPv6MTUBytes= option for
1414 setting the MTU used by IPv6 explicitly as well as a new MTUBytes=
1415 option in the [Route] section to configure the MTU to use for
1416 specific routes. It also gained support for configuration of the DHCP
1417 "UserClass" option through the new UserClass= setting. It gained
1418 three new options in the new [CAN] section for configuring CAN
1419 networks. The MULTICAST and ALLMULTI interface flags may now be
1420 controlled explicitly with the new Multicast= and AllMulticast=
1421 settings.
1422
1423 * networkd will now automatically make use of the kernel's route
1424 expiration feature, if it is available.
1425
5cadf58e
ZJS
1426 * udevd's .link files now support setting the number of receive and
1427 transmit channels, using the RxChannels=, TxChannels=,
1428 OtherChannels=, CombinedChannels= settings.
1429
1430 * Support for UDPSegmentationOffload= has been removed, given its
1431 limited support in hardware, and waning software support.
41a4c3ec
LP
1432
1433 * networkd's .netdev files now support creating "netdevsim" interfaces.
1434
1435 * PID 1 learnt a new bus call GetUnitByControlGroup() which may be used
1436 to query the unit belonging to a specific kernel control group.
1437
5cadf58e 1438 * systemd-analyze gained a new verb "cat-config", which may be used to
41a4c3ec
LP
1439 dump the contents of any configuration file, with all its matching
1440 drop-in files added in, and honouring the usual search and masking
1441 logic applied to systemd configuration files. For example use
1442 "systemd-analyze cat-config systemd/system.conf" to get the complete
1443 system configuration file of systemd how it would be loaded by PID 1
5cadf58e
ZJS
1444 itself. Similar to this, various tools such as systemd-tmpfiles or
1445 systemd-sysusers, gained a new option "--cat-config", which does the
41a4c3ec
LP
1446 corresponding operation for their own configuration settings. For
1447 example, "systemd-tmpfiles --cat-config" will now output the full
1448 list of tmpfiles.d/ lines in place.
1449
704ae536
YW
1450 * timedatectl gained three new verbs: "show" shows bus properties of
1451 systemd-timedated, "timesync-status" shows the current NTP
1452 synchronization state of systemd-timesyncd, and "show-timesync"
1453 shows bus properties of systemd-timesyncd.
41a4c3ec
LP
1454
1455 * systemd-timesyncd gained a bus interface on which it exposes details
1456 about its state.
1457
73c718a9
YW
1458 * A new environment variable $SYSTEMD_TIMEDATED_NTP_SERVICES is now
1459 understood by systemd-timedated. It takes a colon-separated list of
1460 unit names of NTP client services. The list is used by
1461 "timedatectl set-ntp".
1462
41a4c3ec
LP
1463 * systemd-nspawn gained a new --rlimit= switch for setting initial
1464 resource limits for the container payload. There's a new switch
5cadf58e 1465 --hostname= to explicitly override the container's hostname. A new
41a4c3ec
LP
1466 --no-new-privileges= switch may be used to control the
1467 PR_SET_NO_NEW_PRIVS flag for the container payload. A new
1468 --oom-score-adjust= switch controls the OOM scoring adjustment value
1469 for the payload. The new --cpu-affinity= switch controls the CPU
1470 affinity of the container payload. The new --resolv-conf= switch
1471 allows more detailed control of /etc/resolv.conf handling of the
5cadf58e 1472 container. Similarly, the new --timezone= switch allows more detailed
41a4c3ec
LP
1473 control of /etc/localtime handling of the container.
1474
5cadf58e 1475 * systemd-detect-virt gained a new --list switch, which will print a
41a4c3ec
LP
1476 list of all currently known VM and container environments.
1477
5cadf58e 1478 * Support for "Portable Services" has been added, see
41a4c3ec 1479 doc/PORTABLE_SERVICES.md for details. Currently, the support is still
5cadf58e
ZJS
1480 experimental, but this is expected to change soon. Reflecting this
1481 experimental state, the "portablectl" binary is not installed into
41a4c3ec
LP
1482 /usr/bin yet. The binary has to be called with the full path
1483 /usr/lib/systemd/portablectl instead.
1484
1485 * journalctl's and systemctl's -o switch now knows a new log output
1486 mode "with-unit". The output it generates is very similar to the
1487 regular "short" mode, but displays the unit name instead of the
1488 syslog tag for each log line. Also, the date is shown with timezone
1489 information. This mode is probably more useful than the classic
1490 "short" output mode for most purposes, except where pixel-perfect
1491 compatibility with classic /var/log/messages formatting is required.
1492
1493 * A new --dump-bus-properties switch has been added to the systemd
1494 binary, which may be used to dump all supported D-Bus properties.
c7f93e28
ZJS
1495 (Options which are still supported, but are deprecated, are *not*
1496 shown.)
41a4c3ec 1497
41a4c3ec
LP
1498 * sd-bus gained a set of new calls:
1499 sd_bus_slot_set_floating()/sd_bus_slot_get_floating() may be used to
1500 enable/disable the "floating" state of a bus slot object,
1501 i.e. whether the slot object pins the bus it is allocated for into
1502 memory or if the bus slot object gets disconnected when the bus goes
1503 away. sd_bus_open_with_description(),
1504 sd_bus_open_user_with_description(),
1505 sd_bus_open_system_with_description() may be used to allocate bus
1506 objects and set their description string already during allocation.
1507
1508 * sd-event gained support for watching inotify events from the event
1509 loop, in an efficient way, sharing inotify handles between multiple
1510 users. For this a new function sd_event_add_inotify() has been added.
1511
1512 * sd-event and sd-bus gained support for calling special user-supplied
1513 destructor functions for userdata pointers associated with
c7f93e28
ZJS
1514 sd_event_source, sd_bus_slot, and sd_bus_track objects. For this new
1515 functions sd_bus_slot_set_destroy_callback,
1516 sd_bus_slot_get_destroy_callback, sd_bus_track_set_destroy_callback,
1517 sd_bus_track_get_destroy_callback,
1518 sd_event_source_set_destroy_callback,
1519 sd_event_source_get_destroy_callback have been added.
41a4c3ec
LP
1520
1521 * The "net.ipv4.tcp_ecn" sysctl will now be turned on by default.
1522
1523 * PID 1 will now automatically reschedule .timer units whenever the
5cadf58e 1524 local timezone changes. (They previously got rescheduled
41a4c3ec
LP
1525 automatically when the system clock changed.)
1526
1527 * New documentation has been added to document cgroups delegation,
1528 portable services and the various code quality tools we have set up:
1529
a8a27374
SK
1530 https://github.com/systemd/systemd/blob/master/docs/CGROUP_DELEGATION.md
1531 https://github.com/systemd/systemd/blob/master/docs/PORTABLE_SERVICES.md
1532 https://github.com/systemd/systemd/blob/master/docs/CODE_QUALITY.md
41a4c3ec 1533
d6906108
LP
1534 * The Boot Loader Specification has been added to the source tree.
1535
a8a27374 1536 https://github.com/systemd/systemd/blob/master/docs/BOOT_LOADER_SPECIFICATION.md
d6906108
LP
1537
1538 While moving it into our source tree we have updated it and further
1539 changes are now accepted through the usual github PR workflow.
1540
41a4c3ec
LP
1541 * pam_systemd will now look for PAM userdata fields systemd.memory_max,
1542 systemd.tasks_max, systemd.cpu_weight, systemd.io_weight set by
1543 earlier PAM modules. The data in these fields is used to initialize
1544 the session scope's resource properties. Thus external PAM modules
1545 may now configure per-session limits, for example sourced from
1546 external user databases.
1547
1548 * socket units with Accept=yes will now maintain a "refused" counter in
1549 addition to the existing "accepted" counter, counting connections
1550 refused due to the enforced limits.
1551
1552 * The "systemd-path search-binaries-default" command may now be use to
1553 query the default, built-in $PATH PID 1 will pass to the services it
1554 manages.
1555
c49a7cbd
LP
1556 * A new unit file setting PrivateMounts= has been added. It's a boolean
1557 option. If enabled the unit's processes are invoked in their own file
1558 system namespace. Note that this behaviour is also implied if any
1559 other file system namespacing options (such as PrivateTmp=,
1560 PrivateDevices=, ProtectSystem=, …) are used. This option is hence
1561 primarily useful for services that do not use any of the other file
1562 system namespacing options. One such service is systemd-udevd.service
5238e957 1563 where this is now used by default.
c49a7cbd 1564
57ab451e
ZJS
1565 * ConditionSecurity= gained a new value "uefi-secureboot" that is true
1566 when the system is booted in UEFI "secure mode".
1567
c7668c1c
LP
1568 * A new unit "system-update-pre.target" is added, which defines an
1569 optional synchronization point for offline system updates, as
1570 implemented by the pre-existing "system-update.target" unit. It
1571 allows ordering services before the service that executes the actual
1572 update process in a generic way.
1573
f26ad321
ZJS
1574 * Systemd now emits warnings whenever .include syntax is used.
1575
41a4c3ec 1576 Contributions from: Adam Duskett, Alan Jenkins, Alessandro Casale,
ec53d48c 1577 Alexander Kurtz, Alex Gartrell, Anssi Hannula, Arnaud Rebillout, Brian
bb6f071f
LP
1578 J. Murrell, Bruno Vernay, Chris Lamb, Chris Lesiak, Christian Brauner,
1579 Christian Hesse, Christian Rebischke, Colin Guthrie, Daniel Dao, Daniel
1580 Lin, Danylo Korostil, Davide Cavalca, David Tardon, Dimitri John
1581 Ledkov, Dmitriy Geels, Douglas Christman, Elia Geretto, emelenas, Emil
1582 Velikov, Evgeny Vereshchagin, Felipe Sateler, Feng Sun, Filipe
1583 Brandenburger, Franck Bui, futpib, Giuseppe Scrivano, Guillem Jover,
1584 guixxx, Hannes Reinecke, Hans de Goede, Harald Hoyer, Henrique Dante de
1585 Almeida, Hiram van Paassen, Ian Miell, Igor Gnatenko, Ivan Shapovalov,
1586 Iwan Timmer, James Cowgill, Jan Janssen, Jan Synacek, Jared Kazimir,
1587 Jérémy Rosen, João Paulo Rechi Vita, Joost Heitbrink, Jui-Chi Ricky
1588 Liang, Jürg Billeter, Kai-Heng Feng, Karol Augustin, Kay Sievers,
1589 Krzysztof Nowicki, Lauri Tirkkonen, Lennart Poettering, Leonard König,
1590 Long Li, Luca Boccassi, Lucas Werkmeister, Marcel Hoppe, Marc
1591 Kleine-Budde, Mario Limonciello, Martin Jansa, Martin Wilck, Mathieu
1592 Malaterre, Matteo F. Vescovi, Matthew McGinn, Matthias-Christian Ott,
1593 Michael Biebl, Michael Olbrich, Michael Prokop, Michal Koutný, Michal
1594 Sekletar, Mike Gilbert, Mikhail Kasimov, Milan Broz, Milan Pässler,
1595 Mladen Pejaković, Muhammet Kara, Nicolas Boichat, Omer Katz, Paride
1596 Legovini, Paul Menzel, Paul Milliken, Pavel Hrdina, Peter A. Bigot,
1597 Peter D'Hoye, Peter Hutterer, Peter Jones, Philip Sequeira, Philip
61d0025d 1598 Withnall, Piotr Drąg, Radostin Stoyanov, Ricardo Salveti de Araujo,
bb6f071f
LP
1599 Ronny Chevalier, Rosen Penev, Rubén Suárez Alvarez, Ryan Gonzalez,
1600 Salvo Tomaselli, Sebastian Reichel, Sergey Ptashnick, Sergio Lindo
1601 Mansilla, Stefan Schweter, Stephen Hemminger, Stuart Hayes, Susant
1602 Sahani, Sylvain Plantefève, Thomas H. P. Andersen, Tobias Jungel,
1603 Tomasz Torcz, Vito Caputo, Will Dietz, Will Thompson, Wim van Mourik,
1604 Yu Watanabe, Zbigniew Jędrzejewski-Szmek
41a4c3ec 1605
e8498f82 1606 — Berlin, 2018-06-22
41a4c3ec 1607
c657bff1 1608CHANGES WITH 238:
e0c46a73
LP
1609
1610 * The MemoryAccounting= unit property now defaults to on. After
1611 discussions with the upstream control group maintainers we learnt
1612 that the negative impact of cgroup memory accounting on current
1613 kernels is finally relatively minimal, so that it should be safe to
444d5863
ZJS
1614 enable this by default without affecting system performance. Besides
1615 memory accounting only task accounting is turned on by default, all
1616 other forms of resource accounting (CPU, IO, IP) remain off for now,
1617 because it's not clear yet that their impact is small enough to move
1618 from opt-in to opt-out. We recommend downstreams to leave memory
07a35e84 1619 accounting on by default if kernel 4.14 or higher is primarily
444d5863
ZJS
1620 used. On very resource constrained systems or when support for old
1621 kernels is a necessity, -Dmemory-accounting-default=false can be used
1622 to revert this change.
e0c46a73 1623
313c32c3
ZJS
1624 * rpm scriptlets to update the udev hwdb and rules (%udev_hwdb_update,
1625 %udev_rules_update) and the journal catalog (%journal_catalog_update)
1626 from the upgrade scriptlets of individual packages now do nothing.
1627 Transfiletriggers have been added which will perform those updates
1628 once at the end of the transaction.
1629
1630 Similar transfiletriggers have been added to execute any sysctl.d
1631 and binfmt.d rules. Thus, it should be unnecessary to provide any
1632 scriptlets to execute this configuration from package installation
1633 scripts.
1634
1635 * systemd-sysusers gained a mode where the configuration to execute is
1636 specified on the command line, but this configuration is not executed
1637 directly, but instead it is merged with the configuration on disk,
1638 and the result is executed. This is useful for package installation
1639 scripts which want to create the user before installing any files on
1640 disk (in case some of those files are owned by that user), while
1641 still allowing local admin overrides.
1642
07a35e84 1643 This functionality is exposed to rpm scriptlets through a new
313c32c3
ZJS
1644 %sysusers_create_package macro. Old %sysusers_create and
1645 %sysusers_create_inline macros are deprecated.
1646
1647 A transfiletrigger for sysusers.d configuration is now installed,
07a35e84 1648 which means that it should be unnecessary to call systemd-sysusers from
313c32c3
ZJS
1649 package installation scripts, unless the package installs any files
1650 owned by those newly-created users, in which case
1651 %sysusers_create_package should be used.
1652
1653 * Analogous change has been done for systemd-tmpfiles: it gained a mode
1654 where the command-line configuration is merged with the configuration
1655 on disk. This is exposed as the new %tmpfiles_create_package macro,
1656 and %tmpfiles_create is deprecated. A transfiletrigger is installed
1657 for tmpfiles.d, hence it should be unnecessary to call systemd-tmpfiles
1658 from package installation scripts.
1659
1660 * sysusers.d configuration for a user may now also specify the group
1661 number, in addition to the user number ("u username 123:456"), or
1662 without the user number ("u username -:456").
1663
1664 * Configution items for systemd-sysusers can now be specified as
1665 positional arguments when the new --inline switch is used.
1666
1667 * The login shell of users created through sysusers.d may now be
1668 specified (previously, it was always /bin/sh for root and
1669 /sbin/nologin for other users).
1670
1671 * systemd-analyze gained a new --global switch to look at global user
1672 configuration. It also gained a unit-paths verb to list the unit load
1673 paths that are compiled into systemd (which can be used with
1674 --systemd, --user, or --global).
1675
1676 * udevadm trigger gained a new --settle/-w option to wait for any
1677 triggered events to finish (but just those, and not any other events
1678 which are triggered meanwhile).
1679
1680 * The action that systemd-logind takes when the lid is closed and the
1681 machine is connected to external power can now be configured using
1682 HandleLidSwitchExternalPower= in logind.conf. Previously, this action
1683 was determined by HandleLidSwitch=, and, for backwards compatibility,
1684 is still is, if HandleLidSwitchExternalPower= is not explicitly set.
1685
1686 * journalctl will periodically call sd_journal_process() to make it
1687 resilient against inotify queue overruns when journal files are
1688 rotated very quickly.
1689
1690 * Two new functions in libsystemd — sd_bus_get_n_queued_read and
1691 sd_bus_get_n_queued_write — may be used to check the number of
1692 pending bus messages.
1693
1694 * systemd gained a new
1695 org.freedesktop.systemd1.Manager.AttachProcessesToUnit dbus call
1696 which can be used to migrate foreign processes to scope and service
1697 units. The primary user for this new API is systemd itself: the
1698 systemd --user instance uses this call of the systemd --system
1699 instance to migrate processes if it itself gets the request to
1700 migrate processes and the kernel refuses this due to access
1701 restrictions. Thanks to this "systemd-run --scope --user …" works
4e1dfa45 1702 again in pure cgroup v2 environments when invoked from the user
313c32c3
ZJS
1703 session scope.
1704
1705 * A new TemporaryFileSystem= setting can be used to mask out part of
1706 the real file system tree with tmpfs mounts. This may be combined
1707 with BindPaths= and BindReadOnlyPaths= to hide files or directories
1708 not relevant to the unit, while still allowing some paths lower in
1709 the tree to be accessed.
1710
1711 ProtectHome=tmpfs may now be used to hide user home and runtime
1712 directories from units, in a way that is mostly equivalent to
1713 "TemporaryFileSystem=/home /run/user /root".
1714
1715 * Non-service units are now started with KeyringMode=shared by default.
1716 This means that mount and swapon and other mount tools have access
1717 to keys in the main keyring.
1718
1719 * /sys/fs/bpf is now mounted automatically.
1720
1721 * QNX virtualization is now detected by systemd-detect-virt and may
1722 be used in ConditionVirtualization=.
1723
1724 * IPAccounting= may now be enabled also for slice units.
1725
1726 * A new -Dsplit-bin= build configuration switch may be used to specify
1727 whether bin and sbin directories are merged, or if they should be
1728 included separately in $PATH and various listings of executable
1729 directories. The build configuration scripts will try to autodetect
1730 the proper values of -Dsplit-usr= and -Dsplit-bin= based on build
1731 system, but distributions are encouraged to configure this
1732 explicitly.
1733
1734 * A new -Dok-color= build configuration switch may be used to change
1735 the colour of "OK" status messages.
1736
1737 * UPGRADE ISSUE: serialization of units using JoinsNamespaceOf= with
1738 PrivateNetwork=yes was buggy in previous versions of systemd. This
1739 means that after the upgrade and daemon-reexec, any such units must
1740 be restarted.
1741
1742 * INCOMPATIBILITY: as announced in the NEWS for 237, systemd-tmpfiles
1743 will not exclude read-only files owned by root from cleanup.
1744
c657bff1
ZJS
1745 Contributions from: Alan Jenkins, Alexander F Rødseth, Alexis Jeandet,
1746 Andika Triwidada, Andrei Gherzan, Ansgar Burchardt, antizealot1337,
1747 Batuhan Osman Taşkaya, Beniamino Galvani, Bill Yodlowsky, Caio Marcelo
1748 de Oliveira Filho, CuBiC, Daniele Medri, Daniel Mouritzen, Daniel
1749 Rusek, Davide Cavalca, Dimitri John Ledkov, Douglas Christman, Evgeny
1750 Vereshchagin, Faalagorn, Filipe Brandenburger, Franck Bui, futpib,
1751 Giacomo Longo, Gunnar Hjalmarsson, Hans de Goede, Hermann Gausterer,
1752 Iago López Galeiras, Jakub Filak, Jan Synacek, Jason A. Donenfeld,
1753 Javier Martinez Canillas, Jérémy Rosen, Lennart Poettering, Lucas
1754 Werkmeister, Mao Huang, Marco Gulino, Michael Biebl, Michael Vogt,
1755 MilhouseVH, Neal Gompa (ニール・ゴンパ), Oleander Reis, Olof Mogren,
1756 Patrick Uiterwijk, Peter Hutterer, Peter Portante, Piotr Drąg, Robert
1757 Antoni Buj Gelonch, Sergey Ptashnick, Shawn Landden, Shuang Liu, Simon
1758 Fowler, SjonHortensius, snorreflorre, Susant Sahani, Sylvain
1759 Plantefève, Thomas Blume, Thomas Haller, Vito Caputo, Yu Watanabe,
1760 Zbigniew Jędrzejewski-Szmek, Марко М. Костић (Marko M. Kostić)
1761
1762 — Warsaw, 2018-03-05
1763
82c8e3e6 1764CHANGES WITH 237:
2b0c59ba
MP
1765
1766 * Some keyboards come with a zoom see-saw or rocker which until now got
1767 mapped to the Linux "zoomin/out" keys in hwdb. However, these
1768 keycodes are not recognized by any major desktop. They now produce
1769 Up/Down key events so that they can be used for scrolling.
1770
49e87292
LP
1771 * INCOMPATIBILITY: systemd-tmpfiles' "f" lines changed behaviour
1772 slightly: previously, if an argument was specified for lines of this
1773 type (i.e. the right-most column was set) this string was appended to
1774 existing files each time systemd-tmpfiles was run. This behaviour was
1775 different from what the documentation said, and not particularly
1776 useful, as repeated systemd-tmpfiles invocations would not be
1777 idempotent and grow such files without bounds. With this release
15c5594b
ZJS
1778 behaviour has been altered to match what the documentation says:
1779 lines of this type only have an effect if the indicated files don't
1780 exist yet, and only then the argument string is written to the file.
49e87292 1781
82c8e3e6
LP
1782 * FUTURE INCOMPATIBILITY: In systemd v238 we intend to slightly change
1783 systemd-tmpfiles behaviour: previously, read-only files owned by root
1784 were always excluded from the file "aging" algorithm (i.e. the
1785 automatic clean-up of directories like /tmp based on
1786 atime/mtime/ctime). We intend to drop this restriction, and age files
1787 by default even when owned by root and read-only. This behaviour was
1788 inherited from older tools, but there have been requests to remove
1789 it, and it's not obvious why this restriction was made in the first
1790 place. Please speak up now, if you are aware of software that reqires
1791 this behaviour, otherwise we'll remove the restriction in v238.
1792
95894b91
LP
1793 * A new environment variable $SYSTEMD_OFFLINE is now understood by
1794 systemctl. It takes a boolean argument. If on, systemctl assumes it
1795 operates on an "offline" OS tree, and will not attempt to talk to the
1796 service manager. Previously, this mode was implicitly enabled if a
1797 chroot() environment was detected, and this new environment variable
1798 now provides explicit control.
1799
1a0cd2c7
ZJS
1800 * .path and .socket units may now be created transiently, too.
1801 Previously only service, mount, automount and timer units were
95894b91
LP
1802 supported as transient units. The systemd-run tool has been updated
1803 to expose this new functionality, you may hence use it now to bind
1804 arbitrary commands to path or socket activation on-the-fly from the
1a0cd2c7
ZJS
1805 command line. Moreover, almost all properties are now exposed for the
1806 unit types that already supported transient operation.
95894b91
LP
1807
1808 * The systemd-mount command gained support for a new --owner= parameter
1809 which takes a user name, which is then resolved and included in uid=
1810 and gid= mount options string of the file system to mount.
1811
1812 * A new unit condition ConditionControlGroupController= has been added
1813 that checks whether a specific cgroup controller is available.
1814
1815 * Unit files, udev's .link files, and systemd-networkd's .netdev and
1816 .network files all gained support for a new condition
1817 ConditionKernelVersion= for checking against specific kernel
1818 versions.
1819
1820 * In systemd-networkd, the [IPVLAN] section in .netdev files gained
6cddc792 1821 support for configuring device flags in the Flags= setting. In the
95894b91
LP
1822 same files, the [Tunnel] section gained support for configuring
1823 AllowLocalRemote=. The [Route] section in .network files gained
1824 support for configuring InitialCongestionWindow=,
1825 InitialAdvertisedReceiveWindow= and QuickAck=. The [DHCP] section now
1826 understands RapidCommit=.
1827
1828 * systemd-networkd's DHCPv6 support gained support for Prefix
1829 Delegation.
1830
1831 * sd-bus gained support for a new "watch-bind" feature. When this
1832 feature is enabled, an sd_bus connection may be set up to connect to
1833 an AF_UNIX socket in the file system as soon as it is created. This
1834 functionality is useful for writing early-boot services that
1835 automatically connect to the system bus as soon as it is started,
1836 without ugly time-based polling. systemd-networkd and
1837 systemd-resolved have been updated to make use of this
1838 functionality. busctl exposes this functionality in a new
1839 --watch-bind= command line switch.
1840
1841 * sd-bus will now optionally synthesize a local "Connected" signal as
1842 soon as a D-Bus connection is set up fully. This message mirrors the
1843 already existing "Disconnected" signal which is synthesized when the
1844 connection is terminated. This signal is generally useful but
1845 particularly handy in combination with the "watch-bind" feature
1846 described above. Synthesizing of this message has to be requested
1847 explicitly through the new API call sd_bus_set_connected_signal(). In
1848 addition a new call sd_bus_is_ready() has been added that checks
caf2a2d8 1849 whether a connection is fully set up (i.e. between the "Connected" and
95894b91
LP
1850 "Disconnected" signals).
1851
1852 * sd-bus gained two new calls sd_bus_request_name_async() and
1853 sd_bus_release_name_async() for asynchronously registering bus
1854 names. Similar, there is now sd_bus_add_match_async() for installing
1855 a signal match asynchronously. All of systemd's own services have
1856 been updated to make use of these calls. Doing these operations
1857 asynchronously has two benefits: it reduces the risk of deadlocks in
1858 case of cyclic dependencies between bus services, and it speeds up
1859 service initialization since synchronization points for bus
1860 round-trips are removed.
1861
1862 * sd-bus gained two new calls sd_bus_match_signal() and
1863 sd_bus_match_signal_async(), which are similar to sd_bus_add_match()
1864 and sd_bus_add_match_async() but instead of taking a D-Bus match
1865 string take match fields as normal function parameters.
1866
1867 * sd-bus gained two new calls sd_bus_set_sender() and
1868 sd_bus_message_set_sender() for setting the sender name of outgoing
1869 messages (either for all outgoing messages or for just one specific
1870 one). These calls are only useful in direct connections as on
1871 brokered connections the broker fills in the sender anyway,
1872 overwriting whatever the client filled in.
1873
1874 * sd-event gained a new pseudo-handle that may be specified on all API
1875 calls where an "sd_event*" object is expected: SD_EVENT_DEFAULT. When
1876 used this refers to the default event loop object of the calling
1877 thread. Note however that this does not implicitly allocate one —
6cddc792
CR
1878 which has to be done prior by using sd_event_default(). Similarly
1879 sd-bus gained three new pseudo-handles SD_BUS_DEFAULT,
95894b91
LP
1880 SD_BUS_DEFAULT_USER, SD_BUS_DEFAULT_SYSTEM that may be used to refer
1881 to the default bus of the specified type of the calling thread. Here
1882 too this does not implicitly allocate bus connection objects, this
1883 has to be done prior with sd_bus_default() and friends.
1884
1885 * sd-event gained a new call pair
6cddc792
CR
1886 sd_event_source_{get|set}_io_fd_own(). This may be used to request
1887 automatic closure of the file descriptor an IO event source watches
95894b91
LP
1888 when the event source is destroyed.
1889
1890 * systemd-networkd gained support for natively configuring WireGuard
1891 connections.
1892
6cddc792
CR
1893 * In previous versions systemd synthesized user records both for the
1894 "nobody" (UID 65534) and "root" (UID 0) users in nss-systemd and
1895 internally. In order to simplify distribution-wide renames of the
95894b91
LP
1896 "nobody" user (like it is planned in Fedora: nfsnobody → nobody), a
1897 new transitional flag file has been added: if
1898 /etc/systemd/dont-synthesize-nobody exists synthesizing of the 65534
1899 user and group record within the systemd codebase is disabled.
1900
1901 * systemd-notify gained a new --uid= option for selecting the source
1902 user/UID to use for notification messages sent to the service
1903 manager.
1904
31751f7e 1905 * journalctl gained a new --grep= option to list only entries in which
e6501af8
ZJS
1906 the message matches a certain pattern. By default matching is case
1907 insensitive if the pattern is lowercase, and case sensitive
1908 otherwise. Option --case-sensitive=yes|no can be used to override
1909 this an specify case sensitivity or case insensitivity.
1910
56a29112 1911 * There's now a "systemd-analyze service-watchdogs" command for printing
508058c9 1912 the current state of the service runtime watchdog, and optionally
56a29112 1913 enabling or disabling the per-service watchdogs system-wide if given a
508058c9
LP
1914 boolean argument (i.e. the concept you configure in WatchdogSec=), for
1915 debugging purposes. There's also a kernel command line option
56a29112 1916 systemd.service_watchdogs= for controlling the same.
508058c9
LP
1917
1918 * Two new "log-level" and "log-target" options for systemd-analyze were
bc99dac5 1919 added that merge the now deprecated get-log-level, set-log-level and
508058c9
LP
1920 get-log-target, set-log-target pairs. The deprecated options are still
1921 understood for backwards compatibility. The two new options print the
1922 current value when no arguments are given, and set them when a
56a29112 1923 level/target is given as an argument.
95894b91 1924
508058c9
LP
1925 * sysusers.d's "u" lines now optionally accept both a UID and a GID
1926 specification, separated by a ":" character, in order to create users
1927 where UID and GID do not match.
1928
95894b91 1929 Contributions from: Adam Duskett, Alan Jenkins, Alexander Kuleshov,
508058c9
LP
1930 Alexis Deruelle, Andrew Jeddeloh, Armin Widegreen, Batuhan Osman
1931 Taşkaya, Björn Esser, bleep_blop, Bruce A. Johnson, Chris Down, Clinton
1932 Roy, Colin Walters, Daniel Rusek, Dimitri John Ledkov, Dmitry Rozhkov,
1933 Evgeny Vereshchagin, Ewout van Mansom, Felipe Sateler, Franck Bui,
1934 Frantisek Sumsal, George Gaydarov, Gianluca Boiano, Hans-Christian
1935 Noren Egtvedt, Hans de Goede, Henrik Grindal Bakken, Jan Alexander
1936 Steffens, Jan Klötzke, Jason A. Donenfeld, jdkbx, Jérémy Rosen,
1937 Jerónimo Borque, John Lin, John Paul Herold, Jonathan Rudenberg, Jörg
1938 Thalheim, Ken (Bitsko) MacLeod, Larry Bernstone, Lennart Poettering,
1939 Lucas Werkmeister, Maciej S. Szmigiero, Marek Čermák, Martin Pitt,
1940 Mathieu Malaterre, Matthew Thode, Matthias-Christian Ott, Max Harmathy,
1941 Michael Biebl, Michael Vogt, Michal Koutný, Michal Sekletar, Michał
1942 Szczepański, Mike Gilbert, Nathaniel McCallum, Nicolas Chauvet, Olaf
1943 Hering, Olivier Schwander, Patrik Flykt, Paul Cercueil, Peter Hutterer,
1944 Piotr Drąg, Raphael Vogelgsang, Reverend Homer, Robert Kolchmeyer,
1945 Samuel Dionne-Riel, Sergey Ptashnick, Shawn Landden, Susant Sahani,
1946 Sylvain Plantefève, Thomas H. P. Andersen, Thomas Huth, Tomasz
1947 Bachorski, Vladislav Vishnyakov, Wieland Hoffmann, Yu Watanabe, Zachary
1948 Winnerman, Zbigniew Jędrzejewski-Szmek, Дамјан Георгиевски, Дилян
1949 Палаузов
1950
1951 — Brno, 2018-01-28
2b0c59ba 1952
a1b2c92d 1953CHANGES WITH 236:
195b943d 1954
89780840
ZJS
1955 * The modprobe.d/ drop-in for the bonding.ko kernel module introduced
1956 in v235 has been extended to also set the dummy.ko module option
1957 numdummies=0, preventing the kernel from automatically creating
1958 dummy0. All dummy interfaces must now be explicitly created.
195b943d 1959
3925496a
LP
1960 * Unknown '%' specifiers in configuration files are now rejected. This
1961 applies to units and tmpfiles.d configuration. Any percent characters
1962 that are followed by a letter or digit that are not supposed to be
1963 interpreted as the beginning of a specifier should be escaped by
1964 doubling ("%%"). (So "size=5%" is still accepted, as well as
1965 "size=5%,foo=bar", but not "LABEL=x%y%z" since %y and %z are not
1966 valid specifiers today.)
751223fe 1967
e6b2d948 1968 * systemd-resolved now maintains a new dynamic
89780840
ZJS
1969 /run/systemd/resolve/stub-resolv.conf compatibility file. It is
1970 recommended to make /etc/resolv.conf a symlink to it. This file
1971 points at the systemd-resolved stub DNS 127.0.0.53 resolver and
1972 includes dynamically acquired search domains, achieving more correct
1973 DNS resolution by software that bypasses local DNS APIs such as NSS.
e6b2d948 1974
67eb5b38
LP
1975 * The "uaccess" udev tag has been dropped from /dev/kvm and
1976 /dev/dri/renderD*. These devices now have the 0666 permissions by
1977 default (but this may be changed at build-time). /dev/dri/renderD*
1978 will now be owned by the "render" group along with /dev/kfd.
1979
89780840
ZJS
1980 * "DynamicUser=yes" has been enabled for systemd-timesyncd.service,
1981 systemd-journal-gatewayd.service and
1982 systemd-journal-upload.service. This means "nss-systemd" must be
1983 enabled in /etc/nsswitch.conf to ensure the UIDs assigned to these
1984 services are resolved properly.
67eb5b38 1985
3925496a
LP
1986 * In /etc/fstab two new mount options are now understood:
1987 x-systemd.makefs and x-systemd.growfs. The former has the effect that
1988 the configured file system is formatted before it is mounted, the
1989 latter that the file system is resized to the full block device size
1990 after it is mounted (i.e. if the file system is smaller than the
1991 partition it resides on, it's grown). This is similar to the fsck
1992 logic in /etc/fstab, and pulls in systemd-makefs@.service and
1993 systemd-growfs@.service as necessary, similar to
1994 systemd-fsck@.service. Resizing is currently only supported on ext4
1995 and btrfs.
1996
67eb5b38
LP
1997 * In systemd-networkd, the IPv6 RA logic now optionally may announce
1998 DNS server and domain information.
1999
2000 * Support for the LUKS2 on-disk format for encrypted partitions has
2001 been added. This requires libcryptsetup2 during compilation and
2002 runtime.
2003
89780840 2004 * The systemd --user instance will now signal "readiness" when its
67eb5b38
LP
2005 basic.target unit has been reached, instead of when the run queue ran
2006 empty for the first time.
2007
8ea2dcb0
ZJS
2008 * Tmpfiles.d with user configuration are now also supported.
2009 systemd-tmpfiles gained a new --user switch, and snippets placed in
2010 ~/.config/user-tmpfiles.d/ and corresponding directories will be
2011 executed by systemd-tmpfiles --user running in the new
2012 systemd-tmpfiles-setup.service and systemd-tmpfiles-clean.service
2013 running in the user session.
2014
2015 * Unit files and tmpfiles.d snippets learnt three new % specifiers:
2016 %S resolves to the top-level state directory (/var/lib for the system
2017 instance, $XDG_CONFIG_HOME for the user instance), %C resolves to the
2018 top-level cache directory (/var/cache for the system instance,
2019 $XDG_CACHE_HOME for the user instance), %L resolves to the top-level
2020 logs directory (/var/log for the system instance,
67eb5b38 2021 $XDG_CONFIG_HOME/log/ for the user instance). This matches the
8ea2dcb0 2022 existing %t specifier, that resolves to the top-level runtime
67eb5b38
LP
2023 directory (/run for the system instance, and $XDG_RUNTIME_DIR for the
2024 user instance).
2025
2026 * journalctl learnt a new parameter --output-fields= for limiting the
2027 set of journal fields to output in verbose and JSON output modes.
2028
2029 * systemd-timesyncd's configuration file gained a new option
89780840
ZJS
2030 RootDistanceMaxSec= for setting the maximum root distance of servers
2031 it'll use, as well as the new options PollIntervalMinSec= and
2032 PollIntervalMaxSec= to tweak the minimum and maximum poll interval.
67eb5b38
LP
2033
2034 * bootctl gained a new command "list" for listing all available boot
89780840 2035 menu items on systems that follow the boot loader specification.
67eb5b38
LP
2036
2037 * systemctl gained a new --dry-run switch that shows what would be done
2038 instead of doing it, and is currently supported by the shutdown and
2039 sleep verbs.
2040
e9ad86d5 2041 * ConditionSecurity= can now detect the TOMOYO security module.
67eb5b38
LP
2042
2043 * Unit file [Install] sections are now also respected in unit drop-in
89780840 2044 files. This is intended to be used by drop-ins under /usr/lib/.
67eb5b38 2045
89780840 2046 * systemd-firstboot may now also set the initial keyboard mapping.
67eb5b38 2047
89780840
ZJS
2048 * Udev "changed" events for devices which are exposed as systemd
2049 .device units are now propagated to units specified in
2050 ReloadPropagatedFrom= as reload requests.
67eb5b38 2051
89780840
ZJS
2052 * If a udev device has a SYSTEMD_WANTS= property containing a systemd
2053 unit template name (i.e. a name in the form of 'foobar@.service',
2054 without the instance component between the '@' and - the '.'), then
2055 the escaped sysfs path of the device is automatically used as the
2056 instance.
67eb5b38
LP
2057
2058 * SystemCallFilter= in unit files has been extended so that an "errno"
2059 can be specified individually for each system call. Example:
2060 SystemCallFilter=~uname:EILSEQ.
2061
2062 * The cgroup delegation logic has been substantially updated. Delegate=
2063 now optionally takes a list of controllers (instead of a boolean, as
2064 before), which lists the controllers to delegate at least.
2065
89780840 2066 * The networkd DHCPv6 client now implements the FQDN option (RFC 4704).
67eb5b38 2067
89780840
ZJS
2068 * A new LogLevelMax= setting configures the maximum log level any
2069 process of the service may log at (i.e. anything with a lesser
2070 priority than what is specified is automatically dropped). A new
2071 LogExtraFields= setting allows configuration of additional journal
2072 fields to attach to all log records generated by any of the unit's
2073 processes.
67eb5b38 2074
89780840
ZJS
2075 * New StandardInputData= and StandardInputText= settings along with the
2076 new option StandardInput=data may be used to configure textual or
2077 binary data that shall be passed to the executed service process via
2078 standard input, encoded in-line in the unit file.
67eb5b38
LP
2079
2080 * StandardInput=, StandardOutput= and StandardError= may now be used to
2081 connect stdin/stdout/stderr of executed processes directly with a
2082 file or AF_UNIX socket in the file system, using the new "file:" option.
2083
89780840
ZJS
2084 * A new unit file option CollectMode= has been added, that allows
2085 tweaking the garbage collection logic for units. It may be used to
2086 tell systemd to garbage collect units that have failed automatically
2087 (normally it only GCs units that exited successfully). systemd-run
2088 and systemd-mount expose this new functionality with a new -G option.
2089
67eb5b38
LP
2090 * "machinectl bind" may now be used to bind mount non-directories
2091 (i.e. regularfiles, devices, fifos, sockets).
2092
2093 * systemd-analyze gained a new verb "calendar" for validating and
2094 testing calendar time specifications to use for OnCalendar= in timer
2095 units. Besides validating the expression it will calculate the next
2096 time the specified expression would elapse.
2097
2098 * In addition to the pre-existing FailureAction= unit file setting
89780840
ZJS
2099 there's now SuccessAction=, for configuring a shutdown action to
2100 execute when a unit completes successfully. This is useful in
2101 particular inside containers that shall terminate after some workload
2102 has been completed. Also, both options are now supported for all unit
2103 types, not just services.
67eb5b38
LP
2104
2105 * networkds's IP rule support gained two new options
dd014eeb 2106 IncomingInterface= and OutgoingInterface= for configuring the incoming
67eb5b38
LP
2107 and outgoing interfaces of configured rules. systemd-networkd also
2108 gained support for "vxcan" network devices.
2109
2110 * networkd gained a new setting RequiredForOnline=, taking a
2111 boolean. If set, systemd-wait-online will take it into consideration
2112 when determining that the system is up, otherwise it will ignore the
2113 interface for this purpose.
2114
2115 * The sd_notify() protocol gained support for a new operation: with
2116 FDSTOREREMOVE=1 file descriptors may be removed from the per-service
2117 store again, ahead of POLLHUP or POLLERR when they are removed
2118 anyway.
2119
f09eb768
LP
2120 * A new document doc/UIDS-GIDS.md has been added to the source tree,
2121 that documents the UID/GID range and assignment assumptions and
3925496a
LP
2122 requirements of systemd.
2123
2124 * The watchdog device PID 1 will ping may now be configured through the
2125 WatchdogDevice= configuration file setting, or by setting the
2126 systemd.watchdog_service= kernel commandline option.
2127
2128 * systemd-resolved's gained support for registering DNS-SD services on
2129 the local network using MulticastDNS. Services may either be
2130 registered by dropping in a .dnssd file in /etc/systemd/dnssd/ (or
2131 the same dir below /run, /usr/lib), or through its D-Bus API.
2132
a327431b
DB
2133 * The sd_notify() protocol can now with EXTEND_TIMEOUT_USEC=microsecond
2134 extend the effective start, runtime, and stop time. The service must
2135 continue to send EXTEND_TIMEOUT_USEC within the period specified to
2136 prevent the service manager from making the service as timedout.
2137
ea2a3c9e
LP
2138 * systemd-resolved's DNSSEC support gained support for RFC 8080
2139 (Ed25519 keys and signatures).
2140
a1b2c92d
LP
2141 * The systemd-resolve command line tool gained a new set of options
2142 --set-dns=, --set-domain=, --set-llmnr=, --set-mdns=, --set-dnssec=,
2143 --set-nta= and --revert to configure per-interface DNS configuration
2144 dynamically during runtime. It's useful for pushing DNS information
2145 into systemd-resolved from DNS hook scripts that various interface
2146 managing software supports (such as pppd).
2147
2148 * systemd-nspawn gained a new --network-namespace-path= command line
2149 option, which may be used to make a container join an existing
2150 network namespace, by specifying a path to a "netns" file.
2151
3925496a
LP
2152 Contributions from: Alan Jenkins, Alan Robertson, Alessandro Ghedini,
2153 Andrew Jeddeloh, Antonio Rojas, Ari, asavah, bleep_blop, Carsten
2154 Strotmann, Christian Brauner, Christian Hesse, Clinton Roy, Collin
ea2a3c9e 2155 Eggert, Cong Wang, Daniel Black, Daniel Lockyer, Daniel Rusek, Dimitri
a1b2c92d
LP
2156 John Ledkov, Dmitry Rozhkov, Dongsu Park, Edward A. James, Evgeny
2157 Vereshchagin, Florian Klink, Franck Bui, Gwendal Grignou, Hans de
2158 Goede, Harald Hoyer, Hristo Venev, Iago López Galeiras, Ikey Doherty,
2159 Jakub Wilk, Jérémy Rosen, Jiahui Xie, John Lin, José Bollo, Josef
2160 Andersson, juga0, Krzysztof Nowicki, Kyle Walker, Lars Karlitski, Lars
2161 Kellogg-Stedman, Lauri Tirkkonen, Lennart Poettering, Lubomir Rintel,
2162 Luca Bruno, Lucas Werkmeister, Lukáš Nykrýn, Lukáš Říha, Lukasz
2163 Rubaszewski, Maciej S. Szmigiero, Mantas Mikulėnas, Marcus Folkesson,
2164 Martin Steuer, Mathieu Trudel-Lapierre, Matija Skala,
2165 Matthias-Christian Ott, Max Resch, Michael Biebl, Michael Vogt, Michal
2166 Koutný, Michal Sekletar, Mike Gilbert, Muhammet Kara, Neil Brown, Olaf
2167 Hering, Ondrej Kozina, Patrik Flykt, Patryk Kocielnik, Peter Hutterer,
2168 Piotr Drąg, Razvan Cojocaru, Robin McCorkell, Roland Hieber, Saran
2169 Tunyasuvunakool, Sergey Ptashnick, Shawn Landden, Shuang Liu, Simon
2170 Arlott, Simon Peeters, Stanislav Angelovič, Stefan Agner, Susant
2171 Sahani, Sylvain Plantefève, Thomas Blume, Thomas Haller, Tiago Salem
2172 Herrmann, Tinu Weber, Tom Stellard, Topi Miettinen, Torsten Hilbrich,
2173 Vito Caputo, Vladislav Vishnyakov, WaLyong Cho, Yu Watanabe, Zbigniew
2174 Jędrzejewski-Szmek, Zeal Jagannatha
67eb5b38 2175
ea2a3c9e 2176 — Berlin, 2017-12-14
3754abc5 2177
582faeb4
DJL
2178CHANGES WITH 235:
2179
2bcbffd6
LP
2180 * INCOMPATIBILITY: systemd-logind.service and other long-running
2181 services now run inside an IPv4/IPv6 sandbox, prohibiting them any IP
2182 communication with the outside. This generally improves security of
2183 the system, and is in almost all cases a safe and good choice, as
23d37367 2184 these services do not and should not provide any network-facing
2bcbffd6
LP
2185 functionality. However, systemd-logind uses the glibc NSS API to
2186 query the user database. This creates problems on systems where NSS
2187 is set up to directly consult network services for user database
2188 lookups. In particular, this creates incompatibilities with the
2189 "nss-nis" module, which attempts to directly contact the NIS/YP
2190 network servers it is configured for, and will now consistently
2191 fail. In such cases, it is possible to turn off IP sandboxing for
2192 systemd-logind.service (set IPAddressDeny= in its [Service] section
2193 to the empty string, via a .d/ unit file drop-in). Downstream
2194 distributions might want to update their nss-nis packaging to include
2195 such a drop-in snippet, accordingly, to hide this incompatibility
2196 from the user. Another option is to make use of glibc's nscd service
2197 to proxy such network requests through a privilege-separated, minimal
2198 local caching daemon, or to switch to more modern technologies such
2199 sssd, whose NSS hook-ups generally do not involve direct network
2200 access. In general, we think it's definitely time to question the
2201 implementation choices of nss-nis, i.e. whether it's a good idea
2202 today to embed a network-facing loadable module into all local
2203 processes that need to query the user database, including the most
2204 trivial and benign ones, such as "ls". For more details about
2205 IPAddressDeny= see below.
2206
fccf5419
LP
2207 * A new modprobe.d drop-in is now shipped by default that sets the
2208 bonding module option max_bonds=0. This overrides the kernel default,
2209 to avoid conflicts and ambiguity as to whether or not bond0 should be
2210 managed by systemd-networkd or not. This resolves multiple issues
2211 with bond0 properties not being applied, when bond0 is configured
2212 with systemd-networkd. Distributors may choose to not package this,
2213 however in that case users will be prevented from correctly managing
2214 bond0 interface using systemd-networkd.
582faeb4 2215
ef5a8cb1 2216 * systemd-analyze gained new verbs "get-log-level" and "get-log-target"
21723f53
ZJS
2217 which print the logging level and target of the system manager. They
2218 complement the existing "set-log-level" and "set-log-target" verbs
2219 used to change those values.
ef5a8cb1 2220
fccf5419
LP
2221 * journald.conf gained a new boolean setting ReadKMsg= which defaults
2222 to on. If turned off kernel log messages will not be read by
21723f53
ZJS
2223 systemd-journald or included in the logs. It also gained a new
2224 setting LineMax= for configuring the maximum line length in
2225 STDOUT/STDERR log streams. The new default for this value is 48K, up
2226 from the previous hardcoded 2048.
fccf5419 2227
21723f53
ZJS
2228 * A new unit setting RuntimeDirectoryPreserve= has been added, which
2229 allows more detailed control of what to do with a runtime directory
2230 configured with RuntimeDirectory= (i.e. a directory below /run or
2231 $XDG_RUNTIME_DIR) after a unit is stopped.
fccf5419
LP
2232
2233 * The RuntimeDirectory= setting for units gained support for creating
2234 deeper subdirectories below /run or $XDG_RUNTIME_DIR, instead of just
2235 one top-level directory.
2236
2237 * Units gained new options StateDirectory=, CacheDirectory=,
2238 LogsDirectory= and ConfigurationDirectory= which are closely related
2239 to RuntimeDirectory= but manage per-service directories below
21723f53 2240 /var/lib, /var/cache, /var/log and /etc. By making use of them it is
fccf5419
LP
2241 possible to write unit files which when activated automatically gain
2242 properly owned service specific directories in these locations, thus
2243 making unit files self-contained and increasing compatibility with
2244 stateless systems and factory reset where /etc or /var are
2245 unpopulated at boot. Matching these new settings there's also
2246 StateDirectoryMode=, CacheDirectoryMode=, LogsDirectoryMode=,
2247 ConfigurationDirectoryMode= for configuring the access mode of these
75dfbbac
LP
2248 directories. These settings are particularly useful in combination
2249 with DynamicUser=yes as they provide secure, properly-owned,
2250 writable, and stateful locations for storage, excluded from the
2251 sandbox that such services live in otherwise.
fccf5419
LP
2252
2253 * Automake support has been removed from this release. systemd is now
2254 Meson-only.
2255
2256 * systemd-journald will now aggressively cache client metadata during
2257 runtime, speeding up log write performance under pressure. This comes
2258 at a small price though: as much of the metadata is read
2259 asynchronously from /proc/ (and isn't implicitly attached to log
2260 datagrams by the kernel, like UID/GID/PID/SELinux are) this means the
2261 metadata stored alongside a log entry might be slightly
2262 out-of-date. Previously it could only be slightly newer than the log
2263 message. The time window is small however, and given that the kernel
2264 is unlikely to be improved anytime soon in this regard, this appears
2265 acceptable to us.
2266
2267 * nss-myhostname/systemd-resolved will now by default synthesize an
2268 A/AAAA resource record for the "_gateway" hostname, pointing to the
2269 current default IP gateway. Previously it did that for the "gateway"
2270 name, hampering adoption, as some distributions wanted to leave that
2271 host name open for local use. The old behaviour may still be
2272 requested at build time.
2273
2274 * systemd-networkd's [Address] section in .network files gained a new
2275 Scope= setting for configuring the IP address scope. The [Network]
2276 section gained a new boolean setting ConfigureWithoutCarrier= that
2277 tells systemd-networkd to ignore link sensing when configuring the
2278 device. The [DHCP] section gained a new Anonymize= boolean option for
2279 turning on a number of options suggested in RFC 7844. A new
2280 [RoutingPolicyRule] section has been added for configuring the IP
2281 routing policy. The [Route] section has gained support for a new
2282 Type= setting which permits configuring
2283 blackhole/unreachable/prohibit routes.
2284
2285 * The [VRF] section in .netdev files gained a new Table= setting for
2286 configuring the routing table to use. The [Tunnel] section gained a
2287 new Independent= boolean field for configuring tunnels independent of
2288 an underlying network interface. The [Bridge] section gained a new
2289 GroupForwardMask= option for configuration of propagation of link
2290 local frames between bridge ports.
2291
2292 * The WakeOnLan= setting in .link files gained support for a number of
2293 new modes. A new TCP6SegmentationOffload= setting has been added for
2294 configuring TCP/IPv6 hardware segmentation offload.
2295
2296 * The IPv6 RA sender implementation may now optionally send out RDNSS
21723f53 2297 and RDNSSL records to supply DNS configuration to peers.
fccf5419
LP
2298
2299 * systemd-nspawn gained support for a new --system-call-filter= command
21723f53
ZJS
2300 line option for adding and removing entries in the default system
2301 call filter it applies. Moreover systemd-nspawn has been changed to
fccf5419
LP
2302 implement a system call whitelist instead of a blacklist.
2303
2304 * systemd-run gained support for a new --pipe command line option. If
2305 used the STDIN/STDOUT/STDERR file descriptors passed to systemd-run
2306 are directly passed on to the activated transient service
21723f53
ZJS
2307 executable. This allows invoking arbitrary processes as systemd
2308 services (for example to take benefit of dependency management,
2309 accounting management, resource management or log management that is
2310 done automatically for services) — while still allowing them to be
fccf5419
LP
2311 integrated in a classic UNIX shell pipeline.
2312
2313 * When a service sends RELOAD=1 via sd_notify() and reload propagation
2314 using ReloadPropagationTo= is configured, a reload is now propagated
2315 to configured units. (Previously this was only done on explicitly
2316 requested reloads, using "systemctl reload" or an equivalent
2317 command.)
2318
2319 * For each service unit a restart counter is now kept: it is increased
2320 each time the service is restarted due to Restart=, and may be
2321 queried using "systemctl show -p NRestarts …".
2322
44898c53
LP
2323 * New system call filter groups @aio, @sync, @chown, @setuid, @memlock,
2324 @signal and @timer have been added, for usage with SystemCallFilter=
fccf5419
LP
2325 in unit files and the new --system-call-filter= command line option
2326 of systemd-nspawn (see above).
2327
2328 * ExecStart= lines in unit files gained two new modifiers: when a
2329 command line is prefixed with "!" the command will be executed as
2330 configured, except for the credentials applied by
2331 setuid()/setgid()/setgroups(). It is very similar to the pre-existing
2332 "+", but does still apply namespacing options unlike "+". There's
2333 also "!!" now, which is mostly identical, but becomes a NOP on
2334 systems that support ambient capabilities. This is useful to write
2335 unit files that work with ambient capabilities where possible but
2336 automatically fall back to traditional privilege dropping mechanisms
2337 on systems where this is not supported.
2338
2339 * ListenNetlink= settings in socket units now support RDMA netlink
2340 sockets.
2341
2342 * A new unit file setting LockPersonality= has been added which permits
2343 locking down the chosen execution domain ("personality") of a service
2344 during runtime.
2345
2346 * A new special target "getty-pre.target" has been added, which is
2347 ordered before all text logins, and may be used to order services
21723f53 2348 before textual logins acquire access to the console.
fccf5419
LP
2349
2350 * systemd will now attempt to load the virtio-rng.ko kernel module very
2351 early on if a VM environment supporting this is detected. This should
2352 improve entropy during early boot in virtualized environments.
2353
2354 * A _netdev option is now supported in /etc/crypttab that operates in a
2355 similar way as the same option in /etc/fstab: it permits configuring
21723f53
ZJS
2356 encrypted devices that need to be ordered after the network is up.
2357 Following this logic, two new special targets
fccf5419 2358 remote-cryptsetup-pre.target and remote-cryptsetup.target have been
21723f53
ZJS
2359 added that are to cryptsetup.target what remote-fs.target and
2360 remote-fs-pre.target are to local-fs.target.
fccf5419
LP
2361
2362 * Service units gained a new UnsetEnvironment= setting which permits
21723f53
ZJS
2363 unsetting specific environment variables for services that are
2364 normally passed to it (for example in order to mask out locale
fccf5419
LP
2365 settings for specific services that can't deal with it).
2366
2367 * Units acquired a new boolean option IPAccounting=. When turned on, IP
2368 traffic accounting (packet count as well as byte count) is done for
2369 the service, and shown as part of "systemctl status" or "systemd-run
2370 --wait".
2371
2372 * Service units acquired two new options IPAddressAllow= and
2373 IPAddressDeny=, taking a list of IPv4 or IPv6 addresses and masks,
2374 for configuring a simple IP access control list for all sockets of
2375 the unit. These options are available also on .slice and .socket
2376 units, permitting flexible access list configuration for individual
2377 services as well as groups of services (as defined by a slice unit),
2378 including system-wide. Note that IP ACLs configured this way are
2379 enforced on every single IPv4 and IPv6 socket created by any process
2380 of the service unit, and apply to ingress as well as egress traffic.
2381
21723f53 2382 * If CPUAccounting= or IPAccounting= is turned on for a unit a new
608f70e6 2383 structured log message is generated each time the unit is stopped,
fccf5419
LP
2384 containing information about the consumed resources of this
2385 invocation.
2386
2387 * A new setting KeyringMode= has been added to unit files, which may be
2388 used to control how the kernel keyring is set up for executed
2389 processes.
2390
e06fafb2
LP
2391 * "systemctl poweroff", "systemctl reboot", "systemctl halt",
2392 "systemctl kexec" and "systemctl exit" are now always asynchronous in
2393 behaviour (that is: these commands return immediately after the
21723f53
ZJS
2394 operation was enqueued instead of waiting for the operation to
2395 complete). Previously, "systemctl poweroff" and "systemctl reboot"
e06fafb2
LP
2396 were asynchronous on systems using systemd-logind (i.e. almost
2397 always, and like they were on sysvinit), and the other three commands
2398 were unconditionally synchronous. With this release this is cleaned
2399 up, and callers will see the same asynchronous behaviour on all
2400 systems for all five operations.
2401
2402 * systemd-logind gained new Halt() and CanHalt() bus calls for halting
2403 the system.
2404
fccf5419
LP
2405 * .timer units now accept calendar specifications in other timezones
2406 than UTC or the local timezone.
2407
f6e64b78 2408 * The tmpfiles snippet var.conf has been changed to create
21723f53
ZJS
2409 /var/log/btmp with access mode 0660 instead of 0600. It was owned by
2410 the "utmp" group already, and it appears to be generally understood
2411 that members of "utmp" can modify/flush the utmp/wtmp/lastlog/btmp
2412 databases. Previously this was implemented correctly for all these
2413 databases excepts btmp, which has been opened up like this now
2414 too. Note that while the other databases are world-readable
2415 (i.e. 0644), btmp is not and remains more restrictive.
f6e64b78 2416
d55b0463
LP
2417 * The systemd-resolve tool gained a new --reset-server-features
2418 switch. When invoked like this systemd-resolved will forget
2419 everything it learnt about the features supported by the configured
2420 upstream DNS servers, and restarts the feature probing logic on the
cf84484a
LP
2421 next resolver look-up for them at the highest feature level
2422 again.
2423
2424 * The status dump systemd-resolved sends to the logs upon receiving
2425 SIGUSR1 now also includes information about all DNS servers it is
2426 configured to use, and the features levels it probed for them.
d55b0463 2427
fccf5419
LP
2428 Contributions from: Abdó Roig-Maranges, Alan Jenkins, Alexander
2429 Kuleshov, Andreas Rammhold, Andrew Jeddeloh, Andrew Soutar, Ansgar
76451c1d
LP
2430 Burchardt, Beniamino Galvani, Benjamin Berg, Benjamin Robin, Charles
2431 Huber, Christian Hesse, Daniel Berrange, Daniel Kahn Gillmor, Daniel
2432 Mack, Daniel Rusek, Daniel Șerbănescu, Davide Cavalca, Dimitri John
2433 Ledkov, Diogo Pereira, Djalal Harouni, Dmitriy Geels, Dmitry Torokhov,
2434 ettavolt, Evgeny Vereshchagin, Fabio Kung, Felipe Sateler, Franck Bui,
2435 Hans de Goede, Harald Hoyer, Insun Pyo, Ivan Kurnosov, Ivan Shapovalov,
2436 Jakub Wilk, Jan Synacek, Jason Gunthorpe, Jeremy Bicha, Jérémy Rosen,
2437 John Lin, jonasBoss, Jonathan Lebon, Jonathan Teh, Jon Ringle, Jörg
2438 Thalheim, Jouke Witteveen, juga0, Justin Capella, Justin Michaud,
2439 Kai-Heng Feng, Lennart Poettering, Lion Yang, Luca Bruno, Lucas
2440 Werkmeister, Lukáš Nykrýn, Marcel Hollerbach, Marcus Lundblad, Martin
2441 Pitt, Michael Biebl, Michael Grzeschik, Michal Sekletar, Mike Gilbert,
2442 Neil Brown, Nicolas Iooss, Patrik Flykt, pEJipE, Piotr Drąg, Russell
2443 Stuart, S. Fan, Shengyao Xue, Stefan Pietsch, Susant Sahani, Tejun Heo,
2444 Thomas Miller, Thomas Sailer, Tobias Hunger, Tomasz Pala, Tom
2445 Gundersen, Tommi Rantala, Topi Miettinen, Torstein Husebø, userwithuid,
2446 Vasilis Liaskovitis, Vito Caputo, WaLyong Cho, William Douglas, Xiang
2447 Fan, Yu Watanabe, Zbigniew Jędrzejewski-Szmek
fccf5419 2448
c1719d8b 2449 — Berlin, 2017-10-06
fccf5419 2450
4b4da299
LP
2451CHANGES WITH 234:
2452
2453 * Meson is now supported as build system in addition to Automake. It is
2454 our plan to remove Automake in one of our next releases, so that
2455 Meson becomes our exclusive build system. Hence, please start using
2456 the Meson build system in your downstream packaging. There's plenty
2457 of documentation around how to use Meson, the extremely brief
2458 summary:
2459
2460 ./autogen.sh && ./configure && make && sudo make install
2461
2462 becomes:
2463
2464 meson build && ninja -C build && sudo ninja -C build install
2465
2466 * Unit files gained support for a new JobRunningTimeoutUSec= setting,
2467 which permits configuring a timeout on the time a job is
2468 running. This is particularly useful for setting timeouts on jobs for
2469 .device units.
2470
2471 * Unit files gained two new options ConditionUser= and ConditionGroup=
2472 for conditionalizing units based on the identity of the user/group
2473 running a systemd user instance.
2474
2475 * systemd-networkd now understands a new FlowLabel= setting in the
2476 [VXLAN] section of .network files, as well as a Priority= in
2477 [Bridge], GVRP= + MVRP= + LooseBinding= + ReorderHeader= in [VLAN]
2478 and GatewayOnlink= + IPv6Preference= + Protocol= in [Route]. It also
2479 gained support for configuration of GENEVE links, and IPv6 address
2480 labels. The [Network] section gained the new IPv6ProxyNDP= setting.
2481
9f09a95a 2482 * .link files now understand a new Port= setting.
4b4da299
LP
2483
2484 * systemd-networkd's DHCP support gained support for DHCP option 119
2485 (domain search list).
2486
2487 * systemd-networkd gained support for serving IPv6 address ranges using
bc99dac5 2488 the Router Advertisement protocol. The new .network configuration
4b4da299
LP
2489 section [IPv6Prefix] may be used to configure the ranges to
2490 serve. This is implemented based on a new, minimal, native server
2491 implementation of RA.
2492
2493 * journalctl's --output= switch gained support for a new parameter
2494 "short-iso-precise" for a mode where timestamps are shown as precise
2495 ISO date values.
2496
2497 * systemd-udevd's "net_id" builtin may now generate stable network
2498 interface names from IBM PowerVM VIO devices as well as ACPI platform
2499 devices.
2500
2501 * MulticastDNS support in systemd-resolved may now be explicitly
2502 enabled/disabled using the new MulticastDNS= configuration file
2503 option.
2504
2505 * systemd-resolved may now optionally use libidn2 instead of the libidn
7f7ab228
ZJS
2506 for processing internationalized domain names. Support for libidn2
2507 should be considered experimental and should not be enabled by
2508 default yet.
4b4da299
LP
2509
2510 * "machinectl pull-tar" and related call may now do verification of
2511 downloaded images using SUSE-style .sha256 checksum files in addition
2512 to the already existing support for validating using Ubuntu-style
2513 SHA256SUMS files.
2514
2515 * sd-bus gained support for a new sd_bus_message_appendv() call which
2516 is va_list equivalent of sd_bus_message_append().
2517
2518 * sd-boot gained support for validating images using SHIM/MOK.
2519
2520 * The SMACK code learnt support for "onlycap".
2521
2522 * systemd-mount --umount is now much smarter in figuring out how to
2523 properly unmount a device given its mount or device path.
5486a31d
ZJS
2524
2525 * The code to call libnss_dns as a fallback from libnss_resolve when
2526 the communication with systemd-resolved fails was removed. This
2527 fallback was redundant and interfered with the [!UNAVAIL=return]
2528 suffix. See nss-resolve(8) for the recommended configuration.
2529
9f09a95a
ZJS
2530 * systemd-logind may now be restarted without losing state. It stores
2531 the file descriptors for devices it manages in the system manager
38d93385 2532 using the FDSTORE= mechanism. Please note that further changes in
9f09a95a
ZJS
2533 other components may be required to make use of this (for example
2534 Xorg has code to listen for stops of systemd-logind and terminate
2535 itself when logind is stopped or restarted, in order to avoid using
2536 stale file descriptors for graphical devices, which is now
2537 counterproductive and must be reverted in order for restarts of
2538 systemd-logind to be safe. See
2539 https://cgit.freedesktop.org/xorg/xserver/commit/?id=dc48bd653c7e101.)
2540
d271c5d3 2541 * All kernel-install plugins are called with the environment variable
9d8813b3 2542 KERNEL_INSTALL_MACHINE_ID which is set to the machine ID given by
d271c5d3
ZJS
2543 /etc/machine-id. If the machine ID could not be determined,
2544 $KERNEL_INSTALL_MACHINE_ID will be empty. Plugins should not put
2545 anything in the entry directory (passed as the second argument) if
5238e957 2546 $KERNEL_INSTALL_MACHINE_ID is empty. For backwards compatibility, a
d271c5d3
ZJS
2547 temporary directory is passed as the entry directory and removed
2548 after all the plugins exit.
9d8813b3 2549
184d2c15 2550 Contributions from: Adrian Heine né Lang, Aggelos Avgerinos, Alexander
ac172e52
LP
2551 Kurtz, Alexandros Frantzis, Alexey Brodkin, Alex Lu, Amir Pakdel, Amir
2552 Yalon, Anchor Cat, Anthony Parsons, Bastien Nocera, Benjamin Gilbert,
2553 Benjamin Robin, Boucman, Charles Plessy, Chris Chiu, Chris Lamb,
2554 Christian Brauner, Christian Hesse, Colin Walters, Daniel Drake,
184d2c15
LP
2555 Danielle Church, Daniel Molkentin, Daniel Rusek, Daniel Wang, Davide
2556 Cavalca, David Herrmann, David Michael, Dax Kelson, Dimitri John
2557 Ledkov, Djalal Harouni, Dušan Kazik, Elias Probst, Evgeny Vereshchagin,
2558 Federico Di Pierro, Felipe Sateler, Felix Zhang, Franck Bui, Gary
ac172e52
LP
2559 Tierney, George McCollister, Giedrius Statkevičius, Hans de Goede,
2560 hecke, Hendrik Westerberg, Hristo Venev, Ian Wienand, Insun Pyo, Ivan
2561 Shapovalov, James Cowgill, James Hemsing, Janne Heß, Jan Synacek, Jason
2562 Reeder, João Paulo Rechi Vita, John Paul Adrian Glaubitz, Jörg
2563 Thalheim, Josef Andersson, Josef Gajdusek, Julian Mehne, Kai Krakow,
2564 Krzysztof Jackiewicz, Lars Karlitski, Lennart Poettering, Lluís Gili,
2565 Lucas Werkmeister, Lukáš Nykrýn, Łukasz Stelmach, Mantas Mikulėnas,
2566 Marcin Bachry, Marcus Cooper, Mark Stosberg, Martin Pitt, Matija Skala,
2567 Matt Clarkson, Matthew Garrett, Matthias Greiner, Matthijs van Duin,
2568 Max Resch, Michael Biebl, Michal Koutný, Michal Sekletar, Michal
2569 Soltys, Michal Suchanek, Mike Gilbert, Nate Clark, Nathaniel R. Lewis,
2570 Neil Brown, Nikolai Kondrashov, Pascal S. de Kloe, Pat Riehecky, Patrik
2571 Flykt, Paul Kocialkowski, Peter Hutterer, Philip Withnall, Piotr
2572 Szydełko, Rafael Fontenelle, Ray Strode, Richard Maw, Roelf Wichertjes,
2573 Ronny Chevalier, Sarang S. Dalal, Sjoerd Simons, slodki, Stefan
2574 Schweter, Susant Sahani, Ted Wood, Thomas Blume, Thomas Haller, Thomas
184d2c15
LP
2575 H. P. Andersen, Timothée Ravier, Tobias Jungel, Tobias Stoeckmann, Tom
2576 Gundersen, Tom Yan, Torstein Husebø, Umut Tezduyar Lindskog,
ac172e52
LP
2577 userwithuid, Vito Caputo, Waldemar Brodkorb, WaLyong Cho, Yu, Li-Yu,
2578 Yusuke Nojima, Yu Watanabe, Zbigniew Jędrzejewski-Szmek, Дамјан
2579 Георгиевски
4b4da299 2580
ac172e52 2581 — Berlin, 2017-07-12
4b4da299 2582
a2b53448 2583CHANGES WITH 233:
d08ee7cb 2584
23eb30b3
ZJS
2585 * The "hybrid" control group mode has been modified to improve
2586 compatibility with "legacy" cgroups-v1 setups. Specifically, the
2587 "hybrid" setup of /sys/fs/cgroup is now pretty much identical to
2588 "legacy" (including /sys/fs/cgroup/systemd as "name=systemd" named
2589 cgroups-v1 hierarchy), the only externally visible change being that
2590 the cgroups-v2 hierarchy is also mounted, to
2591 /sys/fs/cgroup/unified. This should provide a large degree of
2592 compatibility with "legacy" cgroups-v1, while taking benefit of the
2593 better management capabilities of cgroups-v2.
2594
2595 * The default control group setup mode may be selected both a boot-time
2596 via a set of kernel command line parameters (specifically:
2597 systemd.unified_cgroup_hierarchy= and
2598 systemd.legacy_systemd_cgroup_controller=), as well as a compile-time
2599 default selected on the configure command line
2600 (--with-default-hierarchy=). The upstream default is "hybrid"
2601 (i.e. the cgroups-v1 + cgroups-v2 mixture discussed above) now, but
2602 this will change in a future systemd version to be "unified" (pure
2603 cgroups-v2 mode). The third option for the compile time option is
2604 "legacy", to enter pure cgroups-v1 mode. We recommend downstream
2605 distributions to default to "hybrid" mode for release distributions,
2606 starting with v233. We recommend "unified" for development
2607 distributions (specifically: distributions such as Fedora's rawhide)
2608 as that's where things are headed in the long run. Use "legacy" for
2609 greatest stability and compatibility only.
2610
2611 * Note one current limitation of "unified" and "hybrid" control group
2612 setup modes: the kernel currently does not permit the systemd --user
2613 instance (i.e. unprivileged code) to migrate processes between two
2614 disconnected cgroup subtrees, even if both are managed and owned by
2615 the user. This effectively means "systemd-run --user --scope" doesn't
2616 work when invoked from outside of any "systemd --user" service or
2617 scope. Specifically, it is not supported from session scopes. We are
2618 working on fixing this in a future systemd version. (See #3388 for
2619 further details about this.)
2620
fb7c4eff
MG
2621 * DBus policy files are now installed into /usr rather than /etc. Make
2622 sure your system has dbus >= 1.9.18 running before upgrading to this
2623 version, or override the install path with --with-dbuspolicydir= .
2624
23eb30b3
ZJS
2625 * All python scripts shipped with systemd (specifically: the various
2626 tests written in Python) now require Python 3.
2627
d60c5270 2628 * systemd unit tests can now run standalone (without the source or
4dfe64f8
ZJS
2629 build directories), and can be installed into /usr/lib/systemd/tests/
2630 with 'make install-tests'.
2631
23eb30b3
ZJS
2632 * Note that from this version on, CONFIG_CRYPTO_USER_API_HASH,
2633 CONFIG_CRYPTO_HMAC and CONFIG_CRYPTO_SHA256 need to be enabled in the
2634 kernel.
2635
2636 * Support for the %c, %r, %R specifiers in unit files has been
2637 removed. Specifiers are not supposed to be dependent on configuration
2638 in the unit file itself (so that they resolve the same regardless
2639 where used in the unit files), but these specifiers were influenced
2640 by the Slice= option.
2641
5cfc0a84
LP
2642 * The shell invoked by debug-shell.service now defaults to /bin/sh in
2643 all cases. If distributions want to use a different shell for this
2644 purpose (for example Fedora's /sbin/sushell) they need to specify
2645 this explicitly at configure time using --with-debug-shell=.
2646
2bcc3309
FB
2647 * The confirmation spawn prompt has been reworked to offer the
2648 following choices:
2649
b0eb2944 2650 (c)ontinue, proceed without asking anymore
dd6f9ac0 2651 (D)ump, show the state of the unit
2bcc3309 2652 (f)ail, don't execute the command and pretend it failed
d172b175 2653 (h)elp
eedf223a 2654 (i)nfo, show a short summary of the unit
56fde33a 2655 (j)obs, show jobs that are in progress
2bcc3309
FB
2656 (s)kip, don't execute the command and pretend it succeeded
2657 (y)es, execute the command
2658
2659 The 'n' choice for the confirmation spawn prompt has been removed,
2660 because its meaning was confusing.
2661
d08ee7cb
LP
2662 The prompt may now also be redirected to an alternative console by
2663 specifying the console as parameter to systemd.confirm_spawn=.
2664
8e458bfe
JW
2665 * Services of Type=notify require a READY=1 notification to be sent
2666 during startup. If no such message is sent, the service now fails,
2667 even if the main process exited with a successful exit code.
2668
85266f9b
LP
2669 * Services that fail to start up correctly now always have their
2670 ExecStopPost= commands executed. Previously, they'd enter "failed"
2671 state directly, without executing these commands.
2672
baf32786
MP
2673 * The option MulticastDNS= of network configuration files has acquired
2674 an actual implementation. With MulticastDNS=yes a host can resolve
23eb30b3 2675 names of remote hosts and reply to mDNS A and AAAA requests.
fa8b4499 2676
631b676b
LP
2677 * When units are about to be started an additional check is now done to
2678 ensure that all dependencies of type BindsTo= (when used in
2679 combination with After=) have been started.
2680
d08ee7cb
LP
2681 * systemd-analyze gained a new verb "syscall-filter" which shows which
2682 system call groups are defined for the SystemCallFilter= unit file
23eb30b3 2683 setting, and which system calls they contain.
d08ee7cb
LP
2684
2685 * A new system call filter group "@filesystem" has been added,
23eb30b3 2686 consisting of various file system related system calls. Group
d08ee7cb 2687 "@reboot" has been added, covering reboot, kexec and shutdown related
23eb30b3 2688 calls. Finally, group "@swap" has been added covering swap
d08ee7cb
LP
2689 configuration related calls.
2690
2691 * A new unit file option RestrictNamespaces= has been added that may be
2692 used to restrict access to the various process namespace types the
2693 Linux kernel provides. Specifically, it may be used to take away the
23eb30b3
ZJS
2694 right for a service unit to create additional file system, network,
2695 user, and other namespaces. This sandboxing option is particularly
2696 relevant due to the high amount of recently discovered namespacing
2697 related vulnerabilities in the kernel.
d08ee7cb 2698
23eb30b3
ZJS
2699 * systemd-udev's .link files gained support for a new AutoNegotiation=
2700 setting for configuring Ethernet auto-negotiation.
d08ee7cb
LP
2701
2702 * systemd-networkd's .network files gained support for a new
2703 ListenPort= setting in the [DHCP] section to explicitly configure the
2704 UDP client port the DHCP client shall listen on.
2705
23eb30b3
ZJS
2706 * .network files gained a new Unmanaged= boolean setting for explicitly
2707 excluding one or more interfaces from management by systemd-networkd.
2708
2709 * The systemd-networkd ProxyARP= option has been renamed to
2710 IPV4ProxyARP=. Similarly, VXLAN-specific option ARPProxy= has been
2711 renamed to ReduceARPProxy=. The old names continue to be available
2712 for compatibility.
2713
2714 * systemd-networkd gained support for configuring IPv6 Proxy NDP
2715 addresses via the new IPv6ProxyNDPAddress= .network file setting.
2716
2717 * systemd-networkd's bonding device support gained support for two new
2718 configuration options ActiveSlave= and PrimarySlave=.
2719
2720 * The various options in the [Match] section of .network files gained
2721 support for negative matching.
2722
d08ee7cb
LP
2723 * New systemd-specific mount options are now understood in /etc/fstab:
2724
2725 x-systemd.mount-timeout= may be used to configure the maximum
2726 permitted runtime of the mount command.
2727
2728 x-systemd.device-bound may be set to bind a mount point to its
2729 backing device unit, in order to automatically remove a mount point
2730 if its backing device is unplugged. This option may also be
2731 configured through the new SYSTEMD_MOUNT_DEVICE_BOUND udev property
2732 on the block device, which is now automatically set for all CDROM
2733 drives, so that mounted CDs are automatically unmounted when they are
2734 removed from the drive.
2735
23eb30b3
ZJS
2736 x-systemd.after= and x-systemd.before= may be used to explicitly
2737 order a mount after or before another unit or mount point.
d08ee7cb
LP
2738
2739 * Enqueued start jobs for device units are now automatically garbage
2740 collected if there are no jobs waiting for them anymore.
2741
23eb30b3
ZJS
2742 * systemctl list-jobs gained two new switches: with --after, for every
2743 queued job the jobs it's waiting for are shown; with --before the
2744 jobs which it's blocking are shown.
d08ee7cb
LP
2745
2746 * systemd-nspawn gained support for ephemeral boots from disk images
2747 (or in other words: --ephemeral and --image= may now be
2748 combined). Moreover, ephemeral boots are now supported for normal
2749 directories, even if the backing file system is not btrfs. Of course,
baf32786
MP
2750 if the file system does not support file system snapshots or
2751 reflinks, the initial copy operation will be relatively expensive, but
2752 this should still be suitable for many use cases.
d08ee7cb
LP
2753
2754 * Calendar time specifications in .timer units now support
2755 specifications relative to the end of a month by using "~" instead of
2756 "-" as separator between month and day. For example, "*-02~03" means
23eb30b3 2757 "the third last day in February". In addition a new syntax for
d08ee7cb
LP
2758 repeated events has been added using the "/" character. For example,
2759 "9..17/2:00" means "every two hours from 9am to 5pm".
2760
2761 * systemd-socket-proxyd gained a new parameter --connections-max= for
2762 configuring the maximum number of concurrent connections.
2763
23eb30b3
ZJS
2764 * sd-id128 gained a new API for generating unique IDs for the host in a
2765 way that does not leak the machine ID. Specifically,
d08ee7cb 2766 sd_id128_get_machine_app_specific() derives an ID based on the
baf32786 2767 machine ID a in well-defined, non-reversible, stable way. This is
d08ee7cb
LP
2768 useful whenever an identifier for the host is needed but where the
2769 identifier shall not be useful to identify the system beyond the
2770 scope of the application itself. (Internally this uses HMAC-SHA256 as
2771 keyed hash function using the machine ID as input.)
2772
2773 * NotifyAccess= gained a new supported value "exec". When set
2774 notifications are accepted from all processes systemd itself invoked,
2775 including all control processes.
2776
2777 * .nspawn files gained support for defining overlay mounts using the
2778 Overlay= and OverlayReadOnly= options. Previously this functionality
2779 was only available on the systemd-nspawn command line.
2780
2781 * systemd-nspawn's --bind= and --overlay= options gained support for
2782 bind/overlay mounts whose source lies within the container tree by
2783 prefixing the source path with "+".
2784
2785 * systemd-nspawn's --bind= and --overlay= options gained support for
2786 automatically allocating a temporary source directory in /var/tmp
2787 that is removed when the container dies. Specifically, if the source
2788 directory is specified as empty string this mechanism is selected. An
2789 example usage is --overlay=+/var::/var, which creates an overlay
2790 mount based on the original /var contained in the image, overlayed
2791 with a temporary directory in the host's /var/tmp. This way changes
2792 to /var are automatically flushed when the container shuts down.
2793
baf32786
MP
2794 * systemd-nspawn --image= option does now permit raw file system block
2795 devices (in addition to images containing partition tables, as
2796 before).
d08ee7cb
LP
2797
2798 * The disk image dissection logic in systemd-nspawn gained support for
2799 automatically setting up LUKS encrypted as well as Verity protected
2800 partitions. When a container is booted from an encrypted image the
2801 passphrase is queried at start-up time. When a container with Verity
2802 data is started, the root hash is search in a ".roothash" file
2803 accompanying the disk image (alternatively, pass the root hash via
2804 the new --root-hash= command line option).
2805
2806 * A new tool /usr/lib/systemd/systemd-dissect has been added that may
2807 be used to dissect disk images the same way as systemd-nspawn does
2808 it, following the Bootable Partition Specification. It may even be
2809 used to mount disk images with complex partition setups (including
2810 LUKS and Verity partitions) to a local host directory, in order to
2811 inspect them. This tool is not considered public API (yet), and is
2812 thus not installed into /usr/bin. Please do not rely on its
3b31c466 2813 existence, since it might go away or be changed in later systemd
d08ee7cb
LP
2814 versions.
2815
2816 * A new generator "systemd-verity-generator" has been added, similar in
baf32786 2817 style to "systemd-cryptsetup-generator", permitting automatic setup of
d08ee7cb
LP
2818 Verity root partitions when systemd boots up. In order to make use of
2819 this your partition setup should follow the Discoverable Partitions
2820 Specification, and the GPT partition ID of the root file system
2821 partition should be identical to the upper 128bit of the Verity root
2822 hash. The GPT partition ID of the Verity partition protecting it
2823 should be the lower 128bit of the Verity root hash. If the partition
2824 image follows this model it is sufficient to specify a single
2825 "roothash=" kernel command line argument to both configure which root
2826 image and verity partition to use as well as the root hash for
2827 it. Note that systemd-nspawn's Verity support follows the same
2828 semantics, meaning that disk images with proper Verity data in place
2829 may be booted in containers with systemd-nspawn as well as on
2830 physical systems via the verity generator. Also note that the "mkosi"
2831 tool available at https://github.com/systemd/mkosi has been updated
2832 to generate Verity protected disk images following this scheme. In
2833 fact, it has been updated to generate disk images that optionally
2834 implement a complete UEFI SecureBoot trust chain, involving a signed
2835 kernel and initrd image that incorporates such a root hash as well as
2836 a Verity-enabled root partition.
2837
d08ee7cb
LP
2838 * The hardware database (hwdb) udev supports has been updated to carry
2839 accelerometer quirks.
2840
2841 * All system services are now run with a fresh kernel keyring set up
2842 for them. The invocation ID is stored by default in it, thus
2843 providing a safe, non-overridable way to determine the invocation
2844 ID of each service.
2845
2846 * Service unit files gained new BindPaths= and BindReadOnlyPaths=
2847 options for bind mounting arbitrary paths in a service-specific
2848 way. When these options are used, arbitrary host or service files and
2849 directories may be mounted to arbitrary locations in the service's
2850 view.
2851
2852 * Documentation has been added that lists all of systemd's low-level
2853 environment variables:
2854
a8a27374 2855 https://github.com/systemd/systemd/blob/master/docs/ENVIRONMENT.md
d08ee7cb
LP
2856
2857 * sd-daemon gained a new API sd_is_socket_sockaddr() for determining
2858 whether a specific socket file descriptor matches a specified socket
2859 address.
2860
2861 * systemd-firstboot has been updated to check for the
2862 systemd.firstboot= kernel command line option. It accepts a boolean
2863 and when set to false the first boot questions are skipped.
2864
d08ee7cb 2865 * systemd-fstab-generator has been updated to check for the
23eb30b3
ZJS
2866 systemd.volatile= kernel command line option, which either takes an
2867 optional boolean parameter or the special value "state". If used the
2868 system may be booted in a "volatile" boot mode. Specifically,
2869 "systemd.volatile" is used, the root directory will be mounted as
d08ee7cb 2870 tmpfs, and only /usr is mounted from the actual root file system. If
23eb30b3
ZJS
2871 "systemd.volatile=state" is used, the root directory will be mounted
2872 as usual, but /var is mounted as tmpfs. This concept provides similar
d08ee7cb
LP
2873 functionality as systemd-nspawn's --volatile= option, but provides it
2874 on physical boots. Use this option for implementing stateless
2875 systems, or testing systems with all state and/or configuration reset
2876 to the defaults. (Note though that many distributions are not
23eb30b3 2877 prepared to boot up without a populated /etc or /var, though.)
d08ee7cb
LP
2878
2879 * systemd-gpt-auto-generator gained support for LUKS encrypted root
2880 partitions. Previously it only supported LUKS encrypted partitions
2881 for all other uses, except for the root partition itself.
2882
2883 * Socket units gained support for listening on AF_VSOCK sockets for
2884 communication in virtualized QEMU environments.
2885
2886 * The "configure" script gained a new option --with-fallback-hostname=
2887 for specifying the fallback hostname to use if none is configured in
2888 /etc/hostname. For example, by specifying
2889 --with-fallback-hostname=fedora it is possible to default to a
23eb30b3 2890 hostname of "fedora" on pristine installations.
d08ee7cb
LP
2891
2892 * systemd-cgls gained support for a new --unit= switch for listing only
2893 the control groups of a specific unit. Similar --user-unit= has been
2894 added for listing only the control groups of a specific user unit.
2895
2896 * systemd-mount gained a new --umount switch for unmounting a mount or
2897 automount point (and all mount/automount points below it).
2898
2899 * systemd will now refuse full configuration reloads (via systemctl
2900 daemon-reload and related calls) unless at least 16MiB of free space
2901 are available in /run. This is a safety precaution in order to ensure
2902 that generators can safely operate after the reload completed.
2903
2904 * A new unit file option RootImage= has been added, which has a similar
2905 effect as RootDirectory= but mounts the service's root directory from
2906 a disk image instead of plain directory. This logic reuses the same
2907 image dissection and mount logic that systemd-nspawn already uses,
2908 and hence supports any disk images systemd-nspawn supports, including
2909 those following the Discoverable Partition Specification, as well as
2910 Verity enabled images. This option enables systemd to run system
2911 services directly off disk images acting as resource bundles,
2912 possibly even including full integrity data.
2913
2914 * A new MountAPIVFS= unit file option has been added, taking a boolean
baf32786 2915 argument. If enabled /proc, /sys and /dev (collectively called the
d08ee7cb
LP
2916 "API VFS") will be mounted for the service. This is only relevant if
2917 RootDirectory= or RootImage= is used for the service, as these mounts
2918 are of course in place in the host mount namespace anyway.
2919
2920 * systemd-nspawn gained support for a new --pivot-root= switch. If
2921 specified the root directory within the container image is pivoted to
2922 the specified mount point, while the original root disk is moved to a
2923 different place. This option enables booting of ostree images
2924 directly with systemd-nspawn.
2925
d08ee7cb 2926 * The systemd build scripts will no longer complain if the NTP server
23eb30b3 2927 addresses are not changed from the defaults. Google now supports
d08ee7cb
LP
2928 these NTP servers officially. We still recommend downstreams to
2929 properly register an NTP pool with the NTP pool project though.
2930
c1ec34d1 2931 * coredumpctl gained a new "--reverse" option for printing the list
d08ee7cb
LP
2932 of coredumps in reverse order.
2933
23eb30b3
ZJS
2934 * coredumpctl will now show additional information about truncated and
2935 inaccessible coredumps, as well as coredumps that are still being
2936 processed. It also gained a new --quiet switch for suppressing
2937 additional informational message in its output.
2938
2939 * coredumpctl gained support for only showing coredumps newer and/or
2940 older than specific timestamps, using the new --since= and --until=
2941 options, reminiscent of journalctl's options by the same name.
2942
d08ee7cb 2943 * The systemd-coredump logic has been improved so that it may be reused
23eb30b3 2944 to collect backtraces in non-compiled languages, for example in
d08ee7cb
LP
2945 scripting languages such as Python.
2946
2947 * machinectl will now show the UID shift of local containers, if user
2948 namespacing is enabled for them.
2949
baf32786 2950 * systemd will now optionally run "environment generator" binaries at
d08ee7cb
LP
2951 configuration load time. They may be used to add environment
2952 variables to the environment block passed to services invoked. One
baf32786 2953 user environment generator is shipped by default that sets up
23eb30b3
ZJS
2954 environment variables based on files dropped into /etc/environment.d
2955 and ~/.config/environment.d/.
d08ee7cb 2956
a2b53448
LP
2957 * systemd-resolved now includes the new, recently published 2017 DNSSEC
2958 root key (KSK).
2959
a2b53448
LP
2960 * hostnamed has been updated to report a new chassis type of
2961 "convertible" to cover "foldable" laptops that can both act as a
2962 tablet and as a laptop, such as various Lenovo Yoga devices.
2963
d08ee7cb
LP
2964 Contributions from: Adrián López, Alexander Galanin, Alexander
2965 Kochetkov, Alexandros Frantzis, Andrey Ulanov, Antoine Eiche, Baruch
2966 Siach, Bastien Nocera, Benjamin Robin, Björn, Brandon Philips, Cédric
2967 Schieli, Charles (Chas) Williams, Christian Hesse, Daniele Medri,
2968 Daniel Drake, Daniel Rusek, Daniel Wagner, Dan Streetman, Dave Reisner,
2969 David Glasser, David Herrmann, David Michael, Djalal Harouni, Dmitry
2970 Khlebnikov, Dmitry Rozhkov, Dongsu Park, Douglas Christman, Earnestly,
2971 Emil Soleyman, Eric Cook, Evgeny Vereshchagin, Felipe Sateler, Fionn
2972 Cleary, Florian Klink, Francesco Brozzu, Franck Bui, Gabriel Rauter,
a2b53448
LP
2973 Gianluca Boiano, Giedrius Statkevičius, Graeme Lawes, Hans de Goede,
2974 Harald Hoyer, Ian Kelling, Ivan Shapovalov, Jakub Wilk, Janne Heß, Jan
2975 Synacek, Jason Reeder, Jonathan Boulle, Jörg Thalheim, Jouke Witteveen,
2976 Karl Kraus, Kees Cook, Keith Busch, Kieran Colford, kilian-k, Lennart
2977 Poettering, Lubomir Rintel, Lucas Werkmeister, Lukas Rusak, Maarten de
2978 Vries, Maks Naumov, Mantas Mikulėnas, Marc-Andre Lureau, Marcin Bachry,
2979 Mark Stosberg, Martin Ejdestig, Martin Pitt, Mauricio Faria de
2980 Oliveira, micah, Michael Biebl, Michael Shields, Michal Schmidt, Michal
2981 Sekletar, Michel Kraus, Mike Gilbert, Mikko Ylinen, Mirza Krak,
2982 Namhyung Kim, nikolaof, peoronoob, Peter Hutterer, Peter Körner, Philip
2983 Withnall, Piotr Drąg, Ray Strode, Reverend Homer, Rike-Benjamin
2984 Schuppner, Robert Kreuzer, Ronny Chevalier, Ruslan Bilovol, sammynx,
2985 Sergey Ptashnick, Sergiusz Urbaniak, Stefan Berger, Stefan Hajnoczi,
2986 Stefan Schweter, Stuart McLaren, Susant Sahani, Sylvain Plantefève,
2987 Taylor Smock, Tejun Heo, Thomas Blume, Thomas H. P. Andersen, Tibor
2988 Nagy, Tobias Stoeckmann, Tom Gundersen, Torstein Husebø, Viktar
2989 Vaŭčkievič, Viktor Mihajlovski, Vitaly Sulimov, Waldemar Brodkorb,
2990 Walter Garcia-Fontes, Wim de With, Yassine Imounachen, Yi EungJun,
2991 YunQiang Su, Yu Watanabe, Zbigniew Jędrzejewski-Szmek, Александр
2992 Тихонов
2993
2994 — Berlin, 2017-03-01
d08ee7cb 2995
54b24597 2996CHANGES WITH 232:
76153ad4 2997
05f426d2
LP
2998 * udev now runs with MemoryDenyWriteExecute=, RestrictRealtime= and
2999 RestrictAddressFamilies= enabled. These sandboxing options should
3000 generally be compatible with the various external udev call-out
3001 binaries we are aware of, however there may be exceptions, in
3002 particular when exotic languages for these call-outs are used. In
3003 this case, consider turning off these settings locally.
3004
4ffe2479
ZJS
3005 * The new RemoveIPC= option can be used to remove IPC objects owned by
3006 the user or group of a service when that service exits.
3007
6fa44114 3008 * The new ProtectKernelModules= option can be used to disable explicit
4c37970d
LP
3009 load and unload operations of kernel modules by a service. In
3010 addition access to /usr/lib/modules is removed if this option is set.
6fa44114 3011
4a77c53d
ZJS
3012 * ProtectSystem= option gained a new value "strict", which causes the
3013 whole file system tree with the exception of /dev, /proc, and /sys,
3014 to be remounted read-only for a service.
3015
e49e2c25 3016 * The new ProtectKernelTunables= option can be used to disable
4a77c53d
ZJS
3017 modification of configuration files in /sys and /proc by a service.
3018 Various directories and files are remounted read-only, so access is
3019 restricted even if the file permissions would allow it.
3020
6fa44114 3021 * The new ProtectControlGroups= option can be used to disable write
4a77c53d
ZJS
3022 access by a service to /sys/fs/cgroup.
3023
3024 * Various systemd services have been hardened with
3025 ProtectKernelTunables=yes, ProtectControlGroups=yes,
3026 RestrictAddressFamilies=.
3027
4ffe2479
ZJS
3028 * Support for dynamically creating users for the lifetime of a service
3029 has been added. If DynamicUser=yes is specified, user and group IDs
3030 will be allocated from the range 61184..65519 for the lifetime of the
3031 service. They can be resolved using the new nss-systemd.so NSS
3032 module. The module must be enabled in /etc/nsswitch.conf. Services
3033 started in this way have PrivateTmp= and RemoveIPC= enabled, so that
3034 any resources allocated by the service will be cleaned up when the
4a77c53d
ZJS
3035 service exits. They also have ProtectHome=read-only and
3036 ProtectSystem=strict enabled, so they are not able to make any
3037 permanent modifications to the system.
4ffe2479 3038
171ae2cd 3039 * The nss-systemd module also always resolves root and nobody, making
4ffe2479 3040 it possible to have no /etc/passwd or /etc/group files in minimal
171ae2cd 3041 container or chroot environments.
4ffe2479
ZJS
3042
3043 * Services may be started with their own user namespace using the new
171ae2cd
LP
3044 boolean PrivateUsers= option. Only root, nobody, and the uid/gid
3045 under which the service is running are mapped. All other users are
3046 mapped to nobody.
4ffe2479
ZJS
3047
3048 * Support for the cgroup namespace has been added to systemd-nspawn. If
3049 supported by kernel, the container system started by systemd-nspawn
3050 will have its own view of the cgroup hierarchy. This new behaviour
3051 can be disabled using $SYSTEMD_NSPAWN_USE_CGNS environment variable.
3052
3053 * The new MemorySwapMax= option can be used to limit the maximum swap
3054 usage under the unified cgroup hierarchy.
3055
3056 * Support for the CPU controller in the unified cgroup hierarchy has
3057 been added, via the CPUWeight=, CPUStartupWeight=, CPUAccounting=
3058 options. This controller requires out-of-tree patches for the kernel
3059 and the support is provisional.
3060
171ae2cd
LP
3061 * Mount and automount units may now be created transiently
3062 (i.e. dynamically at runtime via the bus API, instead of requiring
3063 unit files in the file system).
3064
3065 * systemd-mount is a new tool which may mount file systems – much like
3066 mount(8), optionally pulling in additional dependencies through
3067 transient .mount and .automount units. For example, this tool
3068 automatically runs fsck on a backing block device before mounting,
3069 and allows the automount logic to be used dynamically from the
3070 command line for establishing mount points. This tool is particularly
3071 useful when dealing with removable media, as it will ensure fsck is
3072 run – if necessary – before the first access and that the file system
3073 is quickly unmounted after each access by utilizing the automount
3074 logic. This maximizes the chance that the file system on the
3075 removable media stays in a clean state, and if it isn't in a clean
3076 state is fixed automatically.
4ffe2479
ZJS
3077
3078 * LazyUnmount=yes option for mount units has been added to expose the
3079 umount --lazy option. Similarly, ForceUnmount=yes exposes the --force
3080 option.
3081
3082 * /efi will be used as the mount point of the EFI boot partition, if
3083 the directory is present, and the mount point was not configured
3084 through other means (e.g. fstab). If /efi directory does not exist,
3085 /boot will be used as before. This makes it easier to automatically
3086 mount the EFI partition on systems where /boot is used for something
3087 else.
3088
171ae2cd
LP
3089 * When operating on GPT disk images for containers, systemd-nspawn will
3090 now mount the ESP to /boot or /efi according to the same rules as PID
3091 1 running on a host. This allows tools like "bootctl" to operate
3092 correctly within such containers, in order to make container images
3093 bootable on physical systems.
3094
4a77c53d 3095 * disk/by-id and disk/by-path symlinks are now created for NVMe drives.
4ffe2479
ZJS
3096
3097 * Two new user session targets have been added to support running
3098 graphical sessions under the systemd --user instance:
3099 graphical-session.target and graphical-session-pre.target. See
3100 systemd.special(7) for a description of how those targets should be
3101 used.
3102
3103 * The vconsole initialization code has been significantly reworked to
d4c08299 3104 use KD_FONT_OP_GET/SET ioctls instead of KD_FONT_OP_COPY and better
4ffe2479
ZJS
3105 support unicode keymaps. Font and keymap configuration will now be
3106 copied to all allocated virtual consoles.
3107
05ecf467 3108 * FreeBSD's bhyve virtualization is now detected.
4ffe2479 3109
d4c08299 3110 * Information recorded in the journal for core dumps now includes the
4ffe2479
ZJS
3111 contents of /proc/mountinfo and the command line of the process at
3112 the top of the process hierarchy (which is usually the init process
3113 of the container).
3114
171ae2cd 3115 * systemd-journal-gatewayd learned the --directory= option to serve
4ffe2479
ZJS
3116 files from the specified location.
3117
3118 * journalctl --root=… can be used to peruse the journal in the
3119 /var/log/ directories inside of a container tree. This is similar to
3120 the existing --machine= option, but does not require the container to
3121 be active.
3122
3123 * The hardware database has been extended to support
3124 ID_INPUT_TRACKBALL, used in addition to ID_INPUT_MOUSE to identify
3125 trackball devices.
3126
3127 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL hwdb property has been added to
3128 specify the click rate for mice which include a horizontal wheel with
3129 a click rate that is different than the one for the vertical wheel.
3130
3131 * systemd-run gained a new --wait option that makes service execution
171ae2cd
LP
3132 synchronous. (Specifically, the command will not return until the
3133 specified service binary exited.)
4ffe2479 3134
171ae2cd 3135 * systemctl gained a new --wait option that causes the start command to
4a77c53d
ZJS
3136 wait until the units being started have terminated again.
3137
171ae2cd 3138 * A new journal output mode "short-full" has been added which displays
4ffe2479 3139 timestamps with abbreviated English day names and adds a timezone
171ae2cd
LP
3140 suffix. Those timestamps include more information than the default
3141 "short" output mode, and can be passed directly to journalctl's
3142 --since= and --until= options.
4ffe2479
ZJS
3143
3144 * /etc/resolv.conf will be bind-mounted into containers started by
3145 systemd-nspawn, if possible, so any changes to resolv.conf contents
3146 are automatically propagated to the container.
3147
3148 * The number of instances for socket-activated services originating
171ae2cd
LP
3149 from a single IP address can be limited with
3150 MaxConnectionsPerSource=, extending the existing setting of
3151 MaxConnections=.
4ffe2479 3152
4a77c53d
ZJS
3153 * systemd-networkd gained support for vcan ("Virtual CAN") interface
3154 configuration.
3155
3156 * .netdev and .network configuration can now be extended through
3157 drop-ins.
3158
4ffe2479
ZJS
3159 * UDP Segmentation Offload, TCP Segmentation Offload, Generic
3160 Segmentation Offload, Generic Receive Offload, Large Receive Offload
3161 can be enabled and disabled using the new UDPSegmentationOffload=,
3162 TCPSegmentationOffload=, GenericSegmentationOffload=,
3163 GenericReceiveOffload=, LargeReceiveOffload= options in the
3164 [Link] section of .link files.
3165
171ae2cd
LP
3166 * The Spanning Tree Protocol, Priority, Aging Time, and the Default
3167 Port VLAN ID can be configured for bridge devices using the new STP=,
3168 Priority=, AgeingTimeSec=, and DefaultPVID= settings in the [Bridge]
3169 section of .netdev files.
4ffe2479 3170
171ae2cd 3171 * The route table to which routes received over DHCP or RA should be
4a77c53d
ZJS
3172 added can be configured with the new RouteTable= option in the [DHCP]
3173 and [IPv6AcceptRA] sections of .network files.
3174
171ae2cd 3175 * The Address Resolution Protocol can be disabled on links managed by
4ffe2479
ZJS
3176 systemd-networkd using the ARP=no setting in the [Link] section of
3177 .network files.
3178
171ae2cd
LP
3179 * New environment variables $SERVICE_RESULT, $EXIT_CODE and
3180 $EXIT_STATUS are set for ExecStop= and ExecStopPost= commands, and
3181 encode information about the result and exit codes of the current
3182 service runtime cycle.
4ffe2479 3183
4a77c53d 3184 * systemd-sysctl will now configure kernel parameters in the order
1f4f4cf7 3185 they occur in the configuration files. This matches what sysctl
4a77c53d
ZJS
3186 has been traditionally doing.
3187
3188 * kernel-install "plugins" that are executed to perform various
3189 tasks after a new kernel is added and before an old one is removed
3190 can now return a special value to terminate the procedure and
3191 prevent any later plugins from running.
3192
76153ad4 3193 * Journald's SplitMode=login setting has been deprecated. It has been
d4c08299 3194 removed from documentation, and its use is discouraged. In a future
76153ad4
ZJS
3195 release it will be completely removed, and made equivalent to current
3196 default of SplitMode=uid.
3197
4a77c53d
ZJS
3198 * Storage=both option setting in /etc/systemd/coredump.conf has been
3199 removed. With fast LZ4 compression storing the core dump twice is not
3200 useful.
3201
4ffe2479
ZJS
3202 * The --share-system systemd-nspawn option has been replaced with an
3203 (undocumented) variable $SYSTEMD_NSPAWN_SHARE_SYSTEM, but the use of
3204 this functionality is discouraged. In addition the variables
3205 $SYSTEMD_NSPAWN_SHARE_NS_IPC, $SYSTEMD_NSPAWN_SHARE_NS_PID,
3206 $SYSTEMD_NSPAWN_SHARE_NS_UTS may be used to control the unsharing of
3207 individual namespaces.
3208
171ae2cd
LP
3209 * "machinectl list" now shows the IP address of running containers in
3210 the output, as well as OS release information.
3211
3212 * "loginctl list" now shows the TTY of each session in the output.
3213
3214 * sd-bus gained new API calls sd_bus_track_set_recursive(),
3215 sd_bus_track_get_recursive(), sd_bus_track_count_name(),
3216 sd_bus_track_count_sender(). They permit usage of sd_bus_track peer
3217 tracking objects in a "recursive" mode, where a single client can be
3218 counted multiple times, if it takes multiple references.
3219
3220 * sd-bus gained new API calls sd_bus_set_exit_on_disconnect() and
bc99dac5 3221 sd_bus_get_exit_on_disconnect(). They may be used to make a
171ae2cd
LP
3222 process using sd-bus automatically exit if the bus connection is
3223 severed.
3224
3225 * Bus clients of the service manager may now "pin" loaded units into
3226 memory, by taking an explicit reference on them. This is useful to
3227 ensure the client can retrieve runtime data about the service even
3228 after the service completed execution. Taking such a reference is
3229 available only for privileged clients and should be helpful to watch
3230 running services in a race-free manner, and in particular collect
3231 information about exit statuses and results.
3232
4c37970d
LP
3233 * The nss-resolve module has been changed to strictly return UNAVAIL
3234 when communication via D-Bus with resolved failed, and NOTFOUND when
3235 a lookup completed but was negative. This means it is now possible to
3236 neatly configure fallbacks using nsswitch.conf result checking
3237 expressions. Taking benefit of this, the new recommended
3238 configuration line for the "hosts" entry in /etc/nsswitch.conf is:
3239
3240 hosts: files mymachines resolve [!UNAVAIL=return] dns myhostname
3241
3242 * A new setting CtrlAltDelBurstAction= has been added to
3243 /etc/systemd/system.conf which may be used to configure the precise
3244 behaviour if the user on the console presses Ctrl-Alt-Del more often
3245 than 7 times in 2s. Previously this would unconditionally result in
3246 an expedited, immediate reboot. With this new setting the precise
3247 operation may be configured in more detail, and also turned off
3248 entirely.
3249
3250 * In .netdev files two new settings RemoteChecksumTx= and
3251 RemoteChecksumRx= are now understood that permit configuring the
3252 remote checksumming logic for VXLAN networks.
3253
3254 * The service manager learnt a new "invocation ID" concept for invoked
3255 services. Each runtime cycle of a service will get a new invocation
3256 ID (a 128bit random UUID) assigned that identifies the current
3257 run of the service uniquely and globally. A new invocation ID
3258 is generated each time a service starts up. The journal will store
3259 the invocation ID of a service along with any logged messages, thus
3260 making the invocation ID useful for matching the online runtime of a
3261 service with the offline log data it generated in a safe way without
3262 relying on synchronized timestamps. In many ways this new service
3263 invocation ID concept is similar to the kernel's boot ID concept that
3264 uniquely and globally identifies the runtime of each boot. The
3265 invocation ID of a service is passed to the service itself via an
3266 environment variable ($INVOCATION_ID). A new bus call
3267 GetUnitByInvocationID() has been added that is similar to GetUnit()
3268 but instead of retrieving the bus path for a unit by its name
3269 retrieves it by its invocation ID. The returned path is valid only as
3270 long as the passed invocation ID is current.
3271
3272 * systemd-resolved gained a new "DNSStubListener" setting in
3273 resolved.conf. It either takes a boolean value or the special values
3274 "udp" and "tcp", and configures whether to enable the stub DNS
3275 listener on 127.0.0.53:53.
3276
3277 * IP addresses configured via networkd may now carry additional
3278 configuration settings supported by the kernel. New options include:
3279 HomeAddress=, DuplicateAddressDetection=, ManageTemporaryAddress=,
3280 PrefixRoute=, AutoJoin=.
3281
3282 * The PAM configuration fragment file for "user@.service" shipped with
3283 systemd (i.e. the --user instance of systemd) has been stripped to
3284 the minimum necessary to make the system boot. Previously, it
3285 contained Fedora-specific stanzas that did not apply to other
3286 distributions. It is expected that downstream distributions add
3287 additional configuration lines, matching their needs to this file,
3288 using it only as rough template of what systemd itself needs. Note
3289 that this reduced fragment does not even include an invocation of
3290 pam_limits which most distributions probably want to add, even though
3291 systemd itself does not need it. (There's also the new build time
3292 option --with-pamconfdir=no to disable installation of the PAM
3293 fragment entirely.)
3294
3295 * If PrivateDevices=yes is set for a service the CAP_SYS_RAWIO
3296 capability is now also dropped from its set (in addition to
3297 CAP_SYS_MKNOD as before).
3298
3299 * In service unit files it is now possible to connect a specific named
3300 file descriptor with stdin/stdout/stdout of an executed service. The
3301 name may be specified in matching .socket units using the
3302 FileDescriptorName= setting.
3303
3304 * A number of journal settings may now be configured on the kernel
3305 command line. Specifically, the following options are now understood:
3306 systemd.journald.max_level_console=,
3307 systemd.journald.max_level_store=,
3308 systemd.journald.max_level_syslog=, systemd.journald.max_level_kmsg=,
3309 systemd.journald.max_level_wall=.
3310
3311 * "systemctl is-enabled --full" will now show by which symlinks a unit
3312 file is enabled in the unit dependency tree.
3313
b4eed568
LP
3314 * Support for VeraCrypt encrypted partitions has been added to the
3315 "cryptsetup" logic and /etc/crypttab.
3316
3317 * systemd-detect-virt gained support for a new --private-users switch
3318 that checks whether the invoking processes are running inside a user
3319 namespace. Similar, a new special value "private-users" for the
3320 existing ConditionVirtualization= setting has been added, permitting
3321 skipping of specific units in user namespace environments.
3322
07393b6e
LP
3323 Contributions from: Alban Crequy, Alexander Kuleshov, Alfie John,
3324 Andreas Henriksson, Andrew Jeddeloh, Balázs Úr, Bart Rulon, Benjamin
3325 Richter, Ben Gamari, Ben Harris, Brian J. Murrell, Christian Brauner,
3326 Christian Rebischke, Clinton Roy, Colin Walters, Cristian Rodríguez,
3327 Daniel Hahler, Daniel Mack, Daniel Maixner, Daniel Rusek, Dan Dedrick,
3328 Davide Cavalca, David Herrmann, David Michael, Dennis Wassenberg,
3329 Djalal Harouni, Dongsu Park, Douglas Christman, Elias Probst, Eric
3330 Cook, Erik Karlsson, Evgeny Vereshchagin, Felipe Sateler, Felix Zhang,
3331 Franck Bui, George Hilliard, Giuseppe Scrivano, HATAYAMA Daisuke,
3332 Heikki Kemppainen, Hendrik Brueckner, hi117, Ismo Puustinen, Ivan
3333 Shapovalov, Jakub Filak, Jakub Wilk, Jan Synacek, Jason Kölker,
3334 Jean-Sébastien Bour, Jiří Pírko, Jonathan Boulle, Jorge Niedbalski,
3335 Keith Busch, kristbaum, Kyle Russell, Lans Zhang, Lennart Poettering,
3336 Leonardo Brondani Schenkel, Lucas Werkmeister, Luca Bruno, Lukáš
3337 Nykrýn, Maciek Borzecki, Mantas Mikulėnas, Marc-Antoine Perennou,
3338 Marcel Holtmann, Marcos Mello, Martin Ejdestig, Martin Pitt, Matej
3339 Habrnal, Maxime de Roucy, Michael Biebl, Michael Chapman, Michael Hoy,
3340 Michael Olbrich, Michael Pope, Michal Sekletar, Michal Soltys, Mike
3341 Gilbert, Nick Owens, Patrik Flykt, Paweł Szewczyk, Peter Hutterer,
3342 Piotr Drąg, Reid Price, Richard W.M. Jones, Roman Stingler, Ronny
3343 Chevalier, Seraphime Kirkovski, Stefan Schweter, Steve Muir, Susant
3344 Sahani, Tejun Heo, Thomas Blume, Thomas H. P. Andersen, Tiago Levit,
3345 Tobias Jungel, Tomáš Janoušek, Topi Miettinen, Torstein Husebø, Umut
3346 Tezduyar Lindskog, Vito Caputo, WaLyong Cho, Wilhelm Schuster, Yann
3347 E. MORIN, Yi EungJun, Yuki Inoguchi, Yu Watanabe, Zbigniew
3348 Jędrzejewski-Szmek, Zeal Jagannatha
3349
54b24597 3350 — Santa Fe, 2016-11-03
07393b6e 3351
5cd118ba
MP
3352CHANGES WITH 231:
3353
fcd30826
LP
3354 * In service units the various ExecXYZ= settings have been extended
3355 with an additional special character as first argument of the
43eb109a 3356 assigned value: if the character '+' is used the specified command
fcd30826
LP
3357 line it will be run with full privileges, regardless of User=,
3358 Group=, CapabilityBoundingSet= and similar options. The effect is
3359 similar to the existing PermissionsStartOnly= option, but allows
3360 configuration of this concept for each executed command line
3361 independently.
3362
3363 * Services may now alter the service watchdog timeout at runtime by
3364 sending a WATCHDOG_USEC= message via sd_notify().
3365
3366 * MemoryLimit= and related unit settings now optionally take percentage
3367 specifications. The percentage is taken relative to the amount of
3368 physical memory in the system (or in case of containers, the assigned
3369 amount of memory). This allows scaling service resources neatly with
771de3f5 3370 the amount of RAM available on the system. Similarly, systemd-logind's
fcd30826
LP
3371 RuntimeDirectorySize= option now also optionally takes percentage
3372 values.
3373
3374 * In similar fashion TasksMax= takes percentage values now, too. The
3375 value is taken relative to the configured maximum number of processes
3376 on the system. The per-service task maximum has been changed to 15%
3377 using this functionality. (Effectively this is an increase of 512 →
3378 4915 for service units, given the kernel's default pid_max setting.)
3379
3380 * Calendar time specifications in .timer units now understand a ".."
3381 syntax for time ranges. Example: "4..7:10" may now be used for
3382 defining a timer that is triggered at 4:10am, 5:10am, 6:10am and
3383 7:10am every day.
3384
3385 * The InaccessableDirectories=, ReadOnlyDirectories= and
3386 ReadWriteDirectories= unit file settings have been renamed to
3387 InaccessablePaths=, ReadOnlyPaths= and ReadWritePaths= and may now be
3388 applied to all kinds of file nodes, and not just directories, with
3389 the exception of symlinks. Specifically these settings may now be
3390 used on block and character device nodes, UNIX sockets and FIFOS as
3391 well as regular files. The old names of these settings remain
3392 available for compatibility.
3393
3394 * systemd will now log about all service processes it kills forcibly
3395 (using SIGKILL) because they remained after the clean shutdown phase
3396 of the service completed. This should help identifying services that
3397 shut down uncleanly. Moreover if KillUserProcesses= is enabled in
3398 systemd-logind's configuration a similar log message is generated for
3399 processes killed at the end of each session due to this setting.
3400
3401 * systemd will now set the $JOURNAL_STREAM environment variable for all
3402 services whose stdout/stderr are connected to the Journal (which
3403 effectively means by default: all services). The variable contains
3404 the device and inode number of the file descriptor used for
3405 stdout/stderr. This may be used by invoked programs to detect whether
3406 their stdout/stderr is connected to the Journal, in which case they
3407 can switch over to direct Journal communication, thus being able to
3408 pass extended, structured metadata along with their log messages. As
3409 one example, this is now used by glib's logging primitives.
3410
3411 * When using systemd's default tmp.mount unit for /tmp, the mount point
3412 will now be established with the "nosuid" and "nodev" options. This
3413 avoids privilege escalation attacks that put traps and exploits into
3414 /tmp. However, this might cause problems if you e. g. put container
5cd118ba
MP
3415 images or overlays into /tmp; if you need this, override tmp.mount's
3416 "Options=" with a drop-in, or mount /tmp from /etc/fstab with your
3417 desired options.
3418
fcd30826 3419 * systemd now supports the "memory" cgroup controller also on
4e1dfa45 3420 cgroup v2.
fcd30826
LP
3421
3422 * The systemd-cgtop tool now optionally takes a control group path as
3423 command line argument. If specified, the control group list shown is
3424 limited to subgroups of that group.
3425
3426 * The SystemCallFilter= unit file setting gained support for
3427 pre-defined, named system call filter sets. For example
3428 SystemCallFilter=@clock is now an effective way to make all clock
771de3f5 3429 changing-related system calls unavailable to a service. A number of
fcd30826
LP
3430 similar pre-defined groups are defined. Writing system call filters
3431 for system services is simplified substantially with this new
3432 concept. Accordingly, all of systemd's own, long-running services now
3433 enable system call filtering based on this, by default.
3434
3435 * A new service setting MemoryDenyWriteExecute= has been added, taking
3436 a boolean value. If turned on, a service may no longer create memory
3437 mappings that are writable and executable at the same time. This
3438 enhances security for services where this is enabled as it becomes
3439 harder to dynamically write and then execute memory in exploited
3440 service processes. This option has been enabled for all of systemd's
3441 own long-running services.
3442
3443 * A new RestrictRealtime= service setting has been added, taking a
3444 boolean argument. If set the service's processes may no longer
3445 acquire realtime scheduling. This improves security as realtime
3446 scheduling may otherwise be used to easily freeze the system.
3447
3448 * systemd-nspawn gained a new switch --notify-ready= taking a boolean
3449 value. This may be used for requesting that the system manager inside
3450 of the container reports start-up completion to nspawn which then
3451 propagates this notification further to the service manager
3452 supervising nspawn itself. A related option NotifyReady= in .nspawn
3453 files has been added too. This functionality allows ordering of the
3454 start-up of multiple containers using the usual systemd ordering
3455 primitives.
3456
3457 * machinectl gained a new command "stop" that is an alias for
3458 "terminate".
3459
3460 * systemd-resolved gained support for contacting DNS servers on
3461 link-local IPv6 addresses.
3462
3463 * If systemd-resolved receives the SIGUSR2 signal it will now flush all
3464 its caches. A method call for requesting the same operation has been
3465 added to the bus API too, and is made available via "systemd-resolve
3466 --flush-caches".
3467
771de3f5 3468 * systemd-resolve gained a new --status switch. If passed a brief
fcd30826
LP
3469 summary of the used DNS configuration with per-interface information
3470 is shown.
3471
3472 * resolved.conf gained a new Cache= boolean option, defaulting to
3473 on. If turned off local DNS caching is disabled. This comes with a
3474 performance penalty in particular when DNSSEC is enabled. Note that
771de3f5 3475 resolved disables its internal caching implicitly anyway, when the
fcd30826
LP
3476 configured DNS server is on a host-local IP address such as ::1 or
3477 127.0.0.1, thus automatically avoiding double local caching.
3478
3479 * systemd-resolved now listens on the local IP address 127.0.0.53:53
3480 for DNS requests. This improves compatibility with local programs
3481 that do not use the libc NSS or systemd-resolved's bus APIs for name
3482 resolution. This minimal DNS service is only available to local
3483 programs and does not implement the full DNS protocol, but enough to
3484 cover local DNS clients. A new, static resolv.conf file, listing just
3485 this DNS server is now shipped in /usr/lib/systemd/resolv.conf. It is
3486 now recommended to make /etc/resolv.conf a symlink to this file in
3487 order to route all DNS lookups to systemd-resolved, regardless if
3488 done via NSS, the bus API or raw DNS packets. Note that this local
3489 DNS service is not as fully featured as the libc NSS or
3490 systemd-resolved's bus APIs. For example, as unicast DNS cannot be
3491 used to deliver link-local address information (as this implies
3492 sending a local interface index along), LLMNR/mDNS support via this
3493 interface is severely restricted. It is thus strongly recommended for
3494 all applications to use the libc NSS API or native systemd-resolved
3495 bus API instead.
3496
3497 * systemd-networkd's bridge support learned a new setting
3498 VLANFiltering= for controlling VLAN filtering. Moreover a new section
3499 in .network files has been added for configuring VLAN bridging in
3500 more detail: VLAN=, EgressUntagged=, PVID= in [BridgeVLAN].
3501
3502 * systemd-networkd's IPv6 Router Advertisement code now makes use of
3503 the DNSSL and RDNSS options. This means IPv6 DNS configuration may
3504 now be acquired without relying on DHCPv6. Two new options
3505 UseDomains= and UseDNS= have been added to configure this behaviour.
3506
3507 * systemd-networkd's IPv6AcceptRouterAdvertisements= option has been
3508 renamed IPv6AcceptRA=, without altering its behaviour. The old
3509 setting name remains available for compatibility reasons.
3510
3511 * The systemd-networkd VTI/VTI6 tunneling support gained new options
3512 Key=, InputKey= and OutputKey=.
3513
3514 * systemd-networkd gained support for VRF ("Virtual Routing Function")
3515 interface configuration.
3516
3517 * "systemctl edit" may now be used to create new unit files by
3518 specifying the --force switch.
3519
3520 * sd-event gained a new function sd_event_get_iteration() for
3521 requesting the current iteration counter of the event loop. It starts
3522 at zero and is increased by one with each event loop iteration.
3523
43a569a1
ZJS
3524 * A new rpm macro %systemd_ordering is provided by the macros.systemd
3525 file. It can be used in lieu of %systemd_requires in packages which
3526 don't use any systemd functionality and are intended to be installed
3527 in minimal containers without systemd present. This macro provides
ce830873 3528 ordering dependencies to ensure that if the package is installed in
43a569a1
ZJS
3529 the same rpm transaction as systemd, systemd will be installed before
3530 the scriptlets for the package are executed, allowing unit presets
3531 to be handled.
3532
3533 New macros %_systemdgeneratordir and %_systemdusergeneratordir have
3534 been added to simplify packaging of generators.
3535
3536 * The os-release file gained VERSION_CODENAME field for the
3537 distribution nickname (e.g. VERSION_CODENAME=woody).
3538
3539 * New udev property UDEV_DISABLE_PERSISTENT_STORAGE_RULES_FLAG=1
3540 can be set to disable parsing of metadata and the creation
3541 of persistent symlinks for that device.
3542
0f1da52b
LP
3543 * The v230 change to tag framebuffer devices (/dev/fb*) with "uaccess"
3544 to make them available to logged-in users has been reverted.
3545
3546 * Much of the common code of the various systemd components is now
3547 built into an internal shared library libsystemd-shared-231.so
3548 (incorporating the systemd version number in the name, to be updated
3549 with future releases) that the components link to. This should
3550 decrease systemd footprint both in memory during runtime and on
3551 disk. Note that the shared library is not for public use, and is
ead6bd25 3552 neither API nor ABI stable, but is likely to change with every new
1ecbf32f
ZJS
3553 released update. Packagers need to make sure that binaries
3554 linking to libsystemd-shared.so are updated in step with the
3555 library.
43a569a1 3556
fcd30826
LP
3557 * Configuration for "mkosi" is now part of the systemd
3558 repository. mkosi is a tool to easily build legacy-free OS images,
3559 and is available on github: https://github.com/systemd/mkosi. If
3560 "mkosi" is invoked in the build tree a new raw OS image is generated
3561 incorporating the systemd sources currently being worked on and a
3562 clean, fresh distribution installation. The generated OS image may be
ce830873 3563 booted up with "systemd-nspawn -b -i", qemu-kvm or on any physical
fcd30826
LP
3564 UEFI PC. This functionality is particularly useful to easily test
3565 local changes made to systemd in a pristine, defined environment. See
f09eb768 3566 doc/HACKING for details.
ceeddf79 3567
4ffe2479
ZJS
3568 * configure learned the --with-support-url= option to specify the
3569 distribution's bugtracker.
3570
38b383d9
LP
3571 Contributions from: Alban Crequy, Alessandro Puccetti, Alessio Igor
3572 Bogani, Alexander Kuleshov, Alexander Kurtz, Alex Gaynor, Andika
3573 Triwidada, Andreas Pokorny, Andreas Rammhold, Andrew Jeddeloh, Ansgar
3574 Burchardt, Atrotors, Benjamin Drung, Brian Boylston, Christian Hesse,
3575 Christian Rebischke, Daniele Medri, Daniel Mack, Dave Reisner, David
3576 Herrmann, David Michael, Djalal Harouni, Douglas Christman, Elias
3577 Probst, Evgeny Vereshchagin, Federico Mena Quintero, Felipe Sateler,
3578 Franck Bui, Harald Hoyer, Ian Lee, Ivan Shapovalov, Jakub Wilk, Jan
3579 Janssen, Jean-Sébastien Bour, John Paul Adrian Glaubitz, Jouke
3580 Witteveen, Kai Ruhnau, kpengboy, Kyle Walker, Lénaïc Huard, Lennart
3581 Poettering, Luca Bruno, Lukas Lösche, Lukáš Nykrýn, mahkoh, Marcel
3582 Holtmann, Martin Pitt, Marty Plummer, Matthieu Codron, Max Prokhorov,
3583 Michael Biebl, Michael Karcher, Michael Olbrich, Michał Bartoszkiewicz,
3584 Michal Sekletar, Michal Soltys, Minkyung, Muhammet Kara, mulkieran,
3585 Otto Wallenius, Pablo Lezaeta Reyes, Peter Hutterer, Ronny Chevalier,
3586 Rusty Bird, Stef Walter, Susant Sahani, Tejun Heo, Thomas Blume, Thomas
771de3f5
ZJS
3587 Haller, Thomas H. P. Andersen, Tobias Jungel, Tom Gundersen, Tom Yan,
3588 Topi Miettinen, Torstein Husebø, Valentin Vidić, Viktar Vaŭčkievič,
38b383d9 3589 WaLyong Cho, Weng Xuetian, Werner Fink, Zbigniew Jędrzejewski-Szmek
5cd118ba 3590
38b383d9 3591 — Berlin, 2016-07-25
5cd118ba 3592
46e40fab 3593CHANGES WITH 230:
7f6e8043 3594
61ecb465
LP
3595 * DNSSEC is now turned on by default in systemd-resolved (in
3596 "allow-downgrade" mode), but may be turned off during compile time by
3597 passing "--with-default-dnssec=no" to "configure" (and of course,
3598 during runtime with DNSSEC= in resolved.conf). We recommend
3599 downstreams to leave this on at least during development cycles and
3600 report any issues with the DNSSEC logic upstream. We are very
3601 interested in collecting feedback about the DNSSEC validator and its
3602 limitations in the wild. Note however, that DNSSEC support is
3603 probably nothing downstreams should turn on in stable distros just
96d49011 3604 yet, as it might create incompatibilities with a few DNS servers and
61ecb465
LP
3605 networks. We tried hard to make sure we downgrade to non-DNSSEC mode
3606 automatically whenever we detect such incompatible setups, but there
3607 might be systems we do not cover yet. Hence: please help us testing
3608 the DNSSEC code, leave this on where you can, report back, but then
3609 again don't consider turning this on in your stable, LTS or
e40a326c
LP
3610 production release just yet. (Note that you have to enable
3611 nss-resolve in /etc/nsswitch.conf, to actually use systemd-resolved
3612 and its DNSSEC mode for host name resolution from local
3613 applications.)
61ecb465 3614
96515dbf 3615 * systemd-resolve conveniently resolves DANE records with the --tlsa
e40a326c 3616 option and OPENPGPKEY records with the --openpgp option. It also
e75690c3 3617 supports dumping raw DNS record data via the new --raw= switch.
96515dbf 3618
97e5530c
ZJS
3619 * systemd-logind will now by default terminate user processes that are
3620 part of the user session scope unit (session-XX.scope) when the user
977f2bea 3621 logs out. This behavior is controlled by the KillUserProcesses=
e40a326c
LP
3622 setting in logind.conf, and the previous default of "no" is now
3623 changed to "yes". This means that user sessions will be properly
3624 cleaned up after, but additional steps are necessary to allow
3625 intentionally long-running processes to survive logout.
97e5530c
ZJS
3626
3627 While the user is logged in at least once, user@.service is running,
3628 and any service that should survive the end of any individual login
3629 session can be started at a user service or scope using systemd-run.
e40a326c 3630 systemd-run(1) man page has been extended with an example which shows
8951eaec 3631 how to run screen in a scope unit underneath user@.service. The same
e40a326c 3632 command works for tmux.
97e5530c
ZJS
3633
3634 After the user logs out of all sessions, user@.service will be
3635 terminated too, by default, unless the user has "lingering" enabled.
3636 To effectively allow users to run long-term tasks even if they are
152199f2
ZJS
3637 logged out, lingering must be enabled for them. See loginctl(1) for
3638 details. The default polkit policy was modified to allow users to
3639 set lingering for themselves without authentication.
7f6e8043 3640
95365a57 3641 Previous defaults can be restored at compile time by the
e40a326c 3642 --without-kill-user-processes option to "configure".
7f6e8043 3643
e75690c3
ZJS
3644 * systemd-logind gained new configuration settings SessionsMax= and
3645 InhibitorsMax=, both with a default of 8192. It will not register new
188d3082 3646 user sessions or inhibitors above this limit.
e75690c3
ZJS
3647
3648 * systemd-logind will now reload configuration on SIGHUP.
3649
96515dbf 3650 * The unified cgroup hierarchy added in Linux 4.5 is now supported.
e40a326c 3651 Use systemd.unified_cgroup_hierarchy=1 on the kernel command line to
25b0e6cb
LP
3652 enable. Also, support for the "io" cgroup controller in the unified
3653 hierarchy has been added, so that the "memory", "pids" and "io" are
3654 now the controllers that are supported on the unified hierarchy.
e40a326c 3655
96515dbf
ZJS
3656 WARNING: it is not possible to use previous systemd versions with
3657 systemd.unified_cgroup_hierarchy=1 and the new kernel. Therefore it
3658 is necessary to also update systemd in the initramfs if using the
e40a326c 3659 unified hierarchy. An updated SELinux policy is also required.
96515dbf 3660
e40a326c
LP
3661 * LLDP support has been extended, and both passive (receive-only) and
3662 active (sender) modes are supported. Passive mode ("routers-only") is
8951eaec
ZJS
3663 enabled by default in systemd-networkd. Active LLDP mode is enabled
3664 by default for containers on the internal network. The "networkctl
e40a326c
LP
3665 lldp" command may be used to list information gathered. "networkctl
3666 status" will also show basic LLDP information on connected peers now.
96515dbf 3667
e40a326c
LP
3668 * The IAID and DUID unique identifier sent in DHCP requests may now be
3669 configured for the system and each .network file managed by
e75690c3
ZJS
3670 systemd-networkd using the DUIDType=, DUIDRawData=, IAID= options.
3671
3672 * systemd-networkd gained support for configuring proxy ARP support for
3673 each interface, via the ProxyArp= setting in .network files. It also
3674 gained support for configuring the multicast querier feature of
3675 bridge devices, via the new MulticastQuerier= setting in .netdev
3676 files. Similarly, snooping on the IGMP traffic can be controlled
3677 via the new setting MulticastSnooping=.
3678
3679 A new setting PreferredLifetime= has been added for addresses
3680 configured in .network file to configure the lifetime intended for an
3681 address.
3682
3683 The systemd-networkd DHCP server gained the option EmitRouter=, which
3684 defaults to yes, to configure whether the DHCP Option 3 (Router)
3685 should be emitted.
96515dbf 3686
e40a326c 3687 * The testing tool /usr/lib/systemd/systemd-activate is renamed to
97e5530c
ZJS
3688 systemd-socket-activate and installed into /usr/bin. It is now fully
3689 supported.
3690
e40a326c
LP
3691 * systemd-journald now uses separate threads to flush changes to disk
3692 when closing journal files, thus reducing impact of slow disk I/O on
3693 logging performance.
96515dbf 3694
e75690c3
ZJS
3695 * The sd-journal API gained two new calls
3696 sd_journal_open_directory_fd() and sd_journal_open_files_fd() which
3697 can be used to open journal files using file descriptors instead of
3698 file or directory paths. sd_journal_open_container() has been
3699 deprecated, sd_journal_open_directory_fd() should be used instead
3700 with the flag SD_JOURNAL_OS_ROOT.
3701
3702 * journalctl learned a new output mode "-o short-unix" that outputs log
3703 lines prefixed by their UNIX time (i.e. seconds since Jan 1st, 1970
3704 UTC). It also gained support for a new --no-hostname setting to
3705 suppress the hostname column in the family of "short" output modes.
3706
e40a326c
LP
3707 * systemd-ask-password now optionally skips printing of the password to
3708 stdout with --no-output which can be useful in scripts.
96515dbf
ZJS
3709
3710 * Framebuffer devices (/dev/fb*) and 3D printers and scanners
3711 (devices tagged with ID_MAKER_TOOL) are now tagged with
3712 "uaccess" and are available to logged in users.
3713
e75690c3 3714 * The DeviceAllow= unit setting now supports specifiers (with "%").
e40a326c
LP
3715
3716 * "systemctl show" gained a new --value switch, which allows print a
3717 only the contents of a specific unit property, without also printing
8951eaec
ZJS
3718 the property's name. Similar support was added to "show*" verbs
3719 of loginctl and machinectl that output "key=value" lists.
e40a326c 3720
e75690c3
ZJS
3721 * A new unit type "generated" was added for files dynamically generated
3722 by generator tools. Similarly, a new unit type "transient" is used
3723 for unit files created using the runtime API. "systemctl enable" will
3724 refuse to operate on such files.
3725
e40a326c
LP
3726 * A new command "systemctl revert" has been added that may be used to
3727 revert to the vendor version of a unit file, in case local changes
3728 have been made by adding drop-ins or overriding the unit file.
3729
3730 * "machinectl clean" gained a new verb to automatically remove all or
3731 just hidden container images.
3732
e40a326c
LP
3733 * systemd-tmpfiles gained support for a new line type "e" for emptying
3734 directories, if they exist, without creating them if they don't.
3735
e40a326c
LP
3736 * systemd-nspawn gained support for automatically patching the UID/GIDs
3737 of the owners and the ACLs of all files and directories in a
3738 container tree to match the UID/GID user namespacing range selected
3739 for the container invocation. This mode is enabled via the new
24597ee0
ZJS
3740 --private-users-chown switch. It also gained support for
3741 automatically choosing a free, previously unused UID/GID range when
3742 starting a container, via the new --private-users=pick setting (which
3743 implies --private-users-chown). Together, these options for the first
3744 time make user namespacing for nspawn containers fully automatic and
3745 thus deployable. The systemd-nspawn@.service template unit file has
3746 been changed to use this functionality by default.
e40a326c 3747
25b0e6cb
LP
3748 * systemd-nspawn gained a new --network-zone= switch, that allows
3749 creating ad-hoc virtual Ethernet links between multiple containers,
3750 that only exist as long as at least one container referencing them is
3751 running. This allows easy connecting of multiple containers with a
3752 common link that implements an Ethernet broadcast domain. Each of
3753 these network "zones" may be named relatively freely by the user, and
3754 may be referenced by any number of containers, but each container may
3755 only reference one of these "zones". On the lower level, this is
3756 implemented by an automatically managed bridge network interface for
3757 each zone, that is created when the first container referencing its
3758 zone is created and removed when the last one referencing its zone
3759 terminates.
3760
e40a326c 3761 * The default start timeout may now be configured on the kernel command
8951eaec
ZJS
3762 line via systemd.default_timeout_start_sec=. It was already
3763 configurable via the DefaultTimeoutStartSec= option in
3764 /etc/systemd/system.conf.
e40a326c 3765
030bd839 3766 * Socket units gained a new TriggerLimitIntervalSec= and
e40a326c
LP
3767 TriggerLimitBurst= setting to configure a limit on the activation
3768 rate of the socket unit.
3769
3770 * The LimitNICE= setting now optionally takes normal UNIX nice values
3771 in addition to the raw integer limit value. If the specified
3772 parameter is prefixed with "+" or "-" and is in the range -20..19 the
3773 value is understood as UNIX nice value. If not prefixed like this it
3774 is understood as raw RLIMIT_NICE limit.
3775
999a43f8
LP
3776 * Note that the effect of the PrivateDevices= unit file setting changed
3777 slightly with this release: the per-device /dev file system will be
3778 mounted read-only from this version on, and will have "noexec"
188d3082 3779 set. This (minor) change of behavior might cause some (exceptional)
999a43f8
LP
3780 legacy software to break, when PrivateDevices=yes is set for its
3781 service. Please leave PrivateDevices= off if you run into problems
3782 with this.
3783
e75690c3
ZJS
3784 * systemd-bootchart has been split out to a separate repository:
3785 https://github.com/systemd/systemd-bootchart
3786
3787 * systemd-bus-proxyd has been removed, as kdbus is unlikely to still be
3788 merged into the kernel in its current form.
3789
3790 * The compatibility libraries libsystemd-daemon.so,
3791 libsystemd-journal.so, libsystemd-id128.so, and libsystemd-login.so
3792 which have been deprecated since systemd-209 have been removed along
3793 with the corresponding pkg-config files. All symbols provided by
3794 those libraries are provided by libsystemd.so.
3795
3796 * The Capabilities= unit file setting has been removed (it is ignored
3797 for backwards compatibility). AmbientCapabilities= and
3798 CapabilityBoundingSet= should be used instead.
3799
4f9020fa
DR
3800 * A new special target has been added, initrd-root-device.target,
3801 which creates a synchronization point for dependencies of the root
3802 device in early userspace. Initramfs builders must ensure that this
3803 target is now included in early userspace.
3804
e75690c3
ZJS
3805 Contributions from: Alban Crequy, Alexander Kuleshov, Alexander Shopov,
3806 Alex Crawford, Andre Klärner, Andrew Eikum, Beniamino Galvani, Benjamin
3807 Robin, Biao Lu, Bjørnar Ness, Calvin Owens, Christian Hesse, Clemens
3808 Gruber, Colin Guthrie, Daniel Drake, Daniele Medri, Daniel J Walsh,
3809 Daniel Mack, Dan Nicholson, daurnimator, David Herrmann, David
3810 R. Hedges, Elias Probst, Emmanuel Gil Peyrot, EMOziko, Evgeny
3811 Vereshchagin, Federico, Felipe Sateler, Filipe Brandenburger, Franck
3812 Bui, frankheckenbach, gdamjan, Georgia Brikis, Harald Hoyer, Hendrik
77ff6022
CG
3813 Brueckner, Hristo Venev, Iago López Galeiras, Ian Kelling, Ismo
3814 Puustinen, Jakub Wilk, Jaroslav Škarvada, Jeff Huang, Joel Holdsworth,
e75690c3
ZJS
3815 John Paul Adrian Glaubitz, Jonathan Boulle, kayrus, Klearchos
3816 Chaloulos, Kyle Russell, Lars Uebernickel, Lennart Poettering, Lubomir
3817 Rintel, Lukáš Nykrýn, Mantas Mikulėnas, Marcel Holtmann, Martin Pitt,
77ff6022
CG
3818 Michael Biebl, michaelolbrich, Michał Bartoszkiewicz, Michal Koutný,
3819 Michal Sekletar, Mike Frysinger, Mike Gilbert, Mingcong Bai, Ming Lin,
3820 mulkieran, muzena, Nalin Dahyabhai, Naohiro Aota, Nathan McSween,
e75690c3
ZJS
3821 Nicolas Braud-Santoni, Patrik Flykt, Peter Hutterer, Peter Mattern,
3822 Petr Lautrbach, Petros Angelatos, Piotr Drąg, Rabin Vincent, Robert
3823 Węcławski, Ronny Chevalier, Samuel Tardieu, Stefan Saraev, Stefan
3824 Schallenberg aka nafets227, Steven Siloti, Susant Sahani, Sylvain
3825 Plantefève, Taylor Smock, Tejun Heo, Thomas Blume, Thomas Haller,
3826 Thomas H. P. Andersen, Tobias Klauser, Tom Gundersen, topimiettinen,
46e40fab
ZJS
3827 Torstein Husebø, Umut Tezduyar Lindskog, Uwe Kleine-König, Victor Toso,
3828 Vinay Kulkarni, Vito Caputo, Vittorio G (VittGam), Vladimir Panteleev,
3829 Wieland Hoffmann, Wouter Verhelst, Yu Watanabe, Zbigniew
3830 Jędrzejewski-Szmek
e40a326c 3831
46e40fab 3832 — Fairfax, 2016-05-21
96515dbf 3833
61f32bff
MP
3834CHANGES WITH 229:
3835
d5f8b295
LP
3836 * The systemd-resolved DNS resolver service has gained a substantial
3837 set of new features, most prominently it may now act as a DNSSEC
3838 validating stub resolver. DNSSEC mode is currently turned off by
ed5f8840
ZJS
3839 default, but is expected to be turned on by default in one of the
3840 next releases. For now, we invite everybody to test the DNSSEC logic
3841 by setting DNSSEC=allow-downgrade in /etc/systemd/resolved.conf. The
3842 service also gained a full set of D-Bus interfaces, including calls
3843 to configure DNS and DNSSEC settings per link (for use by external
3844 network management software). systemd-resolved and systemd-networkd
3845 now distinguish between "search" and "routing" domains. The former
3846 are used to qualify single-label names, the latter are used purely
3847 for routing lookups within certain domains to specific links.
3848 resolved now also synthesizes RRs for all entries from /etc/hosts.
d5f8b295
LP
3849
3850 * The systemd-resolve tool (which is a client utility for
ed5f8840
ZJS
3851 systemd-resolved) has been improved considerably and is now fully
3852 supported and documented. Hence it has moved from /usr/lib/systemd to
3853 /usr/bin.
d5f8b295
LP
3854
3855 * /dev/disk/by-path/ symlink support has been (re-)added for virtio
3856 devices.
3857
a7c723c0
LP
3858 * The coredump collection logic has been reworked: when a coredump is
3859 collected it is now written to disk, compressed and processed
3860 (including stacktrace extraction) from a new instantiated service
3861 systemd-coredump@.service, instead of directly from the
3862 /proc/sys/kernel/core_pattern hook we provide. This is beneficial as
3863 processing large coredumps can take up a substantial amount of
3864 resources and time, and this previously happened entirely outside of
3865 systemd's service supervision. With the new logic the core_pattern
3866 hook only does minimal metadata collection before passing off control
3867 to the new instantiated service, which is configured with a time
3868 limit, a nice level and other settings to minimize negative impact on
3869 the rest of the system. Also note that the new logic will honour the
3870 RLIMIT_CORE setting of the crashed process, which now allows users
3871 and processes to turn off coredumping for their processes by setting
3872 this limit.
3873
3874 * The RLIMIT_CORE resource limit now defaults to "unlimited" for PID 1
3875 and all forked processes by default. Previously, PID 1 would leave
3876 the setting at "0" for all processes, as set by the kernel. Note that
3877 the resource limit traditionally has no effect on the generated
3878 coredumps on the system if the /proc/sys/kernel/core_pattern hook
3879 logic is used. Since the limit is now honoured (see above) its
3880 default has been changed so that the coredumping logic is enabled by
3881 default for all processes, while allowing specific opt-out.
3882
3883 * When the stacktrace is extracted from processes of system users, this
3884 is now done as "systemd-coredump" user, in order to sandbox this
3885 potentially security sensitive parsing operation. (Note that when
3886 processing coredumps of normal users this is done under the user ID
3887 of process that crashed, as before.) Packagers should take notice
3888 that it is now necessary to create the "systemd-coredump" system user
3889 and group at package installation time.
3890
d5f8b295
LP
3891 * The systemd-activate socket activation testing tool gained support
3892 for SOCK_DGRAM and SOCK_SEQPACKET sockets using the new --datagram
3893 and --seqpacket switches. It also has been extended to support both
3894 new-style and inetd-style file descriptor passing. Use the new
3895 --inetd switch to request inetd-style file descriptor passing.
3896
8968aea0
MP
3897 * Most systemd tools now honor a new $SYSTEMD_COLORS environment
3898 variable, which takes a boolean value. If set to false, ANSI color
d5f8b295
LP
3899 output is disabled in the tools even when run on a terminal that
3900 supports it.
3901
3902 * The VXLAN support in networkd now supports two new settings
3903 DestinationPort= and PortRange=.
3904
3905 * A new systemd.machine_id= kernel command line switch has been added,
3906 that may be used to set the machine ID in /etc/machine-id if it is
3907 not initialized yet. This command line option has no effect if the
3908 file is already initialized.
3909
3910 * systemd-nspawn gained a new --as-pid2 switch that invokes any
3911 specified command line as PID 2 rather than PID 1 in the
ed5f8840
ZJS
3912 container. In this mode PID 1 is a minimal stub init process that
3913 implements the special POSIX and Linux semantics of PID 1 regarding
3914 signal and child process management. Note that this stub init process
3915 is implemented in nspawn itself and requires no support from the
3916 container image. This new logic is useful to support running
3917 arbitrary commands in the container, as normal processes are
d5f8b295
LP
3918 generally not prepared to run as PID 1.
3919
3920 * systemd-nspawn gained a new --chdir= switch for setting the current
3921 working directory for the process started in the container.
3922
ed5f8840
ZJS
3923 * "journalctl /dev/sda" will now output all kernel log messages for
3924 specified device from the current boot, in addition to all devices
3925 that are parents of it. This should make log output about devices
3926 pretty useful, as long as kernel drivers attach enough metadata to
3927 the log messages. (The usual SATA drivers do.)
d5f8b295
LP
3928
3929 * The sd-journal API gained two new calls
3930 sd_journal_has_runtime_files() and sd_journal_has_persistent_files()
3931 that report whether log data from /run or /var has been found.
3932
3933 * journalctl gained a new switch "--fields" that prints all journal
3934 record field names currently in use in the journal. This is backed
3935 by two new sd-journal API calls sd_journal_enumerate_fields() and
3936 sd_journal_restart_fields().
3937
3938 * Most configurable timeouts in systemd now expect an argument of
8968aea0
MP
3939 "infinity" to turn them off, instead of "0" as before. The semantics
3940 from now on is that a timeout of "0" means "now", and "infinity"
3941 means "never". To maintain backwards compatibility, "0" continues to
3942 turn off previously existing timeout settings.
d5f8b295
LP
3943
3944 * "systemctl reload-or-try-restart" has been renamed to "systemctl
8968aea0
MP
3945 try-reload-or-restart" to clarify what it actually does: the "try"
3946 logic applies to both reloading and restarting, not just restarting.
3947 The old name continues to be accepted for compatibility.
3948
3949 * On boot-up, when PID 1 detects that the system clock is behind the
3950 release date of the systemd version in use, the clock is now set
3951 to the latter. Previously, this was already done in timesyncd, in order
d5f8b295
LP
3952 to avoid running with clocks set to the various clock epochs such as
3953 1902, 1938 or 1970. With this change the logic is now done in PID 1
3954 in addition to timesyncd during early boot-up, so that it is enforced
3955 before the first process is spawned by systemd. Note that the logic
3956 in timesyncd remains, as it is more comprehensive and ensures
ed5f8840 3957 clock monotonicity by maintaining a persistent timestamp file in
d5f8b295
LP
3958 /var. Since /var is generally not available in earliest boot or the
3959 initrd, this part of the logic remains in timesyncd, and is not done
3960 by PID 1.
3961
50f48ad3
DM
3962 * Support for tweaking details in net_cls.class_id through the
3963 NetClass= configuration directive has been removed, as the kernel
3964 people have decided to deprecate that controller in cgroup v2.
3965 Userspace tools such as nftables are moving over to setting rules
3966 that are specific to the full cgroup path of a task, which obsoletes
3967 these controllers anyway. The NetClass= directive is kept around for
3968 legacy compatibility reasons. For a more in-depth description of the
3969 kernel change, please refer to the respective upstream commit:
3970
3971 https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=bd1060a1d671
3972
d5f8b295 3973 * A new service setting RuntimeMaxSec= has been added that may be used
8968aea0 3974 to specify a maximum runtime for a service. If the timeout is hit, the
d5f8b295
LP
3975 service is terminated and put into a failure state.
3976
8968aea0
MP
3977 * A new service setting AmbientCapabilities= has been added. It allows
3978 configuration of additional Linux process capabilities that are
3979 passed to the activated processes. This is only available on very
d5f8b295
LP
3980 recent kernels.
3981
3982 * The process resource limit settings in service units may now be used
3983 to configure hard and soft limits individually.
3984
8968aea0 3985 * The various libsystemd APIs such as sd-bus or sd-event now publicly
ed5f8840
ZJS
3986 expose support for gcc's __attribute__((cleanup())) C extension.
3987 Specifically, for many object destructor functions alternative
3988 versions have been added that have names suffixed with "p" and take a
3989 pointer to a pointer to the object to destroy, instead of just a
3990 pointer to the object itself. This is useful because these destructor
3991 functions may be used directly as parameters to the cleanup
3992 construct. Internally, systemd has been a heavy user of this GCC
3993 extension for a long time, and with this change similar support is
3994 now available to consumers of the library outside of systemd. Note
8968aea0 3995 that by using this extension in your sources compatibility with old
ed5f8840
ZJS
3996 and strictly ANSI compatible C compilers is lost. However, all gcc or
3997 LLVM versions of recent years support this extension.
d5f8b295
LP
3998
3999 * Timer units gained support for a new setting RandomizedDelaySec= that
8968aea0
MP
4000 allows configuring some additional randomized delay to the configured
4001 time. This is useful to spread out timer events to avoid load peaks in
4002 clusters or larger setups.
d5f8b295
LP
4003
4004 * Calendar time specifications now support sub-second accuracy.
4005
4006 * Socket units now support listening on SCTP and UDP-lite protocol
4007 sockets.
4008
4009 * The sd-event API now comes with a full set of man pages.
4010
4011 * Older versions of systemd contained experimental support for
4012 compressing journal files and coredumps with the LZ4 compressor that
4013 was not compatible with the lz4 binary (due to API limitations of the
4014 lz4 library). This support has been removed; only support for files
4015 compatible with the lz4 binary remains. This LZ4 logic is now
4016 officially supported and no longer considered experimental.
4017
4018 * The dkr image import logic has been removed again from importd. dkr's
4019 micro-services focus doesn't fit into the machine image focus of
4020 importd, and quickly got out of date with the upstream dkr API.
4021
4022 * Creation of the /run/lock/lockdev/ directory was dropped from
4023 tmpfiles.d/legacy.conf. Better locking mechanisms like flock() have
61f32bff
MP
4024 been available for many years. If you still need this, you need to
4025 create your own tmpfiles.d config file with:
d5f8b295
LP
4026
4027 d /run/lock/lockdev 0775 root lock -
61f32bff 4028
dd95b381
LP
4029 * The settings StartLimitBurst=, StartLimitInterval=, StartLimitAction=
4030 and RebootArgument= have been moved from the [Service] section of
4031 unit files to [Unit], and they are now supported on all unit types,
4032 not just service units. Of course, systemd will continue to
4033 understand these settings also at the old location, in order to
4034 maintain compatibility.
4035
3545ab35
LP
4036 Contributions from: Abdo Roig-Maranges, Alban Crequy, Aleksander
4037 Adamowski, Alexander Kuleshov, Andreas Pokorny, Andrei Borzenkov,
4038 Andrew Wilcox, Arthur Clement, Beniamino Galvani, Casey Schaufler,
4039 Chris Atkinson, Chris Mayo, Christian Hesse, Damjan Georgievski, Dan
4040 Dedrick, Daniele Medri, Daniel J Walsh, Daniel Korostil, Daniel Mack,
4041 David Herrmann, Dimitri John Ledkov, Dominik Hannen, Douglas Christman,
4042 Evgeny Vereshchagin, Filipe Brandenburger, Franck Bui, Gabor Kelemen,
4043 Harald Hoyer, Hayden Walles, Helmut Grohne, Henrik Kaare Poulsen,
4044 Hristo Venev, Hui Wang, Indrajit Raychaudhuri, Ismo Puustinen, Jakub
4045 Wilk, Jan Alexander Steffens (heftig), Jan Engelhardt, Jan Synacek,
4046 Joost Bremmer, Jorgen Schaefer, Karel Zak, Klearchos Chaloulos,
4047 lc85446, Lennart Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel
4048 Holtmann, Martin Pitt, Michael Biebl, Michael Olbrich, Michael Scherer,
4049 Michał Górny, Michal Sekletar, Nicolas Cornu, Nicolas Iooss, Nils
4050 Carlson, nmartensen, nnz1024, Patrick Ohly, Peter Hutterer, Phillip Sz,
4051 Ronny Chevalier, Samu Kallio, Shawn Landden, Stef Walter, Susant
4052 Sahani, Sylvain Plantefève, Tadej Janež, Thomas Hindoe Paaboel
4053 Andersen, Tom Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Vito
4054 Caputo, WaLyong Cho, Yu Watanabe, Zbigniew Jędrzejewski-Szmek
4055
ccddd104 4056 — Berlin, 2016-02-11
61f32bff 4057
a11c7ea5
LP
4058CHANGES WITH 228:
4059
a11c7ea5
LP
4060 * A number of properties previously only settable in unit
4061 files are now also available as properties to set when
4062 creating transient units programmatically via the bus, as it
4063 is exposed with systemd-run's --property=
4064 setting. Specifically, these are: SyslogIdentifier=,
4065 SyslogLevelPrefix=, TimerSlackNSec=, OOMScoreAdjust=,
4066 EnvironmentFile=, ReadWriteDirectories=,
4067 ReadOnlyDirectories=, InaccessibleDirectories=,
4068 ProtectSystem=, ProtectHome=, RuntimeDirectory=.
4069
28c85daf
LP
4070 * When creating transient services via the bus API it is now
4071 possible to pass in a set of file descriptors to use as
4072 STDIN/STDOUT/STDERR for the invoked process.
a11c7ea5 4073
f1f8a5a5
LP
4074 * Slice units may now be created transiently via the bus APIs,
4075 similar to the way service and scope units may already be
4076 created transiently.
4077
a11c7ea5
LP
4078 * Wherever systemd expects a calendar timestamp specification
4079 (like in journalctl's --since= and --until= switches) UTC
4080 timestamps are now supported. Timestamps suffixed with "UTC"
4081 are now considered to be in Universal Time Coordinated
4082 instead of the local timezone. Also, timestamps may now
815bb5bd 4083 optionally be specified with sub-second accuracy. Both of
a11c7ea5
LP
4084 these additions also apply to recurring calendar event
4085 specification, such as OnCalendar= in timer units.
4086
28c85daf
LP
4087 * journalctl gained a new "--sync" switch that asks the
4088 journal daemon to write all so far unwritten log messages to
4089 disk and sync the files, before returning.
4090
a11c7ea5
LP
4091 * systemd-tmpfiles learned two new line types "q" and "Q" that
4092 operate like "v", but also set up a basic btrfs quota
4093 hierarchy when used on a btrfs file system with quota
4094 enabled.
4095
f1f8a5a5
LP
4096 * tmpfiles' "v", "q" and "Q" will now create a plain directory
4097 instead of a subvolume (even on a btrfs file system) if the
4098 root directory is a plain directory, and not a
4099 subvolume. This should simplify things with certain chroot()
4100 environments which are not aware of the concept of btrfs
4101 subvolumes.
4102
a11c7ea5
LP
4103 * systemd-detect-virt gained a new --chroot switch to detect
4104 whether execution takes place in a chroot() environment.
4105
28c85daf 4106 * CPUAffinity= now takes CPU index ranges in addition to
a11c7ea5
LP
4107 individual indexes.
4108
28c85daf
LP
4109 * The various memory-related resource limit settings (such as
4110 LimitAS=) now understand the usual K, M, G, ... suffixes to
4111 the base of 1024 (IEC). Similar, the time-related resource
4112 limit settings understand the usual min, h, day, ...
4113 suffixes now.
4114
f1f8a5a5
LP
4115 * There's a new system.conf setting DefaultTasksMax= to
4116 control the default TasksMax= setting for services and
4117 scopes running on the system. (TasksMax= is the primary
4118 setting that exposes the "pids" cgroup controller on systemd
4119 and was introduced in the previous systemd release.) The
4120 setting now defaults to 512, which means services that are
4121 not explicitly configured otherwise will only be able to
4122 create 512 processes or threads at maximum, from this
4123 version on. Note that this means that thread- or
4124 process-heavy services might need to be reconfigured to set
4125 TasksMax= to a higher value. It is sufficient to set
4126 TasksMax= in these specific unit files to a higher value, or
4127 even "infinity". Similar, there's now a logind.conf setting
4128 UserTasksMax= that defaults to 4096 and limits the total
4129 number of processes or tasks each user may own
4130 concurrently. nspawn containers also have the TasksMax=
4131 value set by default now, to 8192. Note that all of this
4132 only has an effect if the "pids" cgroup controller is
4133 enabled in the kernel. The general benefit of these changes
4134 should be a more robust and safer system, that provides a
4135 certain amount of per-service fork() bomb protection.
4136
28c85daf
LP
4137 * systemd-nspawn gained the new --network-veth-extra= switch
4138 to define additional and arbitrarily-named virtual Ethernet
4139 links between the host and the container.
4140
4141 * A new service execution setting PassEnvironment= has been
4142 added that allows importing select environment variables
4143 from PID1's environment block into the environment block of
4144 the service.
4145
ddb4b0d3 4146 * Timer units gained support for a new RemainAfterElapse=
595bfe7d 4147 setting which takes a boolean argument. It defaults to on,
ddb4b0d3
LP
4148 exposing behaviour unchanged to previous releases. If set to
4149 off, timer units are unloaded after they elapsed if they
4150 cannot elapse again. This is particularly useful for
4151 transient timer units, which shall not stay around longer
4152 than until they first elapse.
4153
a11c7ea5 4154 * systemd will now bump the net.unix.max_dgram_qlen to 512 by
28c85daf
LP
4155 default now (the kernel default is 16). This is beneficial
4156 for avoiding blocking on AF_UNIX/SOCK_DGRAM sockets since it
a11c7ea5
LP
4157 allows substantially larger numbers of queued
4158 datagrams. This should increase the capability of systemd to
4159 parallelize boot-up, as logging and sd_notify() are unlikely
4160 to stall execution anymore. If you need to change the value
4161 from the new defaults, use the usual sysctl.d/ snippets.
4162
28c85daf
LP
4163 * The compression framing format used by the journal or
4164 coredump processing has changed to be in line with what the
4165 official LZ4 tools generate. LZ4 compression support in
4166 systemd was considered unsupported previously, as the format
4167 was not compatible with the normal tools. With this release
4168 this has changed now, and it is hence safe for downstream
4169 distributions to turn it on. While not compressing as well
815bb5bd 4170 as the XZ, LZ4 is substantially faster, which makes
28c85daf
LP
4171 it a good default choice for the compression logic in the
4172 journal and in coredump handling.
a11c7ea5 4173
28c85daf
LP
4174 * Any reference to /etc/mtab has been dropped from
4175 systemd. The file has been obsolete since a while, but
4176 systemd refused to work on systems where it was incorrectly
815bb5bd 4177 set up (it should be a symlink or non-existent). Please make
28c85daf
LP
4178 sure to update to util-linux 2.27.1 or newer in conjunction
4179 with this systemd release, which also drops any reference to
4180 /etc/mtab. If you maintain a distribution make sure that no
4181 software you package still references it, as this is a
4182 likely source of bugs. There's also a glibc bug pending,
4183 asking for removal of any reference to this obsolete file:
4184
4185 https://sourceware.org/bugzilla/show_bug.cgi?id=19108
a11c7ea5 4186
d5bd92bb
LP
4187 Note that only util-linux versions built with
4188 --enable-libmount-force-mountinfo are supported.
4189
a11c7ea5
LP
4190 * Support for the ".snapshot" unit type has been removed. This
4191 feature turned out to be little useful and little used, and
4192 has now been removed from the core and from systemctl.
4193
b9e2f7eb
LP
4194 * The dependency types RequiresOverridable= and
4195 RequisiteOverridable= have been removed from systemd. They
4196 have been used only very sparingly to our knowledge and
4197 other options that provide a similar effect (such as
4198 systemctl --mode=ignore-dependencies) are much more useful
4199 and commonly used. Moreover, they were only half-way
4200 implemented as the option to control behaviour regarding
4201 these dependencies was never added to systemctl. By removing
4202 these dependency types the execution engine becomes a bit
4203 simpler. Unit files that use these dependencies should be
4204 changed to use the non-Overridable dependency types
4205 instead. In fact, when parsing unit files with these
4206 options, that's what systemd will automatically convert them
4207 too, but it will also warn, asking users to fix the unit
4208 files accordingly. Removal of these dependency types should
4209 only affect a negligible number of unit files in the wild.
4210
4211 * Behaviour of networkd's IPForward= option changed
4212 (again). It will no longer maintain a per-interface setting,
4213 but propagate one way from interfaces where this is enabled
4214 to the global kernel setting. The global setting will be
4215 enabled when requested by a network that is set up, but
4216 never be disabled again. This change was made to make sure
4217 IPv4 and IPv6 behaviour regarding packet forwarding is
4218 similar (as the Linux IPv6 stack does not support
4219 per-interface control of this setting) and to minimize
4220 surprises.
4221
28c85daf
LP
4222 * In unit files the behaviour of %u, %U, %h, %s has
4223 changed. These specifiers will now unconditionally resolve
4224 to the various user database fields of the user that the
4225 systemd instance is running as, instead of the user
4226 configured in the specific unit via User=. Note that this
4227 effectively doesn't change much, as resolving of these
4228 specifiers was already turned off in the --system instance
4229 of systemd, as we cannot do NSS lookups from PID 1. In the
4230 --user instance of systemd these specifiers where correctly
4231 resolved, but hardly made any sense, since the user instance
4232 lacks privileges to do user switches anyway, and User= is
ce830873 4233 hence useless. Moreover, even in the --user instance of
28c85daf
LP
4234 systemd behaviour was awkward as it would only take settings
4235 from User= assignment placed before the specifier into
4236 account. In order to unify and simplify the logic around
4237 this the specifiers will now always resolve to the
4238 credentials of the user invoking the manager (which in case
4239 of PID 1 is the root user).
4240
4241 Contributions from: Andrew Jones, Beniamino Galvani, Boyuan
4242 Yang, Daniel Machon, Daniel Mack, David Herrmann, David
4243 Reynolds, David Strauss, Dongsu Park, Evgeny Vereshchagin,
f1f8a5a5
LP
4244 Felipe Sateler, Filipe Brandenburger, Franck Bui, Hristo
4245 Venev, Iago López Galeiras, Jan Engelhardt, Jan Janssen, Jan
4246 Synacek, Jesus Ornelas Aguayo, Karel Zak, kayrus, Kay Sievers,
4247 Lennart Poettering, Liu Yuan Yuan, Mantas Mikulėnas, Marcel
4248 Holtmann, Marcin Bachry, Marcos Alano, Marcos Mello, Mark
4249 Theunissen, Martin Pitt, Michael Marineau, Michael Olbrich,
4250 Michal Schmidt, Michal Sekletar, Mirco Tischler, Nick Owens,
4251 Nicolas Cornu, Patrik Flykt, Peter Hutterer, reverendhomer,
4252 Ronny Chevalier, Sangjung Woo, Seong-ho Cho, Shawn Landden,
4253 Susant Sahani, Thomas Haller, Thomas Hindoe Paaboel Andersen,
4254 Tom Gundersen, Torstein Husebø, Vito Caputo, Zbigniew
4255 Jędrzejewski-Szmek
28c85daf 4256
ccddd104 4257 — Berlin, 2015-11-18
a11c7ea5 4258
c97e586d
DM
4259CHANGES WITH 227:
4260
4261 * systemd now depends on util-linux v2.27. More specifically,
4262 the newly added mount monitor feature in libmount now
4263 replaces systemd's former own implementation.
4264
4265 * libmount mandates /etc/mtab not to be regular file, and
4266 systemd now enforces this condition at early boot.
4267 /etc/mtab has been deprecated and warned about for a very
4268 long time, so systems running systemd should already have
4269 stopped having this file around as anything else than a
4270 symlink to /proc/self/mounts.
4271
d046fb93
LP
4272 * Support for the "pids" cgroup controller has been added. It
4273 allows accounting the number of tasks in a cgroup and
c97e586d
DM
4274 enforcing limits on it. This adds two new setting
4275 TasksAccounting= and TasksMax= to each unit, as well as a
6fd5517b 4276 global option DefaultTasksAccounting=.
c97e586d
DM
4277
4278 * Support for the "net_cls" cgroup controller has been added.
fe08a30b
LP
4279 It allows assigning a net class ID to each task in the
4280 cgroup, which can then be used in firewall rules and traffic
4281 shaping configurations. Note that the kernel netfilter net
4282 class code does not currently work reliably for ingress
4283 packets on unestablished sockets.
c97e586d
DM
4284
4285 This adds a new config directive called NetClass= to CGroup
6fd5517b 4286 enabled units. Allowed values are positive numbers for fixed
c97e586d
DM
4287 assignments and "auto" for picking a free value
4288 automatically.
4289
21d86c61
DM
4290 * 'systemctl is-system-running' now returns 'offline' if the
4291 system is not booted with systemd. This command can now be
4292 used as a substitute for 'systemd-notify --booted'.
4293
4294 * Watchdog timeouts have been increased to 3 minutes for all
4295 in-tree service files. Apparently, disk IO issues are more
4296 frequent than we hoped, and user reported >1 minute waiting
4297 for disk IO.
4298
4299 * 'machine-id-commit' functionality has been merged into
4300 'machine-id-setup --commit'. The separate binary has been
4301 removed.
4302
d046fb93
LP
4303 * The WorkingDirectory= directive in unit files may now be set
4304 to the special value '~'. In this case, the working
4305 directory is set to the home directory of the user
4306 configured in User=.
21d86c61 4307
fe08a30b
LP
4308 * "machinectl shell" will now open the shell in the home
4309 directory of the selected user by default.
4310
21d86c61 4311 * The CrashChVT= configuration file setting is renamed to
d046fb93
LP
4312 CrashChangeVT=, following our usual logic of not
4313 abbreviating unnecessarily. The old directive is still
4314 supported for compat reasons. Also, this directive now takes
4315 an integer value between 1 and 63, or a boolean value. The
4316 formerly supported '-1' value for disabling stays around for
4317 compat reasons.
21d86c61 4318
fe08a30b 4319 * The PrivateTmp=, PrivateDevices=, PrivateNetwork=,
8b5f9d15 4320 NoNewPrivileges=, TTYPath=, WorkingDirectory= and
fe08a30b
LP
4321 RootDirectory= properties can now be set for transient
4322 units.
4323
4324 * The systemd-analyze tool gained a new "set-log-target" verb
4325 to change the logging target the system manager logs to
4326 dynamically during runtime. This is similar to how
4327 "systemd-analyze set-log-level" already changes the log
4328 level.
4329
4330 * In nspawn /sys is now mounted as tmpfs, with only a selected
4331 set of subdirectories mounted in from the real sysfs. This
4332 enhances security slightly, and is useful for ensuring user
4333 namespaces work correctly.
4334
4335 * Support for USB FunctionFS activation has been added. This
4336 allows implementation of USB gadget services that are
4337 activated as soon as they are requested, so that they don't
595bfe7d 4338 have to run continuously, similar to classic socket
fe08a30b
LP
4339 activation.
4340
4341 * The "systemctl exit" command now optionally takes an
4342 additional parameter that sets the exit code to return from
4343 the systemd manager when exiting. This is only relevant when
4344 running the systemd user instance, or when running the
4345 system instance in a container.
4346
4347 * sd-bus gained the new API calls sd_bus_path_encode_many()
4348 and sd_bus_path_decode_many() that allow easy encoding and
4349 decoding of multiple identifier strings inside a D-Bus
4350 object path. Another new call sd_bus_default_flush_close()
4351 has been added to flush and close per-thread default
4352 connections.
4353
4354 * systemd-cgtop gained support for a -M/--machine= switch to
4355 show the control groups within a certain container only.
4356
4357 * "systemctl kill" gained support for an optional --fail
4358 switch. If specified the requested operation will fail of no
4359 processes have been killed, because the unit had no
4360 processes attached, or similar.
4361
bdba9227
DM
4362 * A new systemd.crash_reboot=1 kernel command line option has
4363 been added that triggers a reboot after crashing. This can
4364 also be set through CrashReboot= in systemd.conf.
4365
4366 * The RuntimeDirectory= setting now understands unit
4367 specifiers like %i or %f.
4368
ce830873 4369 * A new (still internal) library API sd-ipv4acd has been added,
fe08a30b
LP
4370 that implements address conflict detection for IPv4. It's
4371 based on code from sd-ipv4ll, and will be useful for
4372 detecting DHCP address conflicts.
4373
bdba9227
DM
4374 * File descriptors passed during socket activation may now be
4375 named. A new API sd_listen_fds_with_names() is added to
a8eaaee7 4376 access the names. The default names may be overridden,
bdba9227
DM
4377 either in the .socket file using the FileDescriptorName=
4378 parameter, or by passing FDNAME= when storing the file
4379 descriptors using sd_notify().
fe08a30b 4380
d046fb93
LP
4381 * systemd-networkd gained support for:
4382
0053598f 4383 - Setting the IPv6 Router Advertisement settings via
edf4126f 4384 IPv6AcceptRouterAdvertisements= in .network files.
d046fb93
LP
4385
4386 - Configuring the HelloTimeSec=, MaxAgeSec= and
4387 ForwardDelaySec= bridge parameters in .netdev files.
4388
4389 - Configuring PreferredSource= for static routes in
edf4126f 4390 .network files.
fe08a30b 4391
bdba9227
DM
4392 * The "ask-password" framework used to query for LUKS harddisk
4393 passwords or SSL passwords during boot gained support for
4394 caching passwords in the kernel keyring, if it is
4395 available. This makes sure that the user only has to type in
4396 a passphrase once if there are multiple objects to unlock
4397 with the same one. Previously, such password caching was
4398 available only when Plymouth was used; this moves the
4399 caching logic into the systemd codebase itself. The
4400 "systemd-ask-password" utility gained a new --keyname=
4401 switch to control which kernel keyring key to use for
4402 caching a password in. This functionality is also useful for
4403 enabling display managers such as gdm to automatically
4404 unlock the user's GNOME keyring if its passphrase, the
4405 user's password and the harddisk password are the same, if
4406 gdm-autologin is used.
fe08a30b
LP
4407
4408 * When downloading tar or raw images using "machinectl
4409 pull-tar" or "machinectl pull-raw", a matching ".nspawn"
4410 file is now also downloaded, if it is available and stored
4411 next to the image file.
c97e586d 4412
91d0d699
LP
4413 * Units of type ".socket" gained a new boolean setting
4414 Writable= which is only useful in conjunction with
4415 ListenSpecial=. If true, enables opening the specified
4416 special file in O_RDWR mode rather than O_RDONLY mode.
4417
4418 * systemd-rfkill has been reworked to become a singleton
4419 service that is activated through /dev/rfkill on each rfkill
4420 state change and saves the settings to disk. This way,
4421 systemd-rfkill is now compatible with devices that exist
4422 only intermittendly, and even restores state if the previous
4423 system shutdown was abrupt rather than clean.
4424
d046fb93
LP
4425 * The journal daemon gained support for vacuuming old journal
4426 files controlled by the number of files that shall remain,
4427 in addition to the already existing control by size and by
4428 date. This is useful as journal interleaving performance
6dd6a9c4 4429 degrades with too many separate journal files, and allows
d046fb93
LP
4430 putting an effective limit on them. The new setting defaults
4431 to 100, but this may be changed by setting SystemMaxFiles=
4432 and RuntimeMaxFiles= in journald.conf. Also, the
4433 "journalctl" tool gained the new --vacuum-files= switch to
4434 manually vacuum journal files to leave only the specified
4435 number of files in place.
c48eb61f 4436
bdba9227
DM
4437 * udev will now create /dev/disk/by-path links for ATA devices
4438 on kernels where that is supported.
c30f086f 4439
efce0ffe 4440 * Galician, Serbian, Turkish and Korean translations were added.
c97e586d 4441
61e6771c
LP
4442 Contributions from: Aaro Koskinen, Alban Crequy, Beniamino
4443 Galvani, Benjamin Robin, Branislav Blaskovic, Chen-Han Hsiao
4444 (Stanley), Daniel Buch, Daniel Machon, Daniel Mack, David
4445 Herrmann, David Milburn, doubleodoug, Evgeny Vereshchagin,
4446 Felipe Franciosi, Filipe Brandenburger, Fran Dieguez, Gabriel
4447 de Perthuis, Georg Müller, Hans de Goede, Hendrik Brueckner,
4448 Ivan Shapovalov, Jacob Keller, Jan Engelhardt, Jan Janssen,
4449 Jan Synacek, Jens Kuske, Karel Zak, Kay Sievers, Krzesimir
4450 Nowak, Krzysztof Kotlenga, Lars Uebernickel, Lennart
4451 Poettering, Lukas Nykryn, Łukasz Stelmach, Maciej Wereski,
4452 Marcel Holtmann, Marius Thesing, Martin Pitt, Michael Biebl,
4453 Michael Gebetsroither, Michal Schmidt, Michal Sekletar, Mike
4454 Gilbert, Muhammet Kara, nazgul77, Nicolas Cornu, NoXPhasma,
4455 Olof Johansson, Patrik Flykt, Pawel Szewczyk, reverendhomer,
4456 Ronny Chevalier, Sangjung Woo, Seong-ho Cho, Susant Sahani,
4457 Sylvain Plantefève, Thomas Haller, Thomas Hindoe Paaboel
4458 Andersen, Tom Gundersen, Tom Lyon, Viktar Vauchkevich,
4459 Zbigniew Jędrzejewski-Szmek, Марко М. Костић
4460
ccddd104 4461 — Berlin, 2015-10-07
c97e586d 4462
c9912c5e
DH
4463CHANGES WITH 226:
4464
5e8d4254
LP
4465 * The DHCP implementation of systemd-networkd gained a set of
4466 new features:
4467
4468 - The DHCP server now supports emitting DNS and NTP
4469 information. It may be enabled and configured via
4470 EmitDNS=, DNS=, EmitNTP=, and NTP=. If transmission of DNS
4471 and NTP information is enabled, but no servers are
4472 configured, the corresponding uplink information (if there
4473 is any) is propagated.
4474
4475 - Server and client now support transmission and reception
4476 of timezone information. It can be configured via the
4477 newly introduced network options UseTimezone=,
4478 EmitTimezone=, and Timezone=. Transmission of timezone
4479 information is enabled between host and containers by
4480 default now: the container will change its local timezone
4481 to what the host has set.
4482
4483 - Lease timeouts can now be configured via
4484 MaxLeaseTimeSec= and DefaultLeaseTimeSec=.
4485
4486 - The DHCP server improved on the stability of
4487 leases. Clients are more likely to get the same lease
4488 information back, even if the server loses state.
4489
4490 - The DHCP server supports two new configuration options to
4491 control the lease address pool metrics, PoolOffset= and
4492 PoolSize=.
4493
4494 * The encapsulation limit of tunnels in systemd-networkd may
4495 now be configured via 'EncapsulationLimit='. It allows
4496 modifying the maximum additional levels of encapsulation
4497 that are permitted to be prepended to a packet.
4498
4499 * systemd now supports the concept of user buses replacing
4500 session buses, if used with dbus-1.10 (and enabled via dbus
4501 --enable-user-session). It previously only supported this on
4502 kdbus-enabled systems, and this release expands this to
4503 'dbus-daemon' systems.
4504
4505 * systemd-networkd now supports predictable interface names
4506 for virtio devices.
4507
4508 * systemd now optionally supports the new Linux kernel
4509 "unified" control group hierarchy. If enabled via the kernel
4510 command-line option 'systemd.unified_cgroup_hierarchy=1',
4511 systemd will try to mount the unified cgroup hierarchy
4512 directly on /sys/fs/cgroup. If not enabled, or not
4513 available, systemd will fall back to the legacy cgroup
4514 hierarchy setup, as before. Host system and containers can
4515 mix and match legacy and unified hierarchies as they
856ca72b 4516 wish. nspawn understands the $UNIFIED_CGROUP_HIERARCHY
5e8d4254
LP
4517 environment variable to individually select the hierarchy to
4518 use for executed containers. By default, nspawn will use the
4519 unified hierarchy for the containers if the host uses the
4520 unified hierarchy, and the legacy hierarchy otherwise.
4521 Please note that at this point the unified hierarchy is an
4522 experimental kernel feature and is likely to change in one
4523 of the next kernel releases. Therefore, it should not be
4524 enabled by default in downstream distributions yet. The
4525 minimum required kernel version for the unified hierarchy to
4526 work is 4.2. Note that when the unified hierarchy is used
4527 for the first time delegated access to controllers is
4528 safe. Because of this systemd-nspawn containers will get
4529 access to controllers now, as will systemd user
4530 sessions. This means containers and user sessions may now
4531 manage their own resources, partitioning up what the system
4532 grants them.
4533
4534 * A new special scope unit "init.scope" has been introduced
4535 that encapsulates PID 1 of the system. It may be used to
4536 determine resource usage and enforce resource limits on PID
4537 1 itself. PID 1 hence moved out of the root of the control
4538 group tree.
4539
4540 * The cgtop tool gained support for filtering out kernel
4541 threads when counting tasks in a control group. Also, the
4542 count of processes is now recursively summed up by
4543 default. Two options -k and --recursive= have been added to
4544 revert to old behaviour. The tool has also been updated to
4545 work correctly in containers now.
4546
4547 * systemd-nspawn's --bind= and --bind-ro= options have been
4548 extended to allow creation of non-recursive bind mounts.
4549
c626bf1d
DM
4550 * libsystemd gained two new calls sd_pid_get_cgroup() and
4551 sd_peer_get_cgroup() which return the control group path of
5e8d4254
LP
4552 a process or peer of a connected AF_UNIX socket. This
4553 function call is particularly useful when implementing
4554 delegated subtrees support in the control group hierarchy.
4555
4556 * The "sd-event" event loop API of libsystemd now supports
4557 correct dequeuing of real-time signals, without losing
4558 signal events.
4559
d35f51ea
ZJS
4560 * When systemd requests a polkit decision when managing units it
4561 will now add additional fields to the request, including unit
4562 name and desired operation. This enables more powerful polkit
4563 policies, that make decisions depending on these parameters.
c9912c5e 4564
47f5a38c
LP
4565 * nspawn learnt support for .nspawn settings files, that may
4566 accompany the image files or directories of containers, and
4567 may contain additional settings for the container. This is
4568 an alternative to configuring container parameters via the
4569 nspawn command line.
4570
2f77decc
LP
4571 Contributions from: Cristian Rodríguez, Daniel Mack, David
4572 Herrmann, Eugene Yakubovich, Evgeny Vereshchagin, Filipe
4573 Brandenburger, Hans de Goede, Jan Alexander Steffens, Jan
4574 Synacek, Kay Sievers, Lennart Poettering, Mangix, Marcel
4575 Holtmann, Martin Pitt, Michael Biebl, Michael Chapman, Michal
4576 Sekletar, Peter Hutterer, Piotr Drąg, reverendhomer, Robin
4577 Hack, Susant Sahani, Sylvain Pasche, Thomas Hindoe Paaboel
23d08d1b 4578 Andersen, Tom Gundersen, Torstein Husebø
c9912c5e 4579
ccddd104 4580 — Berlin, 2015-09-08
c9912c5e 4581
ec5249a2
DM
4582CHANGES WITH 225:
4583
5e8d4254
LP
4584 * machinectl gained a new verb 'shell' which opens a fresh
4585 shell on the target container or the host. It is similar to
4586 the existing 'login' command of machinectl, but spawns the
4587 shell directly without prompting for username or
4588 password. The pseudo machine '.host' now refers to the local
4589 host and is used by default. Hence, 'machinectl shell' can
4590 be used as replacement for 'su -' which spawns a session as
4591 a fresh systemd unit in a way that is fully isolated from
4592 the originating session.
4593
4594 * systemd-networkd learned to cope with private-zone DHCP
4595 options and allows other programs to query the values.
4596
4597 * SELinux access control when enabling/disabling units is no
d35f51ea
ZJS
4598 longer enforced with this release. The previous implementation
4599 was incorrect, and a new corrected implementation is not yet
4600 available. As unit file operations are still protected via
4601 polkit and D-Bus policy this is not a security problem. Yet,
4602 distributions which care about optimal SELinux support should
4603 probably not stabilize on this release.
5e8d4254
LP
4604
4605 * sd-bus gained support for matches of type "arg0has=", that
4606 test for membership of strings in string arrays sent in bus
4607 messages.
4608
4609 * systemd-resolved now dumps the contents of its DNS and LLMNR
4610 caches to the logs on reception of the SIGUSR1 signal. This
4611 is useful to debug DNS behaviour.
4612
4613 * The coredumpctl tool gained a new --directory= option to
4614 operate on journal files in a specific directory.
4615
4616 * "systemctl reboot" and related commands gained a new
4617 "--message=" option which may be used to set a free-text
4618 wall message when shutting down or rebooting the
4619 system. This message is also logged, which is useful for
4620 figuring out the reason for a reboot or shutdown a
4621 posteriori.
4622
4623 * The "systemd-resolve-host" tool's -i switch now takes
4624 network interface numbers as alternative to interface names.
4625
4626 * A new unit file setting for services has been introduced:
4627 UtmpMode= allows configuration of how precisely systemd
4628 handles utmp and wtmp entries for the service if this is
4629 enabled. This allows writing services that appear similar to
4630 user sessions in the output of the "w", "who", "last" and
4631 "lastlog" tools.
4632
4633 * systemd-resolved will now locally synthesize DNS resource
4634 records for the "localhost" and "gateway" domains as well as
4635 the local hostname. This should ensure that clients querying
4636 RRs via resolved will get similar results as those going via
4637 NSS, if nss-myhostname is enabled.
4638
4639 Contributions from: Alastair Hughes, Alex Crawford, Daniel
4640 Mack, David Herrmann, Dimitri John Ledkov, Eric Kostrowski,
4641 Evgeny Vereshchagin, Felipe Sateler, HATAYAMA Daisuke, Jan
4642 Pokorný, Jan Synacek, Johnny Robeson, Karel Zak, Kay Sievers,
4643 Kefeng Wang, Lennart Poettering, Major Hayden, Marcel
4644 Holtmann, Markus Elfring, Martin Mikkelsen, Martin Pitt, Matt
4645 Turner, Maxim Mikityanskiy, Michael Biebl, Namhyung Kim,
4646 Nicolas Cornu, Owen W. Taylor, Patrik Flykt, Peter Hutterer,
4647 reverendhomer, Richard Maw, Ronny Chevalier, Seth Jennings,
4648 Stef Walter, Susant Sahani, Thomas Blume, Thomas Hindoe
4649 Paaboel Andersen, Thomas Meyer, Tom Gundersen, Vincent Batts,
4650 WaLyong Cho, Zbigniew Jędrzejewski-Szmek
e1439a14 4651
ccddd104 4652 — Berlin, 2015-08-27
ec5249a2 4653
11811e85
DH
4654CHANGES WITH 224:
4655
10fa421c
DH
4656 * The systemd-efi-boot-generator functionality was merged into
4657 systemd-gpt-auto-generator.
4658
5e8d4254
LP
4659 * systemd-networkd now supports Group Policy for vxlan
4660 devices. It can be enabled via the new boolean configuration
4661 option called 'GroupPolicyExtension='.
10fa421c 4662
11811e85
DH
4663 Contributions from: Andreas Kempf, Christian Hesse, Daniel Mack, David
4664 Herrmann, Herman Fries, Johannes Nixdorf, Kay Sievers, Lennart
4665 Poettering, Peter Hutterer, Susant Sahani, Tom Gundersen
4666
ccddd104 4667 — Berlin, 2015-07-31
11811e85 4668
e57eaef8
DH
4669CHANGES WITH 223:
4670
4671 * The python-systemd code has been removed from the systemd repository.
4672 A new repository has been created which accommodates the code from
4673 now on, and we kindly ask distributions to create a separate package
4674 for this: https://github.com/systemd/python-systemd
4675
01608bc8 4676 * The systemd daemon will now reload its main configuration
e57eaef8
DH
4677 (/etc/systemd/system.conf) on daemon-reload.
4678
4679 * sd-dhcp now exposes vendor specific extensions via
4680 sd_dhcp_lease_get_vendor_specific().
4681
931618d0
DM
4682 * systemd-networkd gained a number of new configuration options.
4683
4684 - A new boolean configuration option for TAP devices called
37d54b93 4685 'VNetHeader='. If set, the IFF_VNET_HDR flag is set for the
931618d0
DM
4686 device, thus allowing to send and receive GSO packets.
4687
4688 - A new tunnel configuration option called 'CopyDSCP='.
4689 If enabled, the DSCP field of ip6 tunnels is copied into the
4690 decapsulated packet.
4691
4692 - A set of boolean bridge configuration options were added.
4693 'UseBPDU=', 'HairPin=', 'FastLeave=', 'AllowPortToBeRoot=',
4694 and 'UnicastFlood=' are now parsed by networkd and applied to the
4695 respective bridge link device via the respective IFLA_BRPORT_*
4696 netlink attribute.
4697
4698 - A new string configuration option to override the hostname sent
4699 to a DHCP server, called 'Hostname='. If set and 'SendHostname='
4700 is true, networkd will use the configured hostname instead of the
4701 system hostname when sending DHCP requests.
4702
4703 - A new tunnel configuration option called 'IPv6FlowLabel='. If set,
4704 networkd will configure the IPv6 flow-label of the tunnel device
4705 according to RFC2460.
e57eaef8 4706
f5f113f6
DH
4707 - The 'macvtap' virtual network devices are now supported, similar to
4708 the already supported 'macvlan' devices.
4709
e57eaef8 4710 * systemd-resolved now implements RFC5452 to improve resilience against
01608bc8 4711 cache poisoning. Additionally, source port randomization is enabled
e57eaef8
DH
4712 by default to further protect against DNS spoofing attacks.
4713
4714 * nss-mymachines now supports translating UIDs and GIDs of running
4715 containers with user-namespaces enabled. If a container 'foo'
4716 translates a host uid 'UID' to the container uid 'TUID', then
4717 nss-mymachines will also map uid 'UID' to/from username 'vu-foo-TUID'
4718 (with 'foo' and 'TUID' replaced accordingly). Similarly, groups are
4719 mapped as 'vg-foo-TGID'.
4720
4721 Contributions from: Beniamino Galvani, cee1, Christian Hesse, Daniel
e4e66993
DH
4722 Buch, Daniel Mack, daurnimator, David Herrmann, Dimitri John Ledkov,
4723 HATAYAMA Daisuke, Ivan Shapovalov, Jan Alexander Steffens (heftig),
4724 Johan Ouwerkerk, Jose Carlos Venegas Munoz, Karel Zak, Kay Sievers,
4725 Lennart Poettering, Lidong Zhong, Martin Pitt, Michael Biebl, Michael
4726 Olbrich, Michal Schmidt, Michal Sekletar, Mike Gilbert, Namhyung Kim,
4727 Nick Owens, Peter Hutterer, Richard Maw, Steven Allen, Sungbae Yoo,
4728 Susant Sahani, Thomas Blume, Thomas Hindoe Paaboel Andersen, Tom
4729 Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Vito Caputo,
4730 Vivenzio Pagliari, Zbigniew Jędrzejewski-Szmek
4731
ccddd104 4732 — Berlin, 2015-07-29
e57eaef8 4733
0db83ad7 4734CHANGES WITH 222:
5541c889 4735
861b02eb
KS
4736 * udev does not longer support the WAIT_FOR_SYSFS= key in udev rules.
4737 There are no known issues with current sysfs, and udev does not need
4738 or should be used to work around such bugs.
4739
4740 * udev does no longer enable USB HID power management. Several reports
4741 indicate, that some devices cannot handle that setting.
0db83ad7
DH
4742
4743 * The udev accelerometer helper was removed. The functionality
4744 is now fully included in iio-sensor-proxy. But this means,
4745 older iio-sensor-proxy versions will no longer provide
4746 accelerometer/orientation data with this systemd version.
4747 Please upgrade iio-sensor-proxy to version 1.0.
4748
5541c889
DH
4749 * networkd gained a new configuration option IPv6PrivacyExtensions=
4750 which enables IPv6 privacy extensions (RFC 4941, "Privacy Extensions
4751 for Stateless Address") on selected networks.
4752
9b361114
DM
4753 * For the sake of fewer build-time dependencies and less code in the
4754 main repository, the python bindings are about to be removed in the
4755 next release. A new repository has been created which accommodates
4756 the code from now on, and we kindly ask distributions to create a
4757 separate package for this. The removal will take place in v223.
4758
4759 https://github.com/systemd/python-systemd
4760
0db83ad7
DH
4761 Contributions from: Abdo Roig-Maranges, Andrew Eikum, Bastien Nocera,
4762 Cédric Delmas, Christian Hesse, Christos Trochalakis, Daniel Mack,
4763 daurnimator, David Herrmann, Dimitri John Ledkov, Eric Biggers, Eric
4764 Cook, Felipe Sateler, Geert Jansen, Gerd Hoffmann, Gianpaolo Macario,
5541c889
DH
4765 Greg Kroah-Hartman, Iago López Galeiras, Jan Alexander Steffens
4766 (heftig), Jan Engelhardt, Jay Strict, Kay Sievers, Lennart Poettering,
0db83ad7
DH
4767 Markus Knetschke, Martin Pitt, Michael Biebl, Michael Marineau, Michal
4768 Sekletar, Miguel Bernal Marin, Peter Hutterer, Richard Maw, rinrinne,
2d1ca112
DH
4769 Susant Sahani, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Torstein
4770 Husebø, Vedran Miletić, WaLyong Cho, Zbigniew Jędrzejewski-Szmek
0db83ad7 4771
ccddd104 4772 — Berlin, 2015-07-07
0db83ad7 4773
0f0467e6
MP
4774CHANGES WITH 221:
4775
470e72d4 4776 * The sd-bus.h and sd-event.h APIs have now been declared
5f92d24f 4777 stable and have been added to the official interface of
470e72d4
LP
4778 libsystemd.so. sd-bus implements an alternative D-Bus client
4779 library, that is relatively easy to use, very efficient and
4780 supports both classic D-Bus as well as kdbus as transport
4781 backend. sd-event is a generic event loop abstraction that
4782 is built around Linux epoll, but adds features such as event
0aee49d5 4783 prioritization or efficient timer handling. Both APIs are good
470e72d4
LP
4784 choices for C programs looking for a bus and/or event loop
4785 implementation that is minimal and does not have to be
5f92d24f 4786 portable to other kernels.
0f0467e6 4787
470e72d4
LP
4788 * kdbus support is no longer compile-time optional. It is now
4789 always built-in. However, it can still be disabled at
4790 runtime using the kdbus=0 kernel command line setting, and
c6551464 4791 that setting may be changed to default to off, by specifying
470e72d4
LP
4792 --disable-kdbus at build-time. Note though that the kernel
4793 command line setting has no effect if the kdbus.ko kernel
4794 module is not installed, in which case kdbus is (obviously)
4795 also disabled. We encourage all downstream distributions to
0aee49d5 4796 begin testing kdbus by adding it to the kernel images in the
470e72d4
LP
4797 development distributions, and leaving kdbus support in
4798 systemd enabled.
0f0467e6 4799
470e72d4
LP
4800 * The minimal required util-linux version has been bumped to
4801 2.26.
4802
4803 * Support for chkconfig (--enable-chkconfig) was removed in
0aee49d5 4804 favor of calling an abstraction tool
470e72d4
LP
4805 /lib/systemd/systemd-sysv-install. This needs to be
4806 implemented for your distribution. See "SYSV INIT.D SCRIPTS"
4807 in README for details.
4808
4809 * If there's a systemd unit and a SysV init script for the
4810 same service name, and the user executes "systemctl enable"
4811 for it (or a related call), then this will now enable both
4812 (or execute the related operation on both), not just the
4813 unit.
4814
4815 * The libudev API documentation has been converted from gtkdoc
4816 into man pages.
4817
4818 * gudev has been removed from the systemd tree, it is now an
4819 external project.
4820
4821 * The systemd-cgtop tool learnt a new --raw switch to generate
0aee49d5 4822 "raw" (machine parsable) output.
470e72d4
LP
4823
4824 * networkd's IPForwarding= .network file setting learnt the
4825 new setting "kernel", which ensures that networkd does not
4826 change the IP forwarding sysctl from the default kernel
4827 state.
4828
4829 * The systemd-logind bus API now exposes a new boolean
4830 property "Docked" that reports whether logind considers the
4831 system "docked", i.e. connected to a docking station or not.
4832
4833 Contributions from: Alex Crawford, Andreas Pokorny, Andrei
4834 Borzenkov, Charles Duffy, Colin Guthrie, Cristian Rodríguez,
4835 Daniele Medri, Daniel Hahler, Daniel Mack, David Herrmann,
4836 David Mohr, Dimitri John Ledkov, Djalal Harouni, dslul, Ed
4837 Swierk, Eric Cook, Filipe Brandenburger, Gianpaolo Macario,
4838 Harald Hoyer, Iago López Galeiras, Igor Vuk, Jan Synacek,
4839 Jason Pleau, Jason S. McMullan, Jean Delvare, Jeff Huang,
4840 Jonathan Boulle, Karel Zak, Kay Sievers, kloun, Lennart
4841 Poettering, Marc-Antoine Perennou, Marcel Holtmann, Mario
4842 Limonciello, Martin Pitt, Michael Biebl, Michael Olbrich,
4843 Michal Schmidt, Mike Gilbert, Nick Owens, Pablo Lezaeta Reyes,
b912e251
LP
4844 Patrick Donnelly, Pavel Odvody, Peter Hutterer, Philip
4845 Withnall, Ronny Chevalier, Simon McVittie, Susant Sahani,
4846 Thomas Hindoe Paaboel Andersen, Tom Gundersen, Torstein
4847 Husebø, Umut Tezduyar Lindskog, Viktar Vauchkevich, Werner
4848 Fink, Zbigniew Jędrzejewski-Szmek
470e72d4 4849
ccddd104 4850 — Berlin, 2015-06-19
0f0467e6 4851
481a0aa2
LP
4852CHANGES WITH 220:
4853
f7a73a25
DH
4854 * The gudev library has been extracted into a separate repository
4855 available at: https://git.gnome.org/browse/libgudev/
4856 It is now managed as part of the Gnome project. Distributions
4857 are recommended to pass --disable-gudev to systemd and use
4858 gudev from the Gnome project instead. gudev is still included
4859 in systemd, for now. It will be removed soon, though. Please
4860 also see the announcement-thread on systemd-devel:
56cadcb6 4861 https://lists.freedesktop.org/archives/systemd-devel/2015-May/032070.html
f7a73a25 4862
481a0aa2
LP
4863 * systemd now exposes a CPUUsageNSec= property for each
4864 service unit on the bus, that contains the overall consumed
4865 CPU time of a service (the sum of what each process of the
4866 service consumed). This value is only available if
4867 CPUAccounting= is turned on for a service, and is then shown
4868 in the "systemctl status" output.
4869
4870 * Support for configuring alternative mappings of the old SysV
4871 runlevels to systemd targets has been removed. They are now
29d1fcb4 4872 hardcoded in a way that runlevels 2, 3, 4 all map to
481a0aa2
LP
4873 multi-user.target and 5 to graphical.target (which
4874 previously was already the default behaviour).
4875
4876 * The auto-mounter logic gained support for mount point
4877 expiry, using a new TimeoutIdleSec= setting in .automount
4878 units. (Also available as x-systemd.idle-timeout= in /etc/fstab).
4879
4880 * The EFI System Partition (ESP) as mounted to /boot by
4881 systemd-efi-boot-generator will now be unmounted
29d1fcb4 4882 automatically after 2 minutes of not being used. This should
481a0aa2
LP
4883 minimize the risk of ESP corruptions.
4884
4885 * New /etc/fstab options x-systemd.requires= and
4886 x-systemd.requires-mounts-for= are now supported to express
4887 additional dependencies for mounts. This is useful for
4888 journalling file systems that support external journal
4889 devices or overlay file systems that require underlying file
4890 systems to be mounted.
4891
4892 * systemd does not support direct live-upgrades (via systemctl
4893 daemon-reexec) from versions older than v44 anymore. As no
4894 distribution we are aware of shipped such old versions in a
4895 stable release this should not be problematic.
4896
4897 * When systemd forks off a new per-connection service instance
4898 it will now set the $REMOTE_ADDR environment variable to the
4899 remote IP address, and $REMOTE_PORT environment variable to
4900 the remote IP port. This behaviour is similar to the
4901 corresponding environment variables defined by CGI.
4902
4903 * systemd-networkd gained support for uplink failure
4904 detection. The BindCarrier= option allows binding interface
4905 configuration dynamically to the link sense of other
4906 interfaces. This is useful to achieve behaviour like in
4907 network switches.
4908
4909 * systemd-networkd gained support for configuring the DHCP
4910 client identifier to use when requesting leases.
4911
4912 * systemd-networkd now has a per-network UseNTP= option to
4913 configure whether NTP server information acquired via DHCP
4914 is passed on to services like systemd-timesyncd.
4915
4916 * systemd-networkd gained support for vti6 tunnels.
4917
1579dd2c
LP
4918 * Note that systemd-networkd manages the sysctl variable
4919 /proc/sys/net/ipv[46]/conf/*/forwarding for each interface
4920 it is configured for since v219. The variable controls IP
4921 forwarding, and is a per-interface alternative to the global
4922 /proc/sys/net/ipv[46]/ip_forward. This setting is
4923 configurable in the IPForward= option, which defaults to
4924 "no". This means if networkd is used for an interface it is
4925 no longer sufficient to set the global sysctl option to turn
4926 on IP forwarding! Instead, the .network file option
4927 IPForward= needs to be turned on! Note that the
4928 implementation of this behaviour was broken in v219 and has
4929 been fixed in v220.
4930
481a0aa2
LP
4931 * Many bonding and vxlan options are now configurable in
4932 systemd-networkd.
4933
4934 * systemd-nspawn gained a new --property= setting to set unit
4935 properties for the container scope. This is useful for
ce830873 4936 setting resource parameters (e.g. "CPUShares=500") on
481a0aa2
LP
4937 containers started from the command line.
4938
4939 * systemd-nspawn gained a new --private-users= switch to make
4940 use of user namespacing available on recent Linux kernels.
4941
4942 * systemd-nspawn may now be called as part of a shell pipeline
4943 in which case the pipes used for stdin and stdout are passed
4944 directly to the process invoked in the container, without
4945 indirection via a pseudo tty.
4946
4947 * systemd-nspawn gained a new switch to control the UNIX
4948 signal to use when killing the init process of the container
4949 when shutting down.
4950
4951 * systemd-nspawn gained a new --overlay= switch for mounting
4952 overlay file systems into the container using the new kernel
4953 overlayfs support.
4954
4955 * When a container image is imported via systemd-importd and
4956 the host file system is not btrfs, a loopback block device
4957 file is created in /var/lib/machines.raw with a btrfs file
4958 system inside. It is then mounted to /var/lib/machines to
4959 enable btrfs features for container management. The loopback
4960 file and btrfs file system is grown as needed when container
4961 images are imported via systemd-importd.
4962
4963 * systemd-machined/systemd-importd gained support for btrfs
4964 quota, to enforce container disk space limits on disk. This
4965 is exposed in "machinectl set-limit".
4966
4967 * systemd-importd now can import containers from local .tar,
4968 .raw and .qcow2 images, and export them to .tar and .raw. It
4969 can also import dkr v2 images now from the network (on top
4970 of v1 as before).
4971
4972 * systemd-importd gained support for verifying downloaded
4973 images with gpg2 (previously only gpg1 was supported).
4974
d35f51ea
ZJS
4975 * systemd-machined, systemd-logind, systemd: most bus calls are
4976 now accessible to unprivileged processes via polkit. Also,
4977 systemd-logind will now allow users to kill their own sessions
4978 without further privileges or authorization.
481a0aa2
LP
4979
4980 * systemd-shutdownd has been removed. This service was
4981 previously responsible for implementing scheduled shutdowns
4982 as exposed in /usr/bin/shutdown's time parameter. This
4983 functionality has now been moved into systemd-logind and is
4984 accessible via a bus interface.
4985
4986 * "systemctl reboot" gained a new switch --firmware-setup that
4987 can be used to reboot into the EFI firmware setup, if that
4988 is available. systemd-logind now exposes an API on the bus
4989 to trigger such reboots, in case graphical desktop UIs want
4990 to cover this functionality.
4991
4992 * "systemctl enable", "systemctl disable" and "systemctl mask"
1579dd2c 4993 now support a new "--now" switch. If specified the units
481a0aa2
LP
4994 that are enabled will also be started, and the ones
4995 disabled/masked also stopped.
4996
4997 * The Gummiboot EFI boot loader tool has been merged into
1a2d5fbe
DH
4998 systemd, and renamed to "systemd-boot". The bootctl tool has been
4999 updated to support systemd-boot.
481a0aa2
LP
5000
5001 * An EFI kernel stub has been added that may be used to create
5002 kernel EFI binaries that contain not only the actual kernel,
5003 but also an initrd, boot splash, command line and OS release
5004 information. This combined binary can then be signed as a
5005 single image, so that the firmware can verify it all in one
1a2d5fbe 5006 step. systemd-boot has special support for EFI binaries created
481a0aa2
LP
5007 like this and can extract OS release information from them
5008 and show them in the boot menu. This functionality is useful
5009 to implement cryptographically verified boot schemes.
5010
5011 * Optional support has been added to systemd-fsck to pass
5012 fsck's progress report to an AF_UNIX socket in the file
5013 system.
5014
5015 * udev will no longer create device symlinks for all block
5016 devices by default. A blacklist for excluding special block
5017 devices from this logic has been turned into a whitelist
5018 that requires picking block devices explicitly that require
5019 device symlinks.
5020
5021 * A new (currently still internal) API sd-device.h has been
5022 added to libsystemd. This modernized API is supposed to
5023 replace libudev eventually. In fact, already much of libudev
5024 is now just a wrapper around sd-device.h.
5025
5026 * A new hwdb database for storing metadata about pointing
5027 stick devices has been added.
5028
5029 * systemd-tmpfiles gained support for setting file attributes
5030 similar to the "chattr" tool with new 'h' and 'H' lines.
5031
5032 * systemd-journald will no longer unconditionally set the
5033 btrfs NOCOW flag on new journal files. This is instead done
5034 with tmpfiles snippet using the new 'h' line type. This
5035 allows easy disabling of this logic, by masking the
5036 journal-nocow.conf tmpfiles file.
5037
5038 * systemd-journald will now translate audit message types to
5039 human readable identifiers when writing them to the
5040 journal. This should improve readability of audit messages.
5041
5042 * The LUKS logic gained support for the offset= and skip=
5043 options in /etc/crypttab, as previously implemented by
5044 Debian.
5045
5046 * /usr/lib/os-release gained a new optional field VARIANT= for
5047 distributions that support multiple variants (such as a
5048 desktop edition, a server edition, ...)
5049
5050 Contributions from: Aaro Koskinen, Adam Goode, Alban Crequy,
5051 Alberto Fanjul Alonso, Alexander Sverdlin, Alex Puchades, Alin
5052 Rauta, Alison Chaiken, Andrew Jones, Arend van Spriel,
5053 Benedikt Morbach, Benjamin Franzke, Benjamin Tissoires, Blaž
5054 Tomažič, Chris Morgan, Chris Morin, Colin Walters, Cristian
5055 Rodríguez, Daniel Buch, Daniel Drake, Daniele Medri, Daniel
5056 Mack, Daniel Mustieles, daurnimator, Davide Bettio, David
5057 Herrmann, David Strauss, Didier Roche, Dimitri John Ledkov,
5058 Eric Cook, Gavin Li, Goffredo Baroncelli, Hannes Reinecke,
5059 Hans de Goede, Hans-Peter Deifel, Harald Hoyer, Iago López
5060 Galeiras, Ivan Shapovalov, Jan Engelhardt, Jan Janssen, Jan
5061 Pazdziora, Jan Synacek, Jasper St. Pierre, Jay Faulkner, John
5062 Paul Adrian Glaubitz, Jonathon Gilbert, Karel Zak, Kay
5063 Sievers, Koen Kooi, Lennart Poettering, Lubomir Rintel, Lucas
5064 De Marchi, Lukas Nykryn, Lukas Rusak, Lukasz Skalski, Łukasz
5065 Stelmach, Mantas Mikulėnas, Marc-Antoine Perennou, Marcel
5066 Holtmann, Martin Pitt, Mathieu Chevrier, Matthew Garrett,
5067 Michael Biebl, Michael Marineau, Michael Olbrich, Michal
5068 Schmidt, Michal Sekletar, Mirco Tischler, Nir Soffer, Patrik
5069 Flykt, Pavel Odvody, Peter Hutterer, Peter Lemenkov, Peter
5070 Waller, Piotr Drąg, Raul Gutierrez S, Richard Maw, Ronny
5071 Chevalier, Ross Burton, Sebastian Rasmussen, Sergey Ptashnick,
5072 Seth Jennings, Shawn Landden, Simon Farnsworth, Stefan Junker,
5073 Stephen Gallagher, Susant Sahani, Sylvain Plantefève, Thomas
5074 Haller, Thomas Hindoe Paaboel Andersen, Tobias Hunger, Tom
5075 Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Will
5076 Woods, Zachary Cook, Zbigniew Jędrzejewski-Szmek
5077
ccddd104 5078 — Berlin, 2015-05-22
481a0aa2 5079
615aaf41
LP
5080CHANGES WITH 219:
5081
615aaf41
LP
5082 * Introduce a new API "sd-hwdb.h" for querying the hardware
5083 metadata database. With this minimal interface one can query
5084 and enumerate the udev hwdb, decoupled from the old libudev
5085 library. libudev's interface for this is now only a wrapper
5086 around sd-hwdb. A new tool systemd-hwdb has been added to
5087 interface with and update the database.
5088
5089 * When any of systemd's tools copies files (for example due to
5090 tmpfiles' C lines) a btrfs reflink will attempted first,
5091 before bytewise copying is done.
5092
5093 * systemd-nspawn gained a new --ephemeral switch. When
5094 specified a btrfs snapshot is taken of the container's root
5095 directory, and immediately removed when the container
5096 terminates again. Thus, a container can be started whose
5097 changes never alter the container's root directory, and are
5098 lost on container termination. This switch can also be used
5099 for starting a container off the root file system of the
5100 host without affecting the host OS. This switch is only
5101 available on btrfs file systems.
5102
5103 * systemd-nspawn gained a new --template= switch. It takes the
5104 path to a container tree to use as template for the tree
7edecf21 5105 specified via --directory=, should that directory be
615aaf41
LP
5106 missing. This allows instantiating containers dynamically,
5107 on first run. This switch is only available on btrfs file
5108 systems.
5109
5110 * When a .mount unit refers to a mount point on which multiple
5111 mounts are stacked, and the .mount unit is stopped all of
5112 the stacked mount points will now be unmounted until no
5113 mount point remains.
5114
5115 * systemd now has an explicit notion of supported and
5116 unsupported unit types. Jobs enqueued for unsupported unit
5117 types will now fail with an "unsupported" error code. More
5118 specifically .swap, .automount and .device units are not
5119 supported in containers, .busname units are not supported on
5120 non-kdbus systems. .swap and .automount are also not
5121 supported if their respective kernel compile time options
5122 are disabled.
5123
5124 * machinectl gained support for two new "copy-from" and
5125 "copy-to" commands for copying files from a running
5126 container to the host or vice versa.
5127
5128 * machinectl gained support for a new "bind" command to bind
5129 mount host directories into local containers. This is
5130 currently only supported for nspawn containers.
5131
5132 * networkd gained support for configuring bridge forwarding
5133 database entries (fdb) from .network files.
5134
5135 * A new tiny daemon "systemd-importd" has been added that can
5136 download container images in tar, raw, qcow2 or dkr formats,
5137 and make them available locally in /var/lib/machines, so
5138 that they can run as nspawn containers. The daemon can GPG
5139 verify the downloads (not supported for dkr, since it has no
5140 provisions for verifying downloads). It will transparently
5141 decompress bz2, xz, gzip compressed downloads if necessary,
5142 and restore sparse files on disk. The daemon uses privilege
5143 separation to ensure the actual download logic runs with
94e5ba37 5144 fewer privileges than the daemon itself. machinectl has
615aaf41
LP
5145 gained new commands "pull-tar", "pull-raw" and "pull-dkr" to
5146 make the functionality of importd available to the
5147 user. With this in place the Fedora and Ubuntu "Cloud"
5148 images can be downloaded and booted as containers unmodified
5149 (the Fedora images lack the appropriate GPG signature files
5150 currently, so they cannot be verified, but this will change
5151 soon, hopefully). Note that downloading images is currently
5152 only fully supported on btrfs.
5153
5154 * machinectl is now able to list container images found in
5155 /var/lib/machines, along with some metadata about sizes of
5156 disk and similar. If the directory is located on btrfs and
5157 quota is enabled, this includes quota display. A new command
5158 "image-status" has been added that shows additional
5159 information about images.
5160
5161 * machinectl is now able to clone container images
5162 efficiently, if the underlying file system (btrfs) supports
f59dba26 5163 it, with the new "machinectl clone" command. It also
615aaf41
LP
5164 gained commands for renaming and removing images, as well as
5165 marking them read-only or read-write (supported also on
5166 legacy file systems).
5167
5168 * networkd gained support for collecting LLDP network
5169 announcements, from hardware that supports this. This is
5170 shown in networkctl output.
5171
5172 * systemd-run gained support for a new -t (--pty) switch for
5173 invoking a binary on a pty whose input and output is
5174 connected to the invoking terminal. This allows executing
5175 processes as system services while interactively
5176 communicating with them via the terminal. Most interestingly
5177 this is supported across container boundaries. Invoking
5178 "systemd-run -t /bin/bash" is an alternative to running a
5179 full login session, the difference being that the former
5180 will not register a session, nor go through the PAM session
5181 setup.
5182
5183 * tmpfiles gained support for a new "v" line type for creating
5184 btrfs subvolumes. If the underlying file system is a legacy
5185 file system, this automatically degrades to creating a
5186 normal directory. Among others /var/lib/machines is now
5187 created like this at boot, should it be missing.
5188
5189 * The directory /var/lib/containers/ has been deprecated and
5190 been replaced by /var/lib/machines. The term "machines" has
5191 been used in the systemd context as generic term for both
5192 VMs and containers, and hence appears more appropriate for
5193 this, as the directory can also contain raw images bootable
5194 via qemu/kvm.
5195
5196 * systemd-nspawn when invoked with -M but without --directory=
5197 or --image= is now capable of searching for the container
5198 root directory, subvolume or disk image automatically, in
5199 /var/lib/machines. systemd-nspawn@.service has been updated
5200 to make use of this, thus allowing it to be used for raw
5201 disk images, too.
5202
5203 * A new machines.target unit has been introduced that is
5204 supposed to group all containers/VMs invoked as services on
5205 the system. systemd-nspawn@.service has been updated to
5206 integrate with that.
5207
5208 * machinectl gained a new "start" command, for invoking a
5209 container as a service. "machinectl start foo" is mostly
5210 equivalent to "systemctl start systemd-nspawn@foo.service",
5211 but handles escaping in a nicer way.
5212
5213 * systemd-nspawn will now mount most of the cgroupfs tree
5214 read-only into each container, with the exception of the
5215 container's own subtree in the name=systemd hierarchy.
5216
5217 * journald now sets the special FS_NOCOW file flag for its
5218 journal files. This should improve performance on btrfs, by
5219 avoiding heavy fragmentation when journald's write-pattern
5220 is used on COW file systems. It degrades btrfs' data
5221 integrity guarantees for the files to the same levels as for
5222 ext3/ext4 however. This should be OK though as journald does
5223 its own data integrity checks and all its objects are
5224 checksummed on disk. Also, journald should handle btrfs disk
5225 full events a lot more gracefully now, by processing SIGBUS
5226 errors, and not relying on fallocate() anymore.
5227
5228 * When journald detects that journal files it is writing to
5229 have been deleted it will immediately start new journal
5230 files.
5231
5232 * systemd now provides a way to store file descriptors
4c37970d 5233 per-service in PID 1. This is useful for daemons to ensure
615aaf41 5234 that fds they require are not lost during a daemon
94e5ba37 5235 restart. The fds are passed to the daemon on the next
615aaf41
LP
5236 invocation in the same way socket activation fds are
5237 passed. This is now used by journald to ensure that the
5238 various sockets connected to all the system's stdout/stderr
5239 are not lost when journald is restarted. File descriptors
5240 may be stored in PID 1 via the sd_pid_notify_with_fds() API,
5241 an extension to sd_notify(). Note that a limit is enforced
5242 on the number of fds a service can store in PID 1, and it
5243 defaults to 0, so that no fds may be stored, unless this is
5244 explicitly turned on.
5245
5246 * The default TERM variable to use for units connected to a
5247 terminal, when no other value is explicitly is set is now
5248 vt220 rather than vt102. This should be fairly safe still,
5249 but allows PgUp/PgDn work.
5250
5251 * The /etc/crypttab option header= as known from Debian is now
5252 supported.
5253
5254 * "loginctl user-status" and "loginctl session-status" will
5255 now show the last 10 lines of log messages of the
5256 user/session following the status output. Similar,
5257 "machinectl status" will show the last 10 log lines
5258 associated with a virtual machine or container
5259 service. (Note that this is usually not the log messages
5260 done in the VM/container itself, but simply what the
5261 container manager logs. For nspawn this includes all console
5262 output however.)
5263
5264 * "loginctl session-status" without further argument will now
5265 show the status of the session of the caller. Similar,
5266 "lock-session", "unlock-session", "activate",
5267 "enable-linger", "disable-linger" may now be called without
5268 session/user parameter in which case they apply to the
5269 caller's session/user.
5270
5271 * An X11 session scriptlet is now shipped that uploads
5272 $DISPLAY and $XAUTHORITY into the environment of the systemd
5273 --user daemon if a session begins. This should improve
5274 compatibility with X11 enabled applications run as systemd
5275 user services.
5276
5277 * Generators are now subject to masking via /etc and /run, the
5278 same way as unit files.
5279
5280 * networkd .network files gained support for configuring
5281 per-link IPv4/IPv6 packet forwarding as well as IPv4
5282 masquerading. This is by default turned on for veth links to
5283 containers, as registered by systemd-nspawn. This means that
5284 nspawn containers run with --network-veth will now get
5285 automatic routed access to the host's networks without any
5286 further configuration or setup, as long as networkd runs on
5287 the host.
5288
5289 * systemd-nspawn gained the --port= (-p) switch to expose TCP
5290 or UDP posts of a container on the host. With this in place
5291 it is possible to run containers with private veth links
5292 (--network-veth), and have their functionality exposed on
5293 the host as if their services were running directly on the
5294 host.
5295
dd2fd155 5296 * systemd-nspawn's --network-veth switch now gained a short
615aaf41
LP
5297 version "-n", since with the changes above it is now truly
5298 useful out-of-the-box. The systemd-nspawn@.service has been
5299 updated to make use of it too by default.
5300
5301 * systemd-nspawn will now maintain a per-image R/W lock, to
5302 ensure that the same image is not started more than once
5303 writable. (It's OK to run an image multiple times
5304 simultaneously in read-only mode.)
5305
5306 * systemd-nspawn's --image= option is now capable of
5307 dissecting and booting MBR and GPT disk images that contain
5308 only a single active Linux partition. Previously it
5309 supported only GPT disk images with proper GPT type
5310 IDs. This allows running cloud images from major
5311 distributions directly with systemd-nspawn, without
5312 modification.
5313
5314 * In addition to collecting mouse dpi data in the udev
5315 hardware database, there's now support for collecting angle
5316 information for mouse scroll wheels. The database is
7edecf21 5317 supposed to guarantee similar scrolling behavior on mice
615aaf41
LP
5318 that it knows about. There's also support for collecting
5319 information about Touchpad types.
5320
5321 * udev's input_id built-in will now also collect touch screen
5322 dimension data and attach it to probed devices.
5323
5324 * /etc/os-release gained support for a Distribution Privacy
5325 Policy link field.
5326
5327 * networkd gained support for creating "ipvlan", "gretap",
5328 "ip6gre", "ip6gretap" and "ip6tnl" network devices.
5329
5330 * systemd-tmpfiles gained support for "a" lines for setting
5331 ACLs on files.
5332
5333 * systemd-nspawn will now mount /tmp in the container to
5334 tmpfs, automatically.
5335
5336 * systemd now exposes the memory.usage_in_bytes cgroup
5337 attribute and shows it for each service in the "systemctl
5338 status" output, if available.
5339
5340 * When the user presses Ctrl-Alt-Del more than 7x within 2s an
5341 immediate reboot is triggered. This useful if shutdown is
5342 hung and is unable to complete, to expedite the
5343 operation. Note that this kind of reboot will still unmount
5344 all file systems, and hence should not result in fsck being
5345 run on next reboot.
5346
5347 * A .device unit for an optical block device will now be
5348 considered active only when a medium is in the drive. Also,
5349 mount units are now bound to their backing devices thus
5350 triggering automatic unmounting when devices become
5351 unavailable. With this in place systemd will now
5352 automatically unmount left-over mounts when a CD-ROM is
5353 ejected or an USB stick is yanked from the system.
5354
5355 * networkd-wait-online now has support for waiting for
5356 specific interfaces only (with globbing), and for giving up
5357 after a configurable timeout.
5358
5359 * networkd now exits when idle. It will be automatically
5360 restarted as soon as interfaces show up, are removed or
5361 change state. networkd will stay around as long as there is
5362 at least one DHCP state machine or similar around, that keep
5363 it non-idle.
5364
5365 * networkd may now configure IPv6 link-local addressing in
5366 addition to IPv4 link-local addressing.
5367
5368 * The IPv6 "token" for use in SLAAC may now be configured for
5369 each .network interface in networkd.
5370
5371 * Routes configured with networkd may now be assigned a scope
5372 in .network files.
5373
5374 * networkd's [Match] sections now support globbing and lists
5375 of multiple space-separated matches per item.
5376
11ea2781 5377 Contributions from: Alban Crequy, Alin Rauta, Andrey Chaser,
d2c643c6
LP
5378 Bastien Nocera, Bruno Bottazzini, Carlos Garnacho, Carlos
5379 Morata Castillo, Chris Atkinson, Chris J. Arges, Christian
5380 Kirbach, Christian Seiler, Christoph Brill, Colin Guthrie,
5381 Colin Walters, Cristian Rodríguez, Daniele Medri, Daniel Mack,
5382 Dave Reisner, David Herrmann, Djalal Harouni, Erik Auerswald,
5383 Filipe Brandenburger, Frank Theile, Gabor Kelemen, Gabriel de
5384 Perthuis, Harald Hoyer, Hui Wang, Ivan Shapovalov, Jan
5385 Engelhardt, Jan Synacek, Jay Faulkner, Johannes Hölzl, Jonas
5386 Ådahl, Jonathan Boulle, Josef Andersson, Kay Sievers, Ken
5387 Werner, Lennart Poettering, Lucas De Marchi, Lukas Märdian,
5388 Lukas Nykryn, Lukasz Skalski, Luke Shumaker, Mantas Mikulėnas,
5389 Manuel Mendez, Marcel Holtmann, Marc Schmitzer, Marko
5390 Myllynen, Martin Pitt, Maxim Mikityanskiy, Michael Biebl,
5391 Michael Marineau, Michael Olbrich, Michal Schmidt, Mindaugas
11ea2781
LP
5392 Baranauskas, Moez Bouhlel, Naveen Kumar, Patrik Flykt, Paul
5393 Martin, Peter Hutterer, Peter Mattern, Philippe De Swert,
5394 Piotr Drąg, Rafael Ferreira, Rami Rosen, Robert Milasan, Ronny
5395 Chevalier, Sangjung Woo, Sebastien Bacher, Sergey Ptashnick,
5396 Shawn Landden, Stéphane Graber, Susant Sahani, Sylvain
5397 Plantefève, Thomas Hindoe Paaboel Andersen, Tim JP, Tom
5398 Gundersen, Topi Miettinen, Torstein Husebø, Umut Tezduyar
d2c643c6
LP
5399 Lindskog, Veres Lajos, Vincent Batts, WaLyong Cho, Wieland
5400 Hoffmann, Zbigniew Jędrzejewski-Szmek
11ea2781 5401
ccddd104 5402 — Berlin, 2015-02-16
11ea2781 5403
d4f5a1f4
DH
5404CHANGES WITH 218:
5405
f9e00a9f
LP
5406 * When querying unit file enablement status (for example via
5407 "systemctl is-enabled"), a new state "indirect" is now known
5408 which indicates that a unit might not be enabled itself, but
c7683ffb 5409 another unit listed in its Also= setting might be.
f9e00a9f
LP
5410
5411 * Similar to the various existing ConditionXYZ= settings for
b938cb90 5412 units, there are now matching AssertXYZ= settings. While
f9e00a9f
LP
5413 failing conditions cause a unit to be skipped, but its job
5414 to succeed, failing assertions declared like this will cause
5415 a unit start operation and its job to fail.
5416
5417 * hostnamed now knows a new chassis type "embedded".
5418
5419 * systemctl gained a new "edit" command. When used on a unit
b938cb90 5420 file, this allows extending unit files with .d/ drop-in
f9e00a9f
LP
5421 configuration snippets or editing the full file (after
5422 copying it from /usr/lib to /etc). This will invoke the
5423 user's editor (as configured with $EDITOR), and reload the
5424 modified configuration after editing.
5425
5426 * "systemctl status" now shows the suggested enablement state
5427 for a unit, as declared in the (usually vendor-supplied)
5428 system preset files.
5429
5430 * nss-myhostname will now resolve the single-label host name
5431 "gateway" to the locally configured default IP routing
5432 gateways, ordered by their metrics. This assigns a stable
5433 name to the used gateways, regardless which ones are
5434 currently configured. Note that the name will only be
5435 resolved after all other name sources (if nss-myhostname is
5436 configured properly) and should hence not negatively impact
5437 systems that use the single-label host name "gateway" in
5438 other contexts.
5439
5440 * systemd-inhibit now allows filtering by mode when listing
5441 inhibitors.
5442
122676c9 5443 * Scope and service units gained a new "Delegate" boolean
b938cb90 5444 property, which, when set, allows processes running inside the
122676c9
LP
5445 unit to further partition resources. This is primarily
5446 useful for systemd user instances as well as container
5447 managers.
f9e00a9f
LP
5448
5449 * journald will now pick up audit messages directly from
5450 the kernel, and log them like any other log message. The
5451 audit fields are split up and fully indexed. This means that
5452 journalctl in many ways is now a (nicer!) alternative to
5453 ausearch, the traditional audit client. Note that this
b938cb90 5454 implements only a minimal audit client. If you want the
f9e00a9f
LP
5455 special audit modes like reboot-on-log-overflow, please use
5456 the traditional auditd instead, which can be used in
5457 parallel to journald.
5458
5459 * The ConditionSecurity= unit file option now understands the
5460 special string "audit" to check whether auditing is
5461 available.
5462
5463 * journalctl gained two new commands --vacuum-size= and
5464 --vacuum-time= to delete old journal files until the
a8eaaee7 5465 remaining ones take up no more than the specified size on disk,
f9e00a9f
LP
5466 or are not older than the specified time.
5467
5468 * A new, native PPPoE library has been added to sd-network,
5469 systemd's library of light-weight networking protocols. This
5470 library will be used in a future version of networkd to
5471 enable PPPoE communication without an external pppd daemon.
5472
5473 * The busctl tool now understands a new "capture" verb that
5474 works similar to "monitor", but writes a packet capture
5475 trace to STDOUT that can be redirected to a file which is
5476 compatible with libcap's capture file format. This can then
5477 be loaded in Wireshark and similar tools to inspect bus
5478 communication.
5479
5480 * The busctl tool now understands a new "tree" verb that shows
5481 the object trees of a specific service on the bus, or of all
5482 services.
5483
5484 * The busctl tool now understands a new "introspect" verb that
5485 shows all interfaces and members of objects on the bus,
5486 including their signature and values. This is particularly
5487 useful to get more information about bus objects shown by
5488 the new "busctl tree" command.
5489
5490 * The busctl tool now understands new verbs "call",
5491 "set-property" and "get-property" for invoking bus method
5492 calls, setting and getting bus object properties in a
5493 friendly way.
5494
5495 * busctl gained a new --augment-creds= argument that controls
5496 whether the tool shall augment credential information it
5497 gets from the bus with data from /proc, in a possibly
5498 race-ful way.
5499
5500 * nspawn's --link-journal= switch gained two new values
5501 "try-guest" and "try-host" that work like "guest" and
17c29493 5502 "host", but do not fail if the host has no persistent
f9e00a9f
LP
5503 journalling enabled. -j is now equivalent to
5504 --link-journal=try-guest.
5505
5506 * macvlan network devices created by nspawn will now have
5507 stable MAC addresses.
5508
5509 * A new SmackProcessLabel= unit setting has been added, which
5510 controls the SMACK security label processes forked off by
5511 the respective unit shall use.
5512
d4f5a1f4
DH
5513 * If compiled with --enable-xkbcommon, systemd-localed will
5514 verify x11 keymap settings by compiling the given keymap. It
5515 will spew out warnings if the compilation fails. This
5516 requires libxkbcommon to be installed.
5517
b938cb90 5518 * When a coredump is collected, a larger number of metadata
f9e00a9f 5519 fields is now collected and included in the journal records
b938cb90 5520 created for it. More specifically, control group membership,
f9e00a9f
LP
5521 environment variables, memory maps, working directory,
5522 chroot directory, /proc/$PID/status, and a list of open file
5523 descriptors is now stored in the log entry.
5524
17c29493 5525 * The udev hwdb now contains DPI information for mice. For
f9e00a9f
LP
5526 details see:
5527
5528 http://who-t.blogspot.de/2014/12/building-a-dpi-database-for-mice.html
5529
5530 * All systemd programs that read standalone configuration
5531 files in /etc now also support a corresponding series of
997b2b43
JT
5532 .conf.d configuration directories in /etc/, /run/,
5533 /usr/local/lib/, /usr/lib/, and (if configured with
5534 --enable-split-usr) /lib/. In particular, the following
5535 configuration files now have corresponding configuration
5536 directories: system.conf user.conf, logind.conf,
5537 journald.conf, sleep.conf, bootchart.conf, coredump.conf,
5538 resolved.conf, timesyncd.conf, journal-remote.conf, and
5539 journal-upload.conf. Note that distributions should use the
5540 configuration directories in /usr/lib/; the directories in
5541 /etc/ are reserved for the system administrator.
5542
f9e00a9f
LP
5543 * systemd-rfkill will no longer take the rfkill device name
5544 into account when storing rfkill state on disk, as the name
5545 might be dynamically assigned and not stable. Instead, the
5546 ID_PATH udev variable combined with the rfkill type (wlan,
5547 bluetooth, ...) is used.
5548
5549 * A new service systemd-machine-id-commit.service has been
5550 added. When used on systems where /etc is read-only during
5551 boot, and /etc/machine-id is not initialized (but an empty
5552 file), this service will copy the temporary machine ID
5553 created as replacement into /etc after the system is fully
5554 booted up. This is useful for systems that are freshly
5555 installed with a non-initialized machine ID, but should get
5556 a fixed machine ID for subsequent boots.
5557
5558 * networkd's .netdev files now provide a large set of
a8eaaee7 5559 configuration parameters for VXLAN devices. Similarly, the
f9e00a9f
LP
5560 bridge port cost parameter is now configurable in .network
5561 files. There's also new support for configuring IP source
5562 routing. networkd .link files gained support for a new
5563 OriginalName= match that is useful to match against the
5564 original interface name the kernel assigned. .network files
5565 may include MTU= and MACAddress= fields for altering the MTU
5566 and MAC address while being connected to a specific network
5567 interface.
5568
5569 * The LUKS logic gained supported for configuring
5570 UUID-specific key files. There's also new support for naming
5571 LUKS device from the kernel command line, using the new
5572 luks.name= argument.
5573
5574 * Timer units may now be transiently created via the bus API
5575 (this was previously already available for scope and service
5576 units). In addition it is now possible to create multiple
5577 transient units at the same time with a single bus call. The
5578 "systemd-run" tool has been updated to make use of this for
5579 running commands on a specified time, in at(1)-style.
5580
5581 * tmpfiles gained support for "t" lines, for assigning
5582 extended attributes to files. Among other uses this may be
5583 used to assign SMACK labels to files.
5584
13e92f39
LP
5585 Contributions from: Alin Rauta, Alison Chaiken, Andrej
5586 Manduch, Bastien Nocera, Chris Atkinson, Chris Leech, Chris
5587 Mayo, Colin Guthrie, Colin Walters, Cristian Rodríguez,
5588 Daniele Medri, Daniel Mack, Dan Williams, Dan Winship, Dave
5589 Reisner, David Herrmann, Didier Roche, Felipe Sateler, Gavin
5590 Li, Hans de Goede, Harald Hoyer, Iago López Galeiras, Ivan
5591 Shapovalov, Jakub Filak, Jan Janssen, Jan Synacek, Joe
5592 Lawrence, Josh Triplett, Kay Sievers, Lennart Poettering,
5593 Lukas Nykryn, Łukasz Stelmach, Maciej Wereski, Mantas
5594 Mikulėnas, Marcel Holtmann, Martin Pitt, Maurizio Lombardi,
5595 Michael Biebl, Michael Chapman, Michael Marineau, Michal
7da81d33
LP
5596 Schmidt, Michal Sekletar, Olivier Brunel, Patrik Flykt, Peter
5597 Hutterer, Przemyslaw Kedzierski, Rami Rosen, Ray Strode,
5598 Richard Schütz, Richard W.M. Jones, Ronny Chevalier, Ross
5599 Lagerwall, Sean Young, Stanisław Pitucha, Susant Sahani,
5600 Thomas Haller, Thomas Hindoe Paaboel Andersen, Tom Gundersen,
5601 Torstein Husebø, Umut Tezduyar Lindskog, Vicente Olivert
5602 Riera, WaLyong Cho, Wesley Dawson, Zbigniew Jędrzejewski-Szmek
13e92f39 5603
ccddd104 5604 — Berlin, 2014-12-10
f9e00a9f 5605
b62a309a
ZJS
5606CHANGES WITH 217:
5607
78b6b7ce
LP
5608 * journalctl gained the new options -t/--identifier= to match
5609 on the syslog identifier (aka "tag"), as well as --utc to
5610 show log timestamps in the UTC timezone. journalctl now also
5611 accepts -n/--lines=all to disable line capping in a pager.
b62a309a 5612
a65b8245
ZJS
5613 * journalctl gained a new switch, --flush, that synchronously
5614 flushes logs from /run/log/journal to /var/log/journal if
5615 persistent storage is enabled. systemd-journal-flush.service
5616 now waits until the operation is complete.
2a97b03b 5617
b62a309a
ZJS
5618 * Services can notify the manager before they start a reload
5619 (by sending RELOADING=1) or shutdown (by sending
4bdc60cb
LP
5620 STOPPING=1). This allows the manager to track and show the
5621 internal state of daemons and closes a race condition when
78b6b7ce 5622 the process is still running but has closed its D-Bus
4bdc60cb 5623 connection.
b62a309a 5624
78b6b7ce
LP
5625 * Services with Type=oneshot do not have to have any ExecStart
5626 commands anymore.
b62a309a
ZJS
5627
5628 * User units are now loaded also from
5629 $XDG_RUNTIME_DIR/systemd/user/. This is similar to the
5630 /run/systemd/user directory that was already previously
5631 supported, but is under the control of the user.
5632
3f9a0a52 5633 * Job timeouts (i.e. timeouts on the time a job that is
4ffd29fd
LP
5634 queued stays in the run queue) can now optionally result in
5635 immediate reboot or power-off actions (JobTimeoutAction= and
5636 JobTimeoutRebootArgument=). This is useful on ".target"
5637 units, to limit the maximum time a target remains
5638 undispatched in the run queue, and to trigger an emergency
5639 operation in such a case. This is now used by default to
5640 turn off the system if boot-up (as defined by everything in
5641 basic.target) hangs and does not complete for at least
5642 15min. Also, if power-off or reboot hang for at least 30min
5643 an immediate power-off/reboot operation is triggered. This
5644 functionality is particularly useful to increase reliability
5645 on embedded devices, but also on laptops which might
5646 accidentally get powered on when carried in a backpack and
5647 whose boot stays stuck in a hard disk encryption passphrase
5648 question.
5649
b62a309a
ZJS
5650 * systemd-logind can be configured to also handle lid switch
5651 events even when the machine is docked or multiple displays
5652 are attached (HandleLidSwitchDocked= option).
5653
5654 * A helper binary and a service have been added which can be
5655 used to resume from hibernation in the initramfs. A
5656 generator will parse the resume= option on the kernel
81c7dd89 5657 command line to trigger resume.
b62a309a 5658
78b6b7ce
LP
5659 * A user console daemon systemd-consoled has been
5660 added. Currently, it is a preview, and will so far open a
5661 single terminal on each session of the user marked as
09077149 5662 Desktop=systemd-console.
b62a309a
ZJS
5663
5664 * Route metrics can be specified for DHCP routes added by
5665 systemd-networkd.
5666
ba8df74b 5667 * The SELinux context of socket-activated services can be set
78b6b7ce 5668 from the information provided by the networking stack
b62a309a
ZJS
5669 (SELinuxContextFromNet= option).
5670
5671 * Userspace firmware loading support has been removed and
5672 the minimum supported kernel version is thus bumped to 3.7.
5673
5674 * Timeout for udev workers has been increased from 1 to 3
5675 minutes, but a warning will be printed after 1 minute to
5676 help diagnose kernel modules that take a long time to load.
5677
78b6b7ce 5678 * Udev rules can now remove tags on devices with TAG-="foobar".
b62a309a 5679
4bdc60cb 5680 * systemd's readahead implementation has been removed. In many
f6d1de85 5681 circumstances it didn't give expected benefits even for
b62a309a 5682 rotational disk drives and was becoming less relevant in the
78b6b7ce
LP
5683 age of SSDs. As none of the developers has been using
5684 rotating media anymore, and nobody stepped up to actively
5685 maintain this component of systemd it has now been removed.
b62a309a 5686
c4ac9900 5687 * Swap units can use Options= to specify discard options.
b62a309a
ZJS
5688 Discard options specified for swaps in /etc/fstab are now
5689 respected.
5690
5691 * Docker containers are now detected as a separate type of
5692 virtualization.
5693
5694 * The Password Agent protocol gained support for queries where
ba8df74b 5695 the user input is shown, useful e.g. for user names.
78b6b7ce
LP
5696 systemd-ask-password gained a new --echo option to turn that
5697 on.
b62a309a 5698
e6c253e3
MS
5699 * The default sysctl.d/ snippets will now set:
5700
5701 net.core.default_qdisc = fq_codel
5702
ba8df74b
KS
5703 This selects Fair Queuing Controlled Delay as the default
5704 queuing discipline for network interfaces. fq_codel helps
e6c253e3
MS
5705 fight the network bufferbloat problem. It is believed to be
5706 a good default with no tuning required for most workloads.
5707 Downstream distributions may override this choice. On 10Gbit
5708 servers that do not do forwarding, "fq" may perform better.
5709 Systems without a good clocksource should use "pfifo_fast".
5710
4bdc60cb
LP
5711 * If kdbus is enabled during build a new option BusPolicy= is
5712 available for service units, that allows locking all service
5713 processes into a stricter bus policy, in order to limit
5714 access to various bus services, or even hide most of them
5715 from the service's view entirely.
5716
5717 * networkctl will now show the .network and .link file
5718 networkd has applied to a specific interface.
5719
5720 * sd-login gained a new API call sd_session_get_desktop() to
5721 query which desktop environment has been selected for a
5722 session.
5723
5724 * UNIX utmp support is now compile-time optional to support
5725 legacy-free systems.
5726
78b6b7ce
LP
5727 * systemctl gained two new commands "add-wants" and
5728 "add-requires" for pulling in units from specific targets
5729 easily.
5730
5731 * If the word "rescue" is specified on the kernel command line
5732 the system will now boot into rescue mode (aka
5733 rescue.target), which was previously available only by
5734 specifying "1" or "systemd.unit=rescue.target" on the kernel
5735 command line. This new kernel command line option nicely
5736 mirrors the already existing "emergency" kernel command line
5737 option.
5738
5739 * New kernel command line options mount.usr=, mount.usrflags=,
d4474c41 5740 mount.usrfstype= have been added that match root=, rootflags=,
78b6b7ce
LP
5741 rootfstype= but allow mounting a specific file system to
5742 /usr.
5743
f6d1de85 5744 * The $NOTIFY_SOCKET is now also passed to control processes of
78b6b7ce
LP
5745 services, not only the main process.
5746
5747 * This version reenables support for fsck's -l switch. This
5748 means at least version v2.25 of util-linux is required for
5749 operation, otherwise dead-locks on device nodes may
5750 occur. Again: you need to update util-linux to at least
5751 v2.25 when updating systemd to v217.
5752
3769415e
TT
5753 * The "multi-seat-x" tool has been removed from systemd, as
5754 its functionality has been integrated into X servers 1.16,
5755 and the tool is hence redundant. It is recommended to update
5756 display managers invoking this tool to simply invoke X
5757 directly from now on, again.
5758
fae9332b 5759 * Support for the new ALLOW_INTERACTIVE_AUTHORIZATION D-Bus
d35f51ea
ZJS
5760 message flag has been added for all of systemd's polkit
5761 authenticated method calls has been added. In particular this
5762 now allows optional interactive authorization via polkit for
5763 many of PID1's privileged operations such as unit file
5764 enabling and disabling.
fae9332b 5765
cfa1571b
LP
5766 * "udevadm hwdb --update" learnt a new switch "--usr" for
5767 placing the rebuilt hardware database in /usr instead of
5768 /etc. When used only hardware database entries stored in
5769 /usr will be used, and any user database entries in /etc are
5770 ignored. This functionality is useful for vendors to ship a
5771 pre-built database on systems where local configuration is
5772 unnecessary or unlikely.
5773
7e63dd10
LP
5774 * Calendar time specifications in .timer units now also
5775 understand the strings "semi-annually", "quarterly" and
ba8df74b 5776 "minutely" as shortcuts (in addition to the preexisting
7e63dd10
LP
5777 "anually", "hourly", ...).
5778
d4474c41
TG
5779 * systemd-tmpfiles will now correctly create files in /dev
5780 at boot which are marked for creation only at boot. It is
5781 recommended to always create static device nodes with 'c!'
5782 and 'b!', so that they are created only at boot and not
5783 overwritten at runtime.
5784
3b187c5c
LP
5785 * When the watchdog logic is used for a service (WatchdogSec=)
5786 and the watchdog timeout is hit the service will now be
5787 terminated with SIGABRT (instead of just SIGTERM), in order
5788 to make sure a proper coredump and backtrace is
5789 generated. This ensures that hanging services will result in
5790 similar coredump/backtrace behaviour as services that hit a
5791 segmentation fault.
5792
4b08dd87
LP
5793 Contributions from: Andreas Henriksson, Andrei Borzenkov,
5794 Angus Gibson, Ansgar Burchardt, Ben Wolsieffer, Brandon L.
5795 Black, Christian Hesse, Cristian Rodríguez, Daniel Buch,
5796 Daniele Medri, Daniel Mack, Dan Williams, Dave Reisner, David
5797 Herrmann, David Sommerseth, David Strauss, Emil Renner
5798 Berthing, Eric Cook, Evangelos Foutras, Filipe Brandenburger,
5799 Gustavo Sverzut Barbieri, Hans de Goede, Harald Hoyer, Hristo
5800 Venev, Hugo Grostabussiat, Ivan Shapovalov, Jan Janssen, Jan
5801 Synacek, Jonathan Liu, Juho Son, Karel Zak, Kay Sievers, Klaus
5802 Purer, Koen Kooi, Lennart Poettering, Lukas Nykryn, Lukasz
5803 Skalski, Łukasz Stelmach, Mantas Mikulėnas, Marcel Holtmann,
5804 Marius Tessmann, Marko Myllynen, Martin Pitt, Michael Biebl,
5805 Michael Marineau, Michael Olbrich, Michael Scherer, Michal
5806 Schmidt, Michal Sekletar, Miroslav Lichvar, Patrik Flykt,
5807 Philippe De Swert, Piotr Drąg, Rahul Sundaram, Richard
5808 Weinberger, Robert Milasan, Ronny Chevalier, Ruben Kerkhof,
5809 Santiago Vila, Sergey Ptashnick, Simon McVittie, Sjoerd
5810 Simons, Stefan Brüns, Steven Allen, Steven Noonan, Susant
5811 Sahani, Sylvain Plantefève, Thomas Hindoe Paaboel Andersen,
5812 Timofey Titovets, Tobias Hunger, Tom Gundersen, Torstein
5813 Husebø, Umut Tezduyar Lindskog, WaLyong Cho, Zbigniew
13e92f39 5814 Jędrzejewski-Szmek
4b08dd87 5815
ccddd104 5816 — Berlin, 2014-10-28
4b08dd87 5817
b72ddf0f 5818CHANGES WITH 216:
b2ca0d63
LP
5819
5820 * timedated no longer reads NTP implementation unit names from
b72ddf0f 5821 /usr/lib/systemd/ntp-units.d/*.list. Alternative NTP
b2ca0d63
LP
5822 implementations should add a
5823
b72ddf0f 5824 Conflicts=systemd-timesyncd.service
b2ca0d63
LP
5825
5826 to their unit files to take over and replace systemd's NTP
5827 default functionality.
5828
5829 * systemd-sysusers gained a new line type "r" for configuring
5830 which UID/GID ranges to allocate system users/groups
5831 from. Lines of type "u" may now add an additional column
5832 that specifies the home directory for the system user to be
5833 created. Also, systemd-sysusers may now optionally read user
5834 information from STDIN instead of a file. This is useful for
5835 invoking it from RPM preinst scriptlets that need to create
5836 users before the first RPM file is installed since these
5837 files might need to be owned by them. A new
5838 %sysusers_create_inline RPM macro has been introduced to do
5839 just that. systemd-sysusers now updates the shadow files as
5840 well as the user/group databases, which should enhance
5841 compatibility with certain tools like grpck.
5842
d35f51ea
ZJS
5843 * A number of bus APIs of PID 1 now optionally consult polkit to
5844 permit access for otherwise unprivileged clients under certain
5845 conditions. Note that this currently doesn't support
5846 interactive authentication yet, but this is expected to be
5847 added eventually, too.
b2ca0d63
LP
5848
5849 * /etc/machine-info now has new fields for configuring the
5850 deployment environment of the machine, as well as the
5851 location of the machine. hostnamectl has been updated with
5852 new command to update these fields.
5853
5854 * systemd-timesyncd has been updated to automatically acquire
5855 NTP server information from systemd-networkd, which might
5856 have been discovered via DHCP.
5857
5858 * systemd-resolved now includes a caching DNS stub resolver
5859 and a complete LLMNR name resolution implementation. A new
daa05349
AB
5860 NSS module "nss-resolve" has been added which can be used
5861 instead of glibc's own "nss-dns" to resolve hostnames via
b2ca0d63
LP
5862 systemd-resolved. Hostnames, addresses and arbitrary RRs may
5863 be resolved via systemd-resolved D-Bus APIs. In contrast to
5864 the glibc internal resolver systemd-resolved is aware of
5865 multi-homed system, and keeps DNS server and caches separate
5f02e26c 5866 and per-interface. Queries are sent simultaneously on all
b2ca0d63
LP
5867 interfaces that have DNS servers configured, in order to
5868 properly handle VPNs and local LANs which might resolve
5869 separate sets of domain names. systemd-resolved may acquire
a1a4a25e 5870 DNS server information from systemd-networkd automatically,
b2ca0d63
LP
5871 which in turn might have discovered them via DHCP. A tool
5872 "systemd-resolve-host" has been added that may be used to
5873 query the DNS logic in resolved. systemd-resolved implements
5874 IDNA and automatically uses IDNA or UTF-8 encoding depending
5875 on whether classic DNS or LLMNR is used as transport. In the
5876 next releases we intend to add a DNSSEC and mDNS/DNS-SD
5877 implementation to systemd-resolved.
5878
5879 * A new NSS module nss-mymachines has been added, that
5880 automatically resolves the names of all local registered
5881 containers to their respective IP addresses.
5882
5883 * A new client tool "networkctl" for systemd-networkd has been
5884 added. It currently is entirely passive and will query
5885 networking configuration from udev, rtnetlink and networkd,
5f02e26c 5886 and present it to the user in a very friendly
b2ca0d63
LP
5887 way. Eventually, we hope to extend it to become a full
5888 control utility for networkd.
5889
5890 * .socket units gained a new DeferAcceptSec= setting that
5891 controls the kernels' TCP_DEFER_ACCEPT sockopt for
a8eaaee7 5892 TCP. Similarly, support for controlling TCP keep-alive
b2ca0d63
LP
5893 settings has been added (KeepAliveTimeSec=,
5894 KeepAliveIntervalSec=, KeepAliveProbes=). Also, support for
5895 turning off Nagle's algorithm on TCP has been added
5896 (NoDelay=).
5897
a1a4a25e 5898 * logind learned a new session type "web", for use in projects
b2ca0d63
LP
5899 like Cockpit which register web clients as PAM sessions.
5900
5901 * timer units with at least one OnCalendar= setting will now
46ae28d8 5902 be started only after time-sync.target has been
b2ca0d63
LP
5903 reached. This way they will not elapse before the system
5904 clock has been corrected by a local NTP client or
5905 similar. This is particular useful on RTC-less embedded
5906 machines, that come up with an invalid system clock.
5907
5908 * systemd-nspawn's --network-veth= switch should now result in
5909 stable MAC addresses for both the outer and the inner side
5910 of the link.
5911
5912 * systemd-nspawn gained a new --volatile= switch for running
5913 container instances with /etc or /var unpopulated.
5914
5915 * The kdbus client code has been updated to use the new Linux
5916 3.17 memfd subsystem instead of the old kdbus-specific one.
5917
5918 * systemd-networkd's DHCP client and server now support
01da80b1
LP
5919 FORCERENEW. There are also new configuration options to
5920 configure the vendor client identifier and broadcast mode
5921 for DHCP.
b2ca0d63
LP
5922
5923 * systemd will no longer inform the kernel about the current
5924 timezone, as this is necessarily incorrect and racy as the
5925 kernel has no understanding of DST and similar
5926 concepts. This hence means FAT timestamps will be always
5927 considered UTC, similar to what Android is already
5928 doing. Also, when the RTC is configured to the local time
5929 (rather than UTC) systemd will never synchronize back to it,
5930 as this might confuse Windows at a later boot.
5931
5932 * systemd-analyze gained a new command "verify" for offline
5933 validation of unit files.
5934
5935 * systemd-networkd gained support for a couple of additional
5936 settings for bonding networking setups. Also, the metric for
5937 statically configured routes may now be configured. For
5938 network interfaces where this is appropriate the peer IP
5939 address may now be configured.
5940
26568403
TG
5941 * systemd-networkd's DHCP client will no longer request
5942 broadcasting by default, as this tripped up some networks.
5943 For hardware where broadcast is required the feature should
5944 be switched back on using RequestBroadcast=yes.
5945
5946 * systemd-networkd will now set up IPv4LL addresses (when
5947 enabled) even if DHCP is configured successfully.
5948
5949 * udev will now default to respect network device names given
5950 by the kernel when the kernel indicates that these are
5951 predictable. This behavior can be tweaked by changing
5952 NamePolicy= in the relevant .link file.
5953
b2ca0d63
LP
5954 * A new library systemd-terminal has been added that
5955 implements full TTY stream parsing and rendering. This
5956 library is supposed to be used later on for implementing a
5957 full userspace VT subsystem, replacing the current kernel
5958 implementation.
5959
5960 * A new tool systemd-journal-upload has been added to push
5961 journal data to a remote system running
5962 systemd-journal-remote.
5963
5964 * journald will no longer forward all local data to another
5965 running syslog daemon. This change has been made because
5966 rsyslog (which appears to be the most commonly used syslog
5967 implementation these days) no longer makes use of this, and
5968 instead pulls the data out of the journal on its own. Since
5f02e26c 5969 forwarding the messages to a non-existent syslog server is
b2ca0d63
LP
5970 more expensive than we assumed we have now turned this
5971 off. If you run a syslog server that is not a recent rsyslog
5972 version, you have to turn this option on again
5973 (ForwardToSyslog= in journald.conf).
5974
5975 * journald now optionally supports the LZ4 compressor for
5976 larger journal fields. This compressor should perform much
5977 better than XZ which was the previous default.
5978
5979 * machinectl now shows the IP addresses of local containers,
5980 if it knows them, plus the interface name of the container.
5981
5982 * A new tool "systemd-escape" has been added that makes it
5983 easy to escape strings to build unit names and similar.
5984
5985 * sd_notify() messages may now include a new ERRNO= field
5986 which is parsed and collected by systemd and shown among the
5987 "systemctl status" output for a service.
5988
5989 * A new component "systemd-firstboot" has been added that
5990 queries the most basic systemd information (timezone,
a1a4a25e 5991 hostname, root password) interactively on first
b2ca0d63
LP
5992 boot. Alternatively it may also be used to provision these
5993 things offline on OS images installed into directories.
5994
01da80b1
LP
5995 * The default sysctl.d/ snippets will now set
5996
5997 net.ipv4.conf.default.promote_secondaries=1
5998
5999 This has the benefit of no flushing secondary IP addresses
6000 when primary addresses are removed.
6001
b2ca0d63
LP
6002 Contributions from: Ansgar Burchardt, Bastien Nocera, Colin
6003 Walters, Dan Dedrick, Daniel Buch, Daniel Korostil, Daniel
6004 Mack, Dan Williams, Dave Reisner, David Herrmann, Denis
6005 Kenzior, Eelco Dolstra, Eric Cook, Hannes Reinecke, Harald
6006 Hoyer, Hong Shick Pak, Hui Wang, Jean-André Santoni, Jóhann
6007 B. Guðmundsson, Jon Severinsson, Karel Zak, Kay Sievers, Kevin
6008 Wells, Lennart Poettering, Lukas Nykryn, Mantas Mikulėnas,
6009 Marc-Antoine Perennou, Martin Pitt, Michael Biebl, Michael
6010 Marineau, Michael Olbrich, Michal Schmidt, Michal Sekletar,
6011 Miguel Angel Ajo, Mike Gilbert, Olivier Brunel, Robert
6012 Schiele, Ronny Chevalier, Simon McVittie, Sjoerd Simons, Stef
6013 Walter, Steven Noonan, Susant Sahani, Tanu Kaskinen, Thomas
6014 Blume, Thomas Hindoe Paaboel Andersen, Timofey Titovets,
6015 Tobias Geerinckx-Rice, Tomasz Torcz, Tom Gundersen, Umut
6016 Tezduyar Lindskog, Zbigniew Jędrzejewski-Szmek
6017
ccddd104 6018 — Berlin, 2014-08-19
b72ddf0f 6019
3dff3e00 6020CHANGES WITH 215:
24a2bf4c
LP
6021
6022 * A new tool systemd-sysusers has been added. This tool
6023 creates system users and groups in /etc/passwd and
6024 /etc/group, based on static declarative system user/group
6025 definitions in /usr/lib/sysusers.d/. This is useful to
6026 enable factory resets and volatile systems that boot up with
6027 an empty /etc directory, and thus need system users and
6028 groups created during early boot. systemd now also ships
6029 with two default sysusers.d/ files for the most basic
6030 users and groups systemd and the core operating system
6031 require.
6032
6033 * A new tmpfiles snippet has been added that rebuilds the
6034 essential files in /etc on boot, should they be missing.
6035
6036 * A directive for ensuring automatic clean-up of
6037 /var/cache/man/ has been removed from the default
6038 configuration. This line should now be shipped by the man
6039 implementation. The necessary change has been made to the
6040 man-db implementation. Note that you need to update your man
6041 implementation to one that ships this line, otherwise no
6042 automatic clean-up of /var/cache/man will take place.
6043
6044 * A new condition ConditionNeedsUpdate= has been added that
6045 may conditionalize services to only run when /etc or /var
6046 are "older" than the vendor operating system resources in
6047 /usr. This is useful for reconstructing or updating /etc
6048 after an offline update of /usr or a factory reset, on the
6049 next reboot. Services that want to run once after such an
6050 update or reset should use this condition and order
6051 themselves before the new systemd-update-done.service, which
6052 will mark the two directories as fully updated. A number of
6053 service files have been added making use of this, to rebuild
6054 the udev hardware database, the journald message catalog and
6055 dynamic loader cache (ldconfig). The systemd-sysusers tool
6056 described above also makes use of this now. With this in
6057 place it is now possible to start up a minimal operating
ce1dde29 6058 system with /etc empty cleanly. For more information on the
24a2bf4c
LP
6059 concepts involved see this recent blog story:
6060
6061 http://0pointer.de/blog/projects/stateless.html
6062
6063 * A new system group "input" has been introduced, and all
6064 input device nodes get this group assigned. This is useful
6065 for system-level software to get access to input devices. It
3dff3e00
KS
6066 complements what is already done for "audio" and "video".
6067
24a2bf4c
LP
6068 * systemd-networkd learnt minimal DHCPv4 server support in
6069 addition to the existing DHCPv4 client support. It also
6070 learnt DHCPv6 client and IPv6 Router Solicitation client
6071 support. The DHCPv4 client gained support for static routes
6072 passed in from the server. Note that the [DHCPv4] section
6073 known in older systemd-networkd versions has been renamed to
6074 [DHCP] and is now also used by the DHCPv6 client. Existing
c7435cc9
LP
6075 .network files using settings of this section should be
6076 updated, though compatibility is maintained. Optionally, the
6077 client hostname may now be sent to the DHCP server.
24a2bf4c 6078
c7435cc9
LP
6079 * networkd gained support for vxlan virtual networks as well
6080 as tun/tap and dummy devices.
24a2bf4c
LP
6081
6082 * networkd gained support for automatic allocation of address
6083 ranges for interfaces from a system-wide pool of
6084 addresses. This is useful for dynamically managing a large
6085 number of interfaces with a single network configuration
6086 file. In particular this is useful to easily assign
6087 appropriate IP addresses to the veth links of a large number
6088 of nspawn instances.
6089
6090 * RPM macros for processing sysusers, sysctl and binfmt
6091 drop-in snippets at package installation time have been
6092 added.
6093
6094 * The /etc/os-release file should now be placed in
6095 /usr/lib/os-release. The old location is automatically
6096 created as symlink. /usr/lib is the more appropriate
6097 location of this file, since it shall actually describe the
6098 vendor operating system shipped in /usr, and not the
6099 configuration stored in /etc.
6100
6101 * .mount units gained a new boolean SloppyOptions= setting
6102 that maps to mount(8)'s -s option which enables permissive
6103 parsing of unknown mount options.
6104
6105 * tmpfiles learnt a new "L+" directive which creates a symlink
6106 but (unlike "L") deletes a pre-existing file first, should
6107 it already exist and not already be the correct
a8eaaee7 6108 symlink. Similarly, "b+", "c+" and "p+" directives have been
24a2bf4c
LP
6109 added as well, which create block and character devices, as
6110 well as fifos in the filesystem, possibly removing any
6111 pre-existing files of different types.
6112
6113 * For tmpfiles' "L", "L+", "C" and "C+" directives the final
6114 'argument' field (which so far specified the source to
ce1dde29 6115 symlink/copy the files from) is now optional. If omitted the
24a2bf4c
LP
6116 same file os copied from /usr/share/factory/ suffixed by the
6117 full destination path. This is useful for populating /etc
6118 with essential files, by copying them from vendor defaults
6119 shipped in /usr/share/factory/etc.
6120
6121 * A new command "systemctl preset-all" has been added that
6122 applies the service preset settings to all installed unit
6123 files. A new switch --preset-mode= has been added that
6124 controls whether only enable or only disable operations
6125 shall be executed.
6126
6127 * A new command "systemctl is-system-running" has been added
6128 that allows checking the overall state of the system, for
ce1dde29 6129 example whether it is fully up and running.
24a2bf4c
LP
6130
6131 * When the system boots up with an empty /etc, the equivalent
6132 to "systemctl preset-all" is executed during early boot, to
6133 make sure all default services are enabled after a factory
6134 reset.
6135
6136 * systemd now contains a minimal preset file that enables the
6137 most basic services systemd ships by default.
6138
6139 * Unit files' [Install] section gained a new DefaultInstance=
6140 field for defining the default instance to create if a
6141 template unit is enabled with no instance specified.
6142
6143 * A new passive target cryptsetup-pre.target has been added
6144 that may be used by services that need to make they run and
6145 finish before the first LUKS cryptographic device is set up.
6146
6147 * The /dev/loop-control and /dev/btrfs-control device nodes
6148 are now owned by the "disk" group by default, opening up
6149 access to this group.
6150
6151 * systemd-coredump will now automatically generate a
6152 stack trace of all core dumps taking place on the system,
6153 based on elfutils' libdw library. This stack trace is logged
6154 to the journal.
6155
6156 * systemd-coredump may now optionally store coredumps directly
6157 on disk (in /var/lib/systemd/coredump, possibly compressed),
6158 instead of storing them unconditionally in the journal. This
6159 mode is the new default. A new configuration file
6160 /etc/systemd/coredump.conf has been added to configure this
6161 and other parameters of systemd-coredump.
6162
6163 * coredumpctl gained a new "info" verb to show details about a
6164 specific coredump. A new switch "-1" has also been added
6165 that makes sure to only show information about the most
6166 recent entry instead of all entries. Also, as the tool is
6167 generally useful now the "systemd-" prefix of the binary
6168 name has been removed. Distributions that want to maintain
6169 compatibility with the old name should add a symlink from
6170 the old name to the new name.
6171
6172 * journald's SplitMode= now defaults to "uid". This makes sure
ce1dde29 6173 that unprivileged users can access their own coredumps with
24a2bf4c
LP
6174 coredumpctl without restrictions.
6175
6176 * New kernel command line options "systemd.wants=" (for
6177 pulling an additional unit during boot), "systemd.mask="
6178 (for masking a specific unit for the boot), and
6179 "systemd.debug-shell" (for enabling the debug shell on tty9)
6180 have been added. This is implemented in the new generator
6181 "systemd-debug-generator".
6182
6183 * systemd-nspawn will now by default filter a couple of
6184 syscalls for containers, among them those required for
6185 kernel module loading, direct x86 IO port access, swap
6186 management, and kexec. Most importantly though
6187 open_by_handle_at() is now prohibited for containers,
6188 closing a hole similar to a recently discussed vulnerability
6189 in docker regarding access to files on file hierarchies the
b938cb90
JE
6190 container should normally not have access to. Note that, for
6191 nspawn, we generally make no security claims anyway (and
24a2bf4c
LP
6192 this is explicitly documented in the man page), so this is
6193 just a fix for one of the most obvious problems.
6194
6195 * A new man page file-hierarchy(7) has been added that
6196 contains a minimized, modernized version of the file system
6197 layout systemd expects, similar in style to the FHS
c7435cc9
LP
6198 specification or hier(5). A new tool systemd-path(1) has
6199 been added to query many of these paths for the local
6200 machine and user.
24a2bf4c
LP
6201
6202 * Automatic time-based clean-up of $XDG_RUNTIME_DIR is no
6203 longer done. Since the directory now has a per-user size
6204 limit, and is cleaned on logout this appears unnecessary,
6205 in particular since this now brings the lifecycle of this
6206 directory closer in line with how IPC objects are handled.
6207
6208 * systemd.pc now exports a number of additional directories,
6209 including $libdir (which is useful to identify the library
6210 path for the primary architecture of the system), and a
6211 couple of drop-in directories.
6212
3058e017
TLSC
6213 * udev's predictable network interface names now use the dev_port
6214 sysfs attribute, introduced in linux 3.15 instead of dev_id to
6215 distinguish between ports of the same PCI function. dev_id should
6216 only be used for ports using the same HW address, hence the need
6217 for dev_port.
6218
c7435cc9
LP
6219 * machined has been updated to export the OS version of a
6220 container (read from /etc/os-release and
6221 /usr/lib/os-release) on the bus. This is now shown in
6222 "machinectl status" for a machine.
6223
6224 * A new service setting RestartForceExitStatus= has been
6225 added. If configured to a set of exit signals or process
6226 return values, the service will be restarted when the main
6227 daemon process exits with any of them, regardless of the
6228 Restart= setting.
6229
6230 * systemctl's -H switch for connecting to remote systemd
6231 machines has been extended so that it may be used to
6232 directly connect to a specific container on the
6233 host. "systemctl -H root@foobar:waldi" will now connect as
6234 user "root" to host "foobar", and then proceed directly to
6235 the container named "waldi". Note that currently you have to
6236 authenticate as user "root" for this to work, as entering
6237 containers is a privileged operation.
6238
6239 Contributions from: Andreas Henriksson, Benjamin Steinwender,
6240 Carl Schaefer, Christian Hesse, Colin Ian King, Cristian
6241 Rodríguez, Daniel Mack, Dave Reisner, David Herrmann, Eugene
6242 Yakubovich, Filipe Brandenburger, Frederic Crozat, Hristo
6243 Venev, Jan Engelhardt, Jonathan Boulle, Kay Sievers, Lennart
6244 Poettering, Luke Shumaker, Mantas Mikulėnas, Marc-Antoine
6245 Perennou, Marcel Holtmann, Michael Marineau, Michael Olbrich,
6246 Michał Bartoszkiewicz, Michal Sekletar, Patrik Flykt, Ronan Le
6247 Martret, Ronny Chevalier, Ruediger Oertel, Steven Noonan,
6248 Susant Sahani, Thadeu Lima de Souza Cascardo, Thomas Hindoe
6249 Paaboel Andersen, Tom Gundersen, Tom Hirst, Umut Tezduyar
6250 Lindskog, Uoti Urpala, Zbigniew Jędrzejewski-Szmek
6251
ccddd104 6252 — Berlin, 2014-07-03
c7435cc9 6253
4196a3ea
KS
6254CHANGES WITH 214:
6255
6256 * As an experimental feature, udev now tries to lock the
6257 disk device node (flock(LOCK_SH|LOCK_NB)) while it
6258 executes events for the disk or any of its partitions.
6259 Applications like partitioning programs can lock the
6260 disk device node (flock(LOCK_EX)) and claim temporary
6261 device ownership that way; udev will entirely skip all event
6262 handling for this disk and its partitions. If the disk
6263 was opened for writing, the close will trigger a partition
6264 table rescan in udev's "watch" facility, and if needed
71449caf 6265 synthesize "change" events for the disk and all its partitions.
8d0e0ddd 6266 This is now unconditionally enabled, and if it turns out to
4196a3ea 6267 cause major problems, we might turn it on only for specific
45df8656 6268 devices, or might need to disable it entirely. Device Mapper
4196a3ea
KS
6269 devices are excluded from this logic.
6270
04e91da2
LP
6271 * We temporarily dropped the "-l" switch for fsck invocations,
6272 since they collide with the flock() logic above. util-linux
6273 upstream has been changed already to avoid this conflict,
5238e957 6274 and we will re-add "-l" as soon as util-linux with this
04e91da2
LP
6275 change has been released.
6276
6277 * The dependency on libattr has been removed. Since a long
8d0e0ddd 6278 time, the extended attribute calls have moved to glibc, and
04e91da2
LP
6279 libattr is thus unnecessary.
6280
ce830873 6281 * Virtualization detection works without privileges now. This
04e91da2
LP
6282 means the systemd-detect-virt binary no longer requires
6283 CAP_SYS_PTRACE file capabilities, and our daemons can run
71449caf 6284 with fewer privileges.
04e91da2
LP
6285
6286 * systemd-networkd now runs under its own "systemd-network"
6287 user. It retains the CAP_NET_ADMIN, CAP_NET_BIND_SERVICE,
6288 CAP_NET_BROADCAST, CAP_NET_RAW capabilities though, but
6289 loses the ability to write to files owned by root this way.
6290
a8eaaee7 6291 * Similarly, systemd-resolved now runs under its own
04e91da2
LP
6292 "systemd-resolve" user with no capabilities remaining.
6293
a8eaaee7 6294 * Similarly, systemd-bus-proxyd now runs under its own
04e91da2
LP
6295 "systemd-bus-proxy" user with only CAP_IPC_OWNER remaining.
6296
6297 * systemd-networkd gained support for setting up "veth"
a8eaaee7 6298 virtual Ethernet devices for container connectivity, as well
04e91da2
LP
6299 as GRE and VTI tunnels.
6300
6301 * systemd-networkd will no longer automatically attempt to
6302 manually load kernel modules necessary for certain tunnel
8d0e0ddd 6303 transports. Instead, it is assumed the kernel loads them
04e91da2
LP
6304 automatically when required. This only works correctly on
6305 very new kernels. On older kernels, please consider adding
c54bed5d 6306 the kernel modules to /etc/modules-load.d/ as a work-around.
04e91da2 6307
cd14eda3 6308 * The resolv.conf file systemd-resolved generates has been
8d0e0ddd
JE
6309 moved to /run/systemd/resolve/. If you have a symlink from
6310 /etc/resolv.conf, it might be necessary to correct it.
cd14eda3 6311
ef392da6 6312 * Two new service settings, ProtectHome= and ProtectSystem=,
8d0e0ddd 6313 have been added. When enabled, they will make the user data
04e91da2
LP
6314 (such as /home) inaccessible or read-only and the system
6315 (such as /usr) read-only, for specific services. This allows
6316 very light-weight per-service sandboxing to avoid
6317 modifications of user data or system files from
6318 services. These two new switches have been enabled for all
6319 of systemd's long-running services, where appropriate.
6320
6321 * Socket units gained new SocketUser= and SocketGroup=
6322 settings to set the owner user and group of AF_UNIX sockets
6323 and FIFOs in the file system.
6324
8d0e0ddd 6325 * Socket units gained a new RemoveOnStop= setting. If enabled,
04e91da2
LP
6326 all FIFOS and sockets in the file system will be removed
6327 when the specific socket unit is stopped.
6328
6329 * Socket units gained a new Symlinks= setting. It takes a list
6330 of symlinks to create to file system sockets or FIFOs
45df8656 6331 created by the specific Unix sockets. This is useful to
de04bbdc 6332 manage symlinks to socket nodes with the same lifecycle as
04e91da2
LP
6333 the socket itself.
6334
6335 * The /dev/log socket and /dev/initctl FIFO have been moved to
6336 /run, and have been replaced by symlinks. This allows
6337 connecting to these facilities even if PrivateDevices=yes is
6338 used for a service (which makes /dev/log itself unavailable,
6339 but /run is left). This also has the benefit of ensuring
6340 that /dev only contains device nodes, directories and
6341 symlinks, and nothing else.
6342
6343 * sd-daemon gained two new calls sd_pid_notify() and
6344 sd_pid_notifyf(). They are similar to sd_notify() and
6345 sd_notifyf(), but allow overriding of the source PID of
6346 notification messages if permissions permit this. This is
6347 useful to send notify messages on behalf of a different
6348 process (for example, the parent process). The
6349 systemd-notify tool has been updated to make use of this
6350 when sending messages (so that notification messages now
6351 originate from the shell script invoking systemd-notify and
6352 not the systemd-notify process itself. This should minimize
6353 a race where systemd fails to associate notification
6354 messages to services when the originating process already
6355 vanished.
6356
6357 * A new "on-abnormal" setting for Restart= has been added. If
8d0e0ddd 6358 set, it will result in automatic restarts on all "abnormal"
04e91da2
LP
6359 reasons for a process to exit, which includes unclean
6360 signals, core dumps, timeouts and watchdog timeouts, but
6361 does not include clean and unclean exit codes or clean
6362 signals. Restart=on-abnormal is an alternative for
6363 Restart=on-failure for services that shall be able to
6364 terminate and avoid restarts on certain errors, by
6365 indicating so with an unclean exit code. Restart=on-failure
6366 or Restart=on-abnormal is now the recommended setting for
6367 all long-running services.
6368
6369 * If the InaccessibleDirectories= service setting points to a
6370 mount point (or if there are any submounts contained within
6371 it), it is now attempted to completely unmount it, to make
6372 the file systems truly unavailable for the respective
6373 service.
6374
6375 * The ReadOnlyDirectories= service setting and
6376 systemd-nspawn's --read-only parameter are now recursively
6377 applied to all submounts, too.
6378
6379 * Mount units may now be created transiently via the bus APIs.
6380
6381 * The support for SysV and LSB init scripts has been removed
6382 from the systemd daemon itself. Instead, it is now
6383 implemented as a generator that creates native systemd units
6384 from these scripts when needed. This enables us to remove a
6385 substantial amount of legacy code from PID 1, following the
6386 fact that many distributions only ship a very small number
6387 of LSB/SysV init scripts nowadays.
6388
cc98b302 6389 * Privileged Xen (dom0) domains are not considered
04e91da2
LP
6390 virtualization anymore by the virtualization detection
6391 logic. After all, they generally have unrestricted access to
71449caf 6392 the hardware and usually are used to manage the unprivileged
04e91da2
LP
6393 (domU) domains.
6394
6395 * systemd-tmpfiles gained a new "C" line type, for copying
6396 files or entire directories.
6397
6398 * systemd-tmpfiles "m" lines are now fully equivalent to "z"
8d0e0ddd
JE
6399 lines. So far, they have been non-globbing versions of the
6400 latter, and have thus been redundant. In future, it is
6401 recommended to only use "z". "m" has hence been removed
04e91da2
LP
6402 from the documentation, even though it stays supported.
6403
6404 * A tmpfiles snippet to recreate the most basic structure in
6405 /var has been added. This is enough to create the /var/run →
6406 /run symlink and create a couple of structural
6407 directories. This allows systems to boot up with an empty or
8d0e0ddd
JE
6408 volatile /var. Of course, while with this change, the core OS
6409 now is capable with dealing with a volatile /var, not all
04e91da2 6410 user services are ready for it. However, we hope that sooner
8d0e0ddd 6411 or later, many service daemons will be changed upstream so
04e91da2
LP
6412 that they are able to automatically create their necessary
6413 directories in /var at boot, should they be missing. This is
6414 the first step to allow state-less systems that only require
6415 the vendor image for /usr to boot.
6416
6417 * systemd-nspawn has gained a new --tmpfs= switch to mount an
6418 empty tmpfs instance to a specific directory. This is
6419 particularly useful for making use of the automatic
6420 reconstruction of /var (see above), by passing --tmpfs=/var.
6421
6422 * Access modes specified in tmpfiles snippets may now be
6423 prefixed with "~", which indicates that they shall be masked
daa05349 6424 by whether the existing file or directory is currently
8d0e0ddd 6425 writable, readable or executable at all. Also, if specified,
04e91da2
LP
6426 the sgid/suid/sticky bits will be masked for all
6427 non-directories.
6428
6429 * A new passive target unit "network-pre.target" has been
6430 added which is useful for services that shall run before any
6431 network is configured, for example firewall scripts.
6432
4c0d13bd
LP
6433 * The "floppy" group that previously owned the /dev/fd*
6434 devices is no longer used. The "disk" group is now used
6435 instead. Distributions should probably deprecate usage of
6436 this group.
6437
dc1d6c02
LP
6438 Contributions from: Camilo Aguilar, Christian Hesse, Colin Ian
6439 King, Cristian Rodríguez, Daniel Buch, Dave Reisner, David
6440 Strauss, Denis Tikhomirov, John, Jonathan Liu, Kay Sievers,
6441 Lennart Poettering, Mantas Mikulėnas, Mark Eichin, Ronny
6442 Chevalier, Susant Sahani, Thomas Blume, Thomas Hindoe Paaboel
6443 Andersen, Tom Gundersen, Umut Tezduyar Lindskog, Zbigniew
6444 Jędrzejewski-Szmek
6445
ccddd104 6446 — Berlin, 2014-06-11
dc1d6c02 6447
6936cd89
LP
6448CHANGES WITH 213:
6449
6450 * A new "systemd-timesyncd" daemon has been added for
69beda1f 6451 synchronizing the system clock across the network. It
6936cd89 6452 implements an SNTP client. In contrast to NTP
8d0e0ddd 6453 implementations such as chrony or the NTP reference server,
6936cd89 6454 this only implements a client side, and does not bother with
c9679c65
LP
6455 the full NTP complexity, focusing only on querying time from
6456 one remote server and synchronizing the local clock to
6936cd89 6457 it. Unless you intend to serve NTP to networked clients or
8d0e0ddd 6458 want to connect to local hardware clocks, this simple NTP
6936cd89
LP
6459 client should be more than appropriate for most
6460 installations. The daemon runs with minimal privileges, and
6461 has been hooked up with networkd to only operate when
6462 network connectivity is available. The daemon saves the
6463 current clock to disk every time a new NTP sync has been
6464 acquired, and uses this to possibly correct the system clock
69beda1f 6465 early at bootup, in order to accommodate for systems that
6936cd89 6466 lack an RTC such as the Raspberry Pi and embedded devices,
8d0e0ddd 6467 and to make sure that time monotonically progresses on these
c9679c65 6468 systems, even if it is not always correct. To make use of
8d0e0ddd 6469 this daemon, a new system user and group "systemd-timesync"
c9679c65 6470 needs to be created on installation of systemd.
6936cd89 6471
69beda1f
KS
6472 * The queue "seqnum" interface of libudev has been disabled, as
6473 it was generally incompatible with device namespacing as
6936cd89
LP
6474 sequence numbers of devices go "missing" if the devices are
6475 part of a different namespace.
6476
6477 * "systemctl list-timers" and "systemctl list-sockets" gained
6478 a --recursive switch for showing units of these types also
499b604b
ZJS
6479 for all local containers, similar in style to the already
6480 supported --recursive switch for "systemctl list-units".
6936cd89
LP
6481
6482 * A new RebootArgument= setting has been added for service
6483 units, which may be used to specify a kernel reboot argument
499b604b 6484 to use when triggering reboots with StartLimitAction=.
6936cd89
LP
6485
6486 * A new FailureAction= setting has been added for service
6487 units which may be used to specify an operation to trigger
499b604b 6488 when a service fails. This works similarly to
8d0e0ddd 6489 StartLimitAction=, but unlike it, controls what is done
6936cd89
LP
6490 immediately rather than only after several attempts to
6491 restart the service in question.
6492
6493 * hostnamed got updated to also expose the kernel name,
499b604b
ZJS
6494 release, and version on the bus. This is useful for
6495 executing commands like hostnamectl with the -H switch.
6496 systemd-analyze makes use of this to properly display
6497 details when running non-locally.
6936cd89
LP
6498
6499 * The bootchart tool can now show cgroup information in the
6500 graphs it generates.
6501
6502 * The CFS CPU quota cgroup attribute is now exposed for
6503 services. The new CPUQuota= switch has been added for this
6504 which takes a percentage value. Setting this will have the
6505 result that a service may never get more CPU time than the
6506 specified percentage, even if the machine is otherwise idle.
6507
6508 * systemd-networkd learned IPIP and SIT tunnel support.
6509
6510 * LSB init scripts exposing a dependency on $network will now
6511 get a dependency on network-online.target rather than simply
6512 network.target. This should bring LSB handling closer to
6513 what it was on SysV systems.
6514
6515 * A new fsck.repair= kernel option has been added to control
6516 how fsck shall deal with unclean file systems at boot.
6517
6518 * The (.ini) configuration file parser will now silently
6519 ignore sections whose name begins with "X-". This may be
6520 used to maintain application-specific extension sections in unit
6521 files.
6522
6523 * machined gained a new API to query the IP addresses of
6524 registered containers. "machinectl status" has been updated
6525 to show these addresses in its output.
6526
6527 * A new call sd_uid_get_display() has been added to the
6528 sd-login APIs for querying the "primary" session of a
6529 user. The "primary" session of the user is elected from the
6530 user's sessions and generally a graphical session is
6531 preferred over a text one.
6532
6533 * A minimal systemd-resolved daemon has been added. It
6534 currently simply acts as a companion to systemd-networkd and
6535 manages resolv.conf based on per-interface DNS
6536 configuration, possibly supplied via DHCP. In the long run
6537 we hope to extend this into a local DNSSEC enabled DNS and
6538 mDNS cache.
6539
68dd0956
TG
6540 * The systemd-networkd-wait-online tool is now enabled by
6541 default. It will delay network-online.target until a network
6542 connection has been configured. The tool primarily integrates
6543 with networkd, but will also make a best effort to make sense
6544 of network configuration performed in some other way.
6545
6936cd89 6546 * Two new service options StartupCPUShares= and
499b604b 6547 StartupBlockIOWeight= have been added that work similarly to
6936cd89 6548 CPUShares= and BlockIOWeight= however only apply during
69beda1f 6549 system startup. This is useful to prioritize certain services
6936cd89
LP
6550 differently during bootup than during normal runtime.
6551
8e7acf67
LP
6552 * hostnamed has been changed to prefer the statically
6553 configured hostname in /etc/hostname (unless set to
6554 'localhost' or empty) over any dynamic one supplied by
8d0e0ddd 6555 dhcp. With this change, the rules for picking the hostname
8e7acf67
LP
6556 match more closely the rules of other configuration settings
6557 where the local administrator's configuration in /etc always
6558 overrides any other settings.
6559
5238e957 6560 Contributions from: Ali H. Caliskan, Alison Chaiken, Bas van
6936cd89
LP
6561 den Berg, Brandon Philips, Cristian Rodríguez, Daniel Buch,
6562 Dan Kilman, Dave Reisner, David Härdeman, David Herrmann,
6563 David Strauss, Dimitris Spingos, Djalal Harouni, Eelco
6564 Dolstra, Evan Nemerson, Florian Albrechtskirchinger, Greg
6565 Kroah-Hartman, Harald Hoyer, Holger Hans Peter Freyther, Jan
6566 Engelhardt, Jani Nikula, Jason St. John, Jeffrey Clark,
6567 Jonathan Boulle, Kay Sievers, Lennart Poettering, Lukas
6568 Nykryn, Lukasz Skalski, Łukasz Stelmach, Mantas Mikulėnas,
8e7acf67
LP
6569 Marcel Holtmann, Martin Pitt, Matthew Monaco, Michael
6570 Marineau, Michael Olbrich, Michal Sekletar, Mike Gilbert, Nis
6571 Martensen, Patrik Flykt, Philip Lorenz, poma, Ray Strode,
6572 Reyad Attiyat, Robert Milasan, Scott Thrasher, Stef Walter,
6573 Steven Siloti, Susant Sahani, Tanu Kaskinen, Thomas Bächler,
6574 Thomas Hindoe Paaboel Andersen, Tom Gundersen, Umut Tezduyar
6575 Lindskog, WaLyong Cho, Will Woods, Zbigniew
6936cd89
LP
6576 Jędrzejewski-Szmek
6577
ccddd104 6578 — Beijing, 2014-05-28
6936cd89 6579
51c61cda
LP
6580CHANGES WITH 212:
6581
6582 * When restoring the screen brightness at boot, stay away from
6583 the darkest setting or from the lowest 5% of the available
6584 range, depending on which is the larger value of both. This
6585 should effectively protect the user from rebooting into a
6586 black screen, should the brightness have been set to minimum
6587 by accident.
6588
6589 * sd-login gained a new sd_machine_get_class() call to
6590 determine the class ("vm" or "container") of a machine
6591 registered with machined.
6592
6593 * sd-login gained new calls
6594 sd_peer_get_{session,owner_uid,unit,user_unit,slice,machine_name}(),
6595 to query the identity of the peer of a local AF_UNIX
499b604b 6596 connection. They operate similarly to their sd_pid_get_xyz()
51c61cda
LP
6597 counterparts.
6598
6599 * PID 1 will now maintain a system-wide system state engine
6600 with the states "starting", "running", "degraded",
6601 "maintenance", "stopping". These states are bound to system
6602 startup, normal runtime, runtime with at least one failed
6603 service, rescue/emergency mode and system shutdown. This
6604 state is shown in the "systemctl status" output when no unit
6605 name is passed. It is useful to determine system state, in
6606 particularly when doing so for many systems or containers at
6607 once.
6608
6609 * A new command "list-machines" has been added to "systemctl"
6610 that lists all local OS containers and shows their system
6611 state (see above), if systemd runs inside of them.
6612
6613 * systemctl gained a new "-r" switch to recursively enumerate
6614 units on all local containers, when used with the
6615 "list-unit" command (which is the default one that is
6616 executed when no parameters are specified).
6617
6618 * The GPT automatic partition discovery logic will now honour
6619 two GPT partition flags: one may be set on a partition to
6620 cause it to be mounted read-only, and the other may be set
6621 on a partition to ignore it during automatic discovery.
6622
6623 * Two new GPT type UUIDs have been added for automatic root
70a44afe 6624 partition discovery, for 32-bit and 64-bit ARM. This is not
51c61cda
LP
6625 particularly useful for discovering the root directory on
6626 these architectures during bare-metal boots (since UEFI is
6627 not common there), but still very useful to allow booting of
6628 ARM disk images in nspawn with the -i option.
6629
6630 * MAC addresses of interfaces created with nspawn's
6631 --network-interface= switch will now be generated from the
6632 machine name, and thus be stable between multiple invocations
6633 of the container.
6634
6635 * logind will now automatically remove all IPC objects owned
6636 by a user if she or he fully logs out. This makes sure that
6637 users who are logged out cannot continue to consume IPC
6638 resources. This covers SysV memory, semaphores and message
6639 queues as well as POSIX shared memory and message
de04bbdc 6640 queues. Traditionally, SysV and POSIX IPC had no lifecycle
b8bde116
JE
6641 limits. With this functionality, that is corrected. This may
6642 be turned off by using the RemoveIPC= switch of logind.conf.
51c61cda
LP
6643
6644 * The systemd-machine-id-setup and tmpfiles tools gained a
6645 --root= switch to operate on a specific root directory,
6646 instead of /.
6647
6648 * journald can now forward logged messages to the TTYs of all
6649 logged in users ("wall"). This is the default for all
6650 emergency messages now.
6651
6652 * A new tool systemd-journal-remote has been added to stream
6653 journal log messages across the network.
6654
6655 * /sys/fs/cgroup/ is now mounted read-only after all cgroup
6656 controller trees are mounted into it. Note that the
6657 directories mounted beneath it are not read-only. This is a
6658 security measure and is particularly useful because glibc
6659 actually includes a search logic to pick any tmpfs it can
6660 find to implement shm_open() if /dev/shm is not available
6661 (which it might very well be in namespaced setups).
6662
6663 * machinectl gained a new "poweroff" command to cleanly power
6664 down a local OS container.
6665
6666 * The PrivateDevices= unit file setting will now also drop the
6667 CAP_MKNOD capability from the capability bound set, and
6668 imply DevicePolicy=closed.
6669
6670 * PrivateDevices=, PrivateNetwork= and PrivateTmp= is now used
6671 comprehensively on all long-running systemd services where
6672 this is appropriate.
6673
6674 * systemd-udevd will now run in a disassociated mount
b8bde116 6675 namespace. To mount directories from udev rules, make sure to
51c61cda
LP
6676 pull in mount units via SYSTEMD_WANTS properties.
6677
6678 * The kdbus support gained support for uploading policy into
6679 the kernel. sd-bus gained support for creating "monitoring"
6680 connections that can eavesdrop into all bus communication
6681 for debugging purposes.
6682
6683 * Timestamps may now be specified in seconds since the UNIX
6684 epoch Jan 1st, 1970 by specifying "@" followed by the value
6685 in seconds.
6686
6687 * Native tcpwrap support in systemd has been removed. tcpwrap
6688 is old code, not really maintained anymore and has serious
6689 shortcomings, and better options such as firewalls
6690 exist. For setups that require tcpwrap usage, please
6691 consider invoking your socket-activated service via tcpd,
6692 like on traditional inetd.
6693
6694 * A new system.conf configuration option
6695 DefaultTimerAccuracySec= has been added that controls the
6696 default AccuracySec= setting of .timer units.
6697
b8bde116 6698 * Timer units gained a new WakeSystem= switch. If enabled,
51c61cda
LP
6699 timers configured this way will cause the system to resume
6700 from system suspend (if the system supports that, which most
6701 do these days).
6702
b8bde116 6703 * Timer units gained a new Persistent= switch. If enabled,
51c61cda
LP
6704 timers configured this way will save to disk when they have
6705 been last triggered. This information is then used on next
6706 reboot to possible execute overdue timer events, that
d28315e4
JE
6707 could not take place because the system was powered off.
6708 This enables simple anacron-like behaviour for timer units.
51c61cda
LP
6709
6710 * systemctl's "list-timers" will now also list the time a
6711 timer unit was last triggered in addition to the next time
6712 it will be triggered.
6713
6714 * systemd-networkd will now assign predictable IPv4LL
6715 addresses to its local interfaces.
6716
6717 Contributions from: Brandon Philips, Daniel Buch, Daniel Mack,
6718 Dave Reisner, David Herrmann, Gerd Hoffmann, Greg
6719 Kroah-Hartman, Hendrik Brueckner, Jason St. John, Josh
6720 Triplett, Kay Sievers, Lennart Poettering, Marc-Antoine
6721 Perennou, Michael Marineau, Michael Olbrich, Miklos Vajna,
6722 Patrik Flykt, poma, Sebastian Thorarensen, Thomas Bächler,
6723 Thomas Hindoe Paaboel Andersen, Tomasz Torcz, Tom Gundersen,
6724 Umut Tezduyar Lindskog, Wieland Hoffmann, Zbigniew
6725 Jędrzejewski-Szmek
6726
ccddd104 6727 — Berlin, 2014-03-25
51c61cda 6728
699b6b34
LP
6729CHANGES WITH 211:
6730
6731 * A new unit file setting RestrictAddressFamilies= has been
6732 added to restrict which socket address families unit
6733 processes gain access to. This takes address family names
6734 like "AF_INET" or "AF_UNIX", and is useful to minimize the
6735 attack surface of services via exotic protocol stacks. This
6736 is built on seccomp system call filters.
6737
6738 * Two new unit file settings RuntimeDirectory= and
6739 RuntimeDirectoryMode= have been added that may be used to
6740 manage a per-daemon runtime directories below /run. This is
6741 an alternative for setting up directory permissions with
6742 tmpfiles snippets, and has the advantage that the runtime
6743 directory's lifetime is bound to the daemon runtime and that
6744 the daemon starts up with an empty directory each time. This
6745 is particularly useful when writing services that drop
f1721625 6746 privileges using the User= or Group= setting.
699b6b34
LP
6747
6748 * The DeviceAllow= unit setting now supports globbing for
6749 matching against device group names.
6750
6751 * The systemd configuration file system.conf gained new
6752 settings DefaultCPUAccounting=, DefaultBlockIOAccounting=,
6753 DefaultMemoryAccounting= to globally turn on/off accounting
6754 for specific resources (cgroups) for all units. These
22e7062d 6755 settings may still be overridden individually in each unit
699b6b34
LP
6756 though.
6757
6758 * systemd-gpt-auto-generator is now able to discover /srv and
6759 root partitions in addition to /home and swap partitions. It
6760 also supports LUKS-encrypted partitions now. With this in
b8bde116 6761 place, automatic discovery of partitions to mount following
699b6b34 6762 the Discoverable Partitions Specification
56cadcb6 6763 (https://www.freedesktop.org/wiki/Specifications/DiscoverablePartitionsSpec)
699b6b34
LP
6764 is now a lot more complete. This allows booting without
6765 /etc/fstab and without root= on the kernel command line on
b8bde116 6766 systems prepared appropriately.
699b6b34
LP
6767
6768 * systemd-nspawn gained a new --image= switch which allows
6769 booting up disk images and Linux installations on any block
6770 device that follow the Discoverable Partitions Specification
6771 (see above). This means that installations made with
6772 appropriately updated installers may now be started and
6773 deployed using container managers, completely
6774 unmodified. (We hope that libvirt-lxc will add support for
6775 this feature soon, too.)
6776
6777 * systemd-nspawn gained a new --network-macvlan= setting to
6778 set up a private macvlan interface for the
499b604b 6779 container. Similarly, systemd-networkd gained a new
699b6b34
LP
6780 Kind=macvlan setting in .netdev files.
6781
6782 * systemd-networkd now supports configuring local addresses
6783 using IPv4LL.
6784
6785 * A new tool systemd-network-wait-online has been added to
6786 synchronously wait for network connectivity using
6787 systemd-networkd.
6788
6789 * The sd-bus.h bus API gained a new sd_bus_track object for
de04bbdc 6790 tracking the lifecycle of bus peers. Note that sd-bus.h is
699b6b34
LP
6791 still not a public API though (unless you specify
6792 --enable-kdbus on the configure command line, which however
6793 voids your warranty and you get no API stability guarantee).
6794
6795 * The $XDG_RUNTIME_DIR runtime directories for each user are
6796 now individual tmpfs instances, which has the benefit of
6797 introducing separate pools for each user, with individual
4ef6e535 6798 size limits, and thus making sure that unprivileged clients
699b6b34
LP
6799 can no longer negatively impact the system or other users by
6800 filling up their $XDG_RUNTIME_DIR. A new logind.conf setting
6801 RuntimeDirectorySize= has been introduced that allows
6802 controlling the default size limit for all users. It
6803 defaults to 10% of the available physical memory. This is no
6804 replacement for quotas on tmpfs though (which the kernel
6805 still does not support), as /dev/shm and /tmp are still
4ef6e535 6806 shared resources used by both the system and unprivileged
699b6b34
LP
6807 users.
6808
6809 * logind will now automatically turn off automatic suspending
6810 on laptop lid close when more than one display is
6811 connected. This was previously expected to be implemented
6812 individually in desktop environments (such as GNOME),
6813 however has been added to logind now, in order to fix a
6814 boot-time race where a desktop environment might not have
6815 been started yet and thus not been able to take an inhibitor
6816 lock at the time where logind already suspends the system
6817 due to a closed lid.
6818
6819 * logind will now wait at least 30s after each system
6820 suspend/resume cycle, and 3min after system boot before
6821 suspending the system due to a closed laptop lid. This
6822 should give USB docking stations and similar enough time to
4ef6e535 6823 be probed and configured after system resume and boot in
699b6b34
LP
6824 order to then act as suspend blocker.
6825
6826 * systemd-run gained a new --property= setting which allows
6827 initialization of resource control properties (and others)
6828 for the created scope or service unit. Example: "systemd-run
6829 --property=BlockIOWeight=10 updatedb" may be used to run
6830 updatedb at a low block IO scheduling weight.
6831
6832 * systemd-run's --uid=, --gid=, --setenv=, --setenv= switches
6833 now also work in --scope mode.
6834
6835 * When systemd is compiled with kdbus support, basic support
6836 for enforced policies is now in place. (Note that enabling
6837 kdbus still voids your warranty and no API compatibility
6838 promises are made.)
6839
6840 Contributions from: Andrey Borzenkov, Ansgar Burchardt, Armin
6841 K., Daniel Mack, Dave Reisner, David Herrmann, Djalal Harouni,
6842 Harald Hoyer, Henrik Grindal Bakken, Jasper St. Pierre, Kay
6843 Sievers, Kieran Clancy, Lennart Poettering, Lukas Nykryn,
6844 Mantas Mikulėnas, Marcel Holtmann, Mark Oteiza, Martin Pitt,
6845 Mike Gilbert, Peter Rajnoha, poma, Samuli Suominen, Stef
6846 Walter, Susant Sahani, Tero Roponen, Thomas Andersen, Thomas
6847 Bächler, Thomas Hindoe Paaboel Andersen, Tomasz Torcz, Tom
6848 Gundersen, Umut Tezduyar Lindskog, Uoti Urpala, Zachary Cook,
6849 Zbigniew Jędrzejewski-Szmek
6850
ccddd104 6851 — Berlin, 2014-03-12
699b6b34 6852
43c71255
LP
6853CHANGES WITH 210:
6854
6855 * systemd will now relabel /dev after loading the SMACK policy
6856 according to SMACK rules.
6857
67dd87c5 6858 * A new unit file option AppArmorProfile= has been added to
43c71255
LP
6859 set the AppArmor profile for the processes of a unit.
6860
6861 * A new condition check ConditionArchitecture= has been added
6862 to conditionalize units based on the system architecture, as
6863 reported by uname()'s "machine" field.
6864
6865 * systemd-networkd now supports matching on the system
6866 virtualization, architecture, kernel command line, host name
6867 and machine ID.
6868
ed28905e 6869 * logind is now a lot more aggressive when suspending the
43c71255 6870 machine due to a closed laptop lid. Instead of acting only
b8bde116 6871 on the lid close action, it will continuously watch the lid
43c71255
LP
6872 status and act on it. This is useful for laptops where the
6873 power button is on the outside of the chassis so that it can
ed28905e 6874 be reached without opening the lid (such as the Lenovo
b8bde116 6875 Yoga). On those machines, logind will now immediately
ed28905e 6876 re-suspend the machine if the power button has been
43c71255
LP
6877 accidentally pressed while the laptop was suspended and in a
6878 backpack or similar.
6879
6880 * logind will now watch SW_DOCK switches and inhibit reaction
6881 to the lid switch if it is pressed. This means that logind
d27893ef 6882 will not suspend the machine anymore if the lid is closed
949138cc 6883 and the system is docked, if the laptop supports SW_DOCK
43c71255
LP
6884 notifications via the input layer. Note that ACPI docking
6885 stations do not generate this currently. Also note that this
6886 logic is usually not fully sufficient and Desktop
6887 Environments should take a lid switch inhibitor lock when an
6888 external display is connected, as systemd will not watch
6889 this on its own.
6890
6891 * nspawn will now make use of the devices cgroup controller by
6892 default, and only permit creation of and access to the usual
6893 API device nodes like /dev/null or /dev/random, as well as
6894 access to (but not creation of) the pty devices.
6895
6896 * We will now ship a default .network file for
6897 systemd-networkd that automatically configures DHCP for
6898 network interfaces created by nspawn's --network-veth or
6899 --network-bridge= switches.
6900
6901 * systemd will now understand the usual M, K, G, T suffixes
6902 according to SI conventions (i.e. to the base 1000) when
6903 referring to throughput and hardware metrics. It will stay
6904 with IEC conventions (i.e. to the base 1024) for software
6905 metrics, according to what is customary according to
6906 Wikipedia. We explicitly document which base applies for
6907 each configuration option.
6908
6909 * The DeviceAllow= setting in unit files now supports a syntax
ed28905e 6910 to whitelist an entire group of devices node majors at once,
43c71255 6911 based on the /proc/devices listing. For example, with the
b8bde116 6912 string "char-pts", it is now possible to whitelist all
43c71255
LP
6913 current and future pseudo-TTYs at once.
6914
6915 * sd-event learned a new "post" event source. Event sources of
6916 this type are triggered by the dispatching of any event
6917 source of a type that is not "post". This is useful for
6918 implementing clean-up and check event sources that are
6919 triggered by other work being done in the program.
6920
6921 * systemd-networkd is no longer statically enabled, but uses
6922 the usual [Install] sections so that it can be
6923 enabled/disabled using systemctl. It still is enabled by
6924 default however.
6925
b8bde116 6926 * When creating a veth interface pair with systemd-nspawn, the
43c71255
LP
6927 host side will now be prefixed with "vb-" if
6928 --network-bridge= is used, and with "ve-" if --network-veth
b8bde116 6929 is used. This way, it is easy to distinguish these cases on
43c71255
LP
6930 the host, for example to apply different configuration to
6931 them with systemd-networkd.
6932
d27893ef
LP
6933 * The compatibility libraries for libsystemd-journal.so,
6934 libsystem-id128.so, libsystemd-login.so and
6935 libsystemd-daemon.so do not make use of IFUNC
b8bde116 6936 anymore. Instead, we now build libsystemd.so multiple times
d27893ef
LP
6937 under these alternative names. This means that the footprint
6938 is drastically increased, but given that these are
b8bde116 6939 transitional compatibility libraries, this should not matter
d27893ef
LP
6940 much. This change has been made necessary to support the ARM
6941 platform for these compatibility libraries, as the ARM
d28315e4 6942 toolchain is not really at the same level as the toolchain
ed28905e 6943 for other architectures like x86 and does not support
d27893ef
LP
6944 IFUNC. Please make sure to use --enable-compat-libs only
6945 during a transitional period!
6946
f26ad321
ZJS
6947 * The .include syntax has been deprecated and is not documented
6948 anymore. Drop-in files in .d directories should be used instead.
6949
13b28d82 6950 Contributions from: Andreas Fuchs, Armin K., Colin Walters,
43c71255
LP
6951 Daniel Mack, Dave Reisner, David Herrmann, Djalal Harouni,
6952 Holger Schurig, Jason A. Donenfeld, Jason St. John, Jasper
6953 St. Pierre, Kay Sievers, Lennart Poettering, Łukasz Stelmach,
6954 Marcel Holtmann, Michael Scherer, Michal Sekletar, Mike
6955 Gilbert, Samuli Suominen, Thomas Bächler, Thomas Hindoe
6956 Paaboel Andersen, Tom Gundersen, Umut Tezduyar Lindskog,
6957 Zbigniew Jędrzejewski-Szmek
6958
ccddd104 6959 — Berlin, 2014-02-24
43c71255 6960
e49b5aad
LP
6961CHANGES WITH 209:
6962
6963 * A new component "systemd-networkd" has been added that can
6964 be used to configure local network interfaces statically or
8b7d0494
JSJ
6965 via DHCP. It is capable of bringing up bridges, VLANs, and
6966 bonding. Currently, no hook-ups for interactive network
4670e9d5 6967 configuration are provided. Use this for your initrd,
8b7d0494
JSJ
6968 container, embedded, or server setup if you need a simple,
6969 yet powerful, network configuration solution. This
4670e9d5 6970 configuration subsystem is quite nifty, as it allows wildcard
1e190502 6971 hotplug matching in interfaces. For example, with a single
4670e9d5 6972 configuration snippet, you can configure that all Ethernet
1e190502
ZJS
6973 interfaces showing up are automatically added to a bridge,
6974 or similar. It supports link-sensing and more.
e49b5aad
LP
6975
6976 * A new tool "systemd-socket-proxyd" has been added which can
4c2413bf 6977 act as a bidirectional proxy for TCP sockets. This is
e49b5aad
LP
6978 useful for adding socket activation support to services that
6979 do not actually support socket activation, including virtual
4c2413bf 6980 machines and the like.
e49b5aad
LP
6981
6982 * Add a new tool to save/restore rfkill state on
6983 shutdown/boot.
6984
8b7d0494
JSJ
6985 * Save/restore state of keyboard backlights in addition to
6986 display backlights on shutdown/boot.
e49b5aad
LP
6987
6988 * udev learned a new SECLABEL{} construct to label device
6989 nodes with a specific security label when they appear. For
4c2413bf 6990 now, only SECLABEL{selinux} is supported, but the syntax is
e49b5aad
LP
6991 prepared for additional security frameworks.
6992
6993 * udev gained a new scheme to configure link-level attributes
6994 from files in /etc/systemd/network/*.link. These files can
8b7d0494 6995 match against MAC address, device path, driver name and type,
4c2413bf 6996 and will apply attributes like the naming policy, link speed,
8b7d0494 6997 MTU, duplex settings, Wake-on-LAN settings, MAC address, MAC
e49b5aad
LP
6998 address assignment policy (randomized, ...).
6999
dfb08b05
ZJS
7000 * The configuration of network interface naming rules for
7001 "permanent interface names" has changed: a new NamePolicy=
7002 setting in the [Link] section of .link files determines the
a8eaaee7 7003 priority of possible naming schemes (onboard, slot, MAC,
dfb08b05
ZJS
7004 path). The default value of this setting is determined by
7005 /usr/lib/net/links/99-default.link. Old
7006 80-net-name-slot.rules udev configuration file has been
7007 removed, so local configuration overriding this file should
ce830873 7008 be adapted to override 99-default.link instead.
dfb08b05 7009
e49b5aad 7010 * When the User= switch is used in a unit file, also
4c2413bf 7011 initialize $SHELL= based on the user database entry.
e49b5aad
LP
7012
7013 * systemd no longer depends on libdbus. All communication is
7014 now done with sd-bus, systemd's low-level bus library
7015 implementation.
7016
7017 * kdbus support has been added to PID 1 itself. When kdbus is
4c2413bf 7018 enabled, this causes PID 1 to set up the system bus and
e49b5aad
LP
7019 enable support for a new ".busname" unit type that
7020 encapsulates bus name activation on kdbus. It works a little
7021 bit like ".socket" units, except for bus names. A new
7022 generator has been added that converts classic dbus1 service
7023 activation files automatically into native systemd .busname
7024 and .service units.
7025
7026 * sd-bus: add a light-weight vtable implementation that allows
7027 defining objects on the bus with a simple static const
7028 vtable array of its methods, signals and properties.
7029
8b7d0494 7030 * systemd will not generate or install static dbus
e49b5aad 7031 introspection data anymore to /usr/share/dbus-1/interfaces,
1e190502 7032 as the precise format of these files is unclear, and
e49b5aad
LP
7033 nothing makes use of it.
7034
7035 * A proxy daemon is now provided to proxy clients connecting
7036 via classic D-Bus AF_UNIX sockets to kdbus, to provide full
7037 compatibility with classic D-Bus.
7038
7039 * A bus driver implementation has been added that supports the
7040 classic D-Bus bus driver calls on kdbus, also for
7041 compatibility purposes.
7042
7043 * A new API "sd-event.h" has been added that implements a
7044 minimal event loop API built around epoll. It provides a
7045 couple of features that direct epoll usage is lacking:
b9761003 7046 prioritization of events, scales to large numbers of timer
e49b5aad
LP
7047 events, per-event timer slack (accuracy), system-wide
7048 coalescing of timer events, exit handlers, watchdog
7049 supervision support using systemd's sd_notify() API, child
7050 process handling.
7051
7052 * A new API "sd-rntl.h" has been added that provides an API
7053 around the route netlink interface of the kernel, similar in
7054 style to "sd-bus.h".
7055
7e95eda5
PF
7056 * A new API "sd-dhcp-client.h" has been added that provides a
7057 small DHCPv4 client-side implementation. This is used by
e49b5aad
LP
7058 "systemd-networkd".
7059
4c2413bf 7060 * There is a new kernel command line option
8b7d0494
JSJ
7061 "systemd.restore_state=0|1". When set to "0", none of the
7062 systemd tools will restore saved runtime state to hardware
7063 devices. More specifically, the rfkill and backlight states
7064 are not restored.
e49b5aad
LP
7065
7066 * The FsckPassNo= compatibility option in mount/service units
7067 has been removed. The fstab generator will now add the
7068 necessary dependencies automatically, and does not require
7069 PID1's support for that anymore.
7070
8b7d0494 7071 * journalctl gained a new switch, --list-boots, that lists
e49b5aad
LP
7072 recent boots with their times and boot IDs.
7073
7074 * The various tools like systemctl, loginctl, timedatectl,
7075 busctl, systemd-run, ... have gained a new switch "-M" to
7076 connect to a specific, local OS container (as direct
7077 connection, without requiring SSH). This works on any
7078 container that is registered with machined, such as those
7079 created by libvirt-lxc or nspawn.
7080
7081 * systemd-run and systemd-analyze also gained support for "-H"
4c2413bf 7082 to connect to remote hosts via SSH. This is particularly
8b7d0494
JSJ
7083 useful for systemd-run because it enables queuing of jobs
7084 onto remote systems.
e49b5aad
LP
7085
7086 * machinectl gained a new command "login" to open a getty
7087 login in any local container. This works with any container
7088 that is registered with machined (such as those created by
8e420494 7089 libvirt-lxc or nspawn), and which runs systemd inside.
e49b5aad
LP
7090
7091 * machinectl gained a new "reboot" command that may be used to
7092 trigger a reboot on a specific container that is registered
7093 with machined. This works on any container that runs an init
7094 system of some kind.
7095
7096 * systemctl gained a new "list-timers" command to print a nice
7097 listing of installed timer units with the times they elapse
7098 next.
7099
7100 * Alternative reboot() parameters may now be specified on the
7101 "systemctl reboot" command line and are passed to the
7102 reboot() system call.
7103
7104 * systemctl gained a new --job-mode= switch to configure the
7105 mode to queue a job with. This is a more generic version of
8b7d0494 7106 --fail, --irreversible, and --ignore-dependencies, which are
e49b5aad
LP
7107 still available but not advertised anymore.
7108
e49b5aad
LP
7109 * /etc/systemd/system.conf gained new settings to configure
7110 various default timeouts of units, as well as the default
b9761003 7111 start limit interval and burst. These may still be overridden
e49b5aad
LP
7112 within each Unit.
7113
270f1624
LP
7114 * PID1 will now export on the bus profile data of the security
7115 policy upload process (such as the SELinux policy upload to
8e420494 7116 the kernel).
e49b5aad 7117
4670e9d5 7118 * journald: when forwarding logs to the console, include
1e190502
ZJS
7119 timestamps (following the setting in
7120 /sys/module/printk/parameters/time).
e49b5aad
LP
7121
7122 * OnCalendar= in timer units now understands the special
7123 strings "yearly" and "annually". (Both are equivalent)
7124
7125 * The accuracy of timer units is now configurable with the new
7126 AccuracySec= setting. It defaults to 1min.
7127
7128 * A new dependency type JoinsNamespaceOf= has been added that
7129 allows running two services within the same /tmp and network
7130 namespace, if PrivateNetwork= or PrivateTmp= are used.
7131
7132 * A new command "cat" has been added to systemctl. It outputs
7133 the original unit file of a unit, and concatenates the
1e190502
ZJS
7134 contents of additional "drop-in" unit file snippets, so that
7135 the full configuration is shown.
e49b5aad
LP
7136
7137 * systemctl now supports globbing on the various "list-xyz"
7138 commands, like "list-units" or "list-sockets", as well as on
1e190502
ZJS
7139 those commands which take multiple unit names.
7140
7141 * journalctl's --unit= switch gained support for globbing.
e49b5aad
LP
7142
7143 * All systemd daemons now make use of the watchdog logic so
7144 that systemd automatically notices when they hang.
7145
4c2413bf 7146 * If the $container_ttys environment variable is set,
e49b5aad
LP
7147 getty-generator will automatically spawn a getty for each
7148 listed tty. This is useful for container managers to request
7149 login gettys to be spawned on as many ttys as needed.
7150
7151 * %h, %s, %U specifier support is not available anymore when
7152 used in unit files for PID 1. This is because NSS calls are
7153 not safe from PID 1. They stay available for --user
7154 instances of systemd, and as special case for the root user.
7155
e49b5aad
LP
7156 * loginctl gained a new "--no-legend" switch to turn off output
7157 of the legend text.
7158
7159 * The "sd-login.h" API gained three new calls:
7160 sd_session_is_remote(), sd_session_get_remote_user(),
7161 sd_session_get_remote_host() to query information about
7162 remote sessions.
7163
8e420494
LP
7164 * The udev hardware database now also carries vendor/product
7165 information of SDIO devices.
e49b5aad
LP
7166
7167 * The "sd-daemon.h" API gained a new sd_watchdog_enabled() to
7168 determine whether watchdog notifications are requested by
7169 the system manager.
7170
1e190502 7171 * Socket-activated per-connection services now include a
e49b5aad
LP
7172 short description of the connection parameters in the
7173 description.
7174
4c2413bf 7175 * tmpfiles gained a new "--boot" option. When this is not used,
e49b5aad 7176 only lines where the command character is not suffixed with
4670e9d5 7177 "!" are executed. When this option is specified, those
1e190502
ZJS
7178 options are executed too. This partitions tmpfiles
7179 directives into those that can be safely executed at any
7180 time, and those which should be run only at boot (for
7181 example, a line that creates /run/nologin).
e49b5aad 7182
c0c5af00 7183 * A new API "sd-resolve.h" has been added which provides a simple
4c2413bf 7184 asynchronous wrapper around glibc NSS host name resolution
e49b5aad 7185 calls, such as getaddrinfo(). In contrast to glibc's
4c2413bf
JE
7186 getaddrinfo_a(), it does not use signals. In contrast to most
7187 other asynchronous name resolution libraries, this one does
7188 not reimplement DNS, but reuses NSS, so that alternate
e49b5aad 7189 host name resolution systems continue to work, such as mDNS,
8b7d0494 7190 LDAP, etc. This API is based on libasyncns, but it has been
e49b5aad
LP
7191 cleaned up for inclusion in systemd.
7192
6300b3ec
LP
7193 * The APIs "sd-journal.h", "sd-login.h", "sd-id128.h",
7194 "sd-daemon.h" are no longer found in individual libraries
7195 libsystemd-journal.so, libsystemd-login.so,
7196 libsystemd-id128.so, libsystemd-daemon.so. Instead, we have
8b7d0494
JSJ
7197 merged them into a single library, libsystemd.so, which
7198 provides all symbols. The reason for this is cyclic
e49b5aad 7199 dependencies, as these libraries tend to use each other's
d28315e4 7200 symbols. So far, we have managed to workaround that by linking
6300b3ec
LP
7201 a copy of a good part of our code into each of these
7202 libraries again and again, which, however, makes certain
7203 things hard to do, like sharing static variables. Also, it
7204 substantially increases footprint. With this change, there
7205 is only one library for the basic APIs systemd
7206 provides. Also, "sd-bus.h", "sd-memfd.h", "sd-event.h",
7207 "sd-rtnl.h", "sd-resolve.h", "sd-utf8.h" are found in this
7208 library as well, however are subject to the --enable-kdbus
7209 switch (see below). Note that "sd-dhcp-client.h" is not part
7210 of this library (this is because it only consumes, never
7211 provides, services of/to other APIs). To make the transition
8b7d0494 7212 easy from the separate libraries to the unified one, we
4c2413bf 7213 provide the --enable-compat-libs compile-time switch which
e49b5aad
LP
7214 will generate stub libraries that are compatible with the
7215 old ones but redirect all calls to the new one.
7216
8b7d0494 7217 * All of the kdbus logic and the new APIs "sd-bus.h",
e49b5aad 7218 "sd-memfd.h", "sd-event.h", "sd-rtnl.h", "sd-resolve.h",
8b7d0494
JSJ
7219 and "sd-utf8.h" are compile-time optional via the
7220 "--enable-kdbus" switch, and they are not compiled in by
7221 default. To make use of kdbus, you have to explicitly enable
4c2413bf 7222 the switch. Note however, that neither the kernel nor the
e49b5aad
LP
7223 userspace API for all of this is considered stable yet. We
7224 want to maintain the freedom to still change the APIs for
4c2413bf 7225 now. By specifying this build-time switch, you acknowledge
e49b5aad 7226 that you are aware of the instability of the current
ad42cf73
KS
7227 APIs.
7228
7229 * Also, note that while kdbus is pretty much complete,
e49b5aad 7230 it lacks one thing: proper policy support. This means you
8b7d0494 7231 can build a fully working system with all features; however,
4c2413bf
JE
7232 it will be highly insecure. Policy support will be added in
7233 one of the next releases, at the same time that we will
7234 declare the APIs stable.
e49b5aad 7235
81c7dd89 7236 * When the kernel command line argument "kdbus" is specified,
ad42cf73 7237 systemd will automatically load the kdbus.ko kernel module. At
8b7d0494 7238 this stage of development, it is only useful for testing kdbus
ad42cf73 7239 and should not be used in production. Note: if "--enable-kdbus"
8b7d0494 7240 is specified, and the kdbus.ko kernel module is available, and
ad42cf73
KS
7241 "kdbus" is added to the kernel command line, the entire system
7242 runs with kdbus instead of dbus-daemon, with the above mentioned
7243 problem of missing the system policy enforcement. Also a future
7244 version of kdbus.ko or a newer systemd will not be compatible with
7245 each other, and will unlikely be able to boot the machine if only
7246 one of them is updated.
7247
e49b5aad 7248 * systemctl gained a new "import-environment" command which
4c2413bf 7249 uploads the caller's environment (or parts thereof) into the
e49b5aad
LP
7250 service manager so that it is inherited by services started
7251 by the manager. This is useful to upload variables like
7252 $DISPLAY into the user service manager.
7253
7254 * A new PrivateDevices= switch has been added to service units
7255 which allows running a service with a namespaced /dev
7256 directory that does not contain any device nodes for
4c2413bf 7257 physical devices. More specifically, it only includes devices
8b7d0494 7258 such as /dev/null, /dev/urandom, and /dev/zero which are API
e49b5aad
LP
7259 entry points.
7260
7261 * logind has been extended to support behaviour like VT
7262 switching on seats that do not support a VT. This makes
7263 multi-session available on seats that are not the first seat
7264 (seat0), and on systems where kernel support for VTs has
8b7d0494 7265 been disabled at compile-time.
e49b5aad
LP
7266
7267 * If a process holds a delay lock for system sleep or shutdown
1e190502 7268 and fails to release it in time, we will now log its
e49b5aad
LP
7269 identity. This makes it easier to identify processes that
7270 cause slow suspends or power-offs.
7271
1e190502
ZJS
7272 * When parsing /etc/crypttab, support for a new key-slot=
7273 option as supported by Debian is added. It allows indicating
7274 which LUKS slot to use on disk, speeding up key loading.
e49b5aad 7275
000b1ba5 7276 * The sd_journal_sendv() API call has been checked and
1e190502
ZJS
7277 officially declared to be async-signal-safe so that it may
7278 be invoked from signal handlers for logging purposes.
e49b5aad
LP
7279
7280 * Boot-time status output is now enabled automatically after a
7281 short timeout if boot does not progress, in order to give
8e420494 7282 the user an indication what she or he is waiting for.
1e190502
ZJS
7283
7284 * The boot-time output has been improved to show how much time
7285 remains until jobs expire.
e49b5aad
LP
7286
7287 * The KillMode= switch in service units gained a new possible
8b7d0494 7288 value "mixed". If set, and the unit is shut down, then the
e49b5aad 7289 initial SIGTERM signal is sent only to the main daemon
8e420494 7290 process, while the following SIGKILL signal is sent to
e49b5aad
LP
7291 all remaining processes of the service.
7292
4c2413bf
JE
7293 * When a scope unit is registered, a new property "Controller"
7294 may be set. If set to a valid bus name, systemd will send a
e49b5aad
LP
7295 RequestStop() signal to this name when it would like to shut
7296 down the scope. This may be used to hook manager logic into
7297 the shutdown logic of scope units. Also, scope units may now
8b7d0494 7298 be put in a special "abandoned" state, in which case the
e49b5aad
LP
7299 manager process which created them takes no further
7300 responsibilities for it.
7301
1e190502 7302 * When reading unit files, systemd will now verify
e49b5aad
LP
7303 the access mode of these files, and warn about certain
7304 suspicious combinations. This has been added to make it
7305 easier to track down packaging bugs where unit files are
7306 marked executable or world-writable.
7307
7308 * systemd-nspawn gained a new "--setenv=" switch to set
8b7d0494 7309 container-wide environment variables. The similar option in
1e190502
ZJS
7310 systemd-activate was renamed from "--environment=" to
7311 "--setenv=" for consistency.
e49b5aad
LP
7312
7313 * systemd-nspawn has been updated to create a new kdbus domain
7314 for each container that is invoked, thus allowing each
b9761003 7315 container to have its own set of system and user buses,
8b7d0494 7316 independent of the host.
e49b5aad
LP
7317
7318 * systemd-nspawn gained a new --drop-capability= switch to run
7319 the container with less capabilities than the default. Both
b9761003 7320 --drop-capability= and --capability= now take the special
e49b5aad
LP
7321 string "all" for dropping or keeping all capabilities.
7322
7323 * systemd-nspawn gained new switches for executing containers
7324 with specific SELinux labels set.
7325
7326 * systemd-nspawn gained a new --quiet switch to not generate
7327 any additional output but the container's own console
7328 output.
7329
7330 * systemd-nspawn gained a new --share-system switch to run a
7331 container without PID namespacing enabled.
7332
7333 * systemd-nspawn gained a new --register= switch to control
1e190502 7334 whether the container is registered with systemd-machined or
8e420494 7335 not. This is useful for containers that do not run full
e49b5aad
LP
7336 OS images, but only specific apps.
7337
7338 * systemd-nspawn gained a new --keep-unit which may be used
8b7d0494 7339 when invoked as the only program from a service unit, and
e49b5aad 7340 results in registration of the unit service itself in
1e190502 7341 systemd-machined, instead of a newly opened scope unit.
e49b5aad
LP
7342
7343 * systemd-nspawn gained a new --network-interface= switch for
7344 moving arbitrary interfaces to the container. The new
4c2413bf 7345 --network-veth switch creates a virtual Ethernet connection
8b7d0494
JSJ
7346 between host and container. The new --network-bridge=
7347 switch then allows assigning the host side of this virtual
7348 Ethernet connection to a bridge device.
e49b5aad 7349
6afc95b7
LP
7350 * systemd-nspawn gained a new --personality= switch for
7351 setting the kernel personality for the container. This is
70a44afe 7352 useful when running a 32-bit container on a 64-bit host. A
b8bde116
JE
7353 similar option Personality= is now also available for service
7354 units to use.
6afc95b7 7355
e49b5aad
LP
7356 * logind will now also track a "Desktop" identifier for each
7357 session which encodes the desktop environment of it. This is
7358 useful for desktop environments that want to identify
7359 multiple running sessions of itself easily.
7360
7361 * A new SELinuxContext= setting for service units has been
7362 added that allows setting a specific SELinux execution
7363 context for a service.
7364
7365 * Most systemd client tools will now honour $SYSTEMD_LESS for
7366 settings of the "less" pager. By default, these tools will
8b7d0494
JSJ
7367 override $LESS to allow certain operations to work, such as
7368 jump-to-the-end. With $SYSTEMD_LESS, it is possible to
e49b5aad
LP
7369 influence this logic.
7370
7371 * systemd's "seccomp" hook-up has been changed to make use of
7372 the libseccomp library instead of using its own
7373 implementation. This has benefits for portability among
7374 other things.
7375
4c2413bf 7376 * For usage together with SystemCallFilter=, a new
8b7d0494 7377 SystemCallErrorNumber= setting has been introduced that
b8bde116
JE
7378 allows configuration of a system error number to be returned
7379 on filtered system calls, instead of immediately killing the
e49b5aad
LP
7380 process. Also, SystemCallArchitectures= has been added to
7381 limit access to system calls of a particular architecture
7382 (in order to turn off support for unused secondary
4c2413bf 7383 architectures). There is also a global
8b7d0494 7384 SystemCallArchitectures= setting in system.conf now to turn
e49b5aad
LP
7385 off support for non-native system calls system-wide.
7386
210054d7
KS
7387 * systemd requires a kernel with a working name_to_handle_at(),
7388 please see the kernel config requirements in the README file.
7389
e49b5aad
LP
7390 Contributions from: Adam Williamson, Alex Jia, Anatol Pomozov,
7391 Ansgar Burchardt, AppleBloom, Auke Kok, Bastien Nocera,
7392 Chengwei Yang, Christian Seiler, Colin Guthrie, Colin Walters,
7393 Cristian Rodríguez, Daniel Buch, Daniele Medri, Daniel J
7394 Walsh, Daniel Mack, Dan McGee, Dave Reisner, David Coppa,
7395 David Herrmann, David Strauss, Djalal Harouni, Dmitry Pisklov,
7396 Elia Pinto, Florian Weimer, George McCollister, Goffredo
7397 Baroncelli, Greg Kroah-Hartman, Hendrik Brueckner, Igor
7398 Zhbanov, Jan Engelhardt, Jan Janssen, Jason A. Donenfeld,
7399 Jason St. John, Jasper St. Pierre, Jóhann B. Guðmundsson, Jose
7400 Ignacio Naranjo, Karel Zak, Kay Sievers, Kristian Høgsberg,
7401 Lennart Poettering, Lubomir Rintel, Lukas Nykryn, Lukasz
7402 Skalski, Łukasz Stelmach, Luke Shumaker, Mantas Mikulėnas,
7403 Marc-Antoine Perennou, Marcel Holtmann, Marcos Felipe Rasia de
7404 Mello, Marko Myllynen, Martin Pitt, Matthew Monaco, Michael
7405 Marineau, Michael Scherer, Michał Górny, Michal Sekletar,
7406 Michele Curti, Oleksii Shevchuk, Olivier Brunel, Patrik Flykt,
7407 Pavel Holica, Raudi, Richard Marko, Ronny Chevalier, Sébastien
7408 Luttringer, Sergey Ptashnick, Shawn Landden, Simon Peeters,
7409 Stefan Beller, Susant Sahani, Sylvain Plantefeve, Sylvia Else,
7410 Tero Roponen, Thomas Bächler, Thomas Hindoe Paaboel Andersen,
7411 Tom Gundersen, Umut Tezduyar Lindskog, Unai Uribarri, Václav
7412 Pavlín, Vincent Batts, WaLyong Cho, William Giokas, Yang
7413 Zhiyong, Yin Kangkai, Yuxuan Shui, Zbigniew Jędrzejewski-Szmek
7414
ccddd104 7415 — Berlin, 2014-02-20
e49b5aad 7416
cd4010b3
LP
7417CHANGES WITH 208:
7418
7419 * logind has gained support for facilitating privileged input
7420 and drm device access for unprivileged clients. This work is
7421 useful to allow Wayland display servers (and similar
7422 programs, such as kmscon) to run under the user's ID and
7423 access input and drm devices which are normally
7424 protected. When this is used (and the kernel is new enough)
7425 logind will "mute" IO on the file descriptors passed to
7426 Wayland as long as it is in the background and "unmute" it
7427 if it returns into the foreground. This allows secure
7428 session switching without allowing background sessions to
7429 eavesdrop on input and display data. This also introduces
7430 session switching support if VT support is turned off in the
7431 kernel, and on seats that are not seat0.
7432
7433 * A new kernel command line option luks.options= is understood
06b643e7 7434 now which allows specifying LUKS options for usage for LUKS
cd4010b3
LP
7435 encrypted partitions specified with luks.uuid=.
7436
7437 * tmpfiles.d(5) snippets may now use specifier expansion in
7438 path names. More specifically %m, %b, %H, %v, are now
7439 replaced by the local machine id, boot id, hostname, and
7440 kernel version number.
7441
7442 * A new tmpfiles.d(5) command "m" has been introduced which
7443 may be used to change the owner/group/access mode of a file
d28315e4 7444 or directory if it exists, but do nothing if it does not.
cd4010b3
LP
7445
7446 * This release removes high-level support for the
7447 MemorySoftLimit= cgroup setting. The underlying kernel
7448 cgroup attribute memory.soft_limit= is currently badly
7449 designed and likely to be removed from the kernel API in its
d28315e4 7450 current form, hence we should not expose it for now.
cd4010b3
LP
7451
7452 * The memory.use_hierarchy cgroup attribute is now enabled for
7453 all cgroups systemd creates in the memory cgroup
7454 hierarchy. This option is likely to be come the built-in
cc98b302
TH
7455 default in the kernel anyway, and the non-hierarchical mode
7456 never made much sense in the intrinsically hierarchical
cd4010b3
LP
7457 cgroup system.
7458
7459 * A new field _SYSTEMD_SLICE= is logged along with all journal
7460 messages containing the slice a message was generated
7461 from. This is useful to allow easy per-customer filtering of
7462 logs among other things.
7463
7464 * systemd-journald will no longer adjust the group of journal
7465 files it creates to the "systemd-journal" group. Instead we
7466 rely on the journal directory to be owned by the
7467 "systemd-journal" group, and its setgid bit set, so that the
7468 kernel file system layer will automatically enforce that
7469 journal files inherit this group assignment. The reason for
7470 this change is that we cannot allow NSS look-ups from
7471 journald which would be necessary to resolve
7472 "systemd-journal" to a numeric GID, because this might
7473 create deadlocks if NSS involves synchronous queries to
7474 other daemons (such as nscd, or sssd) which in turn are
7475 logging clients of journald and might block on it, which
7476 would then dead lock. A tmpfiles.d(5) snippet included in
7477 systemd will make sure the setgid bit and group are
7478 properly set on the journal directory if it exists on every
7479 boot. However, we recommend adjusting it manually after
7480 upgrades too (or from RPM scriptlets), so that the change is
7481 not delayed until next reboot.
7482
7483 * Backlight and random seed files in /var/lib/ have moved into
7484 the /var/lib/systemd/ directory, in order to centralize all
7485 systemd generated files in one directory.
7486
7487 * Boot time performance measurements (as displayed by
7488 "systemd-analyze" for example) will now read ACPI 5.0 FPDT
7489 performance information if that's available to determine how
7490 much time BIOS and boot loader initialization required. With
7491 a sufficiently new BIOS you hence no longer need to boot
7492 with Gummiboot to get access to such information.
7493
7494 Contributions from: Andrey Borzenkov, Chen Jie, Colin Walters,
7495 Cristian Rodríguez, Dave Reisner, David Herrmann, David
7496 Mackey, David Strauss, Eelco Dolstra, Evan Callicoat, Gao
7497 feng, Harald Hoyer, Jimmie Tauriainen, Kay Sievers, Lennart
7498 Poettering, Lukas Nykryn, Mantas Mikulėnas, Martin Pitt,
7499 Michael Scherer, Michał Górny, Mike Gilbert, Patrick McCarty,
7500 Sebastian Ott, Tom Gundersen, Zbigniew Jędrzejewski-Szmek
7501
ccddd104 7502 — Berlin, 2013-10-02
cd4010b3 7503
4f0be680
LP
7504CHANGES WITH 207:
7505
7506 * The Restart= option for services now understands a new
f3a165b0 7507 on-watchdog setting, which will restart the service
4f0be680
LP
7508 automatically if the service stops sending out watchdog keep
7509 alive messages (as configured with WatchdogSec=).
7510
7511 * The getty generator (which is responsible for bringing up a
7512 getty on configured serial consoles) will no longer only
7513 start a getty on the primary kernel console but on all
7514 others, too. This makes the order in which console= is
7515 specified on the kernel command line less important.
7516
7517 * libsystemd-logind gained a new sd_session_get_vt() call to
7518 retrieve the VT number of a session.
7519
7520 * If the option "tries=0" is set for an entry of /etc/crypttab
7521 its passphrase is queried indefinitely instead of any
7522 maximum number of tries.
7523
7524 * If a service with a configure PID file terminates its PID
7525 file will now be removed automatically if it still exists
7526 afterwards. This should put an end to stale PID files.
7527
7528 * systemd-run will now also take relative binary path names
7529 for execution and no longer insists on absolute paths.
7530
7531 * InaccessibleDirectories= and ReadOnlyDirectories= now take
7532 paths that are optionally prefixed with "-" to indicate that
d28315e4 7533 it should not be considered a failure if they do not exist.
4f0be680 7534
f3a165b0
KS
7535 * journalctl -o (and similar commands) now understands a new
7536 output mode "short-precise", it is similar to "short" but
4f0be680
LP
7537 shows timestamps with usec accuracy.
7538
7539 * The option "discard" (as known from Debian) is now
7540 synonymous to "allow-discards" in /etc/crypttab. In fact,
387abf80 7541 "discard" is preferred now (since it is easier to remember
4f0be680
LP
7542 and type).
7543
f3a165b0 7544 * Some licensing clean-ups were made, so that more code is now
4f0be680
LP
7545 LGPL-2.1 licensed than before.
7546
7547 * A minimal tool to save/restore the display backlight
7548 brightness across reboots has been added. It will store the
f3a165b0 7549 backlight setting as late as possible at shutdown, and
4f0be680
LP
7550 restore it as early as possible during reboot.
7551
7552 * A logic to automatically discover and enable home and swap
7553 partitions on GPT disks has been added. With this in place
7554 /etc/fstab becomes optional for many setups as systemd can
7555 discover certain partitions located on the root disk
7556 automatically. Home partitions are recognized under their
7557 GPT type ID 933ac7e12eb44f13b8440e14e2aef915. Swap
7558 partitions are recognized under their GPT type ID
7559 0657fd6da4ab43c484e50933c84b4f4f.
7560
7561 * systemd will no longer pass any environment from the kernel
7562 or initrd to system services. If you want to set an
7563 environment for all services, do so via the kernel command
7564 line systemd.setenv= assignment.
7565
387abf80
LP
7566 * The systemd-sysctl tool no longer natively reads the file
7567 /etc/sysctl.conf. If desired, the file should be symlinked
7568 from /etc/sysctl.d/99-sysctl.conf. Apart from providing
7569 legacy support by a symlink rather than built-in code, it
7570 also makes the otherwise hidden order of application of the
7571 different files visible. (Note that this partly reverts to a
7572 pre-198 application order of sysctl knobs!)
04bf3c1a 7573
4f0be680
LP
7574 * The "systemctl set-log-level" and "systemctl dump" commands
7575 have been moved to systemd-analyze.
7576
7577 * systemd-run learned the new --remain-after-exit switch,
7578 which causes the scope unit not to be cleaned up
7579 automatically after the process terminated.
7580
7581 * tmpfiles learned a new --exclude-prefix= switch to exclude
7582 certain paths from operation.
7583
7584 * journald will now automatically flush all messages to disk
f47ad593
ZJS
7585 as soon as a message at the log level CRIT, ALERT or EMERG
7586 is received.
4f0be680
LP
7587
7588 Contributions from: Andrew Cook, Brandon Philips, Christian
7589 Hesse, Christoph Junghans, Colin Walters, Daniel Schaal,
7590 Daniel Wallace, Dave Reisner, David Herrmann, Gao feng, George
7591 McCollister, Giovanni Campagna, Hannes Reinecke, Harald Hoyer,
7592 Herczeg Zsolt, Holger Hans Peter Freyther, Jan Engelhardt,
7593 Jesper Larsen, Kay Sievers, Khem Raj, Lennart Poettering,
7594 Lukas Nykryn, Maciej Wereski, Mantas Mikulėnas, Marcel
7595 Holtmann, Martin Pitt, Michael Biebl, Michael Marineau,
7596 Michael Scherer, Michael Stapelberg, Michal Sekletar, Michał
7597 Górny, Olivier Brunel, Ondrej Balaz, Ronny Chevalier, Shawn
7598 Landden, Steven Hiscocks, Thomas Bächler, Thomas Hindoe
7599 Paaboel Andersen, Tom Gundersen, Umut Tezduyar, WANG Chao,
7600 William Giokas, Zbigniew Jędrzejewski-Szmek
7601
ccddd104 7602 — Berlin, 2013-09-13
4f0be680 7603
408f281b
LP
7604CHANGES WITH 206:
7605
7606 * The documentation has been updated to cover the various new
7607 concepts introduced with 205.
7608
7609 * Unit files now understand the new %v specifier which
7610 resolves to the kernel version string as returned by "uname
7611 -r".
7612
7613 * systemctl now supports filtering the unit list output by
7614 load state, active state and sub state, using the new
33b521be 7615 --state= parameter.
408f281b
LP
7616
7617 * "systemctl status" will now show the results of the
7618 condition checks (like ConditionPathExists= and similar) of
7619 the last start attempts of the unit. They are also logged to
7620 the journal.
7621
7622 * "journalctl -b" may now be used to look for boot output of a
7623 specific boot. Try "journalctl -b -1" for the previous boot,
7624 but the syntax is substantially more powerful.
7625
7626 * "journalctl --show-cursor" has been added which prints the
7627 cursor string the last shown log line. This may then be used
7628 with the new "journalctl --after-cursor=" switch to continue
7629 browsing logs from that point on.
7630
7631 * "journalctl --force" may now be used to force regeneration
7632 of an FSS key.
7633
251cc819
LP
7634 * Creation of "dead" device nodes has been moved from udev
7635 into kmod and tmpfiles. Previously, udev would read the kmod
7636 databases to pre-generate dead device nodes based on meta
7637 information contained in kernel modules, so that these would
7638 be auto-loaded on access rather then at boot. As this
d28315e4 7639 does not really have much to do with the exposing actual
251cc819
LP
7640 kernel devices to userspace this has always been slightly
7641 alien in the udev codebase. Following the new scheme kmod
7642 will now generate a runtime snippet for tmpfiles from the
7643 module meta information and it now is tmpfiles' job to the
7644 create the nodes. This also allows overriding access and
7645 other parameters for the nodes using the usual tmpfiles
7646 facilities. As side effect this allows us to remove the
7647 CAP_SYS_MKNOD capability bit from udevd entirely.
7648
7649 * logind's device ACLs may now be applied to these "dead"
7650 devices nodes too, thus finally allowing managed access to
ce830873 7651 devices such as /dev/snd/sequencer without loading the
251cc819 7652 backing module right-away.
408f281b
LP
7653
7654 * A new RPM macro has been added that may be used to apply
7655 tmpfiles configuration during package installation.
7656
7657 * systemd-detect-virt and ConditionVirtualization= now can
7658 detect User-Mode-Linux machines (UML).
7659
251cc819
LP
7660 * journald will now implicitly log the effective capabilities
7661 set of processes in the message metadata.
408f281b
LP
7662
7663 * systemd-cryptsetup has gained support for TrueCrypt volumes.
7664
7665 * The initrd interface has been simplified (more specifically,
7666 support for passing performance data via environment
7667 variables and fsck results via files in /run has been
7668 removed). These features were non-essential, and are
7669 nowadays available in a much nicer way by having systemd in
7670 the initrd serialize its state and have the hosts systemd
7671 deserialize it again.
7672
28f5c779
KS
7673 * The udev "keymap" data files and tools to apply keyboard
7674 specific mappings of scan to key codes, and force-release
7675 scan code lists have been entirely replaced by a udev
7676 "keyboard" builtin and a hwdb data file.
408f281b 7677
251cc819
LP
7678 * systemd will now honour the kernel's "quiet" command line
7679 argument also during late shutdown, resulting in a
7680 completely silent shutdown when used.
7681
7682 * There's now an option to control the SO_REUSEPORT socket
7683 option in .socket units.
7684
7685 * Instance units will now automatically get a per-template
7686 subslice of system.slice unless something else is explicitly
7687 configured. For example, instances of sshd@.service will now
7688 implicitly be placed in system-sshd.slice rather than
7689 system.slice as before.
7690
7691 * Test coverage support may now be enabled at build time.
7692
7693 Contributions from: Dave Reisner, Frederic Crozat, Harald
7694 Hoyer, Holger Hans Peter Freyther, Jan Engelhardt, Jan
7695 Janssen, Jason St. John, Jesper Larsen, Kay Sievers, Lennart
7696 Poettering, Lukas Nykryn, Maciej Wereski, Martin Pitt, Michael
7697 Olbrich, Ramkumar Ramachandra, Ross Lagerwall, Shawn Landden,
7698 Thomas H.P. Andersen, Tom Gundersen, Tomasz Torcz, William
7699 Giokas, Zbigniew Jędrzejewski-Szmek
7700
ccddd104 7701 — Berlin, 2013-07-23
4f0be680 7702
00aa832b
LP
7703CHANGES WITH 205:
7704
7705 * Two new unit types have been introduced:
7706
7707 Scope units are very similar to service units, however, are
ccddd104 7708 created out of pre-existing processes — instead of PID 1
00aa832b
LP
7709 forking off the processes. By using scope units it is
7710 possible for system services and applications to group their
7711 own child processes (worker processes) in a powerful way
7712 which then maybe used to organize them, or kill them
7713 together, or apply resource limits on them.
7714
7715 Slice units may be used to partition system resources in an
cc98b302 7716 hierarchical fashion and then assign other units to them. By
00aa832b
LP
7717 default there are now three slices: system.slice (for all
7718 system services), user.slice (for all user sessions),
7719 machine.slice (for VMs and containers).
7720
7721 Slices and scopes have been introduced primarily in
7722 context of the work to move cgroup handling to a
7723 single-writer scheme, where only PID 1
7724 creates/removes/manages cgroups.
7725
7726 * There's a new concept of "transient" units. In contrast to
7727 normal units these units are created via an API at runtime,
7728 not from configuration from disk. More specifically this
7729 means it is now possible to run arbitrary programs as
7730 independent services, with all execution parameters passed
7731 in via bus APIs rather than read from disk. Transient units
7732 make systemd substantially more dynamic then it ever was,
7733 and useful as a general batch manager.
7734
7735 * logind has been updated to make use of scope and slice units
7736 for managing user sessions. As a user logs in he will get
7737 his own private slice unit, to which all sessions are added
7738 as scope units. We also added support for automatically
7739 adding an instance of user@.service for the user into the
7740 slice. Effectively logind will no longer create cgroup
7741 hierarchies on its own now, it will defer entirely to PID 1
7742 for this by means of scope, service and slice units. Since
7743 user sessions this way become entities managed by PID 1
7744 the output of "systemctl" is now a lot more comprehensive.
7745
7746 * A new mini-daemon "systemd-machined" has been added which
7747 may be used by virtualization managers to register local
7748 VMs/containers. nspawn has been updated accordingly, and
7749 libvirt will be updated shortly. machined will collect a bit
7750 of meta information about the VMs/containers, and assign
7751 them their own scope unit (see above). The collected
7752 meta-data is then made available via the "machinectl" tool,
7753 and exposed in "ps" and similar tools. machined/machinectl
7754 is compile-time optional.
7755
7756 * As discussed earlier, the low-level cgroup configuration
7757 options ControlGroup=, ControlGroupModify=,
7758 ControlGroupPersistent=, ControlGroupAttribute= have been
7759 removed. Please use high-level attribute settings instead as
7760 well as slice units.
7761
7762 * A new bus call SetUnitProperties() has been added to alter
7763 various runtime parameters of a unit. This is primarily
7764 useful to alter cgroup parameters dynamically in a nice way,
7765 but will be extended later on to make more properties
7766 modifiable at runtime. systemctl gained a new set-properties
7767 command that wraps this call.
7768
7769 * A new tool "systemd-run" has been added which can be used to
7770 run arbitrary command lines as transient services or scopes,
7771 while configuring a number of settings via the command
7772 line. This tool is currently very basic, however already
7773 very useful. We plan to extend this tool to even allow
7774 queuing of execution jobs with time triggers from the
7775 command line, similar in fashion to "at".
7776
7777 * nspawn will now inform the user explicitly that kernels with
7778 audit enabled break containers, and suggest the user to turn
7779 off audit.
7780
7781 * Support for detecting the IMA and AppArmor security
7782 frameworks with ConditionSecurity= has been added.
7783
7784 * journalctl gained a new "-k" switch for showing only kernel
1fda0ab5
ZJS
7785 messages, mimicking dmesg output; in addition to "--user"
7786 and "--system" switches for showing only user's own logs
7787 and system logs.
00aa832b
LP
7788
7789 * systemd-delta can now show information about drop-in
7790 snippets extending unit files.
7791
7792 * libsystemd-bus has been substantially updated but is still
7793 not available as public API.
7794
7795 * systemd will now look for the "debug" argument on the kernel
499b604b 7796 command line and enable debug logging, similar to what
00aa832b
LP
7797 "systemd.log_level=debug" already did before.
7798
7799 * "systemctl set-default", "systemctl get-default" has been
7800 added to configure the default.target symlink, which
7801 controls what to boot into by default.
7802
1fda0ab5
ZJS
7803 * "systemctl set-log-level" has been added as a convenient
7804 way to raise and lower systemd logging threshold.
7805
00aa832b
LP
7806 * "systemd-analyze plot" will now show the time the various
7807 generators needed for execution, as well as information
7808 about the unit file loading.
7809
00aa832b
LP
7810 * libsystemd-journal gained a new sd_journal_open_files() call
7811 for opening specific journal files. journactl also gained a
7812 new switch to expose this new functionality. Previously we
7813 only supported opening all files from a directory, or all
7814 files from the system, as opening individual files only is
7815 racy due to journal file rotation.
7816
7817 * systemd gained the new DefaultEnvironment= setting in
7818 /etc/systemd/system.conf to set environment variables for
7819 all services.
7820
7821 * If a privileged process logs a journal message with the
7822 OBJECT_PID= field set, then journald will automatically
7823 augment this with additional OBJECT_UID=, OBJECT_GID=,
7824 OBJECT_COMM=, OBJECT_EXE=, ... fields. This is useful if
7825 system services want to log events about specific client
7826 processes. journactl/systemctl has been updated to make use
7827 of this information if all log messages regarding a specific
7828 unit is requested.
7829
7830 Contributions from: Auke Kok, Chengwei Yang, Colin Walters,
7831 Cristian Rodríguez, Daniel Albers, Daniel Wallace, Dave
7832 Reisner, David Coppa, David King, David Strauss, Eelco
7833 Dolstra, Gabriel de Perthuis, Harald Hoyer, Jan Alexander
7834 Steffens, Jan Engelhardt, Jan Janssen, Jason St. John, Johan
7835 Heikkilä, Karel Zak, Karol Lewandowski, Kay Sievers, Lennart
7836 Poettering, Lukas Nykryn, Mantas Mikulėnas, Marius Vollmer,
7837 Martin Pitt, Michael Biebl, Michael Olbrich, Michael Tremer,
7838 Michal Schmidt, Michał Bartoszkiewicz, Nirbheek Chauhan,
7839 Pierre Neidhardt, Ross Burton, Ross Lagerwall, Sean McGovern,
7840 Thomas Hindoe Paaboel Andersen, Tom Gundersen, Umut Tezduyar,
7841 Václav Pavlín, Zachary Cook, Zbigniew Jędrzejewski-Szmek,
7842 Łukasz Stelmach, 장동준
7843
606c24e3
LP
7844CHANGES WITH 204:
7845
7846 * The Python bindings gained some minimal support for the APIs
7847 exposed by libsystemd-logind.
7848
7849 * ConditionSecurity= gained support for detecting SMACK. Since
7850 this condition already supports SELinux and AppArmor we only
7851 miss IMA for this. Patches welcome!
7852
7853 Contributions from: Karol Lewandowski, Lennart Poettering,
7854 Zbigniew Jędrzejewski-Szmek
7855
2f3fcf85
LP
7856CHANGES WITH 203:
7857
7858 * systemd-nspawn will now create /etc/resolv.conf if
7859 necessary, before bind-mounting the host's file onto it.
7860
7861 * systemd-nspawn will now store meta information about a
7862 container on the container's cgroup as extended attribute
7863 fields, including the root directory.
7864
7865 * The cgroup hierarchy has been reworked in many ways. All
7866 objects any of the components systemd creates in the cgroup
b82eed9a 7867 tree are now suffixed. More specifically, user sessions are
2f3fcf85
LP
7868 now placed in cgroups suffixed with ".session", users in
7869 cgroups suffixed with ".user", and nspawn containers in
7870 cgroups suffixed with ".nspawn". Furthermore, all cgroup
7871 names are now escaped in a simple scheme to avoid collision
7872 of userspace object names with kernel filenames. This work
7873 is preparation for making these objects relocatable in the
7874 cgroup tree, in order to allow easy resource partitioning of
7875 these objects without causing naming conflicts.
7876
7877 * systemctl list-dependencies gained the new switches
7878 --plain, --reverse, --after and --before.
7879
7880 * systemd-inhibit now shows the process name of processes that
7881 have taken an inhibitor lock.
7882
7883 * nss-myhostname will now also resolve "localhost"
7884 implicitly. This makes /etc/hosts an optional file and
7885 nicely handles that on IPv6 ::1 maps to both "localhost" and
7886 the local hostname.
7887
7888 * libsystemd-logind.so gained a new call
7889 sd_get_machine_names() to enumerate running containers and
7890 VMs (currently only supported by very new libvirt and
7891 nspawn). sd_login_monitor can now be used to watch
7892 VMs/containers coming and going.
7893
7894 * .include is not allowed recursively anymore, and only in
7895 unit files. Usually it is better to use drop-in snippets in
7896 .d/*.conf anyway, as introduced with systemd 198.
7897
7898 * systemd-analyze gained a new "critical-chain" command that
7899 determines the slowest chain of units run during system
7900 boot-up. It is very useful for tracking down where
7901 optimizing boot time is the most beneficial.
7902
7903 * systemd will no longer allow manipulating service paths in
7904 the name=systemd:/system cgroup tree using ControlGroup= in
7905 units. (But is still fine with it in all other dirs.)
7906
7907 * There's a new systemd-nspawn@.service service file that may
7908 be used to easily run nspawn containers as system
7909 services. With the container's root directory in
7910 /var/lib/container/foobar it is now sufficient to run
7911 "systemctl start systemd-nspawn@foobar.service" to boot it.
7912
7913 * systemd-cgls gained a new parameter "--machine" to list only
7914 the processes within a certain container.
7915
7916 * ConditionSecurity= now can check for "apparmor". We still
7917 are lacking checks for SMACK and IMA for this condition
7918 check though. Patches welcome!
7919
7920 * A new configuration file /etc/systemd/sleep.conf has been
7921 added that may be used to configure which kernel operation
7922 systemd is supposed to execute when "suspend", "hibernate"
7923 or "hybrid-sleep" is requested. This makes the new kernel
7924 "freeze" state accessible to the user.
7925
7926 * ENV{SYSTEMD_WANTS} in udev rules will now implicitly escape
7927 the passed argument if applicable.
7928
7929 Contributions from: Auke Kok, Colin Guthrie, Colin Walters,
7930 Cristian Rodríguez, Daniel Buch, Daniel Wallace, Dave Reisner,
7931 Evangelos Foutras, Greg Kroah-Hartman, Harald Hoyer, Josh
7932 Triplett, Kay Sievers, Lennart Poettering, Lukas Nykryn,
7933 MUNEDA Takahiro, Mantas Mikulėnas, Mirco Tischler, Nathaniel
7934 Chen, Nirbheek Chauhan, Ronny Chevalier, Ross Lagerwall, Tom
7935 Gundersen, Umut Tezduyar, Ville Skyttä, Zbigniew
7936 Jędrzejewski-Szmek
7937
ef3b5246
LP
7938CHANGES WITH 202:
7939
7940 * The output of 'systemctl list-jobs' got some polishing. The
7941 '--type=' argument may now be passed more than once. A new
7942 command 'systemctl list-sockets' has been added which shows
7943 a list of kernel sockets systemd is listening on with the
7944 socket units they belong to, plus the units these socket
7945 units activate.
7946
7947 * The experimental libsystemd-bus library got substantial
7948 updates to work in conjunction with the (also experimental)
7949 kdbus kernel project. It works well enough to exchange
7950 messages with some sophistication. Note that kdbus is not
7951 ready yet, and the library is mostly an elaborate test case
7952 for now, and not installable.
7953
7954 * systemd gained a new unit 'systemd-static-nodes.service'
7955 that generates static device nodes earlier during boot, and
7956 can run in conjunction with udev.
7957
7958 * libsystemd-login gained a new call sd_pid_get_user_unit()
7959 to retrieve the user systemd unit a process is running
7960 in. This is useful for systems where systemd is used as
7961 session manager.
7962
7963 * systemd-nspawn now places all containers in the new /machine
7964 top-level cgroup directory in the name=systemd
7965 hierarchy. libvirt will soon do the same, so that we get a
7966 uniform separation of /system, /user and /machine for system
7967 services, user processes and containers/virtual
7968 machines. This new cgroup hierarchy is also useful to stick
7969 stable names to specific container instances, which can be
7c04ad2d 7970 recognized later this way (this name may be controlled
ef3b5246
LP
7971 via systemd-nspawn's new -M switch). libsystemd-login also
7972 gained a new call sd_pid_get_machine_name() to retrieve the
7973 name of the container/VM a specific process belongs to.
7974
7975 * bootchart can now store its data in the journal.
7976
7977 * libsystemd-journal gained a new call
7978 sd_journal_add_conjunction() for AND expressions to the
7979 matching logic. This can be used to express more complex
7980 logical expressions.
7981
7982 * journactl can now take multiple --unit= and --user-unit=
7983 switches.
7984
7985 * The cryptsetup logic now understands the "luks.key=" kernel
7986 command line switch for specifying a file to read the
7c04ad2d 7987 decryption key from. Also, if a configured key file is not
ef3b5246
LP
7988 found the tool will now automatically fall back to prompting
7989 the user.
7990
cbeabcfb
ZJS
7991 * Python systemd.journal module was updated to wrap recently
7992 added functions from libsystemd-journal. The interface was
7993 changed to bring the low level interface in s.j._Reader
7994 closer to the C API, and the high level interface in
7995 s.j.Reader was updated to wrap and convert all data about
7996 an entry.
7997
ef3b5246
LP
7998 Contributions from: Anatol Pomozov, Auke Kok, Harald Hoyer,
7999 Henrik Grindal Bakken, Josh Triplett, Kay Sievers, Lennart
8000 Poettering, Lukas Nykryn, Mantas Mikulėnas Marius Vollmer,
8001 Martin Jansa, Martin Pitt, Michael Biebl, Michal Schmidt,
8002 Mirco Tischler, Pali Rohar, Simon Peeters, Steven Hiscocks,
8003 Tom Gundersen, Zbigniew Jędrzejewski-Szmek
8004
d3a86981
LP
8005CHANGES WITH 201:
8006
8007 * journalctl --update-catalog now understands a new --root=
8008 option to operate on catalogs found in a different root
8009 directory.
8010
8011 * During shutdown after systemd has terminated all running
8012 services a final killing loop kills all remaining left-over
8013 processes. We will now print the name of these processes
8014 when we send SIGKILL to them, since this usually indicates a
8015 problem.
8016
8017 * If /etc/crypttab refers to password files stored on
8018 configured mount points automatic dependencies will now be
8019 generated to ensure the specific mount is established first
8020 before the key file is attempted to be read.
8021
8022 * 'systemctl status' will now show information about the
8023 network sockets a socket unit is listening on.
8024
8025 * 'systemctl status' will also shown information about any
8026 drop-in configuration file for units. (Drop-In configuration
8027 files in this context are files such as
8028 /etc/systemd/systemd/foobar.service.d/*.conf)
8029
8030 * systemd-cgtop now optionally shows summed up CPU times of
8031 cgroups. Press '%' while running cgtop to switch between
8032 percentage and absolute mode. This is useful to determine
8033 which cgroups use up the most CPU time over the entire
8034 runtime of the system. systemd-cgtop has also been updated
8035 to be 'pipeable' for processing with further shell tools.
8036
8037 * 'hostnamectl set-hostname' will now allow setting of FQDN
8038 hostnames.
8039
8040 * The formatting and parsing of time span values has been
8041 changed. The parser now understands fractional expressions
8042 such as "5.5h". The formatter will now output fractional
8043 expressions for all time spans under 1min, i.e. "5.123456s"
8044 rather than "5s 123ms 456us". For time spans under 1s
8045 millisecond values are shown, for those under 1ms
8046 microsecond values are shown. This should greatly improve
8047 all time-related output of systemd.
8048
8049 * libsystemd-login and libsystemd-journal gained new
8050 functions for querying the poll() events mask and poll()
8051 timeout value for integration into arbitrary event
8052 loops.
8053
8054 * localectl gained the ability to list available X11 keymaps
8055 (models, layouts, variants, options).
8056
8057 * 'systemd-analyze dot' gained the ability to filter for
8058 specific units via shell-style globs, to create smaller,
d28315e4 8059 more useful graphs. I.e. it is now possible to create simple
d3a86981
LP
8060 graphs of all the dependencies between only target units, or
8061 of all units that Avahi has dependencies with.
8062
8063 Contributions from: Cristian Rodríguez, Dr. Tilmann Bubeck,
8064 Harald Hoyer, Holger Hans Peter Freyther, Kay Sievers, Kelly
8065 Anderson, Koen Kooi, Lennart Poettering, Maksim Melnikau,
8066 Marc-Antoine Perennou, Marius Vollmer, Martin Pitt, Michal
8067 Schmidt, Oleksii Shevchuk, Ronny Chevalier, Simon McVittie,
8068 Steven Hiscocks, Thomas Weißschuh, Umut Tezduyar, Václav
8069 Pavlín, Zbigniew Jędrzejewski-Szmek, Łukasz Stelmach
8070
9ca3c17f
LP
8071CHANGES WITH 200:
8072
8073 * The boot-time readahead implementation for rotating media
8074 will now read the read-ahead data in multiple passes which
8075 consist of all read requests made in equidistant time
8076 intervals. This means instead of strictly reading read-ahead
8077 data in its physical order on disk we now try to find a
8078 middle ground between physical and access time order.
8079
8080 * /etc/os-release files gained a new BUILD_ID= field for usage
8081 on operating systems that provide continuous builds of OS
8082 images.
8083
8084 Contributions from: Auke Kok, Eelco Dolstra, Kay Sievers,
8085 Lennart Poettering, Lukas Nykryn, Martin Pitt, Václav Pavlín
8086 William Douglas, Zbigniew Jędrzejewski-Szmek
8087
35911459
LP
8088CHANGES WITH 199:
8089
8090 * systemd-python gained an API exposing libsystemd-daemon.
8091
8092 * The SMACK setup logic gained support for uploading CIPSO
8093 security policy.
8094
8095 * Behaviour of PrivateTmp=, ReadWriteDirectories=,
8096 ReadOnlyDirectories= and InaccessibleDirectories= has
8097 changed. The private /tmp and /var/tmp directories are now
8098 shared by all processes of a service (which means
8099 ExecStartPre= may now leave data in /tmp that ExecStart= of
8100 the same service can still access). When a service is
8101 stopped its temporary directories are immediately deleted
a87197f5 8102 (normal clean-up with tmpfiles is still done in addition to
35911459
LP
8103 this though).
8104
8105 * By default, systemd will now set a couple of sysctl
8106 variables in the kernel: the safe sysrq options are turned
8107 on, IP route verification is turned on, and source routing
8108 disabled. The recently added hardlink and softlink
8109 protection of the kernel is turned on. These settings should
8110 be reasonably safe, and good defaults for all new systems.
8111
8112 * The predictable network naming logic may now be turned off
a87197f5 8113 with a new kernel command line switch: net.ifnames=0.
35911459
LP
8114
8115 * A new libsystemd-bus module has been added that implements a
8116 pretty complete D-Bus client library. For details see:
8117
56cadcb6 8118 https://lists.freedesktop.org/archives/systemd-devel/2013-March/009797.html
35911459 8119
c20d8298 8120 * journald will now explicitly flush the journal files to disk
a87197f5
ZJS
8121 at the latest 5min after each write. The file will then also
8122 be marked offline until the next write. This should increase
8123 reliability in case of a crash. The synchronization delay
8124 can be configured via SyncIntervalSec= in journald.conf.
35911459
LP
8125
8126 * There's a new remote-fs-setup.target unit that can be used
8127 to pull in specific services when at least one remote file
8128 system is to be mounted.
8129
8130 * There are new targets timers.target and paths.target as
8131 canonical targets to pull user timer and path units in
8132 from. This complements sockets.target with a similar
8133 purpose for socket units.
8134
6a7d3d68
LP
8135 * libudev gained a new call udev_device_set_attribute_value()
8136 to set sysfs attributes of a device.
8137
a87197f5
ZJS
8138 * The udev daemon now sets the default number of worker
8139 processes executed in parallel based on the number of available
c20d8298 8140 CPUs instead of the amount of available RAM. This is supposed
ab06eef8 8141 to provide a more reliable default and limit a too aggressive
ce830873 8142 parallelism for setups with 1000s of devices connected.
c20d8298 8143
35911459
LP
8144 Contributions from: Auke Kok, Colin Walters, Cristian
8145 Rodríguez, Daniel Buch, Dave Reisner, Frederic Crozat, Hannes
8146 Reinecke, Harald Hoyer, Jan Alexander Steffens, Jan
8147 Engelhardt, Josh Triplett, Kay Sievers, Lennart Poettering,
8148 Mantas Mikulėnas, Martin Pitt, Mathieu Bridon, Michael Biebl,
8149 Michal Schmidt, Michal Sekletar, Miklos Vajna, Nathaniel Chen,
8150 Oleksii Shevchuk, Ozan Çağlayan, Thomas Hindoe Paaboel
8151 Andersen, Tollef Fog Heen, Tom Gundersen, Umut Tezduyar,
8152 Zbigniew Jędrzejewski-Szmek
8153
85d68397
LP
8154CHANGES WITH 198:
8155
8156 * Configuration of unit files may now be extended via drop-in
8157 files without having to edit/override the unit files
8158 themselves. More specifically, if the administrator wants to
8159 change one value for a service file foobar.service he can
8160 now do so by dropping in a configuration snippet into
ad88e758 8161 /etc/systemd/system/foobar.service.d/*.conf. The unit logic
85d68397
LP
8162 will load all these snippets and apply them on top of the
8163 main unit configuration file, possibly extending or
8164 overriding its settings. Using these drop-in snippets is
40e21da8
KS
8165 generally nicer than the two earlier options for changing
8166 unit files locally: copying the files from
85d68397
LP
8167 /usr/lib/systemd/system/ to /etc/systemd/system/ and editing
8168 them there; or creating a new file in /etc/systemd/system/
8169 that incorporates the original one via ".include". Drop-in
8170 snippets into these .d/ directories can be placed in any
fd868975 8171 directory systemd looks for units in, and the usual
85d68397
LP
8172 overriding semantics between /usr/lib, /etc and /run apply
8173 for them too.
8174
8175 * Most unit file settings which take lists of items can now be
6aa8d43a 8176 reset by assigning the empty string to them. For example,
85d68397
LP
8177 normally, settings such as Environment=FOO=BAR append a new
8178 environment variable assignment to the environment block,
8179 each time they are used. By assigning Environment= the empty
8180 string the environment block can be reset to empty. This is
8181 particularly useful with the .d/*.conf drop-in snippets
156f7d09
KS
8182 mentioned above, since this adds the ability to reset list
8183 settings from vendor unit files via these drop-ins.
85d68397
LP
8184
8185 * systemctl gained a new "list-dependencies" command for
8186 listing the dependencies of a unit recursively.
8187
40e21da8 8188 * Inhibitors are now honored and listed by "systemctl
85d68397
LP
8189 suspend", "systemctl poweroff" (and similar) too, not only
8190 GNOME. These commands will also list active sessions by
8191 other users.
8192
8193 * Resource limits (as exposed by the various control group
8194 controllers) can now be controlled dynamically at runtime
8195 for all units. More specifically, you can now use a command
8196 like "systemctl set-cgroup-attr foobar.service cpu.shares
8197 2000" to alter the CPU shares a specific service gets. These
6aa8d43a 8198 settings are stored persistently on disk, and thus allow the
85d68397
LP
8199 administrator to easily adjust the resource usage of
8200 services with a few simple commands. This dynamic resource
6aa8d43a 8201 management logic is also available to other programs via the
85d68397
LP
8202 bus. Almost any kernel cgroup attribute and controller is
8203 supported.
8204
8205 * systemd-vconsole-setup will now copy all font settings to
6aa8d43a
LP
8206 all allocated VTs, where it previously applied them only to
8207 the foreground VT.
85d68397
LP
8208
8209 * libsystemd-login gained the new sd_session_get_tty() API
8210 call.
8211
6aa8d43a
LP
8212 * This release drops support for a few legacy or
8213 distribution-specific LSB facility names when parsing init
8214 scripts: $x-display-manager, $mail-transfer-agent,
85d68397
LP
8215 $mail-transport-agent, $mail-transfer-agent, $smtp,
8216 $null. Also, the mail-transfer-agent.target unit backing
8217 this has been removed. Distributions which want to retain
6aa8d43a
LP
8218 compatibility with this should carry the burden for
8219 supporting this themselves and patch support for these back
8220 in, if they really need to. Also, the facilities $syslog and
8221 $local_fs are now ignored, since systemd does not support
8222 early-boot LSB init scripts anymore, and these facilities
8223 are implied anyway for normal services. syslog.target has
8224 also been removed.
85d68397 8225
40e21da8 8226 * There are new bus calls on PID1's Manager object for
6aa8d43a 8227 cancelling jobs, and removing snapshot units. Previously,
85d68397
LP
8228 both calls were only available on the Job and Snapshot
8229 objects themselves.
8230
8231 * systemd-journal-gatewayd gained SSL support.
8232
8233 * The various "environment" files, such as /etc/locale.conf
8234 now support continuation lines with a backslash ("\") as
499b604b 8235 last character in the line, similarly in style (but different)
85d68397
LP
8236 to how this is supported in shells.
8237
8238 * For normal user processes the _SYSTEMD_USER_UNIT= field is
8239 now implicitly appended to every log entry logged. systemctl
8240 has been updated to filter by this field when operating on a
8241 user systemd instance.
8242
8243 * nspawn will now implicitly add the CAP_AUDIT_WRITE and
8244 CAP_AUDIT_CONTROL capabilities to the capabilities set for
8245 the container. This makes it easier to boot unmodified
8246 Fedora systems in a container, which however still requires
8247 audit=0 to be passed on the kernel command line. Auditing in
8248 kernel and userspace is unfortunately still too broken in
8249 context of containers, hence we recommend compiling it out
8250 of the kernel or using audit=0. Hopefully this will be fixed
8251 one day for good in the kernel.
8252
8253 * nspawn gained the new --bind= and --bind-ro= parameters to
8254 bind mount specific directories from the host into the
8255 container.
8256
40e21da8 8257 * nspawn will now mount its own devpts file system instance
6aa8d43a 8258 into the container, in order not to leak pty devices from
85d68397
LP
8259 the host into the container.
8260
8261 * systemd will now read the firmware boot time performance
6aa8d43a
LP
8262 information from the EFI variables, if the used boot loader
8263 supports this, and takes it into account for boot performance
8264 analysis via "systemd-analyze". This is currently supported
8265 only in conjunction with Gummiboot, but could be supported
8266 by other boot loaders too. For details see:
85d68397 8267
56cadcb6 8268 https://www.freedesktop.org/wiki/Software/systemd/BootLoaderInterface
85d68397
LP
8269
8270 * A new generator has been added that automatically mounts the
8271 EFI System Partition (ESP) to /boot, if that directory
6aa8d43a
LP
8272 exists, is empty, and no other file system has been
8273 configured to be mounted there.
85d68397
LP
8274
8275 * logind will now send out PrepareForSleep(false) out
8276 unconditionally, after coming back from suspend. This may be
8277 used by applications as asynchronous notification for
8278 system resume events.
8279
8280 * "systemctl unlock-sessions" has been added, that allows
8281 unlocking the screens of all user sessions at once, similar
499b604b 8282 to how "systemctl lock-sessions" already locked all users
40e21da8 8283 sessions. This is backed by a new D-Bus call UnlockSessions().
85d68397
LP
8284
8285 * "loginctl seat-status" will now show the master device of a
8286 seat. (i.e. the device of a seat that needs to be around for
8287 the seat to be considered available, usually the graphics
8288 card).
8289
8290 * tmpfiles gained a new "X" line type, that allows
8291 configuration of files and directories (with wildcards) that
8292 shall be excluded from automatic cleanup ("aging").
8293
bf933560
KS
8294 * udev default rules set the device node permissions now only
8295 at "add" events, and do not change them any longer with a
8296 later "change" event.
85d68397
LP
8297
8298 * The log messages for lid events and power/sleep keypresses
8299 now carry a message ID.
8300
8301 * We now have a substantially larger unit test suite, but this
8302 continues to be work in progress.
8303
8304 * udevadm hwdb gained a new --root= parameter to change the
8305 root directory to operate relative to.
8306
40e21da8
KS
8307 * logind will now issue a background sync() request to the kernel
8308 early at shutdown, so that dirty buffers are flushed to disk early
85d68397
LP
8309 instead of at the last moment, in order to optimize shutdown
8310 times a little.
8311
8312 * A new bootctl tool has been added that is an interface for
8313 certain boot loader operations. This is currently a preview
8314 and is likely to be extended into a small mechanism daemon
8315 like timedated, localed, hostnamed, and can be used by
8316 graphical UIs to enumerate available boot options, and
8317 request boot into firmware operations.
8318
8319 * systemd-bootchart has been relicensed to LGPLv2.1+ to match
8320 the rest of the package. It also has been updated to work
8321 correctly in initrds.
8322
d35f51ea
ZJS
8323 * polkit previously has been runtime optional, and is now also
8324 compile time optional via a configure switch.
85d68397
LP
8325
8326 * systemd-analyze has been reimplemented in C. Also "systemctl
8327 dot" has moved into systemd-analyze.
8328
8329 * "systemctl status" with no further parameters will now print
8330 the status of all active or failed units.
8331
8332 * Operations such as "systemctl start" can now be executed
8333 with a new mode "--irreversible" which may be used to queue
8334 operations that cannot accidentally be reversed by a later
6aa8d43a 8335 job queuing. This is by default used to make shutdown
85d68397
LP
8336 requests more robust.
8337
8338 * The Python API of systemd now gained a new module for
8339 reading journal files.
8340
8341 * A new tool kernel-install has been added that can install
8342 kernel images according to the Boot Loader Specification:
8343
56cadcb6 8344 https://www.freedesktop.org/wiki/Specifications/BootLoaderSpec
85d68397
LP
8345
8346 * Boot time console output has been improved to provide
6aa8d43a 8347 animated boot time output for hanging jobs.
85d68397
LP
8348
8349 * A new tool systemd-activate has been added which can be used
8350 to test socket activation with, directly from the command
8351 line. This should make it much easier to test and debug
8352 socket activation in daemons.
8353
8354 * journalctl gained a new "--reverse" (or -r) option to show
8355 journal output in reverse order (i.e. newest line first).
8356
43447fb7
LP
8357 * journalctl gained a new "--pager-end" (or -e) option to jump
8358 to immediately jump to the end of the journal in the
8359 pager. This is only supported in conjunction with "less".
8360
85d68397 8361 * journalctl gained a new "--user-unit=" option, that works
499b604b 8362 similarly to "--unit=" but filters for user units rather than
85d68397
LP
8363 system units.
8364
8365 * A number of unit files to ease adoption of systemd in
8366 initrds has been added. This moves some minimal logic from
8367 the various initrd implementations into systemd proper.
8368
8369 * The journal files are now owned by a new group
8370 "systemd-journal", which exists specifically to allow access
8371 to the journal, and nothing else. Previously, we used the
6aa8d43a 8372 "adm" group for that, which however possibly covers more
85d68397
LP
8373 than just journal/log file access. This new group is now
8374 already used by systemd-journal-gatewayd to ensure this
8375 daemon gets access to the journal files and as little else
8376 as possible. Note that "make install" will also set FS ACLs
8377 up for /var/log/journal to give "adm" and "wheel" read
8378 access to it, in addition to "systemd-journal" which owns
8379 the journal files. We recommend that packaging scripts also
6aa8d43a 8380 add read access to "adm" + "wheel" to /var/log/journal, and
85d68397
LP
8381 all existing/future journal files. To normal users and
8382 administrators little changes, however packagers need to
8383 ensure to create the "systemd-journal" system group at
8384 package installation time.
8385
8386 * The systemd-journal-gatewayd now runs as unprivileged user
8387 systemd-journal-gateway:systemd-journal-gateway. Packaging
8388 scripts need to create these system user/group at
8389 installation time.
8390
8391 * timedated now exposes a new boolean property CanNTP that
8392 indicates whether a local NTP service is available or not.
8393
8394 * systemd-detect-virt will now also detect xen PVs
8395
40e21da8
KS
8396 * The pstore file system is now mounted by default, if it is
8397 available.
85d68397 8398
1aed4590
LP
8399 * In addition to the SELinux and IMA policies we will now also
8400 load SMACK policies at early boot.
8401
85d68397
LP
8402 Contributions from: Adel Gadllah, Aleksander Morgado, Auke
8403 Kok, Ayan George, Bastien Nocera, Colin Walters, Daniel Buch,
8404 Daniel Wallace, Dave Reisner, David Herrmann, David Strauss,
8405 Eelco Dolstra, Enrico Scholz, Frederic Crozat, Harald Hoyer,
8406 Jan Janssen, Jonathan Callen, Kay Sievers, Lennart Poettering,
8407 Lukas Nykryn, Mantas Mikulėnas, Marc-Antoine Perennou, Martin
8408 Pitt, Mauro Dreissig, Max F. Albrecht, Michael Biebl, Michael
8409 Olbrich, Michal Schmidt, Michal Sekletar, Michal Vyskocil,
8410 Michał Bartoszkiewicz, Mirco Tischler, Nathaniel Chen, Nestor
8411 Ovroy, Oleksii Shevchuk, Paul W. Frields, Piotr Drąg, Rob
8412 Clark, Ryan Lortie, Simon McVittie, Simon Peeters, Steven
8413 Hiscocks, Thomas Hindoe Paaboel Andersen, Tollef Fog Heen, Tom
8414 Gundersen, Umut Tezduyar, William Giokas, Zbigniew
8415 Jędrzejewski-Szmek, Zeeshan Ali (Khattak)
8416
8ad26859
LP
8417CHANGES WITH 197:
8418
8419 * Timer units now support calendar time events in addition to
8420 monotonic time events. That means you can now trigger a unit
8421 based on a calendar time specification such as "Thu,Fri
8422 2013-*-1,5 11:12:13" which refers to 11:12:13 of the first
8423 or fifth day of any month of the year 2013, given that it is
8424 a thursday or friday. This brings timer event support
8425 considerably closer to cron's capabilities. For details on
8426 the supported calendar time specification language see
8427 systemd.time(7).
8428
8429 * udev now supports a number of different naming policies for
8430 network interfaces for predictable names, and a combination
8431 of these policies is now the default. Please see this wiki
8432 document for details:
8433
56cadcb6 8434 https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
8ad26859
LP
8435
8436 * Auke Kok's bootchart implementation has been added to the
d28315e4
JE
8437 systemd tree. It is an optional component that can graph the
8438 boot in quite some detail. It is one of the best bootchart
8ad26859
LP
8439 implementations around and minimal in its code and
8440 dependencies.
8441
8442 * nss-myhostname has been integrated into the systemd source
8443 tree. nss-myhostname guarantees that the local hostname
8444 always stays resolvable via NSS. It has been a weak
8445 requirement of systemd-hostnamed since a long time, and
8446 since its code is actually trivial we decided to just
8447 include it in systemd's source tree. It can be turned off
8448 with a configure switch.
8449
8450 * The read-ahead logic is now capable of properly detecting
8451 whether a btrfs file system is on SSD or rotating media, in
8452 order to optimize the read-ahead scheme. Previously, it was
8453 only capable of detecting this on traditional file systems
8454 such as ext4.
8455
8456 * In udev, additional device properties are now read from the
8457 IAB in addition to the OUI database. Also, Bluetooth company
8458 identities are attached to the devices as well.
8459
8460 * In service files %U may be used as specifier that is
8461 replaced by the configured user name of the service.
8462
8463 * nspawn may now be invoked without a controlling TTY. This
8464 makes it suitable for invocation as its own service. This
8465 may be used to set up a simple containerized server system
8466 using only core OS tools.
8467
8468 * systemd and nspawn can now accept socket file descriptors
8469 when they are started for socket activation. This enables
8470 implementation of socket activated nspawn
8471 containers. i.e. think about autospawning an entire OS image
8472 when the first SSH or HTTP connection is received. We expect
8473 that similar functionality will also be added to libvirt-lxc
8474 eventually.
8475
8476 * journalctl will now suppress ANSI color codes when
8477 presenting log data.
8478
8479 * systemctl will no longer show control group information for
ce830873 8480 a unit if the control group is empty anyway.
8ad26859
LP
8481
8482 * logind can now automatically suspend/hibernate/shutdown the
8483 system on idle.
8484
8485 * /etc/machine-info and hostnamed now also expose the chassis
8486 type of the system. This can be used to determine whether
8487 the local system is a laptop, desktop, handset or
8488 tablet. This information may either be configured by the
8489 user/vendor or is automatically determined from ACPI and DMI
8490 information if possible.
8491
d35f51ea
ZJS
8492 * A number of polkit actions are now bound together with "imply"
8493 rules. This should simplify creating UIs because many actions
8494 will now authenticate similar ones as well.
8ad26859
LP
8495
8496 * Unit files learnt a new condition ConditionACPower= which
8497 may be used to conditionalize a unit depending on whether an
8498 AC power source is connected or not, of whether the system
8499 is running on battery power.
8500
8501 * systemctl gained a new "is-failed" verb that may be used in
8502 shell scripts and suchlike to check whether a specific unit
8503 is in the "failed" state.
8504
8505 * The EnvironmentFile= setting in unit files now supports file
8506 globbing, and can hence be used to easily read a number of
8507 environment files at once.
8508
8509 * systemd will no longer detect and recognize specific
8510 distributions. All distribution-specific #ifdeffery has been
8511 removed, systemd is now fully generic and
8512 distribution-agnostic. Effectively, not too much is lost as
8513 a lot of the code is still accessible via explicit configure
8514 switches. However, support for some distribution specific
8515 legacy configuration file formats has been dropped. We
8516 recommend distributions to simply adopt the configuration
8517 files everybody else uses now and convert the old
8518 configuration from packaging scripts. Most distributions
8519 already did that. If that's not possible or desirable,
8520 distributions are welcome to forward port the specific
8521 pieces of code locally from the git history.
8522
8523 * When logging a message about a unit systemd will now always
8524 log the unit name in the message meta data.
8525
8526 * localectl will now also discover system locale data that is
8527 not stored in locale archives, but directly unpacked.
8528
8529 * logind will no longer unconditionally use framebuffer
8530 devices as seat masters, i.e. as devices that are required
8531 to be existing before a seat is considered preset. Instead,
8532 it will now look for all devices that are tagged as
b938cb90
JE
8533 "seat-master" in udev. By default, framebuffer devices will
8534 be marked as such, but depending on local systems, other
8ad26859
LP
8535 devices might be marked as well. This may be used to
8536 integrate graphics cards using closed source drivers (such
8537 as NVidia ones) more nicely into logind. Note however, that
8538 we recommend using the open source NVidia drivers instead,
8539 and no udev rules for the closed-source drivers will be
8540 shipped from us upstream.
8541
8542 Contributions from: Adam Williamson, Alessandro Crismani, Auke
8543 Kok, Colin Walters, Daniel Wallace, Dave Reisner, David
8544 Herrmann, David Strauss, Dimitrios Apostolou, Eelco Dolstra,
8545 Eric Benoit, Giovanni Campagna, Hannes Reinecke, Henrik
8546 Grindal Bakken, Hermann Gausterer, Kay Sievers, Lennart
8547 Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel Holtmann,
8548 Martin Pitt, Matthew Monaco, Michael Biebl, Michael Terry,
8549 Michal Schmidt, Michal Sekletar, Michał Bartoszkiewicz, Oleg
8550 Samarin, Pekka Lundstrom, Philip Nilsson, Ramkumar
8551 Ramachandra, Richard Yao, Robert Millan, Sami Kerola, Shawn
8552 Landden, Thomas Hindoe Paaboel Andersen, Thomas Jarosch,
8553 Tollef Fog Heen, Tom Gundersen, Umut Tezduyar, Zbigniew
8554 Jędrzejewski-Szmek
8555
0428ddb7
LP
8556CHANGES WITH 196:
8557
8558 * udev gained support for loading additional device properties
8559 from an indexed database that is keyed by vendor/product IDs
8560 and similar device identifiers. For the beginning this
8561 "hwdb" is populated with data from the well-known PCI and
8562 USB database, but also includes PNP, ACPI and OID data. In
8563 the longer run this indexed database shall grow into
8564 becoming the one central database for non-essential
8565 userspace device metadata. Previously, data from the PCI/USB
96ec33c0 8566 database was only attached to select devices, since the
0428ddb7 8567 lookup was a relatively expensive operation due to O(n) time
96ec33c0
LP
8568 complexity (with n being the number of entries in the
8569 database). Since this is now O(1), we decided to add in this
8570 data for all devices where this is available, by
0428ddb7
LP
8571 default. Note that the indexed database needs to be rebuilt
8572 when new data files are installed. To achieve this you need
8573 to update your packaging scripts to invoke "udevadm hwdb
8574 --update" after installation of hwdb data files. For
8575 RPM-based distributions we introduced the new
8576 %udev_hwdb_update macro for this purpose.
8577
8578 * The Journal gained support for the "Message Catalog", an
8579 indexed database to link up additional information with
8580 journal entries. For further details please check:
8581
56cadcb6 8582 https://www.freedesktop.org/wiki/Software/systemd/catalog
0428ddb7
LP
8583
8584 The indexed message catalog database also needs to be
8585 rebuilt after installation of message catalog files. Use
8586 "journalctl --update-catalog" for this. For RPM-based
8587 distributions we introduced the %journal_catalog_update
8588 macro for this purpose.
8589
8590 * The Python Journal bindings gained support for the standard
8591 Python logging framework.
8592
8593 * The Journal API gained new functions for checking whether
8594 the underlying file system of a journal file is capable of
8595 properly reporting file change notifications, or whether
8596 applications that want to reflect journal changes "live"
ab06eef8 8597 need to recheck journal files continuously in appropriate
0428ddb7
LP
8598 time intervals.
8599
8600 * It is now possible to set the "age" field for tmpfiles
8601 entries to 0, indicating that files matching this entry
8602 shall always be removed when the directories are cleaned up.
8603
8604 * coredumpctl gained a new "gdb" verb which invokes gdb
8605 right-away on the selected coredump.
8606
8607 * There's now support for "hybrid sleep" on kernels that
8608 support this, in addition to "suspend" and "hibernate". Use
8609 "systemctl hybrid-sleep" to make use of this.
8610
8611 * logind's HandleSuspendKey= setting (and related settings)
8612 now gained support for a new "lock" setting to simply
8613 request the screen lock on all local sessions, instead of
8614 actually executing a suspend or hibernation.
8615
8616 * systemd will now mount the EFI variables file system by
8617 default.
8618
8619 * Socket units now gained support for configuration of the
8620 SMACK security label.
8621
8622 * timedatectl will now output the time of the last and next
8623 daylight saving change.
8624
8625 * We dropped support for various legacy and distro-specific
8626 concepts, such as insserv, early-boot SysV services
8627 (i.e. those for non-standard runlevels such as 'b' or 'S')
8628 or ArchLinux /etc/rc.conf support. We recommend the
8629 distributions who still need support this to either continue
8630 to maintain the necessary patches downstream, or find a
8631 different solution. (Talk to us if you have questions!)
8632
d35f51ea
ZJS
8633 * Various systemd components will now bypass polkit checks for
8634 root and otherwise handle properly if polkit is not found to
8635 be around. This should fix most issues for polkit-less
8636 systems. Quite frankly this should have been this way since
8637 day one. It is absolutely our intention to make systemd work
8638 fine on polkit-less systems, and we consider it a bug if
8639 something does not work as it should if polkit is not around.
0428ddb7
LP
8640
8641 * For embedded systems it is now possible to build udev and
8642 systemd without blkid and/or kmod support.
8643
8644 * "systemctl switch-root" is now capable of switching root
8645 more than once. I.e. in addition to transitions from the
8646 initrd to the host OS it is now possible to transition to
8647 further OS images from the host. This is useful to implement
8648 offline updating tools.
8649
8650 * Various other additions have been made to the RPM macros
8651 shipped with systemd. Use %udev_rules_update() after
8652 installing new udev rules files. %_udevhwdbdir,
8653 %_udevrulesdir, %_journalcatalogdir, %_tmpfilesdir,
8654 %_sysctldir are now available which resolve to the right
8655 directories for packages to place various data files in.
8656
8657 * journalctl gained the new --full switch (in addition to
8658 --all, to disable ellipsation for long messages.
8659
8660 Contributions from: Anders Olofsson, Auke Kok, Ben Boeckel,
8661 Colin Walters, Cosimo Cecchi, Daniel Wallace, Dave Reisner,
8662 Eelco Dolstra, Holger Hans Peter Freyther, Kay Sievers,
8663 Chun-Yi Lee, Lekensteyn, Lennart Poettering, Mantas Mikulėnas,
8664 Marti Raudsepp, Martin Pitt, Mauro Dreissig, Michael Biebl,
8665 Michal Schmidt, Michal Sekletar, Miklos Vajna, Nis Martensen,
8666 Oleksii Shevchuk, Olivier Brunel, Ramkumar Ramachandra, Thomas
8667 Bächler, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Tony
8668 Camuso, Umut Tezduyar, Zbigniew Jędrzejewski-Szmek
8669
139ee8cc
LP
8670CHANGES WITH 195:
8671
6827101a 8672 * journalctl gained new --since= and --until= switches to
139ee8cc
LP
8673 filter by time. It also now supports nice filtering for
8674 units via --unit=/-u.
8675
6827101a 8676 * Type=oneshot services may use ExecReload= and do the
139ee8cc
LP
8677 right thing.
8678
8679 * The journal daemon now supports time-based rotation and
8680 vacuuming, in addition to the usual disk-space based
8681 rotation.
8682
8683 * The journal will now index the available field values for
8684 each field name. This enables clients to show pretty drop
8685 downs of available match values when filtering. The bash
8686 completion of journalctl has been updated
8687 accordingly. journalctl gained a new switch -F to list all
8688 values a certain field takes in the journal database.
8689
8690 * More service events are now written as structured messages
8691 to the journal, and made recognizable via message IDs.
8692
8693 * The timedated, localed and hostnamed mini-services which
8694 previously only provided support for changing time, locale
8695 and hostname settings from graphical DEs such as GNOME now
8696 also have a minimal (but very useful) text-based client
8697 utility each. This is probably the nicest way to changing
8698 these settings from the command line now, especially since
8699 it lists available options and is fully integrated with bash
8700 completion.
8701
8702 * There's now a new tool "systemd-coredumpctl" to list and
8703 extract coredumps from the journal.
8704
8705 * We now install a README each in /var/log/ and
8706 /etc/rc.d/init.d explaining where the system logs and init
8707 scripts went. This hopefully should help folks who go to
8708 that dirs and look into the otherwise now empty void and
8709 scratch their heads.
8710
8711 * When user-services are invoked (by systemd --user) the
8712 $MANAGERPID env var is set to the PID of systemd.
8713
8714 * SIGRTMIN+24 when sent to a --user instance will now result
8715 in immediate termination of systemd.
8716
8717 * gatewayd received numerous feature additions such as a
8718 "follow" mode, for live syncing and filtering.
8719
8720 * browse.html now allows filtering and showing detailed
8721 information on specific entries. Keyboard navigation and
8722 mouse screen support has been added.
8723
8724 * gatewayd/journalctl now supports HTML5/JSON
8725 Server-Sent-Events as output.
8726
1cb88f2c 8727 * The SysV init script compatibility logic will now
139ee8cc
LP
8728 heuristically determine whether a script supports the
8729 "reload" verb, and only then make this available as
8730 "systemctl reload".
8731
15f47220 8732 * "systemctl status --follow" has been removed, use "journalctl
139ee8cc
LP
8733 -u" instead.
8734
8735 * journald.conf's RuntimeMinSize=, PersistentMinSize= settings
8736 have been removed since they are hardly useful to be
8737 configured.
8738
8739 * And I'd like to take the opportunity to specifically mention
8740 Zbigniew for his great contributions. Zbigniew, you rock!
8741
8742 Contributions from: Andrew Eikum, Christian Hesse, Colin
8743 Guthrie, Daniel J Walsh, Dave Reisner, Eelco Dolstra, Ferenc
4d92e078
LP
8744 Wágner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Mantas
8745 Mikulėnas, Martin Mikkelsen, Martin Pitt, Michael Olbrich,
8746 Michael Stapelberg, Michal Schmidt, Sebastian Ott, Thomas
8747 Bächler, Umut Tezduyar, Will Woods, Wulf C. Krueger, Zbigniew
8748 Jędrzejewski-Szmek, Сковорода Никита Андреевич
139ee8cc 8749
f9b55720
LP
8750CHANGES WITH 194:
8751
8752 * If /etc/vconsole.conf is non-existent or empty we will no
8753 longer load any console font or key map at boot by
8754 default. Instead the kernel defaults will be left
8755 intact. This is definitely the right thing to do, as no
8756 configuration should mean no configuration, and hard-coding
8757 font names that are different on all archs is probably a bad
8758 idea. Also, the kernel default key map and font should be
8759 good enough for most cases anyway, and mostly identical to
8760 the userspace fonts/key maps we previously overloaded them
8761 with. If distributions want to continue to default to a
8762 non-kernel font or key map they should ship a default
8763 /etc/vconsole.conf with the appropriate contents.
8764
8765 Contributions from: Colin Walters, Daniel J Walsh, Dave
8766 Reisner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Tollef
8767 Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek
8768
597c52cf
LP
8769CHANGES WITH 193:
8770
8771 * journalctl gained a new --cursor= switch to show entries
8772 starting from the specified location in the journal.
8773
8774 * We now enforce a size limit on journal entry fields exported
8775 with "-o json" in journalctl. Fields larger than 4K will be
8776 assigned null. This can be turned off with --all.
8777
8778 * An (optional) journal gateway daemon is now available as
8779 "systemd-journal-gatewayd.service". This service provides
8780 access to the journal via HTTP and JSON. This functionality
8781 will be used to implement live log synchronization in both
8782 pull and push modes, but has various other users too, such
8783 as easy log access for debugging of embedded devices. Right
8784 now it is already useful to retrieve the journal via HTTP:
8785
8786 # systemctl start systemd-journal-gatewayd.service
8787 # wget http://localhost:19531/entries
8788
8789 This will download the journal contents in a
8790 /var/log/messages compatible format. The same as JSON:
8791
8792 # curl -H"Accept: application/json" http://localhost:19531/entries
8793
8794 This service is also accessible via a web browser where a
8795 single static HTML5 app is served that uses the JSON logic
8796 to enable the user to do some basic browsing of the
8797 journal. This will be extended later on. Here's an example
8798 screenshot of this app in its current state:
8799
8800 http://0pointer.de/public/journal-gatewayd
8801
8802 Contributions from: Kay Sievers, Lennart Poettering, Robert
8803 Milasan, Tom Gundersen
8804
075d4ecb
LP
8805CHANGES WITH 192:
8806
8807 * The bash completion logic is now available for journalctl
8808 too.
8809
d28315e4 8810 * We do not mount the "cpuset" controller anymore together with
075d4ecb
LP
8811 "cpu" and "cpuacct", as "cpuset" groups generally cannot be
8812 started if no parameters are assigned to it. "cpuset" hence
61233823 8813 broke code that assumed it could create "cpu" groups and
075d4ecb
LP
8814 just start them.
8815
8816 * journalctl -f will now subscribe to terminal size changes,
8817 and line break accordingly.
8818
597c52cf
LP
8819 Contributions from: Dave Reisner, Kay Sievers, Lennart
8820 Poettering, Lukas Nykrynm, Mirco Tischler, Václav Pavlín
075d4ecb 8821
b6a86739
LP
8822CHANGES WITH 191:
8823
8824 * nspawn will now create a symlink /etc/localtime in the
8825 container environment, copying the host's timezone
8826 setting. Previously this has been done via a bind mount, but
8827 since symlinks cannot be bind mounted this has now been
8828 changed to create/update the appropriate symlink.
8829
8830 * journalctl -n's line number argument is now optional, and
8831 will default to 10 if omitted.
8832
8833 * journald will now log the maximum size the journal files may
8834 take up on disk. This is particularly useful if the default
8835 built-in logic of determining this parameter from the file
8836 system size is used. Use "systemctl status
6563b535 8837 systemd-journald.service" to see this information.
b6a86739
LP
8838
8839 * The multi-seat X wrapper tool has been stripped down. As X
8840 is now capable of enumerating graphics devices via udev in a
8841 seat-aware way the wrapper is not strictly necessary
8842 anymore. A stripped down temporary stop-gap is still shipped
8843 until the upstream display managers have been updated to
8844 fully support the new X logic. Expect this wrapper to be
6563b535 8845 removed entirely in one of the next releases.
b6a86739
LP
8846
8847 * HandleSleepKey= in logind.conf has been split up into
8848 HandleSuspendKey= and HandleHibernateKey=. The old setting
6563b535 8849 is not available anymore. X11 and the kernel are
45afd519 8850 distinguishing between these keys and we should too. This
b6a86739
LP
8851 also means the inhibition lock for these keys has been split
8852 into two.
8853
597c52cf
LP
8854 Contributions from: Dave Airlie, Eelco Dolstra, Lennart
8855 Poettering, Lukas Nykryn, Václav Pavlín
b6a86739 8856
0c11f949
LP
8857CHANGES WITH 190:
8858
d28315e4 8859 * Whenever a unit changes state we will now log this to the
0c11f949
LP
8860 journal and show along the unit's own log output in
8861 "systemctl status".
8862
8863 * ConditionPathIsMountPoint= can now properly detect bind
8864 mount points too. (Previously, a bind mount of one file
8d0256b7 8865 system to another place in the same file system could not be
0c11f949
LP
8866 detected as mount, since they shared struct stat's st_dev
8867 field.)
8868
8869 * We will now mount the cgroup controllers cpu, cpuacct,
8870 cpuset and the controllers net_cls, net_prio together by
8871 default.
8872
8873 * nspawn containers will now have a virtualized boot
8874 ID. (i.e. /proc/sys/kernel/random/boot_id is now mounted
8875 over with a randomized ID at container initialization). This
8876 has the effect of making "journalctl -b" do the right thing
8877 in a container.
8878
8879 * The JSON output journal serialization has been updated not
8880 to generate "endless" list objects anymore, but rather one
8881 JSON object per line. This is more in line how most JSON
8882 parsers expect JSON objects. The new output mode
8883 "json-pretty" has been added to provide similar output, but
8884 neatly aligned for readability by humans.
8885
8886 * We dropped all explicit sync() invocations in the shutdown
8887 code. The kernel does this implicitly anyway in the kernel
8888 reboot() syscall. halt(8)'s -n option is now a compatibility
8889 no-op.
8890
8891 * We now support virtualized reboot() in containers, as
8892 supported by newer kernels. We will fall back to exit() if
8893 CAP_SYS_REBOOT is not available to the container. Also,
8894 nspawn makes use of this now and will actually reboot the
8895 container if the containerized OS asks for that.
8896
8897 * journalctl will only show local log output by default
8898 now. Use --merge (-m) to show remote log output, too.
8899
8900 * libsystemd-journal gained the new sd_journal_get_usage()
8901 call to determine the current disk usage of all journal
8902 files. This is exposed in the new "journalctl --disk-usage"
8903 command.
8904
8905 * journald gained a new configuration setting SplitMode= in
8906 journald.conf which may be used to control how user journals
8907 are split off. See journald.conf(5) for details.
8908
8909 * A new condition type ConditionFileNotEmpty= has been added.
8910
8911 * tmpfiles' "w" lines now support file globbing, to write
8912 multiple files at once.
8913
8914 * We added Python bindings for the journal submission
8915 APIs. More Python APIs for a number of selected APIs will
8916 likely follow. Note that we intend to add native bindings
8917 only for the Python language, as we consider it common
8918 enough to deserve bindings shipped within systemd. There are
8919 various projects outside of systemd that provide bindings
8920 for languages such as PHP or Lua.
8921
a98d5d64
LP
8922 * Many conditions will now resolve specifiers such as %i. In
8923 addition, PathChanged= and related directives of .path units
8924 now support specifiers as well.
0c11f949
LP
8925
8926 * There's now a new RPM macro definition for the system preset
8927 dir: %_presetdir.
8928
d28315e4 8929 * journald will now warn if it ca not forward a message to the
dca348bc 8930 syslog daemon because its socket is full.
0c11f949
LP
8931
8932 * timedated will no longer write or process /etc/timezone,
8933 except on Debian. As we do not support late mounted /usr
8934 anymore /etc/localtime always being a symlink is now safe,
8935 and hence the information in /etc/timezone is not necessary
8936 anymore.
8937
aaccc32c 8938 * logind will now always reserve one VT for a text getty (VT6
0c11f949
LP
8939 by default). Previously if more than 6 X sessions where
8940 started they took up all the VTs with auto-spawned gettys,
8941 so that no text gettys were available anymore.
8942
8943 * udev will now automatically inform the btrfs kernel logic
8944 about btrfs RAID components showing up. This should make
8945 simple hotplug based btrfs RAID assembly work.
8946
8947 * PID 1 will now increase its RLIMIT_NOFILE to 64K by default
8948 (but not for its children which will stay at the kernel
8949 default). This should allow setups with a lot more listening
8950 sockets.
8951
8952 * systemd will now always pass the configured timezone to the
8953 kernel at boot. timedated will do the same when the timezone
8954 is changed.
8955
8956 * logind's inhibition logic has been updated. By default,
8957 logind will now handle the lid switch, the power and sleep
8958 keys all the time, even in graphical sessions. If DEs want
8959 to handle these events on their own they should take the new
8960 handle-power-key, handle-sleep-key and handle-lid-switch
f131770b 8961 inhibitors during their runtime. A simple way to achieve
0c11f949
LP
8962 that is to invoke the DE wrapped in an invocation of:
8963
8964 systemd-inhibit --what=handle-power-key:handle-sleep-key:handle-lid-switch ...
8965
8966 * Access to unit operations is now checked via SELinux taking
8967 the unit file label and client process label into account.
8968
aad803af
LP
8969 * systemd will now notify the administrator in the journal
8970 when he over-mounts a non-empty directory.
8971
8972 * There are new specifiers that are resolved in unit files,
8973 for the host name (%H), the machine ID (%m) and the boot ID
8974 (%b).
8975
b6a86739 8976 Contributions from: Allin Cottrell, Auke Kok, Brandon Philips,
0c11f949
LP
8977 Colin Guthrie, Colin Walters, Daniel J Walsh, Dave Reisner,
8978 Eelco Dolstra, Jan Engelhardt, Kay Sievers, Lennart
8979 Poettering, Lucas De Marchi, Lukas Nykryn, Mantas Mikulėnas,
8980 Martin Pitt, Matthias Clasen, Michael Olbrich, Pierre Schmitz,
8981 Shawn Landden, Thomas Hindoe Paaboel Andersen, Tom Gundersen,
8982 Václav Pavlín, Yin Kangkai, Zbigniew Jędrzejewski-Szmek
8983
38a60d71
LP
8984CHANGES WITH 189:
8985
8986 * Support for reading structured kernel messages from
8987 /dev/kmsg has now been added and is enabled by default.
8988
8989 * Support for reading kernel messages from /proc/kmsg has now
8990 been removed. If you want kernel messages in the journal
8991 make sure to run a recent kernel (>= 3.5) that supports
8992 reading structured messages from /dev/kmsg (see
8993 above). /proc/kmsg is now exclusive property of classic
8994 syslog daemons again.
8995
8996 * The libudev API gained the new
8997 udev_device_new_from_device_id() call.
8998
8999 * The logic for file system namespace (ReadOnlyDirectory=,
9000 ReadWriteDirectoy=, PrivateTmp=) has been reworked not to
9001 require pivot_root() anymore. This means fewer temporary
9002 directories are created below /tmp for this feature.
9003
9004 * nspawn containers will now see and receive all submounts
9005 made on the host OS below the root file system of the
9006 container.
9007
9008 * Forward Secure Sealing is now supported for Journal files,
9009 which provide cryptographical sealing of journal files so
9010 that attackers cannot alter log history anymore without this
9011 being detectable. Lennart will soon post a blog story about
9012 this explaining it in more detail.
9013
9014 * There are two new service settings RestartPreventExitStatus=
9015 and SuccessExitStatus= which allow configuration of exit
9016 status (exit code or signal) which will be excepted from the
9017 restart logic, resp. consider successful.
9018
9019 * journalctl gained the new --verify switch that can be used
9020 to check the integrity of the structure of journal files and
9021 (if Forward Secure Sealing is enabled) the contents of
9022 journal files.
9023
9024 * nspawn containers will now be run with /dev/stdin, /dev/fd/
9025 and similar symlinks pre-created. This makes running shells
9026 as container init process a lot more fun.
9027
9028 * The fstab support can now handle PARTUUID= and PARTLABEL=
9029 entries.
9030
9031 * A new ConditionHost= condition has been added to match
9032 against the hostname (with globs) and machine ID. This is
9033 useful for clusters where a single OS image is used to
9034 provision a large number of hosts which shall run slightly
9035 different sets of services.
9036
9037 * Services which hit the restart limit will now be placed in a
9038 failure state.
9039
b6a86739 9040 Contributions from: Bertram Poettering, Dave Reisner, Huang
38a60d71
LP
9041 Hang, Kay Sievers, Lennart Poettering, Lukas Nykryn, Martin
9042 Pitt, Simon Peeters, Zbigniew Jędrzejewski-Szmek
9043
c269cec3
LP
9044CHANGES WITH 188:
9045
9046 * When running in --user mode systemd will now become a
9047 subreaper (PR_SET_CHILD_SUBREAPER). This should make the ps
9048 tree a lot more organized.
9049
9050 * A new PartOf= unit dependency type has been introduced that
9051 may be used to group services in a natural way.
9052
9053 * "systemctl enable" may now be used to enable instances of
9054 services.
9055
9056 * journalctl now prints error log levels in red, and
9057 warning/notice log levels in bright white. It also supports
9058 filtering by log level now.
9059
9060 * cgtop gained a new -n switch (similar to top), to configure
9061 the maximum number of iterations to run for. It also gained
9062 -b, to run in batch mode (accepting no input).
9063
ab06eef8 9064 * The suffix ".service" may now be omitted on most systemctl
c269cec3
LP
9065 command lines involving service unit names.
9066
9067 * There's a new bus call in logind to lock all sessions, as
9068 well as a loginctl verb for it "lock-sessions".
9069
9070 * libsystemd-logind.so gained a new call sd_journal_perror()
9071 that works similar to libc perror() but logs to the journal
9072 and encodes structured information about the error number.
9073
9074 * /etc/crypttab entries now understand the new keyfile-size=
9075 option.
9076
9077 * shutdown(8) now can send a (configurable) wall message when
9078 a shutdown is cancelled.
9079
9080 * The mount propagation mode for the root file system will now
9081 default to "shared", which is useful to make containers work
9082 nicely out-of-the-box so that they receive new mounts from
9083 the host. This can be undone locally by running "mount
9084 --make-rprivate /" if needed.
9085
9086 * The prefdm.service file has been removed. Distributions
9087 should maintain this unit downstream if they intend to keep
9088 it around. However, we recommend writing normal unit files
9089 for display managers instead.
9090
9091 * Since systemd is a crucial part of the OS we will now
9092 default to a number of compiler switches that improve
9093 security (hardening) such as read-only relocations, stack
9094 protection, and suchlike.
9095
9096 * The TimeoutSec= setting for services is now split into
9097 TimeoutStartSec= and TimeoutStopSec= to allow configuration
9098 of individual time outs for the start and the stop phase of
9099 the service.
9100
9101 Contributions from: Artur Zaprzala, Arvydas Sidorenko, Auke
9102 Kok, Bryan Kadzban, Dave Reisner, David Strauss, Harald Hoyer,
9103 Jim Meyering, Kay Sievers, Lennart Poettering, Mantas
9104 Mikulėnas, Martin Pitt, Michal Schmidt, Michal Sekletar, Peter
9105 Alfredsen, Shawn Landden, Simon Peeters, Terence Honles, Tom
9106 Gundersen, Zbigniew Jędrzejewski-Szmek
9107
c4f1b862
LP
9108CHANGES WITH 187:
9109
9110 * The journal and id128 C APIs are now fully documented as man
9111 pages.
9112
9113 * Extra safety checks have been added when transitioning from
9114 the initial RAM disk to the main system to avoid accidental
9115 data loss.
9116
c269cec3 9117 * /etc/crypttab entries now understand the new keyfile-offset=
c4f1b862
LP
9118 option.
9119
9120 * systemctl -t can now be used to filter by unit load state.
9121
9122 * The journal C API gained the new sd_journal_wait() call to
9123 make writing synchronous journal clients easier.
9124
9125 * journalctl gained the new -D switch to show journals from a
9126 specific directory.
9127
9128 * journalctl now displays a special marker between log
9129 messages of two different boots.
9130
9131 * The journal is now explicitly flushed to /var via a service
9132 systemd-journal-flush.service, rather than implicitly simply
9133 by seeing /var/log/journal to be writable.
9134
9135 * journalctl (and the journal C APIs) can now match for much
9136 more complex expressions, with alternatives and
9137 disjunctions.
9138
9139 * When transitioning from the initial RAM disk to the main
9140 system we will now kill all processes in a killing spree to
9141 ensure no processes stay around by accident.
9142
9143 * Three new specifiers may be used in unit files: %u, %h, %s
9144 resolve to the user name, user home directory resp. user
9145 shell. This is useful for running systemd user instances.
9146
9147 * We now automatically rotate journal files if their data
9148 object hash table gets a fill level > 75%. We also size the
9149 hash table based on the configured maximum file size. This
9150 together should lower hash collisions drastically and thus
9151 speed things up a bit.
9152
9153 * journalctl gained the new "--header" switch to introspect
9154 header data of journal files.
9155
9156 * A new setting SystemCallFilters= has been added to services
9157 which may be used to apply blacklists or whitelists to
9158 system calls. This is based on SECCOMP Mode 2 of Linux 3.5.
9159
9160 * nspawn gained a new --link-journal= switch (and quicker: -j)
9161 to link the container journal with the host. This makes it
9162 very easy to centralize log viewing on the host for all
9163 guests while still keeping the journal files separated.
9164
9165 * Many bugfixes and optimizations
9166
9167 Contributions from: Auke Kok, Eelco Dolstra, Harald Hoyer, Kay
9168 Sievers, Lennart Poettering, Malte Starostik, Paul Menzel, Rex
9169 Tsai, Shawn Landden, Tom Gundersen, Ville Skyttä, Zbigniew
9170 Jędrzejewski-Szmek
9171
b5b4c94a
LP
9172CHANGES WITH 186:
9173
9174 * Several tools now understand kernel command line arguments,
9175 which are only read when run in an initial RAM disk. They
9176 usually follow closely their normal counterparts, but are
9177 prefixed with rd.
9178
9179 * There's a new tool to analyze the readahead files that are
9180 automatically generated at boot. Use:
9181
9182 /usr/lib/systemd/systemd-readahead analyze /.readahead
9183
9184 * We now provide an early debug shell on tty9 if this enabled. Use:
9185
d1f9edaf 9186 systemctl enable debug-shell.service
b5b4c94a
LP
9187
9188 * All plymouth related units have been moved into the Plymouth
9189 package. Please make sure to upgrade your Plymouth version
9190 as well.
9191
9192 * systemd-tmpfiles now supports getting passed the basename of
9193 a configuration file only, in which case it will look for it
9194 in all appropriate directories automatically.
9195
9196 * udevadm info now takes a /dev or /sys path as argument, and
9197 does the right thing. Example:
9198
9199 udevadm info /dev/sda
9200 udevadm info /sys/class/block/sda
9201
9202 * systemctl now prints a warning if a unit is stopped but a
9203 unit that might trigger it continues to run. Example: a
9204 service is stopped but the socket that activates it is left
9205 running.
9206
9207 * "systemctl status" will now mention if the log output was
9208 shortened due to rotation since a service has been started.
9209
9210 * The journal API now exposes functions to determine the
9211 "cutoff" times due to rotation.
9212
9213 * journald now understands SIGUSR1 and SIGUSR2 for triggering
9214 immediately flushing of runtime logs to /var if possible,
9215 resp. for triggering immediate rotation of the journal
9216 files.
9217
9218 * It is now considered an error if a service is attempted to
9219 be stopped that is not loaded.
9220
9221 * XDG_RUNTIME_DIR now uses numeric UIDs instead of usernames.
9222
9223 * systemd-analyze now supports Python 3
9224
9225 * tmpfiles now supports cleaning up directories via aging
9226 where the first level dirs are always kept around but
9227 directories beneath it automatically aged. This is enabled
9228 by prefixing the age field with '~'.
9229
9230 * Seat objects now expose CanGraphical, CanTTY properties
9231 which is required to deal with very fast bootups where the
9232 display manager might be running before the graphics drivers
9233 completed initialization.
9234
9235 * Seat objects now expose a State property.
9236
9237 * We now include RPM macros for service enabling/disabling
9238 based on the preset logic. We recommend RPM based
9239 distributions to make use of these macros if possible. This
9240 makes it simpler to reuse RPM spec files across
9241 distributions.
9242
9243 * We now make sure that the collected systemd unit name is
9244 always valid when services log to the journal via
9245 STDOUT/STDERR.
9246
9247 * There's a new man page kernel-command-line(7) detailing all
9248 command line options we understand.
9249
9250 * The fstab generator may now be disabled at boot by passing
9251 fstab=0 on the kernel command line.
9252
91ac7425 9253 * A new kernel command line option modules-load= is now understood
b5b4c94a
LP
9254 to load a specific kernel module statically, early at boot.
9255
9256 * Unit names specified on the systemctl command line are now
9257 automatically escaped as needed. Also, if file system or
9258 device paths are specified they are automatically turned
9259 into the appropriate mount or device unit names. Example:
9260
9261 systemctl status /home
9262 systemctl status /dev/sda
9263
9264 * The SysVConsole= configuration option has been removed from
9265 system.conf parsing.
9266
9267 * The SysV search path is no longer exported on the D-Bus
9268 Manager object.
9269
ce830873 9270 * The Names= option has been removed from unit file parsing.
b5b4c94a
LP
9271
9272 * There's a new man page bootup(7) detailing the boot process.
9273
9274 * Every unit and every generator we ship with systemd now
9275 comes with full documentation. The self-explanatory boot is
9276 complete.
9277
9278 * A couple of services gained "systemd-" prefixes in their
9279 name if they wrap systemd code, rather than only external
9280 code. Among them fsck@.service which is now
9281 systemd-fsck@.service.
9282
9283 * The HaveWatchdog property has been removed from the D-Bus
9284 Manager object.
9285
9286 * systemd.confirm_spawn= on the kernel command line should now
9287 work sensibly.
9288
9289 * There's a new man page crypttab(5) which details all options
9290 we actually understand.
9291
9292 * systemd-nspawn gained a new --capability= switch to pass
9293 additional capabilities to the container.
9294
9295 * timedated will now read known NTP implementation unit names
5b00c016 9296 from /usr/lib/systemd/ntp-units.d/*.list,
b5b4c94a
LP
9297 systemd-timedated-ntp.target has been removed.
9298
9299 * journalctl gained a new switch "-b" that lists log data of
9300 the current boot only.
9301
9302 * The notify socket is in the abstract namespace again, in
9303 order to support daemons which chroot() at start-up.
9304
9305 * There is a new Storage= configuration option for journald
9306 which allows configuration of where log data should go. This
9307 also provides a way to disable journal logging entirely, so
9308 that data collected is only forwarded to the console, the
9309 kernel log buffer or another syslog implementation.
9310
c4f1b862 9311 * Many bugfixes and optimizations
b5b4c94a 9312
2d938ac7
LP
9313 Contributions from: Auke Kok, Colin Guthrie, Dave Reisner,
9314 David Strauss, Eelco Dolstra, Kay Sievers, Lennart Poettering,
9315 Lukas Nykryn, Michal Schmidt, Michal Sekletar, Paul Menzel,
9316 Shawn Landden, Tom Gundersen
b5b4c94a 9317
2d197285 9318CHANGES WITH 185:
b6a86739 9319
2d197285
KS
9320 * "systemctl help <unit>" now shows the man page if one is
9321 available.
9322
9323 * Several new man pages have been added.
9324
b5b4c94a
LP
9325 * MaxLevelStore=, MaxLevelSyslog=, MaxLevelKMsg=,
9326 MaxLevelConsole= can now be specified in
9327 journald.conf. These options allow reducing the amount of
9328 data stored on disk or forwarded by the log level.
2d197285 9329
b5b4c94a
LP
9330 * TimerSlackNSec= can now be specified in system.conf for
9331 PID1. This allows system-wide power savings.
2d197285
KS
9332
9333 Contributions from: Dave Reisner, Kay Sievers, Lauri Kasanen,
9334 Lennart Poettering, Malte Starostik, Marc-Antoine Perennou,
9335 Matthias Clasen
9336
4c8cd173 9337CHANGES WITH 184:
b6a86739 9338
4c8cd173
LP
9339 * logind is now capable of (optionally) handling power and
9340 sleep keys as well as the lid switch.
9341
9342 * journalctl now understands the syntax "journalctl
9343 /usr/bin/avahi-daemon" to get all log output of a specific
9344 daemon.
9345
9346 * CapabilityBoundingSet= in system.conf now also influences
9347 the capability bound set of usermode helpers of the kernel.
9348
9349 Contributions from: Daniel Drake, Daniel J. Walsh, Gert
9350 Michael Kulyk, Harald Hoyer, Jean Delvare, Kay Sievers,
9351 Lennart Poettering, Matthew Garrett, Matthias Clasen, Paul
9352 Menzel, Shawn Landden, Tero Roponen, Tom Gundersen
9353
ea5943d3 9354CHANGES WITH 183:
b6a86739 9355
187076d4
LP
9356 * Note that we skipped 139 releases here in order to set the
9357 new version to something that is greater than both udev's
9358 and systemd's most recent version number.
9359
194bbe33
KS
9360 * udev: all udev sources are merged into the systemd source tree now.
9361 All future udev development will happen in the systemd tree. It
9362 is still fully supported to use the udev daemon and tools without
9363 systemd running, like in initramfs or other init systems. Building
9364 udev though, will require the *build* of the systemd tree, but
ea5943d3 9365 udev can be properly *run* without systemd.
07cd4fc1 9366
91cf7e5c 9367 * udev: /lib/udev/devices/ are not read anymore; systemd-tmpfiles
f13b388f
KS
9368 should be used to create dead device nodes as workarounds for broken
9369 subsystems.
64661ee7 9370
2d13da88
KS
9371 * udev: RUN+="socket:..." and udev_monitor_new_from_socket() is
9372 no longer supported. udev_monitor_new_from_netlink() needs to be
9373 used to subscribe to events.
9374
194bbe33
KS
9375 * udev: when udevd is started by systemd, processes which are left
9376 behind by forking them off of udev rules, are unconditionally cleaned
9377 up and killed now after the event handling has finished. Services or
9378 daemons must be started as systemd services. Services can be
ea5943d3 9379 pulled-in by udev to get started, but they can no longer be directly
194bbe33
KS
9380 forked by udev rules.
9381
f13b388f
KS
9382 * udev: the daemon binary is called systemd-udevd now and installed
9383 in /usr/lib/systemd/. Standalone builds or non-systemd systems need
9384 to adapt to that, create symlink, or rename the binary after building
9385 it.
9386
ea5943d3 9387 * libudev no longer provides these symbols:
c1959569
KS
9388 udev_monitor_from_socket()
9389 udev_queue_get_failed_list_entry()
9390 udev_get_{dev,sys,run}_path()
ea5943d3 9391 The versions number was bumped and symbol versioning introduced.
c1959569 9392
ea5943d3 9393 * systemd-loginctl and systemd-journalctl have been renamed
9ae9afce 9394 to loginctl and journalctl to match systemctl.
18b754d3
KS
9395
9396 * The config files: /etc/systemd/systemd-logind.conf and
9397 /etc/systemd/systemd-journald.conf have been renamed to
9398 logind.conf and journald.conf. Package updates should rename
9399 the files to the new names on upgrade.
9400
ea5943d3
LP
9401 * For almost all files the license is now LGPL2.1+, changed
9402 from the previous GPL2.0+. Exceptions are some minor stuff
9403 of udev (which will be changed to LGPL2.1 eventually, too),
9404 and the MIT licensed sd-daemon.[ch] library that is suitable
9405 to be used as drop-in files.
9406
9407 * systemd and logind now handle system sleep states, in
49f43d5f 9408 particular suspending and hibernating.
ea5943d3
LP
9409
9410 * logind now implements a sleep/shutdown/idle inhibiting logic
9411 suitable for a variety of uses. Soonishly Lennart will blog
9412 about this in more detail.
9413
9414 * var-run.mount and var-lock.mount are no longer provided
ce830873 9415 (which previously bind mounted these directories to their new
ea5943d3
LP
9416 places). Distributions which have not converted these
9417 directories to symlinks should consider stealing these files
9418 from git history and add them downstream.
9419
9420 * We introduced the Documentation= field for units and added
9421 this to all our shipped units. This is useful to make it
3943231c 9422 easier to explore the boot and the purpose of the various
ea5943d3
LP
9423 units.
9424
9425 * All smaller setup units (such as
9426 systemd-vconsole-setup.service) now detect properly if they
9427 are run in a container and are skipped when
9428 appropriate. This guarantees an entirely noise-free boot in
9429 Linux container environments such as systemd-nspawn.
9430
9431 * A framework for implementing offline system updates is now
9432 integrated, for details see:
c6749ba5 9433 https://www.freedesktop.org/wiki/Software/systemd/SystemUpdates
ea5943d3
LP
9434
9435 * A new service type Type=idle is available now which helps us
9436 avoiding ugly interleaving of getty output and boot status
9437 messages.
9438
439d6dfd
LP
9439 * There's now a system-wide CapabilityBoundingSet= option to
9440 globally reduce the set of capabilities for the
ea5943d3
LP
9441 system. This is useful to drop CAP_SYS_MKNOD, CAP_SYS_RAWIO,
9442 CAP_NET_RAW, CAP_SYS_MODULE, CAP_SYS_TIME, CAP_SYS_PTRACE or
9443 even CAP_NET_ADMIN system-wide for secure systems.
9444
9445 * There are now system-wide DefaultLimitXXX= options to
9446 globally change the defaults of the various resource limits
9447 for all units started by PID 1.
9448
9449 * Harald Hoyer's systemd test suite has been integrated into
9450 systemd which allows easy testing of systemd builds in qemu
9451 and nspawn. (This is really awesome! Ask us for details!)
9452
3943231c
LP
9453 * The fstab parser is now implemented as generator, not inside
9454 of PID 1 anymore.
ea5943d3
LP
9455
9456 * systemctl will now warn you if .mount units generated from
9457 /etc/fstab are out of date due to changes in fstab that
d28315e4 9458 have not been read by systemd yet.
ea5943d3
LP
9459
9460 * systemd is now suitable for usage in initrds. Dracut has
9461 already been updated to make use of this. With this in place
9462 initrds get a slight bit faster but primarily are much
9463 easier to introspect and debug since "systemctl status" in
9464 the host system can be used to introspect initrd services,
9465 and the journal from the initrd is kept around too.
9466
9467 * systemd-delta has been added, a tool to explore differences
9468 between user/admin configuration and vendor defaults.
9469
9470 * PrivateTmp= now affects both /tmp and /var/tmp.
9471
9472 * Boot time status messages are now much prettier and feature
9473 proper english language. Booting up systemd has never been
9474 so sexy.
9475
9476 * Read-ahead pack files now include the inode number of all
9477 files to pre-cache. When the inode changes the pre-caching
9478 is not attempted. This should be nicer to deal with updated
9479 packages which might result in changes of read-ahead
9480 patterns.
9481
9482 * We now temporaritly lower the kernel's read_ahead_kb variable
9483 when collecting read-ahead data to ensure the kernel's
9484 built-in read-ahead does not add noise to our measurements
9485 of necessary blocks to pre-cache.
9486
9487 * There's now RequiresMountsFor= to add automatic dependencies
9488 for all mounts necessary for a specific file system path.
9489
9490 * MountAuto= and SwapAuto= have been removed from
9491 system.conf. Mounting file systems at boot has to take place
9492 in systemd now.
9493
9494 * nspawn now learned a new switch --uuid= to set the machine
9495 ID on the command line.
9496
f8c0a2cb 9497 * nspawn now learned the -b switch to automatically search
ea5943d3
LP
9498 for an init system.
9499
9500 * vt102 is now the default TERM for serial TTYs, upgraded from
9501 vt100.
9502
9503 * systemd-logind now works on VT-less systems.
9504
9505 * The build tree has been reorganized. The individual
3943231c 9506 components now have directories of their own.
ea5943d3
LP
9507
9508 * A new condition type ConditionPathIsReadWrite= is now available.
9509
9510 * nspawn learned the new -C switch to create cgroups for the
9511 container in other hierarchies.
9512
9513 * We now have support for hardware watchdogs, configurable in
9514 system.conf.
9515
9516 * The scheduled shutdown logic now has a public API.
9517
9518 * We now mount /tmp as tmpfs by default, but this can be
9519 masked and /etc/fstab can override it.
9520
d28315e4 9521 * Since udisks does not make use of /media anymore we are not
ea5943d3
LP
9522 mounting a tmpfs on it anymore.
9523
9524 * journalctl gained a new --local switch to only interleave
9525 locally generated journal files.
9526
9527 * We can now load the IMA policy at boot automatically.
9528
9529 * The GTK tools have been split off into a systemd-ui.
9530
79849bf9
LP
9531 Contributions from: Andreas Schwab, Auke Kok, Ayan George,
9532 Colin Guthrie, Daniel Mack, Dave Reisner, David Ward, Elan
9533 Ruusamäe, Frederic Crozat, Gergely Nagy, Guillermo Vidal,
9534 Hannes Reinecke, Harald Hoyer, Javier Jardón, Kay Sievers,
9535 Lennart Poettering, Lucas De Marchi, Léo Gillot-Lamure,
9536 Marc-Antoine Perennou, Martin Pitt, Matthew Monaco, Maxim
9537 A. Mikityanskiy, Michael Biebl, Michael Olbrich, Michal
9538 Schmidt, Nis Martensen, Patrick McCarty, Roberto Sassu, Shawn
9539 Landden, Sjoerd Simons, Sven Anders, Tollef Fog Heen, Tom
9540 Gundersen
9541
16f1239e 9542CHANGES WITH 44:
b6a86739 9543
16f1239e
LP
9544 * This is mostly a bugfix release
9545
9546 * Support optional initialization of the machine ID from the
9547 KVM or container configured UUID.
9548
9549 * Support immediate reboots with "systemctl reboot -ff"
9550
9551 * Show /etc/os-release data in systemd-analyze output
9552
ab06eef8 9553 * Many bugfixes for the journal, including endianness fixes and
16f1239e
LP
9554 ensuring that disk space enforcement works
9555
ce830873 9556 * sd-login.h is C++ compatible again
16f1239e
LP
9557
9558 * Extend the /etc/os-release format on request of the Debian
9559 folks
9560
9561 * We now refuse non-UTF8 strings used in various configuration
d28315e4 9562 and unit files. This is done to ensure we do not pass invalid
16f1239e
LP
9563 data over D-Bus or expose it elsewhere.
9564
9565 * Register Mimo USB Screens as suitable for automatic seat
9566 configuration
9567
9568 * Read SELinux client context from journal clients in a race
9569 free fashion
9570
9571 * Reorder configuration file lookup order. /etc now always
9572 overrides /run in order to allow the administrator to always
b938cb90 9573 and unconditionally override vendor-supplied or
16f1239e
LP
9574 automatically generated data.
9575
9576 * The various user visible bits of the journal now have man
9577 pages. We still lack man pages for the journal API calls
9578 however.
9579
9580 * We now ship all man pages in HTML format again in the
9581 tarball.
9582
9583 Contributions from: Dave Reisner, Dirk Eibach, Frederic
9584 Crozat, Harald Hoyer, Kay Sievers, Lennart Poettering, Marti
9585 Raudsepp, Michal Schmidt, Shawn Landden, Tero Roponen, Thierry
9586 Reding
9587
437b7dee 9588CHANGES WITH 43:
b6a86739 9589
437b7dee
LP
9590 * This is mostly a bugfix release
9591
9592 * systems lacking /etc/os-release are no longer supported.
9593
9594 * Various functionality updates to libsystemd-login.so
9595
45afd519 9596 * Track class of PAM logins to distinguish greeters from
437b7dee
LP
9597 normal user logins.
9598
9599 Contributions from: Kay Sievers, Lennart Poettering, Michael
9600 Biebl
9601
204fa33c 9602CHANGES WITH 42:
b6a86739 9603
204fa33c
LP
9604 * This is an important bugfix release for v41.
9605
9606 * Building man pages is now optional which should be useful
9607 for those building systemd from git but unwilling to install
9608 xsltproc.
9609
9610 * Watchdog support for supervising services is now usable. In
9611 a future release support for hardware watchdogs
9612 (i.e. /dev/watchdog) will be added building on this.
9613
9614 * Service start rate limiting is now configurable and can be
9615 turned off per service. When a start rate limit is hit a
9616 reboot can automatically be triggered.
9617
9618 * New CanReboot(), CanPowerOff() bus calls in systemd-logind.
9619
9620 Contributions from: Benjamin Franzke, Bill Nottingham,
9621 Frederic Crozat, Lennart Poettering, Michael Olbrich, Michal
9622 Schmidt, Michał Górny, Piotr Drąg
9623
e0d25329 9624CHANGES WITH 41:
b6a86739 9625
e0d25329
KS
9626 * The systemd binary is installed /usr/lib/systemd/systemd now;
9627 An existing /sbin/init symlink needs to be adapted with the
9628 package update.
9629
b13df964
LP
9630 * The code that loads kernel modules has been ported to invoke
9631 libkmod directly, instead of modprobe. This means we do not
9632 support systems with module-init-tools anymore.
9633
9634 * Watchdog support is now already useful, but still not
9635 complete.
9636
9637 * A new kernel command line option systemd.setenv= is
9638 understood to set system wide environment variables
9639 dynamically at boot.
9640
e9c1ea9d 9641 * We now limit the set of capabilities of systemd-journald.
ccd07a08 9642
353e12c2
LP
9643 * We now set SIGPIPE to ignore by default, since it only is
9644 useful in shell pipelines, and has little use in general
9645 code. This can be disabled with IgnoreSIPIPE=no in unit
9646 files.
9647
b13df964
LP
9648 Contributions from: Benjamin Franzke, Kay Sievers, Lennart
9649 Poettering, Michael Olbrich, Michal Schmidt, Tom Gundersen,
9650 William Douglas
9651
d26e4270 9652CHANGES WITH 40:
b6a86739 9653
d26e4270
LP
9654 * This is mostly a bugfix release
9655
9656 * We now expose the reason why a service failed in the
9657 "Result" D-Bus property.
9658
9659 * Rudimentary service watchdog support (will be completed over
9660 the next few releases.)
9661
9662 * When systemd forks off in order execute some service we will
9663 now immediately changes its argv[0] to reflect which process
9664 it will execute. This is useful to minimize the time window
9665 with a generic argv[0], which makes bootcharts more useful
9666
b13df964
LP
9667 Contributions from: Alvaro Soliverez, Chris Paulson-Ellis, Kay
9668 Sievers, Lennart Poettering, Michael Olbrich, Michal Schmidt,
9669 Mike Kazantsev, Ray Strode
9670
220a21d3 9671CHANGES WITH 39:
b6a86739 9672
220a21d3
LP
9673 * This is mostly a test release, but incorporates many
9674 bugfixes.
9675
9676 * New systemd-cgtop tool to show control groups by their
9677 resource usage.
9678
9679 * Linking against libacl for ACLs is optional again. If
9680 disabled, support tracking device access for active logins
9681 goes becomes unavailable, and so does access to the user
9682 journals by the respective users.
9683
9684 * If a group "adm" exists, journal files are automatically
9685 owned by them, thus allow members of this group full access
9686 to the system journal as well as all user journals.
9687
9688 * The journal now stores the SELinux context of the logging
9689 client for all entries.
9690
9691 * Add C++ inclusion guards to all public headers
9692
9693 * New output mode "cat" in the journal to print only text
9694 messages, without any meta data like date or time.
9695
9696 * Include tiny X server wrapper as a temporary stop-gap to
9697 teach XOrg udev display enumeration. This is used by display
9698 managers such as gdm, and will go away as soon as XOrg
9699 learned native udev hotplugging for display devices.
9700
9701 * Add new systemd-cat tool for executing arbitrary programs
9702 with STDERR/STDOUT connected to the journal. Can also act as
9703 BSD logger replacement, and does so by default.
9704
9705 * Optionally store all locally generated coredumps in the
9706 journal along with meta data.
9707
9708 * systemd-tmpfiles learnt four new commands: n, L, c, b, for
9709 writing short strings to files (for usage for /sys), and for
9710 creating symlinks, character and block device nodes.
9711
9712 * New unit file option ControlGroupPersistent= to make cgroups
9713 persistent, following the mechanisms outlined in
56cadcb6 9714 https://www.freedesktop.org/wiki/Software/systemd/PaxControlGroups
220a21d3
LP
9715
9716 * Support multiple local RTCs in a sane way
9717
9718 * No longer monopolize IO when replaying readahead data on
9719 rotating disks, since we might starve non-file-system IO to
9720 death, since fanotify() will not see accesses done by blkid,
9721 or fsck.
9722
d28315e4 9723 * Do not show kernel threads in systemd-cgls anymore, unless
220a21d3
LP
9724 requested with new -k switch.
9725
9726 Contributions from: Dan Horák, Kay Sievers, Lennart
9727 Poettering, Michal Schmidt
9728
9729CHANGES WITH 38:
b6a86739 9730
220a21d3
LP
9731 * This is mostly a test release, but incorporates many
9732 bugfixes.
9733
9734 * The git repository moved to:
9735 git://anongit.freedesktop.org/systemd/systemd
9736 ssh://git.freedesktop.org/git/systemd/systemd
9737
9738 * First release with the journal
9739 http://0pointer.de/blog/projects/the-journal.html
9740
9741 * The journal replaces both systemd-kmsg-syslogd and
9742 systemd-stdout-bridge.
9743
9744 * New sd_pid_get_unit() API call in libsystemd-logind
9745
9746 * Many systemadm clean-ups
9747
9748 * Introduce remote-fs-pre.target which is ordered before all
9749 remote mounts and may be used to start services before all
9750 remote mounts.
9751
9752 * Added Mageia support
9753
9754 * Add bash completion for systemd-loginctl
9755
9756 * Actively monitor PID file creation for daemons which exit in
9757 the parent process before having finished writing the PID
9758 file in the daemon process. Daemons which do this need to be
9759 fixed (i.e. PID file creation must have finished before the
9760 parent exits), but we now react a bit more gracefully to them.
9761
9762 * Add colourful boot output, mimicking the well-known output
9763 of existing distributions.
9764
9765 * New option PassCredentials= for socket units, for
9766 compatibility with a recent kernel ABI breakage.
9767
9768 * /etc/rc.local is now hooked in via a generator binary, and
9769 thus will no longer act as synchronization point during
9770 boot.
9771
9772 * systemctl list-unit-files now supports --root=.
9773
9774 * systemd-tmpfiles now understands two new commands: z, Z for
9775 relabelling files according to the SELinux database. This is
9776 useful to apply SELinux labels to specific files in /sys,
9777 among other things.
9778
9779 * Output of SysV services is now forwarded to both the console
9780 and the journal by default, not only just the console.
9781
9782 * New man pages for all APIs from libsystemd-login.
9783
ce830873 9784 * The build tree got reorganized and the build system is a
220a21d3
LP
9785 lot more modular allowing embedded setups to specifically
9786 select the components of systemd they are interested in.
9787
9788 * Support for Linux systems lacking the kernel VT subsystem is
9789 restored.
9790
9791 * configure's --with-rootdir= got renamed to
9792 --with-rootprefix= to follow the naming used by udev and
9793 kmod
9794
d28315e4 9795 * Unless specified otherwise we will now install to /usr instead
220a21d3
LP
9796 of /usr/local by default.
9797
9798 * Processes with '@' in argv[0][0] are now excluded from the
9799 final shut-down killing spree, following the logic explained
9800 in:
56cadcb6 9801 https://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons
220a21d3
LP
9802
9803 * All processes remaining in a service cgroup when we enter
9804 the START or START_PRE states are now killed with
9805 SIGKILL. That means it is no longer possible to spawn
9806 background processes from ExecStart= lines (which was never
9807 supported anyway, and bad style).
9808
9809 * New PropagateReloadTo=/PropagateReloadFrom= options to bind
9810 reloading of units together.
9811
4c8cd173 9812 Contributions from: Bill Nottingham, Daniel J. Walsh, Dave
220a21d3
LP
9813 Reisner, Dexter Morgan, Gregs Gregs, Jonathan Nieder, Kay
9814 Sievers, Lennart Poettering, Michael Biebl, Michal Schmidt,
9815 Michał Górny, Ran Benita, Thomas Jarosch, Tim Waugh, Tollef
9816 Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek