]> git.ipfire.org Git - thirdparty/systemd.git/blame - NEWS
udev-rules: Add rule for /dev/kfd
[thirdparty/systemd.git] / NEWS
CommitLineData
d657c51f 1systemd System and Service Manager
220a21d3 2
195b943d
MM
3CHANGES WITH 236 in spe:
4
5 * The modprobe.d drop-in, introduced in v235 for the bonding module,
6 has been extended to also set the dummy module option numdummies=0,
7 resolving issues with the kernel creating dummy0.
8
e6b2d948
DJL
9 * systemd-resolved now maintains a new dynamic
10 /run/systemd/resolve/stub-resolv.conf compatibility file. It is now
11 recommended to maintain /etc/resolv.conf as a symlink to this new
12 dynamic file. It points at the systemd-resolved stub DNS 127.0.0.53
13 resolver and it includes dynamically acquired search domains. This
14 achieves a more correct DNS resolution by software that bypasses
15 local DNS APIs (e.g. NSS).
16
582faeb4
DJL
17CHANGES WITH 235:
18
fccf5419
LP
19 * A new modprobe.d drop-in is now shipped by default that sets the
20 bonding module option max_bonds=0. This overrides the kernel default,
21 to avoid conflicts and ambiguity as to whether or not bond0 should be
22 managed by systemd-networkd or not. This resolves multiple issues
23 with bond0 properties not being applied, when bond0 is configured
24 with systemd-networkd. Distributors may choose to not package this,
25 however in that case users will be prevented from correctly managing
26 bond0 interface using systemd-networkd.
582faeb4 27
ef5a8cb1 28 * systemd-analyze gained new verbs "get-log-level" and "get-log-target"
21723f53
ZJS
29 which print the logging level and target of the system manager. They
30 complement the existing "set-log-level" and "set-log-target" verbs
31 used to change those values.
ef5a8cb1 32
fccf5419
LP
33 * journald.conf gained a new boolean setting ReadKMsg= which defaults
34 to on. If turned off kernel log messages will not be read by
21723f53
ZJS
35 systemd-journald or included in the logs. It also gained a new
36 setting LineMax= for configuring the maximum line length in
37 STDOUT/STDERR log streams. The new default for this value is 48K, up
38 from the previous hardcoded 2048.
fccf5419 39
21723f53
ZJS
40 * A new unit setting RuntimeDirectoryPreserve= has been added, which
41 allows more detailed control of what to do with a runtime directory
42 configured with RuntimeDirectory= (i.e. a directory below /run or
43 $XDG_RUNTIME_DIR) after a unit is stopped.
fccf5419
LP
44
45 * The RuntimeDirectory= setting for units gained support for creating
46 deeper subdirectories below /run or $XDG_RUNTIME_DIR, instead of just
47 one top-level directory.
48
49 * Units gained new options StateDirectory=, CacheDirectory=,
50 LogsDirectory= and ConfigurationDirectory= which are closely related
51 to RuntimeDirectory= but manage per-service directories below
21723f53 52 /var/lib, /var/cache, /var/log and /etc. By making use of them it is
fccf5419
LP
53 possible to write unit files which when activated automatically gain
54 properly owned service specific directories in these locations, thus
55 making unit files self-contained and increasing compatibility with
56 stateless systems and factory reset where /etc or /var are
57 unpopulated at boot. Matching these new settings there's also
58 StateDirectoryMode=, CacheDirectoryMode=, LogsDirectoryMode=,
59 ConfigurationDirectoryMode= for configuring the access mode of these
75dfbbac
LP
60 directories. These settings are particularly useful in combination
61 with DynamicUser=yes as they provide secure, properly-owned,
62 writable, and stateful locations for storage, excluded from the
63 sandbox that such services live in otherwise.
fccf5419
LP
64
65 * Automake support has been removed from this release. systemd is now
66 Meson-only.
67
68 * systemd-journald will now aggressively cache client metadata during
69 runtime, speeding up log write performance under pressure. This comes
70 at a small price though: as much of the metadata is read
71 asynchronously from /proc/ (and isn't implicitly attached to log
72 datagrams by the kernel, like UID/GID/PID/SELinux are) this means the
73 metadata stored alongside a log entry might be slightly
74 out-of-date. Previously it could only be slightly newer than the log
75 message. The time window is small however, and given that the kernel
76 is unlikely to be improved anytime soon in this regard, this appears
77 acceptable to us.
78
79 * nss-myhostname/systemd-resolved will now by default synthesize an
80 A/AAAA resource record for the "_gateway" hostname, pointing to the
81 current default IP gateway. Previously it did that for the "gateway"
82 name, hampering adoption, as some distributions wanted to leave that
83 host name open for local use. The old behaviour may still be
84 requested at build time.
85
86 * systemd-networkd's [Address] section in .network files gained a new
87 Scope= setting for configuring the IP address scope. The [Network]
88 section gained a new boolean setting ConfigureWithoutCarrier= that
89 tells systemd-networkd to ignore link sensing when configuring the
90 device. The [DHCP] section gained a new Anonymize= boolean option for
91 turning on a number of options suggested in RFC 7844. A new
92 [RoutingPolicyRule] section has been added for configuring the IP
93 routing policy. The [Route] section has gained support for a new
94 Type= setting which permits configuring
95 blackhole/unreachable/prohibit routes.
96
97 * The [VRF] section in .netdev files gained a new Table= setting for
98 configuring the routing table to use. The [Tunnel] section gained a
99 new Independent= boolean field for configuring tunnels independent of
100 an underlying network interface. The [Bridge] section gained a new
101 GroupForwardMask= option for configuration of propagation of link
102 local frames between bridge ports.
103
104 * The WakeOnLan= setting in .link files gained support for a number of
105 new modes. A new TCP6SegmentationOffload= setting has been added for
106 configuring TCP/IPv6 hardware segmentation offload.
107
108 * The IPv6 RA sender implementation may now optionally send out RDNSS
21723f53 109 and RDNSSL records to supply DNS configuration to peers.
fccf5419
LP
110
111 * systemd-nspawn gained support for a new --system-call-filter= command
21723f53
ZJS
112 line option for adding and removing entries in the default system
113 call filter it applies. Moreover systemd-nspawn has been changed to
fccf5419
LP
114 implement a system call whitelist instead of a blacklist.
115
116 * systemd-run gained support for a new --pipe command line option. If
117 used the STDIN/STDOUT/STDERR file descriptors passed to systemd-run
118 are directly passed on to the activated transient service
21723f53
ZJS
119 executable. This allows invoking arbitrary processes as systemd
120 services (for example to take benefit of dependency management,
121 accounting management, resource management or log management that is
122 done automatically for services) — while still allowing them to be
fccf5419
LP
123 integrated in a classic UNIX shell pipeline.
124
125 * When a service sends RELOAD=1 via sd_notify() and reload propagation
126 using ReloadPropagationTo= is configured, a reload is now propagated
127 to configured units. (Previously this was only done on explicitly
128 requested reloads, using "systemctl reload" or an equivalent
129 command.)
130
131 * For each service unit a restart counter is now kept: it is increased
132 each time the service is restarted due to Restart=, and may be
133 queried using "systemctl show -p NRestarts …".
134
44898c53
LP
135 * New system call filter groups @aio, @sync, @chown, @setuid, @memlock,
136 @signal and @timer have been added, for usage with SystemCallFilter=
fccf5419
LP
137 in unit files and the new --system-call-filter= command line option
138 of systemd-nspawn (see above).
139
140 * ExecStart= lines in unit files gained two new modifiers: when a
141 command line is prefixed with "!" the command will be executed as
142 configured, except for the credentials applied by
143 setuid()/setgid()/setgroups(). It is very similar to the pre-existing
144 "+", but does still apply namespacing options unlike "+". There's
145 also "!!" now, which is mostly identical, but becomes a NOP on
146 systems that support ambient capabilities. This is useful to write
147 unit files that work with ambient capabilities where possible but
148 automatically fall back to traditional privilege dropping mechanisms
149 on systems where this is not supported.
150
151 * ListenNetlink= settings in socket units now support RDMA netlink
152 sockets.
153
154 * A new unit file setting LockPersonality= has been added which permits
155 locking down the chosen execution domain ("personality") of a service
156 during runtime.
157
158 * A new special target "getty-pre.target" has been added, which is
159 ordered before all text logins, and may be used to order services
21723f53 160 before textual logins acquire access to the console.
fccf5419
LP
161
162 * systemd will now attempt to load the virtio-rng.ko kernel module very
163 early on if a VM environment supporting this is detected. This should
164 improve entropy during early boot in virtualized environments.
165
166 * A _netdev option is now supported in /etc/crypttab that operates in a
167 similar way as the same option in /etc/fstab: it permits configuring
21723f53
ZJS
168 encrypted devices that need to be ordered after the network is up.
169 Following this logic, two new special targets
fccf5419 170 remote-cryptsetup-pre.target and remote-cryptsetup.target have been
21723f53
ZJS
171 added that are to cryptsetup.target what remote-fs.target and
172 remote-fs-pre.target are to local-fs.target.
fccf5419
LP
173
174 * Service units gained a new UnsetEnvironment= setting which permits
21723f53
ZJS
175 unsetting specific environment variables for services that are
176 normally passed to it (for example in order to mask out locale
fccf5419
LP
177 settings for specific services that can't deal with it).
178
179 * Units acquired a new boolean option IPAccounting=. When turned on, IP
180 traffic accounting (packet count as well as byte count) is done for
181 the service, and shown as part of "systemctl status" or "systemd-run
182 --wait".
183
184 * Service units acquired two new options IPAddressAllow= and
185 IPAddressDeny=, taking a list of IPv4 or IPv6 addresses and masks,
186 for configuring a simple IP access control list for all sockets of
187 the unit. These options are available also on .slice and .socket
188 units, permitting flexible access list configuration for individual
189 services as well as groups of services (as defined by a slice unit),
190 including system-wide. Note that IP ACLs configured this way are
191 enforced on every single IPv4 and IPv6 socket created by any process
192 of the service unit, and apply to ingress as well as egress traffic.
193
21723f53 194 * If CPUAccounting= or IPAccounting= is turned on for a unit a new
608f70e6 195 structured log message is generated each time the unit is stopped,
fccf5419
LP
196 containing information about the consumed resources of this
197 invocation.
198
199 * A new setting KeyringMode= has been added to unit files, which may be
200 used to control how the kernel keyring is set up for executed
201 processes.
202
e06fafb2
LP
203 * "systemctl poweroff", "systemctl reboot", "systemctl halt",
204 "systemctl kexec" and "systemctl exit" are now always asynchronous in
205 behaviour (that is: these commands return immediately after the
21723f53
ZJS
206 operation was enqueued instead of waiting for the operation to
207 complete). Previously, "systemctl poweroff" and "systemctl reboot"
e06fafb2
LP
208 were asynchronous on systems using systemd-logind (i.e. almost
209 always, and like they were on sysvinit), and the other three commands
210 were unconditionally synchronous. With this release this is cleaned
211 up, and callers will see the same asynchronous behaviour on all
212 systems for all five operations.
213
214 * systemd-logind gained new Halt() and CanHalt() bus calls for halting
215 the system.
216
fccf5419
LP
217 * .timer units now accept calendar specifications in other timezones
218 than UTC or the local timezone.
219
f6e64b78 220 * The tmpfiles snippet var.conf has been changed to create
21723f53
ZJS
221 /var/log/btmp with access mode 0660 instead of 0600. It was owned by
222 the "utmp" group already, and it appears to be generally understood
223 that members of "utmp" can modify/flush the utmp/wtmp/lastlog/btmp
224 databases. Previously this was implemented correctly for all these
225 databases excepts btmp, which has been opened up like this now
226 too. Note that while the other databases are world-readable
227 (i.e. 0644), btmp is not and remains more restrictive.
f6e64b78 228
d55b0463
LP
229 * The systemd-resolve tool gained a new --reset-server-features
230 switch. When invoked like this systemd-resolved will forget
231 everything it learnt about the features supported by the configured
232 upstream DNS servers, and restarts the feature probing logic on the
cf84484a
LP
233 next resolver look-up for them at the highest feature level
234 again.
235
236 * The status dump systemd-resolved sends to the logs upon receiving
237 SIGUSR1 now also includes information about all DNS servers it is
238 configured to use, and the features levels it probed for them.
d55b0463 239
fccf5419
LP
240 Contributions from: Abdó Roig-Maranges, Alan Jenkins, Alexander
241 Kuleshov, Andreas Rammhold, Andrew Jeddeloh, Andrew Soutar, Ansgar
76451c1d
LP
242 Burchardt, Beniamino Galvani, Benjamin Berg, Benjamin Robin, Charles
243 Huber, Christian Hesse, Daniel Berrange, Daniel Kahn Gillmor, Daniel
244 Mack, Daniel Rusek, Daniel Șerbănescu, Davide Cavalca, Dimitri John
245 Ledkov, Diogo Pereira, Djalal Harouni, Dmitriy Geels, Dmitry Torokhov,
246 ettavolt, Evgeny Vereshchagin, Fabio Kung, Felipe Sateler, Franck Bui,
247 Hans de Goede, Harald Hoyer, Insun Pyo, Ivan Kurnosov, Ivan Shapovalov,
248 Jakub Wilk, Jan Synacek, Jason Gunthorpe, Jeremy Bicha, Jérémy Rosen,
249 John Lin, jonasBoss, Jonathan Lebon, Jonathan Teh, Jon Ringle, Jörg
250 Thalheim, Jouke Witteveen, juga0, Justin Capella, Justin Michaud,
251 Kai-Heng Feng, Lennart Poettering, Lion Yang, Luca Bruno, Lucas
252 Werkmeister, Lukáš Nykrýn, Marcel Hollerbach, Marcus Lundblad, Martin
253 Pitt, Michael Biebl, Michael Grzeschik, Michal Sekletar, Mike Gilbert,
254 Neil Brown, Nicolas Iooss, Patrik Flykt, pEJipE, Piotr Drąg, Russell
255 Stuart, S. Fan, Shengyao Xue, Stefan Pietsch, Susant Sahani, Tejun Heo,
256 Thomas Miller, Thomas Sailer, Tobias Hunger, Tomasz Pala, Tom
257 Gundersen, Tommi Rantala, Topi Miettinen, Torstein Husebø, userwithuid,
258 Vasilis Liaskovitis, Vito Caputo, WaLyong Cho, William Douglas, Xiang
259 Fan, Yu Watanabe, Zbigniew Jędrzejewski-Szmek
fccf5419 260
c1719d8b 261 — Berlin, 2017-10-06
fccf5419 262
4b4da299
LP
263CHANGES WITH 234:
264
265 * Meson is now supported as build system in addition to Automake. It is
266 our plan to remove Automake in one of our next releases, so that
267 Meson becomes our exclusive build system. Hence, please start using
268 the Meson build system in your downstream packaging. There's plenty
269 of documentation around how to use Meson, the extremely brief
270 summary:
271
272 ./autogen.sh && ./configure && make && sudo make install
273
274 becomes:
275
276 meson build && ninja -C build && sudo ninja -C build install
277
278 * Unit files gained support for a new JobRunningTimeoutUSec= setting,
279 which permits configuring a timeout on the time a job is
280 running. This is particularly useful for setting timeouts on jobs for
281 .device units.
282
283 * Unit files gained two new options ConditionUser= and ConditionGroup=
284 for conditionalizing units based on the identity of the user/group
285 running a systemd user instance.
286
287 * systemd-networkd now understands a new FlowLabel= setting in the
288 [VXLAN] section of .network files, as well as a Priority= in
289 [Bridge], GVRP= + MVRP= + LooseBinding= + ReorderHeader= in [VLAN]
290 and GatewayOnlink= + IPv6Preference= + Protocol= in [Route]. It also
291 gained support for configuration of GENEVE links, and IPv6 address
292 labels. The [Network] section gained the new IPv6ProxyNDP= setting.
293
9f09a95a 294 * .link files now understand a new Port= setting.
4b4da299
LP
295
296 * systemd-networkd's DHCP support gained support for DHCP option 119
297 (domain search list).
298
299 * systemd-networkd gained support for serving IPv6 address ranges using
300 the Router Advertisment protocol. The new .network configuration
301 section [IPv6Prefix] may be used to configure the ranges to
302 serve. This is implemented based on a new, minimal, native server
303 implementation of RA.
304
305 * journalctl's --output= switch gained support for a new parameter
306 "short-iso-precise" for a mode where timestamps are shown as precise
307 ISO date values.
308
309 * systemd-udevd's "net_id" builtin may now generate stable network
310 interface names from IBM PowerVM VIO devices as well as ACPI platform
311 devices.
312
313 * MulticastDNS support in systemd-resolved may now be explicitly
314 enabled/disabled using the new MulticastDNS= configuration file
315 option.
316
317 * systemd-resolved may now optionally use libidn2 instead of the libidn
7f7ab228
ZJS
318 for processing internationalized domain names. Support for libidn2
319 should be considered experimental and should not be enabled by
320 default yet.
4b4da299
LP
321
322 * "machinectl pull-tar" and related call may now do verification of
323 downloaded images using SUSE-style .sha256 checksum files in addition
324 to the already existing support for validating using Ubuntu-style
325 SHA256SUMS files.
326
327 * sd-bus gained support for a new sd_bus_message_appendv() call which
328 is va_list equivalent of sd_bus_message_append().
329
330 * sd-boot gained support for validating images using SHIM/MOK.
331
332 * The SMACK code learnt support for "onlycap".
333
334 * systemd-mount --umount is now much smarter in figuring out how to
335 properly unmount a device given its mount or device path.
5486a31d
ZJS
336
337 * The code to call libnss_dns as a fallback from libnss_resolve when
338 the communication with systemd-resolved fails was removed. This
339 fallback was redundant and interfered with the [!UNAVAIL=return]
340 suffix. See nss-resolve(8) for the recommended configuration.
341
9f09a95a
ZJS
342 * systemd-logind may now be restarted without losing state. It stores
343 the file descriptors for devices it manages in the system manager
38d93385 344 using the FDSTORE= mechanism. Please note that further changes in
9f09a95a
ZJS
345 other components may be required to make use of this (for example
346 Xorg has code to listen for stops of systemd-logind and terminate
347 itself when logind is stopped or restarted, in order to avoid using
348 stale file descriptors for graphical devices, which is now
349 counterproductive and must be reverted in order for restarts of
350 systemd-logind to be safe. See
351 https://cgit.freedesktop.org/xorg/xserver/commit/?id=dc48bd653c7e101.)
352
9d8813b3
YW
353 * All kernel install plugins are called with the environment variable
354 KERNEL_INSTALL_MACHINE_ID which is set to the machine ID given by
355 /etc/machine-id. If the file is missing or empty, the variable is
356 empty and BOOT_DIR_ABS is the path of a temporary directory which is
38d93385 357 removed after all the plugins exit. So, if KERNEL_INSTALL_MACHINE_ID
9d8813b3
YW
358 is empty, all plugins should not put anything in BOOT_DIR_ABS.
359
184d2c15 360 Contributions from: Adrian Heine né Lang, Aggelos Avgerinos, Alexander
ac172e52
LP
361 Kurtz, Alexandros Frantzis, Alexey Brodkin, Alex Lu, Amir Pakdel, Amir
362 Yalon, Anchor Cat, Anthony Parsons, Bastien Nocera, Benjamin Gilbert,
363 Benjamin Robin, Boucman, Charles Plessy, Chris Chiu, Chris Lamb,
364 Christian Brauner, Christian Hesse, Colin Walters, Daniel Drake,
184d2c15
LP
365 Danielle Church, Daniel Molkentin, Daniel Rusek, Daniel Wang, Davide
366 Cavalca, David Herrmann, David Michael, Dax Kelson, Dimitri John
367 Ledkov, Djalal Harouni, Dušan Kazik, Elias Probst, Evgeny Vereshchagin,
368 Federico Di Pierro, Felipe Sateler, Felix Zhang, Franck Bui, Gary
ac172e52
LP
369 Tierney, George McCollister, Giedrius Statkevičius, Hans de Goede,
370 hecke, Hendrik Westerberg, Hristo Venev, Ian Wienand, Insun Pyo, Ivan
371 Shapovalov, James Cowgill, James Hemsing, Janne Heß, Jan Synacek, Jason
372 Reeder, João Paulo Rechi Vita, John Paul Adrian Glaubitz, Jörg
373 Thalheim, Josef Andersson, Josef Gajdusek, Julian Mehne, Kai Krakow,
374 Krzysztof Jackiewicz, Lars Karlitski, Lennart Poettering, Lluís Gili,
375 Lucas Werkmeister, Lukáš Nykrýn, Łukasz Stelmach, Mantas Mikulėnas,
376 Marcin Bachry, Marcus Cooper, Mark Stosberg, Martin Pitt, Matija Skala,
377 Matt Clarkson, Matthew Garrett, Matthias Greiner, Matthijs van Duin,
378 Max Resch, Michael Biebl, Michal Koutný, Michal Sekletar, Michal
379 Soltys, Michal Suchanek, Mike Gilbert, Nate Clark, Nathaniel R. Lewis,
380 Neil Brown, Nikolai Kondrashov, Pascal S. de Kloe, Pat Riehecky, Patrik
381 Flykt, Paul Kocialkowski, Peter Hutterer, Philip Withnall, Piotr
382 Szydełko, Rafael Fontenelle, Ray Strode, Richard Maw, Roelf Wichertjes,
383 Ronny Chevalier, Sarang S. Dalal, Sjoerd Simons, slodki, Stefan
384 Schweter, Susant Sahani, Ted Wood, Thomas Blume, Thomas Haller, Thomas
184d2c15
LP
385 H. P. Andersen, Timothée Ravier, Tobias Jungel, Tobias Stoeckmann, Tom
386 Gundersen, Tom Yan, Torstein Husebø, Umut Tezduyar Lindskog,
ac172e52
LP
387 userwithuid, Vito Caputo, Waldemar Brodkorb, WaLyong Cho, Yu, Li-Yu,
388 Yusuke Nojima, Yu Watanabe, Zbigniew Jędrzejewski-Szmek, Дамјан
389 Георгиевски
4b4da299 390
ac172e52 391 — Berlin, 2017-07-12
4b4da299 392
a2b53448 393CHANGES WITH 233:
d08ee7cb 394
23eb30b3
ZJS
395 * The "hybrid" control group mode has been modified to improve
396 compatibility with "legacy" cgroups-v1 setups. Specifically, the
397 "hybrid" setup of /sys/fs/cgroup is now pretty much identical to
398 "legacy" (including /sys/fs/cgroup/systemd as "name=systemd" named
399 cgroups-v1 hierarchy), the only externally visible change being that
400 the cgroups-v2 hierarchy is also mounted, to
401 /sys/fs/cgroup/unified. This should provide a large degree of
402 compatibility with "legacy" cgroups-v1, while taking benefit of the
403 better management capabilities of cgroups-v2.
404
405 * The default control group setup mode may be selected both a boot-time
406 via a set of kernel command line parameters (specifically:
407 systemd.unified_cgroup_hierarchy= and
408 systemd.legacy_systemd_cgroup_controller=), as well as a compile-time
409 default selected on the configure command line
410 (--with-default-hierarchy=). The upstream default is "hybrid"
411 (i.e. the cgroups-v1 + cgroups-v2 mixture discussed above) now, but
412 this will change in a future systemd version to be "unified" (pure
413 cgroups-v2 mode). The third option for the compile time option is
414 "legacy", to enter pure cgroups-v1 mode. We recommend downstream
415 distributions to default to "hybrid" mode for release distributions,
416 starting with v233. We recommend "unified" for development
417 distributions (specifically: distributions such as Fedora's rawhide)
418 as that's where things are headed in the long run. Use "legacy" for
419 greatest stability and compatibility only.
420
421 * Note one current limitation of "unified" and "hybrid" control group
422 setup modes: the kernel currently does not permit the systemd --user
423 instance (i.e. unprivileged code) to migrate processes between two
424 disconnected cgroup subtrees, even if both are managed and owned by
425 the user. This effectively means "systemd-run --user --scope" doesn't
426 work when invoked from outside of any "systemd --user" service or
427 scope. Specifically, it is not supported from session scopes. We are
428 working on fixing this in a future systemd version. (See #3388 for
429 further details about this.)
430
fb7c4eff
MG
431 * DBus policy files are now installed into /usr rather than /etc. Make
432 sure your system has dbus >= 1.9.18 running before upgrading to this
433 version, or override the install path with --with-dbuspolicydir= .
434
23eb30b3
ZJS
435 * All python scripts shipped with systemd (specifically: the various
436 tests written in Python) now require Python 3.
437
d60c5270 438 * systemd unit tests can now run standalone (without the source or
4dfe64f8
ZJS
439 build directories), and can be installed into /usr/lib/systemd/tests/
440 with 'make install-tests'.
441
23eb30b3
ZJS
442 * Note that from this version on, CONFIG_CRYPTO_USER_API_HASH,
443 CONFIG_CRYPTO_HMAC and CONFIG_CRYPTO_SHA256 need to be enabled in the
444 kernel.
445
446 * Support for the %c, %r, %R specifiers in unit files has been
447 removed. Specifiers are not supposed to be dependent on configuration
448 in the unit file itself (so that they resolve the same regardless
449 where used in the unit files), but these specifiers were influenced
450 by the Slice= option.
451
5cfc0a84
LP
452 * The shell invoked by debug-shell.service now defaults to /bin/sh in
453 all cases. If distributions want to use a different shell for this
454 purpose (for example Fedora's /sbin/sushell) they need to specify
455 this explicitly at configure time using --with-debug-shell=.
456
2bcc3309
FB
457 * The confirmation spawn prompt has been reworked to offer the
458 following choices:
459
b0eb2944 460 (c)ontinue, proceed without asking anymore
dd6f9ac0 461 (D)ump, show the state of the unit
2bcc3309 462 (f)ail, don't execute the command and pretend it failed
d172b175 463 (h)elp
eedf223a 464 (i)nfo, show a short summary of the unit
56fde33a 465 (j)obs, show jobs that are in progress
2bcc3309
FB
466 (s)kip, don't execute the command and pretend it succeeded
467 (y)es, execute the command
468
469 The 'n' choice for the confirmation spawn prompt has been removed,
470 because its meaning was confusing.
471
d08ee7cb
LP
472 The prompt may now also be redirected to an alternative console by
473 specifying the console as parameter to systemd.confirm_spawn=.
474
8e458bfe
JW
475 * Services of Type=notify require a READY=1 notification to be sent
476 during startup. If no such message is sent, the service now fails,
477 even if the main process exited with a successful exit code.
478
85266f9b
LP
479 * Services that fail to start up correctly now always have their
480 ExecStopPost= commands executed. Previously, they'd enter "failed"
481 state directly, without executing these commands.
482
baf32786
MP
483 * The option MulticastDNS= of network configuration files has acquired
484 an actual implementation. With MulticastDNS=yes a host can resolve
23eb30b3 485 names of remote hosts and reply to mDNS A and AAAA requests.
fa8b4499 486
631b676b
LP
487 * When units are about to be started an additional check is now done to
488 ensure that all dependencies of type BindsTo= (when used in
489 combination with After=) have been started.
490
d08ee7cb
LP
491 * systemd-analyze gained a new verb "syscall-filter" which shows which
492 system call groups are defined for the SystemCallFilter= unit file
23eb30b3 493 setting, and which system calls they contain.
d08ee7cb
LP
494
495 * A new system call filter group "@filesystem" has been added,
23eb30b3 496 consisting of various file system related system calls. Group
d08ee7cb 497 "@reboot" has been added, covering reboot, kexec and shutdown related
23eb30b3 498 calls. Finally, group "@swap" has been added covering swap
d08ee7cb
LP
499 configuration related calls.
500
501 * A new unit file option RestrictNamespaces= has been added that may be
502 used to restrict access to the various process namespace types the
503 Linux kernel provides. Specifically, it may be used to take away the
23eb30b3
ZJS
504 right for a service unit to create additional file system, network,
505 user, and other namespaces. This sandboxing option is particularly
506 relevant due to the high amount of recently discovered namespacing
507 related vulnerabilities in the kernel.
d08ee7cb 508
23eb30b3
ZJS
509 * systemd-udev's .link files gained support for a new AutoNegotiation=
510 setting for configuring Ethernet auto-negotiation.
d08ee7cb
LP
511
512 * systemd-networkd's .network files gained support for a new
513 ListenPort= setting in the [DHCP] section to explicitly configure the
514 UDP client port the DHCP client shall listen on.
515
23eb30b3
ZJS
516 * .network files gained a new Unmanaged= boolean setting for explicitly
517 excluding one or more interfaces from management by systemd-networkd.
518
519 * The systemd-networkd ProxyARP= option has been renamed to
520 IPV4ProxyARP=. Similarly, VXLAN-specific option ARPProxy= has been
521 renamed to ReduceARPProxy=. The old names continue to be available
522 for compatibility.
523
524 * systemd-networkd gained support for configuring IPv6 Proxy NDP
525 addresses via the new IPv6ProxyNDPAddress= .network file setting.
526
527 * systemd-networkd's bonding device support gained support for two new
528 configuration options ActiveSlave= and PrimarySlave=.
529
530 * The various options in the [Match] section of .network files gained
531 support for negative matching.
532
d08ee7cb
LP
533 * New systemd-specific mount options are now understood in /etc/fstab:
534
535 x-systemd.mount-timeout= may be used to configure the maximum
536 permitted runtime of the mount command.
537
538 x-systemd.device-bound may be set to bind a mount point to its
539 backing device unit, in order to automatically remove a mount point
540 if its backing device is unplugged. This option may also be
541 configured through the new SYSTEMD_MOUNT_DEVICE_BOUND udev property
542 on the block device, which is now automatically set for all CDROM
543 drives, so that mounted CDs are automatically unmounted when they are
544 removed from the drive.
545
23eb30b3
ZJS
546 x-systemd.after= and x-systemd.before= may be used to explicitly
547 order a mount after or before another unit or mount point.
d08ee7cb
LP
548
549 * Enqueued start jobs for device units are now automatically garbage
550 collected if there are no jobs waiting for them anymore.
551
23eb30b3
ZJS
552 * systemctl list-jobs gained two new switches: with --after, for every
553 queued job the jobs it's waiting for are shown; with --before the
554 jobs which it's blocking are shown.
d08ee7cb
LP
555
556 * systemd-nspawn gained support for ephemeral boots from disk images
557 (or in other words: --ephemeral and --image= may now be
558 combined). Moreover, ephemeral boots are now supported for normal
559 directories, even if the backing file system is not btrfs. Of course,
baf32786
MP
560 if the file system does not support file system snapshots or
561 reflinks, the initial copy operation will be relatively expensive, but
562 this should still be suitable for many use cases.
d08ee7cb
LP
563
564 * Calendar time specifications in .timer units now support
565 specifications relative to the end of a month by using "~" instead of
566 "-" as separator between month and day. For example, "*-02~03" means
23eb30b3 567 "the third last day in February". In addition a new syntax for
d08ee7cb
LP
568 repeated events has been added using the "/" character. For example,
569 "9..17/2:00" means "every two hours from 9am to 5pm".
570
571 * systemd-socket-proxyd gained a new parameter --connections-max= for
572 configuring the maximum number of concurrent connections.
573
23eb30b3
ZJS
574 * sd-id128 gained a new API for generating unique IDs for the host in a
575 way that does not leak the machine ID. Specifically,
d08ee7cb 576 sd_id128_get_machine_app_specific() derives an ID based on the
baf32786 577 machine ID a in well-defined, non-reversible, stable way. This is
d08ee7cb
LP
578 useful whenever an identifier for the host is needed but where the
579 identifier shall not be useful to identify the system beyond the
580 scope of the application itself. (Internally this uses HMAC-SHA256 as
581 keyed hash function using the machine ID as input.)
582
583 * NotifyAccess= gained a new supported value "exec". When set
584 notifications are accepted from all processes systemd itself invoked,
585 including all control processes.
586
587 * .nspawn files gained support for defining overlay mounts using the
588 Overlay= and OverlayReadOnly= options. Previously this functionality
589 was only available on the systemd-nspawn command line.
590
591 * systemd-nspawn's --bind= and --overlay= options gained support for
592 bind/overlay mounts whose source lies within the container tree by
593 prefixing the source path with "+".
594
595 * systemd-nspawn's --bind= and --overlay= options gained support for
596 automatically allocating a temporary source directory in /var/tmp
597 that is removed when the container dies. Specifically, if the source
598 directory is specified as empty string this mechanism is selected. An
599 example usage is --overlay=+/var::/var, which creates an overlay
600 mount based on the original /var contained in the image, overlayed
601 with a temporary directory in the host's /var/tmp. This way changes
602 to /var are automatically flushed when the container shuts down.
603
baf32786
MP
604 * systemd-nspawn --image= option does now permit raw file system block
605 devices (in addition to images containing partition tables, as
606 before).
d08ee7cb
LP
607
608 * The disk image dissection logic in systemd-nspawn gained support for
609 automatically setting up LUKS encrypted as well as Verity protected
610 partitions. When a container is booted from an encrypted image the
611 passphrase is queried at start-up time. When a container with Verity
612 data is started, the root hash is search in a ".roothash" file
613 accompanying the disk image (alternatively, pass the root hash via
614 the new --root-hash= command line option).
615
616 * A new tool /usr/lib/systemd/systemd-dissect has been added that may
617 be used to dissect disk images the same way as systemd-nspawn does
618 it, following the Bootable Partition Specification. It may even be
619 used to mount disk images with complex partition setups (including
620 LUKS and Verity partitions) to a local host directory, in order to
621 inspect them. This tool is not considered public API (yet), and is
622 thus not installed into /usr/bin. Please do not rely on its
3b31c466 623 existence, since it might go away or be changed in later systemd
d08ee7cb
LP
624 versions.
625
626 * A new generator "systemd-verity-generator" has been added, similar in
baf32786 627 style to "systemd-cryptsetup-generator", permitting automatic setup of
d08ee7cb
LP
628 Verity root partitions when systemd boots up. In order to make use of
629 this your partition setup should follow the Discoverable Partitions
630 Specification, and the GPT partition ID of the root file system
631 partition should be identical to the upper 128bit of the Verity root
632 hash. The GPT partition ID of the Verity partition protecting it
633 should be the lower 128bit of the Verity root hash. If the partition
634 image follows this model it is sufficient to specify a single
635 "roothash=" kernel command line argument to both configure which root
636 image and verity partition to use as well as the root hash for
637 it. Note that systemd-nspawn's Verity support follows the same
638 semantics, meaning that disk images with proper Verity data in place
639 may be booted in containers with systemd-nspawn as well as on
640 physical systems via the verity generator. Also note that the "mkosi"
641 tool available at https://github.com/systemd/mkosi has been updated
642 to generate Verity protected disk images following this scheme. In
643 fact, it has been updated to generate disk images that optionally
644 implement a complete UEFI SecureBoot trust chain, involving a signed
645 kernel and initrd image that incorporates such a root hash as well as
646 a Verity-enabled root partition.
647
d08ee7cb
LP
648 * The hardware database (hwdb) udev supports has been updated to carry
649 accelerometer quirks.
650
651 * All system services are now run with a fresh kernel keyring set up
652 for them. The invocation ID is stored by default in it, thus
653 providing a safe, non-overridable way to determine the invocation
654 ID of each service.
655
656 * Service unit files gained new BindPaths= and BindReadOnlyPaths=
657 options for bind mounting arbitrary paths in a service-specific
658 way. When these options are used, arbitrary host or service files and
659 directories may be mounted to arbitrary locations in the service's
660 view.
661
662 * Documentation has been added that lists all of systemd's low-level
663 environment variables:
664
665 https://github.com/systemd/systemd/blob/master/ENVIRONMENT.md
666
667 * sd-daemon gained a new API sd_is_socket_sockaddr() for determining
668 whether a specific socket file descriptor matches a specified socket
669 address.
670
671 * systemd-firstboot has been updated to check for the
672 systemd.firstboot= kernel command line option. It accepts a boolean
673 and when set to false the first boot questions are skipped.
674
d08ee7cb 675 * systemd-fstab-generator has been updated to check for the
23eb30b3
ZJS
676 systemd.volatile= kernel command line option, which either takes an
677 optional boolean parameter or the special value "state". If used the
678 system may be booted in a "volatile" boot mode. Specifically,
679 "systemd.volatile" is used, the root directory will be mounted as
d08ee7cb 680 tmpfs, and only /usr is mounted from the actual root file system. If
23eb30b3
ZJS
681 "systemd.volatile=state" is used, the root directory will be mounted
682 as usual, but /var is mounted as tmpfs. This concept provides similar
d08ee7cb
LP
683 functionality as systemd-nspawn's --volatile= option, but provides it
684 on physical boots. Use this option for implementing stateless
685 systems, or testing systems with all state and/or configuration reset
686 to the defaults. (Note though that many distributions are not
23eb30b3 687 prepared to boot up without a populated /etc or /var, though.)
d08ee7cb
LP
688
689 * systemd-gpt-auto-generator gained support for LUKS encrypted root
690 partitions. Previously it only supported LUKS encrypted partitions
691 for all other uses, except for the root partition itself.
692
693 * Socket units gained support for listening on AF_VSOCK sockets for
694 communication in virtualized QEMU environments.
695
696 * The "configure" script gained a new option --with-fallback-hostname=
697 for specifying the fallback hostname to use if none is configured in
698 /etc/hostname. For example, by specifying
699 --with-fallback-hostname=fedora it is possible to default to a
23eb30b3 700 hostname of "fedora" on pristine installations.
d08ee7cb
LP
701
702 * systemd-cgls gained support for a new --unit= switch for listing only
703 the control groups of a specific unit. Similar --user-unit= has been
704 added for listing only the control groups of a specific user unit.
705
706 * systemd-mount gained a new --umount switch for unmounting a mount or
707 automount point (and all mount/automount points below it).
708
709 * systemd will now refuse full configuration reloads (via systemctl
710 daemon-reload and related calls) unless at least 16MiB of free space
711 are available in /run. This is a safety precaution in order to ensure
712 that generators can safely operate after the reload completed.
713
714 * A new unit file option RootImage= has been added, which has a similar
715 effect as RootDirectory= but mounts the service's root directory from
716 a disk image instead of plain directory. This logic reuses the same
717 image dissection and mount logic that systemd-nspawn already uses,
718 and hence supports any disk images systemd-nspawn supports, including
719 those following the Discoverable Partition Specification, as well as
720 Verity enabled images. This option enables systemd to run system
721 services directly off disk images acting as resource bundles,
722 possibly even including full integrity data.
723
724 * A new MountAPIVFS= unit file option has been added, taking a boolean
baf32786 725 argument. If enabled /proc, /sys and /dev (collectively called the
d08ee7cb
LP
726 "API VFS") will be mounted for the service. This is only relevant if
727 RootDirectory= or RootImage= is used for the service, as these mounts
728 are of course in place in the host mount namespace anyway.
729
730 * systemd-nspawn gained support for a new --pivot-root= switch. If
731 specified the root directory within the container image is pivoted to
732 the specified mount point, while the original root disk is moved to a
733 different place. This option enables booting of ostree images
734 directly with systemd-nspawn.
735
d08ee7cb 736 * The systemd build scripts will no longer complain if the NTP server
23eb30b3 737 addresses are not changed from the defaults. Google now supports
d08ee7cb
LP
738 these NTP servers officially. We still recommend downstreams to
739 properly register an NTP pool with the NTP pool project though.
740
c1ec34d1 741 * coredumpctl gained a new "--reverse" option for printing the list
d08ee7cb
LP
742 of coredumps in reverse order.
743
23eb30b3
ZJS
744 * coredumpctl will now show additional information about truncated and
745 inaccessible coredumps, as well as coredumps that are still being
746 processed. It also gained a new --quiet switch for suppressing
747 additional informational message in its output.
748
749 * coredumpctl gained support for only showing coredumps newer and/or
750 older than specific timestamps, using the new --since= and --until=
751 options, reminiscent of journalctl's options by the same name.
752
d08ee7cb 753 * The systemd-coredump logic has been improved so that it may be reused
23eb30b3 754 to collect backtraces in non-compiled languages, for example in
d08ee7cb
LP
755 scripting languages such as Python.
756
757 * machinectl will now show the UID shift of local containers, if user
758 namespacing is enabled for them.
759
baf32786 760 * systemd will now optionally run "environment generator" binaries at
d08ee7cb
LP
761 configuration load time. They may be used to add environment
762 variables to the environment block passed to services invoked. One
baf32786 763 user environment generator is shipped by default that sets up
23eb30b3
ZJS
764 environment variables based on files dropped into /etc/environment.d
765 and ~/.config/environment.d/.
d08ee7cb 766
a2b53448
LP
767 * systemd-resolved now includes the new, recently published 2017 DNSSEC
768 root key (KSK).
769
a2b53448
LP
770 * hostnamed has been updated to report a new chassis type of
771 "convertible" to cover "foldable" laptops that can both act as a
772 tablet and as a laptop, such as various Lenovo Yoga devices.
773
d08ee7cb
LP
774 Contributions from: Adrián López, Alexander Galanin, Alexander
775 Kochetkov, Alexandros Frantzis, Andrey Ulanov, Antoine Eiche, Baruch
776 Siach, Bastien Nocera, Benjamin Robin, Björn, Brandon Philips, Cédric
777 Schieli, Charles (Chas) Williams, Christian Hesse, Daniele Medri,
778 Daniel Drake, Daniel Rusek, Daniel Wagner, Dan Streetman, Dave Reisner,
779 David Glasser, David Herrmann, David Michael, Djalal Harouni, Dmitry
780 Khlebnikov, Dmitry Rozhkov, Dongsu Park, Douglas Christman, Earnestly,
781 Emil Soleyman, Eric Cook, Evgeny Vereshchagin, Felipe Sateler, Fionn
782 Cleary, Florian Klink, Francesco Brozzu, Franck Bui, Gabriel Rauter,
a2b53448
LP
783 Gianluca Boiano, Giedrius Statkevičius, Graeme Lawes, Hans de Goede,
784 Harald Hoyer, Ian Kelling, Ivan Shapovalov, Jakub Wilk, Janne Heß, Jan
785 Synacek, Jason Reeder, Jonathan Boulle, Jörg Thalheim, Jouke Witteveen,
786 Karl Kraus, Kees Cook, Keith Busch, Kieran Colford, kilian-k, Lennart
787 Poettering, Lubomir Rintel, Lucas Werkmeister, Lukas Rusak, Maarten de
788 Vries, Maks Naumov, Mantas Mikulėnas, Marc-Andre Lureau, Marcin Bachry,
789 Mark Stosberg, Martin Ejdestig, Martin Pitt, Mauricio Faria de
790 Oliveira, micah, Michael Biebl, Michael Shields, Michal Schmidt, Michal
791 Sekletar, Michel Kraus, Mike Gilbert, Mikko Ylinen, Mirza Krak,
792 Namhyung Kim, nikolaof, peoronoob, Peter Hutterer, Peter Körner, Philip
793 Withnall, Piotr Drąg, Ray Strode, Reverend Homer, Rike-Benjamin
794 Schuppner, Robert Kreuzer, Ronny Chevalier, Ruslan Bilovol, sammynx,
795 Sergey Ptashnick, Sergiusz Urbaniak, Stefan Berger, Stefan Hajnoczi,
796 Stefan Schweter, Stuart McLaren, Susant Sahani, Sylvain Plantefève,
797 Taylor Smock, Tejun Heo, Thomas Blume, Thomas H. P. Andersen, Tibor
798 Nagy, Tobias Stoeckmann, Tom Gundersen, Torstein Husebø, Viktar
799 Vaŭčkievič, Viktor Mihajlovski, Vitaly Sulimov, Waldemar Brodkorb,
800 Walter Garcia-Fontes, Wim de With, Yassine Imounachen, Yi EungJun,
801 YunQiang Su, Yu Watanabe, Zbigniew Jędrzejewski-Szmek, Александр
802 Тихонов
803
804 — Berlin, 2017-03-01
d08ee7cb 805
54b24597 806CHANGES WITH 232:
76153ad4 807
05f426d2
LP
808 * udev now runs with MemoryDenyWriteExecute=, RestrictRealtime= and
809 RestrictAddressFamilies= enabled. These sandboxing options should
810 generally be compatible with the various external udev call-out
811 binaries we are aware of, however there may be exceptions, in
812 particular when exotic languages for these call-outs are used. In
813 this case, consider turning off these settings locally.
814
4ffe2479
ZJS
815 * The new RemoveIPC= option can be used to remove IPC objects owned by
816 the user or group of a service when that service exits.
817
6fa44114 818 * The new ProtectKernelModules= option can be used to disable explicit
4c37970d
LP
819 load and unload operations of kernel modules by a service. In
820 addition access to /usr/lib/modules is removed if this option is set.
6fa44114 821
4a77c53d
ZJS
822 * ProtectSystem= option gained a new value "strict", which causes the
823 whole file system tree with the exception of /dev, /proc, and /sys,
824 to be remounted read-only for a service.
825
e49e2c25 826 * The new ProtectKernelTunables= option can be used to disable
4a77c53d
ZJS
827 modification of configuration files in /sys and /proc by a service.
828 Various directories and files are remounted read-only, so access is
829 restricted even if the file permissions would allow it.
830
6fa44114 831 * The new ProtectControlGroups= option can be used to disable write
4a77c53d
ZJS
832 access by a service to /sys/fs/cgroup.
833
834 * Various systemd services have been hardened with
835 ProtectKernelTunables=yes, ProtectControlGroups=yes,
836 RestrictAddressFamilies=.
837
4ffe2479
ZJS
838 * Support for dynamically creating users for the lifetime of a service
839 has been added. If DynamicUser=yes is specified, user and group IDs
840 will be allocated from the range 61184..65519 for the lifetime of the
841 service. They can be resolved using the new nss-systemd.so NSS
842 module. The module must be enabled in /etc/nsswitch.conf. Services
843 started in this way have PrivateTmp= and RemoveIPC= enabled, so that
844 any resources allocated by the service will be cleaned up when the
4a77c53d
ZJS
845 service exits. They also have ProtectHome=read-only and
846 ProtectSystem=strict enabled, so they are not able to make any
847 permanent modifications to the system.
4ffe2479 848
171ae2cd 849 * The nss-systemd module also always resolves root and nobody, making
4ffe2479 850 it possible to have no /etc/passwd or /etc/group files in minimal
171ae2cd 851 container or chroot environments.
4ffe2479
ZJS
852
853 * Services may be started with their own user namespace using the new
171ae2cd
LP
854 boolean PrivateUsers= option. Only root, nobody, and the uid/gid
855 under which the service is running are mapped. All other users are
856 mapped to nobody.
4ffe2479
ZJS
857
858 * Support for the cgroup namespace has been added to systemd-nspawn. If
859 supported by kernel, the container system started by systemd-nspawn
860 will have its own view of the cgroup hierarchy. This new behaviour
861 can be disabled using $SYSTEMD_NSPAWN_USE_CGNS environment variable.
862
863 * The new MemorySwapMax= option can be used to limit the maximum swap
864 usage under the unified cgroup hierarchy.
865
866 * Support for the CPU controller in the unified cgroup hierarchy has
867 been added, via the CPUWeight=, CPUStartupWeight=, CPUAccounting=
868 options. This controller requires out-of-tree patches for the kernel
869 and the support is provisional.
870
171ae2cd
LP
871 * Mount and automount units may now be created transiently
872 (i.e. dynamically at runtime via the bus API, instead of requiring
873 unit files in the file system).
874
875 * systemd-mount is a new tool which may mount file systems – much like
876 mount(8), optionally pulling in additional dependencies through
877 transient .mount and .automount units. For example, this tool
878 automatically runs fsck on a backing block device before mounting,
879 and allows the automount logic to be used dynamically from the
880 command line for establishing mount points. This tool is particularly
881 useful when dealing with removable media, as it will ensure fsck is
882 run – if necessary – before the first access and that the file system
883 is quickly unmounted after each access by utilizing the automount
884 logic. This maximizes the chance that the file system on the
885 removable media stays in a clean state, and if it isn't in a clean
886 state is fixed automatically.
4ffe2479
ZJS
887
888 * LazyUnmount=yes option for mount units has been added to expose the
889 umount --lazy option. Similarly, ForceUnmount=yes exposes the --force
890 option.
891
892 * /efi will be used as the mount point of the EFI boot partition, if
893 the directory is present, and the mount point was not configured
894 through other means (e.g. fstab). If /efi directory does not exist,
895 /boot will be used as before. This makes it easier to automatically
896 mount the EFI partition on systems where /boot is used for something
897 else.
898
171ae2cd
LP
899 * When operating on GPT disk images for containers, systemd-nspawn will
900 now mount the ESP to /boot or /efi according to the same rules as PID
901 1 running on a host. This allows tools like "bootctl" to operate
902 correctly within such containers, in order to make container images
903 bootable on physical systems.
904
4a77c53d 905 * disk/by-id and disk/by-path symlinks are now created for NVMe drives.
4ffe2479
ZJS
906
907 * Two new user session targets have been added to support running
908 graphical sessions under the systemd --user instance:
909 graphical-session.target and graphical-session-pre.target. See
910 systemd.special(7) for a description of how those targets should be
911 used.
912
913 * The vconsole initialization code has been significantly reworked to
d4c08299 914 use KD_FONT_OP_GET/SET ioctls instead of KD_FONT_OP_COPY and better
4ffe2479
ZJS
915 support unicode keymaps. Font and keymap configuration will now be
916 copied to all allocated virtual consoles.
917
05ecf467 918 * FreeBSD's bhyve virtualization is now detected.
4ffe2479 919
d4c08299 920 * Information recorded in the journal for core dumps now includes the
4ffe2479
ZJS
921 contents of /proc/mountinfo and the command line of the process at
922 the top of the process hierarchy (which is usually the init process
923 of the container).
924
171ae2cd 925 * systemd-journal-gatewayd learned the --directory= option to serve
4ffe2479
ZJS
926 files from the specified location.
927
928 * journalctl --root=… can be used to peruse the journal in the
929 /var/log/ directories inside of a container tree. This is similar to
930 the existing --machine= option, but does not require the container to
931 be active.
932
933 * The hardware database has been extended to support
934 ID_INPUT_TRACKBALL, used in addition to ID_INPUT_MOUSE to identify
935 trackball devices.
936
937 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL hwdb property has been added to
938 specify the click rate for mice which include a horizontal wheel with
939 a click rate that is different than the one for the vertical wheel.
940
941 * systemd-run gained a new --wait option that makes service execution
171ae2cd
LP
942 synchronous. (Specifically, the command will not return until the
943 specified service binary exited.)
4ffe2479 944
171ae2cd 945 * systemctl gained a new --wait option that causes the start command to
4a77c53d
ZJS
946 wait until the units being started have terminated again.
947
171ae2cd 948 * A new journal output mode "short-full" has been added which displays
4ffe2479 949 timestamps with abbreviated English day names and adds a timezone
171ae2cd
LP
950 suffix. Those timestamps include more information than the default
951 "short" output mode, and can be passed directly to journalctl's
952 --since= and --until= options.
4ffe2479
ZJS
953
954 * /etc/resolv.conf will be bind-mounted into containers started by
955 systemd-nspawn, if possible, so any changes to resolv.conf contents
956 are automatically propagated to the container.
957
958 * The number of instances for socket-activated services originating
171ae2cd
LP
959 from a single IP address can be limited with
960 MaxConnectionsPerSource=, extending the existing setting of
961 MaxConnections=.
4ffe2479 962
4a77c53d
ZJS
963 * systemd-networkd gained support for vcan ("Virtual CAN") interface
964 configuration.
965
966 * .netdev and .network configuration can now be extended through
967 drop-ins.
968
4ffe2479
ZJS
969 * UDP Segmentation Offload, TCP Segmentation Offload, Generic
970 Segmentation Offload, Generic Receive Offload, Large Receive Offload
971 can be enabled and disabled using the new UDPSegmentationOffload=,
972 TCPSegmentationOffload=, GenericSegmentationOffload=,
973 GenericReceiveOffload=, LargeReceiveOffload= options in the
974 [Link] section of .link files.
975
171ae2cd
LP
976 * The Spanning Tree Protocol, Priority, Aging Time, and the Default
977 Port VLAN ID can be configured for bridge devices using the new STP=,
978 Priority=, AgeingTimeSec=, and DefaultPVID= settings in the [Bridge]
979 section of .netdev files.
4ffe2479 980
171ae2cd 981 * The route table to which routes received over DHCP or RA should be
4a77c53d
ZJS
982 added can be configured with the new RouteTable= option in the [DHCP]
983 and [IPv6AcceptRA] sections of .network files.
984
171ae2cd 985 * The Address Resolution Protocol can be disabled on links managed by
4ffe2479
ZJS
986 systemd-networkd using the ARP=no setting in the [Link] section of
987 .network files.
988
171ae2cd
LP
989 * New environment variables $SERVICE_RESULT, $EXIT_CODE and
990 $EXIT_STATUS are set for ExecStop= and ExecStopPost= commands, and
991 encode information about the result and exit codes of the current
992 service runtime cycle.
4ffe2479 993
4a77c53d 994 * systemd-sysctl will now configure kernel parameters in the order
1f4f4cf7 995 they occur in the configuration files. This matches what sysctl
4a77c53d
ZJS
996 has been traditionally doing.
997
998 * kernel-install "plugins" that are executed to perform various
999 tasks after a new kernel is added and before an old one is removed
1000 can now return a special value to terminate the procedure and
1001 prevent any later plugins from running.
1002
76153ad4 1003 * Journald's SplitMode=login setting has been deprecated. It has been
d4c08299 1004 removed from documentation, and its use is discouraged. In a future
76153ad4
ZJS
1005 release it will be completely removed, and made equivalent to current
1006 default of SplitMode=uid.
1007
4a77c53d
ZJS
1008 * Storage=both option setting in /etc/systemd/coredump.conf has been
1009 removed. With fast LZ4 compression storing the core dump twice is not
1010 useful.
1011
4ffe2479
ZJS
1012 * The --share-system systemd-nspawn option has been replaced with an
1013 (undocumented) variable $SYSTEMD_NSPAWN_SHARE_SYSTEM, but the use of
1014 this functionality is discouraged. In addition the variables
1015 $SYSTEMD_NSPAWN_SHARE_NS_IPC, $SYSTEMD_NSPAWN_SHARE_NS_PID,
1016 $SYSTEMD_NSPAWN_SHARE_NS_UTS may be used to control the unsharing of
1017 individual namespaces.
1018
171ae2cd
LP
1019 * "machinectl list" now shows the IP address of running containers in
1020 the output, as well as OS release information.
1021
1022 * "loginctl list" now shows the TTY of each session in the output.
1023
1024 * sd-bus gained new API calls sd_bus_track_set_recursive(),
1025 sd_bus_track_get_recursive(), sd_bus_track_count_name(),
1026 sd_bus_track_count_sender(). They permit usage of sd_bus_track peer
1027 tracking objects in a "recursive" mode, where a single client can be
1028 counted multiple times, if it takes multiple references.
1029
1030 * sd-bus gained new API calls sd_bus_set_exit_on_disconnect() and
1031 sd_bus_get_exit_on_disconnect(). They may be used to to make a
1032 process using sd-bus automatically exit if the bus connection is
1033 severed.
1034
1035 * Bus clients of the service manager may now "pin" loaded units into
1036 memory, by taking an explicit reference on them. This is useful to
1037 ensure the client can retrieve runtime data about the service even
1038 after the service completed execution. Taking such a reference is
1039 available only for privileged clients and should be helpful to watch
1040 running services in a race-free manner, and in particular collect
1041 information about exit statuses and results.
1042
4c37970d
LP
1043 * The nss-resolve module has been changed to strictly return UNAVAIL
1044 when communication via D-Bus with resolved failed, and NOTFOUND when
1045 a lookup completed but was negative. This means it is now possible to
1046 neatly configure fallbacks using nsswitch.conf result checking
1047 expressions. Taking benefit of this, the new recommended
1048 configuration line for the "hosts" entry in /etc/nsswitch.conf is:
1049
1050 hosts: files mymachines resolve [!UNAVAIL=return] dns myhostname
1051
1052 * A new setting CtrlAltDelBurstAction= has been added to
1053 /etc/systemd/system.conf which may be used to configure the precise
1054 behaviour if the user on the console presses Ctrl-Alt-Del more often
1055 than 7 times in 2s. Previously this would unconditionally result in
1056 an expedited, immediate reboot. With this new setting the precise
1057 operation may be configured in more detail, and also turned off
1058 entirely.
1059
1060 * In .netdev files two new settings RemoteChecksumTx= and
1061 RemoteChecksumRx= are now understood that permit configuring the
1062 remote checksumming logic for VXLAN networks.
1063
1064 * The service manager learnt a new "invocation ID" concept for invoked
1065 services. Each runtime cycle of a service will get a new invocation
1066 ID (a 128bit random UUID) assigned that identifies the current
1067 run of the service uniquely and globally. A new invocation ID
1068 is generated each time a service starts up. The journal will store
1069 the invocation ID of a service along with any logged messages, thus
1070 making the invocation ID useful for matching the online runtime of a
1071 service with the offline log data it generated in a safe way without
1072 relying on synchronized timestamps. In many ways this new service
1073 invocation ID concept is similar to the kernel's boot ID concept that
1074 uniquely and globally identifies the runtime of each boot. The
1075 invocation ID of a service is passed to the service itself via an
1076 environment variable ($INVOCATION_ID). A new bus call
1077 GetUnitByInvocationID() has been added that is similar to GetUnit()
1078 but instead of retrieving the bus path for a unit by its name
1079 retrieves it by its invocation ID. The returned path is valid only as
1080 long as the passed invocation ID is current.
1081
1082 * systemd-resolved gained a new "DNSStubListener" setting in
1083 resolved.conf. It either takes a boolean value or the special values
1084 "udp" and "tcp", and configures whether to enable the stub DNS
1085 listener on 127.0.0.53:53.
1086
1087 * IP addresses configured via networkd may now carry additional
1088 configuration settings supported by the kernel. New options include:
1089 HomeAddress=, DuplicateAddressDetection=, ManageTemporaryAddress=,
1090 PrefixRoute=, AutoJoin=.
1091
1092 * The PAM configuration fragment file for "user@.service" shipped with
1093 systemd (i.e. the --user instance of systemd) has been stripped to
1094 the minimum necessary to make the system boot. Previously, it
1095 contained Fedora-specific stanzas that did not apply to other
1096 distributions. It is expected that downstream distributions add
1097 additional configuration lines, matching their needs to this file,
1098 using it only as rough template of what systemd itself needs. Note
1099 that this reduced fragment does not even include an invocation of
1100 pam_limits which most distributions probably want to add, even though
1101 systemd itself does not need it. (There's also the new build time
1102 option --with-pamconfdir=no to disable installation of the PAM
1103 fragment entirely.)
1104
1105 * If PrivateDevices=yes is set for a service the CAP_SYS_RAWIO
1106 capability is now also dropped from its set (in addition to
1107 CAP_SYS_MKNOD as before).
1108
1109 * In service unit files it is now possible to connect a specific named
1110 file descriptor with stdin/stdout/stdout of an executed service. The
1111 name may be specified in matching .socket units using the
1112 FileDescriptorName= setting.
1113
1114 * A number of journal settings may now be configured on the kernel
1115 command line. Specifically, the following options are now understood:
1116 systemd.journald.max_level_console=,
1117 systemd.journald.max_level_store=,
1118 systemd.journald.max_level_syslog=, systemd.journald.max_level_kmsg=,
1119 systemd.journald.max_level_wall=.
1120
1121 * "systemctl is-enabled --full" will now show by which symlinks a unit
1122 file is enabled in the unit dependency tree.
1123
b4eed568
LP
1124 * Support for VeraCrypt encrypted partitions has been added to the
1125 "cryptsetup" logic and /etc/crypttab.
1126
1127 * systemd-detect-virt gained support for a new --private-users switch
1128 that checks whether the invoking processes are running inside a user
1129 namespace. Similar, a new special value "private-users" for the
1130 existing ConditionVirtualization= setting has been added, permitting
1131 skipping of specific units in user namespace environments.
1132
07393b6e
LP
1133 Contributions from: Alban Crequy, Alexander Kuleshov, Alfie John,
1134 Andreas Henriksson, Andrew Jeddeloh, Balázs Úr, Bart Rulon, Benjamin
1135 Richter, Ben Gamari, Ben Harris, Brian J. Murrell, Christian Brauner,
1136 Christian Rebischke, Clinton Roy, Colin Walters, Cristian Rodríguez,
1137 Daniel Hahler, Daniel Mack, Daniel Maixner, Daniel Rusek, Dan Dedrick,
1138 Davide Cavalca, David Herrmann, David Michael, Dennis Wassenberg,
1139 Djalal Harouni, Dongsu Park, Douglas Christman, Elias Probst, Eric
1140 Cook, Erik Karlsson, Evgeny Vereshchagin, Felipe Sateler, Felix Zhang,
1141 Franck Bui, George Hilliard, Giuseppe Scrivano, HATAYAMA Daisuke,
1142 Heikki Kemppainen, Hendrik Brueckner, hi117, Ismo Puustinen, Ivan
1143 Shapovalov, Jakub Filak, Jakub Wilk, Jan Synacek, Jason Kölker,
1144 Jean-Sébastien Bour, Jiří Pírko, Jonathan Boulle, Jorge Niedbalski,
1145 Keith Busch, kristbaum, Kyle Russell, Lans Zhang, Lennart Poettering,
1146 Leonardo Brondani Schenkel, Lucas Werkmeister, Luca Bruno, Lukáš
1147 Nykrýn, Maciek Borzecki, Mantas Mikulėnas, Marc-Antoine Perennou,
1148 Marcel Holtmann, Marcos Mello, Martin Ejdestig, Martin Pitt, Matej
1149 Habrnal, Maxime de Roucy, Michael Biebl, Michael Chapman, Michael Hoy,
1150 Michael Olbrich, Michael Pope, Michal Sekletar, Michal Soltys, Mike
1151 Gilbert, Nick Owens, Patrik Flykt, Paweł Szewczyk, Peter Hutterer,
1152 Piotr Drąg, Reid Price, Richard W.M. Jones, Roman Stingler, Ronny
1153 Chevalier, Seraphime Kirkovski, Stefan Schweter, Steve Muir, Susant
1154 Sahani, Tejun Heo, Thomas Blume, Thomas H. P. Andersen, Tiago Levit,
1155 Tobias Jungel, Tomáš Janoušek, Topi Miettinen, Torstein Husebø, Umut
1156 Tezduyar Lindskog, Vito Caputo, WaLyong Cho, Wilhelm Schuster, Yann
1157 E. MORIN, Yi EungJun, Yuki Inoguchi, Yu Watanabe, Zbigniew
1158 Jędrzejewski-Szmek, Zeal Jagannatha
1159
54b24597 1160 — Santa Fe, 2016-11-03
07393b6e 1161
5cd118ba
MP
1162CHANGES WITH 231:
1163
fcd30826
LP
1164 * In service units the various ExecXYZ= settings have been extended
1165 with an additional special character as first argument of the
43eb109a 1166 assigned value: if the character '+' is used the specified command
fcd30826
LP
1167 line it will be run with full privileges, regardless of User=,
1168 Group=, CapabilityBoundingSet= and similar options. The effect is
1169 similar to the existing PermissionsStartOnly= option, but allows
1170 configuration of this concept for each executed command line
1171 independently.
1172
1173 * Services may now alter the service watchdog timeout at runtime by
1174 sending a WATCHDOG_USEC= message via sd_notify().
1175
1176 * MemoryLimit= and related unit settings now optionally take percentage
1177 specifications. The percentage is taken relative to the amount of
1178 physical memory in the system (or in case of containers, the assigned
1179 amount of memory). This allows scaling service resources neatly with
771de3f5 1180 the amount of RAM available on the system. Similarly, systemd-logind's
fcd30826
LP
1181 RuntimeDirectorySize= option now also optionally takes percentage
1182 values.
1183
1184 * In similar fashion TasksMax= takes percentage values now, too. The
1185 value is taken relative to the configured maximum number of processes
1186 on the system. The per-service task maximum has been changed to 15%
1187 using this functionality. (Effectively this is an increase of 512 →
1188 4915 for service units, given the kernel's default pid_max setting.)
1189
1190 * Calendar time specifications in .timer units now understand a ".."
1191 syntax for time ranges. Example: "4..7:10" may now be used for
1192 defining a timer that is triggered at 4:10am, 5:10am, 6:10am and
1193 7:10am every day.
1194
1195 * The InaccessableDirectories=, ReadOnlyDirectories= and
1196 ReadWriteDirectories= unit file settings have been renamed to
1197 InaccessablePaths=, ReadOnlyPaths= and ReadWritePaths= and may now be
1198 applied to all kinds of file nodes, and not just directories, with
1199 the exception of symlinks. Specifically these settings may now be
1200 used on block and character device nodes, UNIX sockets and FIFOS as
1201 well as regular files. The old names of these settings remain
1202 available for compatibility.
1203
1204 * systemd will now log about all service processes it kills forcibly
1205 (using SIGKILL) because they remained after the clean shutdown phase
1206 of the service completed. This should help identifying services that
1207 shut down uncleanly. Moreover if KillUserProcesses= is enabled in
1208 systemd-logind's configuration a similar log message is generated for
1209 processes killed at the end of each session due to this setting.
1210
1211 * systemd will now set the $JOURNAL_STREAM environment variable for all
1212 services whose stdout/stderr are connected to the Journal (which
1213 effectively means by default: all services). The variable contains
1214 the device and inode number of the file descriptor used for
1215 stdout/stderr. This may be used by invoked programs to detect whether
1216 their stdout/stderr is connected to the Journal, in which case they
1217 can switch over to direct Journal communication, thus being able to
1218 pass extended, structured metadata along with their log messages. As
1219 one example, this is now used by glib's logging primitives.
1220
1221 * When using systemd's default tmp.mount unit for /tmp, the mount point
1222 will now be established with the "nosuid" and "nodev" options. This
1223 avoids privilege escalation attacks that put traps and exploits into
1224 /tmp. However, this might cause problems if you e. g. put container
5cd118ba
MP
1225 images or overlays into /tmp; if you need this, override tmp.mount's
1226 "Options=" with a drop-in, or mount /tmp from /etc/fstab with your
1227 desired options.
1228
fcd30826
LP
1229 * systemd now supports the "memory" cgroup controller also on
1230 cgroupsv2.
1231
1232 * The systemd-cgtop tool now optionally takes a control group path as
1233 command line argument. If specified, the control group list shown is
1234 limited to subgroups of that group.
1235
1236 * The SystemCallFilter= unit file setting gained support for
1237 pre-defined, named system call filter sets. For example
1238 SystemCallFilter=@clock is now an effective way to make all clock
771de3f5 1239 changing-related system calls unavailable to a service. A number of
fcd30826
LP
1240 similar pre-defined groups are defined. Writing system call filters
1241 for system services is simplified substantially with this new
1242 concept. Accordingly, all of systemd's own, long-running services now
1243 enable system call filtering based on this, by default.
1244
1245 * A new service setting MemoryDenyWriteExecute= has been added, taking
1246 a boolean value. If turned on, a service may no longer create memory
1247 mappings that are writable and executable at the same time. This
1248 enhances security for services where this is enabled as it becomes
1249 harder to dynamically write and then execute memory in exploited
1250 service processes. This option has been enabled for all of systemd's
1251 own long-running services.
1252
1253 * A new RestrictRealtime= service setting has been added, taking a
1254 boolean argument. If set the service's processes may no longer
1255 acquire realtime scheduling. This improves security as realtime
1256 scheduling may otherwise be used to easily freeze the system.
1257
1258 * systemd-nspawn gained a new switch --notify-ready= taking a boolean
1259 value. This may be used for requesting that the system manager inside
1260 of the container reports start-up completion to nspawn which then
1261 propagates this notification further to the service manager
1262 supervising nspawn itself. A related option NotifyReady= in .nspawn
1263 files has been added too. This functionality allows ordering of the
1264 start-up of multiple containers using the usual systemd ordering
1265 primitives.
1266
1267 * machinectl gained a new command "stop" that is an alias for
1268 "terminate".
1269
1270 * systemd-resolved gained support for contacting DNS servers on
1271 link-local IPv6 addresses.
1272
1273 * If systemd-resolved receives the SIGUSR2 signal it will now flush all
1274 its caches. A method call for requesting the same operation has been
1275 added to the bus API too, and is made available via "systemd-resolve
1276 --flush-caches".
1277
771de3f5 1278 * systemd-resolve gained a new --status switch. If passed a brief
fcd30826
LP
1279 summary of the used DNS configuration with per-interface information
1280 is shown.
1281
1282 * resolved.conf gained a new Cache= boolean option, defaulting to
1283 on. If turned off local DNS caching is disabled. This comes with a
1284 performance penalty in particular when DNSSEC is enabled. Note that
771de3f5 1285 resolved disables its internal caching implicitly anyway, when the
fcd30826
LP
1286 configured DNS server is on a host-local IP address such as ::1 or
1287 127.0.0.1, thus automatically avoiding double local caching.
1288
1289 * systemd-resolved now listens on the local IP address 127.0.0.53:53
1290 for DNS requests. This improves compatibility with local programs
1291 that do not use the libc NSS or systemd-resolved's bus APIs for name
1292 resolution. This minimal DNS service is only available to local
1293 programs and does not implement the full DNS protocol, but enough to
1294 cover local DNS clients. A new, static resolv.conf file, listing just
1295 this DNS server is now shipped in /usr/lib/systemd/resolv.conf. It is
1296 now recommended to make /etc/resolv.conf a symlink to this file in
1297 order to route all DNS lookups to systemd-resolved, regardless if
1298 done via NSS, the bus API or raw DNS packets. Note that this local
1299 DNS service is not as fully featured as the libc NSS or
1300 systemd-resolved's bus APIs. For example, as unicast DNS cannot be
1301 used to deliver link-local address information (as this implies
1302 sending a local interface index along), LLMNR/mDNS support via this
1303 interface is severely restricted. It is thus strongly recommended for
1304 all applications to use the libc NSS API or native systemd-resolved
1305 bus API instead.
1306
1307 * systemd-networkd's bridge support learned a new setting
1308 VLANFiltering= for controlling VLAN filtering. Moreover a new section
1309 in .network files has been added for configuring VLAN bridging in
1310 more detail: VLAN=, EgressUntagged=, PVID= in [BridgeVLAN].
1311
1312 * systemd-networkd's IPv6 Router Advertisement code now makes use of
1313 the DNSSL and RDNSS options. This means IPv6 DNS configuration may
1314 now be acquired without relying on DHCPv6. Two new options
1315 UseDomains= and UseDNS= have been added to configure this behaviour.
1316
1317 * systemd-networkd's IPv6AcceptRouterAdvertisements= option has been
1318 renamed IPv6AcceptRA=, without altering its behaviour. The old
1319 setting name remains available for compatibility reasons.
1320
1321 * The systemd-networkd VTI/VTI6 tunneling support gained new options
1322 Key=, InputKey= and OutputKey=.
1323
1324 * systemd-networkd gained support for VRF ("Virtual Routing Function")
1325 interface configuration.
1326
1327 * "systemctl edit" may now be used to create new unit files by
1328 specifying the --force switch.
1329
1330 * sd-event gained a new function sd_event_get_iteration() for
1331 requesting the current iteration counter of the event loop. It starts
1332 at zero and is increased by one with each event loop iteration.
1333
43a569a1
ZJS
1334 * A new rpm macro %systemd_ordering is provided by the macros.systemd
1335 file. It can be used in lieu of %systemd_requires in packages which
1336 don't use any systemd functionality and are intended to be installed
1337 in minimal containers without systemd present. This macro provides
ce830873 1338 ordering dependencies to ensure that if the package is installed in
43a569a1
ZJS
1339 the same rpm transaction as systemd, systemd will be installed before
1340 the scriptlets for the package are executed, allowing unit presets
1341 to be handled.
1342
1343 New macros %_systemdgeneratordir and %_systemdusergeneratordir have
1344 been added to simplify packaging of generators.
1345
1346 * The os-release file gained VERSION_CODENAME field for the
1347 distribution nickname (e.g. VERSION_CODENAME=woody).
1348
1349 * New udev property UDEV_DISABLE_PERSISTENT_STORAGE_RULES_FLAG=1
1350 can be set to disable parsing of metadata and the creation
1351 of persistent symlinks for that device.
1352
0f1da52b
LP
1353 * The v230 change to tag framebuffer devices (/dev/fb*) with "uaccess"
1354 to make them available to logged-in users has been reverted.
1355
1356 * Much of the common code of the various systemd components is now
1357 built into an internal shared library libsystemd-shared-231.so
1358 (incorporating the systemd version number in the name, to be updated
1359 with future releases) that the components link to. This should
1360 decrease systemd footprint both in memory during runtime and on
1361 disk. Note that the shared library is not for public use, and is
1362 neither API not ABI stable, but is likely to change with every new
1ecbf32f
ZJS
1363 released update. Packagers need to make sure that binaries
1364 linking to libsystemd-shared.so are updated in step with the
1365 library.
43a569a1 1366
fcd30826
LP
1367 * Configuration for "mkosi" is now part of the systemd
1368 repository. mkosi is a tool to easily build legacy-free OS images,
1369 and is available on github: https://github.com/systemd/mkosi. If
1370 "mkosi" is invoked in the build tree a new raw OS image is generated
1371 incorporating the systemd sources currently being worked on and a
1372 clean, fresh distribution installation. The generated OS image may be
ce830873 1373 booted up with "systemd-nspawn -b -i", qemu-kvm or on any physical
fcd30826
LP
1374 UEFI PC. This functionality is particularly useful to easily test
1375 local changes made to systemd in a pristine, defined environment. See
1376 HACKING for details.
ceeddf79 1377
4ffe2479
ZJS
1378 * configure learned the --with-support-url= option to specify the
1379 distribution's bugtracker.
1380
38b383d9
LP
1381 Contributions from: Alban Crequy, Alessandro Puccetti, Alessio Igor
1382 Bogani, Alexander Kuleshov, Alexander Kurtz, Alex Gaynor, Andika
1383 Triwidada, Andreas Pokorny, Andreas Rammhold, Andrew Jeddeloh, Ansgar
1384 Burchardt, Atrotors, Benjamin Drung, Brian Boylston, Christian Hesse,
1385 Christian Rebischke, Daniele Medri, Daniel Mack, Dave Reisner, David
1386 Herrmann, David Michael, Djalal Harouni, Douglas Christman, Elias
1387 Probst, Evgeny Vereshchagin, Federico Mena Quintero, Felipe Sateler,
1388 Franck Bui, Harald Hoyer, Ian Lee, Ivan Shapovalov, Jakub Wilk, Jan
1389 Janssen, Jean-Sébastien Bour, John Paul Adrian Glaubitz, Jouke
1390 Witteveen, Kai Ruhnau, kpengboy, Kyle Walker, Lénaïc Huard, Lennart
1391 Poettering, Luca Bruno, Lukas Lösche, Lukáš Nykrýn, mahkoh, Marcel
1392 Holtmann, Martin Pitt, Marty Plummer, Matthieu Codron, Max Prokhorov,
1393 Michael Biebl, Michael Karcher, Michael Olbrich, Michał Bartoszkiewicz,
1394 Michal Sekletar, Michal Soltys, Minkyung, Muhammet Kara, mulkieran,
1395 Otto Wallenius, Pablo Lezaeta Reyes, Peter Hutterer, Ronny Chevalier,
1396 Rusty Bird, Stef Walter, Susant Sahani, Tejun Heo, Thomas Blume, Thomas
771de3f5
ZJS
1397 Haller, Thomas H. P. Andersen, Tobias Jungel, Tom Gundersen, Tom Yan,
1398 Topi Miettinen, Torstein Husebø, Valentin Vidić, Viktar Vaŭčkievič,
38b383d9 1399 WaLyong Cho, Weng Xuetian, Werner Fink, Zbigniew Jędrzejewski-Szmek
5cd118ba 1400
38b383d9 1401 — Berlin, 2016-07-25
5cd118ba 1402
46e40fab 1403CHANGES WITH 230:
7f6e8043 1404
61ecb465
LP
1405 * DNSSEC is now turned on by default in systemd-resolved (in
1406 "allow-downgrade" mode), but may be turned off during compile time by
1407 passing "--with-default-dnssec=no" to "configure" (and of course,
1408 during runtime with DNSSEC= in resolved.conf). We recommend
1409 downstreams to leave this on at least during development cycles and
1410 report any issues with the DNSSEC logic upstream. We are very
1411 interested in collecting feedback about the DNSSEC validator and its
1412 limitations in the wild. Note however, that DNSSEC support is
1413 probably nothing downstreams should turn on in stable distros just
96d49011 1414 yet, as it might create incompatibilities with a few DNS servers and
61ecb465
LP
1415 networks. We tried hard to make sure we downgrade to non-DNSSEC mode
1416 automatically whenever we detect such incompatible setups, but there
1417 might be systems we do not cover yet. Hence: please help us testing
1418 the DNSSEC code, leave this on where you can, report back, but then
1419 again don't consider turning this on in your stable, LTS or
e40a326c
LP
1420 production release just yet. (Note that you have to enable
1421 nss-resolve in /etc/nsswitch.conf, to actually use systemd-resolved
1422 and its DNSSEC mode for host name resolution from local
1423 applications.)
61ecb465 1424
96515dbf 1425 * systemd-resolve conveniently resolves DANE records with the --tlsa
e40a326c 1426 option and OPENPGPKEY records with the --openpgp option. It also
e75690c3 1427 supports dumping raw DNS record data via the new --raw= switch.
96515dbf 1428
97e5530c
ZJS
1429 * systemd-logind will now by default terminate user processes that are
1430 part of the user session scope unit (session-XX.scope) when the user
977f2bea 1431 logs out. This behavior is controlled by the KillUserProcesses=
e40a326c
LP
1432 setting in logind.conf, and the previous default of "no" is now
1433 changed to "yes". This means that user sessions will be properly
1434 cleaned up after, but additional steps are necessary to allow
1435 intentionally long-running processes to survive logout.
97e5530c
ZJS
1436
1437 While the user is logged in at least once, user@.service is running,
1438 and any service that should survive the end of any individual login
1439 session can be started at a user service or scope using systemd-run.
e40a326c 1440 systemd-run(1) man page has been extended with an example which shows
8951eaec 1441 how to run screen in a scope unit underneath user@.service. The same
e40a326c 1442 command works for tmux.
97e5530c
ZJS
1443
1444 After the user logs out of all sessions, user@.service will be
1445 terminated too, by default, unless the user has "lingering" enabled.
1446 To effectively allow users to run long-term tasks even if they are
152199f2
ZJS
1447 logged out, lingering must be enabled for them. See loginctl(1) for
1448 details. The default polkit policy was modified to allow users to
1449 set lingering for themselves without authentication.
7f6e8043 1450
95365a57 1451 Previous defaults can be restored at compile time by the
e40a326c 1452 --without-kill-user-processes option to "configure".
7f6e8043 1453
e75690c3
ZJS
1454 * systemd-logind gained new configuration settings SessionsMax= and
1455 InhibitorsMax=, both with a default of 8192. It will not register new
188d3082 1456 user sessions or inhibitors above this limit.
e75690c3
ZJS
1457
1458 * systemd-logind will now reload configuration on SIGHUP.
1459
96515dbf 1460 * The unified cgroup hierarchy added in Linux 4.5 is now supported.
e40a326c 1461 Use systemd.unified_cgroup_hierarchy=1 on the kernel command line to
25b0e6cb
LP
1462 enable. Also, support for the "io" cgroup controller in the unified
1463 hierarchy has been added, so that the "memory", "pids" and "io" are
1464 now the controllers that are supported on the unified hierarchy.
e40a326c 1465
96515dbf
ZJS
1466 WARNING: it is not possible to use previous systemd versions with
1467 systemd.unified_cgroup_hierarchy=1 and the new kernel. Therefore it
1468 is necessary to also update systemd in the initramfs if using the
e40a326c 1469 unified hierarchy. An updated SELinux policy is also required.
96515dbf 1470
e40a326c
LP
1471 * LLDP support has been extended, and both passive (receive-only) and
1472 active (sender) modes are supported. Passive mode ("routers-only") is
8951eaec
ZJS
1473 enabled by default in systemd-networkd. Active LLDP mode is enabled
1474 by default for containers on the internal network. The "networkctl
e40a326c
LP
1475 lldp" command may be used to list information gathered. "networkctl
1476 status" will also show basic LLDP information on connected peers now.
96515dbf 1477
e40a326c
LP
1478 * The IAID and DUID unique identifier sent in DHCP requests may now be
1479 configured for the system and each .network file managed by
e75690c3
ZJS
1480 systemd-networkd using the DUIDType=, DUIDRawData=, IAID= options.
1481
1482 * systemd-networkd gained support for configuring proxy ARP support for
1483 each interface, via the ProxyArp= setting in .network files. It also
1484 gained support for configuring the multicast querier feature of
1485 bridge devices, via the new MulticastQuerier= setting in .netdev
1486 files. Similarly, snooping on the IGMP traffic can be controlled
1487 via the new setting MulticastSnooping=.
1488
1489 A new setting PreferredLifetime= has been added for addresses
1490 configured in .network file to configure the lifetime intended for an
1491 address.
1492
1493 The systemd-networkd DHCP server gained the option EmitRouter=, which
1494 defaults to yes, to configure whether the DHCP Option 3 (Router)
1495 should be emitted.
96515dbf 1496
e40a326c 1497 * The testing tool /usr/lib/systemd/systemd-activate is renamed to
97e5530c
ZJS
1498 systemd-socket-activate and installed into /usr/bin. It is now fully
1499 supported.
1500
e40a326c
LP
1501 * systemd-journald now uses separate threads to flush changes to disk
1502 when closing journal files, thus reducing impact of slow disk I/O on
1503 logging performance.
96515dbf 1504
e75690c3
ZJS
1505 * The sd-journal API gained two new calls
1506 sd_journal_open_directory_fd() and sd_journal_open_files_fd() which
1507 can be used to open journal files using file descriptors instead of
1508 file or directory paths. sd_journal_open_container() has been
1509 deprecated, sd_journal_open_directory_fd() should be used instead
1510 with the flag SD_JOURNAL_OS_ROOT.
1511
1512 * journalctl learned a new output mode "-o short-unix" that outputs log
1513 lines prefixed by their UNIX time (i.e. seconds since Jan 1st, 1970
1514 UTC). It also gained support for a new --no-hostname setting to
1515 suppress the hostname column in the family of "short" output modes.
1516
e40a326c
LP
1517 * systemd-ask-password now optionally skips printing of the password to
1518 stdout with --no-output which can be useful in scripts.
96515dbf
ZJS
1519
1520 * Framebuffer devices (/dev/fb*) and 3D printers and scanners
1521 (devices tagged with ID_MAKER_TOOL) are now tagged with
1522 "uaccess" and are available to logged in users.
1523
e75690c3 1524 * The DeviceAllow= unit setting now supports specifiers (with "%").
e40a326c
LP
1525
1526 * "systemctl show" gained a new --value switch, which allows print a
1527 only the contents of a specific unit property, without also printing
8951eaec
ZJS
1528 the property's name. Similar support was added to "show*" verbs
1529 of loginctl and machinectl that output "key=value" lists.
e40a326c 1530
e75690c3
ZJS
1531 * A new unit type "generated" was added for files dynamically generated
1532 by generator tools. Similarly, a new unit type "transient" is used
1533 for unit files created using the runtime API. "systemctl enable" will
1534 refuse to operate on such files.
1535
e40a326c
LP
1536 * A new command "systemctl revert" has been added that may be used to
1537 revert to the vendor version of a unit file, in case local changes
1538 have been made by adding drop-ins or overriding the unit file.
1539
1540 * "machinectl clean" gained a new verb to automatically remove all or
1541 just hidden container images.
1542
e40a326c
LP
1543 * systemd-tmpfiles gained support for a new line type "e" for emptying
1544 directories, if they exist, without creating them if they don't.
1545
e40a326c
LP
1546 * systemd-nspawn gained support for automatically patching the UID/GIDs
1547 of the owners and the ACLs of all files and directories in a
1548 container tree to match the UID/GID user namespacing range selected
1549 for the container invocation. This mode is enabled via the new
24597ee0
ZJS
1550 --private-users-chown switch. It also gained support for
1551 automatically choosing a free, previously unused UID/GID range when
1552 starting a container, via the new --private-users=pick setting (which
1553 implies --private-users-chown). Together, these options for the first
1554 time make user namespacing for nspawn containers fully automatic and
1555 thus deployable. The systemd-nspawn@.service template unit file has
1556 been changed to use this functionality by default.
e40a326c 1557
25b0e6cb
LP
1558 * systemd-nspawn gained a new --network-zone= switch, that allows
1559 creating ad-hoc virtual Ethernet links between multiple containers,
1560 that only exist as long as at least one container referencing them is
1561 running. This allows easy connecting of multiple containers with a
1562 common link that implements an Ethernet broadcast domain. Each of
1563 these network "zones" may be named relatively freely by the user, and
1564 may be referenced by any number of containers, but each container may
1565 only reference one of these "zones". On the lower level, this is
1566 implemented by an automatically managed bridge network interface for
1567 each zone, that is created when the first container referencing its
1568 zone is created and removed when the last one referencing its zone
1569 terminates.
1570
e40a326c 1571 * The default start timeout may now be configured on the kernel command
8951eaec
ZJS
1572 line via systemd.default_timeout_start_sec=. It was already
1573 configurable via the DefaultTimeoutStartSec= option in
1574 /etc/systemd/system.conf.
e40a326c 1575
030bd839 1576 * Socket units gained a new TriggerLimitIntervalSec= and
e40a326c
LP
1577 TriggerLimitBurst= setting to configure a limit on the activation
1578 rate of the socket unit.
1579
1580 * The LimitNICE= setting now optionally takes normal UNIX nice values
1581 in addition to the raw integer limit value. If the specified
1582 parameter is prefixed with "+" or "-" and is in the range -20..19 the
1583 value is understood as UNIX nice value. If not prefixed like this it
1584 is understood as raw RLIMIT_NICE limit.
1585
999a43f8
LP
1586 * Note that the effect of the PrivateDevices= unit file setting changed
1587 slightly with this release: the per-device /dev file system will be
1588 mounted read-only from this version on, and will have "noexec"
188d3082 1589 set. This (minor) change of behavior might cause some (exceptional)
999a43f8
LP
1590 legacy software to break, when PrivateDevices=yes is set for its
1591 service. Please leave PrivateDevices= off if you run into problems
1592 with this.
1593
e75690c3
ZJS
1594 * systemd-bootchart has been split out to a separate repository:
1595 https://github.com/systemd/systemd-bootchart
1596
1597 * systemd-bus-proxyd has been removed, as kdbus is unlikely to still be
1598 merged into the kernel in its current form.
1599
1600 * The compatibility libraries libsystemd-daemon.so,
1601 libsystemd-journal.so, libsystemd-id128.so, and libsystemd-login.so
1602 which have been deprecated since systemd-209 have been removed along
1603 with the corresponding pkg-config files. All symbols provided by
1604 those libraries are provided by libsystemd.so.
1605
1606 * The Capabilities= unit file setting has been removed (it is ignored
1607 for backwards compatibility). AmbientCapabilities= and
1608 CapabilityBoundingSet= should be used instead.
1609
4f9020fa
DR
1610 * A new special target has been added, initrd-root-device.target,
1611 which creates a synchronization point for dependencies of the root
1612 device in early userspace. Initramfs builders must ensure that this
1613 target is now included in early userspace.
1614
e75690c3
ZJS
1615 Contributions from: Alban Crequy, Alexander Kuleshov, Alexander Shopov,
1616 Alex Crawford, Andre Klärner, Andrew Eikum, Beniamino Galvani, Benjamin
1617 Robin, Biao Lu, Bjørnar Ness, Calvin Owens, Christian Hesse, Clemens
1618 Gruber, Colin Guthrie, Daniel Drake, Daniele Medri, Daniel J Walsh,
1619 Daniel Mack, Dan Nicholson, daurnimator, David Herrmann, David
1620 R. Hedges, Elias Probst, Emmanuel Gil Peyrot, EMOziko, Evgeny
1621 Vereshchagin, Federico, Felipe Sateler, Filipe Brandenburger, Franck
1622 Bui, frankheckenbach, gdamjan, Georgia Brikis, Harald Hoyer, Hendrik
77ff6022
CG
1623 Brueckner, Hristo Venev, Iago López Galeiras, Ian Kelling, Ismo
1624 Puustinen, Jakub Wilk, Jaroslav Škarvada, Jeff Huang, Joel Holdsworth,
e75690c3
ZJS
1625 John Paul Adrian Glaubitz, Jonathan Boulle, kayrus, Klearchos
1626 Chaloulos, Kyle Russell, Lars Uebernickel, Lennart Poettering, Lubomir
1627 Rintel, Lukáš Nykrýn, Mantas Mikulėnas, Marcel Holtmann, Martin Pitt,
77ff6022
CG
1628 Michael Biebl, michaelolbrich, Michał Bartoszkiewicz, Michal Koutný,
1629 Michal Sekletar, Mike Frysinger, Mike Gilbert, Mingcong Bai, Ming Lin,
1630 mulkieran, muzena, Nalin Dahyabhai, Naohiro Aota, Nathan McSween,
e75690c3
ZJS
1631 Nicolas Braud-Santoni, Patrik Flykt, Peter Hutterer, Peter Mattern,
1632 Petr Lautrbach, Petros Angelatos, Piotr Drąg, Rabin Vincent, Robert
1633 Węcławski, Ronny Chevalier, Samuel Tardieu, Stefan Saraev, Stefan
1634 Schallenberg aka nafets227, Steven Siloti, Susant Sahani, Sylvain
1635 Plantefève, Taylor Smock, Tejun Heo, Thomas Blume, Thomas Haller,
1636 Thomas H. P. Andersen, Tobias Klauser, Tom Gundersen, topimiettinen,
46e40fab
ZJS
1637 Torstein Husebø, Umut Tezduyar Lindskog, Uwe Kleine-König, Victor Toso,
1638 Vinay Kulkarni, Vito Caputo, Vittorio G (VittGam), Vladimir Panteleev,
1639 Wieland Hoffmann, Wouter Verhelst, Yu Watanabe, Zbigniew
1640 Jędrzejewski-Szmek
e40a326c 1641
46e40fab 1642 — Fairfax, 2016-05-21
96515dbf 1643
61f32bff
MP
1644CHANGES WITH 229:
1645
d5f8b295
LP
1646 * The systemd-resolved DNS resolver service has gained a substantial
1647 set of new features, most prominently it may now act as a DNSSEC
1648 validating stub resolver. DNSSEC mode is currently turned off by
ed5f8840
ZJS
1649 default, but is expected to be turned on by default in one of the
1650 next releases. For now, we invite everybody to test the DNSSEC logic
1651 by setting DNSSEC=allow-downgrade in /etc/systemd/resolved.conf. The
1652 service also gained a full set of D-Bus interfaces, including calls
1653 to configure DNS and DNSSEC settings per link (for use by external
1654 network management software). systemd-resolved and systemd-networkd
1655 now distinguish between "search" and "routing" domains. The former
1656 are used to qualify single-label names, the latter are used purely
1657 for routing lookups within certain domains to specific links.
1658 resolved now also synthesizes RRs for all entries from /etc/hosts.
d5f8b295
LP
1659
1660 * The systemd-resolve tool (which is a client utility for
ed5f8840
ZJS
1661 systemd-resolved) has been improved considerably and is now fully
1662 supported and documented. Hence it has moved from /usr/lib/systemd to
1663 /usr/bin.
d5f8b295
LP
1664
1665 * /dev/disk/by-path/ symlink support has been (re-)added for virtio
1666 devices.
1667
a7c723c0
LP
1668 * The coredump collection logic has been reworked: when a coredump is
1669 collected it is now written to disk, compressed and processed
1670 (including stacktrace extraction) from a new instantiated service
1671 systemd-coredump@.service, instead of directly from the
1672 /proc/sys/kernel/core_pattern hook we provide. This is beneficial as
1673 processing large coredumps can take up a substantial amount of
1674 resources and time, and this previously happened entirely outside of
1675 systemd's service supervision. With the new logic the core_pattern
1676 hook only does minimal metadata collection before passing off control
1677 to the new instantiated service, which is configured with a time
1678 limit, a nice level and other settings to minimize negative impact on
1679 the rest of the system. Also note that the new logic will honour the
1680 RLIMIT_CORE setting of the crashed process, which now allows users
1681 and processes to turn off coredumping for their processes by setting
1682 this limit.
1683
1684 * The RLIMIT_CORE resource limit now defaults to "unlimited" for PID 1
1685 and all forked processes by default. Previously, PID 1 would leave
1686 the setting at "0" for all processes, as set by the kernel. Note that
1687 the resource limit traditionally has no effect on the generated
1688 coredumps on the system if the /proc/sys/kernel/core_pattern hook
1689 logic is used. Since the limit is now honoured (see above) its
1690 default has been changed so that the coredumping logic is enabled by
1691 default for all processes, while allowing specific opt-out.
1692
1693 * When the stacktrace is extracted from processes of system users, this
1694 is now done as "systemd-coredump" user, in order to sandbox this
1695 potentially security sensitive parsing operation. (Note that when
1696 processing coredumps of normal users this is done under the user ID
1697 of process that crashed, as before.) Packagers should take notice
1698 that it is now necessary to create the "systemd-coredump" system user
1699 and group at package installation time.
1700
d5f8b295
LP
1701 * The systemd-activate socket activation testing tool gained support
1702 for SOCK_DGRAM and SOCK_SEQPACKET sockets using the new --datagram
1703 and --seqpacket switches. It also has been extended to support both
1704 new-style and inetd-style file descriptor passing. Use the new
1705 --inetd switch to request inetd-style file descriptor passing.
1706
8968aea0
MP
1707 * Most systemd tools now honor a new $SYSTEMD_COLORS environment
1708 variable, which takes a boolean value. If set to false, ANSI color
d5f8b295
LP
1709 output is disabled in the tools even when run on a terminal that
1710 supports it.
1711
1712 * The VXLAN support in networkd now supports two new settings
1713 DestinationPort= and PortRange=.
1714
1715 * A new systemd.machine_id= kernel command line switch has been added,
1716 that may be used to set the machine ID in /etc/machine-id if it is
1717 not initialized yet. This command line option has no effect if the
1718 file is already initialized.
1719
1720 * systemd-nspawn gained a new --as-pid2 switch that invokes any
1721 specified command line as PID 2 rather than PID 1 in the
ed5f8840
ZJS
1722 container. In this mode PID 1 is a minimal stub init process that
1723 implements the special POSIX and Linux semantics of PID 1 regarding
1724 signal and child process management. Note that this stub init process
1725 is implemented in nspawn itself and requires no support from the
1726 container image. This new logic is useful to support running
1727 arbitrary commands in the container, as normal processes are
d5f8b295
LP
1728 generally not prepared to run as PID 1.
1729
1730 * systemd-nspawn gained a new --chdir= switch for setting the current
1731 working directory for the process started in the container.
1732
ed5f8840
ZJS
1733 * "journalctl /dev/sda" will now output all kernel log messages for
1734 specified device from the current boot, in addition to all devices
1735 that are parents of it. This should make log output about devices
1736 pretty useful, as long as kernel drivers attach enough metadata to
1737 the log messages. (The usual SATA drivers do.)
d5f8b295
LP
1738
1739 * The sd-journal API gained two new calls
1740 sd_journal_has_runtime_files() and sd_journal_has_persistent_files()
1741 that report whether log data from /run or /var has been found.
1742
1743 * journalctl gained a new switch "--fields" that prints all journal
1744 record field names currently in use in the journal. This is backed
1745 by two new sd-journal API calls sd_journal_enumerate_fields() and
1746 sd_journal_restart_fields().
1747
1748 * Most configurable timeouts in systemd now expect an argument of
8968aea0
MP
1749 "infinity" to turn them off, instead of "0" as before. The semantics
1750 from now on is that a timeout of "0" means "now", and "infinity"
1751 means "never". To maintain backwards compatibility, "0" continues to
1752 turn off previously existing timeout settings.
d5f8b295
LP
1753
1754 * "systemctl reload-or-try-restart" has been renamed to "systemctl
8968aea0
MP
1755 try-reload-or-restart" to clarify what it actually does: the "try"
1756 logic applies to both reloading and restarting, not just restarting.
1757 The old name continues to be accepted for compatibility.
1758
1759 * On boot-up, when PID 1 detects that the system clock is behind the
1760 release date of the systemd version in use, the clock is now set
1761 to the latter. Previously, this was already done in timesyncd, in order
d5f8b295
LP
1762 to avoid running with clocks set to the various clock epochs such as
1763 1902, 1938 or 1970. With this change the logic is now done in PID 1
1764 in addition to timesyncd during early boot-up, so that it is enforced
1765 before the first process is spawned by systemd. Note that the logic
1766 in timesyncd remains, as it is more comprehensive and ensures
ed5f8840 1767 clock monotonicity by maintaining a persistent timestamp file in
d5f8b295
LP
1768 /var. Since /var is generally not available in earliest boot or the
1769 initrd, this part of the logic remains in timesyncd, and is not done
1770 by PID 1.
1771
50f48ad3
DM
1772 * Support for tweaking details in net_cls.class_id through the
1773 NetClass= configuration directive has been removed, as the kernel
1774 people have decided to deprecate that controller in cgroup v2.
1775 Userspace tools such as nftables are moving over to setting rules
1776 that are specific to the full cgroup path of a task, which obsoletes
1777 these controllers anyway. The NetClass= directive is kept around for
1778 legacy compatibility reasons. For a more in-depth description of the
1779 kernel change, please refer to the respective upstream commit:
1780
1781 https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=bd1060a1d671
1782
d5f8b295 1783 * A new service setting RuntimeMaxSec= has been added that may be used
8968aea0 1784 to specify a maximum runtime for a service. If the timeout is hit, the
d5f8b295
LP
1785 service is terminated and put into a failure state.
1786
8968aea0
MP
1787 * A new service setting AmbientCapabilities= has been added. It allows
1788 configuration of additional Linux process capabilities that are
1789 passed to the activated processes. This is only available on very
d5f8b295
LP
1790 recent kernels.
1791
1792 * The process resource limit settings in service units may now be used
1793 to configure hard and soft limits individually.
1794
8968aea0 1795 * The various libsystemd APIs such as sd-bus or sd-event now publicly
ed5f8840
ZJS
1796 expose support for gcc's __attribute__((cleanup())) C extension.
1797 Specifically, for many object destructor functions alternative
1798 versions have been added that have names suffixed with "p" and take a
1799 pointer to a pointer to the object to destroy, instead of just a
1800 pointer to the object itself. This is useful because these destructor
1801 functions may be used directly as parameters to the cleanup
1802 construct. Internally, systemd has been a heavy user of this GCC
1803 extension for a long time, and with this change similar support is
1804 now available to consumers of the library outside of systemd. Note
8968aea0 1805 that by using this extension in your sources compatibility with old
ed5f8840
ZJS
1806 and strictly ANSI compatible C compilers is lost. However, all gcc or
1807 LLVM versions of recent years support this extension.
d5f8b295
LP
1808
1809 * Timer units gained support for a new setting RandomizedDelaySec= that
8968aea0
MP
1810 allows configuring some additional randomized delay to the configured
1811 time. This is useful to spread out timer events to avoid load peaks in
1812 clusters or larger setups.
d5f8b295
LP
1813
1814 * Calendar time specifications now support sub-second accuracy.
1815
1816 * Socket units now support listening on SCTP and UDP-lite protocol
1817 sockets.
1818
1819 * The sd-event API now comes with a full set of man pages.
1820
1821 * Older versions of systemd contained experimental support for
1822 compressing journal files and coredumps with the LZ4 compressor that
1823 was not compatible with the lz4 binary (due to API limitations of the
1824 lz4 library). This support has been removed; only support for files
1825 compatible with the lz4 binary remains. This LZ4 logic is now
1826 officially supported and no longer considered experimental.
1827
1828 * The dkr image import logic has been removed again from importd. dkr's
1829 micro-services focus doesn't fit into the machine image focus of
1830 importd, and quickly got out of date with the upstream dkr API.
1831
1832 * Creation of the /run/lock/lockdev/ directory was dropped from
1833 tmpfiles.d/legacy.conf. Better locking mechanisms like flock() have
61f32bff
MP
1834 been available for many years. If you still need this, you need to
1835 create your own tmpfiles.d config file with:
d5f8b295
LP
1836
1837 d /run/lock/lockdev 0775 root lock -
61f32bff 1838
3545ab35
LP
1839 Contributions from: Abdo Roig-Maranges, Alban Crequy, Aleksander
1840 Adamowski, Alexander Kuleshov, Andreas Pokorny, Andrei Borzenkov,
1841 Andrew Wilcox, Arthur Clement, Beniamino Galvani, Casey Schaufler,
1842 Chris Atkinson, Chris Mayo, Christian Hesse, Damjan Georgievski, Dan
1843 Dedrick, Daniele Medri, Daniel J Walsh, Daniel Korostil, Daniel Mack,
1844 David Herrmann, Dimitri John Ledkov, Dominik Hannen, Douglas Christman,
1845 Evgeny Vereshchagin, Filipe Brandenburger, Franck Bui, Gabor Kelemen,
1846 Harald Hoyer, Hayden Walles, Helmut Grohne, Henrik Kaare Poulsen,
1847 Hristo Venev, Hui Wang, Indrajit Raychaudhuri, Ismo Puustinen, Jakub
1848 Wilk, Jan Alexander Steffens (heftig), Jan Engelhardt, Jan Synacek,
1849 Joost Bremmer, Jorgen Schaefer, Karel Zak, Klearchos Chaloulos,
1850 lc85446, Lennart Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel
1851 Holtmann, Martin Pitt, Michael Biebl, Michael Olbrich, Michael Scherer,
1852 Michał Górny, Michal Sekletar, Nicolas Cornu, Nicolas Iooss, Nils
1853 Carlson, nmartensen, nnz1024, Patrick Ohly, Peter Hutterer, Phillip Sz,
1854 Ronny Chevalier, Samu Kallio, Shawn Landden, Stef Walter, Susant
1855 Sahani, Sylvain Plantefève, Tadej Janež, Thomas Hindoe Paaboel
1856 Andersen, Tom Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Vito
1857 Caputo, WaLyong Cho, Yu Watanabe, Zbigniew Jędrzejewski-Szmek
1858
ccddd104 1859 — Berlin, 2016-02-11
61f32bff 1860
a11c7ea5
LP
1861CHANGES WITH 228:
1862
a11c7ea5
LP
1863 * A number of properties previously only settable in unit
1864 files are now also available as properties to set when
1865 creating transient units programmatically via the bus, as it
1866 is exposed with systemd-run's --property=
1867 setting. Specifically, these are: SyslogIdentifier=,
1868 SyslogLevelPrefix=, TimerSlackNSec=, OOMScoreAdjust=,
1869 EnvironmentFile=, ReadWriteDirectories=,
1870 ReadOnlyDirectories=, InaccessibleDirectories=,
1871 ProtectSystem=, ProtectHome=, RuntimeDirectory=.
1872
28c85daf
LP
1873 * When creating transient services via the bus API it is now
1874 possible to pass in a set of file descriptors to use as
1875 STDIN/STDOUT/STDERR for the invoked process.
a11c7ea5 1876
f1f8a5a5
LP
1877 * Slice units may now be created transiently via the bus APIs,
1878 similar to the way service and scope units may already be
1879 created transiently.
1880
a11c7ea5
LP
1881 * Wherever systemd expects a calendar timestamp specification
1882 (like in journalctl's --since= and --until= switches) UTC
1883 timestamps are now supported. Timestamps suffixed with "UTC"
1884 are now considered to be in Universal Time Coordinated
1885 instead of the local timezone. Also, timestamps may now
815bb5bd 1886 optionally be specified with sub-second accuracy. Both of
a11c7ea5
LP
1887 these additions also apply to recurring calendar event
1888 specification, such as OnCalendar= in timer units.
1889
28c85daf
LP
1890 * journalctl gained a new "--sync" switch that asks the
1891 journal daemon to write all so far unwritten log messages to
1892 disk and sync the files, before returning.
1893
a11c7ea5
LP
1894 * systemd-tmpfiles learned two new line types "q" and "Q" that
1895 operate like "v", but also set up a basic btrfs quota
1896 hierarchy when used on a btrfs file system with quota
1897 enabled.
1898
f1f8a5a5
LP
1899 * tmpfiles' "v", "q" and "Q" will now create a plain directory
1900 instead of a subvolume (even on a btrfs file system) if the
1901 root directory is a plain directory, and not a
1902 subvolume. This should simplify things with certain chroot()
1903 environments which are not aware of the concept of btrfs
1904 subvolumes.
1905
a11c7ea5
LP
1906 * systemd-detect-virt gained a new --chroot switch to detect
1907 whether execution takes place in a chroot() environment.
1908
28c85daf 1909 * CPUAffinity= now takes CPU index ranges in addition to
a11c7ea5
LP
1910 individual indexes.
1911
28c85daf
LP
1912 * The various memory-related resource limit settings (such as
1913 LimitAS=) now understand the usual K, M, G, ... suffixes to
1914 the base of 1024 (IEC). Similar, the time-related resource
1915 limit settings understand the usual min, h, day, ...
1916 suffixes now.
1917
f1f8a5a5
LP
1918 * There's a new system.conf setting DefaultTasksMax= to
1919 control the default TasksMax= setting for services and
1920 scopes running on the system. (TasksMax= is the primary
1921 setting that exposes the "pids" cgroup controller on systemd
1922 and was introduced in the previous systemd release.) The
1923 setting now defaults to 512, which means services that are
1924 not explicitly configured otherwise will only be able to
1925 create 512 processes or threads at maximum, from this
1926 version on. Note that this means that thread- or
1927 process-heavy services might need to be reconfigured to set
1928 TasksMax= to a higher value. It is sufficient to set
1929 TasksMax= in these specific unit files to a higher value, or
1930 even "infinity". Similar, there's now a logind.conf setting
1931 UserTasksMax= that defaults to 4096 and limits the total
1932 number of processes or tasks each user may own
1933 concurrently. nspawn containers also have the TasksMax=
1934 value set by default now, to 8192. Note that all of this
1935 only has an effect if the "pids" cgroup controller is
1936 enabled in the kernel. The general benefit of these changes
1937 should be a more robust and safer system, that provides a
1938 certain amount of per-service fork() bomb protection.
1939
28c85daf
LP
1940 * systemd-nspawn gained the new --network-veth-extra= switch
1941 to define additional and arbitrarily-named virtual Ethernet
1942 links between the host and the container.
1943
1944 * A new service execution setting PassEnvironment= has been
1945 added that allows importing select environment variables
1946 from PID1's environment block into the environment block of
1947 the service.
1948
ddb4b0d3 1949 * Timer units gained support for a new RemainAfterElapse=
595bfe7d 1950 setting which takes a boolean argument. It defaults to on,
ddb4b0d3
LP
1951 exposing behaviour unchanged to previous releases. If set to
1952 off, timer units are unloaded after they elapsed if they
1953 cannot elapse again. This is particularly useful for
1954 transient timer units, which shall not stay around longer
1955 than until they first elapse.
1956
a11c7ea5 1957 * systemd will now bump the net.unix.max_dgram_qlen to 512 by
28c85daf
LP
1958 default now (the kernel default is 16). This is beneficial
1959 for avoiding blocking on AF_UNIX/SOCK_DGRAM sockets since it
a11c7ea5
LP
1960 allows substantially larger numbers of queued
1961 datagrams. This should increase the capability of systemd to
1962 parallelize boot-up, as logging and sd_notify() are unlikely
1963 to stall execution anymore. If you need to change the value
1964 from the new defaults, use the usual sysctl.d/ snippets.
1965
28c85daf
LP
1966 * The compression framing format used by the journal or
1967 coredump processing has changed to be in line with what the
1968 official LZ4 tools generate. LZ4 compression support in
1969 systemd was considered unsupported previously, as the format
1970 was not compatible with the normal tools. With this release
1971 this has changed now, and it is hence safe for downstream
1972 distributions to turn it on. While not compressing as well
815bb5bd 1973 as the XZ, LZ4 is substantially faster, which makes
28c85daf
LP
1974 it a good default choice for the compression logic in the
1975 journal and in coredump handling.
a11c7ea5 1976
28c85daf
LP
1977 * Any reference to /etc/mtab has been dropped from
1978 systemd. The file has been obsolete since a while, but
1979 systemd refused to work on systems where it was incorrectly
815bb5bd 1980 set up (it should be a symlink or non-existent). Please make
28c85daf
LP
1981 sure to update to util-linux 2.27.1 or newer in conjunction
1982 with this systemd release, which also drops any reference to
1983 /etc/mtab. If you maintain a distribution make sure that no
1984 software you package still references it, as this is a
1985 likely source of bugs. There's also a glibc bug pending,
1986 asking for removal of any reference to this obsolete file:
1987
1988 https://sourceware.org/bugzilla/show_bug.cgi?id=19108
a11c7ea5 1989
d5bd92bb
LP
1990 Note that only util-linux versions built with
1991 --enable-libmount-force-mountinfo are supported.
1992
a11c7ea5
LP
1993 * Support for the ".snapshot" unit type has been removed. This
1994 feature turned out to be little useful and little used, and
1995 has now been removed from the core and from systemctl.
1996
b9e2f7eb
LP
1997 * The dependency types RequiresOverridable= and
1998 RequisiteOverridable= have been removed from systemd. They
1999 have been used only very sparingly to our knowledge and
2000 other options that provide a similar effect (such as
2001 systemctl --mode=ignore-dependencies) are much more useful
2002 and commonly used. Moreover, they were only half-way
2003 implemented as the option to control behaviour regarding
2004 these dependencies was never added to systemctl. By removing
2005 these dependency types the execution engine becomes a bit
2006 simpler. Unit files that use these dependencies should be
2007 changed to use the non-Overridable dependency types
2008 instead. In fact, when parsing unit files with these
2009 options, that's what systemd will automatically convert them
2010 too, but it will also warn, asking users to fix the unit
2011 files accordingly. Removal of these dependency types should
2012 only affect a negligible number of unit files in the wild.
2013
2014 * Behaviour of networkd's IPForward= option changed
2015 (again). It will no longer maintain a per-interface setting,
2016 but propagate one way from interfaces where this is enabled
2017 to the global kernel setting. The global setting will be
2018 enabled when requested by a network that is set up, but
2019 never be disabled again. This change was made to make sure
2020 IPv4 and IPv6 behaviour regarding packet forwarding is
2021 similar (as the Linux IPv6 stack does not support
2022 per-interface control of this setting) and to minimize
2023 surprises.
2024
28c85daf
LP
2025 * In unit files the behaviour of %u, %U, %h, %s has
2026 changed. These specifiers will now unconditionally resolve
2027 to the various user database fields of the user that the
2028 systemd instance is running as, instead of the user
2029 configured in the specific unit via User=. Note that this
2030 effectively doesn't change much, as resolving of these
2031 specifiers was already turned off in the --system instance
2032 of systemd, as we cannot do NSS lookups from PID 1. In the
2033 --user instance of systemd these specifiers where correctly
2034 resolved, but hardly made any sense, since the user instance
2035 lacks privileges to do user switches anyway, and User= is
ce830873 2036 hence useless. Moreover, even in the --user instance of
28c85daf
LP
2037 systemd behaviour was awkward as it would only take settings
2038 from User= assignment placed before the specifier into
2039 account. In order to unify and simplify the logic around
2040 this the specifiers will now always resolve to the
2041 credentials of the user invoking the manager (which in case
2042 of PID 1 is the root user).
2043
2044 Contributions from: Andrew Jones, Beniamino Galvani, Boyuan
2045 Yang, Daniel Machon, Daniel Mack, David Herrmann, David
2046 Reynolds, David Strauss, Dongsu Park, Evgeny Vereshchagin,
f1f8a5a5
LP
2047 Felipe Sateler, Filipe Brandenburger, Franck Bui, Hristo
2048 Venev, Iago López Galeiras, Jan Engelhardt, Jan Janssen, Jan
2049 Synacek, Jesus Ornelas Aguayo, Karel Zak, kayrus, Kay Sievers,
2050 Lennart Poettering, Liu Yuan Yuan, Mantas Mikulėnas, Marcel
2051 Holtmann, Marcin Bachry, Marcos Alano, Marcos Mello, Mark
2052 Theunissen, Martin Pitt, Michael Marineau, Michael Olbrich,
2053 Michal Schmidt, Michal Sekletar, Mirco Tischler, Nick Owens,
2054 Nicolas Cornu, Patrik Flykt, Peter Hutterer, reverendhomer,
2055 Ronny Chevalier, Sangjung Woo, Seong-ho Cho, Shawn Landden,
2056 Susant Sahani, Thomas Haller, Thomas Hindoe Paaboel Andersen,
2057 Tom Gundersen, Torstein Husebø, Vito Caputo, Zbigniew
2058 Jędrzejewski-Szmek
28c85daf 2059
ccddd104 2060 — Berlin, 2015-11-18
a11c7ea5 2061
c97e586d
DM
2062CHANGES WITH 227:
2063
2064 * systemd now depends on util-linux v2.27. More specifically,
2065 the newly added mount monitor feature in libmount now
2066 replaces systemd's former own implementation.
2067
2068 * libmount mandates /etc/mtab not to be regular file, and
2069 systemd now enforces this condition at early boot.
2070 /etc/mtab has been deprecated and warned about for a very
2071 long time, so systems running systemd should already have
2072 stopped having this file around as anything else than a
2073 symlink to /proc/self/mounts.
2074
d046fb93
LP
2075 * Support for the "pids" cgroup controller has been added. It
2076 allows accounting the number of tasks in a cgroup and
c97e586d
DM
2077 enforcing limits on it. This adds two new setting
2078 TasksAccounting= and TasksMax= to each unit, as well as a
6fd5517b 2079 global option DefaultTasksAccounting=.
c97e586d
DM
2080
2081 * Support for the "net_cls" cgroup controller has been added.
fe08a30b
LP
2082 It allows assigning a net class ID to each task in the
2083 cgroup, which can then be used in firewall rules and traffic
2084 shaping configurations. Note that the kernel netfilter net
2085 class code does not currently work reliably for ingress
2086 packets on unestablished sockets.
c97e586d
DM
2087
2088 This adds a new config directive called NetClass= to CGroup
6fd5517b 2089 enabled units. Allowed values are positive numbers for fixed
c97e586d
DM
2090 assignments and "auto" for picking a free value
2091 automatically.
2092
21d86c61
DM
2093 * 'systemctl is-system-running' now returns 'offline' if the
2094 system is not booted with systemd. This command can now be
2095 used as a substitute for 'systemd-notify --booted'.
2096
2097 * Watchdog timeouts have been increased to 3 minutes for all
2098 in-tree service files. Apparently, disk IO issues are more
2099 frequent than we hoped, and user reported >1 minute waiting
2100 for disk IO.
2101
2102 * 'machine-id-commit' functionality has been merged into
2103 'machine-id-setup --commit'. The separate binary has been
2104 removed.
2105
d046fb93
LP
2106 * The WorkingDirectory= directive in unit files may now be set
2107 to the special value '~'. In this case, the working
2108 directory is set to the home directory of the user
2109 configured in User=.
21d86c61 2110
fe08a30b
LP
2111 * "machinectl shell" will now open the shell in the home
2112 directory of the selected user by default.
2113
21d86c61 2114 * The CrashChVT= configuration file setting is renamed to
d046fb93
LP
2115 CrashChangeVT=, following our usual logic of not
2116 abbreviating unnecessarily. The old directive is still
2117 supported for compat reasons. Also, this directive now takes
2118 an integer value between 1 and 63, or a boolean value. The
2119 formerly supported '-1' value for disabling stays around for
2120 compat reasons.
21d86c61 2121
fe08a30b 2122 * The PrivateTmp=, PrivateDevices=, PrivateNetwork=,
8b5f9d15 2123 NoNewPrivileges=, TTYPath=, WorkingDirectory= and
fe08a30b
LP
2124 RootDirectory= properties can now be set for transient
2125 units.
2126
2127 * The systemd-analyze tool gained a new "set-log-target" verb
2128 to change the logging target the system manager logs to
2129 dynamically during runtime. This is similar to how
2130 "systemd-analyze set-log-level" already changes the log
2131 level.
2132
2133 * In nspawn /sys is now mounted as tmpfs, with only a selected
2134 set of subdirectories mounted in from the real sysfs. This
2135 enhances security slightly, and is useful for ensuring user
2136 namespaces work correctly.
2137
2138 * Support for USB FunctionFS activation has been added. This
2139 allows implementation of USB gadget services that are
2140 activated as soon as they are requested, so that they don't
595bfe7d 2141 have to run continuously, similar to classic socket
fe08a30b
LP
2142 activation.
2143
2144 * The "systemctl exit" command now optionally takes an
2145 additional parameter that sets the exit code to return from
2146 the systemd manager when exiting. This is only relevant when
2147 running the systemd user instance, or when running the
2148 system instance in a container.
2149
2150 * sd-bus gained the new API calls sd_bus_path_encode_many()
2151 and sd_bus_path_decode_many() that allow easy encoding and
2152 decoding of multiple identifier strings inside a D-Bus
2153 object path. Another new call sd_bus_default_flush_close()
2154 has been added to flush and close per-thread default
2155 connections.
2156
2157 * systemd-cgtop gained support for a -M/--machine= switch to
2158 show the control groups within a certain container only.
2159
2160 * "systemctl kill" gained support for an optional --fail
2161 switch. If specified the requested operation will fail of no
2162 processes have been killed, because the unit had no
2163 processes attached, or similar.
2164
bdba9227
DM
2165 * A new systemd.crash_reboot=1 kernel command line option has
2166 been added that triggers a reboot after crashing. This can
2167 also be set through CrashReboot= in systemd.conf.
2168
2169 * The RuntimeDirectory= setting now understands unit
2170 specifiers like %i or %f.
2171
ce830873 2172 * A new (still internal) library API sd-ipv4acd has been added,
fe08a30b
LP
2173 that implements address conflict detection for IPv4. It's
2174 based on code from sd-ipv4ll, and will be useful for
2175 detecting DHCP address conflicts.
2176
bdba9227
DM
2177 * File descriptors passed during socket activation may now be
2178 named. A new API sd_listen_fds_with_names() is added to
a8eaaee7 2179 access the names. The default names may be overridden,
bdba9227
DM
2180 either in the .socket file using the FileDescriptorName=
2181 parameter, or by passing FDNAME= when storing the file
2182 descriptors using sd_notify().
fe08a30b 2183
d046fb93
LP
2184 * systemd-networkd gained support for:
2185
0053598f 2186 - Setting the IPv6 Router Advertisement settings via
edf4126f 2187 IPv6AcceptRouterAdvertisements= in .network files.
d046fb93
LP
2188
2189 - Configuring the HelloTimeSec=, MaxAgeSec= and
2190 ForwardDelaySec= bridge parameters in .netdev files.
2191
2192 - Configuring PreferredSource= for static routes in
edf4126f 2193 .network files.
fe08a30b 2194
bdba9227
DM
2195 * The "ask-password" framework used to query for LUKS harddisk
2196 passwords or SSL passwords during boot gained support for
2197 caching passwords in the kernel keyring, if it is
2198 available. This makes sure that the user only has to type in
2199 a passphrase once if there are multiple objects to unlock
2200 with the same one. Previously, such password caching was
2201 available only when Plymouth was used; this moves the
2202 caching logic into the systemd codebase itself. The
2203 "systemd-ask-password" utility gained a new --keyname=
2204 switch to control which kernel keyring key to use for
2205 caching a password in. This functionality is also useful for
2206 enabling display managers such as gdm to automatically
2207 unlock the user's GNOME keyring if its passphrase, the
2208 user's password and the harddisk password are the same, if
2209 gdm-autologin is used.
fe08a30b
LP
2210
2211 * When downloading tar or raw images using "machinectl
2212 pull-tar" or "machinectl pull-raw", a matching ".nspawn"
2213 file is now also downloaded, if it is available and stored
2214 next to the image file.
c97e586d 2215
91d0d699
LP
2216 * Units of type ".socket" gained a new boolean setting
2217 Writable= which is only useful in conjunction with
2218 ListenSpecial=. If true, enables opening the specified
2219 special file in O_RDWR mode rather than O_RDONLY mode.
2220
2221 * systemd-rfkill has been reworked to become a singleton
2222 service that is activated through /dev/rfkill on each rfkill
2223 state change and saves the settings to disk. This way,
2224 systemd-rfkill is now compatible with devices that exist
2225 only intermittendly, and even restores state if the previous
2226 system shutdown was abrupt rather than clean.
2227
d046fb93
LP
2228 * The journal daemon gained support for vacuuming old journal
2229 files controlled by the number of files that shall remain,
2230 in addition to the already existing control by size and by
2231 date. This is useful as journal interleaving performance
6dd6a9c4 2232 degrades with too many separate journal files, and allows
d046fb93
LP
2233 putting an effective limit on them. The new setting defaults
2234 to 100, but this may be changed by setting SystemMaxFiles=
2235 and RuntimeMaxFiles= in journald.conf. Also, the
2236 "journalctl" tool gained the new --vacuum-files= switch to
2237 manually vacuum journal files to leave only the specified
2238 number of files in place.
c48eb61f 2239
bdba9227
DM
2240 * udev will now create /dev/disk/by-path links for ATA devices
2241 on kernels where that is supported.
c30f086f 2242
efce0ffe 2243 * Galician, Serbian, Turkish and Korean translations were added.
c97e586d 2244
61e6771c
LP
2245 Contributions from: Aaro Koskinen, Alban Crequy, Beniamino
2246 Galvani, Benjamin Robin, Branislav Blaskovic, Chen-Han Hsiao
2247 (Stanley), Daniel Buch, Daniel Machon, Daniel Mack, David
2248 Herrmann, David Milburn, doubleodoug, Evgeny Vereshchagin,
2249 Felipe Franciosi, Filipe Brandenburger, Fran Dieguez, Gabriel
2250 de Perthuis, Georg Müller, Hans de Goede, Hendrik Brueckner,
2251 Ivan Shapovalov, Jacob Keller, Jan Engelhardt, Jan Janssen,
2252 Jan Synacek, Jens Kuske, Karel Zak, Kay Sievers, Krzesimir
2253 Nowak, Krzysztof Kotlenga, Lars Uebernickel, Lennart
2254 Poettering, Lukas Nykryn, Łukasz Stelmach, Maciej Wereski,
2255 Marcel Holtmann, Marius Thesing, Martin Pitt, Michael Biebl,
2256 Michael Gebetsroither, Michal Schmidt, Michal Sekletar, Mike
2257 Gilbert, Muhammet Kara, nazgul77, Nicolas Cornu, NoXPhasma,
2258 Olof Johansson, Patrik Flykt, Pawel Szewczyk, reverendhomer,
2259 Ronny Chevalier, Sangjung Woo, Seong-ho Cho, Susant Sahani,
2260 Sylvain Plantefève, Thomas Haller, Thomas Hindoe Paaboel
2261 Andersen, Tom Gundersen, Tom Lyon, Viktar Vauchkevich,
2262 Zbigniew Jędrzejewski-Szmek, Марко М. Костић
2263
ccddd104 2264 — Berlin, 2015-10-07
c97e586d 2265
c9912c5e
DH
2266CHANGES WITH 226:
2267
5e8d4254
LP
2268 * The DHCP implementation of systemd-networkd gained a set of
2269 new features:
2270
2271 - The DHCP server now supports emitting DNS and NTP
2272 information. It may be enabled and configured via
2273 EmitDNS=, DNS=, EmitNTP=, and NTP=. If transmission of DNS
2274 and NTP information is enabled, but no servers are
2275 configured, the corresponding uplink information (if there
2276 is any) is propagated.
2277
2278 - Server and client now support transmission and reception
2279 of timezone information. It can be configured via the
2280 newly introduced network options UseTimezone=,
2281 EmitTimezone=, and Timezone=. Transmission of timezone
2282 information is enabled between host and containers by
2283 default now: the container will change its local timezone
2284 to what the host has set.
2285
2286 - Lease timeouts can now be configured via
2287 MaxLeaseTimeSec= and DefaultLeaseTimeSec=.
2288
2289 - The DHCP server improved on the stability of
2290 leases. Clients are more likely to get the same lease
2291 information back, even if the server loses state.
2292
2293 - The DHCP server supports two new configuration options to
2294 control the lease address pool metrics, PoolOffset= and
2295 PoolSize=.
2296
2297 * The encapsulation limit of tunnels in systemd-networkd may
2298 now be configured via 'EncapsulationLimit='. It allows
2299 modifying the maximum additional levels of encapsulation
2300 that are permitted to be prepended to a packet.
2301
2302 * systemd now supports the concept of user buses replacing
2303 session buses, if used with dbus-1.10 (and enabled via dbus
2304 --enable-user-session). It previously only supported this on
2305 kdbus-enabled systems, and this release expands this to
2306 'dbus-daemon' systems.
2307
2308 * systemd-networkd now supports predictable interface names
2309 for virtio devices.
2310
2311 * systemd now optionally supports the new Linux kernel
2312 "unified" control group hierarchy. If enabled via the kernel
2313 command-line option 'systemd.unified_cgroup_hierarchy=1',
2314 systemd will try to mount the unified cgroup hierarchy
2315 directly on /sys/fs/cgroup. If not enabled, or not
2316 available, systemd will fall back to the legacy cgroup
2317 hierarchy setup, as before. Host system and containers can
2318 mix and match legacy and unified hierarchies as they
856ca72b 2319 wish. nspawn understands the $UNIFIED_CGROUP_HIERARCHY
5e8d4254
LP
2320 environment variable to individually select the hierarchy to
2321 use for executed containers. By default, nspawn will use the
2322 unified hierarchy for the containers if the host uses the
2323 unified hierarchy, and the legacy hierarchy otherwise.
2324 Please note that at this point the unified hierarchy is an
2325 experimental kernel feature and is likely to change in one
2326 of the next kernel releases. Therefore, it should not be
2327 enabled by default in downstream distributions yet. The
2328 minimum required kernel version for the unified hierarchy to
2329 work is 4.2. Note that when the unified hierarchy is used
2330 for the first time delegated access to controllers is
2331 safe. Because of this systemd-nspawn containers will get
2332 access to controllers now, as will systemd user
2333 sessions. This means containers and user sessions may now
2334 manage their own resources, partitioning up what the system
2335 grants them.
2336
2337 * A new special scope unit "init.scope" has been introduced
2338 that encapsulates PID 1 of the system. It may be used to
2339 determine resource usage and enforce resource limits on PID
2340 1 itself. PID 1 hence moved out of the root of the control
2341 group tree.
2342
2343 * The cgtop tool gained support for filtering out kernel
2344 threads when counting tasks in a control group. Also, the
2345 count of processes is now recursively summed up by
2346 default. Two options -k and --recursive= have been added to
2347 revert to old behaviour. The tool has also been updated to
2348 work correctly in containers now.
2349
2350 * systemd-nspawn's --bind= and --bind-ro= options have been
2351 extended to allow creation of non-recursive bind mounts.
2352
c626bf1d
DM
2353 * libsystemd gained two new calls sd_pid_get_cgroup() and
2354 sd_peer_get_cgroup() which return the control group path of
5e8d4254
LP
2355 a process or peer of a connected AF_UNIX socket. This
2356 function call is particularly useful when implementing
2357 delegated subtrees support in the control group hierarchy.
2358
2359 * The "sd-event" event loop API of libsystemd now supports
2360 correct dequeuing of real-time signals, without losing
2361 signal events.
2362
2363 * When systemd requests a PolicyKit decision when managing
2364 units it will now add additional fields to the request,
2365 including unit name and desired operation. This enables more
2366 powerful PolicyKit policies, that make decisions depending
2367 on these parameters.
c9912c5e 2368
47f5a38c
LP
2369 * nspawn learnt support for .nspawn settings files, that may
2370 accompany the image files or directories of containers, and
2371 may contain additional settings for the container. This is
2372 an alternative to configuring container parameters via the
2373 nspawn command line.
2374
2f77decc
LP
2375 Contributions from: Cristian Rodríguez, Daniel Mack, David
2376 Herrmann, Eugene Yakubovich, Evgeny Vereshchagin, Filipe
2377 Brandenburger, Hans de Goede, Jan Alexander Steffens, Jan
2378 Synacek, Kay Sievers, Lennart Poettering, Mangix, Marcel
2379 Holtmann, Martin Pitt, Michael Biebl, Michael Chapman, Michal
2380 Sekletar, Peter Hutterer, Piotr Drąg, reverendhomer, Robin
2381 Hack, Susant Sahani, Sylvain Pasche, Thomas Hindoe Paaboel
23d08d1b 2382 Andersen, Tom Gundersen, Torstein Husebø
c9912c5e 2383
ccddd104 2384 — Berlin, 2015-09-08
c9912c5e 2385
ec5249a2
DM
2386CHANGES WITH 225:
2387
5e8d4254
LP
2388 * machinectl gained a new verb 'shell' which opens a fresh
2389 shell on the target container or the host. It is similar to
2390 the existing 'login' command of machinectl, but spawns the
2391 shell directly without prompting for username or
2392 password. The pseudo machine '.host' now refers to the local
2393 host and is used by default. Hence, 'machinectl shell' can
2394 be used as replacement for 'su -' which spawns a session as
2395 a fresh systemd unit in a way that is fully isolated from
2396 the originating session.
2397
2398 * systemd-networkd learned to cope with private-zone DHCP
2399 options and allows other programs to query the values.
2400
2401 * SELinux access control when enabling/disabling units is no
2402 longer enforced with this release. The previous
2403 implementation was incorrect, and a new corrected
2404 implementation is not yet available. As unit file operations
2405 are still protected via PolicyKit and D-Bus policy this is
2406 not a security problem. Yet, distributions which care about
2407 optimal SELinux support should probably not stabilize on
2408 this release.
2409
2410 * sd-bus gained support for matches of type "arg0has=", that
2411 test for membership of strings in string arrays sent in bus
2412 messages.
2413
2414 * systemd-resolved now dumps the contents of its DNS and LLMNR
2415 caches to the logs on reception of the SIGUSR1 signal. This
2416 is useful to debug DNS behaviour.
2417
2418 * The coredumpctl tool gained a new --directory= option to
2419 operate on journal files in a specific directory.
2420
2421 * "systemctl reboot" and related commands gained a new
2422 "--message=" option which may be used to set a free-text
2423 wall message when shutting down or rebooting the
2424 system. This message is also logged, which is useful for
2425 figuring out the reason for a reboot or shutdown a
2426 posteriori.
2427
2428 * The "systemd-resolve-host" tool's -i switch now takes
2429 network interface numbers as alternative to interface names.
2430
2431 * A new unit file setting for services has been introduced:
2432 UtmpMode= allows configuration of how precisely systemd
2433 handles utmp and wtmp entries for the service if this is
2434 enabled. This allows writing services that appear similar to
2435 user sessions in the output of the "w", "who", "last" and
2436 "lastlog" tools.
2437
2438 * systemd-resolved will now locally synthesize DNS resource
2439 records for the "localhost" and "gateway" domains as well as
2440 the local hostname. This should ensure that clients querying
2441 RRs via resolved will get similar results as those going via
2442 NSS, if nss-myhostname is enabled.
2443
2444 Contributions from: Alastair Hughes, Alex Crawford, Daniel
2445 Mack, David Herrmann, Dimitri John Ledkov, Eric Kostrowski,
2446 Evgeny Vereshchagin, Felipe Sateler, HATAYAMA Daisuke, Jan
2447 Pokorný, Jan Synacek, Johnny Robeson, Karel Zak, Kay Sievers,
2448 Kefeng Wang, Lennart Poettering, Major Hayden, Marcel
2449 Holtmann, Markus Elfring, Martin Mikkelsen, Martin Pitt, Matt
2450 Turner, Maxim Mikityanskiy, Michael Biebl, Namhyung Kim,
2451 Nicolas Cornu, Owen W. Taylor, Patrik Flykt, Peter Hutterer,
2452 reverendhomer, Richard Maw, Ronny Chevalier, Seth Jennings,
2453 Stef Walter, Susant Sahani, Thomas Blume, Thomas Hindoe
2454 Paaboel Andersen, Thomas Meyer, Tom Gundersen, Vincent Batts,
2455 WaLyong Cho, Zbigniew Jędrzejewski-Szmek
e1439a14 2456
ccddd104 2457 — Berlin, 2015-08-27
ec5249a2 2458
11811e85
DH
2459CHANGES WITH 224:
2460
10fa421c
DH
2461 * The systemd-efi-boot-generator functionality was merged into
2462 systemd-gpt-auto-generator.
2463
5e8d4254
LP
2464 * systemd-networkd now supports Group Policy for vxlan
2465 devices. It can be enabled via the new boolean configuration
2466 option called 'GroupPolicyExtension='.
10fa421c 2467
11811e85
DH
2468 Contributions from: Andreas Kempf, Christian Hesse, Daniel Mack, David
2469 Herrmann, Herman Fries, Johannes Nixdorf, Kay Sievers, Lennart
2470 Poettering, Peter Hutterer, Susant Sahani, Tom Gundersen
2471
ccddd104 2472 — Berlin, 2015-07-31
11811e85 2473
e57eaef8
DH
2474CHANGES WITH 223:
2475
2476 * The python-systemd code has been removed from the systemd repository.
2477 A new repository has been created which accommodates the code from
2478 now on, and we kindly ask distributions to create a separate package
2479 for this: https://github.com/systemd/python-systemd
2480
01608bc8 2481 * The systemd daemon will now reload its main configuration
e57eaef8
DH
2482 (/etc/systemd/system.conf) on daemon-reload.
2483
2484 * sd-dhcp now exposes vendor specific extensions via
2485 sd_dhcp_lease_get_vendor_specific().
2486
931618d0
DM
2487 * systemd-networkd gained a number of new configuration options.
2488
2489 - A new boolean configuration option for TAP devices called
37d54b93 2490 'VNetHeader='. If set, the IFF_VNET_HDR flag is set for the
931618d0
DM
2491 device, thus allowing to send and receive GSO packets.
2492
2493 - A new tunnel configuration option called 'CopyDSCP='.
2494 If enabled, the DSCP field of ip6 tunnels is copied into the
2495 decapsulated packet.
2496
2497 - A set of boolean bridge configuration options were added.
2498 'UseBPDU=', 'HairPin=', 'FastLeave=', 'AllowPortToBeRoot=',
2499 and 'UnicastFlood=' are now parsed by networkd and applied to the
2500 respective bridge link device via the respective IFLA_BRPORT_*
2501 netlink attribute.
2502
2503 - A new string configuration option to override the hostname sent
2504 to a DHCP server, called 'Hostname='. If set and 'SendHostname='
2505 is true, networkd will use the configured hostname instead of the
2506 system hostname when sending DHCP requests.
2507
2508 - A new tunnel configuration option called 'IPv6FlowLabel='. If set,
2509 networkd will configure the IPv6 flow-label of the tunnel device
2510 according to RFC2460.
e57eaef8 2511
f5f113f6
DH
2512 - The 'macvtap' virtual network devices are now supported, similar to
2513 the already supported 'macvlan' devices.
2514
e57eaef8 2515 * systemd-resolved now implements RFC5452 to improve resilience against
01608bc8 2516 cache poisoning. Additionally, source port randomization is enabled
e57eaef8
DH
2517 by default to further protect against DNS spoofing attacks.
2518
2519 * nss-mymachines now supports translating UIDs and GIDs of running
2520 containers with user-namespaces enabled. If a container 'foo'
2521 translates a host uid 'UID' to the container uid 'TUID', then
2522 nss-mymachines will also map uid 'UID' to/from username 'vu-foo-TUID'
2523 (with 'foo' and 'TUID' replaced accordingly). Similarly, groups are
2524 mapped as 'vg-foo-TGID'.
2525
2526 Contributions from: Beniamino Galvani, cee1, Christian Hesse, Daniel
e4e66993
DH
2527 Buch, Daniel Mack, daurnimator, David Herrmann, Dimitri John Ledkov,
2528 HATAYAMA Daisuke, Ivan Shapovalov, Jan Alexander Steffens (heftig),
2529 Johan Ouwerkerk, Jose Carlos Venegas Munoz, Karel Zak, Kay Sievers,
2530 Lennart Poettering, Lidong Zhong, Martin Pitt, Michael Biebl, Michael
2531 Olbrich, Michal Schmidt, Michal Sekletar, Mike Gilbert, Namhyung Kim,
2532 Nick Owens, Peter Hutterer, Richard Maw, Steven Allen, Sungbae Yoo,
2533 Susant Sahani, Thomas Blume, Thomas Hindoe Paaboel Andersen, Tom
2534 Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Vito Caputo,
2535 Vivenzio Pagliari, Zbigniew Jędrzejewski-Szmek
2536
ccddd104 2537 — Berlin, 2015-07-29
e57eaef8 2538
0db83ad7 2539CHANGES WITH 222:
5541c889 2540
861b02eb
KS
2541 * udev does not longer support the WAIT_FOR_SYSFS= key in udev rules.
2542 There are no known issues with current sysfs, and udev does not need
2543 or should be used to work around such bugs.
2544
2545 * udev does no longer enable USB HID power management. Several reports
2546 indicate, that some devices cannot handle that setting.
0db83ad7
DH
2547
2548 * The udev accelerometer helper was removed. The functionality
2549 is now fully included in iio-sensor-proxy. But this means,
2550 older iio-sensor-proxy versions will no longer provide
2551 accelerometer/orientation data with this systemd version.
2552 Please upgrade iio-sensor-proxy to version 1.0.
2553
5541c889
DH
2554 * networkd gained a new configuration option IPv6PrivacyExtensions=
2555 which enables IPv6 privacy extensions (RFC 4941, "Privacy Extensions
2556 for Stateless Address") on selected networks.
2557
9b361114
DM
2558 * For the sake of fewer build-time dependencies and less code in the
2559 main repository, the python bindings are about to be removed in the
2560 next release. A new repository has been created which accommodates
2561 the code from now on, and we kindly ask distributions to create a
2562 separate package for this. The removal will take place in v223.
2563
2564 https://github.com/systemd/python-systemd
2565
0db83ad7
DH
2566 Contributions from: Abdo Roig-Maranges, Andrew Eikum, Bastien Nocera,
2567 Cédric Delmas, Christian Hesse, Christos Trochalakis, Daniel Mack,
2568 daurnimator, David Herrmann, Dimitri John Ledkov, Eric Biggers, Eric
2569 Cook, Felipe Sateler, Geert Jansen, Gerd Hoffmann, Gianpaolo Macario,
5541c889
DH
2570 Greg Kroah-Hartman, Iago López Galeiras, Jan Alexander Steffens
2571 (heftig), Jan Engelhardt, Jay Strict, Kay Sievers, Lennart Poettering,
0db83ad7
DH
2572 Markus Knetschke, Martin Pitt, Michael Biebl, Michael Marineau, Michal
2573 Sekletar, Miguel Bernal Marin, Peter Hutterer, Richard Maw, rinrinne,
2d1ca112
DH
2574 Susant Sahani, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Torstein
2575 Husebø, Vedran Miletić, WaLyong Cho, Zbigniew Jędrzejewski-Szmek
0db83ad7 2576
ccddd104 2577 — Berlin, 2015-07-07
0db83ad7 2578
0f0467e6
MP
2579CHANGES WITH 221:
2580
470e72d4 2581 * The sd-bus.h and sd-event.h APIs have now been declared
5f92d24f 2582 stable and have been added to the official interface of
470e72d4
LP
2583 libsystemd.so. sd-bus implements an alternative D-Bus client
2584 library, that is relatively easy to use, very efficient and
2585 supports both classic D-Bus as well as kdbus as transport
2586 backend. sd-event is a generic event loop abstraction that
2587 is built around Linux epoll, but adds features such as event
0aee49d5 2588 prioritization or efficient timer handling. Both APIs are good
470e72d4
LP
2589 choices for C programs looking for a bus and/or event loop
2590 implementation that is minimal and does not have to be
5f92d24f 2591 portable to other kernels.
0f0467e6 2592
470e72d4
LP
2593 * kdbus support is no longer compile-time optional. It is now
2594 always built-in. However, it can still be disabled at
2595 runtime using the kdbus=0 kernel command line setting, and
c6551464 2596 that setting may be changed to default to off, by specifying
470e72d4
LP
2597 --disable-kdbus at build-time. Note though that the kernel
2598 command line setting has no effect if the kdbus.ko kernel
2599 module is not installed, in which case kdbus is (obviously)
2600 also disabled. We encourage all downstream distributions to
0aee49d5 2601 begin testing kdbus by adding it to the kernel images in the
470e72d4
LP
2602 development distributions, and leaving kdbus support in
2603 systemd enabled.
0f0467e6 2604
470e72d4
LP
2605 * The minimal required util-linux version has been bumped to
2606 2.26.
2607
2608 * Support for chkconfig (--enable-chkconfig) was removed in
0aee49d5 2609 favor of calling an abstraction tool
470e72d4
LP
2610 /lib/systemd/systemd-sysv-install. This needs to be
2611 implemented for your distribution. See "SYSV INIT.D SCRIPTS"
2612 in README for details.
2613
2614 * If there's a systemd unit and a SysV init script for the
2615 same service name, and the user executes "systemctl enable"
2616 for it (or a related call), then this will now enable both
2617 (or execute the related operation on both), not just the
2618 unit.
2619
2620 * The libudev API documentation has been converted from gtkdoc
2621 into man pages.
2622
2623 * gudev has been removed from the systemd tree, it is now an
2624 external project.
2625
2626 * The systemd-cgtop tool learnt a new --raw switch to generate
0aee49d5 2627 "raw" (machine parsable) output.
470e72d4
LP
2628
2629 * networkd's IPForwarding= .network file setting learnt the
2630 new setting "kernel", which ensures that networkd does not
2631 change the IP forwarding sysctl from the default kernel
2632 state.
2633
2634 * The systemd-logind bus API now exposes a new boolean
2635 property "Docked" that reports whether logind considers the
2636 system "docked", i.e. connected to a docking station or not.
2637
2638 Contributions from: Alex Crawford, Andreas Pokorny, Andrei
2639 Borzenkov, Charles Duffy, Colin Guthrie, Cristian Rodríguez,
2640 Daniele Medri, Daniel Hahler, Daniel Mack, David Herrmann,
2641 David Mohr, Dimitri John Ledkov, Djalal Harouni, dslul, Ed
2642 Swierk, Eric Cook, Filipe Brandenburger, Gianpaolo Macario,
2643 Harald Hoyer, Iago López Galeiras, Igor Vuk, Jan Synacek,
2644 Jason Pleau, Jason S. McMullan, Jean Delvare, Jeff Huang,
2645 Jonathan Boulle, Karel Zak, Kay Sievers, kloun, Lennart
2646 Poettering, Marc-Antoine Perennou, Marcel Holtmann, Mario
2647 Limonciello, Martin Pitt, Michael Biebl, Michael Olbrich,
2648 Michal Schmidt, Mike Gilbert, Nick Owens, Pablo Lezaeta Reyes,
b912e251
LP
2649 Patrick Donnelly, Pavel Odvody, Peter Hutterer, Philip
2650 Withnall, Ronny Chevalier, Simon McVittie, Susant Sahani,
2651 Thomas Hindoe Paaboel Andersen, Tom Gundersen, Torstein
2652 Husebø, Umut Tezduyar Lindskog, Viktar Vauchkevich, Werner
2653 Fink, Zbigniew Jędrzejewski-Szmek
470e72d4 2654
ccddd104 2655 — Berlin, 2015-06-19
0f0467e6 2656
481a0aa2
LP
2657CHANGES WITH 220:
2658
f7a73a25
DH
2659 * The gudev library has been extracted into a separate repository
2660 available at: https://git.gnome.org/browse/libgudev/
2661 It is now managed as part of the Gnome project. Distributions
2662 are recommended to pass --disable-gudev to systemd and use
2663 gudev from the Gnome project instead. gudev is still included
2664 in systemd, for now. It will be removed soon, though. Please
2665 also see the announcement-thread on systemd-devel:
56cadcb6 2666 https://lists.freedesktop.org/archives/systemd-devel/2015-May/032070.html
f7a73a25 2667
481a0aa2
LP
2668 * systemd now exposes a CPUUsageNSec= property for each
2669 service unit on the bus, that contains the overall consumed
2670 CPU time of a service (the sum of what each process of the
2671 service consumed). This value is only available if
2672 CPUAccounting= is turned on for a service, and is then shown
2673 in the "systemctl status" output.
2674
2675 * Support for configuring alternative mappings of the old SysV
2676 runlevels to systemd targets has been removed. They are now
29d1fcb4 2677 hardcoded in a way that runlevels 2, 3, 4 all map to
481a0aa2
LP
2678 multi-user.target and 5 to graphical.target (which
2679 previously was already the default behaviour).
2680
2681 * The auto-mounter logic gained support for mount point
2682 expiry, using a new TimeoutIdleSec= setting in .automount
2683 units. (Also available as x-systemd.idle-timeout= in /etc/fstab).
2684
2685 * The EFI System Partition (ESP) as mounted to /boot by
2686 systemd-efi-boot-generator will now be unmounted
29d1fcb4 2687 automatically after 2 minutes of not being used. This should
481a0aa2
LP
2688 minimize the risk of ESP corruptions.
2689
2690 * New /etc/fstab options x-systemd.requires= and
2691 x-systemd.requires-mounts-for= are now supported to express
2692 additional dependencies for mounts. This is useful for
2693 journalling file systems that support external journal
2694 devices or overlay file systems that require underlying file
2695 systems to be mounted.
2696
2697 * systemd does not support direct live-upgrades (via systemctl
2698 daemon-reexec) from versions older than v44 anymore. As no
2699 distribution we are aware of shipped such old versions in a
2700 stable release this should not be problematic.
2701
2702 * When systemd forks off a new per-connection service instance
2703 it will now set the $REMOTE_ADDR environment variable to the
2704 remote IP address, and $REMOTE_PORT environment variable to
2705 the remote IP port. This behaviour is similar to the
2706 corresponding environment variables defined by CGI.
2707
2708 * systemd-networkd gained support for uplink failure
2709 detection. The BindCarrier= option allows binding interface
2710 configuration dynamically to the link sense of other
2711 interfaces. This is useful to achieve behaviour like in
2712 network switches.
2713
2714 * systemd-networkd gained support for configuring the DHCP
2715 client identifier to use when requesting leases.
2716
2717 * systemd-networkd now has a per-network UseNTP= option to
2718 configure whether NTP server information acquired via DHCP
2719 is passed on to services like systemd-timesyncd.
2720
2721 * systemd-networkd gained support for vti6 tunnels.
2722
1579dd2c
LP
2723 * Note that systemd-networkd manages the sysctl variable
2724 /proc/sys/net/ipv[46]/conf/*/forwarding for each interface
2725 it is configured for since v219. The variable controls IP
2726 forwarding, and is a per-interface alternative to the global
2727 /proc/sys/net/ipv[46]/ip_forward. This setting is
2728 configurable in the IPForward= option, which defaults to
2729 "no". This means if networkd is used for an interface it is
2730 no longer sufficient to set the global sysctl option to turn
2731 on IP forwarding! Instead, the .network file option
2732 IPForward= needs to be turned on! Note that the
2733 implementation of this behaviour was broken in v219 and has
2734 been fixed in v220.
2735
481a0aa2
LP
2736 * Many bonding and vxlan options are now configurable in
2737 systemd-networkd.
2738
2739 * systemd-nspawn gained a new --property= setting to set unit
2740 properties for the container scope. This is useful for
ce830873 2741 setting resource parameters (e.g. "CPUShares=500") on
481a0aa2
LP
2742 containers started from the command line.
2743
2744 * systemd-nspawn gained a new --private-users= switch to make
2745 use of user namespacing available on recent Linux kernels.
2746
2747 * systemd-nspawn may now be called as part of a shell pipeline
2748 in which case the pipes used for stdin and stdout are passed
2749 directly to the process invoked in the container, without
2750 indirection via a pseudo tty.
2751
2752 * systemd-nspawn gained a new switch to control the UNIX
2753 signal to use when killing the init process of the container
2754 when shutting down.
2755
2756 * systemd-nspawn gained a new --overlay= switch for mounting
2757 overlay file systems into the container using the new kernel
2758 overlayfs support.
2759
2760 * When a container image is imported via systemd-importd and
2761 the host file system is not btrfs, a loopback block device
2762 file is created in /var/lib/machines.raw with a btrfs file
2763 system inside. It is then mounted to /var/lib/machines to
2764 enable btrfs features for container management. The loopback
2765 file and btrfs file system is grown as needed when container
2766 images are imported via systemd-importd.
2767
2768 * systemd-machined/systemd-importd gained support for btrfs
2769 quota, to enforce container disk space limits on disk. This
2770 is exposed in "machinectl set-limit".
2771
2772 * systemd-importd now can import containers from local .tar,
2773 .raw and .qcow2 images, and export them to .tar and .raw. It
2774 can also import dkr v2 images now from the network (on top
2775 of v1 as before).
2776
2777 * systemd-importd gained support for verifying downloaded
2778 images with gpg2 (previously only gpg1 was supported).
2779
2780 * systemd-machined, systemd-logind, systemd: most bus calls
2781 are now accessible to unprivileged processes via
2782 PolicyKit. Also, systemd-logind will now allow users to kill
2783 their own sessions without further privileges or
2784 authorization.
2785
2786 * systemd-shutdownd has been removed. This service was
2787 previously responsible for implementing scheduled shutdowns
2788 as exposed in /usr/bin/shutdown's time parameter. This
2789 functionality has now been moved into systemd-logind and is
2790 accessible via a bus interface.
2791
2792 * "systemctl reboot" gained a new switch --firmware-setup that
2793 can be used to reboot into the EFI firmware setup, if that
2794 is available. systemd-logind now exposes an API on the bus
2795 to trigger such reboots, in case graphical desktop UIs want
2796 to cover this functionality.
2797
2798 * "systemctl enable", "systemctl disable" and "systemctl mask"
1579dd2c 2799 now support a new "--now" switch. If specified the units
481a0aa2
LP
2800 that are enabled will also be started, and the ones
2801 disabled/masked also stopped.
2802
2803 * The Gummiboot EFI boot loader tool has been merged into
1a2d5fbe
DH
2804 systemd, and renamed to "systemd-boot". The bootctl tool has been
2805 updated to support systemd-boot.
481a0aa2
LP
2806
2807 * An EFI kernel stub has been added that may be used to create
2808 kernel EFI binaries that contain not only the actual kernel,
2809 but also an initrd, boot splash, command line and OS release
2810 information. This combined binary can then be signed as a
2811 single image, so that the firmware can verify it all in one
1a2d5fbe 2812 step. systemd-boot has special support for EFI binaries created
481a0aa2
LP
2813 like this and can extract OS release information from them
2814 and show them in the boot menu. This functionality is useful
2815 to implement cryptographically verified boot schemes.
2816
2817 * Optional support has been added to systemd-fsck to pass
2818 fsck's progress report to an AF_UNIX socket in the file
2819 system.
2820
2821 * udev will no longer create device symlinks for all block
2822 devices by default. A blacklist for excluding special block
2823 devices from this logic has been turned into a whitelist
2824 that requires picking block devices explicitly that require
2825 device symlinks.
2826
2827 * A new (currently still internal) API sd-device.h has been
2828 added to libsystemd. This modernized API is supposed to
2829 replace libudev eventually. In fact, already much of libudev
2830 is now just a wrapper around sd-device.h.
2831
2832 * A new hwdb database for storing metadata about pointing
2833 stick devices has been added.
2834
2835 * systemd-tmpfiles gained support for setting file attributes
2836 similar to the "chattr" tool with new 'h' and 'H' lines.
2837
2838 * systemd-journald will no longer unconditionally set the
2839 btrfs NOCOW flag on new journal files. This is instead done
2840 with tmpfiles snippet using the new 'h' line type. This
2841 allows easy disabling of this logic, by masking the
2842 journal-nocow.conf tmpfiles file.
2843
2844 * systemd-journald will now translate audit message types to
2845 human readable identifiers when writing them to the
2846 journal. This should improve readability of audit messages.
2847
2848 * The LUKS logic gained support for the offset= and skip=
2849 options in /etc/crypttab, as previously implemented by
2850 Debian.
2851
2852 * /usr/lib/os-release gained a new optional field VARIANT= for
2853 distributions that support multiple variants (such as a
2854 desktop edition, a server edition, ...)
2855
2856 Contributions from: Aaro Koskinen, Adam Goode, Alban Crequy,
2857 Alberto Fanjul Alonso, Alexander Sverdlin, Alex Puchades, Alin
2858 Rauta, Alison Chaiken, Andrew Jones, Arend van Spriel,
2859 Benedikt Morbach, Benjamin Franzke, Benjamin Tissoires, Blaž
2860 Tomažič, Chris Morgan, Chris Morin, Colin Walters, Cristian
2861 Rodríguez, Daniel Buch, Daniel Drake, Daniele Medri, Daniel
2862 Mack, Daniel Mustieles, daurnimator, Davide Bettio, David
2863 Herrmann, David Strauss, Didier Roche, Dimitri John Ledkov,
2864 Eric Cook, Gavin Li, Goffredo Baroncelli, Hannes Reinecke,
2865 Hans de Goede, Hans-Peter Deifel, Harald Hoyer, Iago López
2866 Galeiras, Ivan Shapovalov, Jan Engelhardt, Jan Janssen, Jan
2867 Pazdziora, Jan Synacek, Jasper St. Pierre, Jay Faulkner, John
2868 Paul Adrian Glaubitz, Jonathon Gilbert, Karel Zak, Kay
2869 Sievers, Koen Kooi, Lennart Poettering, Lubomir Rintel, Lucas
2870 De Marchi, Lukas Nykryn, Lukas Rusak, Lukasz Skalski, Łukasz
2871 Stelmach, Mantas Mikulėnas, Marc-Antoine Perennou, Marcel
2872 Holtmann, Martin Pitt, Mathieu Chevrier, Matthew Garrett,
2873 Michael Biebl, Michael Marineau, Michael Olbrich, Michal
2874 Schmidt, Michal Sekletar, Mirco Tischler, Nir Soffer, Patrik
2875 Flykt, Pavel Odvody, Peter Hutterer, Peter Lemenkov, Peter
2876 Waller, Piotr Drąg, Raul Gutierrez S, Richard Maw, Ronny
2877 Chevalier, Ross Burton, Sebastian Rasmussen, Sergey Ptashnick,
2878 Seth Jennings, Shawn Landden, Simon Farnsworth, Stefan Junker,
2879 Stephen Gallagher, Susant Sahani, Sylvain Plantefève, Thomas
2880 Haller, Thomas Hindoe Paaboel Andersen, Tobias Hunger, Tom
2881 Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Will
2882 Woods, Zachary Cook, Zbigniew Jędrzejewski-Szmek
2883
ccddd104 2884 — Berlin, 2015-05-22
481a0aa2 2885
615aaf41
LP
2886CHANGES WITH 219:
2887
615aaf41
LP
2888 * Introduce a new API "sd-hwdb.h" for querying the hardware
2889 metadata database. With this minimal interface one can query
2890 and enumerate the udev hwdb, decoupled from the old libudev
2891 library. libudev's interface for this is now only a wrapper
2892 around sd-hwdb. A new tool systemd-hwdb has been added to
2893 interface with and update the database.
2894
2895 * When any of systemd's tools copies files (for example due to
2896 tmpfiles' C lines) a btrfs reflink will attempted first,
2897 before bytewise copying is done.
2898
2899 * systemd-nspawn gained a new --ephemeral switch. When
2900 specified a btrfs snapshot is taken of the container's root
2901 directory, and immediately removed when the container
2902 terminates again. Thus, a container can be started whose
2903 changes never alter the container's root directory, and are
2904 lost on container termination. This switch can also be used
2905 for starting a container off the root file system of the
2906 host without affecting the host OS. This switch is only
2907 available on btrfs file systems.
2908
2909 * systemd-nspawn gained a new --template= switch. It takes the
2910 path to a container tree to use as template for the tree
7edecf21 2911 specified via --directory=, should that directory be
615aaf41
LP
2912 missing. This allows instantiating containers dynamically,
2913 on first run. This switch is only available on btrfs file
2914 systems.
2915
2916 * When a .mount unit refers to a mount point on which multiple
2917 mounts are stacked, and the .mount unit is stopped all of
2918 the stacked mount points will now be unmounted until no
2919 mount point remains.
2920
2921 * systemd now has an explicit notion of supported and
2922 unsupported unit types. Jobs enqueued for unsupported unit
2923 types will now fail with an "unsupported" error code. More
2924 specifically .swap, .automount and .device units are not
2925 supported in containers, .busname units are not supported on
2926 non-kdbus systems. .swap and .automount are also not
2927 supported if their respective kernel compile time options
2928 are disabled.
2929
2930 * machinectl gained support for two new "copy-from" and
2931 "copy-to" commands for copying files from a running
2932 container to the host or vice versa.
2933
2934 * machinectl gained support for a new "bind" command to bind
2935 mount host directories into local containers. This is
2936 currently only supported for nspawn containers.
2937
2938 * networkd gained support for configuring bridge forwarding
2939 database entries (fdb) from .network files.
2940
2941 * A new tiny daemon "systemd-importd" has been added that can
2942 download container images in tar, raw, qcow2 or dkr formats,
2943 and make them available locally in /var/lib/machines, so
2944 that they can run as nspawn containers. The daemon can GPG
2945 verify the downloads (not supported for dkr, since it has no
2946 provisions for verifying downloads). It will transparently
2947 decompress bz2, xz, gzip compressed downloads if necessary,
2948 and restore sparse files on disk. The daemon uses privilege
2949 separation to ensure the actual download logic runs with
94e5ba37 2950 fewer privileges than the daemon itself. machinectl has
615aaf41
LP
2951 gained new commands "pull-tar", "pull-raw" and "pull-dkr" to
2952 make the functionality of importd available to the
2953 user. With this in place the Fedora and Ubuntu "Cloud"
2954 images can be downloaded and booted as containers unmodified
2955 (the Fedora images lack the appropriate GPG signature files
2956 currently, so they cannot be verified, but this will change
2957 soon, hopefully). Note that downloading images is currently
2958 only fully supported on btrfs.
2959
2960 * machinectl is now able to list container images found in
2961 /var/lib/machines, along with some metadata about sizes of
2962 disk and similar. If the directory is located on btrfs and
2963 quota is enabled, this includes quota display. A new command
2964 "image-status" has been added that shows additional
2965 information about images.
2966
2967 * machinectl is now able to clone container images
2968 efficiently, if the underlying file system (btrfs) supports
f59dba26 2969 it, with the new "machinectl clone" command. It also
615aaf41
LP
2970 gained commands for renaming and removing images, as well as
2971 marking them read-only or read-write (supported also on
2972 legacy file systems).
2973
2974 * networkd gained support for collecting LLDP network
2975 announcements, from hardware that supports this. This is
2976 shown in networkctl output.
2977
2978 * systemd-run gained support for a new -t (--pty) switch for
2979 invoking a binary on a pty whose input and output is
2980 connected to the invoking terminal. This allows executing
2981 processes as system services while interactively
2982 communicating with them via the terminal. Most interestingly
2983 this is supported across container boundaries. Invoking
2984 "systemd-run -t /bin/bash" is an alternative to running a
2985 full login session, the difference being that the former
2986 will not register a session, nor go through the PAM session
2987 setup.
2988
2989 * tmpfiles gained support for a new "v" line type for creating
2990 btrfs subvolumes. If the underlying file system is a legacy
2991 file system, this automatically degrades to creating a
2992 normal directory. Among others /var/lib/machines is now
2993 created like this at boot, should it be missing.
2994
2995 * The directory /var/lib/containers/ has been deprecated and
2996 been replaced by /var/lib/machines. The term "machines" has
2997 been used in the systemd context as generic term for both
2998 VMs and containers, and hence appears more appropriate for
2999 this, as the directory can also contain raw images bootable
3000 via qemu/kvm.
3001
3002 * systemd-nspawn when invoked with -M but without --directory=
3003 or --image= is now capable of searching for the container
3004 root directory, subvolume or disk image automatically, in
3005 /var/lib/machines. systemd-nspawn@.service has been updated
3006 to make use of this, thus allowing it to be used for raw
3007 disk images, too.
3008
3009 * A new machines.target unit has been introduced that is
3010 supposed to group all containers/VMs invoked as services on
3011 the system. systemd-nspawn@.service has been updated to
3012 integrate with that.
3013
3014 * machinectl gained a new "start" command, for invoking a
3015 container as a service. "machinectl start foo" is mostly
3016 equivalent to "systemctl start systemd-nspawn@foo.service",
3017 but handles escaping in a nicer way.
3018
3019 * systemd-nspawn will now mount most of the cgroupfs tree
3020 read-only into each container, with the exception of the
3021 container's own subtree in the name=systemd hierarchy.
3022
3023 * journald now sets the special FS_NOCOW file flag for its
3024 journal files. This should improve performance on btrfs, by
3025 avoiding heavy fragmentation when journald's write-pattern
3026 is used on COW file systems. It degrades btrfs' data
3027 integrity guarantees for the files to the same levels as for
3028 ext3/ext4 however. This should be OK though as journald does
3029 its own data integrity checks and all its objects are
3030 checksummed on disk. Also, journald should handle btrfs disk
3031 full events a lot more gracefully now, by processing SIGBUS
3032 errors, and not relying on fallocate() anymore.
3033
3034 * When journald detects that journal files it is writing to
3035 have been deleted it will immediately start new journal
3036 files.
3037
3038 * systemd now provides a way to store file descriptors
4c37970d 3039 per-service in PID 1. This is useful for daemons to ensure
615aaf41 3040 that fds they require are not lost during a daemon
94e5ba37 3041 restart. The fds are passed to the daemon on the next
615aaf41
LP
3042 invocation in the same way socket activation fds are
3043 passed. This is now used by journald to ensure that the
3044 various sockets connected to all the system's stdout/stderr
3045 are not lost when journald is restarted. File descriptors
3046 may be stored in PID 1 via the sd_pid_notify_with_fds() API,
3047 an extension to sd_notify(). Note that a limit is enforced
3048 on the number of fds a service can store in PID 1, and it
3049 defaults to 0, so that no fds may be stored, unless this is
3050 explicitly turned on.
3051
3052 * The default TERM variable to use for units connected to a
3053 terminal, when no other value is explicitly is set is now
3054 vt220 rather than vt102. This should be fairly safe still,
3055 but allows PgUp/PgDn work.
3056
3057 * The /etc/crypttab option header= as known from Debian is now
3058 supported.
3059
3060 * "loginctl user-status" and "loginctl session-status" will
3061 now show the last 10 lines of log messages of the
3062 user/session following the status output. Similar,
3063 "machinectl status" will show the last 10 log lines
3064 associated with a virtual machine or container
3065 service. (Note that this is usually not the log messages
3066 done in the VM/container itself, but simply what the
3067 container manager logs. For nspawn this includes all console
3068 output however.)
3069
3070 * "loginctl session-status" without further argument will now
3071 show the status of the session of the caller. Similar,
3072 "lock-session", "unlock-session", "activate",
3073 "enable-linger", "disable-linger" may now be called without
3074 session/user parameter in which case they apply to the
3075 caller's session/user.
3076
3077 * An X11 session scriptlet is now shipped that uploads
3078 $DISPLAY and $XAUTHORITY into the environment of the systemd
3079 --user daemon if a session begins. This should improve
3080 compatibility with X11 enabled applications run as systemd
3081 user services.
3082
3083 * Generators are now subject to masking via /etc and /run, the
3084 same way as unit files.
3085
3086 * networkd .network files gained support for configuring
3087 per-link IPv4/IPv6 packet forwarding as well as IPv4
3088 masquerading. This is by default turned on for veth links to
3089 containers, as registered by systemd-nspawn. This means that
3090 nspawn containers run with --network-veth will now get
3091 automatic routed access to the host's networks without any
3092 further configuration or setup, as long as networkd runs on
3093 the host.
3094
3095 * systemd-nspawn gained the --port= (-p) switch to expose TCP
3096 or UDP posts of a container on the host. With this in place
3097 it is possible to run containers with private veth links
3098 (--network-veth), and have their functionality exposed on
3099 the host as if their services were running directly on the
3100 host.
3101
dd2fd155 3102 * systemd-nspawn's --network-veth switch now gained a short
615aaf41
LP
3103 version "-n", since with the changes above it is now truly
3104 useful out-of-the-box. The systemd-nspawn@.service has been
3105 updated to make use of it too by default.
3106
3107 * systemd-nspawn will now maintain a per-image R/W lock, to
3108 ensure that the same image is not started more than once
3109 writable. (It's OK to run an image multiple times
3110 simultaneously in read-only mode.)
3111
3112 * systemd-nspawn's --image= option is now capable of
3113 dissecting and booting MBR and GPT disk images that contain
3114 only a single active Linux partition. Previously it
3115 supported only GPT disk images with proper GPT type
3116 IDs. This allows running cloud images from major
3117 distributions directly with systemd-nspawn, without
3118 modification.
3119
3120 * In addition to collecting mouse dpi data in the udev
3121 hardware database, there's now support for collecting angle
3122 information for mouse scroll wheels. The database is
7edecf21 3123 supposed to guarantee similar scrolling behavior on mice
615aaf41
LP
3124 that it knows about. There's also support for collecting
3125 information about Touchpad types.
3126
3127 * udev's input_id built-in will now also collect touch screen
3128 dimension data and attach it to probed devices.
3129
3130 * /etc/os-release gained support for a Distribution Privacy
3131 Policy link field.
3132
3133 * networkd gained support for creating "ipvlan", "gretap",
3134 "ip6gre", "ip6gretap" and "ip6tnl" network devices.
3135
3136 * systemd-tmpfiles gained support for "a" lines for setting
3137 ACLs on files.
3138
3139 * systemd-nspawn will now mount /tmp in the container to
3140 tmpfs, automatically.
3141
3142 * systemd now exposes the memory.usage_in_bytes cgroup
3143 attribute and shows it for each service in the "systemctl
3144 status" output, if available.
3145
3146 * When the user presses Ctrl-Alt-Del more than 7x within 2s an
3147 immediate reboot is triggered. This useful if shutdown is
3148 hung and is unable to complete, to expedite the
3149 operation. Note that this kind of reboot will still unmount
3150 all file systems, and hence should not result in fsck being
3151 run on next reboot.
3152
3153 * A .device unit for an optical block device will now be
3154 considered active only when a medium is in the drive. Also,
3155 mount units are now bound to their backing devices thus
3156 triggering automatic unmounting when devices become
3157 unavailable. With this in place systemd will now
3158 automatically unmount left-over mounts when a CD-ROM is
3159 ejected or an USB stick is yanked from the system.
3160
3161 * networkd-wait-online now has support for waiting for
3162 specific interfaces only (with globbing), and for giving up
3163 after a configurable timeout.
3164
3165 * networkd now exits when idle. It will be automatically
3166 restarted as soon as interfaces show up, are removed or
3167 change state. networkd will stay around as long as there is
3168 at least one DHCP state machine or similar around, that keep
3169 it non-idle.
3170
3171 * networkd may now configure IPv6 link-local addressing in
3172 addition to IPv4 link-local addressing.
3173
3174 * The IPv6 "token" for use in SLAAC may now be configured for
3175 each .network interface in networkd.
3176
3177 * Routes configured with networkd may now be assigned a scope
3178 in .network files.
3179
3180 * networkd's [Match] sections now support globbing and lists
3181 of multiple space-separated matches per item.
3182
11ea2781 3183 Contributions from: Alban Crequy, Alin Rauta, Andrey Chaser,
d2c643c6
LP
3184 Bastien Nocera, Bruno Bottazzini, Carlos Garnacho, Carlos
3185 Morata Castillo, Chris Atkinson, Chris J. Arges, Christian
3186 Kirbach, Christian Seiler, Christoph Brill, Colin Guthrie,
3187 Colin Walters, Cristian Rodríguez, Daniele Medri, Daniel Mack,
3188 Dave Reisner, David Herrmann, Djalal Harouni, Erik Auerswald,
3189 Filipe Brandenburger, Frank Theile, Gabor Kelemen, Gabriel de
3190 Perthuis, Harald Hoyer, Hui Wang, Ivan Shapovalov, Jan
3191 Engelhardt, Jan Synacek, Jay Faulkner, Johannes Hölzl, Jonas
3192 Ådahl, Jonathan Boulle, Josef Andersson, Kay Sievers, Ken
3193 Werner, Lennart Poettering, Lucas De Marchi, Lukas Märdian,
3194 Lukas Nykryn, Lukasz Skalski, Luke Shumaker, Mantas Mikulėnas,
3195 Manuel Mendez, Marcel Holtmann, Marc Schmitzer, Marko
3196 Myllynen, Martin Pitt, Maxim Mikityanskiy, Michael Biebl,
3197 Michael Marineau, Michael Olbrich, Michal Schmidt, Mindaugas
11ea2781
LP
3198 Baranauskas, Moez Bouhlel, Naveen Kumar, Patrik Flykt, Paul
3199 Martin, Peter Hutterer, Peter Mattern, Philippe De Swert,
3200 Piotr Drąg, Rafael Ferreira, Rami Rosen, Robert Milasan, Ronny
3201 Chevalier, Sangjung Woo, Sebastien Bacher, Sergey Ptashnick,
3202 Shawn Landden, Stéphane Graber, Susant Sahani, Sylvain
3203 Plantefève, Thomas Hindoe Paaboel Andersen, Tim JP, Tom
3204 Gundersen, Topi Miettinen, Torstein Husebø, Umut Tezduyar
d2c643c6
LP
3205 Lindskog, Veres Lajos, Vincent Batts, WaLyong Cho, Wieland
3206 Hoffmann, Zbigniew Jędrzejewski-Szmek
11ea2781 3207
ccddd104 3208 — Berlin, 2015-02-16
11ea2781 3209
d4f5a1f4
DH
3210CHANGES WITH 218:
3211
f9e00a9f
LP
3212 * When querying unit file enablement status (for example via
3213 "systemctl is-enabled"), a new state "indirect" is now known
3214 which indicates that a unit might not be enabled itself, but
c7683ffb 3215 another unit listed in its Also= setting might be.
f9e00a9f
LP
3216
3217 * Similar to the various existing ConditionXYZ= settings for
b938cb90 3218 units, there are now matching AssertXYZ= settings. While
f9e00a9f
LP
3219 failing conditions cause a unit to be skipped, but its job
3220 to succeed, failing assertions declared like this will cause
3221 a unit start operation and its job to fail.
3222
3223 * hostnamed now knows a new chassis type "embedded".
3224
3225 * systemctl gained a new "edit" command. When used on a unit
b938cb90 3226 file, this allows extending unit files with .d/ drop-in
f9e00a9f
LP
3227 configuration snippets or editing the full file (after
3228 copying it from /usr/lib to /etc). This will invoke the
3229 user's editor (as configured with $EDITOR), and reload the
3230 modified configuration after editing.
3231
3232 * "systemctl status" now shows the suggested enablement state
3233 for a unit, as declared in the (usually vendor-supplied)
3234 system preset files.
3235
3236 * nss-myhostname will now resolve the single-label host name
3237 "gateway" to the locally configured default IP routing
3238 gateways, ordered by their metrics. This assigns a stable
3239 name to the used gateways, regardless which ones are
3240 currently configured. Note that the name will only be
3241 resolved after all other name sources (if nss-myhostname is
3242 configured properly) and should hence not negatively impact
3243 systems that use the single-label host name "gateway" in
3244 other contexts.
3245
3246 * systemd-inhibit now allows filtering by mode when listing
3247 inhibitors.
3248
122676c9 3249 * Scope and service units gained a new "Delegate" boolean
b938cb90 3250 property, which, when set, allows processes running inside the
122676c9
LP
3251 unit to further partition resources. This is primarily
3252 useful for systemd user instances as well as container
3253 managers.
f9e00a9f
LP
3254
3255 * journald will now pick up audit messages directly from
3256 the kernel, and log them like any other log message. The
3257 audit fields are split up and fully indexed. This means that
3258 journalctl in many ways is now a (nicer!) alternative to
3259 ausearch, the traditional audit client. Note that this
b938cb90 3260 implements only a minimal audit client. If you want the
f9e00a9f
LP
3261 special audit modes like reboot-on-log-overflow, please use
3262 the traditional auditd instead, which can be used in
3263 parallel to journald.
3264
3265 * The ConditionSecurity= unit file option now understands the
3266 special string "audit" to check whether auditing is
3267 available.
3268
3269 * journalctl gained two new commands --vacuum-size= and
3270 --vacuum-time= to delete old journal files until the
a8eaaee7 3271 remaining ones take up no more than the specified size on disk,
f9e00a9f
LP
3272 or are not older than the specified time.
3273
3274 * A new, native PPPoE library has been added to sd-network,
3275 systemd's library of light-weight networking protocols. This
3276 library will be used in a future version of networkd to
3277 enable PPPoE communication without an external pppd daemon.
3278
3279 * The busctl tool now understands a new "capture" verb that
3280 works similar to "monitor", but writes a packet capture
3281 trace to STDOUT that can be redirected to a file which is
3282 compatible with libcap's capture file format. This can then
3283 be loaded in Wireshark and similar tools to inspect bus
3284 communication.
3285
3286 * The busctl tool now understands a new "tree" verb that shows
3287 the object trees of a specific service on the bus, or of all
3288 services.
3289
3290 * The busctl tool now understands a new "introspect" verb that
3291 shows all interfaces and members of objects on the bus,
3292 including their signature and values. This is particularly
3293 useful to get more information about bus objects shown by
3294 the new "busctl tree" command.
3295
3296 * The busctl tool now understands new verbs "call",
3297 "set-property" and "get-property" for invoking bus method
3298 calls, setting and getting bus object properties in a
3299 friendly way.
3300
3301 * busctl gained a new --augment-creds= argument that controls
3302 whether the tool shall augment credential information it
3303 gets from the bus with data from /proc, in a possibly
3304 race-ful way.
3305
3306 * nspawn's --link-journal= switch gained two new values
3307 "try-guest" and "try-host" that work like "guest" and
17c29493 3308 "host", but do not fail if the host has no persistent
f9e00a9f
LP
3309 journalling enabled. -j is now equivalent to
3310 --link-journal=try-guest.
3311
3312 * macvlan network devices created by nspawn will now have
3313 stable MAC addresses.
3314
3315 * A new SmackProcessLabel= unit setting has been added, which
3316 controls the SMACK security label processes forked off by
3317 the respective unit shall use.
3318
d4f5a1f4
DH
3319 * If compiled with --enable-xkbcommon, systemd-localed will
3320 verify x11 keymap settings by compiling the given keymap. It
3321 will spew out warnings if the compilation fails. This
3322 requires libxkbcommon to be installed.
3323
b938cb90 3324 * When a coredump is collected, a larger number of metadata
f9e00a9f 3325 fields is now collected and included in the journal records
b938cb90 3326 created for it. More specifically, control group membership,
f9e00a9f
LP
3327 environment variables, memory maps, working directory,
3328 chroot directory, /proc/$PID/status, and a list of open file
3329 descriptors is now stored in the log entry.
3330
17c29493 3331 * The udev hwdb now contains DPI information for mice. For
f9e00a9f
LP
3332 details see:
3333
3334 http://who-t.blogspot.de/2014/12/building-a-dpi-database-for-mice.html
3335
3336 * All systemd programs that read standalone configuration
3337 files in /etc now also support a corresponding series of
997b2b43
JT
3338 .conf.d configuration directories in /etc/, /run/,
3339 /usr/local/lib/, /usr/lib/, and (if configured with
3340 --enable-split-usr) /lib/. In particular, the following
3341 configuration files now have corresponding configuration
3342 directories: system.conf user.conf, logind.conf,
3343 journald.conf, sleep.conf, bootchart.conf, coredump.conf,
3344 resolved.conf, timesyncd.conf, journal-remote.conf, and
3345 journal-upload.conf. Note that distributions should use the
3346 configuration directories in /usr/lib/; the directories in
3347 /etc/ are reserved for the system administrator.
3348
f9e00a9f
LP
3349 * systemd-rfkill will no longer take the rfkill device name
3350 into account when storing rfkill state on disk, as the name
3351 might be dynamically assigned and not stable. Instead, the
3352 ID_PATH udev variable combined with the rfkill type (wlan,
3353 bluetooth, ...) is used.
3354
3355 * A new service systemd-machine-id-commit.service has been
3356 added. When used on systems where /etc is read-only during
3357 boot, and /etc/machine-id is not initialized (but an empty
3358 file), this service will copy the temporary machine ID
3359 created as replacement into /etc after the system is fully
3360 booted up. This is useful for systems that are freshly
3361 installed with a non-initialized machine ID, but should get
3362 a fixed machine ID for subsequent boots.
3363
3364 * networkd's .netdev files now provide a large set of
a8eaaee7 3365 configuration parameters for VXLAN devices. Similarly, the
f9e00a9f
LP
3366 bridge port cost parameter is now configurable in .network
3367 files. There's also new support for configuring IP source
3368 routing. networkd .link files gained support for a new
3369 OriginalName= match that is useful to match against the
3370 original interface name the kernel assigned. .network files
3371 may include MTU= and MACAddress= fields for altering the MTU
3372 and MAC address while being connected to a specific network
3373 interface.
3374
3375 * The LUKS logic gained supported for configuring
3376 UUID-specific key files. There's also new support for naming
3377 LUKS device from the kernel command line, using the new
3378 luks.name= argument.
3379
3380 * Timer units may now be transiently created via the bus API
3381 (this was previously already available for scope and service
3382 units). In addition it is now possible to create multiple
3383 transient units at the same time with a single bus call. The
3384 "systemd-run" tool has been updated to make use of this for
3385 running commands on a specified time, in at(1)-style.
3386
3387 * tmpfiles gained support for "t" lines, for assigning
3388 extended attributes to files. Among other uses this may be
3389 used to assign SMACK labels to files.
3390
13e92f39
LP
3391 Contributions from: Alin Rauta, Alison Chaiken, Andrej
3392 Manduch, Bastien Nocera, Chris Atkinson, Chris Leech, Chris
3393 Mayo, Colin Guthrie, Colin Walters, Cristian Rodríguez,
3394 Daniele Medri, Daniel Mack, Dan Williams, Dan Winship, Dave
3395 Reisner, David Herrmann, Didier Roche, Felipe Sateler, Gavin
3396 Li, Hans de Goede, Harald Hoyer, Iago López Galeiras, Ivan
3397 Shapovalov, Jakub Filak, Jan Janssen, Jan Synacek, Joe
3398 Lawrence, Josh Triplett, Kay Sievers, Lennart Poettering,
3399 Lukas Nykryn, Łukasz Stelmach, Maciej Wereski, Mantas
3400 Mikulėnas, Marcel Holtmann, Martin Pitt, Maurizio Lombardi,
3401 Michael Biebl, Michael Chapman, Michael Marineau, Michal
7da81d33
LP
3402 Schmidt, Michal Sekletar, Olivier Brunel, Patrik Flykt, Peter
3403 Hutterer, Przemyslaw Kedzierski, Rami Rosen, Ray Strode,
3404 Richard Schütz, Richard W.M. Jones, Ronny Chevalier, Ross
3405 Lagerwall, Sean Young, Stanisław Pitucha, Susant Sahani,
3406 Thomas Haller, Thomas Hindoe Paaboel Andersen, Tom Gundersen,
3407 Torstein Husebø, Umut Tezduyar Lindskog, Vicente Olivert
3408 Riera, WaLyong Cho, Wesley Dawson, Zbigniew Jędrzejewski-Szmek
13e92f39 3409
ccddd104 3410 — Berlin, 2014-12-10
f9e00a9f 3411
b62a309a
ZJS
3412CHANGES WITH 217:
3413
78b6b7ce
LP
3414 * journalctl gained the new options -t/--identifier= to match
3415 on the syslog identifier (aka "tag"), as well as --utc to
3416 show log timestamps in the UTC timezone. journalctl now also
3417 accepts -n/--lines=all to disable line capping in a pager.
b62a309a 3418
a65b8245
ZJS
3419 * journalctl gained a new switch, --flush, that synchronously
3420 flushes logs from /run/log/journal to /var/log/journal if
3421 persistent storage is enabled. systemd-journal-flush.service
3422 now waits until the operation is complete.
2a97b03b 3423
b62a309a
ZJS
3424 * Services can notify the manager before they start a reload
3425 (by sending RELOADING=1) or shutdown (by sending
4bdc60cb
LP
3426 STOPPING=1). This allows the manager to track and show the
3427 internal state of daemons and closes a race condition when
78b6b7ce 3428 the process is still running but has closed its D-Bus
4bdc60cb 3429 connection.
b62a309a 3430
78b6b7ce
LP
3431 * Services with Type=oneshot do not have to have any ExecStart
3432 commands anymore.
b62a309a
ZJS
3433
3434 * User units are now loaded also from
3435 $XDG_RUNTIME_DIR/systemd/user/. This is similar to the
3436 /run/systemd/user directory that was already previously
3437 supported, but is under the control of the user.
3438
4ffd29fd
LP
3439 * Job timeouts (i.e. time-outs on the time a job that is
3440 queued stays in the run queue) can now optionally result in
3441 immediate reboot or power-off actions (JobTimeoutAction= and
3442 JobTimeoutRebootArgument=). This is useful on ".target"
3443 units, to limit the maximum time a target remains
3444 undispatched in the run queue, and to trigger an emergency
3445 operation in such a case. This is now used by default to
3446 turn off the system if boot-up (as defined by everything in
3447 basic.target) hangs and does not complete for at least
3448 15min. Also, if power-off or reboot hang for at least 30min
3449 an immediate power-off/reboot operation is triggered. This
3450 functionality is particularly useful to increase reliability
3451 on embedded devices, but also on laptops which might
3452 accidentally get powered on when carried in a backpack and
3453 whose boot stays stuck in a hard disk encryption passphrase
3454 question.
3455
b62a309a
ZJS
3456 * systemd-logind can be configured to also handle lid switch
3457 events even when the machine is docked or multiple displays
3458 are attached (HandleLidSwitchDocked= option).
3459
3460 * A helper binary and a service have been added which can be
3461 used to resume from hibernation in the initramfs. A
3462 generator will parse the resume= option on the kernel
81c7dd89 3463 command line to trigger resume.
b62a309a 3464
78b6b7ce
LP
3465 * A user console daemon systemd-consoled has been
3466 added. Currently, it is a preview, and will so far open a
3467 single terminal on each session of the user marked as
09077149 3468 Desktop=systemd-console.
b62a309a
ZJS
3469
3470 * Route metrics can be specified for DHCP routes added by
3471 systemd-networkd.
3472
ba8df74b 3473 * The SELinux context of socket-activated services can be set
78b6b7ce 3474 from the information provided by the networking stack
b62a309a
ZJS
3475 (SELinuxContextFromNet= option).
3476
3477 * Userspace firmware loading support has been removed and
3478 the minimum supported kernel version is thus bumped to 3.7.
3479
3480 * Timeout for udev workers has been increased from 1 to 3
3481 minutes, but a warning will be printed after 1 minute to
3482 help diagnose kernel modules that take a long time to load.
3483
78b6b7ce 3484 * Udev rules can now remove tags on devices with TAG-="foobar".
b62a309a 3485
4bdc60cb 3486 * systemd's readahead implementation has been removed. In many
f6d1de85 3487 circumstances it didn't give expected benefits even for
b62a309a 3488 rotational disk drives and was becoming less relevant in the
78b6b7ce
LP
3489 age of SSDs. As none of the developers has been using
3490 rotating media anymore, and nobody stepped up to actively
3491 maintain this component of systemd it has now been removed.
b62a309a 3492
c4ac9900 3493 * Swap units can use Options= to specify discard options.
b62a309a
ZJS
3494 Discard options specified for swaps in /etc/fstab are now
3495 respected.
3496
3497 * Docker containers are now detected as a separate type of
3498 virtualization.
3499
3500 * The Password Agent protocol gained support for queries where
ba8df74b 3501 the user input is shown, useful e.g. for user names.
78b6b7ce
LP
3502 systemd-ask-password gained a new --echo option to turn that
3503 on.
b62a309a 3504
e6c253e3
MS
3505 * The default sysctl.d/ snippets will now set:
3506
3507 net.core.default_qdisc = fq_codel
3508
ba8df74b
KS
3509 This selects Fair Queuing Controlled Delay as the default
3510 queuing discipline for network interfaces. fq_codel helps
e6c253e3
MS
3511 fight the network bufferbloat problem. It is believed to be
3512 a good default with no tuning required for most workloads.
3513 Downstream distributions may override this choice. On 10Gbit
3514 servers that do not do forwarding, "fq" may perform better.
3515 Systems without a good clocksource should use "pfifo_fast".
3516
4bdc60cb
LP
3517 * If kdbus is enabled during build a new option BusPolicy= is
3518 available for service units, that allows locking all service
3519 processes into a stricter bus policy, in order to limit
3520 access to various bus services, or even hide most of them
3521 from the service's view entirely.
3522
3523 * networkctl will now show the .network and .link file
3524 networkd has applied to a specific interface.
3525
3526 * sd-login gained a new API call sd_session_get_desktop() to
3527 query which desktop environment has been selected for a
3528 session.
3529
3530 * UNIX utmp support is now compile-time optional to support
3531 legacy-free systems.
3532
78b6b7ce
LP
3533 * systemctl gained two new commands "add-wants" and
3534 "add-requires" for pulling in units from specific targets
3535 easily.
3536
3537 * If the word "rescue" is specified on the kernel command line
3538 the system will now boot into rescue mode (aka
3539 rescue.target), which was previously available only by
3540 specifying "1" or "systemd.unit=rescue.target" on the kernel
3541 command line. This new kernel command line option nicely
3542 mirrors the already existing "emergency" kernel command line
3543 option.
3544
3545 * New kernel command line options mount.usr=, mount.usrflags=,
d4474c41 3546 mount.usrfstype= have been added that match root=, rootflags=,
78b6b7ce
LP
3547 rootfstype= but allow mounting a specific file system to
3548 /usr.
3549
f6d1de85 3550 * The $NOTIFY_SOCKET is now also passed to control processes of
78b6b7ce
LP
3551 services, not only the main process.
3552
3553 * This version reenables support for fsck's -l switch. This
3554 means at least version v2.25 of util-linux is required for
3555 operation, otherwise dead-locks on device nodes may
3556 occur. Again: you need to update util-linux to at least
3557 v2.25 when updating systemd to v217.
3558
3769415e
TT
3559 * The "multi-seat-x" tool has been removed from systemd, as
3560 its functionality has been integrated into X servers 1.16,
3561 and the tool is hence redundant. It is recommended to update
3562 display managers invoking this tool to simply invoke X
3563 directly from now on, again.
3564
fae9332b
LP
3565 * Support for the new ALLOW_INTERACTIVE_AUTHORIZATION D-Bus
3566 message flag has been added for all of systemd's PolicyKit
3567 authenticated method calls has been added. In particular
3568 this now allows optional interactive authorization via
ba8df74b 3569 PolicyKit for many of PID1's privileged operations such as
fae9332b
LP
3570 unit file enabling and disabling.
3571
cfa1571b
LP
3572 * "udevadm hwdb --update" learnt a new switch "--usr" for
3573 placing the rebuilt hardware database in /usr instead of
3574 /etc. When used only hardware database entries stored in
3575 /usr will be used, and any user database entries in /etc are
3576 ignored. This functionality is useful for vendors to ship a
3577 pre-built database on systems where local configuration is
3578 unnecessary or unlikely.
3579
7e63dd10
LP
3580 * Calendar time specifications in .timer units now also
3581 understand the strings "semi-annually", "quarterly" and
ba8df74b 3582 "minutely" as shortcuts (in addition to the preexisting
7e63dd10
LP
3583 "anually", "hourly", ...).
3584
d4474c41
TG
3585 * systemd-tmpfiles will now correctly create files in /dev
3586 at boot which are marked for creation only at boot. It is
3587 recommended to always create static device nodes with 'c!'
3588 and 'b!', so that they are created only at boot and not
3589 overwritten at runtime.
3590
3b187c5c
LP
3591 * When the watchdog logic is used for a service (WatchdogSec=)
3592 and the watchdog timeout is hit the service will now be
3593 terminated with SIGABRT (instead of just SIGTERM), in order
3594 to make sure a proper coredump and backtrace is
3595 generated. This ensures that hanging services will result in
3596 similar coredump/backtrace behaviour as services that hit a
3597 segmentation fault.
3598
4b08dd87
LP
3599 Contributions from: Andreas Henriksson, Andrei Borzenkov,
3600 Angus Gibson, Ansgar Burchardt, Ben Wolsieffer, Brandon L.
3601 Black, Christian Hesse, Cristian Rodríguez, Daniel Buch,
3602 Daniele Medri, Daniel Mack, Dan Williams, Dave Reisner, David
3603 Herrmann, David Sommerseth, David Strauss, Emil Renner
3604 Berthing, Eric Cook, Evangelos Foutras, Filipe Brandenburger,
3605 Gustavo Sverzut Barbieri, Hans de Goede, Harald Hoyer, Hristo
3606 Venev, Hugo Grostabussiat, Ivan Shapovalov, Jan Janssen, Jan
3607 Synacek, Jonathan Liu, Juho Son, Karel Zak, Kay Sievers, Klaus
3608 Purer, Koen Kooi, Lennart Poettering, Lukas Nykryn, Lukasz
3609 Skalski, Łukasz Stelmach, Mantas Mikulėnas, Marcel Holtmann,
3610 Marius Tessmann, Marko Myllynen, Martin Pitt, Michael Biebl,
3611 Michael Marineau, Michael Olbrich, Michael Scherer, Michal
3612 Schmidt, Michal Sekletar, Miroslav Lichvar, Patrik Flykt,
3613 Philippe De Swert, Piotr Drąg, Rahul Sundaram, Richard
3614 Weinberger, Robert Milasan, Ronny Chevalier, Ruben Kerkhof,
3615 Santiago Vila, Sergey Ptashnick, Simon McVittie, Sjoerd
3616 Simons, Stefan Brüns, Steven Allen, Steven Noonan, Susant
3617 Sahani, Sylvain Plantefève, Thomas Hindoe Paaboel Andersen,
3618 Timofey Titovets, Tobias Hunger, Tom Gundersen, Torstein
3619 Husebø, Umut Tezduyar Lindskog, WaLyong Cho, Zbigniew
13e92f39 3620 Jędrzejewski-Szmek
4b08dd87 3621
ccddd104 3622 — Berlin, 2014-10-28
4b08dd87 3623
b72ddf0f 3624CHANGES WITH 216:
b2ca0d63
LP
3625
3626 * timedated no longer reads NTP implementation unit names from
b72ddf0f 3627 /usr/lib/systemd/ntp-units.d/*.list. Alternative NTP
b2ca0d63
LP
3628 implementations should add a
3629
b72ddf0f 3630 Conflicts=systemd-timesyncd.service
b2ca0d63
LP
3631
3632 to their unit files to take over and replace systemd's NTP
3633 default functionality.
3634
3635 * systemd-sysusers gained a new line type "r" for configuring
3636 which UID/GID ranges to allocate system users/groups
3637 from. Lines of type "u" may now add an additional column
3638 that specifies the home directory for the system user to be
3639 created. Also, systemd-sysusers may now optionally read user
3640 information from STDIN instead of a file. This is useful for
3641 invoking it from RPM preinst scriptlets that need to create
3642 users before the first RPM file is installed since these
3643 files might need to be owned by them. A new
3644 %sysusers_create_inline RPM macro has been introduced to do
3645 just that. systemd-sysusers now updates the shadow files as
3646 well as the user/group databases, which should enhance
3647 compatibility with certain tools like grpck.
3648
3649 * A number of bus APIs of PID 1 now optionally consult
5f02e26c 3650 PolicyKit to permit access for otherwise unprivileged
b2ca0d63
LP
3651 clients under certain conditions. Note that this currently
3652 doesn't support interactive authentication yet, but this is
3653 expected to be added eventually, too.
3654
3655 * /etc/machine-info now has new fields for configuring the
3656 deployment environment of the machine, as well as the
3657 location of the machine. hostnamectl has been updated with
3658 new command to update these fields.
3659
3660 * systemd-timesyncd has been updated to automatically acquire
3661 NTP server information from systemd-networkd, which might
3662 have been discovered via DHCP.
3663
3664 * systemd-resolved now includes a caching DNS stub resolver
3665 and a complete LLMNR name resolution implementation. A new
daa05349
AB
3666 NSS module "nss-resolve" has been added which can be used
3667 instead of glibc's own "nss-dns" to resolve hostnames via
b2ca0d63
LP
3668 systemd-resolved. Hostnames, addresses and arbitrary RRs may
3669 be resolved via systemd-resolved D-Bus APIs. In contrast to
3670 the glibc internal resolver systemd-resolved is aware of
3671 multi-homed system, and keeps DNS server and caches separate
5f02e26c 3672 and per-interface. Queries are sent simultaneously on all
b2ca0d63
LP
3673 interfaces that have DNS servers configured, in order to
3674 properly handle VPNs and local LANs which might resolve
3675 separate sets of domain names. systemd-resolved may acquire
a1a4a25e 3676 DNS server information from systemd-networkd automatically,
b2ca0d63
LP
3677 which in turn might have discovered them via DHCP. A tool
3678 "systemd-resolve-host" has been added that may be used to
3679 query the DNS logic in resolved. systemd-resolved implements
3680 IDNA and automatically uses IDNA or UTF-8 encoding depending
3681 on whether classic DNS or LLMNR is used as transport. In the
3682 next releases we intend to add a DNSSEC and mDNS/DNS-SD
3683 implementation to systemd-resolved.
3684
3685 * A new NSS module nss-mymachines has been added, that
3686 automatically resolves the names of all local registered
3687 containers to their respective IP addresses.
3688
3689 * A new client tool "networkctl" for systemd-networkd has been
3690 added. It currently is entirely passive and will query
3691 networking configuration from udev, rtnetlink and networkd,
5f02e26c 3692 and present it to the user in a very friendly
b2ca0d63
LP
3693 way. Eventually, we hope to extend it to become a full
3694 control utility for networkd.
3695
3696 * .socket units gained a new DeferAcceptSec= setting that
3697 controls the kernels' TCP_DEFER_ACCEPT sockopt for
a8eaaee7 3698 TCP. Similarly, support for controlling TCP keep-alive
b2ca0d63
LP
3699 settings has been added (KeepAliveTimeSec=,
3700 KeepAliveIntervalSec=, KeepAliveProbes=). Also, support for
3701 turning off Nagle's algorithm on TCP has been added
3702 (NoDelay=).
3703
a1a4a25e 3704 * logind learned a new session type "web", for use in projects
b2ca0d63
LP
3705 like Cockpit which register web clients as PAM sessions.
3706
3707 * timer units with at least one OnCalendar= setting will now
46ae28d8 3708 be started only after time-sync.target has been
b2ca0d63
LP
3709 reached. This way they will not elapse before the system
3710 clock has been corrected by a local NTP client or
3711 similar. This is particular useful on RTC-less embedded
3712 machines, that come up with an invalid system clock.
3713
3714 * systemd-nspawn's --network-veth= switch should now result in
3715 stable MAC addresses for both the outer and the inner side
3716 of the link.
3717
3718 * systemd-nspawn gained a new --volatile= switch for running
3719 container instances with /etc or /var unpopulated.
3720
3721 * The kdbus client code has been updated to use the new Linux
3722 3.17 memfd subsystem instead of the old kdbus-specific one.
3723
3724 * systemd-networkd's DHCP client and server now support
01da80b1
LP
3725 FORCERENEW. There are also new configuration options to
3726 configure the vendor client identifier and broadcast mode
3727 for DHCP.
b2ca0d63
LP
3728
3729 * systemd will no longer inform the kernel about the current
3730 timezone, as this is necessarily incorrect and racy as the
3731 kernel has no understanding of DST and similar
3732 concepts. This hence means FAT timestamps will be always
3733 considered UTC, similar to what Android is already
3734 doing. Also, when the RTC is configured to the local time
3735 (rather than UTC) systemd will never synchronize back to it,
3736 as this might confuse Windows at a later boot.
3737
3738 * systemd-analyze gained a new command "verify" for offline
3739 validation of unit files.
3740
3741 * systemd-networkd gained support for a couple of additional
3742 settings for bonding networking setups. Also, the metric for
3743 statically configured routes may now be configured. For
3744 network interfaces where this is appropriate the peer IP
3745 address may now be configured.
3746
26568403
TG
3747 * systemd-networkd's DHCP client will no longer request
3748 broadcasting by default, as this tripped up some networks.
3749 For hardware where broadcast is required the feature should
3750 be switched back on using RequestBroadcast=yes.
3751
3752 * systemd-networkd will now set up IPv4LL addresses (when
3753 enabled) even if DHCP is configured successfully.
3754
3755 * udev will now default to respect network device names given
3756 by the kernel when the kernel indicates that these are
3757 predictable. This behavior can be tweaked by changing
3758 NamePolicy= in the relevant .link file.
3759
b2ca0d63
LP
3760 * A new library systemd-terminal has been added that
3761 implements full TTY stream parsing and rendering. This
3762 library is supposed to be used later on for implementing a
3763 full userspace VT subsystem, replacing the current kernel
3764 implementation.
3765
3766 * A new tool systemd-journal-upload has been added to push
3767 journal data to a remote system running
3768 systemd-journal-remote.
3769
3770 * journald will no longer forward all local data to another
3771 running syslog daemon. This change has been made because
3772 rsyslog (which appears to be the most commonly used syslog
3773 implementation these days) no longer makes use of this, and
3774 instead pulls the data out of the journal on its own. Since
5f02e26c 3775 forwarding the messages to a non-existent syslog server is
b2ca0d63
LP
3776 more expensive than we assumed we have now turned this
3777 off. If you run a syslog server that is not a recent rsyslog
3778 version, you have to turn this option on again
3779 (ForwardToSyslog= in journald.conf).
3780
3781 * journald now optionally supports the LZ4 compressor for
3782 larger journal fields. This compressor should perform much
3783 better than XZ which was the previous default.
3784
3785 * machinectl now shows the IP addresses of local containers,
3786 if it knows them, plus the interface name of the container.
3787
3788 * A new tool "systemd-escape" has been added that makes it
3789 easy to escape strings to build unit names and similar.
3790
3791 * sd_notify() messages may now include a new ERRNO= field
3792 which is parsed and collected by systemd and shown among the
3793 "systemctl status" output for a service.
3794
3795 * A new component "systemd-firstboot" has been added that
3796 queries the most basic systemd information (timezone,
a1a4a25e 3797 hostname, root password) interactively on first
b2ca0d63
LP
3798 boot. Alternatively it may also be used to provision these
3799 things offline on OS images installed into directories.
3800
01da80b1
LP
3801 * The default sysctl.d/ snippets will now set
3802
3803 net.ipv4.conf.default.promote_secondaries=1
3804
3805 This has the benefit of no flushing secondary IP addresses
3806 when primary addresses are removed.
3807
b2ca0d63
LP
3808 Contributions from: Ansgar Burchardt, Bastien Nocera, Colin
3809 Walters, Dan Dedrick, Daniel Buch, Daniel Korostil, Daniel
3810 Mack, Dan Williams, Dave Reisner, David Herrmann, Denis
3811 Kenzior, Eelco Dolstra, Eric Cook, Hannes Reinecke, Harald
3812 Hoyer, Hong Shick Pak, Hui Wang, Jean-André Santoni, Jóhann
3813 B. Guðmundsson, Jon Severinsson, Karel Zak, Kay Sievers, Kevin
3814 Wells, Lennart Poettering, Lukas Nykryn, Mantas Mikulėnas,
3815 Marc-Antoine Perennou, Martin Pitt, Michael Biebl, Michael
3816 Marineau, Michael Olbrich, Michal Schmidt, Michal Sekletar,
3817 Miguel Angel Ajo, Mike Gilbert, Olivier Brunel, Robert
3818 Schiele, Ronny Chevalier, Simon McVittie, Sjoerd Simons, Stef
3819 Walter, Steven Noonan, Susant Sahani, Tanu Kaskinen, Thomas
3820 Blume, Thomas Hindoe Paaboel Andersen, Timofey Titovets,
3821 Tobias Geerinckx-Rice, Tomasz Torcz, Tom Gundersen, Umut
3822 Tezduyar Lindskog, Zbigniew Jędrzejewski-Szmek
3823
ccddd104 3824 — Berlin, 2014-08-19
b72ddf0f 3825
3dff3e00 3826CHANGES WITH 215:
24a2bf4c
LP
3827
3828 * A new tool systemd-sysusers has been added. This tool
3829 creates system users and groups in /etc/passwd and
3830 /etc/group, based on static declarative system user/group
3831 definitions in /usr/lib/sysusers.d/. This is useful to
3832 enable factory resets and volatile systems that boot up with
3833 an empty /etc directory, and thus need system users and
3834 groups created during early boot. systemd now also ships
3835 with two default sysusers.d/ files for the most basic
3836 users and groups systemd and the core operating system
3837 require.
3838
3839 * A new tmpfiles snippet has been added that rebuilds the
3840 essential files in /etc on boot, should they be missing.
3841
3842 * A directive for ensuring automatic clean-up of
3843 /var/cache/man/ has been removed from the default
3844 configuration. This line should now be shipped by the man
3845 implementation. The necessary change has been made to the
3846 man-db implementation. Note that you need to update your man
3847 implementation to one that ships this line, otherwise no
3848 automatic clean-up of /var/cache/man will take place.
3849
3850 * A new condition ConditionNeedsUpdate= has been added that
3851 may conditionalize services to only run when /etc or /var
3852 are "older" than the vendor operating system resources in
3853 /usr. This is useful for reconstructing or updating /etc
3854 after an offline update of /usr or a factory reset, on the
3855 next reboot. Services that want to run once after such an
3856 update or reset should use this condition and order
3857 themselves before the new systemd-update-done.service, which
3858 will mark the two directories as fully updated. A number of
3859 service files have been added making use of this, to rebuild
3860 the udev hardware database, the journald message catalog and
3861 dynamic loader cache (ldconfig). The systemd-sysusers tool
3862 described above also makes use of this now. With this in
3863 place it is now possible to start up a minimal operating
ce1dde29 3864 system with /etc empty cleanly. For more information on the
24a2bf4c
LP
3865 concepts involved see this recent blog story:
3866
3867 http://0pointer.de/blog/projects/stateless.html
3868
3869 * A new system group "input" has been introduced, and all
3870 input device nodes get this group assigned. This is useful
3871 for system-level software to get access to input devices. It
3dff3e00
KS
3872 complements what is already done for "audio" and "video".
3873
24a2bf4c
LP
3874 * systemd-networkd learnt minimal DHCPv4 server support in
3875 addition to the existing DHCPv4 client support. It also
3876 learnt DHCPv6 client and IPv6 Router Solicitation client
3877 support. The DHCPv4 client gained support for static routes
3878 passed in from the server. Note that the [DHCPv4] section
3879 known in older systemd-networkd versions has been renamed to
3880 [DHCP] and is now also used by the DHCPv6 client. Existing
c7435cc9
LP
3881 .network files using settings of this section should be
3882 updated, though compatibility is maintained. Optionally, the
3883 client hostname may now be sent to the DHCP server.
24a2bf4c 3884
c7435cc9
LP
3885 * networkd gained support for vxlan virtual networks as well
3886 as tun/tap and dummy devices.
24a2bf4c
LP
3887
3888 * networkd gained support for automatic allocation of address
3889 ranges for interfaces from a system-wide pool of
3890 addresses. This is useful for dynamically managing a large
3891 number of interfaces with a single network configuration
3892 file. In particular this is useful to easily assign
3893 appropriate IP addresses to the veth links of a large number
3894 of nspawn instances.
3895
3896 * RPM macros for processing sysusers, sysctl and binfmt
3897 drop-in snippets at package installation time have been
3898 added.
3899
3900 * The /etc/os-release file should now be placed in
3901 /usr/lib/os-release. The old location is automatically
3902 created as symlink. /usr/lib is the more appropriate
3903 location of this file, since it shall actually describe the
3904 vendor operating system shipped in /usr, and not the
3905 configuration stored in /etc.
3906
3907 * .mount units gained a new boolean SloppyOptions= setting
3908 that maps to mount(8)'s -s option which enables permissive
3909 parsing of unknown mount options.
3910
3911 * tmpfiles learnt a new "L+" directive which creates a symlink
3912 but (unlike "L") deletes a pre-existing file first, should
3913 it already exist and not already be the correct
a8eaaee7 3914 symlink. Similarly, "b+", "c+" and "p+" directives have been
24a2bf4c
LP
3915 added as well, which create block and character devices, as
3916 well as fifos in the filesystem, possibly removing any
3917 pre-existing files of different types.
3918
3919 * For tmpfiles' "L", "L+", "C" and "C+" directives the final
3920 'argument' field (which so far specified the source to
ce1dde29 3921 symlink/copy the files from) is now optional. If omitted the
24a2bf4c
LP
3922 same file os copied from /usr/share/factory/ suffixed by the
3923 full destination path. This is useful for populating /etc
3924 with essential files, by copying them from vendor defaults
3925 shipped in /usr/share/factory/etc.
3926
3927 * A new command "systemctl preset-all" has been added that
3928 applies the service preset settings to all installed unit
3929 files. A new switch --preset-mode= has been added that
3930 controls whether only enable or only disable operations
3931 shall be executed.
3932
3933 * A new command "systemctl is-system-running" has been added
3934 that allows checking the overall state of the system, for
ce1dde29 3935 example whether it is fully up and running.
24a2bf4c
LP
3936
3937 * When the system boots up with an empty /etc, the equivalent
3938 to "systemctl preset-all" is executed during early boot, to
3939 make sure all default services are enabled after a factory
3940 reset.
3941
3942 * systemd now contains a minimal preset file that enables the
3943 most basic services systemd ships by default.
3944
3945 * Unit files' [Install] section gained a new DefaultInstance=
3946 field for defining the default instance to create if a
3947 template unit is enabled with no instance specified.
3948
3949 * A new passive target cryptsetup-pre.target has been added
3950 that may be used by services that need to make they run and
3951 finish before the first LUKS cryptographic device is set up.
3952
3953 * The /dev/loop-control and /dev/btrfs-control device nodes
3954 are now owned by the "disk" group by default, opening up
3955 access to this group.
3956
3957 * systemd-coredump will now automatically generate a
3958 stack trace of all core dumps taking place on the system,
3959 based on elfutils' libdw library. This stack trace is logged
3960 to the journal.
3961
3962 * systemd-coredump may now optionally store coredumps directly
3963 on disk (in /var/lib/systemd/coredump, possibly compressed),
3964 instead of storing them unconditionally in the journal. This
3965 mode is the new default. A new configuration file
3966 /etc/systemd/coredump.conf has been added to configure this
3967 and other parameters of systemd-coredump.
3968
3969 * coredumpctl gained a new "info" verb to show details about a
3970 specific coredump. A new switch "-1" has also been added
3971 that makes sure to only show information about the most
3972 recent entry instead of all entries. Also, as the tool is
3973 generally useful now the "systemd-" prefix of the binary
3974 name has been removed. Distributions that want to maintain
3975 compatibility with the old name should add a symlink from
3976 the old name to the new name.
3977
3978 * journald's SplitMode= now defaults to "uid". This makes sure
ce1dde29 3979 that unprivileged users can access their own coredumps with
24a2bf4c
LP
3980 coredumpctl without restrictions.
3981
3982 * New kernel command line options "systemd.wants=" (for
3983 pulling an additional unit during boot), "systemd.mask="
3984 (for masking a specific unit for the boot), and
3985 "systemd.debug-shell" (for enabling the debug shell on tty9)
3986 have been added. This is implemented in the new generator
3987 "systemd-debug-generator".
3988
3989 * systemd-nspawn will now by default filter a couple of
3990 syscalls for containers, among them those required for
3991 kernel module loading, direct x86 IO port access, swap
3992 management, and kexec. Most importantly though
3993 open_by_handle_at() is now prohibited for containers,
3994 closing a hole similar to a recently discussed vulnerability
3995 in docker regarding access to files on file hierarchies the
b938cb90
JE
3996 container should normally not have access to. Note that, for
3997 nspawn, we generally make no security claims anyway (and
24a2bf4c
LP
3998 this is explicitly documented in the man page), so this is
3999 just a fix for one of the most obvious problems.
4000
4001 * A new man page file-hierarchy(7) has been added that
4002 contains a minimized, modernized version of the file system
4003 layout systemd expects, similar in style to the FHS
c7435cc9
LP
4004 specification or hier(5). A new tool systemd-path(1) has
4005 been added to query many of these paths for the local
4006 machine and user.
24a2bf4c
LP
4007
4008 * Automatic time-based clean-up of $XDG_RUNTIME_DIR is no
4009 longer done. Since the directory now has a per-user size
4010 limit, and is cleaned on logout this appears unnecessary,
4011 in particular since this now brings the lifecycle of this
4012 directory closer in line with how IPC objects are handled.
4013
4014 * systemd.pc now exports a number of additional directories,
4015 including $libdir (which is useful to identify the library
4016 path for the primary architecture of the system), and a
4017 couple of drop-in directories.
4018
3058e017
TLSC
4019 * udev's predictable network interface names now use the dev_port
4020 sysfs attribute, introduced in linux 3.15 instead of dev_id to
4021 distinguish between ports of the same PCI function. dev_id should
4022 only be used for ports using the same HW address, hence the need
4023 for dev_port.
4024
c7435cc9
LP
4025 * machined has been updated to export the OS version of a
4026 container (read from /etc/os-release and
4027 /usr/lib/os-release) on the bus. This is now shown in
4028 "machinectl status" for a machine.
4029
4030 * A new service setting RestartForceExitStatus= has been
4031 added. If configured to a set of exit signals or process
4032 return values, the service will be restarted when the main
4033 daemon process exits with any of them, regardless of the
4034 Restart= setting.
4035
4036 * systemctl's -H switch for connecting to remote systemd
4037 machines has been extended so that it may be used to
4038 directly connect to a specific container on the
4039 host. "systemctl -H root@foobar:waldi" will now connect as
4040 user "root" to host "foobar", and then proceed directly to
4041 the container named "waldi". Note that currently you have to
4042 authenticate as user "root" for this to work, as entering
4043 containers is a privileged operation.
4044
4045 Contributions from: Andreas Henriksson, Benjamin Steinwender,
4046 Carl Schaefer, Christian Hesse, Colin Ian King, Cristian
4047 Rodríguez, Daniel Mack, Dave Reisner, David Herrmann, Eugene
4048 Yakubovich, Filipe Brandenburger, Frederic Crozat, Hristo
4049 Venev, Jan Engelhardt, Jonathan Boulle, Kay Sievers, Lennart
4050 Poettering, Luke Shumaker, Mantas Mikulėnas, Marc-Antoine
4051 Perennou, Marcel Holtmann, Michael Marineau, Michael Olbrich,
4052 Michał Bartoszkiewicz, Michal Sekletar, Patrik Flykt, Ronan Le
4053 Martret, Ronny Chevalier, Ruediger Oertel, Steven Noonan,
4054 Susant Sahani, Thadeu Lima de Souza Cascardo, Thomas Hindoe
4055 Paaboel Andersen, Tom Gundersen, Tom Hirst, Umut Tezduyar
4056 Lindskog, Uoti Urpala, Zbigniew Jędrzejewski-Szmek
4057
ccddd104 4058 — Berlin, 2014-07-03
c7435cc9 4059
4196a3ea
KS
4060CHANGES WITH 214:
4061
4062 * As an experimental feature, udev now tries to lock the
4063 disk device node (flock(LOCK_SH|LOCK_NB)) while it
4064 executes events for the disk or any of its partitions.
4065 Applications like partitioning programs can lock the
4066 disk device node (flock(LOCK_EX)) and claim temporary
4067 device ownership that way; udev will entirely skip all event
4068 handling for this disk and its partitions. If the disk
4069 was opened for writing, the close will trigger a partition
4070 table rescan in udev's "watch" facility, and if needed
71449caf 4071 synthesize "change" events for the disk and all its partitions.
8d0e0ddd 4072 This is now unconditionally enabled, and if it turns out to
4196a3ea 4073 cause major problems, we might turn it on only for specific
45df8656 4074 devices, or might need to disable it entirely. Device Mapper
4196a3ea
KS
4075 devices are excluded from this logic.
4076
04e91da2
LP
4077 * We temporarily dropped the "-l" switch for fsck invocations,
4078 since they collide with the flock() logic above. util-linux
4079 upstream has been changed already to avoid this conflict,
4080 and we will readd "-l" as soon as util-linux with this
4081 change has been released.
4082
4083 * The dependency on libattr has been removed. Since a long
8d0e0ddd 4084 time, the extended attribute calls have moved to glibc, and
04e91da2
LP
4085 libattr is thus unnecessary.
4086
ce830873 4087 * Virtualization detection works without privileges now. This
04e91da2
LP
4088 means the systemd-detect-virt binary no longer requires
4089 CAP_SYS_PTRACE file capabilities, and our daemons can run
71449caf 4090 with fewer privileges.
04e91da2
LP
4091
4092 * systemd-networkd now runs under its own "systemd-network"
4093 user. It retains the CAP_NET_ADMIN, CAP_NET_BIND_SERVICE,
4094 CAP_NET_BROADCAST, CAP_NET_RAW capabilities though, but
4095 loses the ability to write to files owned by root this way.
4096
a8eaaee7 4097 * Similarly, systemd-resolved now runs under its own
04e91da2
LP
4098 "systemd-resolve" user with no capabilities remaining.
4099
a8eaaee7 4100 * Similarly, systemd-bus-proxyd now runs under its own
04e91da2
LP
4101 "systemd-bus-proxy" user with only CAP_IPC_OWNER remaining.
4102
4103 * systemd-networkd gained support for setting up "veth"
a8eaaee7 4104 virtual Ethernet devices for container connectivity, as well
04e91da2
LP
4105 as GRE and VTI tunnels.
4106
4107 * systemd-networkd will no longer automatically attempt to
4108 manually load kernel modules necessary for certain tunnel
8d0e0ddd 4109 transports. Instead, it is assumed the kernel loads them
04e91da2
LP
4110 automatically when required. This only works correctly on
4111 very new kernels. On older kernels, please consider adding
c54bed5d 4112 the kernel modules to /etc/modules-load.d/ as a work-around.
04e91da2 4113
cd14eda3 4114 * The resolv.conf file systemd-resolved generates has been
8d0e0ddd
JE
4115 moved to /run/systemd/resolve/. If you have a symlink from
4116 /etc/resolv.conf, it might be necessary to correct it.
cd14eda3 4117
ef392da6 4118 * Two new service settings, ProtectHome= and ProtectSystem=,
8d0e0ddd 4119 have been added. When enabled, they will make the user data
04e91da2
LP
4120 (such as /home) inaccessible or read-only and the system
4121 (such as /usr) read-only, for specific services. This allows
4122 very light-weight per-service sandboxing to avoid
4123 modifications of user data or system files from
4124 services. These two new switches have been enabled for all
4125 of systemd's long-running services, where appropriate.
4126
4127 * Socket units gained new SocketUser= and SocketGroup=
4128 settings to set the owner user and group of AF_UNIX sockets
4129 and FIFOs in the file system.
4130
8d0e0ddd 4131 * Socket units gained a new RemoveOnStop= setting. If enabled,
04e91da2
LP
4132 all FIFOS and sockets in the file system will be removed
4133 when the specific socket unit is stopped.
4134
4135 * Socket units gained a new Symlinks= setting. It takes a list
4136 of symlinks to create to file system sockets or FIFOs
45df8656 4137 created by the specific Unix sockets. This is useful to
71449caf 4138 manage symlinks to socket nodes with the same life-cycle as
04e91da2
LP
4139 the socket itself.
4140
4141 * The /dev/log socket and /dev/initctl FIFO have been moved to
4142 /run, and have been replaced by symlinks. This allows
4143 connecting to these facilities even if PrivateDevices=yes is
4144 used for a service (which makes /dev/log itself unavailable,
4145 but /run is left). This also has the benefit of ensuring
4146 that /dev only contains device nodes, directories and
4147 symlinks, and nothing else.
4148
4149 * sd-daemon gained two new calls sd_pid_notify() and
4150 sd_pid_notifyf(). They are similar to sd_notify() and
4151 sd_notifyf(), but allow overriding of the source PID of
4152 notification messages if permissions permit this. This is
4153 useful to send notify messages on behalf of a different
4154 process (for example, the parent process). The
4155 systemd-notify tool has been updated to make use of this
4156 when sending messages (so that notification messages now
4157 originate from the shell script invoking systemd-notify and
4158 not the systemd-notify process itself. This should minimize
4159 a race where systemd fails to associate notification
4160 messages to services when the originating process already
4161 vanished.
4162
4163 * A new "on-abnormal" setting for Restart= has been added. If
8d0e0ddd 4164 set, it will result in automatic restarts on all "abnormal"
04e91da2
LP
4165 reasons for a process to exit, which includes unclean
4166 signals, core dumps, timeouts and watchdog timeouts, but
4167 does not include clean and unclean exit codes or clean
4168 signals. Restart=on-abnormal is an alternative for
4169 Restart=on-failure for services that shall be able to
4170 terminate and avoid restarts on certain errors, by
4171 indicating so with an unclean exit code. Restart=on-failure
4172 or Restart=on-abnormal is now the recommended setting for
4173 all long-running services.
4174
4175 * If the InaccessibleDirectories= service setting points to a
4176 mount point (or if there are any submounts contained within
4177 it), it is now attempted to completely unmount it, to make
4178 the file systems truly unavailable for the respective
4179 service.
4180
4181 * The ReadOnlyDirectories= service setting and
4182 systemd-nspawn's --read-only parameter are now recursively
4183 applied to all submounts, too.
4184
4185 * Mount units may now be created transiently via the bus APIs.
4186
4187 * The support for SysV and LSB init scripts has been removed
4188 from the systemd daemon itself. Instead, it is now
4189 implemented as a generator that creates native systemd units
4190 from these scripts when needed. This enables us to remove a
4191 substantial amount of legacy code from PID 1, following the
4192 fact that many distributions only ship a very small number
4193 of LSB/SysV init scripts nowadays.
4194
cc98b302 4195 * Privileged Xen (dom0) domains are not considered
04e91da2
LP
4196 virtualization anymore by the virtualization detection
4197 logic. After all, they generally have unrestricted access to
71449caf 4198 the hardware and usually are used to manage the unprivileged
04e91da2
LP
4199 (domU) domains.
4200
4201 * systemd-tmpfiles gained a new "C" line type, for copying
4202 files or entire directories.
4203
4204 * systemd-tmpfiles "m" lines are now fully equivalent to "z"
8d0e0ddd
JE
4205 lines. So far, they have been non-globbing versions of the
4206 latter, and have thus been redundant. In future, it is
4207 recommended to only use "z". "m" has hence been removed
04e91da2
LP
4208 from the documentation, even though it stays supported.
4209
4210 * A tmpfiles snippet to recreate the most basic structure in
4211 /var has been added. This is enough to create the /var/run →
4212 /run symlink and create a couple of structural
4213 directories. This allows systems to boot up with an empty or
8d0e0ddd
JE
4214 volatile /var. Of course, while with this change, the core OS
4215 now is capable with dealing with a volatile /var, not all
04e91da2 4216 user services are ready for it. However, we hope that sooner
8d0e0ddd 4217 or later, many service daemons will be changed upstream so
04e91da2
LP
4218 that they are able to automatically create their necessary
4219 directories in /var at boot, should they be missing. This is
4220 the first step to allow state-less systems that only require
4221 the vendor image for /usr to boot.
4222
4223 * systemd-nspawn has gained a new --tmpfs= switch to mount an
4224 empty tmpfs instance to a specific directory. This is
4225 particularly useful for making use of the automatic
4226 reconstruction of /var (see above), by passing --tmpfs=/var.
4227
4228 * Access modes specified in tmpfiles snippets may now be
4229 prefixed with "~", which indicates that they shall be masked
daa05349 4230 by whether the existing file or directory is currently
8d0e0ddd 4231 writable, readable or executable at all. Also, if specified,
04e91da2
LP
4232 the sgid/suid/sticky bits will be masked for all
4233 non-directories.
4234
4235 * A new passive target unit "network-pre.target" has been
4236 added which is useful for services that shall run before any
4237 network is configured, for example firewall scripts.
4238
4c0d13bd
LP
4239 * The "floppy" group that previously owned the /dev/fd*
4240 devices is no longer used. The "disk" group is now used
4241 instead. Distributions should probably deprecate usage of
4242 this group.
4243
dc1d6c02
LP
4244 Contributions from: Camilo Aguilar, Christian Hesse, Colin Ian
4245 King, Cristian Rodríguez, Daniel Buch, Dave Reisner, David
4246 Strauss, Denis Tikhomirov, John, Jonathan Liu, Kay Sievers,
4247 Lennart Poettering, Mantas Mikulėnas, Mark Eichin, Ronny
4248 Chevalier, Susant Sahani, Thomas Blume, Thomas Hindoe Paaboel
4249 Andersen, Tom Gundersen, Umut Tezduyar Lindskog, Zbigniew
4250 Jędrzejewski-Szmek
4251
ccddd104 4252 — Berlin, 2014-06-11
dc1d6c02 4253
6936cd89
LP
4254CHANGES WITH 213:
4255
4256 * A new "systemd-timesyncd" daemon has been added for
69beda1f 4257 synchronizing the system clock across the network. It
6936cd89 4258 implements an SNTP client. In contrast to NTP
8d0e0ddd 4259 implementations such as chrony or the NTP reference server,
6936cd89 4260 this only implements a client side, and does not bother with
c9679c65
LP
4261 the full NTP complexity, focusing only on querying time from
4262 one remote server and synchronizing the local clock to
6936cd89 4263 it. Unless you intend to serve NTP to networked clients or
8d0e0ddd 4264 want to connect to local hardware clocks, this simple NTP
6936cd89
LP
4265 client should be more than appropriate for most
4266 installations. The daemon runs with minimal privileges, and
4267 has been hooked up with networkd to only operate when
4268 network connectivity is available. The daemon saves the
4269 current clock to disk every time a new NTP sync has been
4270 acquired, and uses this to possibly correct the system clock
69beda1f 4271 early at bootup, in order to accommodate for systems that
6936cd89 4272 lack an RTC such as the Raspberry Pi and embedded devices,
8d0e0ddd 4273 and to make sure that time monotonically progresses on these
c9679c65 4274 systems, even if it is not always correct. To make use of
8d0e0ddd 4275 this daemon, a new system user and group "systemd-timesync"
c9679c65 4276 needs to be created on installation of systemd.
6936cd89 4277
69beda1f
KS
4278 * The queue "seqnum" interface of libudev has been disabled, as
4279 it was generally incompatible with device namespacing as
6936cd89
LP
4280 sequence numbers of devices go "missing" if the devices are
4281 part of a different namespace.
4282
4283 * "systemctl list-timers" and "systemctl list-sockets" gained
4284 a --recursive switch for showing units of these types also
499b604b
ZJS
4285 for all local containers, similar in style to the already
4286 supported --recursive switch for "systemctl list-units".
6936cd89
LP
4287
4288 * A new RebootArgument= setting has been added for service
4289 units, which may be used to specify a kernel reboot argument
499b604b 4290 to use when triggering reboots with StartLimitAction=.
6936cd89
LP
4291
4292 * A new FailureAction= setting has been added for service
4293 units which may be used to specify an operation to trigger
499b604b 4294 when a service fails. This works similarly to
8d0e0ddd 4295 StartLimitAction=, but unlike it, controls what is done
6936cd89
LP
4296 immediately rather than only after several attempts to
4297 restart the service in question.
4298
4299 * hostnamed got updated to also expose the kernel name,
499b604b
ZJS
4300 release, and version on the bus. This is useful for
4301 executing commands like hostnamectl with the -H switch.
4302 systemd-analyze makes use of this to properly display
4303 details when running non-locally.
6936cd89
LP
4304
4305 * The bootchart tool can now show cgroup information in the
4306 graphs it generates.
4307
4308 * The CFS CPU quota cgroup attribute is now exposed for
4309 services. The new CPUQuota= switch has been added for this
4310 which takes a percentage value. Setting this will have the
4311 result that a service may never get more CPU time than the
4312 specified percentage, even if the machine is otherwise idle.
4313
4314 * systemd-networkd learned IPIP and SIT tunnel support.
4315
4316 * LSB init scripts exposing a dependency on $network will now
4317 get a dependency on network-online.target rather than simply
4318 network.target. This should bring LSB handling closer to
4319 what it was on SysV systems.
4320
4321 * A new fsck.repair= kernel option has been added to control
4322 how fsck shall deal with unclean file systems at boot.
4323
4324 * The (.ini) configuration file parser will now silently
4325 ignore sections whose name begins with "X-". This may be
4326 used to maintain application-specific extension sections in unit
4327 files.
4328
4329 * machined gained a new API to query the IP addresses of
4330 registered containers. "machinectl status" has been updated
4331 to show these addresses in its output.
4332
4333 * A new call sd_uid_get_display() has been added to the
4334 sd-login APIs for querying the "primary" session of a
4335 user. The "primary" session of the user is elected from the
4336 user's sessions and generally a graphical session is
4337 preferred over a text one.
4338
4339 * A minimal systemd-resolved daemon has been added. It
4340 currently simply acts as a companion to systemd-networkd and
4341 manages resolv.conf based on per-interface DNS
4342 configuration, possibly supplied via DHCP. In the long run
4343 we hope to extend this into a local DNSSEC enabled DNS and
4344 mDNS cache.
4345
68dd0956
TG
4346 * The systemd-networkd-wait-online tool is now enabled by
4347 default. It will delay network-online.target until a network
4348 connection has been configured. The tool primarily integrates
4349 with networkd, but will also make a best effort to make sense
4350 of network configuration performed in some other way.
4351
6936cd89 4352 * Two new service options StartupCPUShares= and
499b604b 4353 StartupBlockIOWeight= have been added that work similarly to
6936cd89 4354 CPUShares= and BlockIOWeight= however only apply during
69beda1f 4355 system startup. This is useful to prioritize certain services
6936cd89
LP
4356 differently during bootup than during normal runtime.
4357
8e7acf67
LP
4358 * hostnamed has been changed to prefer the statically
4359 configured hostname in /etc/hostname (unless set to
4360 'localhost' or empty) over any dynamic one supplied by
8d0e0ddd 4361 dhcp. With this change, the rules for picking the hostname
8e7acf67
LP
4362 match more closely the rules of other configuration settings
4363 where the local administrator's configuration in /etc always
4364 overrides any other settings.
4365
4366 Contributions fron: Ali H. Caliskan, Alison Chaiken, Bas van
6936cd89
LP
4367 den Berg, Brandon Philips, Cristian Rodríguez, Daniel Buch,
4368 Dan Kilman, Dave Reisner, David Härdeman, David Herrmann,
4369 David Strauss, Dimitris Spingos, Djalal Harouni, Eelco
4370 Dolstra, Evan Nemerson, Florian Albrechtskirchinger, Greg
4371 Kroah-Hartman, Harald Hoyer, Holger Hans Peter Freyther, Jan
4372 Engelhardt, Jani Nikula, Jason St. John, Jeffrey Clark,
4373 Jonathan Boulle, Kay Sievers, Lennart Poettering, Lukas
4374 Nykryn, Lukasz Skalski, Łukasz Stelmach, Mantas Mikulėnas,
8e7acf67
LP
4375 Marcel Holtmann, Martin Pitt, Matthew Monaco, Michael
4376 Marineau, Michael Olbrich, Michal Sekletar, Mike Gilbert, Nis
4377 Martensen, Patrik Flykt, Philip Lorenz, poma, Ray Strode,
4378 Reyad Attiyat, Robert Milasan, Scott Thrasher, Stef Walter,
4379 Steven Siloti, Susant Sahani, Tanu Kaskinen, Thomas Bächler,
4380 Thomas Hindoe Paaboel Andersen, Tom Gundersen, Umut Tezduyar
4381 Lindskog, WaLyong Cho, Will Woods, Zbigniew
6936cd89
LP
4382 Jędrzejewski-Szmek
4383
ccddd104 4384 — Beijing, 2014-05-28
6936cd89 4385
51c61cda
LP
4386CHANGES WITH 212:
4387
4388 * When restoring the screen brightness at boot, stay away from
4389 the darkest setting or from the lowest 5% of the available
4390 range, depending on which is the larger value of both. This
4391 should effectively protect the user from rebooting into a
4392 black screen, should the brightness have been set to minimum
4393 by accident.
4394
4395 * sd-login gained a new sd_machine_get_class() call to
4396 determine the class ("vm" or "container") of a machine
4397 registered with machined.
4398
4399 * sd-login gained new calls
4400 sd_peer_get_{session,owner_uid,unit,user_unit,slice,machine_name}(),
4401 to query the identity of the peer of a local AF_UNIX
499b604b 4402 connection. They operate similarly to their sd_pid_get_xyz()
51c61cda
LP
4403 counterparts.
4404
4405 * PID 1 will now maintain a system-wide system state engine
4406 with the states "starting", "running", "degraded",
4407 "maintenance", "stopping". These states are bound to system
4408 startup, normal runtime, runtime with at least one failed
4409 service, rescue/emergency mode and system shutdown. This
4410 state is shown in the "systemctl status" output when no unit
4411 name is passed. It is useful to determine system state, in
4412 particularly when doing so for many systems or containers at
4413 once.
4414
4415 * A new command "list-machines" has been added to "systemctl"
4416 that lists all local OS containers and shows their system
4417 state (see above), if systemd runs inside of them.
4418
4419 * systemctl gained a new "-r" switch to recursively enumerate
4420 units on all local containers, when used with the
4421 "list-unit" command (which is the default one that is
4422 executed when no parameters are specified).
4423
4424 * The GPT automatic partition discovery logic will now honour
4425 two GPT partition flags: one may be set on a partition to
4426 cause it to be mounted read-only, and the other may be set
4427 on a partition to ignore it during automatic discovery.
4428
4429 * Two new GPT type UUIDs have been added for automatic root
70a44afe 4430 partition discovery, for 32-bit and 64-bit ARM. This is not
51c61cda
LP
4431 particularly useful for discovering the root directory on
4432 these architectures during bare-metal boots (since UEFI is
4433 not common there), but still very useful to allow booting of
4434 ARM disk images in nspawn with the -i option.
4435
4436 * MAC addresses of interfaces created with nspawn's
4437 --network-interface= switch will now be generated from the
4438 machine name, and thus be stable between multiple invocations
4439 of the container.
4440
4441 * logind will now automatically remove all IPC objects owned
4442 by a user if she or he fully logs out. This makes sure that
4443 users who are logged out cannot continue to consume IPC
4444 resources. This covers SysV memory, semaphores and message
4445 queues as well as POSIX shared memory and message
b8bde116
JE
4446 queues. Traditionally, SysV and POSIX IPC had no life-cycle
4447 limits. With this functionality, that is corrected. This may
4448 be turned off by using the RemoveIPC= switch of logind.conf.
51c61cda
LP
4449
4450 * The systemd-machine-id-setup and tmpfiles tools gained a
4451 --root= switch to operate on a specific root directory,
4452 instead of /.
4453
4454 * journald can now forward logged messages to the TTYs of all
4455 logged in users ("wall"). This is the default for all
4456 emergency messages now.
4457
4458 * A new tool systemd-journal-remote has been added to stream
4459 journal log messages across the network.
4460
4461 * /sys/fs/cgroup/ is now mounted read-only after all cgroup
4462 controller trees are mounted into it. Note that the
4463 directories mounted beneath it are not read-only. This is a
4464 security measure and is particularly useful because glibc
4465 actually includes a search logic to pick any tmpfs it can
4466 find to implement shm_open() if /dev/shm is not available
4467 (which it might very well be in namespaced setups).
4468
4469 * machinectl gained a new "poweroff" command to cleanly power
4470 down a local OS container.
4471
4472 * The PrivateDevices= unit file setting will now also drop the
4473 CAP_MKNOD capability from the capability bound set, and
4474 imply DevicePolicy=closed.
4475
4476 * PrivateDevices=, PrivateNetwork= and PrivateTmp= is now used
4477 comprehensively on all long-running systemd services where
4478 this is appropriate.
4479
4480 * systemd-udevd will now run in a disassociated mount
b8bde116 4481 namespace. To mount directories from udev rules, make sure to
51c61cda
LP
4482 pull in mount units via SYSTEMD_WANTS properties.
4483
4484 * The kdbus support gained support for uploading policy into
4485 the kernel. sd-bus gained support for creating "monitoring"
4486 connections that can eavesdrop into all bus communication
4487 for debugging purposes.
4488
4489 * Timestamps may now be specified in seconds since the UNIX
4490 epoch Jan 1st, 1970 by specifying "@" followed by the value
4491 in seconds.
4492
4493 * Native tcpwrap support in systemd has been removed. tcpwrap
4494 is old code, not really maintained anymore and has serious
4495 shortcomings, and better options such as firewalls
4496 exist. For setups that require tcpwrap usage, please
4497 consider invoking your socket-activated service via tcpd,
4498 like on traditional inetd.
4499
4500 * A new system.conf configuration option
4501 DefaultTimerAccuracySec= has been added that controls the
4502 default AccuracySec= setting of .timer units.
4503
b8bde116 4504 * Timer units gained a new WakeSystem= switch. If enabled,
51c61cda
LP
4505 timers configured this way will cause the system to resume
4506 from system suspend (if the system supports that, which most
4507 do these days).
4508
b8bde116 4509 * Timer units gained a new Persistent= switch. If enabled,
51c61cda
LP
4510 timers configured this way will save to disk when they have
4511 been last triggered. This information is then used on next
4512 reboot to possible execute overdue timer events, that
d28315e4
JE
4513 could not take place because the system was powered off.
4514 This enables simple anacron-like behaviour for timer units.
51c61cda
LP
4515
4516 * systemctl's "list-timers" will now also list the time a
4517 timer unit was last triggered in addition to the next time
4518 it will be triggered.
4519
4520 * systemd-networkd will now assign predictable IPv4LL
4521 addresses to its local interfaces.
4522
4523 Contributions from: Brandon Philips, Daniel Buch, Daniel Mack,
4524 Dave Reisner, David Herrmann, Gerd Hoffmann, Greg
4525 Kroah-Hartman, Hendrik Brueckner, Jason St. John, Josh
4526 Triplett, Kay Sievers, Lennart Poettering, Marc-Antoine
4527 Perennou, Michael Marineau, Michael Olbrich, Miklos Vajna,
4528 Patrik Flykt, poma, Sebastian Thorarensen, Thomas Bächler,
4529 Thomas Hindoe Paaboel Andersen, Tomasz Torcz, Tom Gundersen,
4530 Umut Tezduyar Lindskog, Wieland Hoffmann, Zbigniew
4531 Jędrzejewski-Szmek
4532
ccddd104 4533 — Berlin, 2014-03-25
51c61cda 4534
699b6b34
LP
4535CHANGES WITH 211:
4536
4537 * A new unit file setting RestrictAddressFamilies= has been
4538 added to restrict which socket address families unit
4539 processes gain access to. This takes address family names
4540 like "AF_INET" or "AF_UNIX", and is useful to minimize the
4541 attack surface of services via exotic protocol stacks. This
4542 is built on seccomp system call filters.
4543
4544 * Two new unit file settings RuntimeDirectory= and
4545 RuntimeDirectoryMode= have been added that may be used to
4546 manage a per-daemon runtime directories below /run. This is
4547 an alternative for setting up directory permissions with
4548 tmpfiles snippets, and has the advantage that the runtime
4549 directory's lifetime is bound to the daemon runtime and that
4550 the daemon starts up with an empty directory each time. This
4551 is particularly useful when writing services that drop
f1721625 4552 privileges using the User= or Group= setting.
699b6b34
LP
4553
4554 * The DeviceAllow= unit setting now supports globbing for
4555 matching against device group names.
4556
4557 * The systemd configuration file system.conf gained new
4558 settings DefaultCPUAccounting=, DefaultBlockIOAccounting=,
4559 DefaultMemoryAccounting= to globally turn on/off accounting
4560 for specific resources (cgroups) for all units. These
22e7062d 4561 settings may still be overridden individually in each unit
699b6b34
LP
4562 though.
4563
4564 * systemd-gpt-auto-generator is now able to discover /srv and
4565 root partitions in addition to /home and swap partitions. It
4566 also supports LUKS-encrypted partitions now. With this in
b8bde116 4567 place, automatic discovery of partitions to mount following
699b6b34 4568 the Discoverable Partitions Specification
56cadcb6 4569 (https://www.freedesktop.org/wiki/Specifications/DiscoverablePartitionsSpec)
699b6b34
LP
4570 is now a lot more complete. This allows booting without
4571 /etc/fstab and without root= on the kernel command line on
b8bde116 4572 systems prepared appropriately.
699b6b34
LP
4573
4574 * systemd-nspawn gained a new --image= switch which allows
4575 booting up disk images and Linux installations on any block
4576 device that follow the Discoverable Partitions Specification
4577 (see above). This means that installations made with
4578 appropriately updated installers may now be started and
4579 deployed using container managers, completely
4580 unmodified. (We hope that libvirt-lxc will add support for
4581 this feature soon, too.)
4582
4583 * systemd-nspawn gained a new --network-macvlan= setting to
4584 set up a private macvlan interface for the
499b604b 4585 container. Similarly, systemd-networkd gained a new
699b6b34
LP
4586 Kind=macvlan setting in .netdev files.
4587
4588 * systemd-networkd now supports configuring local addresses
4589 using IPv4LL.
4590
4591 * A new tool systemd-network-wait-online has been added to
4592 synchronously wait for network connectivity using
4593 systemd-networkd.
4594
4595 * The sd-bus.h bus API gained a new sd_bus_track object for
4596 tracking the life-cycle of bus peers. Note that sd-bus.h is
4597 still not a public API though (unless you specify
4598 --enable-kdbus on the configure command line, which however
4599 voids your warranty and you get no API stability guarantee).
4600
4601 * The $XDG_RUNTIME_DIR runtime directories for each user are
4602 now individual tmpfs instances, which has the benefit of
4603 introducing separate pools for each user, with individual
4ef6e535 4604 size limits, and thus making sure that unprivileged clients
699b6b34
LP
4605 can no longer negatively impact the system or other users by
4606 filling up their $XDG_RUNTIME_DIR. A new logind.conf setting
4607 RuntimeDirectorySize= has been introduced that allows
4608 controlling the default size limit for all users. It
4609 defaults to 10% of the available physical memory. This is no
4610 replacement for quotas on tmpfs though (which the kernel
4611 still does not support), as /dev/shm and /tmp are still
4ef6e535 4612 shared resources used by both the system and unprivileged
699b6b34
LP
4613 users.
4614
4615 * logind will now automatically turn off automatic suspending
4616 on laptop lid close when more than one display is
4617 connected. This was previously expected to be implemented
4618 individually in desktop environments (such as GNOME),
4619 however has been added to logind now, in order to fix a
4620 boot-time race where a desktop environment might not have
4621 been started yet and thus not been able to take an inhibitor
4622 lock at the time where logind already suspends the system
4623 due to a closed lid.
4624
4625 * logind will now wait at least 30s after each system
4626 suspend/resume cycle, and 3min after system boot before
4627 suspending the system due to a closed laptop lid. This
4628 should give USB docking stations and similar enough time to
4ef6e535 4629 be probed and configured after system resume and boot in
699b6b34
LP
4630 order to then act as suspend blocker.
4631
4632 * systemd-run gained a new --property= setting which allows
4633 initialization of resource control properties (and others)
4634 for the created scope or service unit. Example: "systemd-run
4635 --property=BlockIOWeight=10 updatedb" may be used to run
4636 updatedb at a low block IO scheduling weight.
4637
4638 * systemd-run's --uid=, --gid=, --setenv=, --setenv= switches
4639 now also work in --scope mode.
4640
4641 * When systemd is compiled with kdbus support, basic support
4642 for enforced policies is now in place. (Note that enabling
4643 kdbus still voids your warranty and no API compatibility
4644 promises are made.)
4645
4646 Contributions from: Andrey Borzenkov, Ansgar Burchardt, Armin
4647 K., Daniel Mack, Dave Reisner, David Herrmann, Djalal Harouni,
4648 Harald Hoyer, Henrik Grindal Bakken, Jasper St. Pierre, Kay
4649 Sievers, Kieran Clancy, Lennart Poettering, Lukas Nykryn,
4650 Mantas Mikulėnas, Marcel Holtmann, Mark Oteiza, Martin Pitt,
4651 Mike Gilbert, Peter Rajnoha, poma, Samuli Suominen, Stef
4652 Walter, Susant Sahani, Tero Roponen, Thomas Andersen, Thomas
4653 Bächler, Thomas Hindoe Paaboel Andersen, Tomasz Torcz, Tom
4654 Gundersen, Umut Tezduyar Lindskog, Uoti Urpala, Zachary Cook,
4655 Zbigniew Jędrzejewski-Szmek
4656
ccddd104 4657 — Berlin, 2014-03-12
699b6b34 4658
43c71255
LP
4659CHANGES WITH 210:
4660
4661 * systemd will now relabel /dev after loading the SMACK policy
4662 according to SMACK rules.
4663
67dd87c5 4664 * A new unit file option AppArmorProfile= has been added to
43c71255
LP
4665 set the AppArmor profile for the processes of a unit.
4666
4667 * A new condition check ConditionArchitecture= has been added
4668 to conditionalize units based on the system architecture, as
4669 reported by uname()'s "machine" field.
4670
4671 * systemd-networkd now supports matching on the system
4672 virtualization, architecture, kernel command line, host name
4673 and machine ID.
4674
ed28905e 4675 * logind is now a lot more aggressive when suspending the
43c71255 4676 machine due to a closed laptop lid. Instead of acting only
b8bde116 4677 on the lid close action, it will continuously watch the lid
43c71255
LP
4678 status and act on it. This is useful for laptops where the
4679 power button is on the outside of the chassis so that it can
ed28905e 4680 be reached without opening the lid (such as the Lenovo
b8bde116 4681 Yoga). On those machines, logind will now immediately
ed28905e 4682 re-suspend the machine if the power button has been
43c71255
LP
4683 accidentally pressed while the laptop was suspended and in a
4684 backpack or similar.
4685
4686 * logind will now watch SW_DOCK switches and inhibit reaction
4687 to the lid switch if it is pressed. This means that logind
d27893ef 4688 will not suspend the machine anymore if the lid is closed
949138cc 4689 and the system is docked, if the laptop supports SW_DOCK
43c71255
LP
4690 notifications via the input layer. Note that ACPI docking
4691 stations do not generate this currently. Also note that this
4692 logic is usually not fully sufficient and Desktop
4693 Environments should take a lid switch inhibitor lock when an
4694 external display is connected, as systemd will not watch
4695 this on its own.
4696
4697 * nspawn will now make use of the devices cgroup controller by
4698 default, and only permit creation of and access to the usual
4699 API device nodes like /dev/null or /dev/random, as well as
4700 access to (but not creation of) the pty devices.
4701
4702 * We will now ship a default .network file for
4703 systemd-networkd that automatically configures DHCP for
4704 network interfaces created by nspawn's --network-veth or
4705 --network-bridge= switches.
4706
4707 * systemd will now understand the usual M, K, G, T suffixes
4708 according to SI conventions (i.e. to the base 1000) when
4709 referring to throughput and hardware metrics. It will stay
4710 with IEC conventions (i.e. to the base 1024) for software
4711 metrics, according to what is customary according to
4712 Wikipedia. We explicitly document which base applies for
4713 each configuration option.
4714
4715 * The DeviceAllow= setting in unit files now supports a syntax
ed28905e 4716 to whitelist an entire group of devices node majors at once,
43c71255 4717 based on the /proc/devices listing. For example, with the
b8bde116 4718 string "char-pts", it is now possible to whitelist all
43c71255
LP
4719 current and future pseudo-TTYs at once.
4720
4721 * sd-event learned a new "post" event source. Event sources of
4722 this type are triggered by the dispatching of any event
4723 source of a type that is not "post". This is useful for
4724 implementing clean-up and check event sources that are
4725 triggered by other work being done in the program.
4726
4727 * systemd-networkd is no longer statically enabled, but uses
4728 the usual [Install] sections so that it can be
4729 enabled/disabled using systemctl. It still is enabled by
4730 default however.
4731
b8bde116 4732 * When creating a veth interface pair with systemd-nspawn, the
43c71255
LP
4733 host side will now be prefixed with "vb-" if
4734 --network-bridge= is used, and with "ve-" if --network-veth
b8bde116 4735 is used. This way, it is easy to distinguish these cases on
43c71255
LP
4736 the host, for example to apply different configuration to
4737 them with systemd-networkd.
4738
d27893ef
LP
4739 * The compatibility libraries for libsystemd-journal.so,
4740 libsystem-id128.so, libsystemd-login.so and
4741 libsystemd-daemon.so do not make use of IFUNC
b8bde116 4742 anymore. Instead, we now build libsystemd.so multiple times
d27893ef
LP
4743 under these alternative names. This means that the footprint
4744 is drastically increased, but given that these are
b8bde116 4745 transitional compatibility libraries, this should not matter
d27893ef
LP
4746 much. This change has been made necessary to support the ARM
4747 platform for these compatibility libraries, as the ARM
d28315e4 4748 toolchain is not really at the same level as the toolchain
ed28905e 4749 for other architectures like x86 and does not support
d27893ef
LP
4750 IFUNC. Please make sure to use --enable-compat-libs only
4751 during a transitional period!
4752
13b28d82 4753 Contributions from: Andreas Fuchs, Armin K., Colin Walters,
43c71255
LP
4754 Daniel Mack, Dave Reisner, David Herrmann, Djalal Harouni,
4755 Holger Schurig, Jason A. Donenfeld, Jason St. John, Jasper
4756 St. Pierre, Kay Sievers, Lennart Poettering, Łukasz Stelmach,
4757 Marcel Holtmann, Michael Scherer, Michal Sekletar, Mike
4758 Gilbert, Samuli Suominen, Thomas Bächler, Thomas Hindoe
4759 Paaboel Andersen, Tom Gundersen, Umut Tezduyar Lindskog,
4760 Zbigniew Jędrzejewski-Szmek
4761
ccddd104 4762 — Berlin, 2014-02-24
43c71255 4763
e49b5aad
LP
4764CHANGES WITH 209:
4765
4766 * A new component "systemd-networkd" has been added that can
4767 be used to configure local network interfaces statically or
8b7d0494
JSJ
4768 via DHCP. It is capable of bringing up bridges, VLANs, and
4769 bonding. Currently, no hook-ups for interactive network
4670e9d5 4770 configuration are provided. Use this for your initrd,
8b7d0494
JSJ
4771 container, embedded, or server setup if you need a simple,
4772 yet powerful, network configuration solution. This
4670e9d5 4773 configuration subsystem is quite nifty, as it allows wildcard
1e190502 4774 hotplug matching in interfaces. For example, with a single
4670e9d5 4775 configuration snippet, you can configure that all Ethernet
1e190502
ZJS
4776 interfaces showing up are automatically added to a bridge,
4777 or similar. It supports link-sensing and more.
e49b5aad
LP
4778
4779 * A new tool "systemd-socket-proxyd" has been added which can
4c2413bf 4780 act as a bidirectional proxy for TCP sockets. This is
e49b5aad
LP
4781 useful for adding socket activation support to services that
4782 do not actually support socket activation, including virtual
4c2413bf 4783 machines and the like.
e49b5aad
LP
4784
4785 * Add a new tool to save/restore rfkill state on
4786 shutdown/boot.
4787
8b7d0494
JSJ
4788 * Save/restore state of keyboard backlights in addition to
4789 display backlights on shutdown/boot.
e49b5aad
LP
4790
4791 * udev learned a new SECLABEL{} construct to label device
4792 nodes with a specific security label when they appear. For
4c2413bf 4793 now, only SECLABEL{selinux} is supported, but the syntax is
e49b5aad
LP
4794 prepared for additional security frameworks.
4795
4796 * udev gained a new scheme to configure link-level attributes
4797 from files in /etc/systemd/network/*.link. These files can
8b7d0494 4798 match against MAC address, device path, driver name and type,
4c2413bf 4799 and will apply attributes like the naming policy, link speed,
8b7d0494 4800 MTU, duplex settings, Wake-on-LAN settings, MAC address, MAC
e49b5aad
LP
4801 address assignment policy (randomized, ...).
4802
dfb08b05
ZJS
4803 * The configuration of network interface naming rules for
4804 "permanent interface names" has changed: a new NamePolicy=
4805 setting in the [Link] section of .link files determines the
a8eaaee7 4806 priority of possible naming schemes (onboard, slot, MAC,
dfb08b05
ZJS
4807 path). The default value of this setting is determined by
4808 /usr/lib/net/links/99-default.link. Old
4809 80-net-name-slot.rules udev configuration file has been
4810 removed, so local configuration overriding this file should
ce830873 4811 be adapted to override 99-default.link instead.
dfb08b05 4812
e49b5aad 4813 * When the User= switch is used in a unit file, also
4c2413bf 4814 initialize $SHELL= based on the user database entry.
e49b5aad
LP
4815
4816 * systemd no longer depends on libdbus. All communication is
4817 now done with sd-bus, systemd's low-level bus library
4818 implementation.
4819
4820 * kdbus support has been added to PID 1 itself. When kdbus is
4c2413bf 4821 enabled, this causes PID 1 to set up the system bus and
e49b5aad
LP
4822 enable support for a new ".busname" unit type that
4823 encapsulates bus name activation on kdbus. It works a little
4824 bit like ".socket" units, except for bus names. A new
4825 generator has been added that converts classic dbus1 service
4826 activation files automatically into native systemd .busname
4827 and .service units.
4828
4829 * sd-bus: add a light-weight vtable implementation that allows
4830 defining objects on the bus with a simple static const
4831 vtable array of its methods, signals and properties.
4832
8b7d0494 4833 * systemd will not generate or install static dbus
e49b5aad 4834 introspection data anymore to /usr/share/dbus-1/interfaces,
1e190502 4835 as the precise format of these files is unclear, and
e49b5aad
LP
4836 nothing makes use of it.
4837
4838 * A proxy daemon is now provided to proxy clients connecting
4839 via classic D-Bus AF_UNIX sockets to kdbus, to provide full
4840 compatibility with classic D-Bus.
4841
4842 * A bus driver implementation has been added that supports the
4843 classic D-Bus bus driver calls on kdbus, also for
4844 compatibility purposes.
4845
4846 * A new API "sd-event.h" has been added that implements a
4847 minimal event loop API built around epoll. It provides a
4848 couple of features that direct epoll usage is lacking:
b9761003 4849 prioritization of events, scales to large numbers of timer
e49b5aad
LP
4850 events, per-event timer slack (accuracy), system-wide
4851 coalescing of timer events, exit handlers, watchdog
4852 supervision support using systemd's sd_notify() API, child
4853 process handling.
4854
4855 * A new API "sd-rntl.h" has been added that provides an API
4856 around the route netlink interface of the kernel, similar in
4857 style to "sd-bus.h".
4858
7e95eda5
PF
4859 * A new API "sd-dhcp-client.h" has been added that provides a
4860 small DHCPv4 client-side implementation. This is used by
e49b5aad
LP
4861 "systemd-networkd".
4862
4c2413bf 4863 * There is a new kernel command line option
8b7d0494
JSJ
4864 "systemd.restore_state=0|1". When set to "0", none of the
4865 systemd tools will restore saved runtime state to hardware
4866 devices. More specifically, the rfkill and backlight states
4867 are not restored.
e49b5aad
LP
4868
4869 * The FsckPassNo= compatibility option in mount/service units
4870 has been removed. The fstab generator will now add the
4871 necessary dependencies automatically, and does not require
4872 PID1's support for that anymore.
4873
8b7d0494 4874 * journalctl gained a new switch, --list-boots, that lists
e49b5aad
LP
4875 recent boots with their times and boot IDs.
4876
4877 * The various tools like systemctl, loginctl, timedatectl,
4878 busctl, systemd-run, ... have gained a new switch "-M" to
4879 connect to a specific, local OS container (as direct
4880 connection, without requiring SSH). This works on any
4881 container that is registered with machined, such as those
4882 created by libvirt-lxc or nspawn.
4883
4884 * systemd-run and systemd-analyze also gained support for "-H"
4c2413bf 4885 to connect to remote hosts via SSH. This is particularly
8b7d0494
JSJ
4886 useful for systemd-run because it enables queuing of jobs
4887 onto remote systems.
e49b5aad
LP
4888
4889 * machinectl gained a new command "login" to open a getty
4890 login in any local container. This works with any container
4891 that is registered with machined (such as those created by
8e420494 4892 libvirt-lxc or nspawn), and which runs systemd inside.
e49b5aad
LP
4893
4894 * machinectl gained a new "reboot" command that may be used to
4895 trigger a reboot on a specific container that is registered
4896 with machined. This works on any container that runs an init
4897 system of some kind.
4898
4899 * systemctl gained a new "list-timers" command to print a nice
4900 listing of installed timer units with the times they elapse
4901 next.
4902
4903 * Alternative reboot() parameters may now be specified on the
4904 "systemctl reboot" command line and are passed to the
4905 reboot() system call.
4906
4907 * systemctl gained a new --job-mode= switch to configure the
4908 mode to queue a job with. This is a more generic version of
8b7d0494 4909 --fail, --irreversible, and --ignore-dependencies, which are
e49b5aad
LP
4910 still available but not advertised anymore.
4911
e49b5aad
LP
4912 * /etc/systemd/system.conf gained new settings to configure
4913 various default timeouts of units, as well as the default
b9761003 4914 start limit interval and burst. These may still be overridden
e49b5aad
LP
4915 within each Unit.
4916
270f1624
LP
4917 * PID1 will now export on the bus profile data of the security
4918 policy upload process (such as the SELinux policy upload to
8e420494 4919 the kernel).
e49b5aad 4920
4670e9d5 4921 * journald: when forwarding logs to the console, include
1e190502
ZJS
4922 timestamps (following the setting in
4923 /sys/module/printk/parameters/time).
e49b5aad
LP
4924
4925 * OnCalendar= in timer units now understands the special
4926 strings "yearly" and "annually". (Both are equivalent)
4927
4928 * The accuracy of timer units is now configurable with the new
4929 AccuracySec= setting. It defaults to 1min.
4930
4931 * A new dependency type JoinsNamespaceOf= has been added that
4932 allows running two services within the same /tmp and network
4933 namespace, if PrivateNetwork= or PrivateTmp= are used.
4934
4935 * A new command "cat" has been added to systemctl. It outputs
4936 the original unit file of a unit, and concatenates the
1e190502
ZJS
4937 contents of additional "drop-in" unit file snippets, so that
4938 the full configuration is shown.
e49b5aad
LP
4939
4940 * systemctl now supports globbing on the various "list-xyz"
4941 commands, like "list-units" or "list-sockets", as well as on
1e190502
ZJS
4942 those commands which take multiple unit names.
4943
4944 * journalctl's --unit= switch gained support for globbing.
e49b5aad
LP
4945
4946 * All systemd daemons now make use of the watchdog logic so
4947 that systemd automatically notices when they hang.
4948
4c2413bf 4949 * If the $container_ttys environment variable is set,
e49b5aad
LP
4950 getty-generator will automatically spawn a getty for each
4951 listed tty. This is useful for container managers to request
4952 login gettys to be spawned on as many ttys as needed.
4953
4954 * %h, %s, %U specifier support is not available anymore when
4955 used in unit files for PID 1. This is because NSS calls are
4956 not safe from PID 1. They stay available for --user
4957 instances of systemd, and as special case for the root user.
4958
e49b5aad
LP
4959 * loginctl gained a new "--no-legend" switch to turn off output
4960 of the legend text.
4961
4962 * The "sd-login.h" API gained three new calls:
4963 sd_session_is_remote(), sd_session_get_remote_user(),
4964 sd_session_get_remote_host() to query information about
4965 remote sessions.
4966
8e420494
LP
4967 * The udev hardware database now also carries vendor/product
4968 information of SDIO devices.
e49b5aad
LP
4969
4970 * The "sd-daemon.h" API gained a new sd_watchdog_enabled() to
4971 determine whether watchdog notifications are requested by
4972 the system manager.
4973
1e190502 4974 * Socket-activated per-connection services now include a
e49b5aad
LP
4975 short description of the connection parameters in the
4976 description.
4977
4c2413bf 4978 * tmpfiles gained a new "--boot" option. When this is not used,
e49b5aad 4979 only lines where the command character is not suffixed with
4670e9d5 4980 "!" are executed. When this option is specified, those
1e190502
ZJS
4981 options are executed too. This partitions tmpfiles
4982 directives into those that can be safely executed at any
4983 time, and those which should be run only at boot (for
4984 example, a line that creates /run/nologin).
e49b5aad 4985
c0c5af00 4986 * A new API "sd-resolve.h" has been added which provides a simple
4c2413bf 4987 asynchronous wrapper around glibc NSS host name resolution
e49b5aad 4988 calls, such as getaddrinfo(). In contrast to glibc's
4c2413bf
JE
4989 getaddrinfo_a(), it does not use signals. In contrast to most
4990 other asynchronous name resolution libraries, this one does
4991 not reimplement DNS, but reuses NSS, so that alternate
e49b5aad 4992 host name resolution systems continue to work, such as mDNS,
8b7d0494 4993 LDAP, etc. This API is based on libasyncns, but it has been
e49b5aad
LP
4994 cleaned up for inclusion in systemd.
4995
6300b3ec
LP
4996 * The APIs "sd-journal.h", "sd-login.h", "sd-id128.h",
4997 "sd-daemon.h" are no longer found in individual libraries
4998 libsystemd-journal.so, libsystemd-login.so,
4999 libsystemd-id128.so, libsystemd-daemon.so. Instead, we have
8b7d0494
JSJ
5000 merged them into a single library, libsystemd.so, which
5001 provides all symbols. The reason for this is cyclic
e49b5aad 5002 dependencies, as these libraries tend to use each other's
d28315e4 5003 symbols. So far, we have managed to workaround that by linking
6300b3ec
LP
5004 a copy of a good part of our code into each of these
5005 libraries again and again, which, however, makes certain
5006 things hard to do, like sharing static variables. Also, it
5007 substantially increases footprint. With this change, there
5008 is only one library for the basic APIs systemd
5009 provides. Also, "sd-bus.h", "sd-memfd.h", "sd-event.h",
5010 "sd-rtnl.h", "sd-resolve.h", "sd-utf8.h" are found in this
5011 library as well, however are subject to the --enable-kdbus
5012 switch (see below). Note that "sd-dhcp-client.h" is not part
5013 of this library (this is because it only consumes, never
5014 provides, services of/to other APIs). To make the transition
8b7d0494 5015 easy from the separate libraries to the unified one, we
4c2413bf 5016 provide the --enable-compat-libs compile-time switch which
e49b5aad
LP
5017 will generate stub libraries that are compatible with the
5018 old ones but redirect all calls to the new one.
5019
8b7d0494 5020 * All of the kdbus logic and the new APIs "sd-bus.h",
e49b5aad 5021 "sd-memfd.h", "sd-event.h", "sd-rtnl.h", "sd-resolve.h",
8b7d0494
JSJ
5022 and "sd-utf8.h" are compile-time optional via the
5023 "--enable-kdbus" switch, and they are not compiled in by
5024 default. To make use of kdbus, you have to explicitly enable
4c2413bf 5025 the switch. Note however, that neither the kernel nor the
e49b5aad
LP
5026 userspace API for all of this is considered stable yet. We
5027 want to maintain the freedom to still change the APIs for
4c2413bf 5028 now. By specifying this build-time switch, you acknowledge
e49b5aad 5029 that you are aware of the instability of the current
ad42cf73
KS
5030 APIs.
5031
5032 * Also, note that while kdbus is pretty much complete,
e49b5aad 5033 it lacks one thing: proper policy support. This means you
8b7d0494 5034 can build a fully working system with all features; however,
4c2413bf
JE
5035 it will be highly insecure. Policy support will be added in
5036 one of the next releases, at the same time that we will
5037 declare the APIs stable.
e49b5aad 5038
81c7dd89 5039 * When the kernel command line argument "kdbus" is specified,
ad42cf73 5040 systemd will automatically load the kdbus.ko kernel module. At
8b7d0494 5041 this stage of development, it is only useful for testing kdbus
ad42cf73 5042 and should not be used in production. Note: if "--enable-kdbus"
8b7d0494 5043 is specified, and the kdbus.ko kernel module is available, and
ad42cf73
KS
5044 "kdbus" is added to the kernel command line, the entire system
5045 runs with kdbus instead of dbus-daemon, with the above mentioned
5046 problem of missing the system policy enforcement. Also a future
5047 version of kdbus.ko or a newer systemd will not be compatible with
5048 each other, and will unlikely be able to boot the machine if only
5049 one of them is updated.
5050
e49b5aad 5051 * systemctl gained a new "import-environment" command which
4c2413bf 5052 uploads the caller's environment (or parts thereof) into the
e49b5aad
LP
5053 service manager so that it is inherited by services started
5054 by the manager. This is useful to upload variables like
5055 $DISPLAY into the user service manager.
5056
5057 * A new PrivateDevices= switch has been added to service units
5058 which allows running a service with a namespaced /dev
5059 directory that does not contain any device nodes for
4c2413bf 5060 physical devices. More specifically, it only includes devices
8b7d0494 5061 such as /dev/null, /dev/urandom, and /dev/zero which are API
e49b5aad
LP
5062 entry points.
5063
5064 * logind has been extended to support behaviour like VT
5065 switching on seats that do not support a VT. This makes
5066 multi-session available on seats that are not the first seat
5067 (seat0), and on systems where kernel support for VTs has
8b7d0494 5068 been disabled at compile-time.
e49b5aad
LP
5069
5070 * If a process holds a delay lock for system sleep or shutdown
1e190502 5071 and fails to release it in time, we will now log its
e49b5aad
LP
5072 identity. This makes it easier to identify processes that
5073 cause slow suspends or power-offs.
5074
1e190502
ZJS
5075 * When parsing /etc/crypttab, support for a new key-slot=
5076 option as supported by Debian is added. It allows indicating
5077 which LUKS slot to use on disk, speeding up key loading.
e49b5aad 5078
1e190502
ZJS
5079 * The sd_journald_sendv() API call has been checked and
5080 officially declared to be async-signal-safe so that it may
5081 be invoked from signal handlers for logging purposes.
e49b5aad
LP
5082
5083 * Boot-time status output is now enabled automatically after a
5084 short timeout if boot does not progress, in order to give
8e420494 5085 the user an indication what she or he is waiting for.
1e190502
ZJS
5086
5087 * The boot-time output has been improved to show how much time
5088 remains until jobs expire.
e49b5aad
LP
5089
5090 * The KillMode= switch in service units gained a new possible
8b7d0494 5091 value "mixed". If set, and the unit is shut down, then the
e49b5aad 5092 initial SIGTERM signal is sent only to the main daemon
8e420494 5093 process, while the following SIGKILL signal is sent to
e49b5aad
LP
5094 all remaining processes of the service.
5095
4c2413bf
JE
5096 * When a scope unit is registered, a new property "Controller"
5097 may be set. If set to a valid bus name, systemd will send a
e49b5aad
LP
5098 RequestStop() signal to this name when it would like to shut
5099 down the scope. This may be used to hook manager logic into
5100 the shutdown logic of scope units. Also, scope units may now
8b7d0494 5101 be put in a special "abandoned" state, in which case the
e49b5aad
LP
5102 manager process which created them takes no further
5103 responsibilities for it.
5104
1e190502 5105 * When reading unit files, systemd will now verify
e49b5aad
LP
5106 the access mode of these files, and warn about certain
5107 suspicious combinations. This has been added to make it
5108 easier to track down packaging bugs where unit files are
5109 marked executable or world-writable.
5110
5111 * systemd-nspawn gained a new "--setenv=" switch to set
8b7d0494 5112 container-wide environment variables. The similar option in
1e190502
ZJS
5113 systemd-activate was renamed from "--environment=" to
5114 "--setenv=" for consistency.
e49b5aad
LP
5115
5116 * systemd-nspawn has been updated to create a new kdbus domain
5117 for each container that is invoked, thus allowing each
b9761003 5118 container to have its own set of system and user buses,
8b7d0494 5119 independent of the host.
e49b5aad
LP
5120
5121 * systemd-nspawn gained a new --drop-capability= switch to run
5122 the container with less capabilities than the default. Both
b9761003 5123 --drop-capability= and --capability= now take the special
e49b5aad
LP
5124 string "all" for dropping or keeping all capabilities.
5125
5126 * systemd-nspawn gained new switches for executing containers
5127 with specific SELinux labels set.
5128
5129 * systemd-nspawn gained a new --quiet switch to not generate
5130 any additional output but the container's own console
5131 output.
5132
5133 * systemd-nspawn gained a new --share-system switch to run a
5134 container without PID namespacing enabled.
5135
5136 * systemd-nspawn gained a new --register= switch to control
1e190502 5137 whether the container is registered with systemd-machined or
8e420494 5138 not. This is useful for containers that do not run full
e49b5aad
LP
5139 OS images, but only specific apps.
5140
5141 * systemd-nspawn gained a new --keep-unit which may be used
8b7d0494 5142 when invoked as the only program from a service unit, and
e49b5aad 5143 results in registration of the unit service itself in
1e190502 5144 systemd-machined, instead of a newly opened scope unit.
e49b5aad
LP
5145
5146 * systemd-nspawn gained a new --network-interface= switch for
5147 moving arbitrary interfaces to the container. The new
4c2413bf 5148 --network-veth switch creates a virtual Ethernet connection
8b7d0494
JSJ
5149 between host and container. The new --network-bridge=
5150 switch then allows assigning the host side of this virtual
5151 Ethernet connection to a bridge device.
e49b5aad 5152
6afc95b7
LP
5153 * systemd-nspawn gained a new --personality= switch for
5154 setting the kernel personality for the container. This is
70a44afe 5155 useful when running a 32-bit container on a 64-bit host. A
b8bde116
JE
5156 similar option Personality= is now also available for service
5157 units to use.
6afc95b7 5158
e49b5aad
LP
5159 * logind will now also track a "Desktop" identifier for each
5160 session which encodes the desktop environment of it. This is
5161 useful for desktop environments that want to identify
5162 multiple running sessions of itself easily.
5163
5164 * A new SELinuxContext= setting for service units has been
5165 added that allows setting a specific SELinux execution
5166 context for a service.
5167
5168 * Most systemd client tools will now honour $SYSTEMD_LESS for
5169 settings of the "less" pager. By default, these tools will
8b7d0494
JSJ
5170 override $LESS to allow certain operations to work, such as
5171 jump-to-the-end. With $SYSTEMD_LESS, it is possible to
e49b5aad
LP
5172 influence this logic.
5173
5174 * systemd's "seccomp" hook-up has been changed to make use of
5175 the libseccomp library instead of using its own
5176 implementation. This has benefits for portability among
5177 other things.
5178
4c2413bf 5179 * For usage together with SystemCallFilter=, a new
8b7d0494 5180 SystemCallErrorNumber= setting has been introduced that
b8bde116
JE
5181 allows configuration of a system error number to be returned
5182 on filtered system calls, instead of immediately killing the
e49b5aad
LP
5183 process. Also, SystemCallArchitectures= has been added to
5184 limit access to system calls of a particular architecture
5185 (in order to turn off support for unused secondary
4c2413bf 5186 architectures). There is also a global
8b7d0494 5187 SystemCallArchitectures= setting in system.conf now to turn
e49b5aad
LP
5188 off support for non-native system calls system-wide.
5189
210054d7
KS
5190 * systemd requires a kernel with a working name_to_handle_at(),
5191 please see the kernel config requirements in the README file.
5192
e49b5aad
LP
5193 Contributions from: Adam Williamson, Alex Jia, Anatol Pomozov,
5194 Ansgar Burchardt, AppleBloom, Auke Kok, Bastien Nocera,
5195 Chengwei Yang, Christian Seiler, Colin Guthrie, Colin Walters,
5196 Cristian Rodríguez, Daniel Buch, Daniele Medri, Daniel J
5197 Walsh, Daniel Mack, Dan McGee, Dave Reisner, David Coppa,
5198 David Herrmann, David Strauss, Djalal Harouni, Dmitry Pisklov,
5199 Elia Pinto, Florian Weimer, George McCollister, Goffredo
5200 Baroncelli, Greg Kroah-Hartman, Hendrik Brueckner, Igor
5201 Zhbanov, Jan Engelhardt, Jan Janssen, Jason A. Donenfeld,
5202 Jason St. John, Jasper St. Pierre, Jóhann B. Guðmundsson, Jose
5203 Ignacio Naranjo, Karel Zak, Kay Sievers, Kristian Høgsberg,
5204 Lennart Poettering, Lubomir Rintel, Lukas Nykryn, Lukasz
5205 Skalski, Łukasz Stelmach, Luke Shumaker, Mantas Mikulėnas,
5206 Marc-Antoine Perennou, Marcel Holtmann, Marcos Felipe Rasia de
5207 Mello, Marko Myllynen, Martin Pitt, Matthew Monaco, Michael
5208 Marineau, Michael Scherer, Michał Górny, Michal Sekletar,
5209 Michele Curti, Oleksii Shevchuk, Olivier Brunel, Patrik Flykt,
5210 Pavel Holica, Raudi, Richard Marko, Ronny Chevalier, Sébastien
5211 Luttringer, Sergey Ptashnick, Shawn Landden, Simon Peeters,
5212 Stefan Beller, Susant Sahani, Sylvain Plantefeve, Sylvia Else,
5213 Tero Roponen, Thomas Bächler, Thomas Hindoe Paaboel Andersen,
5214 Tom Gundersen, Umut Tezduyar Lindskog, Unai Uribarri, Václav
5215 Pavlín, Vincent Batts, WaLyong Cho, William Giokas, Yang
5216 Zhiyong, Yin Kangkai, Yuxuan Shui, Zbigniew Jędrzejewski-Szmek
5217
ccddd104 5218 — Berlin, 2014-02-20
e49b5aad 5219
cd4010b3
LP
5220CHANGES WITH 208:
5221
5222 * logind has gained support for facilitating privileged input
5223 and drm device access for unprivileged clients. This work is
5224 useful to allow Wayland display servers (and similar
5225 programs, such as kmscon) to run under the user's ID and
5226 access input and drm devices which are normally
5227 protected. When this is used (and the kernel is new enough)
5228 logind will "mute" IO on the file descriptors passed to
5229 Wayland as long as it is in the background and "unmute" it
5230 if it returns into the foreground. This allows secure
5231 session switching without allowing background sessions to
5232 eavesdrop on input and display data. This also introduces
5233 session switching support if VT support is turned off in the
5234 kernel, and on seats that are not seat0.
5235
5236 * A new kernel command line option luks.options= is understood
06b643e7 5237 now which allows specifying LUKS options for usage for LUKS
cd4010b3
LP
5238 encrypted partitions specified with luks.uuid=.
5239
5240 * tmpfiles.d(5) snippets may now use specifier expansion in
5241 path names. More specifically %m, %b, %H, %v, are now
5242 replaced by the local machine id, boot id, hostname, and
5243 kernel version number.
5244
5245 * A new tmpfiles.d(5) command "m" has been introduced which
5246 may be used to change the owner/group/access mode of a file
d28315e4 5247 or directory if it exists, but do nothing if it does not.
cd4010b3
LP
5248
5249 * This release removes high-level support for the
5250 MemorySoftLimit= cgroup setting. The underlying kernel
5251 cgroup attribute memory.soft_limit= is currently badly
5252 designed and likely to be removed from the kernel API in its
d28315e4 5253 current form, hence we should not expose it for now.
cd4010b3
LP
5254
5255 * The memory.use_hierarchy cgroup attribute is now enabled for
5256 all cgroups systemd creates in the memory cgroup
5257 hierarchy. This option is likely to be come the built-in
cc98b302
TH
5258 default in the kernel anyway, and the non-hierarchical mode
5259 never made much sense in the intrinsically hierarchical
cd4010b3
LP
5260 cgroup system.
5261
5262 * A new field _SYSTEMD_SLICE= is logged along with all journal
5263 messages containing the slice a message was generated
5264 from. This is useful to allow easy per-customer filtering of
5265 logs among other things.
5266
5267 * systemd-journald will no longer adjust the group of journal
5268 files it creates to the "systemd-journal" group. Instead we
5269 rely on the journal directory to be owned by the
5270 "systemd-journal" group, and its setgid bit set, so that the
5271 kernel file system layer will automatically enforce that
5272 journal files inherit this group assignment. The reason for
5273 this change is that we cannot allow NSS look-ups from
5274 journald which would be necessary to resolve
5275 "systemd-journal" to a numeric GID, because this might
5276 create deadlocks if NSS involves synchronous queries to
5277 other daemons (such as nscd, or sssd) which in turn are
5278 logging clients of journald and might block on it, which
5279 would then dead lock. A tmpfiles.d(5) snippet included in
5280 systemd will make sure the setgid bit and group are
5281 properly set on the journal directory if it exists on every
5282 boot. However, we recommend adjusting it manually after
5283 upgrades too (or from RPM scriptlets), so that the change is
5284 not delayed until next reboot.
5285
5286 * Backlight and random seed files in /var/lib/ have moved into
5287 the /var/lib/systemd/ directory, in order to centralize all
5288 systemd generated files in one directory.
5289
5290 * Boot time performance measurements (as displayed by
5291 "systemd-analyze" for example) will now read ACPI 5.0 FPDT
5292 performance information if that's available to determine how
5293 much time BIOS and boot loader initialization required. With
5294 a sufficiently new BIOS you hence no longer need to boot
5295 with Gummiboot to get access to such information.
5296
5297 Contributions from: Andrey Borzenkov, Chen Jie, Colin Walters,
5298 Cristian Rodríguez, Dave Reisner, David Herrmann, David
5299 Mackey, David Strauss, Eelco Dolstra, Evan Callicoat, Gao
5300 feng, Harald Hoyer, Jimmie Tauriainen, Kay Sievers, Lennart
5301 Poettering, Lukas Nykryn, Mantas Mikulėnas, Martin Pitt,
5302 Michael Scherer, Michał Górny, Mike Gilbert, Patrick McCarty,
5303 Sebastian Ott, Tom Gundersen, Zbigniew Jędrzejewski-Szmek
5304
ccddd104 5305 — Berlin, 2013-10-02
cd4010b3 5306
4f0be680
LP
5307CHANGES WITH 207:
5308
5309 * The Restart= option for services now understands a new
f3a165b0 5310 on-watchdog setting, which will restart the service
4f0be680
LP
5311 automatically if the service stops sending out watchdog keep
5312 alive messages (as configured with WatchdogSec=).
5313
5314 * The getty generator (which is responsible for bringing up a
5315 getty on configured serial consoles) will no longer only
5316 start a getty on the primary kernel console but on all
5317 others, too. This makes the order in which console= is
5318 specified on the kernel command line less important.
5319
5320 * libsystemd-logind gained a new sd_session_get_vt() call to
5321 retrieve the VT number of a session.
5322
5323 * If the option "tries=0" is set for an entry of /etc/crypttab
5324 its passphrase is queried indefinitely instead of any
5325 maximum number of tries.
5326
5327 * If a service with a configure PID file terminates its PID
5328 file will now be removed automatically if it still exists
5329 afterwards. This should put an end to stale PID files.
5330
5331 * systemd-run will now also take relative binary path names
5332 for execution and no longer insists on absolute paths.
5333
5334 * InaccessibleDirectories= and ReadOnlyDirectories= now take
5335 paths that are optionally prefixed with "-" to indicate that
d28315e4 5336 it should not be considered a failure if they do not exist.
4f0be680 5337
f3a165b0
KS
5338 * journalctl -o (and similar commands) now understands a new
5339 output mode "short-precise", it is similar to "short" but
4f0be680
LP
5340 shows timestamps with usec accuracy.
5341
5342 * The option "discard" (as known from Debian) is now
5343 synonymous to "allow-discards" in /etc/crypttab. In fact,
387abf80 5344 "discard" is preferred now (since it is easier to remember
4f0be680
LP
5345 and type).
5346
f3a165b0 5347 * Some licensing clean-ups were made, so that more code is now
4f0be680
LP
5348 LGPL-2.1 licensed than before.
5349
5350 * A minimal tool to save/restore the display backlight
5351 brightness across reboots has been added. It will store the
f3a165b0 5352 backlight setting as late as possible at shutdown, and
4f0be680
LP
5353 restore it as early as possible during reboot.
5354
5355 * A logic to automatically discover and enable home and swap
5356 partitions on GPT disks has been added. With this in place
5357 /etc/fstab becomes optional for many setups as systemd can
5358 discover certain partitions located on the root disk
5359 automatically. Home partitions are recognized under their
5360 GPT type ID 933ac7e12eb44f13b8440e14e2aef915. Swap
5361 partitions are recognized under their GPT type ID
5362 0657fd6da4ab43c484e50933c84b4f4f.
5363
5364 * systemd will no longer pass any environment from the kernel
5365 or initrd to system services. If you want to set an
5366 environment for all services, do so via the kernel command
5367 line systemd.setenv= assignment.
5368
387abf80
LP
5369 * The systemd-sysctl tool no longer natively reads the file
5370 /etc/sysctl.conf. If desired, the file should be symlinked
5371 from /etc/sysctl.d/99-sysctl.conf. Apart from providing
5372 legacy support by a symlink rather than built-in code, it
5373 also makes the otherwise hidden order of application of the
5374 different files visible. (Note that this partly reverts to a
5375 pre-198 application order of sysctl knobs!)
04bf3c1a 5376
4f0be680
LP
5377 * The "systemctl set-log-level" and "systemctl dump" commands
5378 have been moved to systemd-analyze.
5379
5380 * systemd-run learned the new --remain-after-exit switch,
5381 which causes the scope unit not to be cleaned up
5382 automatically after the process terminated.
5383
5384 * tmpfiles learned a new --exclude-prefix= switch to exclude
5385 certain paths from operation.
5386
5387 * journald will now automatically flush all messages to disk
f47ad593
ZJS
5388 as soon as a message at the log level CRIT, ALERT or EMERG
5389 is received.
4f0be680
LP
5390
5391 Contributions from: Andrew Cook, Brandon Philips, Christian
5392 Hesse, Christoph Junghans, Colin Walters, Daniel Schaal,
5393 Daniel Wallace, Dave Reisner, David Herrmann, Gao feng, George
5394 McCollister, Giovanni Campagna, Hannes Reinecke, Harald Hoyer,
5395 Herczeg Zsolt, Holger Hans Peter Freyther, Jan Engelhardt,
5396 Jesper Larsen, Kay Sievers, Khem Raj, Lennart Poettering,
5397 Lukas Nykryn, Maciej Wereski, Mantas Mikulėnas, Marcel
5398 Holtmann, Martin Pitt, Michael Biebl, Michael Marineau,
5399 Michael Scherer, Michael Stapelberg, Michal Sekletar, Michał
5400 Górny, Olivier Brunel, Ondrej Balaz, Ronny Chevalier, Shawn
5401 Landden, Steven Hiscocks, Thomas Bächler, Thomas Hindoe
5402 Paaboel Andersen, Tom Gundersen, Umut Tezduyar, WANG Chao,
5403 William Giokas, Zbigniew Jędrzejewski-Szmek
5404
ccddd104 5405 — Berlin, 2013-09-13
4f0be680 5406
408f281b
LP
5407CHANGES WITH 206:
5408
5409 * The documentation has been updated to cover the various new
5410 concepts introduced with 205.
5411
5412 * Unit files now understand the new %v specifier which
5413 resolves to the kernel version string as returned by "uname
5414 -r".
5415
5416 * systemctl now supports filtering the unit list output by
5417 load state, active state and sub state, using the new
33b521be 5418 --state= parameter.
408f281b
LP
5419
5420 * "systemctl status" will now show the results of the
5421 condition checks (like ConditionPathExists= and similar) of
5422 the last start attempts of the unit. They are also logged to
5423 the journal.
5424
5425 * "journalctl -b" may now be used to look for boot output of a
5426 specific boot. Try "journalctl -b -1" for the previous boot,
5427 but the syntax is substantially more powerful.
5428
5429 * "journalctl --show-cursor" has been added which prints the
5430 cursor string the last shown log line. This may then be used
5431 with the new "journalctl --after-cursor=" switch to continue
5432 browsing logs from that point on.
5433
5434 * "journalctl --force" may now be used to force regeneration
5435 of an FSS key.
5436
251cc819
LP
5437 * Creation of "dead" device nodes has been moved from udev
5438 into kmod and tmpfiles. Previously, udev would read the kmod
5439 databases to pre-generate dead device nodes based on meta
5440 information contained in kernel modules, so that these would
5441 be auto-loaded on access rather then at boot. As this
d28315e4 5442 does not really have much to do with the exposing actual
251cc819
LP
5443 kernel devices to userspace this has always been slightly
5444 alien in the udev codebase. Following the new scheme kmod
5445 will now generate a runtime snippet for tmpfiles from the
5446 module meta information and it now is tmpfiles' job to the
5447 create the nodes. This also allows overriding access and
5448 other parameters for the nodes using the usual tmpfiles
5449 facilities. As side effect this allows us to remove the
5450 CAP_SYS_MKNOD capability bit from udevd entirely.
5451
5452 * logind's device ACLs may now be applied to these "dead"
5453 devices nodes too, thus finally allowing managed access to
ce830873 5454 devices such as /dev/snd/sequencer without loading the
251cc819 5455 backing module right-away.
408f281b
LP
5456
5457 * A new RPM macro has been added that may be used to apply
5458 tmpfiles configuration during package installation.
5459
5460 * systemd-detect-virt and ConditionVirtualization= now can
5461 detect User-Mode-Linux machines (UML).
5462
251cc819
LP
5463 * journald will now implicitly log the effective capabilities
5464 set of processes in the message metadata.
408f281b
LP
5465
5466 * systemd-cryptsetup has gained support for TrueCrypt volumes.
5467
5468 * The initrd interface has been simplified (more specifically,
5469 support for passing performance data via environment
5470 variables and fsck results via files in /run has been
5471 removed). These features were non-essential, and are
5472 nowadays available in a much nicer way by having systemd in
5473 the initrd serialize its state and have the hosts systemd
5474 deserialize it again.
5475
28f5c779
KS
5476 * The udev "keymap" data files and tools to apply keyboard
5477 specific mappings of scan to key codes, and force-release
5478 scan code lists have been entirely replaced by a udev
5479 "keyboard" builtin and a hwdb data file.
408f281b 5480
251cc819
LP
5481 * systemd will now honour the kernel's "quiet" command line
5482 argument also during late shutdown, resulting in a
5483 completely silent shutdown when used.
5484
5485 * There's now an option to control the SO_REUSEPORT socket
5486 option in .socket units.
5487
5488 * Instance units will now automatically get a per-template
5489 subslice of system.slice unless something else is explicitly
5490 configured. For example, instances of sshd@.service will now
5491 implicitly be placed in system-sshd.slice rather than
5492 system.slice as before.
5493
5494 * Test coverage support may now be enabled at build time.
5495
5496 Contributions from: Dave Reisner, Frederic Crozat, Harald
5497 Hoyer, Holger Hans Peter Freyther, Jan Engelhardt, Jan
5498 Janssen, Jason St. John, Jesper Larsen, Kay Sievers, Lennart
5499 Poettering, Lukas Nykryn, Maciej Wereski, Martin Pitt, Michael
5500 Olbrich, Ramkumar Ramachandra, Ross Lagerwall, Shawn Landden,
5501 Thomas H.P. Andersen, Tom Gundersen, Tomasz Torcz, William
5502 Giokas, Zbigniew Jędrzejewski-Szmek
5503
ccddd104 5504 — Berlin, 2013-07-23
4f0be680 5505
00aa832b
LP
5506CHANGES WITH 205:
5507
5508 * Two new unit types have been introduced:
5509
5510 Scope units are very similar to service units, however, are
ccddd104 5511 created out of pre-existing processes — instead of PID 1
00aa832b
LP
5512 forking off the processes. By using scope units it is
5513 possible for system services and applications to group their
5514 own child processes (worker processes) in a powerful way
5515 which then maybe used to organize them, or kill them
5516 together, or apply resource limits on them.
5517
5518 Slice units may be used to partition system resources in an
cc98b302 5519 hierarchical fashion and then assign other units to them. By
00aa832b
LP
5520 default there are now three slices: system.slice (for all
5521 system services), user.slice (for all user sessions),
5522 machine.slice (for VMs and containers).
5523
5524 Slices and scopes have been introduced primarily in
5525 context of the work to move cgroup handling to a
5526 single-writer scheme, where only PID 1
5527 creates/removes/manages cgroups.
5528
5529 * There's a new concept of "transient" units. In contrast to
5530 normal units these units are created via an API at runtime,
5531 not from configuration from disk. More specifically this
5532 means it is now possible to run arbitrary programs as
5533 independent services, with all execution parameters passed
5534 in via bus APIs rather than read from disk. Transient units
5535 make systemd substantially more dynamic then it ever was,
5536 and useful as a general batch manager.
5537
5538 * logind has been updated to make use of scope and slice units
5539 for managing user sessions. As a user logs in he will get
5540 his own private slice unit, to which all sessions are added
5541 as scope units. We also added support for automatically
5542 adding an instance of user@.service for the user into the
5543 slice. Effectively logind will no longer create cgroup
5544 hierarchies on its own now, it will defer entirely to PID 1
5545 for this by means of scope, service and slice units. Since
5546 user sessions this way become entities managed by PID 1
5547 the output of "systemctl" is now a lot more comprehensive.
5548
5549 * A new mini-daemon "systemd-machined" has been added which
5550 may be used by virtualization managers to register local
5551 VMs/containers. nspawn has been updated accordingly, and
5552 libvirt will be updated shortly. machined will collect a bit
5553 of meta information about the VMs/containers, and assign
5554 them their own scope unit (see above). The collected
5555 meta-data is then made available via the "machinectl" tool,
5556 and exposed in "ps" and similar tools. machined/machinectl
5557 is compile-time optional.
5558
5559 * As discussed earlier, the low-level cgroup configuration
5560 options ControlGroup=, ControlGroupModify=,
5561 ControlGroupPersistent=, ControlGroupAttribute= have been
5562 removed. Please use high-level attribute settings instead as
5563 well as slice units.
5564
5565 * A new bus call SetUnitProperties() has been added to alter
5566 various runtime parameters of a unit. This is primarily
5567 useful to alter cgroup parameters dynamically in a nice way,
5568 but will be extended later on to make more properties
5569 modifiable at runtime. systemctl gained a new set-properties
5570 command that wraps this call.
5571
5572 * A new tool "systemd-run" has been added which can be used to
5573 run arbitrary command lines as transient services or scopes,
5574 while configuring a number of settings via the command
5575 line. This tool is currently very basic, however already
5576 very useful. We plan to extend this tool to even allow
5577 queuing of execution jobs with time triggers from the
5578 command line, similar in fashion to "at".
5579
5580 * nspawn will now inform the user explicitly that kernels with
5581 audit enabled break containers, and suggest the user to turn
5582 off audit.
5583
5584 * Support for detecting the IMA and AppArmor security
5585 frameworks with ConditionSecurity= has been added.
5586
5587 * journalctl gained a new "-k" switch for showing only kernel
1fda0ab5
ZJS
5588 messages, mimicking dmesg output; in addition to "--user"
5589 and "--system" switches for showing only user's own logs
5590 and system logs.
00aa832b
LP
5591
5592 * systemd-delta can now show information about drop-in
5593 snippets extending unit files.
5594
5595 * libsystemd-bus has been substantially updated but is still
5596 not available as public API.
5597
5598 * systemd will now look for the "debug" argument on the kernel
499b604b 5599 command line and enable debug logging, similar to what
00aa832b
LP
5600 "systemd.log_level=debug" already did before.
5601
5602 * "systemctl set-default", "systemctl get-default" has been
5603 added to configure the default.target symlink, which
5604 controls what to boot into by default.
5605
1fda0ab5
ZJS
5606 * "systemctl set-log-level" has been added as a convenient
5607 way to raise and lower systemd logging threshold.
5608
00aa832b
LP
5609 * "systemd-analyze plot" will now show the time the various
5610 generators needed for execution, as well as information
5611 about the unit file loading.
5612
00aa832b
LP
5613 * libsystemd-journal gained a new sd_journal_open_files() call
5614 for opening specific journal files. journactl also gained a
5615 new switch to expose this new functionality. Previously we
5616 only supported opening all files from a directory, or all
5617 files from the system, as opening individual files only is
5618 racy due to journal file rotation.
5619
5620 * systemd gained the new DefaultEnvironment= setting in
5621 /etc/systemd/system.conf to set environment variables for
5622 all services.
5623
5624 * If a privileged process logs a journal message with the
5625 OBJECT_PID= field set, then journald will automatically
5626 augment this with additional OBJECT_UID=, OBJECT_GID=,
5627 OBJECT_COMM=, OBJECT_EXE=, ... fields. This is useful if
5628 system services want to log events about specific client
5629 processes. journactl/systemctl has been updated to make use
5630 of this information if all log messages regarding a specific
5631 unit is requested.
5632
5633 Contributions from: Auke Kok, Chengwei Yang, Colin Walters,
5634 Cristian Rodríguez, Daniel Albers, Daniel Wallace, Dave
5635 Reisner, David Coppa, David King, David Strauss, Eelco
5636 Dolstra, Gabriel de Perthuis, Harald Hoyer, Jan Alexander
5637 Steffens, Jan Engelhardt, Jan Janssen, Jason St. John, Johan
5638 Heikkilä, Karel Zak, Karol Lewandowski, Kay Sievers, Lennart
5639 Poettering, Lukas Nykryn, Mantas Mikulėnas, Marius Vollmer,
5640 Martin Pitt, Michael Biebl, Michael Olbrich, Michael Tremer,
5641 Michal Schmidt, Michał Bartoszkiewicz, Nirbheek Chauhan,
5642 Pierre Neidhardt, Ross Burton, Ross Lagerwall, Sean McGovern,
5643 Thomas Hindoe Paaboel Andersen, Tom Gundersen, Umut Tezduyar,
5644 Václav Pavlín, Zachary Cook, Zbigniew Jędrzejewski-Szmek,
5645 Łukasz Stelmach, 장동준
5646
606c24e3
LP
5647CHANGES WITH 204:
5648
5649 * The Python bindings gained some minimal support for the APIs
5650 exposed by libsystemd-logind.
5651
5652 * ConditionSecurity= gained support for detecting SMACK. Since
5653 this condition already supports SELinux and AppArmor we only
5654 miss IMA for this. Patches welcome!
5655
5656 Contributions from: Karol Lewandowski, Lennart Poettering,
5657 Zbigniew Jędrzejewski-Szmek
5658
2f3fcf85
LP
5659CHANGES WITH 203:
5660
5661 * systemd-nspawn will now create /etc/resolv.conf if
5662 necessary, before bind-mounting the host's file onto it.
5663
5664 * systemd-nspawn will now store meta information about a
5665 container on the container's cgroup as extended attribute
5666 fields, including the root directory.
5667
5668 * The cgroup hierarchy has been reworked in many ways. All
5669 objects any of the components systemd creates in the cgroup
b82eed9a 5670 tree are now suffixed. More specifically, user sessions are
2f3fcf85
LP
5671 now placed in cgroups suffixed with ".session", users in
5672 cgroups suffixed with ".user", and nspawn containers in
5673 cgroups suffixed with ".nspawn". Furthermore, all cgroup
5674 names are now escaped in a simple scheme to avoid collision
5675 of userspace object names with kernel filenames. This work
5676 is preparation for making these objects relocatable in the
5677 cgroup tree, in order to allow easy resource partitioning of
5678 these objects without causing naming conflicts.
5679
5680 * systemctl list-dependencies gained the new switches
5681 --plain, --reverse, --after and --before.
5682
5683 * systemd-inhibit now shows the process name of processes that
5684 have taken an inhibitor lock.
5685
5686 * nss-myhostname will now also resolve "localhost"
5687 implicitly. This makes /etc/hosts an optional file and
5688 nicely handles that on IPv6 ::1 maps to both "localhost" and
5689 the local hostname.
5690
5691 * libsystemd-logind.so gained a new call
5692 sd_get_machine_names() to enumerate running containers and
5693 VMs (currently only supported by very new libvirt and
5694 nspawn). sd_login_monitor can now be used to watch
5695 VMs/containers coming and going.
5696
5697 * .include is not allowed recursively anymore, and only in
5698 unit files. Usually it is better to use drop-in snippets in
5699 .d/*.conf anyway, as introduced with systemd 198.
5700
5701 * systemd-analyze gained a new "critical-chain" command that
5702 determines the slowest chain of units run during system
5703 boot-up. It is very useful for tracking down where
5704 optimizing boot time is the most beneficial.
5705
5706 * systemd will no longer allow manipulating service paths in
5707 the name=systemd:/system cgroup tree using ControlGroup= in
5708 units. (But is still fine with it in all other dirs.)
5709
5710 * There's a new systemd-nspawn@.service service file that may
5711 be used to easily run nspawn containers as system
5712 services. With the container's root directory in
5713 /var/lib/container/foobar it is now sufficient to run
5714 "systemctl start systemd-nspawn@foobar.service" to boot it.
5715
5716 * systemd-cgls gained a new parameter "--machine" to list only
5717 the processes within a certain container.
5718
5719 * ConditionSecurity= now can check for "apparmor". We still
5720 are lacking checks for SMACK and IMA for this condition
5721 check though. Patches welcome!
5722
5723 * A new configuration file /etc/systemd/sleep.conf has been
5724 added that may be used to configure which kernel operation
5725 systemd is supposed to execute when "suspend", "hibernate"
5726 or "hybrid-sleep" is requested. This makes the new kernel
5727 "freeze" state accessible to the user.
5728
5729 * ENV{SYSTEMD_WANTS} in udev rules will now implicitly escape
5730 the passed argument if applicable.
5731
5732 Contributions from: Auke Kok, Colin Guthrie, Colin Walters,
5733 Cristian Rodríguez, Daniel Buch, Daniel Wallace, Dave Reisner,
5734 Evangelos Foutras, Greg Kroah-Hartman, Harald Hoyer, Josh
5735 Triplett, Kay Sievers, Lennart Poettering, Lukas Nykryn,
5736 MUNEDA Takahiro, Mantas Mikulėnas, Mirco Tischler, Nathaniel
5737 Chen, Nirbheek Chauhan, Ronny Chevalier, Ross Lagerwall, Tom
5738 Gundersen, Umut Tezduyar, Ville Skyttä, Zbigniew
5739 Jędrzejewski-Szmek
5740
ef3b5246
LP
5741CHANGES WITH 202:
5742
5743 * The output of 'systemctl list-jobs' got some polishing. The
5744 '--type=' argument may now be passed more than once. A new
5745 command 'systemctl list-sockets' has been added which shows
5746 a list of kernel sockets systemd is listening on with the
5747 socket units they belong to, plus the units these socket
5748 units activate.
5749
5750 * The experimental libsystemd-bus library got substantial
5751 updates to work in conjunction with the (also experimental)
5752 kdbus kernel project. It works well enough to exchange
5753 messages with some sophistication. Note that kdbus is not
5754 ready yet, and the library is mostly an elaborate test case
5755 for now, and not installable.
5756
5757 * systemd gained a new unit 'systemd-static-nodes.service'
5758 that generates static device nodes earlier during boot, and
5759 can run in conjunction with udev.
5760
5761 * libsystemd-login gained a new call sd_pid_get_user_unit()
5762 to retrieve the user systemd unit a process is running
5763 in. This is useful for systems where systemd is used as
5764 session manager.
5765
5766 * systemd-nspawn now places all containers in the new /machine
5767 top-level cgroup directory in the name=systemd
5768 hierarchy. libvirt will soon do the same, so that we get a
5769 uniform separation of /system, /user and /machine for system
5770 services, user processes and containers/virtual
5771 machines. This new cgroup hierarchy is also useful to stick
5772 stable names to specific container instances, which can be
7c04ad2d 5773 recognized later this way (this name may be controlled
ef3b5246
LP
5774 via systemd-nspawn's new -M switch). libsystemd-login also
5775 gained a new call sd_pid_get_machine_name() to retrieve the
5776 name of the container/VM a specific process belongs to.
5777
5778 * bootchart can now store its data in the journal.
5779
5780 * libsystemd-journal gained a new call
5781 sd_journal_add_conjunction() for AND expressions to the
5782 matching logic. This can be used to express more complex
5783 logical expressions.
5784
5785 * journactl can now take multiple --unit= and --user-unit=
5786 switches.
5787
5788 * The cryptsetup logic now understands the "luks.key=" kernel
5789 command line switch for specifying a file to read the
7c04ad2d 5790 decryption key from. Also, if a configured key file is not
ef3b5246
LP
5791 found the tool will now automatically fall back to prompting
5792 the user.
5793
cbeabcfb
ZJS
5794 * Python systemd.journal module was updated to wrap recently
5795 added functions from libsystemd-journal. The interface was
5796 changed to bring the low level interface in s.j._Reader
5797 closer to the C API, and the high level interface in
5798 s.j.Reader was updated to wrap and convert all data about
5799 an entry.
5800
ef3b5246
LP
5801 Contributions from: Anatol Pomozov, Auke Kok, Harald Hoyer,
5802 Henrik Grindal Bakken, Josh Triplett, Kay Sievers, Lennart
5803 Poettering, Lukas Nykryn, Mantas Mikulėnas Marius Vollmer,
5804 Martin Jansa, Martin Pitt, Michael Biebl, Michal Schmidt,
5805 Mirco Tischler, Pali Rohar, Simon Peeters, Steven Hiscocks,
5806 Tom Gundersen, Zbigniew Jędrzejewski-Szmek
5807
d3a86981
LP
5808CHANGES WITH 201:
5809
5810 * journalctl --update-catalog now understands a new --root=
5811 option to operate on catalogs found in a different root
5812 directory.
5813
5814 * During shutdown after systemd has terminated all running
5815 services a final killing loop kills all remaining left-over
5816 processes. We will now print the name of these processes
5817 when we send SIGKILL to them, since this usually indicates a
5818 problem.
5819
5820 * If /etc/crypttab refers to password files stored on
5821 configured mount points automatic dependencies will now be
5822 generated to ensure the specific mount is established first
5823 before the key file is attempted to be read.
5824
5825 * 'systemctl status' will now show information about the
5826 network sockets a socket unit is listening on.
5827
5828 * 'systemctl status' will also shown information about any
5829 drop-in configuration file for units. (Drop-In configuration
5830 files in this context are files such as
5831 /etc/systemd/systemd/foobar.service.d/*.conf)
5832
5833 * systemd-cgtop now optionally shows summed up CPU times of
5834 cgroups. Press '%' while running cgtop to switch between
5835 percentage and absolute mode. This is useful to determine
5836 which cgroups use up the most CPU time over the entire
5837 runtime of the system. systemd-cgtop has also been updated
5838 to be 'pipeable' for processing with further shell tools.
5839
5840 * 'hostnamectl set-hostname' will now allow setting of FQDN
5841 hostnames.
5842
5843 * The formatting and parsing of time span values has been
5844 changed. The parser now understands fractional expressions
5845 such as "5.5h". The formatter will now output fractional
5846 expressions for all time spans under 1min, i.e. "5.123456s"
5847 rather than "5s 123ms 456us". For time spans under 1s
5848 millisecond values are shown, for those under 1ms
5849 microsecond values are shown. This should greatly improve
5850 all time-related output of systemd.
5851
5852 * libsystemd-login and libsystemd-journal gained new
5853 functions for querying the poll() events mask and poll()
5854 timeout value for integration into arbitrary event
5855 loops.
5856
5857 * localectl gained the ability to list available X11 keymaps
5858 (models, layouts, variants, options).
5859
5860 * 'systemd-analyze dot' gained the ability to filter for
5861 specific units via shell-style globs, to create smaller,
d28315e4 5862 more useful graphs. I.e. it is now possible to create simple
d3a86981
LP
5863 graphs of all the dependencies between only target units, or
5864 of all units that Avahi has dependencies with.
5865
5866 Contributions from: Cristian Rodríguez, Dr. Tilmann Bubeck,
5867 Harald Hoyer, Holger Hans Peter Freyther, Kay Sievers, Kelly
5868 Anderson, Koen Kooi, Lennart Poettering, Maksim Melnikau,
5869 Marc-Antoine Perennou, Marius Vollmer, Martin Pitt, Michal
5870 Schmidt, Oleksii Shevchuk, Ronny Chevalier, Simon McVittie,
5871 Steven Hiscocks, Thomas Weißschuh, Umut Tezduyar, Václav
5872 Pavlín, Zbigniew Jędrzejewski-Szmek, Łukasz Stelmach
5873
9ca3c17f
LP
5874CHANGES WITH 200:
5875
5876 * The boot-time readahead implementation for rotating media
5877 will now read the read-ahead data in multiple passes which
5878 consist of all read requests made in equidistant time
5879 intervals. This means instead of strictly reading read-ahead
5880 data in its physical order on disk we now try to find a
5881 middle ground between physical and access time order.
5882
5883 * /etc/os-release files gained a new BUILD_ID= field for usage
5884 on operating systems that provide continuous builds of OS
5885 images.
5886
5887 Contributions from: Auke Kok, Eelco Dolstra, Kay Sievers,
5888 Lennart Poettering, Lukas Nykryn, Martin Pitt, Václav Pavlín
5889 William Douglas, Zbigniew Jędrzejewski-Szmek
5890
35911459
LP
5891CHANGES WITH 199:
5892
5893 * systemd-python gained an API exposing libsystemd-daemon.
5894
5895 * The SMACK setup logic gained support for uploading CIPSO
5896 security policy.
5897
5898 * Behaviour of PrivateTmp=, ReadWriteDirectories=,
5899 ReadOnlyDirectories= and InaccessibleDirectories= has
5900 changed. The private /tmp and /var/tmp directories are now
5901 shared by all processes of a service (which means
5902 ExecStartPre= may now leave data in /tmp that ExecStart= of
5903 the same service can still access). When a service is
5904 stopped its temporary directories are immediately deleted
a87197f5 5905 (normal clean-up with tmpfiles is still done in addition to
35911459
LP
5906 this though).
5907
5908 * By default, systemd will now set a couple of sysctl
5909 variables in the kernel: the safe sysrq options are turned
5910 on, IP route verification is turned on, and source routing
5911 disabled. The recently added hardlink and softlink
5912 protection of the kernel is turned on. These settings should
5913 be reasonably safe, and good defaults for all new systems.
5914
5915 * The predictable network naming logic may now be turned off
a87197f5 5916 with a new kernel command line switch: net.ifnames=0.
35911459
LP
5917
5918 * A new libsystemd-bus module has been added that implements a
5919 pretty complete D-Bus client library. For details see:
5920
56cadcb6 5921 https://lists.freedesktop.org/archives/systemd-devel/2013-March/009797.html
35911459 5922
c20d8298 5923 * journald will now explicitly flush the journal files to disk
a87197f5
ZJS
5924 at the latest 5min after each write. The file will then also
5925 be marked offline until the next write. This should increase
5926 reliability in case of a crash. The synchronization delay
5927 can be configured via SyncIntervalSec= in journald.conf.
35911459
LP
5928
5929 * There's a new remote-fs-setup.target unit that can be used
5930 to pull in specific services when at least one remote file
5931 system is to be mounted.
5932
5933 * There are new targets timers.target and paths.target as
5934 canonical targets to pull user timer and path units in
5935 from. This complements sockets.target with a similar
5936 purpose for socket units.
5937
6a7d3d68
LP
5938 * libudev gained a new call udev_device_set_attribute_value()
5939 to set sysfs attributes of a device.
5940
a87197f5
ZJS
5941 * The udev daemon now sets the default number of worker
5942 processes executed in parallel based on the number of available
c20d8298 5943 CPUs instead of the amount of available RAM. This is supposed
ab06eef8 5944 to provide a more reliable default and limit a too aggressive
ce830873 5945 parallelism for setups with 1000s of devices connected.
c20d8298 5946
35911459
LP
5947 Contributions from: Auke Kok, Colin Walters, Cristian
5948 Rodríguez, Daniel Buch, Dave Reisner, Frederic Crozat, Hannes
5949 Reinecke, Harald Hoyer, Jan Alexander Steffens, Jan
5950 Engelhardt, Josh Triplett, Kay Sievers, Lennart Poettering,
5951 Mantas Mikulėnas, Martin Pitt, Mathieu Bridon, Michael Biebl,
5952 Michal Schmidt, Michal Sekletar, Miklos Vajna, Nathaniel Chen,
5953 Oleksii Shevchuk, Ozan Çağlayan, Thomas Hindoe Paaboel
5954 Andersen, Tollef Fog Heen, Tom Gundersen, Umut Tezduyar,
5955 Zbigniew Jędrzejewski-Szmek
5956
85d68397
LP
5957CHANGES WITH 198:
5958
5959 * Configuration of unit files may now be extended via drop-in
5960 files without having to edit/override the unit files
5961 themselves. More specifically, if the administrator wants to
5962 change one value for a service file foobar.service he can
5963 now do so by dropping in a configuration snippet into
ad88e758 5964 /etc/systemd/system/foobar.service.d/*.conf. The unit logic
85d68397
LP
5965 will load all these snippets and apply them on top of the
5966 main unit configuration file, possibly extending or
5967 overriding its settings. Using these drop-in snippets is
40e21da8
KS
5968 generally nicer than the two earlier options for changing
5969 unit files locally: copying the files from
85d68397
LP
5970 /usr/lib/systemd/system/ to /etc/systemd/system/ and editing
5971 them there; or creating a new file in /etc/systemd/system/
5972 that incorporates the original one via ".include". Drop-in
5973 snippets into these .d/ directories can be placed in any
fd868975 5974 directory systemd looks for units in, and the usual
85d68397
LP
5975 overriding semantics between /usr/lib, /etc and /run apply
5976 for them too.
5977
5978 * Most unit file settings which take lists of items can now be
6aa8d43a 5979 reset by assigning the empty string to them. For example,
85d68397
LP
5980 normally, settings such as Environment=FOO=BAR append a new
5981 environment variable assignment to the environment block,
5982 each time they are used. By assigning Environment= the empty
5983 string the environment block can be reset to empty. This is
5984 particularly useful with the .d/*.conf drop-in snippets
156f7d09
KS
5985 mentioned above, since this adds the ability to reset list
5986 settings from vendor unit files via these drop-ins.
85d68397
LP
5987
5988 * systemctl gained a new "list-dependencies" command for
5989 listing the dependencies of a unit recursively.
5990
40e21da8 5991 * Inhibitors are now honored and listed by "systemctl
85d68397
LP
5992 suspend", "systemctl poweroff" (and similar) too, not only
5993 GNOME. These commands will also list active sessions by
5994 other users.
5995
5996 * Resource limits (as exposed by the various control group
5997 controllers) can now be controlled dynamically at runtime
5998 for all units. More specifically, you can now use a command
5999 like "systemctl set-cgroup-attr foobar.service cpu.shares
6000 2000" to alter the CPU shares a specific service gets. These
6aa8d43a 6001 settings are stored persistently on disk, and thus allow the
85d68397
LP
6002 administrator to easily adjust the resource usage of
6003 services with a few simple commands. This dynamic resource
6aa8d43a 6004 management logic is also available to other programs via the
85d68397
LP
6005 bus. Almost any kernel cgroup attribute and controller is
6006 supported.
6007
6008 * systemd-vconsole-setup will now copy all font settings to
6aa8d43a
LP
6009 all allocated VTs, where it previously applied them only to
6010 the foreground VT.
85d68397
LP
6011
6012 * libsystemd-login gained the new sd_session_get_tty() API
6013 call.
6014
6aa8d43a
LP
6015 * This release drops support for a few legacy or
6016 distribution-specific LSB facility names when parsing init
6017 scripts: $x-display-manager, $mail-transfer-agent,
85d68397
LP
6018 $mail-transport-agent, $mail-transfer-agent, $smtp,
6019 $null. Also, the mail-transfer-agent.target unit backing
6020 this has been removed. Distributions which want to retain
6aa8d43a
LP
6021 compatibility with this should carry the burden for
6022 supporting this themselves and patch support for these back
6023 in, if they really need to. Also, the facilities $syslog and
6024 $local_fs are now ignored, since systemd does not support
6025 early-boot LSB init scripts anymore, and these facilities
6026 are implied anyway for normal services. syslog.target has
6027 also been removed.
85d68397 6028
40e21da8 6029 * There are new bus calls on PID1's Manager object for
6aa8d43a 6030 cancelling jobs, and removing snapshot units. Previously,
85d68397
LP
6031 both calls were only available on the Job and Snapshot
6032 objects themselves.
6033
6034 * systemd-journal-gatewayd gained SSL support.
6035
6036 * The various "environment" files, such as /etc/locale.conf
6037 now support continuation lines with a backslash ("\") as
499b604b 6038 last character in the line, similarly in style (but different)
85d68397
LP
6039 to how this is supported in shells.
6040
6041 * For normal user processes the _SYSTEMD_USER_UNIT= field is
6042 now implicitly appended to every log entry logged. systemctl
6043 has been updated to filter by this field when operating on a
6044 user systemd instance.
6045
6046 * nspawn will now implicitly add the CAP_AUDIT_WRITE and
6047 CAP_AUDIT_CONTROL capabilities to the capabilities set for
6048 the container. This makes it easier to boot unmodified
6049 Fedora systems in a container, which however still requires
6050 audit=0 to be passed on the kernel command line. Auditing in
6051 kernel and userspace is unfortunately still too broken in
6052 context of containers, hence we recommend compiling it out
6053 of the kernel or using audit=0. Hopefully this will be fixed
6054 one day for good in the kernel.
6055
6056 * nspawn gained the new --bind= and --bind-ro= parameters to
6057 bind mount specific directories from the host into the
6058 container.
6059
40e21da8 6060 * nspawn will now mount its own devpts file system instance
6aa8d43a 6061 into the container, in order not to leak pty devices from
85d68397
LP
6062 the host into the container.
6063
6064 * systemd will now read the firmware boot time performance
6aa8d43a
LP
6065 information from the EFI variables, if the used boot loader
6066 supports this, and takes it into account for boot performance
6067 analysis via "systemd-analyze". This is currently supported
6068 only in conjunction with Gummiboot, but could be supported
6069 by other boot loaders too. For details see:
85d68397 6070
56cadcb6 6071 https://www.freedesktop.org/wiki/Software/systemd/BootLoaderInterface
85d68397
LP
6072
6073 * A new generator has been added that automatically mounts the
6074 EFI System Partition (ESP) to /boot, if that directory
6aa8d43a
LP
6075 exists, is empty, and no other file system has been
6076 configured to be mounted there.
85d68397
LP
6077
6078 * logind will now send out PrepareForSleep(false) out
6079 unconditionally, after coming back from suspend. This may be
6080 used by applications as asynchronous notification for
6081 system resume events.
6082
6083 * "systemctl unlock-sessions" has been added, that allows
6084 unlocking the screens of all user sessions at once, similar
499b604b 6085 to how "systemctl lock-sessions" already locked all users
40e21da8 6086 sessions. This is backed by a new D-Bus call UnlockSessions().
85d68397
LP
6087
6088 * "loginctl seat-status" will now show the master device of a
6089 seat. (i.e. the device of a seat that needs to be around for
6090 the seat to be considered available, usually the graphics
6091 card).
6092
6093 * tmpfiles gained a new "X" line type, that allows
6094 configuration of files and directories (with wildcards) that
6095 shall be excluded from automatic cleanup ("aging").
6096
bf933560
KS
6097 * udev default rules set the device node permissions now only
6098 at "add" events, and do not change them any longer with a
6099 later "change" event.
85d68397
LP
6100
6101 * The log messages for lid events and power/sleep keypresses
6102 now carry a message ID.
6103
6104 * We now have a substantially larger unit test suite, but this
6105 continues to be work in progress.
6106
6107 * udevadm hwdb gained a new --root= parameter to change the
6108 root directory to operate relative to.
6109
40e21da8
KS
6110 * logind will now issue a background sync() request to the kernel
6111 early at shutdown, so that dirty buffers are flushed to disk early
85d68397
LP
6112 instead of at the last moment, in order to optimize shutdown
6113 times a little.
6114
6115 * A new bootctl tool has been added that is an interface for
6116 certain boot loader operations. This is currently a preview
6117 and is likely to be extended into a small mechanism daemon
6118 like timedated, localed, hostnamed, and can be used by
6119 graphical UIs to enumerate available boot options, and
6120 request boot into firmware operations.
6121
6122 * systemd-bootchart has been relicensed to LGPLv2.1+ to match
6123 the rest of the package. It also has been updated to work
6124 correctly in initrds.
6125
6126 * Policykit previously has been runtime optional, and is now
6127 also compile time optional via a configure switch.
6128
6129 * systemd-analyze has been reimplemented in C. Also "systemctl
6130 dot" has moved into systemd-analyze.
6131
6132 * "systemctl status" with no further parameters will now print
6133 the status of all active or failed units.
6134
6135 * Operations such as "systemctl start" can now be executed
6136 with a new mode "--irreversible" which may be used to queue
6137 operations that cannot accidentally be reversed by a later
6aa8d43a 6138 job queuing. This is by default used to make shutdown
85d68397
LP
6139 requests more robust.
6140
6141 * The Python API of systemd now gained a new module for
6142 reading journal files.
6143
6144 * A new tool kernel-install has been added that can install
6145 kernel images according to the Boot Loader Specification:
6146
56cadcb6 6147 https://www.freedesktop.org/wiki/Specifications/BootLoaderSpec
85d68397
LP
6148
6149 * Boot time console output has been improved to provide
6aa8d43a 6150 animated boot time output for hanging jobs.
85d68397
LP
6151
6152 * A new tool systemd-activate has been added which can be used
6153 to test socket activation with, directly from the command
6154 line. This should make it much easier to test and debug
6155 socket activation in daemons.
6156
6157 * journalctl gained a new "--reverse" (or -r) option to show
6158 journal output in reverse order (i.e. newest line first).
6159
43447fb7
LP
6160 * journalctl gained a new "--pager-end" (or -e) option to jump
6161 to immediately jump to the end of the journal in the
6162 pager. This is only supported in conjunction with "less".
6163
85d68397 6164 * journalctl gained a new "--user-unit=" option, that works
499b604b 6165 similarly to "--unit=" but filters for user units rather than
85d68397
LP
6166 system units.
6167
6168 * A number of unit files to ease adoption of systemd in
6169 initrds has been added. This moves some minimal logic from
6170 the various initrd implementations into systemd proper.
6171
6172 * The journal files are now owned by a new group
6173 "systemd-journal", which exists specifically to allow access
6174 to the journal, and nothing else. Previously, we used the
6aa8d43a 6175 "adm" group for that, which however possibly covers more
85d68397
LP
6176 than just journal/log file access. This new group is now
6177 already used by systemd-journal-gatewayd to ensure this
6178 daemon gets access to the journal files and as little else
6179 as possible. Note that "make install" will also set FS ACLs
6180 up for /var/log/journal to give "adm" and "wheel" read
6181 access to it, in addition to "systemd-journal" which owns
6182 the journal files. We recommend that packaging scripts also
6aa8d43a 6183 add read access to "adm" + "wheel" to /var/log/journal, and
85d68397
LP
6184 all existing/future journal files. To normal users and
6185 administrators little changes, however packagers need to
6186 ensure to create the "systemd-journal" system group at
6187 package installation time.
6188
6189 * The systemd-journal-gatewayd now runs as unprivileged user
6190 systemd-journal-gateway:systemd-journal-gateway. Packaging
6191 scripts need to create these system user/group at
6192 installation time.
6193
6194 * timedated now exposes a new boolean property CanNTP that
6195 indicates whether a local NTP service is available or not.
6196
6197 * systemd-detect-virt will now also detect xen PVs
6198
40e21da8
KS
6199 * The pstore file system is now mounted by default, if it is
6200 available.
85d68397 6201
1aed4590
LP
6202 * In addition to the SELinux and IMA policies we will now also
6203 load SMACK policies at early boot.
6204
85d68397
LP
6205 Contributions from: Adel Gadllah, Aleksander Morgado, Auke
6206 Kok, Ayan George, Bastien Nocera, Colin Walters, Daniel Buch,
6207 Daniel Wallace, Dave Reisner, David Herrmann, David Strauss,
6208 Eelco Dolstra, Enrico Scholz, Frederic Crozat, Harald Hoyer,
6209 Jan Janssen, Jonathan Callen, Kay Sievers, Lennart Poettering,
6210 Lukas Nykryn, Mantas Mikulėnas, Marc-Antoine Perennou, Martin
6211 Pitt, Mauro Dreissig, Max F. Albrecht, Michael Biebl, Michael
6212 Olbrich, Michal Schmidt, Michal Sekletar, Michal Vyskocil,
6213 Michał Bartoszkiewicz, Mirco Tischler, Nathaniel Chen, Nestor
6214 Ovroy, Oleksii Shevchuk, Paul W. Frields, Piotr Drąg, Rob
6215 Clark, Ryan Lortie, Simon McVittie, Simon Peeters, Steven
6216 Hiscocks, Thomas Hindoe Paaboel Andersen, Tollef Fog Heen, Tom
6217 Gundersen, Umut Tezduyar, William Giokas, Zbigniew
6218 Jędrzejewski-Szmek, Zeeshan Ali (Khattak)
6219
8ad26859
LP
6220CHANGES WITH 197:
6221
6222 * Timer units now support calendar time events in addition to
6223 monotonic time events. That means you can now trigger a unit
6224 based on a calendar time specification such as "Thu,Fri
6225 2013-*-1,5 11:12:13" which refers to 11:12:13 of the first
6226 or fifth day of any month of the year 2013, given that it is
6227 a thursday or friday. This brings timer event support
6228 considerably closer to cron's capabilities. For details on
6229 the supported calendar time specification language see
6230 systemd.time(7).
6231
6232 * udev now supports a number of different naming policies for
6233 network interfaces for predictable names, and a combination
6234 of these policies is now the default. Please see this wiki
6235 document for details:
6236
56cadcb6 6237 https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
8ad26859
LP
6238
6239 * Auke Kok's bootchart implementation has been added to the
d28315e4
JE
6240 systemd tree. It is an optional component that can graph the
6241 boot in quite some detail. It is one of the best bootchart
8ad26859
LP
6242 implementations around and minimal in its code and
6243 dependencies.
6244
6245 * nss-myhostname has been integrated into the systemd source
6246 tree. nss-myhostname guarantees that the local hostname
6247 always stays resolvable via NSS. It has been a weak
6248 requirement of systemd-hostnamed since a long time, and
6249 since its code is actually trivial we decided to just
6250 include it in systemd's source tree. It can be turned off
6251 with a configure switch.
6252
6253 * The read-ahead logic is now capable of properly detecting
6254 whether a btrfs file system is on SSD or rotating media, in
6255 order to optimize the read-ahead scheme. Previously, it was
6256 only capable of detecting this on traditional file systems
6257 such as ext4.
6258
6259 * In udev, additional device properties are now read from the
6260 IAB in addition to the OUI database. Also, Bluetooth company
6261 identities are attached to the devices as well.
6262
6263 * In service files %U may be used as specifier that is
6264 replaced by the configured user name of the service.
6265
6266 * nspawn may now be invoked without a controlling TTY. This
6267 makes it suitable for invocation as its own service. This
6268 may be used to set up a simple containerized server system
6269 using only core OS tools.
6270
6271 * systemd and nspawn can now accept socket file descriptors
6272 when they are started for socket activation. This enables
6273 implementation of socket activated nspawn
6274 containers. i.e. think about autospawning an entire OS image
6275 when the first SSH or HTTP connection is received. We expect
6276 that similar functionality will also be added to libvirt-lxc
6277 eventually.
6278
6279 * journalctl will now suppress ANSI color codes when
6280 presenting log data.
6281
6282 * systemctl will no longer show control group information for
ce830873 6283 a unit if the control group is empty anyway.
8ad26859
LP
6284
6285 * logind can now automatically suspend/hibernate/shutdown the
6286 system on idle.
6287
6288 * /etc/machine-info and hostnamed now also expose the chassis
6289 type of the system. This can be used to determine whether
6290 the local system is a laptop, desktop, handset or
6291 tablet. This information may either be configured by the
6292 user/vendor or is automatically determined from ACPI and DMI
6293 information if possible.
6294
6295 * A number of PolicyKit actions are now bound together with
6296 "imply" rules. This should simplify creating UIs because
6297 many actions will now authenticate similar ones as well.
6298
6299 * Unit files learnt a new condition ConditionACPower= which
6300 may be used to conditionalize a unit depending on whether an
6301 AC power source is connected or not, of whether the system
6302 is running on battery power.
6303
6304 * systemctl gained a new "is-failed" verb that may be used in
6305 shell scripts and suchlike to check whether a specific unit
6306 is in the "failed" state.
6307
6308 * The EnvironmentFile= setting in unit files now supports file
6309 globbing, and can hence be used to easily read a number of
6310 environment files at once.
6311
6312 * systemd will no longer detect and recognize specific
6313 distributions. All distribution-specific #ifdeffery has been
6314 removed, systemd is now fully generic and
6315 distribution-agnostic. Effectively, not too much is lost as
6316 a lot of the code is still accessible via explicit configure
6317 switches. However, support for some distribution specific
6318 legacy configuration file formats has been dropped. We
6319 recommend distributions to simply adopt the configuration
6320 files everybody else uses now and convert the old
6321 configuration from packaging scripts. Most distributions
6322 already did that. If that's not possible or desirable,
6323 distributions are welcome to forward port the specific
6324 pieces of code locally from the git history.
6325
6326 * When logging a message about a unit systemd will now always
6327 log the unit name in the message meta data.
6328
6329 * localectl will now also discover system locale data that is
6330 not stored in locale archives, but directly unpacked.
6331
6332 * logind will no longer unconditionally use framebuffer
6333 devices as seat masters, i.e. as devices that are required
6334 to be existing before a seat is considered preset. Instead,
6335 it will now look for all devices that are tagged as
b938cb90
JE
6336 "seat-master" in udev. By default, framebuffer devices will
6337 be marked as such, but depending on local systems, other
8ad26859
LP
6338 devices might be marked as well. This may be used to
6339 integrate graphics cards using closed source drivers (such
6340 as NVidia ones) more nicely into logind. Note however, that
6341 we recommend using the open source NVidia drivers instead,
6342 and no udev rules for the closed-source drivers will be
6343 shipped from us upstream.
6344
6345 Contributions from: Adam Williamson, Alessandro Crismani, Auke
6346 Kok, Colin Walters, Daniel Wallace, Dave Reisner, David
6347 Herrmann, David Strauss, Dimitrios Apostolou, Eelco Dolstra,
6348 Eric Benoit, Giovanni Campagna, Hannes Reinecke, Henrik
6349 Grindal Bakken, Hermann Gausterer, Kay Sievers, Lennart
6350 Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel Holtmann,
6351 Martin Pitt, Matthew Monaco, Michael Biebl, Michael Terry,
6352 Michal Schmidt, Michal Sekletar, Michał Bartoszkiewicz, Oleg
6353 Samarin, Pekka Lundstrom, Philip Nilsson, Ramkumar
6354 Ramachandra, Richard Yao, Robert Millan, Sami Kerola, Shawn
6355 Landden, Thomas Hindoe Paaboel Andersen, Thomas Jarosch,
6356 Tollef Fog Heen, Tom Gundersen, Umut Tezduyar, Zbigniew
6357 Jędrzejewski-Szmek
6358
0428ddb7
LP
6359CHANGES WITH 196:
6360
6361 * udev gained support for loading additional device properties
6362 from an indexed database that is keyed by vendor/product IDs
6363 and similar device identifiers. For the beginning this
6364 "hwdb" is populated with data from the well-known PCI and
6365 USB database, but also includes PNP, ACPI and OID data. In
6366 the longer run this indexed database shall grow into
6367 becoming the one central database for non-essential
6368 userspace device metadata. Previously, data from the PCI/USB
96ec33c0 6369 database was only attached to select devices, since the
0428ddb7 6370 lookup was a relatively expensive operation due to O(n) time
96ec33c0
LP
6371 complexity (with n being the number of entries in the
6372 database). Since this is now O(1), we decided to add in this
6373 data for all devices where this is available, by
0428ddb7
LP
6374 default. Note that the indexed database needs to be rebuilt
6375 when new data files are installed. To achieve this you need
6376 to update your packaging scripts to invoke "udevadm hwdb
6377 --update" after installation of hwdb data files. For
6378 RPM-based distributions we introduced the new
6379 %udev_hwdb_update macro for this purpose.
6380
6381 * The Journal gained support for the "Message Catalog", an
6382 indexed database to link up additional information with
6383 journal entries. For further details please check:
6384
56cadcb6 6385 https://www.freedesktop.org/wiki/Software/systemd/catalog
0428ddb7
LP
6386
6387 The indexed message catalog database also needs to be
6388 rebuilt after installation of message catalog files. Use
6389 "journalctl --update-catalog" for this. For RPM-based
6390 distributions we introduced the %journal_catalog_update
6391 macro for this purpose.
6392
6393 * The Python Journal bindings gained support for the standard
6394 Python logging framework.
6395
6396 * The Journal API gained new functions for checking whether
6397 the underlying file system of a journal file is capable of
6398 properly reporting file change notifications, or whether
6399 applications that want to reflect journal changes "live"
ab06eef8 6400 need to recheck journal files continuously in appropriate
0428ddb7
LP
6401 time intervals.
6402
6403 * It is now possible to set the "age" field for tmpfiles
6404 entries to 0, indicating that files matching this entry
6405 shall always be removed when the directories are cleaned up.
6406
6407 * coredumpctl gained a new "gdb" verb which invokes gdb
6408 right-away on the selected coredump.
6409
6410 * There's now support for "hybrid sleep" on kernels that
6411 support this, in addition to "suspend" and "hibernate". Use
6412 "systemctl hybrid-sleep" to make use of this.
6413
6414 * logind's HandleSuspendKey= setting (and related settings)
6415 now gained support for a new "lock" setting to simply
6416 request the screen lock on all local sessions, instead of
6417 actually executing a suspend or hibernation.
6418
6419 * systemd will now mount the EFI variables file system by
6420 default.
6421
6422 * Socket units now gained support for configuration of the
6423 SMACK security label.
6424
6425 * timedatectl will now output the time of the last and next
6426 daylight saving change.
6427
6428 * We dropped support for various legacy and distro-specific
6429 concepts, such as insserv, early-boot SysV services
6430 (i.e. those for non-standard runlevels such as 'b' or 'S')
6431 or ArchLinux /etc/rc.conf support. We recommend the
6432 distributions who still need support this to either continue
6433 to maintain the necessary patches downstream, or find a
6434 different solution. (Talk to us if you have questions!)
6435
6436 * Various systemd components will now bypass PolicyKit checks
6437 for root and otherwise handle properly if PolicyKit is not
6438 found to be around. This should fix most issues for
6439 PolicyKit-less systems. Quite frankly this should have been
6440 this way since day one. It is absolutely our intention to
6441 make systemd work fine on PolicyKit-less systems, and we
d28315e4 6442 consider it a bug if something does not work as it should if
0428ddb7
LP
6443 PolicyKit is not around.
6444
6445 * For embedded systems it is now possible to build udev and
6446 systemd without blkid and/or kmod support.
6447
6448 * "systemctl switch-root" is now capable of switching root
6449 more than once. I.e. in addition to transitions from the
6450 initrd to the host OS it is now possible to transition to
6451 further OS images from the host. This is useful to implement
6452 offline updating tools.
6453
6454 * Various other additions have been made to the RPM macros
6455 shipped with systemd. Use %udev_rules_update() after
6456 installing new udev rules files. %_udevhwdbdir,
6457 %_udevrulesdir, %_journalcatalogdir, %_tmpfilesdir,
6458 %_sysctldir are now available which resolve to the right
6459 directories for packages to place various data files in.
6460
6461 * journalctl gained the new --full switch (in addition to
6462 --all, to disable ellipsation for long messages.
6463
6464 Contributions from: Anders Olofsson, Auke Kok, Ben Boeckel,
6465 Colin Walters, Cosimo Cecchi, Daniel Wallace, Dave Reisner,
6466 Eelco Dolstra, Holger Hans Peter Freyther, Kay Sievers,
6467 Chun-Yi Lee, Lekensteyn, Lennart Poettering, Mantas Mikulėnas,
6468 Marti Raudsepp, Martin Pitt, Mauro Dreissig, Michael Biebl,
6469 Michal Schmidt, Michal Sekletar, Miklos Vajna, Nis Martensen,
6470 Oleksii Shevchuk, Olivier Brunel, Ramkumar Ramachandra, Thomas
6471 Bächler, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Tony
6472 Camuso, Umut Tezduyar, Zbigniew Jędrzejewski-Szmek
6473
139ee8cc
LP
6474CHANGES WITH 195:
6475
6827101a 6476 * journalctl gained new --since= and --until= switches to
139ee8cc
LP
6477 filter by time. It also now supports nice filtering for
6478 units via --unit=/-u.
6479
6827101a 6480 * Type=oneshot services may use ExecReload= and do the
139ee8cc
LP
6481 right thing.
6482
6483 * The journal daemon now supports time-based rotation and
6484 vacuuming, in addition to the usual disk-space based
6485 rotation.
6486
6487 * The journal will now index the available field values for
6488 each field name. This enables clients to show pretty drop
6489 downs of available match values when filtering. The bash
6490 completion of journalctl has been updated
6491 accordingly. journalctl gained a new switch -F to list all
6492 values a certain field takes in the journal database.
6493
6494 * More service events are now written as structured messages
6495 to the journal, and made recognizable via message IDs.
6496
6497 * The timedated, localed and hostnamed mini-services which
6498 previously only provided support for changing time, locale
6499 and hostname settings from graphical DEs such as GNOME now
6500 also have a minimal (but very useful) text-based client
6501 utility each. This is probably the nicest way to changing
6502 these settings from the command line now, especially since
6503 it lists available options and is fully integrated with bash
6504 completion.
6505
6506 * There's now a new tool "systemd-coredumpctl" to list and
6507 extract coredumps from the journal.
6508
6509 * We now install a README each in /var/log/ and
6510 /etc/rc.d/init.d explaining where the system logs and init
6511 scripts went. This hopefully should help folks who go to
6512 that dirs and look into the otherwise now empty void and
6513 scratch their heads.
6514
6515 * When user-services are invoked (by systemd --user) the
6516 $MANAGERPID env var is set to the PID of systemd.
6517
6518 * SIGRTMIN+24 when sent to a --user instance will now result
6519 in immediate termination of systemd.
6520
6521 * gatewayd received numerous feature additions such as a
6522 "follow" mode, for live syncing and filtering.
6523
6524 * browse.html now allows filtering and showing detailed
6525 information on specific entries. Keyboard navigation and
6526 mouse screen support has been added.
6527
6528 * gatewayd/journalctl now supports HTML5/JSON
6529 Server-Sent-Events as output.
6530
1cb88f2c 6531 * The SysV init script compatibility logic will now
139ee8cc
LP
6532 heuristically determine whether a script supports the
6533 "reload" verb, and only then make this available as
6534 "systemctl reload".
6535
15f47220 6536 * "systemctl status --follow" has been removed, use "journalctl
139ee8cc
LP
6537 -u" instead.
6538
6539 * journald.conf's RuntimeMinSize=, PersistentMinSize= settings
6540 have been removed since they are hardly useful to be
6541 configured.
6542
6543 * And I'd like to take the opportunity to specifically mention
6544 Zbigniew for his great contributions. Zbigniew, you rock!
6545
6546 Contributions from: Andrew Eikum, Christian Hesse, Colin
6547 Guthrie, Daniel J Walsh, Dave Reisner, Eelco Dolstra, Ferenc
4d92e078
LP
6548 Wágner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Mantas
6549 Mikulėnas, Martin Mikkelsen, Martin Pitt, Michael Olbrich,
6550 Michael Stapelberg, Michal Schmidt, Sebastian Ott, Thomas
6551 Bächler, Umut Tezduyar, Will Woods, Wulf C. Krueger, Zbigniew
6552 Jędrzejewski-Szmek, Сковорода Никита Андреевич
139ee8cc 6553
f9b55720
LP
6554CHANGES WITH 194:
6555
6556 * If /etc/vconsole.conf is non-existent or empty we will no
6557 longer load any console font or key map at boot by
6558 default. Instead the kernel defaults will be left
6559 intact. This is definitely the right thing to do, as no
6560 configuration should mean no configuration, and hard-coding
6561 font names that are different on all archs is probably a bad
6562 idea. Also, the kernel default key map and font should be
6563 good enough for most cases anyway, and mostly identical to
6564 the userspace fonts/key maps we previously overloaded them
6565 with. If distributions want to continue to default to a
6566 non-kernel font or key map they should ship a default
6567 /etc/vconsole.conf with the appropriate contents.
6568
6569 Contributions from: Colin Walters, Daniel J Walsh, Dave
6570 Reisner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Tollef
6571 Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek
6572
597c52cf
LP
6573CHANGES WITH 193:
6574
6575 * journalctl gained a new --cursor= switch to show entries
6576 starting from the specified location in the journal.
6577
6578 * We now enforce a size limit on journal entry fields exported
6579 with "-o json" in journalctl. Fields larger than 4K will be
6580 assigned null. This can be turned off with --all.
6581
6582 * An (optional) journal gateway daemon is now available as
6583 "systemd-journal-gatewayd.service". This service provides
6584 access to the journal via HTTP and JSON. This functionality
6585 will be used to implement live log synchronization in both
6586 pull and push modes, but has various other users too, such
6587 as easy log access for debugging of embedded devices. Right
6588 now it is already useful to retrieve the journal via HTTP:
6589
6590 # systemctl start systemd-journal-gatewayd.service
6591 # wget http://localhost:19531/entries
6592
6593 This will download the journal contents in a
6594 /var/log/messages compatible format. The same as JSON:
6595
6596 # curl -H"Accept: application/json" http://localhost:19531/entries
6597
6598 This service is also accessible via a web browser where a
6599 single static HTML5 app is served that uses the JSON logic
6600 to enable the user to do some basic browsing of the
6601 journal. This will be extended later on. Here's an example
6602 screenshot of this app in its current state:
6603
6604 http://0pointer.de/public/journal-gatewayd
6605
6606 Contributions from: Kay Sievers, Lennart Poettering, Robert
6607 Milasan, Tom Gundersen
6608
075d4ecb
LP
6609CHANGES WITH 192:
6610
6611 * The bash completion logic is now available for journalctl
6612 too.
6613
d28315e4 6614 * We do not mount the "cpuset" controller anymore together with
075d4ecb
LP
6615 "cpu" and "cpuacct", as "cpuset" groups generally cannot be
6616 started if no parameters are assigned to it. "cpuset" hence
61233823 6617 broke code that assumed it could create "cpu" groups and
075d4ecb
LP
6618 just start them.
6619
6620 * journalctl -f will now subscribe to terminal size changes,
6621 and line break accordingly.
6622
597c52cf
LP
6623 Contributions from: Dave Reisner, Kay Sievers, Lennart
6624 Poettering, Lukas Nykrynm, Mirco Tischler, Václav Pavlín
075d4ecb 6625
b6a86739
LP
6626CHANGES WITH 191:
6627
6628 * nspawn will now create a symlink /etc/localtime in the
6629 container environment, copying the host's timezone
6630 setting. Previously this has been done via a bind mount, but
6631 since symlinks cannot be bind mounted this has now been
6632 changed to create/update the appropriate symlink.
6633
6634 * journalctl -n's line number argument is now optional, and
6635 will default to 10 if omitted.
6636
6637 * journald will now log the maximum size the journal files may
6638 take up on disk. This is particularly useful if the default
6639 built-in logic of determining this parameter from the file
6640 system size is used. Use "systemctl status
6563b535 6641 systemd-journald.service" to see this information.
b6a86739
LP
6642
6643 * The multi-seat X wrapper tool has been stripped down. As X
6644 is now capable of enumerating graphics devices via udev in a
6645 seat-aware way the wrapper is not strictly necessary
6646 anymore. A stripped down temporary stop-gap is still shipped
6647 until the upstream display managers have been updated to
6648 fully support the new X logic. Expect this wrapper to be
6563b535 6649 removed entirely in one of the next releases.
b6a86739
LP
6650
6651 * HandleSleepKey= in logind.conf has been split up into
6652 HandleSuspendKey= and HandleHibernateKey=. The old setting
6563b535 6653 is not available anymore. X11 and the kernel are
45afd519 6654 distinguishing between these keys and we should too. This
b6a86739
LP
6655 also means the inhibition lock for these keys has been split
6656 into two.
6657
597c52cf
LP
6658 Contributions from: Dave Airlie, Eelco Dolstra, Lennart
6659 Poettering, Lukas Nykryn, Václav Pavlín
b6a86739 6660
0c11f949
LP
6661CHANGES WITH 190:
6662
d28315e4 6663 * Whenever a unit changes state we will now log this to the
0c11f949
LP
6664 journal and show along the unit's own log output in
6665 "systemctl status".
6666
6667 * ConditionPathIsMountPoint= can now properly detect bind
6668 mount points too. (Previously, a bind mount of one file
8d0256b7 6669 system to another place in the same file system could not be
0c11f949
LP
6670 detected as mount, since they shared struct stat's st_dev
6671 field.)
6672
6673 * We will now mount the cgroup controllers cpu, cpuacct,
6674 cpuset and the controllers net_cls, net_prio together by
6675 default.
6676
6677 * nspawn containers will now have a virtualized boot
6678 ID. (i.e. /proc/sys/kernel/random/boot_id is now mounted
6679 over with a randomized ID at container initialization). This
6680 has the effect of making "journalctl -b" do the right thing
6681 in a container.
6682
6683 * The JSON output journal serialization has been updated not
6684 to generate "endless" list objects anymore, but rather one
6685 JSON object per line. This is more in line how most JSON
6686 parsers expect JSON objects. The new output mode
6687 "json-pretty" has been added to provide similar output, but
6688 neatly aligned for readability by humans.
6689
6690 * We dropped all explicit sync() invocations in the shutdown
6691 code. The kernel does this implicitly anyway in the kernel
6692 reboot() syscall. halt(8)'s -n option is now a compatibility
6693 no-op.
6694
6695 * We now support virtualized reboot() in containers, as
6696 supported by newer kernels. We will fall back to exit() if
6697 CAP_SYS_REBOOT is not available to the container. Also,
6698 nspawn makes use of this now and will actually reboot the
6699 container if the containerized OS asks for that.
6700
6701 * journalctl will only show local log output by default
6702 now. Use --merge (-m) to show remote log output, too.
6703
6704 * libsystemd-journal gained the new sd_journal_get_usage()
6705 call to determine the current disk usage of all journal
6706 files. This is exposed in the new "journalctl --disk-usage"
6707 command.
6708
6709 * journald gained a new configuration setting SplitMode= in
6710 journald.conf which may be used to control how user journals
6711 are split off. See journald.conf(5) for details.
6712
6713 * A new condition type ConditionFileNotEmpty= has been added.
6714
6715 * tmpfiles' "w" lines now support file globbing, to write
6716 multiple files at once.
6717
6718 * We added Python bindings for the journal submission
6719 APIs. More Python APIs for a number of selected APIs will
6720 likely follow. Note that we intend to add native bindings
6721 only for the Python language, as we consider it common
6722 enough to deserve bindings shipped within systemd. There are
6723 various projects outside of systemd that provide bindings
6724 for languages such as PHP or Lua.
6725
a98d5d64
LP
6726 * Many conditions will now resolve specifiers such as %i. In
6727 addition, PathChanged= and related directives of .path units
6728 now support specifiers as well.
0c11f949
LP
6729
6730 * There's now a new RPM macro definition for the system preset
6731 dir: %_presetdir.
6732
d28315e4 6733 * journald will now warn if it ca not forward a message to the
dca348bc 6734 syslog daemon because its socket is full.
0c11f949
LP
6735
6736 * timedated will no longer write or process /etc/timezone,
6737 except on Debian. As we do not support late mounted /usr
6738 anymore /etc/localtime always being a symlink is now safe,
6739 and hence the information in /etc/timezone is not necessary
6740 anymore.
6741
aaccc32c 6742 * logind will now always reserve one VT for a text getty (VT6
0c11f949
LP
6743 by default). Previously if more than 6 X sessions where
6744 started they took up all the VTs with auto-spawned gettys,
6745 so that no text gettys were available anymore.
6746
6747 * udev will now automatically inform the btrfs kernel logic
6748 about btrfs RAID components showing up. This should make
6749 simple hotplug based btrfs RAID assembly work.
6750
6751 * PID 1 will now increase its RLIMIT_NOFILE to 64K by default
6752 (but not for its children which will stay at the kernel
6753 default). This should allow setups with a lot more listening
6754 sockets.
6755
6756 * systemd will now always pass the configured timezone to the
6757 kernel at boot. timedated will do the same when the timezone
6758 is changed.
6759
6760 * logind's inhibition logic has been updated. By default,
6761 logind will now handle the lid switch, the power and sleep
6762 keys all the time, even in graphical sessions. If DEs want
6763 to handle these events on their own they should take the new
6764 handle-power-key, handle-sleep-key and handle-lid-switch
f131770b 6765 inhibitors during their runtime. A simple way to achieve
0c11f949
LP
6766 that is to invoke the DE wrapped in an invocation of:
6767
6768 systemd-inhibit --what=handle-power-key:handle-sleep-key:handle-lid-switch ...
6769
6770 * Access to unit operations is now checked via SELinux taking
6771 the unit file label and client process label into account.
6772
aad803af
LP
6773 * systemd will now notify the administrator in the journal
6774 when he over-mounts a non-empty directory.
6775
6776 * There are new specifiers that are resolved in unit files,
6777 for the host name (%H), the machine ID (%m) and the boot ID
6778 (%b).
6779
b6a86739 6780 Contributions from: Allin Cottrell, Auke Kok, Brandon Philips,
0c11f949
LP
6781 Colin Guthrie, Colin Walters, Daniel J Walsh, Dave Reisner,
6782 Eelco Dolstra, Jan Engelhardt, Kay Sievers, Lennart
6783 Poettering, Lucas De Marchi, Lukas Nykryn, Mantas Mikulėnas,
6784 Martin Pitt, Matthias Clasen, Michael Olbrich, Pierre Schmitz,
6785 Shawn Landden, Thomas Hindoe Paaboel Andersen, Tom Gundersen,
6786 Václav Pavlín, Yin Kangkai, Zbigniew Jędrzejewski-Szmek
6787
38a60d71
LP
6788CHANGES WITH 189:
6789
6790 * Support for reading structured kernel messages from
6791 /dev/kmsg has now been added and is enabled by default.
6792
6793 * Support for reading kernel messages from /proc/kmsg has now
6794 been removed. If you want kernel messages in the journal
6795 make sure to run a recent kernel (>= 3.5) that supports
6796 reading structured messages from /dev/kmsg (see
6797 above). /proc/kmsg is now exclusive property of classic
6798 syslog daemons again.
6799
6800 * The libudev API gained the new
6801 udev_device_new_from_device_id() call.
6802
6803 * The logic for file system namespace (ReadOnlyDirectory=,
6804 ReadWriteDirectoy=, PrivateTmp=) has been reworked not to
6805 require pivot_root() anymore. This means fewer temporary
6806 directories are created below /tmp for this feature.
6807
6808 * nspawn containers will now see and receive all submounts
6809 made on the host OS below the root file system of the
6810 container.
6811
6812 * Forward Secure Sealing is now supported for Journal files,
6813 which provide cryptographical sealing of journal files so
6814 that attackers cannot alter log history anymore without this
6815 being detectable. Lennart will soon post a blog story about
6816 this explaining it in more detail.
6817
6818 * There are two new service settings RestartPreventExitStatus=
6819 and SuccessExitStatus= which allow configuration of exit
6820 status (exit code or signal) which will be excepted from the
6821 restart logic, resp. consider successful.
6822
6823 * journalctl gained the new --verify switch that can be used
6824 to check the integrity of the structure of journal files and
6825 (if Forward Secure Sealing is enabled) the contents of
6826 journal files.
6827
6828 * nspawn containers will now be run with /dev/stdin, /dev/fd/
6829 and similar symlinks pre-created. This makes running shells
6830 as container init process a lot more fun.
6831
6832 * The fstab support can now handle PARTUUID= and PARTLABEL=
6833 entries.
6834
6835 * A new ConditionHost= condition has been added to match
6836 against the hostname (with globs) and machine ID. This is
6837 useful for clusters where a single OS image is used to
6838 provision a large number of hosts which shall run slightly
6839 different sets of services.
6840
6841 * Services which hit the restart limit will now be placed in a
6842 failure state.
6843
b6a86739 6844 Contributions from: Bertram Poettering, Dave Reisner, Huang
38a60d71
LP
6845 Hang, Kay Sievers, Lennart Poettering, Lukas Nykryn, Martin
6846 Pitt, Simon Peeters, Zbigniew Jędrzejewski-Szmek
6847
c269cec3
LP
6848CHANGES WITH 188:
6849
6850 * When running in --user mode systemd will now become a
6851 subreaper (PR_SET_CHILD_SUBREAPER). This should make the ps
6852 tree a lot more organized.
6853
6854 * A new PartOf= unit dependency type has been introduced that
6855 may be used to group services in a natural way.
6856
6857 * "systemctl enable" may now be used to enable instances of
6858 services.
6859
6860 * journalctl now prints error log levels in red, and
6861 warning/notice log levels in bright white. It also supports
6862 filtering by log level now.
6863
6864 * cgtop gained a new -n switch (similar to top), to configure
6865 the maximum number of iterations to run for. It also gained
6866 -b, to run in batch mode (accepting no input).
6867
ab06eef8 6868 * The suffix ".service" may now be omitted on most systemctl
c269cec3
LP
6869 command lines involving service unit names.
6870
6871 * There's a new bus call in logind to lock all sessions, as
6872 well as a loginctl verb for it "lock-sessions".
6873
6874 * libsystemd-logind.so gained a new call sd_journal_perror()
6875 that works similar to libc perror() but logs to the journal
6876 and encodes structured information about the error number.
6877
6878 * /etc/crypttab entries now understand the new keyfile-size=
6879 option.
6880
6881 * shutdown(8) now can send a (configurable) wall message when
6882 a shutdown is cancelled.
6883
6884 * The mount propagation mode for the root file system will now
6885 default to "shared", which is useful to make containers work
6886 nicely out-of-the-box so that they receive new mounts from
6887 the host. This can be undone locally by running "mount
6888 --make-rprivate /" if needed.
6889
6890 * The prefdm.service file has been removed. Distributions
6891 should maintain this unit downstream if they intend to keep
6892 it around. However, we recommend writing normal unit files
6893 for display managers instead.
6894
6895 * Since systemd is a crucial part of the OS we will now
6896 default to a number of compiler switches that improve
6897 security (hardening) such as read-only relocations, stack
6898 protection, and suchlike.
6899
6900 * The TimeoutSec= setting for services is now split into
6901 TimeoutStartSec= and TimeoutStopSec= to allow configuration
6902 of individual time outs for the start and the stop phase of
6903 the service.
6904
6905 Contributions from: Artur Zaprzala, Arvydas Sidorenko, Auke
6906 Kok, Bryan Kadzban, Dave Reisner, David Strauss, Harald Hoyer,
6907 Jim Meyering, Kay Sievers, Lennart Poettering, Mantas
6908 Mikulėnas, Martin Pitt, Michal Schmidt, Michal Sekletar, Peter
6909 Alfredsen, Shawn Landden, Simon Peeters, Terence Honles, Tom
6910 Gundersen, Zbigniew Jędrzejewski-Szmek
6911
c4f1b862
LP
6912CHANGES WITH 187:
6913
6914 * The journal and id128 C APIs are now fully documented as man
6915 pages.
6916
6917 * Extra safety checks have been added when transitioning from
6918 the initial RAM disk to the main system to avoid accidental
6919 data loss.
6920
c269cec3 6921 * /etc/crypttab entries now understand the new keyfile-offset=
c4f1b862
LP
6922 option.
6923
6924 * systemctl -t can now be used to filter by unit load state.
6925
6926 * The journal C API gained the new sd_journal_wait() call to
6927 make writing synchronous journal clients easier.
6928
6929 * journalctl gained the new -D switch to show journals from a
6930 specific directory.
6931
6932 * journalctl now displays a special marker between log
6933 messages of two different boots.
6934
6935 * The journal is now explicitly flushed to /var via a service
6936 systemd-journal-flush.service, rather than implicitly simply
6937 by seeing /var/log/journal to be writable.
6938
6939 * journalctl (and the journal C APIs) can now match for much
6940 more complex expressions, with alternatives and
6941 disjunctions.
6942
6943 * When transitioning from the initial RAM disk to the main
6944 system we will now kill all processes in a killing spree to
6945 ensure no processes stay around by accident.
6946
6947 * Three new specifiers may be used in unit files: %u, %h, %s
6948 resolve to the user name, user home directory resp. user
6949 shell. This is useful for running systemd user instances.
6950
6951 * We now automatically rotate journal files if their data
6952 object hash table gets a fill level > 75%. We also size the
6953 hash table based on the configured maximum file size. This
6954 together should lower hash collisions drastically and thus
6955 speed things up a bit.
6956
6957 * journalctl gained the new "--header" switch to introspect
6958 header data of journal files.
6959
6960 * A new setting SystemCallFilters= has been added to services
6961 which may be used to apply blacklists or whitelists to
6962 system calls. This is based on SECCOMP Mode 2 of Linux 3.5.
6963
6964 * nspawn gained a new --link-journal= switch (and quicker: -j)
6965 to link the container journal with the host. This makes it
6966 very easy to centralize log viewing on the host for all
6967 guests while still keeping the journal files separated.
6968
6969 * Many bugfixes and optimizations
6970
6971 Contributions from: Auke Kok, Eelco Dolstra, Harald Hoyer, Kay
6972 Sievers, Lennart Poettering, Malte Starostik, Paul Menzel, Rex
6973 Tsai, Shawn Landden, Tom Gundersen, Ville Skyttä, Zbigniew
6974 Jędrzejewski-Szmek
6975
b5b4c94a
LP
6976CHANGES WITH 186:
6977
6978 * Several tools now understand kernel command line arguments,
6979 which are only read when run in an initial RAM disk. They
6980 usually follow closely their normal counterparts, but are
6981 prefixed with rd.
6982
6983 * There's a new tool to analyze the readahead files that are
6984 automatically generated at boot. Use:
6985
6986 /usr/lib/systemd/systemd-readahead analyze /.readahead
6987
6988 * We now provide an early debug shell on tty9 if this enabled. Use:
6989
d1f9edaf 6990 systemctl enable debug-shell.service
b5b4c94a
LP
6991
6992 * All plymouth related units have been moved into the Plymouth
6993 package. Please make sure to upgrade your Plymouth version
6994 as well.
6995
6996 * systemd-tmpfiles now supports getting passed the basename of
6997 a configuration file only, in which case it will look for it
6998 in all appropriate directories automatically.
6999
7000 * udevadm info now takes a /dev or /sys path as argument, and
7001 does the right thing. Example:
7002
7003 udevadm info /dev/sda
7004 udevadm info /sys/class/block/sda
7005
7006 * systemctl now prints a warning if a unit is stopped but a
7007 unit that might trigger it continues to run. Example: a
7008 service is stopped but the socket that activates it is left
7009 running.
7010
7011 * "systemctl status" will now mention if the log output was
7012 shortened due to rotation since a service has been started.
7013
7014 * The journal API now exposes functions to determine the
7015 "cutoff" times due to rotation.
7016
7017 * journald now understands SIGUSR1 and SIGUSR2 for triggering
7018 immediately flushing of runtime logs to /var if possible,
7019 resp. for triggering immediate rotation of the journal
7020 files.
7021
7022 * It is now considered an error if a service is attempted to
7023 be stopped that is not loaded.
7024
7025 * XDG_RUNTIME_DIR now uses numeric UIDs instead of usernames.
7026
7027 * systemd-analyze now supports Python 3
7028
7029 * tmpfiles now supports cleaning up directories via aging
7030 where the first level dirs are always kept around but
7031 directories beneath it automatically aged. This is enabled
7032 by prefixing the age field with '~'.
7033
7034 * Seat objects now expose CanGraphical, CanTTY properties
7035 which is required to deal with very fast bootups where the
7036 display manager might be running before the graphics drivers
7037 completed initialization.
7038
7039 * Seat objects now expose a State property.
7040
7041 * We now include RPM macros for service enabling/disabling
7042 based on the preset logic. We recommend RPM based
7043 distributions to make use of these macros if possible. This
7044 makes it simpler to reuse RPM spec files across
7045 distributions.
7046
7047 * We now make sure that the collected systemd unit name is
7048 always valid when services log to the journal via
7049 STDOUT/STDERR.
7050
7051 * There's a new man page kernel-command-line(7) detailing all
7052 command line options we understand.
7053
7054 * The fstab generator may now be disabled at boot by passing
7055 fstab=0 on the kernel command line.
7056
91ac7425 7057 * A new kernel command line option modules-load= is now understood
b5b4c94a
LP
7058 to load a specific kernel module statically, early at boot.
7059
7060 * Unit names specified on the systemctl command line are now
7061 automatically escaped as needed. Also, if file system or
7062 device paths are specified they are automatically turned
7063 into the appropriate mount or device unit names. Example:
7064
7065 systemctl status /home
7066 systemctl status /dev/sda
7067
7068 * The SysVConsole= configuration option has been removed from
7069 system.conf parsing.
7070
7071 * The SysV search path is no longer exported on the D-Bus
7072 Manager object.
7073
ce830873 7074 * The Names= option has been removed from unit file parsing.
b5b4c94a
LP
7075
7076 * There's a new man page bootup(7) detailing the boot process.
7077
7078 * Every unit and every generator we ship with systemd now
7079 comes with full documentation. The self-explanatory boot is
7080 complete.
7081
7082 * A couple of services gained "systemd-" prefixes in their
7083 name if they wrap systemd code, rather than only external
7084 code. Among them fsck@.service which is now
7085 systemd-fsck@.service.
7086
7087 * The HaveWatchdog property has been removed from the D-Bus
7088 Manager object.
7089
7090 * systemd.confirm_spawn= on the kernel command line should now
7091 work sensibly.
7092
7093 * There's a new man page crypttab(5) which details all options
7094 we actually understand.
7095
7096 * systemd-nspawn gained a new --capability= switch to pass
7097 additional capabilities to the container.
7098
7099 * timedated will now read known NTP implementation unit names
5b00c016 7100 from /usr/lib/systemd/ntp-units.d/*.list,
b5b4c94a
LP
7101 systemd-timedated-ntp.target has been removed.
7102
7103 * journalctl gained a new switch "-b" that lists log data of
7104 the current boot only.
7105
7106 * The notify socket is in the abstract namespace again, in
7107 order to support daemons which chroot() at start-up.
7108
7109 * There is a new Storage= configuration option for journald
7110 which allows configuration of where log data should go. This
7111 also provides a way to disable journal logging entirely, so
7112 that data collected is only forwarded to the console, the
7113 kernel log buffer or another syslog implementation.
7114
c4f1b862 7115 * Many bugfixes and optimizations
b5b4c94a 7116
2d938ac7
LP
7117 Contributions from: Auke Kok, Colin Guthrie, Dave Reisner,
7118 David Strauss, Eelco Dolstra, Kay Sievers, Lennart Poettering,
7119 Lukas Nykryn, Michal Schmidt, Michal Sekletar, Paul Menzel,
7120 Shawn Landden, Tom Gundersen
b5b4c94a 7121
2d197285 7122CHANGES WITH 185:
b6a86739 7123
2d197285
KS
7124 * "systemctl help <unit>" now shows the man page if one is
7125 available.
7126
7127 * Several new man pages have been added.
7128
b5b4c94a
LP
7129 * MaxLevelStore=, MaxLevelSyslog=, MaxLevelKMsg=,
7130 MaxLevelConsole= can now be specified in
7131 journald.conf. These options allow reducing the amount of
7132 data stored on disk or forwarded by the log level.
2d197285 7133
b5b4c94a
LP
7134 * TimerSlackNSec= can now be specified in system.conf for
7135 PID1. This allows system-wide power savings.
2d197285
KS
7136
7137 Contributions from: Dave Reisner, Kay Sievers, Lauri Kasanen,
7138 Lennart Poettering, Malte Starostik, Marc-Antoine Perennou,
7139 Matthias Clasen
7140
4c8cd173 7141CHANGES WITH 184:
b6a86739 7142
4c8cd173
LP
7143 * logind is now capable of (optionally) handling power and
7144 sleep keys as well as the lid switch.
7145
7146 * journalctl now understands the syntax "journalctl
7147 /usr/bin/avahi-daemon" to get all log output of a specific
7148 daemon.
7149
7150 * CapabilityBoundingSet= in system.conf now also influences
7151 the capability bound set of usermode helpers of the kernel.
7152
7153 Contributions from: Daniel Drake, Daniel J. Walsh, Gert
7154 Michael Kulyk, Harald Hoyer, Jean Delvare, Kay Sievers,
7155 Lennart Poettering, Matthew Garrett, Matthias Clasen, Paul
7156 Menzel, Shawn Landden, Tero Roponen, Tom Gundersen
7157
ea5943d3 7158CHANGES WITH 183:
b6a86739 7159
187076d4
LP
7160 * Note that we skipped 139 releases here in order to set the
7161 new version to something that is greater than both udev's
7162 and systemd's most recent version number.
7163
194bbe33
KS
7164 * udev: all udev sources are merged into the systemd source tree now.
7165 All future udev development will happen in the systemd tree. It
7166 is still fully supported to use the udev daemon and tools without
7167 systemd running, like in initramfs or other init systems. Building
7168 udev though, will require the *build* of the systemd tree, but
ea5943d3 7169 udev can be properly *run* without systemd.
07cd4fc1 7170
91cf7e5c 7171 * udev: /lib/udev/devices/ are not read anymore; systemd-tmpfiles
f13b388f
KS
7172 should be used to create dead device nodes as workarounds for broken
7173 subsystems.
64661ee7 7174
2d13da88
KS
7175 * udev: RUN+="socket:..." and udev_monitor_new_from_socket() is
7176 no longer supported. udev_monitor_new_from_netlink() needs to be
7177 used to subscribe to events.
7178
194bbe33
KS
7179 * udev: when udevd is started by systemd, processes which are left
7180 behind by forking them off of udev rules, are unconditionally cleaned
7181 up and killed now after the event handling has finished. Services or
7182 daemons must be started as systemd services. Services can be
ea5943d3 7183 pulled-in by udev to get started, but they can no longer be directly
194bbe33
KS
7184 forked by udev rules.
7185
f13b388f
KS
7186 * udev: the daemon binary is called systemd-udevd now and installed
7187 in /usr/lib/systemd/. Standalone builds or non-systemd systems need
7188 to adapt to that, create symlink, or rename the binary after building
7189 it.
7190
ea5943d3 7191 * libudev no longer provides these symbols:
c1959569
KS
7192 udev_monitor_from_socket()
7193 udev_queue_get_failed_list_entry()
7194 udev_get_{dev,sys,run}_path()
ea5943d3 7195 The versions number was bumped and symbol versioning introduced.
c1959569 7196
ea5943d3 7197 * systemd-loginctl and systemd-journalctl have been renamed
9ae9afce 7198 to loginctl and journalctl to match systemctl.
18b754d3
KS
7199
7200 * The config files: /etc/systemd/systemd-logind.conf and
7201 /etc/systemd/systemd-journald.conf have been renamed to
7202 logind.conf and journald.conf. Package updates should rename
7203 the files to the new names on upgrade.
7204
ea5943d3
LP
7205 * For almost all files the license is now LGPL2.1+, changed
7206 from the previous GPL2.0+. Exceptions are some minor stuff
7207 of udev (which will be changed to LGPL2.1 eventually, too),
7208 and the MIT licensed sd-daemon.[ch] library that is suitable
7209 to be used as drop-in files.
7210
7211 * systemd and logind now handle system sleep states, in
49f43d5f 7212 particular suspending and hibernating.
ea5943d3
LP
7213
7214 * logind now implements a sleep/shutdown/idle inhibiting logic
7215 suitable for a variety of uses. Soonishly Lennart will blog
7216 about this in more detail.
7217
7218 * var-run.mount and var-lock.mount are no longer provided
ce830873 7219 (which previously bind mounted these directories to their new
ea5943d3
LP
7220 places). Distributions which have not converted these
7221 directories to symlinks should consider stealing these files
7222 from git history and add them downstream.
7223
7224 * We introduced the Documentation= field for units and added
7225 this to all our shipped units. This is useful to make it
3943231c 7226 easier to explore the boot and the purpose of the various
ea5943d3
LP
7227 units.
7228
7229 * All smaller setup units (such as
7230 systemd-vconsole-setup.service) now detect properly if they
7231 are run in a container and are skipped when
7232 appropriate. This guarantees an entirely noise-free boot in
7233 Linux container environments such as systemd-nspawn.
7234
7235 * A framework for implementing offline system updates is now
7236 integrated, for details see:
c6749ba5 7237 https://www.freedesktop.org/wiki/Software/systemd/SystemUpdates
ea5943d3
LP
7238
7239 * A new service type Type=idle is available now which helps us
7240 avoiding ugly interleaving of getty output and boot status
7241 messages.
7242
439d6dfd
LP
7243 * There's now a system-wide CapabilityBoundingSet= option to
7244 globally reduce the set of capabilities for the
ea5943d3
LP
7245 system. This is useful to drop CAP_SYS_MKNOD, CAP_SYS_RAWIO,
7246 CAP_NET_RAW, CAP_SYS_MODULE, CAP_SYS_TIME, CAP_SYS_PTRACE or
7247 even CAP_NET_ADMIN system-wide for secure systems.
7248
7249 * There are now system-wide DefaultLimitXXX= options to
7250 globally change the defaults of the various resource limits
7251 for all units started by PID 1.
7252
7253 * Harald Hoyer's systemd test suite has been integrated into
7254 systemd which allows easy testing of systemd builds in qemu
7255 and nspawn. (This is really awesome! Ask us for details!)
7256
3943231c
LP
7257 * The fstab parser is now implemented as generator, not inside
7258 of PID 1 anymore.
ea5943d3
LP
7259
7260 * systemctl will now warn you if .mount units generated from
7261 /etc/fstab are out of date due to changes in fstab that
d28315e4 7262 have not been read by systemd yet.
ea5943d3
LP
7263
7264 * systemd is now suitable for usage in initrds. Dracut has
7265 already been updated to make use of this. With this in place
7266 initrds get a slight bit faster but primarily are much
7267 easier to introspect and debug since "systemctl status" in
7268 the host system can be used to introspect initrd services,
7269 and the journal from the initrd is kept around too.
7270
7271 * systemd-delta has been added, a tool to explore differences
7272 between user/admin configuration and vendor defaults.
7273
7274 * PrivateTmp= now affects both /tmp and /var/tmp.
7275
7276 * Boot time status messages are now much prettier and feature
7277 proper english language. Booting up systemd has never been
7278 so sexy.
7279
7280 * Read-ahead pack files now include the inode number of all
7281 files to pre-cache. When the inode changes the pre-caching
7282 is not attempted. This should be nicer to deal with updated
7283 packages which might result in changes of read-ahead
7284 patterns.
7285
7286 * We now temporaritly lower the kernel's read_ahead_kb variable
7287 when collecting read-ahead data to ensure the kernel's
7288 built-in read-ahead does not add noise to our measurements
7289 of necessary blocks to pre-cache.
7290
7291 * There's now RequiresMountsFor= to add automatic dependencies
7292 for all mounts necessary for a specific file system path.
7293
7294 * MountAuto= and SwapAuto= have been removed from
7295 system.conf. Mounting file systems at boot has to take place
7296 in systemd now.
7297
7298 * nspawn now learned a new switch --uuid= to set the machine
7299 ID on the command line.
7300
f8c0a2cb 7301 * nspawn now learned the -b switch to automatically search
ea5943d3
LP
7302 for an init system.
7303
7304 * vt102 is now the default TERM for serial TTYs, upgraded from
7305 vt100.
7306
7307 * systemd-logind now works on VT-less systems.
7308
7309 * The build tree has been reorganized. The individual
3943231c 7310 components now have directories of their own.
ea5943d3
LP
7311
7312 * A new condition type ConditionPathIsReadWrite= is now available.
7313
7314 * nspawn learned the new -C switch to create cgroups for the
7315 container in other hierarchies.
7316
7317 * We now have support for hardware watchdogs, configurable in
7318 system.conf.
7319
7320 * The scheduled shutdown logic now has a public API.
7321
7322 * We now mount /tmp as tmpfs by default, but this can be
7323 masked and /etc/fstab can override it.
7324
d28315e4 7325 * Since udisks does not make use of /media anymore we are not
ea5943d3
LP
7326 mounting a tmpfs on it anymore.
7327
7328 * journalctl gained a new --local switch to only interleave
7329 locally generated journal files.
7330
7331 * We can now load the IMA policy at boot automatically.
7332
7333 * The GTK tools have been split off into a systemd-ui.
7334
79849bf9
LP
7335 Contributions from: Andreas Schwab, Auke Kok, Ayan George,
7336 Colin Guthrie, Daniel Mack, Dave Reisner, David Ward, Elan
7337 Ruusamäe, Frederic Crozat, Gergely Nagy, Guillermo Vidal,
7338 Hannes Reinecke, Harald Hoyer, Javier Jardón, Kay Sievers,
7339 Lennart Poettering, Lucas De Marchi, Léo Gillot-Lamure,
7340 Marc-Antoine Perennou, Martin Pitt, Matthew Monaco, Maxim
7341 A. Mikityanskiy, Michael Biebl, Michael Olbrich, Michal
7342 Schmidt, Nis Martensen, Patrick McCarty, Roberto Sassu, Shawn
7343 Landden, Sjoerd Simons, Sven Anders, Tollef Fog Heen, Tom
7344 Gundersen
7345
16f1239e 7346CHANGES WITH 44:
b6a86739 7347
16f1239e
LP
7348 * This is mostly a bugfix release
7349
7350 * Support optional initialization of the machine ID from the
7351 KVM or container configured UUID.
7352
7353 * Support immediate reboots with "systemctl reboot -ff"
7354
7355 * Show /etc/os-release data in systemd-analyze output
7356
ab06eef8 7357 * Many bugfixes for the journal, including endianness fixes and
16f1239e
LP
7358 ensuring that disk space enforcement works
7359
ce830873 7360 * sd-login.h is C++ compatible again
16f1239e
LP
7361
7362 * Extend the /etc/os-release format on request of the Debian
7363 folks
7364
7365 * We now refuse non-UTF8 strings used in various configuration
d28315e4 7366 and unit files. This is done to ensure we do not pass invalid
16f1239e
LP
7367 data over D-Bus or expose it elsewhere.
7368
7369 * Register Mimo USB Screens as suitable for automatic seat
7370 configuration
7371
7372 * Read SELinux client context from journal clients in a race
7373 free fashion
7374
7375 * Reorder configuration file lookup order. /etc now always
7376 overrides /run in order to allow the administrator to always
b938cb90 7377 and unconditionally override vendor-supplied or
16f1239e
LP
7378 automatically generated data.
7379
7380 * The various user visible bits of the journal now have man
7381 pages. We still lack man pages for the journal API calls
7382 however.
7383
7384 * We now ship all man pages in HTML format again in the
7385 tarball.
7386
7387 Contributions from: Dave Reisner, Dirk Eibach, Frederic
7388 Crozat, Harald Hoyer, Kay Sievers, Lennart Poettering, Marti
7389 Raudsepp, Michal Schmidt, Shawn Landden, Tero Roponen, Thierry
7390 Reding
7391
437b7dee 7392CHANGES WITH 43:
b6a86739 7393
437b7dee
LP
7394 * This is mostly a bugfix release
7395
7396 * systems lacking /etc/os-release are no longer supported.
7397
7398 * Various functionality updates to libsystemd-login.so
7399
45afd519 7400 * Track class of PAM logins to distinguish greeters from
437b7dee
LP
7401 normal user logins.
7402
7403 Contributions from: Kay Sievers, Lennart Poettering, Michael
7404 Biebl
7405
204fa33c 7406CHANGES WITH 42:
b6a86739 7407
204fa33c
LP
7408 * This is an important bugfix release for v41.
7409
7410 * Building man pages is now optional which should be useful
7411 for those building systemd from git but unwilling to install
7412 xsltproc.
7413
7414 * Watchdog support for supervising services is now usable. In
7415 a future release support for hardware watchdogs
7416 (i.e. /dev/watchdog) will be added building on this.
7417
7418 * Service start rate limiting is now configurable and can be
7419 turned off per service. When a start rate limit is hit a
7420 reboot can automatically be triggered.
7421
7422 * New CanReboot(), CanPowerOff() bus calls in systemd-logind.
7423
7424 Contributions from: Benjamin Franzke, Bill Nottingham,
7425 Frederic Crozat, Lennart Poettering, Michael Olbrich, Michal
7426 Schmidt, Michał Górny, Piotr Drąg
7427
e0d25329 7428CHANGES WITH 41:
b6a86739 7429
e0d25329
KS
7430 * The systemd binary is installed /usr/lib/systemd/systemd now;
7431 An existing /sbin/init symlink needs to be adapted with the
7432 package update.
7433
b13df964
LP
7434 * The code that loads kernel modules has been ported to invoke
7435 libkmod directly, instead of modprobe. This means we do not
7436 support systems with module-init-tools anymore.
7437
7438 * Watchdog support is now already useful, but still not
7439 complete.
7440
7441 * A new kernel command line option systemd.setenv= is
7442 understood to set system wide environment variables
7443 dynamically at boot.
7444
e9c1ea9d 7445 * We now limit the set of capabilities of systemd-journald.
ccd07a08 7446
353e12c2
LP
7447 * We now set SIGPIPE to ignore by default, since it only is
7448 useful in shell pipelines, and has little use in general
7449 code. This can be disabled with IgnoreSIPIPE=no in unit
7450 files.
7451
b13df964
LP
7452 Contributions from: Benjamin Franzke, Kay Sievers, Lennart
7453 Poettering, Michael Olbrich, Michal Schmidt, Tom Gundersen,
7454 William Douglas
7455
d26e4270 7456CHANGES WITH 40:
b6a86739 7457
d26e4270
LP
7458 * This is mostly a bugfix release
7459
7460 * We now expose the reason why a service failed in the
7461 "Result" D-Bus property.
7462
7463 * Rudimentary service watchdog support (will be completed over
7464 the next few releases.)
7465
7466 * When systemd forks off in order execute some service we will
7467 now immediately changes its argv[0] to reflect which process
7468 it will execute. This is useful to minimize the time window
7469 with a generic argv[0], which makes bootcharts more useful
7470
b13df964
LP
7471 Contributions from: Alvaro Soliverez, Chris Paulson-Ellis, Kay
7472 Sievers, Lennart Poettering, Michael Olbrich, Michal Schmidt,
7473 Mike Kazantsev, Ray Strode
7474
220a21d3 7475CHANGES WITH 39:
b6a86739 7476
220a21d3
LP
7477 * This is mostly a test release, but incorporates many
7478 bugfixes.
7479
7480 * New systemd-cgtop tool to show control groups by their
7481 resource usage.
7482
7483 * Linking against libacl for ACLs is optional again. If
7484 disabled, support tracking device access for active logins
7485 goes becomes unavailable, and so does access to the user
7486 journals by the respective users.
7487
7488 * If a group "adm" exists, journal files are automatically
7489 owned by them, thus allow members of this group full access
7490 to the system journal as well as all user journals.
7491
7492 * The journal now stores the SELinux context of the logging
7493 client for all entries.
7494
7495 * Add C++ inclusion guards to all public headers
7496
7497 * New output mode "cat" in the journal to print only text
7498 messages, without any meta data like date or time.
7499
7500 * Include tiny X server wrapper as a temporary stop-gap to
7501 teach XOrg udev display enumeration. This is used by display
7502 managers such as gdm, and will go away as soon as XOrg
7503 learned native udev hotplugging for display devices.
7504
7505 * Add new systemd-cat tool for executing arbitrary programs
7506 with STDERR/STDOUT connected to the journal. Can also act as
7507 BSD logger replacement, and does so by default.
7508
7509 * Optionally store all locally generated coredumps in the
7510 journal along with meta data.
7511
7512 * systemd-tmpfiles learnt four new commands: n, L, c, b, for
7513 writing short strings to files (for usage for /sys), and for
7514 creating symlinks, character and block device nodes.
7515
7516 * New unit file option ControlGroupPersistent= to make cgroups
7517 persistent, following the mechanisms outlined in
56cadcb6 7518 https://www.freedesktop.org/wiki/Software/systemd/PaxControlGroups
220a21d3
LP
7519
7520 * Support multiple local RTCs in a sane way
7521
7522 * No longer monopolize IO when replaying readahead data on
7523 rotating disks, since we might starve non-file-system IO to
7524 death, since fanotify() will not see accesses done by blkid,
7525 or fsck.
7526
d28315e4 7527 * Do not show kernel threads in systemd-cgls anymore, unless
220a21d3
LP
7528 requested with new -k switch.
7529
7530 Contributions from: Dan Horák, Kay Sievers, Lennart
7531 Poettering, Michal Schmidt
7532
7533CHANGES WITH 38:
b6a86739 7534
220a21d3
LP
7535 * This is mostly a test release, but incorporates many
7536 bugfixes.
7537
7538 * The git repository moved to:
7539 git://anongit.freedesktop.org/systemd/systemd
7540 ssh://git.freedesktop.org/git/systemd/systemd
7541
7542 * First release with the journal
7543 http://0pointer.de/blog/projects/the-journal.html
7544
7545 * The journal replaces both systemd-kmsg-syslogd and
7546 systemd-stdout-bridge.
7547
7548 * New sd_pid_get_unit() API call in libsystemd-logind
7549
7550 * Many systemadm clean-ups
7551
7552 * Introduce remote-fs-pre.target which is ordered before all
7553 remote mounts and may be used to start services before all
7554 remote mounts.
7555
7556 * Added Mageia support
7557
7558 * Add bash completion for systemd-loginctl
7559
7560 * Actively monitor PID file creation for daemons which exit in
7561 the parent process before having finished writing the PID
7562 file in the daemon process. Daemons which do this need to be
7563 fixed (i.e. PID file creation must have finished before the
7564 parent exits), but we now react a bit more gracefully to them.
7565
7566 * Add colourful boot output, mimicking the well-known output
7567 of existing distributions.
7568
7569 * New option PassCredentials= for socket units, for
7570 compatibility with a recent kernel ABI breakage.
7571
7572 * /etc/rc.local is now hooked in via a generator binary, and
7573 thus will no longer act as synchronization point during
7574 boot.
7575
7576 * systemctl list-unit-files now supports --root=.
7577
7578 * systemd-tmpfiles now understands two new commands: z, Z for
7579 relabelling files according to the SELinux database. This is
7580 useful to apply SELinux labels to specific files in /sys,
7581 among other things.
7582
7583 * Output of SysV services is now forwarded to both the console
7584 and the journal by default, not only just the console.
7585
7586 * New man pages for all APIs from libsystemd-login.
7587
ce830873 7588 * The build tree got reorganized and the build system is a
220a21d3
LP
7589 lot more modular allowing embedded setups to specifically
7590 select the components of systemd they are interested in.
7591
7592 * Support for Linux systems lacking the kernel VT subsystem is
7593 restored.
7594
7595 * configure's --with-rootdir= got renamed to
7596 --with-rootprefix= to follow the naming used by udev and
7597 kmod
7598
d28315e4 7599 * Unless specified otherwise we will now install to /usr instead
220a21d3
LP
7600 of /usr/local by default.
7601
7602 * Processes with '@' in argv[0][0] are now excluded from the
7603 final shut-down killing spree, following the logic explained
7604 in:
56cadcb6 7605 https://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons
220a21d3
LP
7606
7607 * All processes remaining in a service cgroup when we enter
7608 the START or START_PRE states are now killed with
7609 SIGKILL. That means it is no longer possible to spawn
7610 background processes from ExecStart= lines (which was never
7611 supported anyway, and bad style).
7612
7613 * New PropagateReloadTo=/PropagateReloadFrom= options to bind
7614 reloading of units together.
7615
4c8cd173 7616 Contributions from: Bill Nottingham, Daniel J. Walsh, Dave
220a21d3
LP
7617 Reisner, Dexter Morgan, Gregs Gregs, Jonathan Nieder, Kay
7618 Sievers, Lennart Poettering, Michael Biebl, Michal Schmidt,
7619 Michał Górny, Ran Benita, Thomas Jarosch, Tim Waugh, Tollef
7620 Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek