Lennart Poettering | d657c51 | 2012-01-25 02:20:38 +0100 | [diff] [blame] | 1 | systemd System and Service Manager |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 2 | |
Zbigniew Jędrzejewski-Szmek | 6635f57 | 2020-04-03 22:05:25 +0200 | [diff] [blame] | 3 | CHANGES WITH 246 in spe: |
| 4 | * The fs.suid_dumpable sysctl is set to 2 / "suidsafe". This allows |
| 5 | systemd-coredump to save core files for suid processes. When saving |
| 6 | the core file, systemd-coredump will use the effective uid and gid of |
| 7 | the process that faulted. |
| 8 | |
Jouke Witteveen | 1cabd2d | 2020-04-17 11:40:03 +0200 | [diff] [blame] | 9 | * "systemctl list-units" and "systemctl list-machines" no longer hide |
| 10 | their first output column with --no-legend. To hide the first column, |
| 11 | use --plain. |
| 12 | |
Michal Sekletár | d9e45bc | 2020-04-29 17:53:43 +0200 | [diff] [blame] | 13 | * The service manager gained basic support for cgroup v2 freezer. Units |
| 14 | can now be suspended or resumed either using new systemctl verbs, |
| 15 | freeze and thaw respectively, or via D-Bus. |
| 16 | |
Zbigniew Jędrzejewski-Szmek | 901d1ce | 2020-02-05 09:49:46 +0100 | [diff] [blame] | 17 | CHANGES WITH 245: |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 18 | |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 19 | * A new tool "systemd-repart" has been added, that operates as an |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 20 | idempotent declarative repartitioner for GPT partition tables. |
| 21 | Specifically, a set of partitions that must or may exist can be |
| 22 | configured via drop-in files, and during every boot the partition |
| 23 | table on disk is compared with these files, creating missing |
| 24 | partitions or growing existing ones based on configurable relative |
| 25 | and absolute size constraints. The tool is strictly incremental, |
| 26 | i.e. does not delete, shrink or move partitions, but only adds and |
| 27 | grows them. The primary use-case is OS images that ship in minimized |
| 28 | form, that on first boot are grown to the size of the underlying |
| 29 | block device or augmented with additional partitions. For example, |
| 30 | the root partition could be extended to cover the whole disk, or a |
| 31 | swap or /home partitions could be added on first boot. It can also be |
| 32 | used for systems that use an A/B update scheme but ship images with |
| 33 | just the A partition, with B added on first boot. The tool is |
| 34 | primarily intended to be run in the initrd, shortly before |
| 35 | transitioning into the host OS, but can also be run after the |
| 36 | transition took place. It automatically discovers the disk backing |
| 37 | the root file system, and should hence not require any additional |
| 38 | configuration besides the partition definition drop-ins. If no |
| 39 | configuration drop-ins are present, no action is taken. |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 40 | |
| 41 | * A new component "userdb" has been added, along with a small daemon |
| 42 | "systemd-userdb.service" and a client tool "userdbctl". The framework |
| 43 | allows defining rich user and group records in a JSON format, |
| 44 | extending on the classic "struct passwd" and "struct group" |
| 45 | structures. Various components in systemd have been updated to |
| 46 | process records in this format, including systemd-logind and |
| 47 | pam-systemd. The user records are intended to be extensible, and |
| 48 | allow setting various resource management, security and runtime |
| 49 | parameters that shall be applied to processes and sessions of the |
| 50 | user as they log in. This facility is intended to allow associating |
| 51 | such metadata directly with user/group records so that they can be |
| 52 | produced, extended and consumed in unified form. We hope that |
| 53 | eventually frameworks such as sssd will generate records this way, so |
| 54 | that for the first time resource management and various other |
| 55 | per-user settings can be configured in LDAP directories and then |
| 56 | provided to systemd (specifically to systemd-logind and pam-system) |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 57 | to apply on login. For further details see: |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 58 | |
| 59 | https://systemd.io/USER_RECORD |
| 60 | https://systemd.io/GROUP_RECORD |
| 61 | https://systemd.io/USER_GROUP_API |
| 62 | |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 63 | * A small new service systemd-homed.service has been added, that may be |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 64 | used to securely manage home directories with built-in encryption. |
| 65 | The complete user record data is unified with the home directory, |
| 66 | thus making home directories naturally migratable. Its primary |
| 67 | back-end is based on LUKS volumes, but fscrypt, plain directories, |
| 68 | and other storage schemes are also supported. This solves a couple of |
| 69 | problems we saw with traditional ways to manage home directories, in |
| 70 | particular when it comes to encryption. For further discussion of |
| 71 | this, see the video of Lennart's talk at AllSystemsGo! 2019: |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 72 | |
| 73 | https://media.ccc.de/v/ASG2019-164-reinventing-home-directories |
| 74 | |
| 75 | For further details about the format and expectations on home |
| 76 | directories this new daemon makes, see: |
| 77 | |
| 78 | https://systemd.io/HOME_DIRECTORY |
| 79 | |
| 80 | * systemd-journald is now multi-instantiable. In addition to the main |
| 81 | instance systemd-journald.service there's now a template unit |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 82 | systemd-journald@.service, with each instance defining a new named |
| 83 | log 'namespace' (whose name is specified via the instance part of the |
| 84 | unit name). A new unit file setting LogNamespace= has been added, |
| 85 | taking such a namespace name, that assigns services to the specified |
| 86 | log namespaces. As each log namespace is serviced by its own |
| 87 | independent journal daemon, this functionality may be used to improve |
| 88 | performance and increase isolation of applications, at the price of |
| 89 | losing global message ordering. Each instance of journald has a |
| 90 | separate set of configuration files, with possibly different disk |
| 91 | usage limitations and other settings. |
| 92 | |
| 93 | journalctl now takes a new option --namespace= to show logs from a |
| 94 | specific log namespace. The sd-journal.h API gained |
| 95 | sd_journal_open_namespace() for opening the log stream of a specific |
| 96 | log namespace. systemd-journald also gained the ability to exit on |
| 97 | idle, which is useful in the context of log namespaces, as this means |
| 98 | log daemons for log namespaces can be activated automatically on |
| 99 | demand and will stop automatically when no longer used, minimizing |
| 100 | resource usage. |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 101 | |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 102 | * When systemd-tmpfiles copies a file tree using the 'C' line type it |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 103 | will now label every copied file according to the SELinux database. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 104 | |
| 105 | * When systemd/PID 1 detects it is used in the initrd it will now boot |
| 106 | into initrd.target rather than default.target by default. This should |
| 107 | make it simpler to build initrds with systemd as for many cases the |
| 108 | only difference between a host OS image and an initrd image now is |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 109 | the presence of the /etc/initrd-release file. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 110 | |
| 111 | * A new kernel command line option systemd.cpu_affinity= is now |
| 112 | understood. It's equivalent to the CPUAffinity= option in |
| 113 | /etc/systemd/system.conf and allows setting the CPU mask for PID 1 |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 114 | itself and the default for all other processes. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 115 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 116 | * When systemd/PID 1 is reloaded (with systemctl daemon-reload or |
| 117 | equivalent), the SELinux database is now reloaded, ensuring that |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 118 | sockets and other file system objects are generated taking the new |
| 119 | database into account. |
| 120 | |
Zbigniew Jędrzejewski-Szmek | d54bb63 | 2020-03-03 08:41:00 +0100 | [diff] [blame] | 121 | * systemd/PID 1 accepts a new "systemd.show-status=error" setting, and |
| 122 | "quiet" has been changed to imply that instead of |
| 123 | "systemd.show-status=auto". In this mode, only messages about errors |
| 124 | and significant delays in boot are shown on the console. |
| 125 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 126 | * The sd-event.h API gained native support for the new Linux "pidfd" |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 127 | concept. This permits watching processes using file descriptors |
| 128 | instead of PID numbers, which fixes a number of races and makes |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 129 | process supervision more robust and efficient. All of systemd's |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 130 | components will now use pidfds if the kernel supports it for process |
| 131 | watching, with the exception of PID 1 itself, unfortunately. We hope |
| 132 | to move PID 1 to exclusively using pidfds too eventually, but this |
| 133 | requires some more kernel work first. (Background: PID 1 watches |
| 134 | processes using waitid() with the P_ALL flag, and that does not play |
| 135 | together nicely with pidfds yet.) |
| 136 | |
| 137 | * Closely related to this, the sd-event.h API gained two new calls |
| 138 | sd_event_source_send_child_signal() (for sending a signal to a |
| 139 | watched process) and sd_event_source_get_child_process_own() (for |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 140 | marking a process so that it is killed automatically whenever the |
| 141 | event source watching it is freed). |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 142 | |
Zbigniew Jędrzejewski-Szmek | 60ed2dc | 2020-02-04 17:22:41 +0100 | [diff] [blame] | 143 | * systemd-networkd gained support for configuring Token Bucket Filter |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 144 | (TBF) parameters in its qdisc configuration support. Similarly, |
| 145 | support for Stochastic Fairness Queuing (SFQ), Controlled-Delay |
Zbigniew Jędrzejewski-Szmek | 69f1734 | 2020-02-04 17:07:47 +0100 | [diff] [blame] | 146 | Active Queue Management (CoDel), and Fair Queue (FQ) has been added. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 147 | |
| 148 | * systemd-networkd gained support for Intermediate Functional Block |
| 149 | (IFB) network devices. |
| 150 | |
| 151 | * systemd-networkd gained support for configuring multi-path IP routes, |
| 152 | using the new MultiPathRoute= setting in the [Route] section. |
| 153 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 154 | * systemd-networkd's DHCPv4 client has been updated to support a new |
| 155 | SendDecline= option. If enabled, duplicate address detection is done |
| 156 | after a DHCP offer is received from the server. If a conflict is |
| 157 | detected, the address is declined. The DHCPv4 client also gained |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 158 | support for a new RouteMTUBytes= setting that allows to configure the |
| 159 | MTU size to be used for routes generated from DHCPv4 leases. |
| 160 | |
| 161 | * The PrefixRoute= setting in systemd-networkd's [Address] section of |
| 162 | .network files has been deprecated, and replaced by AddPrefixRoute=, |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 163 | with its sense inverted. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 164 | |
| 165 | * The Gateway= setting of [Route] sections of .network files gained |
Zbigniew Jędrzejewski-Szmek | 427928c | 2020-02-05 05:41:30 +0100 | [diff] [blame] | 166 | support for a special new value "_dhcp". If set, the configured |
| 167 | static route uses the gateway host configured via DHCP. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 168 | |
Zbigniew Jędrzejewski-Szmek | 573e58f | 2020-02-05 10:20:40 +0100 | [diff] [blame] | 169 | * New User= and SuppressPrefixLength= settings have been implemented |
Yu Watanabe | f05c061 | 2020-02-05 18:04:58 +0900 | [diff] [blame] | 170 | for the [RoutingPolicyRule] section of .network files to configure |
| 171 | source routing based on UID ranges and prefix length, respectively. |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 172 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 173 | * sd-bus gained a new API call sd_bus_message_sensitive() that marks a |
| 174 | D-Bus message object as "sensitive". Those objects are erased from |
| 175 | memory when they are freed. This concept is intended to be used for |
| 176 | messages that contain security sensitive data. A new flag |
| 177 | SD_BUS_VTABLE_SENSITIVE has been introduced as well to mark methods |
| 178 | in sd-bus vtables, causing any incoming and outgoing messages of |
| 179 | those methods to be implicitly marked as "sensitive". |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 180 | |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 181 | * sd-bus gained a new API call sd_bus_message_dump() for dumping the |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 182 | contents of a message (or parts thereof) to standard output for |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 183 | debugging purposes. |
| 184 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 185 | * systemd-sysusers gained support for creating users with the primary |
| 186 | group named differently than the user. |
Lennart Poettering | 9a4940b | 2020-02-02 18:17:21 +0100 | [diff] [blame] | 187 | |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 188 | * systemd-resolved's DNS-over-TLS support gained SNI validation. |
| 189 | |
| 190 | * systemd-growfs (i.e. the x-systemd.growfs mount option in /etc/fstab) |
| 191 | gained support for growing XFS partitions. Previously it supported |
| 192 | only ext4 and btrfs partitions. |
| 193 | |
| 194 | * The support for /etc/crypttab gained a new x-initrd.attach option. If |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 195 | set, the specified encrypted volume is unlocked already in the |
| 196 | initrd. This concept corresponds to the x-initrd.mount option in |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 197 | /etc/fstab. |
| 198 | |
| 199 | * systemd-cryptsetup gained native support for unlocking encrypted |
| 200 | volumes utilizing PKCS#11 smartcards, i.e. for example to bind |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 201 | encryption of volumes to YubiKeys. This is exposed in the new |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 202 | pkcs11-uri= option in /etc/crypttab. |
| 203 | |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 204 | * The /etc/fstab support in systemd now supports two new mount options |
| 205 | x-systemd.{required,wanted}-by=, for explicitly configuring the units |
| 206 | that the specified mount shall be pulled in by, in place of |
| 207 | the usual local-fs.target/remote-fs.target. |
| 208 | |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 209 | * The https://systemd.io/ web site has been relaunched, directly |
| 210 | populated with most of the documentation included in the systemd |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 211 | repository. systemd also acquired a new logo, thanks to Tobias |
| 212 | Bernard. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 213 | |
| 214 | * systemd-udevd gained support for managing "alternative" network |
| 215 | interface names, as supported by new Linux kernels. For the first |
| 216 | time this permits assigning multiple (and longer!) names to a network |
| 217 | interface. systemd-udevd will now by default assign the names |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 218 | generated via all supported naming schemes to each interface. This |
| 219 | may be further tweaked with .link files and the AlternativeName= and |
| 220 | AlternativeNamesPolicy= settings. Other components of systemd have |
| 221 | been updated to support the new alternative names wherever |
| 222 | appropriate. For example, systemd-nspawn will now generate |
| 223 | alternative interface names for the host-facing side of container |
| 224 | veth links based on the full container name without truncation. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 225 | |
| 226 | * systemd-nspawn interface naming logic has been updated in another way |
| 227 | too: if the main interface name (i.e. as opposed to new-style |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 228 | "alternative" names) based on the container name is truncated, a |
| 229 | simple hashing scheme is used to give different interface names to |
| 230 | multiple containers whose names all begin with the same prefix. Since |
| 231 | this changes the primary interface names pointing to containers if |
| 232 | truncation happens, the old scheme may still be requested by |
| 233 | selecting an older naming scheme, via the net.naming-scheme= kernel |
| 234 | command line option. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 235 | |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 236 | * PrivateUsers= in service files now works in services run by the |
| 237 | systemd --user per-user instance of the service manager. |
| 238 | |
| 239 | * A new per-service sandboxing option ProtectClock= has been added that |
| 240 | locks down write access to the system clock. It takes away device |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 241 | node access to /dev/rtc as well as the system calls that set the |
| 242 | system clock and the CAP_SYS_TIME and CAP_WAKE_ALARM capabilities. |
| 243 | Note that this option does not affect access to auxiliary services |
| 244 | that allow changing the clock, for example access to |
| 245 | systemd-timedated. |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 246 | |
| 247 | * The systemd-id128 tool gained a new "show" verb for listing or |
| 248 | resolving a number of well-known UUIDs/128bit IDs, currently mostly |
| 249 | GPT partition table types. |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 250 | |
| 251 | * The Discoverable Partitions Specification has been updated to support |
| 252 | /var and /var/tmp partition discovery. Support for this has been |
| 253 | added to systemd-gpt-auto-generator. For details see: |
| 254 | |
| 255 | https://systemd.io/DISCOVERABLE_PARTITIONS |
| 256 | |
| 257 | * "systemctl list-unit-files" has been updated to show a new column |
| 258 | with the suggested enablement state based on the vendor preset files |
| 259 | for the respective units. |
| 260 | |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 261 | * "systemctl" gained a new option "--with-dependencies". If specified |
| 262 | commands such as "systemctl status" or "systemctl cat" will now show |
| 263 | all specified units along with all units they depend on. |
| 264 | |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 265 | * networkctl gained support for showing per-interface logs in its |
| 266 | "status" output. |
| 267 | |
Paul Menzel | a100fe3 | 2020-03-03 12:19:41 +0100 | [diff] [blame] | 268 | * systemd-networkd-wait-online gained support for specifying the maximum |
Zbigniew Jędrzejewski-Szmek | 573e58f | 2020-02-05 10:20:40 +0100 | [diff] [blame] | 269 | operational state to wait for, and to wait for interfaces to |
| 270 | disappear. |
| 271 | |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 272 | * The [Match] section of .link and .network files now supports a new |
| 273 | option PermanentMACAddress= which may be used to check against the |
| 274 | permanent MAC address of a network device even if a randomized MAC |
| 275 | address is used. |
| 276 | |
Zbigniew Jędrzejewski-Szmek | 69f1734 | 2020-02-04 17:07:47 +0100 | [diff] [blame] | 277 | * The [TrafficControlQueueingDiscipline] section in .network files has |
| 278 | been renamed to [NetworkEmulator] with the "NetworkEmulator" prefix |
| 279 | dropped from the individual setting names. |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 280 | |
Zbigniew Jędrzejewski-Szmek | 823b035 | 2020-02-04 15:29:39 +0100 | [diff] [blame] | 281 | * Any .link and .network files that have an empty [Match] section (this |
| 282 | also includes empty and commented-out files) will now be |
| 283 | rejected. systemd-udev and systemd-networkd started warning about |
| 284 | such files in version 243. |
| 285 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 286 | * systemd-logind will now validate access to the operation of changing |
Zbigniew Jędrzejewski-Szmek | 98ab0da | 2020-04-18 17:47:51 +0200 | [diff] [blame] | 287 | the virtual terminal via a polkit action. By default, only users |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 288 | with at least one session on a local VT are granted permission. |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 289 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 290 | * When systemd sets up PAM sessions that invoked service processes |
| 291 | shall run in, the pam_setcred() API is now invoked, thus permitting |
| 292 | PAM modules to set additional credentials for the processes. |
Lennart Poettering | 6841019 | 2020-01-29 14:12:22 +0100 | [diff] [blame] | 293 | |
Zbigniew Jędrzejewski-Szmek | d54bb63 | 2020-03-03 08:41:00 +0100 | [diff] [blame] | 294 | * portablectl attach/detach verbs now accept --now and --enable options |
| 295 | to combine attachment with enablement and invocation, or detachment |
| 296 | with stopping and disablement. |
| 297 | |
Zbigniew Jędrzejewski-Szmek | 2ca17c7 | 2020-03-12 15:21:42 +0100 | [diff] [blame] | 298 | * UPGRADE ISSUE: a bug where some jobs were trimmed as redundant was |
| 299 | fixed, which in turn exposed bugs in unit configuration of services |
| 300 | which have Type=oneshot and should only run once, but do not have |
| 301 | RemainAfterExit=yes set. Without RemainAfterExit=yes, a one-shot |
| 302 | service may be started again after exiting successfully, for example |
| 303 | as a dependency in another transaction. Affected services included |
| 304 | some internal systemd services (most notably |
| 305 | systemd-vconsole-setup.service, which was updated to have |
| 306 | RemainAfterExit=yes), and plymouth-start.service. Please ensure that |
| 307 | plymouth has been suitably updated or patched before upgrading to |
| 308 | this systemd release. See |
| 309 | https://bugzilla.redhat.com/show_bug.cgi?id=1807771 for some |
| 310 | additional discussion. |
| 311 | |
Zbigniew Jędrzejewski-Szmek | 9c4d3d7 | 2020-03-03 08:31:06 +0100 | [diff] [blame] | 312 | Contributions from: AJ Bagwell, Alin Popa, Andreas Rammhold, Anita |
| 313 | Zhang, Ansgar Burchardt, Antonio Russo, Arian van Putten, Ashley Davis, |
| 314 | Balint Reczey, Bart Willems, Bastien Nocera, Benjamin Dahlhoff, Charles |
| 315 | (Chas) Williams, cheese1, Chris Down, Chris Murphy, Christian Ehrhardt, |
| 316 | Christian Göttsche, cvoinf, Daan De Meyer, Daniele Medri, Daniel Rusek, |
| 317 | Daniel Shahaf, Dann Frazier, Dan Streetman, Dariusz Gadomski, David |
| 318 | Michael, Dimitri John Ledkov, Emmanuel Bourg, Evgeny Vereshchagin, |
| 319 | ezst036, Felipe Sateler, Filipe Brandenburger, Florian Klink, Franck |
| 320 | Bui, Fran Dieguez, Frantisek Sumsal, Greg "GothAck" Miell, Guilhem |
| 321 | Lettron, Guillaume Douézan-Grard, Hans de Goede, HATAYAMA Daisuke, Iain |
| 322 | Lane, James Buren, Jan Alexander Steffens (heftig), Jérémy Rosen, Jin |
| 323 | Park, Jun'ichi Nomura, Kai Krakow, Kevin Kuehler, Kevin P. Fleming, |
| 324 | Lennart Poettering, Leonid Bloch, Leonid Evdokimov, lothrond, Luca |
| 325 | Boccassi, Lukas K, Lynn Kirby, Mario Limonciello, Mark Deneen, Matthew |
| 326 | Leeds, Michael Biebl, Michal Koutný, Michal Sekletár, Mike Auty, Mike |
| 327 | Gilbert, mtron, nabijaczleweli, Naïm Favier, Nate Jones, Norbert Lange, |
| 328 | Oliver Giles, Paul Davey, Paul Menzel, Peter Hutterer, Piotr Drąg, Rafa |
| 329 | Couto, Raphael, rhn, Robert Scheck, Rocka, Romain Naour, Ryan Attard, |
| 330 | Sascha Dewald, Shengjing Zhu, Slava Kardakov, Spencer Michaels, Sylvain |
| 331 | Plantefeve, Stanislav Angelovič, Susant Sahani, Thomas Haller, Thomas |
| 332 | Schmitt, Timo Schlüßler, Timo Wilken, Tobias Bernard, Tobias Klauser, |
| 333 | Tobias Stoeckmann, Topi Miettinen, tsia, WataruMatsuoka, Wieland |
| 334 | Hoffmann, Wilhelm Schuster, Will Fleming, xduugu, Yong Cong Sin, Yuri |
| 335 | Chornoivan, Yu Watanabe, Zach Smith, Zbigniew Jędrzejewski-Szmek, Zeyu |
| 336 | DONG |
Zbigniew Jędrzejewski-Szmek | 901d1ce | 2020-02-05 09:49:46 +0100 | [diff] [blame] | 337 | |
Zbigniew Jędrzejewski-Szmek | 03985d0 | 2020-03-06 13:25:21 +0100 | [diff] [blame] | 338 | – Warsaw, 2020-03-06 |
Lennart Poettering | 723822f | 2020-01-29 11:44:32 +0100 | [diff] [blame] | 339 | |
Zbigniew Jędrzejewski-Szmek | bdf2357 | 2019-11-22 09:33:59 +0100 | [diff] [blame] | 340 | CHANGES WITH 244: |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 341 | |
| 342 | * Support for the cpuset cgroups v2 controller has been added. |
| 343 | Processes may be restricted to specific CPUs using the new |
| 344 | AllowedCPUs= setting, and to specific memory NUMA nodes using the new |
| 345 | AllowedMemoryNodes= setting. |
| 346 | |
| 347 | * The signal used in restart jobs (as opposed to e.g. stop jobs) may |
Slava Kardakov | 1e90432 | 2019-12-02 23:39:59 +0300 | [diff] [blame] | 348 | now be configured using a new RestartKillSignal= setting. This |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 349 | allows units which signals to request termination to implement |
| 350 | different behaviour when stopping in preparation for a restart. |
| 351 | |
| 352 | * "systemctl clean" may now be used also for socket, mount, and swap |
| 353 | units. |
| 354 | |
| 355 | * systemd will also read configuration options from the EFI variable |
| 356 | SystemdOptions. This may be used to configure systemd behaviour when |
| 357 | modifying the kernel command line is inconvenient, but configuration |
| 358 | on disk is read too late, for example for the options related to |
Zbigniew Jędrzejewski-Szmek | 2536752 | 2019-11-18 19:47:50 +0100 | [diff] [blame] | 359 | cgroup hierarchy setup. 'bootctl systemd-efi-options' may be used to |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 360 | set the EFI variable. |
| 361 | |
| 362 | * systemd will now disable printk ratelimits in early boot. This should |
| 363 | allow us to capture more logs from the early boot phase where normal |
| 364 | storage is not available and the kernel ring buffer is used for |
| 365 | logging. Configuration on the kernel command line has higher priority |
| 366 | and overrides the systemd setting. |
| 367 | |
| 368 | systemd programs which log to /dev/kmsg directly use internal |
| 369 | ratelimits to prevent runaway logging. (Normally this is only used |
| 370 | during early boot, so in practice this change has very little |
| 371 | effect.) |
| 372 | |
Anita Zhang | 3e1db80 | 2019-11-04 18:29:55 -0800 | [diff] [blame] | 373 | * Unit files now support top level dropin directories of the form |
| 374 | <unit_type>.d/ (e.g. service.d/) that may be used to add configuration |
| 375 | that affects all corresponding unit files. |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 376 | |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 377 | * systemctl gained support for 'stop --job-mode=triggering' which will |
| 378 | stop the specified unit and any units which could trigger it. |
| 379 | |
| 380 | * Unit status display now includes units triggering and triggered by |
| 381 | the unit being shown. |
| 382 | |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 383 | * The RuntimeMaxSec= setting is now supported by scopes, not just |
| 384 | .service units. This is particularly useful for PAM sessions which |
| 385 | create a scope unit for the user login. systemd.runtime_max_sec= |
| 386 | setting may used with the pam_systemd module to limit the duration |
| 387 | of the PAM session, for example for time-limited logins. |
| 388 | |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 389 | * A new @pkey system call group is now defined to make it easier to |
| 390 | whitelist memory protection syscalls for containers and services |
| 391 | which need to use them. |
| 392 | |
| 393 | * systemd-udevd: removed the 30s timeout for killing stale workers on |
| 394 | exit. systemd-udevd now waits for workers to finish. The hard-coded |
| 395 | exit timeout of 30s was too short for some large installations, where |
| 396 | driver initialization could be prematurely interrupted during initrd |
| 397 | processing if the root file system had been mounted and init was |
| 398 | preparing to switch root. If udevd is run without systemd and workers |
| 399 | are hanging while udevd receives an exit signal, udevd will now exit |
| 400 | when udev.event_timeout is reached for the last hanging worker. With |
| 401 | systemd, the exit timeout can additionally be configured using |
| 402 | TimeoutStopSec= in systemd-udevd.service. |
| 403 | |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 404 | * udev now provides a program (fido_id) that identifies FIDO CTAP1 |
| 405 | ("U2F")/CTAP2 security tokens based on the usage declared in their |
| 406 | report and descriptor and outputs suitable environment variables. |
| 407 | This replaces the externally maintained whitelists of all known |
| 408 | security tokens that were used previously. |
| 409 | |
| 410 | * Automatically generated autosuspend udev rules for whitelisted |
| 411 | devices have been imported from the Chromium OS project. This should |
Zbigniew Jędrzejewski-Szmek | b7db8b7 | 2019-10-30 15:58:39 +0100 | [diff] [blame] | 412 | improve power saving with many more devices. |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 413 | |
| 414 | * udev gained a new "CONST{key}=value" setting that allows matching |
| 415 | against system-wide constants without forking a helper binary. |
| 416 | Currently "arch" and "virt" keys are supported. |
| 417 | |
| 418 | * udev now opens CDROMs in non-exclusive mode when querying their |
| 419 | capabilities. This should fix issues where other programs trying to |
| 420 | use the CDROM cannot gain access to it, but carries a risk of |
| 421 | interfering with programs writing to the disk, if they did not open |
| 422 | the device in exclusive mode as they should. |
| 423 | |
| 424 | * systemd-networkd does not create a default route for IPv4 link local |
| 425 | addressing anymore. The creation of the route was unexpected and was |
| 426 | breaking routing in various cases, but people who rely on it being |
| 427 | created implicitly will need to adjust. Such a route may be requested |
| 428 | with DefaultRouteOnDevice=yes. |
| 429 | |
| 430 | Similarly, systemd-networkd will not assign a link-local IPv6 address |
| 431 | when IPv6 link-local routing is not enabled. |
| 432 | |
| 433 | * Receive and transmit buffers may now be configured on links with |
| 434 | the new RxBufferSize= and TxBufferSize= settings. |
| 435 | |
| 436 | * systemd-networkd may now advertise additional IPv6 routes. A new |
| 437 | [IPv6RoutePrefix] section with Route= and LifetimeSec= options is |
| 438 | now supported. |
| 439 | |
| 440 | * systemd-networkd may now configure "next hop" routes using the |
| 441 | [NextHop] section and Gateway= and Id= settings. |
| 442 | |
| 443 | * systemd-networkd will now retain DHCP config on restarts by default |
| 444 | (but this may be overridden using the KeepConfiguration= setting). |
| 445 | The default for SendRelease= has been changed to true. |
| 446 | |
| 447 | * The DHCPv4 client now uses the OPTION_INFORMATION_REFRESH_TIME option |
| 448 | received from the server. |
| 449 | |
| 450 | The client will use the received SIP server list if UseSIP=yes is |
| 451 | set. |
| 452 | |
| 453 | The client may be configured to request specific options from the |
| 454 | server using a new RequestOptions= setting. |
| 455 | |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 456 | The client may be configured to send arbitrary options to the server |
| 457 | using a new SendOption= setting. |
| 458 | |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 459 | A new IPServiceType= setting has been added to configure the "IP |
| 460 | service type" value used by the client. |
| 461 | |
| 462 | * The DHCPv6 client learnt a new PrefixDelegationHint= option to |
| 463 | request prefix hints in the DHCPv6 solicitation. |
| 464 | |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 465 | * The DHCPv4 server may be configured to send arbitrary options using |
Yu Watanabe | 88b8600 | 2019-11-19 19:28:07 +0900 | [diff] [blame] | 466 | a new SendOption= setting. |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 467 | |
| 468 | * The DHCPv4 server may now be configured to emit SIP server list using |
| 469 | the new EmitSIP= and SIP= settings. |
| 470 | |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 471 | * systemd-networkd and networkctl may now renew DHCP leases on demand. |
| 472 | networkctl has a new 'networkctl renew' verb. |
| 473 | |
| 474 | * systemd-networkd may now reconfigure links on demand. networkctl |
| 475 | gained two new verbs: "reload" will reload the configuration, and |
| 476 | "reconfigure DEVICE…" will reconfigure one or more devices. |
| 477 | |
| 478 | * .network files may now match on SSID and BSSID of a wireless network, |
| 479 | i.e. the access point name and hardware address using the new SSID= |
| 480 | and BSSID= options. networkctl will display the current SSID and |
| 481 | BSSID for wireless links. |
| 482 | |
| 483 | .network files may also match on the wireless network type using the |
Yu Watanabe | f36e6a4 | 2019-10-30 21:29:22 +0900 | [diff] [blame] | 484 | new WLANInterfaceType= option. |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 485 | |
| 486 | * systemd-networkd now includes default configuration that enables |
| 487 | link-local addressing when connected to an ad-hoc wireless network. |
| 488 | |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 489 | * systemd-networkd may configure the Traffic Control queueing |
| 490 | disciplines in the kernel using the new |
| 491 | [TrafficControlQueueingDiscipline] section and Parent=, |
| 492 | NetworkEmulatorDelaySec=, NetworkEmulatorDelayJitterSec=, |
Yu Watanabe | 6878c02 | 2019-11-01 11:46:00 +0900 | [diff] [blame] | 493 | NetworkEmulatorPacketLimit=, NetworkEmulatorLossRate=, |
| 494 | NetworkEmulatorDuplicateRate= settings. |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 495 | |
| 496 | * systemd-tmpfiles gained a new w+ setting to append to files. |
| 497 | |
| 498 | * systemd-analyze dump will now report when the memory configuration in |
| 499 | the kernel does not match what systemd has configured (usually, |
| 500 | because some external program has modified the kernel configuration |
| 501 | on its own). |
| 502 | |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 503 | * systemd-analyze gained a new --base-time= switch instructs the |
| 504 | 'calendar' verb to resolve times relative to that timestamp instead |
| 505 | of the present time. |
| 506 | |
Zbigniew Jędrzejewski-Szmek | ee50dad | 2019-10-30 11:16:38 +0100 | [diff] [blame] | 507 | * journalctl --update-catalog now produces deterministic output (making |
| 508 | reproducible image builds easier). |
| 509 | |
| 510 | * A new devicetree-overlay setting is now documented in the Boot Loader |
| 511 | Specification. |
| 512 | |
| 513 | * The default value of the WatchdogSec= setting used in systemd |
| 514 | services (the ones bundled with the project itself) may be set at |
| 515 | configuration time using the -Dservice-watchdog= setting. If set to |
| 516 | empty, the watchdogs will be disabled. |
| 517 | |
Mike Kazantsev | 0e4daba | 2020-03-15 06:35:14 +0500 | [diff] [blame] | 518 | * systemd-resolved validates IP addresses in certificates now when GnuTLS |
| 519 | is being used. |
Christian Rebischke | 597f905 | 2019-10-30 23:15:32 +0100 | [diff] [blame] | 520 | |
Zbigniew Jędrzejewski-Szmek | 852b727 | 2019-11-15 14:16:06 +0100 | [diff] [blame] | 521 | * libcryptsetup >= 2.0.1 is now required. |
| 522 | |
| 523 | * A configuration option -Duser-path= may be used to override the $PATH |
| 524 | used by the user service manager. The default is again to use the same |
| 525 | path as the system manager. |
| 526 | |
Lennart Poettering | 168e131 | 2019-11-20 12:47:52 +0100 | [diff] [blame] | 527 | * The systemd-id128 tool gained a new switch "-u" (or "--uuid") for |
| 528 | outputting the 128bit IDs in UUID format (i.e. in the "canonical |
| 529 | representation"). |
| 530 | |
| 531 | * Service units gained a new sandboxing option ProtectKernelLogs= which |
| 532 | makes sure the program cannot get direct access to the kernel log |
| 533 | buffer anymore, i.e. the syslog() system call (not to be confused |
| 534 | with the API of the same name in libc, which is not affected), the |
| 535 | /proc/kmsg and /dev/kmsg nodes and the CAP_SYSLOG capability are made |
| 536 | inaccessible to the service. It's recommended to enable this setting |
| 537 | for all services that should not be able to read from or write to the |
| 538 | kernel log buffer, which are probably almost all. |
| 539 | |
Zbigniew Jędrzejewski-Szmek | bdf2357 | 2019-11-22 09:33:59 +0100 | [diff] [blame] | 540 | Contributions from: Aaron Plattner, Alcaro, Anita Zhang, Balint Reczey, |
Lennart Poettering | 8bf2a31 | 2019-11-29 14:29:03 +0100 | [diff] [blame] | 541 | Bastien Nocera, Baybal Ni, Benjamin Bouvier, Benjamin Gilbert, Carlo |
| 542 | Teubner, cbzxt, Chen Qi, Chris Down, Christian Rebischke, Claudio |
| 543 | Zumbo, ClydeByrdIII, crashfistfight, Cyprien Laplace, Daniel Edgecumbe, |
| 544 | Daniel Gorbea, Daniel Rusek, Daniel Stuart, Dan Streetman, David |
| 545 | Pedersen, David Tardon, Dimitri John Ledkov, Dominique Martinet, Donald |
| 546 | A. Cupp Jr, Evgeny Vereshchagin, Fabian Henneke, Filipe Brandenburger, |
| 547 | Franck Bui, Frantisek Sumsal, Georg Müller, Hans de Goede, Haochen |
| 548 | Tong, HATAYAMA Daisuke, Iwan Timmer, Jan Janssen, Jan Kundrát, Jan |
| 549 | Synacek, Jan Tojnar, Jay Strict, Jérémy Rosen, Jóhann B. Guðmundsson, |
| 550 | Jonas Jelten, Jonas Thelemann, Justin Trudell, J. Xing, Kai-Heng Feng, |
| 551 | Kenneth D'souza, Kevin Becker, Kevin Kuehler, Lennart Poettering, |
| 552 | Léonard Gérard, Lorenz Bauer, Luca Boccassi, Maciej Stanczew, Mario |
| 553 | Limonciello, Marko Myllynen, Mark Stosberg, Martin Wilck, matthiasroos, |
| 554 | Michael Biebl, Michael Olbrich, Michael Tretter, Michal Sekletar, |
| 555 | Michal Sekletár, Michal Suchanek, Mike Gilbert, Mike Kazantsev, Nicolas |
| 556 | Douma, nikolas, Norbert Lange, pan93412, Pascal de Bruijn, Paul Menzel, |
| 557 | Pavel Hrdina, Peter Wu, Philip Withnall, Piotr Drąg, Rafael Fontenelle, |
| 558 | Renaud Métrich, Riccardo Schirone, RoadrunnerWMC, Ronan Pigott, Ryan |
| 559 | Attard, Sebastian Wick, Serge, Siddharth Chandrasekara, Steve Ramage, |
| 560 | Steve Traylen, Susant Sahani, Thibault Nélis, Tim Teichmann, Tom |
| 561 | Fitzhenry, Tommy J, Torsten Hilbrich, Vito Caputo, ypf791, Yu Watanabe, |
| 562 | Zach Smith, Zbigniew Jędrzejewski-Szmek |
Zbigniew Jędrzejewski-Szmek | bdf2357 | 2019-11-22 09:33:59 +0100 | [diff] [blame] | 563 | |
Lennart Poettering | 8bf2a31 | 2019-11-29 14:29:03 +0100 | [diff] [blame] | 564 | – Warsaw, 2019-11-29 |
Zbigniew Jędrzejewski-Szmek | bdf2357 | 2019-11-22 09:33:59 +0100 | [diff] [blame] | 565 | |
Zbigniew Jędrzejewski-Szmek | efb536d | 2019-09-03 11:15:37 +0200 | [diff] [blame] | 566 | CHANGES WITH 243: |
Lennart Poettering | 6af9058 | 2019-04-12 12:01:41 +0200 | [diff] [blame] | 567 | |
Lennart Poettering | 0338934 | 2019-07-26 09:25:09 +0200 | [diff] [blame] | 568 | * This release enables unprivileged programs (i.e. requiring neither |
| 569 | setuid nor file capabilities) to send ICMP Echo (i.e. ping) requests |
Clinton Roy | 08b5953 | 2019-07-29 17:35:25 +1000 | [diff] [blame] | 570 | by turning on the "net.ipv4.ping_group_range" sysctl of the Linux |
Lennart Poettering | 0338934 | 2019-07-26 09:25:09 +0200 | [diff] [blame] | 571 | kernel for the whole UNIX group range, i.e. all processes. This |
| 572 | change should be reasonably safe, as the kernel support for it was |
| 573 | specifically implemented to allow safe access to ICMP Echo for |
| 574 | processes lacking any privileges. If this is not desirable, it can be |
| 575 | disabled again by setting the parameter to "1 0". |
| 576 | |
Lennart Poettering | 4cd8263 | 2019-04-29 12:05:16 +0200 | [diff] [blame] | 577 | * Previously, filters defined with SystemCallFilter= would have the |
Clinton Roy | 08b5953 | 2019-07-29 17:35:25 +1000 | [diff] [blame] | 578 | effect that any calling of an offending system call would terminate |
| 579 | the calling thread. This behaviour never made much sense, since |
| 580 | killing individual threads of unsuspecting processes is likely to |
| 581 | create more problems than it solves. With this release the default |
| 582 | action changed from killing the thread to killing the whole |
| 583 | process. For this to work correctly both a kernel version (>= 4.14) |
| 584 | and a libseccomp version (>= 2.4.0) supporting this new seccomp |
| 585 | action is required. If an older kernel or libseccomp is used the old |
| 586 | behaviour continues to be used. This change does not affect any |
| 587 | services that have no system call filters defined, or that use |
| 588 | SystemCallErrorNumber= (and thus see EPERM or another error instead |
| 589 | of being killed when calling an offending system call). Note that |
| 590 | systemd documentation always claimed that the whole process is |
| 591 | killed. With this change behaviour is thus adjusted to match the |
| 592 | documentation. |
Lennart Poettering | 4cd8263 | 2019-04-29 12:05:16 +0200 | [diff] [blame] | 593 | |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 594 | * On 64 bit systems, the "kernel.pid_max" sysctl is now bumped to |
| 595 | 4194304 by default, i.e. the full 22bit range the kernel allows, up |
| 596 | from the old 16bit range. This should improve security and |
| 597 | robustness, as PID collisions are made less likely (though certainly |
| 598 | still possible). There are rumours this might create compatibility |
Lennart Poettering | 6af9058 | 2019-04-12 12:01:41 +0200 | [diff] [blame] | 599 | problems, though at this moment no practical ones are known to |
| 600 | us. Downstream distributions are hence advised to undo this change in |
| 601 | their builds if they are concerned about maximum compatibility, but |
| 602 | for everybody else we recommend leaving the value bumped. Besides |
| 603 | improving security and robustness this should also simplify things as |
| 604 | the maximum number of allowed concurrent tasks was previously bounded |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 605 | by both "kernel.pid_max" and "kernel.threads-max" and now effectively |
| 606 | only a single knob is left ("kernel.threads-max"). There have been |
| 607 | concerns that usability is affected by this change because larger PID |
| 608 | numbers are harder to type, but we believe the change from 5 digits |
| 609 | to 7 digits doesn't hamper usability. |
Lennart Poettering | 6af9058 | 2019-04-12 12:01:41 +0200 | [diff] [blame] | 610 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 611 | * MemoryLow= and MemoryMin= gained hierarchy-aware counterparts, |
| 612 | DefaultMemoryLow= and DefaultMemoryMin=, which can be used to |
Chris Down | acdb4b5 | 2019-04-30 14:22:04 -0400 | [diff] [blame] | 613 | hierarchically set default memory protection values for a particular |
| 614 | subtree of the unit hierarchy. |
| 615 | |
Chris Down | 22bf131 | 2019-05-03 08:32:41 -0400 | [diff] [blame] | 616 | * Memory protection directives can now take a value of zero, allowing |
| 617 | explicit opting out of a default value propagated by an ancestor. |
| 618 | |
Lennart Poettering | 87cf1f8 | 2018-09-25 14:09:54 +0200 | [diff] [blame] | 619 | * systemd now defaults to the "unified" cgroup hierarchy setup during |
| 620 | build-time, i.e. -Ddefault-hierarchy=unified is now the build-time |
| 621 | default. Previously, -Ddefault-hierarchy=hybrid was the default. This |
| 622 | change reflects the fact that cgroupsv2 support has matured |
| 623 | substantially in both systemd and in the kernel, and is clearly the |
| 624 | way forward. Downstream production distributions might want to |
| 625 | continue to use -Ddefault-hierarchy=hybrid (or even =legacy) for |
| 626 | their builds as unfortunately the popular container managers have not |
| 627 | caught up with the kernel API changes. |
| 628 | |
Zbigniew Jędrzejewski-Szmek | 51b568f | 2019-05-28 12:36:34 +0200 | [diff] [blame] | 629 | * Man pages are not built by default anymore (html pages were already |
| 630 | disabled by default), to make development builds quicker. When |
| 631 | building systemd for a full installation with documentation, meson |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 632 | should be called with -Dman=true and/or -Dhtml=true as appropriate. |
| 633 | The default was changed based on the assumption that quick one-off or |
| 634 | repeated development builds are much more common than full optimized |
| 635 | builds for installation, and people need to pass various other |
| 636 | options to when doing "proper" builds anyway, so the gain from making |
| 637 | development builds quicker is bigger than the one time disruption for |
| 638 | packagers. |
Zbigniew Jędrzejewski-Szmek | 51b568f | 2019-05-28 12:36:34 +0200 | [diff] [blame] | 639 | |
| 640 | Two scripts are created in the *build* directory to generate and |
| 641 | preview man and html pages on demand, e.g.: |
| 642 | |
| 643 | build/man/man systemctl |
| 644 | build/man/html systemd.index |
| 645 | |
Yu Watanabe | e110599 | 2019-06-29 03:18:43 +0900 | [diff] [blame] | 646 | * libidn2 is used by default if both libidn2 and libidn are installed. |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 647 | Please use -Dlibidn=true if libidn is preferred. |
Yu Watanabe | e110599 | 2019-06-29 03:18:43 +0900 | [diff] [blame] | 648 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 649 | * The D-Bus "wire format" of the CPUAffinity= attribute is changed on |
Zbigniew Jędrzejewski-Szmek | 9120e2b | 2019-06-04 10:41:46 +0200 | [diff] [blame] | 650 | big-endian machines. Before, bytes were written and read in native |
| 651 | machine order as exposed by the native libc __cpu_mask interface. |
| 652 | Now, little-endian order is always used (CPUs 0–7 are described by |
| 653 | bits 0–7 in byte 0, CPUs 8–15 are described by byte 1, and so on). |
| 654 | This change fixes D-Bus calls that cross endianness boundary. |
| 655 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 656 | The presentation format used for CPUAffinity= by "systemctl show" and |
| 657 | "systemd-analyze dump" is changed to present CPU indices instead of |
| 658 | the raw __cpu_mask bitmask. For example, CPUAffinity=0-1 would be |
| 659 | shown as CPUAffinity=03000000000000000000000000000… (on |
| 660 | little-endian) or CPUAffinity=00000000000000300000000000000… (on |
| 661 | 64-bit big-endian), and is now shown as CPUAffinity=0-1, matching the |
| 662 | input format. The maximum integer that will be printed in the new |
| 663 | format is 8191 (four digits), while the old format always used a very |
| 664 | long number (with the length varying by architecture), so they can be |
| 665 | unambiguously distinguished. |
Zbigniew Jędrzejewski-Szmek | 9120e2b | 2019-06-04 10:41:46 +0200 | [diff] [blame] | 666 | |
Zbigniew Jędrzejewski-Szmek | 51b568f | 2019-05-28 12:36:34 +0200 | [diff] [blame] | 667 | * /usr/sbin/halt.local is no longer supported. Implementation in |
| 668 | distributions was inconsistent and it seems this functionality was |
| 669 | very rarely used. |
| 670 | |
| 671 | To replace this functionality, users should: |
| 672 | - either define a new unit and make it a dependency of final.target |
| 673 | (systemctl add-wants final.target my-halt-local.service) |
| 674 | - or move the shutdown script to /usr/lib/systemd/system-shutdown/ |
| 675 | and ensure that it accepts "halt", "poweroff", "reboot", and |
| 676 | "kexec" as an argument, see the description in systemd-shutdown(8). |
| 677 | |
| 678 | * When a [Match] section in .link or .network file is empty (contains |
| 679 | no match patterns), a warning will be emitted. Please add any "match |
Zbigniew Jędrzejewski-Szmek | 9120e2b | 2019-06-04 10:41:46 +0200 | [diff] [blame] | 680 | all" pattern instead, e.g. OriginalName=* or Name=* in case all |
Zbigniew Jędrzejewski-Szmek | 51b568f | 2019-05-28 12:36:34 +0200 | [diff] [blame] | 681 | interfaces should really be matched. |
| 682 | |
Michal Sekletar | b070c7c | 2019-03-12 18:58:26 +0100 | [diff] [blame] | 683 | * A new setting NUMAPolicy= may be used to set process memory |
Clinton Roy | 08b5953 | 2019-07-29 17:35:25 +1000 | [diff] [blame] | 684 | allocation policy. This setting can be specified in |
| 685 | /etc/systemd/system.conf and hence will set the default policy for |
| 686 | PID1. The default policy can be overridden on a per-service |
| 687 | basis. The related setting NUMAMask= is used to specify NUMA node |
| 688 | mask that should be associated with the selected policy. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 689 | |
| 690 | * PID 1 will now listen to Out-Of-Memory (OOM) events the kernel |
Boucman | eebaa72 | 2019-07-14 16:41:19 +0200 | [diff] [blame] | 691 | generates when processes it manages are reaching their memory limits, |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 692 | and will place their units in a special state, and optionally kill or |
| 693 | stop the whole unit. |
| 694 | |
| 695 | * The service manager will now expose bus properties for the IO |
| 696 | resources used by units. This information is also shown in "systemctl |
| 697 | status" now (for services that have IOAccounting=yes set). Moreover, |
| 698 | the IO accounting data is included in the resource log message |
| 699 | generated whenever a unit stops. |
| 700 | |
Zbigniew Jędrzejewski-Szmek | 201632e | 2020-05-22 09:39:36 +0200 | [diff] [blame^] | 701 | * Units may now configure an explicit timeout to wait for when killed |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 702 | with SIGABRT, for example when a service watchdog is hit. Previously, |
Zbigniew Jędrzejewski-Szmek | 201632e | 2020-05-22 09:39:36 +0200 | [diff] [blame^] | 703 | the regular TimeoutStopSec= timeout was applied in this case too — |
| 704 | now a separate timeout may be set using TimeoutAbortSec=. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 705 | |
| 706 | * Services may now send a special WATCHDOG=trigger message with |
| 707 | sd_notify() to trigger an immediate "watchdog missed" event, and thus |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 708 | trigger service termination. This is useful both for testing watchdog |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 709 | handling, but also for defining error paths in services, that shall |
| 710 | be handled the same way as watchdog events. |
| 711 | |
| 712 | * There are two new per-unit settings IPIngressFilterPath= and |
| 713 | IPEgressFilterPath= which allow configuration of a BPF program |
| 714 | (usually by specifying a path to a program uploaded to /sys/fs/bpf/) |
| 715 | to apply to the IP packet ingress/egress path of all processes of a |
| 716 | unit. This is useful to allow running systemd services with BPF |
| 717 | programs set up externally. |
| 718 | |
| 719 | * systemctl gained a new "clean" verb for removing the state, cache, |
| 720 | runtime or logs directories of a service while it is terminated. The |
| 721 | new verb may also be used to remove the state maintained on disk for |
| 722 | timer units that have Persistent= configured. |
| 723 | |
| 724 | * During the last phase of shutdown systemd will now automatically |
| 725 | increase the log level configured in the "kernel.printk" sysctl so |
| 726 | that any relevant loggable events happening during late shutdown are |
| 727 | made visible. Previously, loggable events happening so late during |
| 728 | shutdown were generally lost if the "kernel.printk" sysctl was set to |
| 729 | high thresholds, as regular logging daemons are terminated at that |
| 730 | time and thus nothing is written to disk. |
| 731 | |
| 732 | * If processes terminated during the last phase of shutdown do not exit |
| 733 | quickly systemd will now show their names after a short time, to make |
Zbigniew Jędrzejewski-Szmek | 201632e | 2020-05-22 09:39:36 +0200 | [diff] [blame^] | 734 | debugging easier. After a longer timeout they are forcibly killed, |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 735 | as before. |
| 736 | |
| 737 | * journalctl (and the other tools that display logs) will now highlight |
| 738 | warnings in yellow (previously, both LOG_NOTICE and LOG_WARNING where |
| 739 | shown in bright bold, now only LOG_NOTICE is). Moreover, audit logs |
| 740 | are now shown in blue color, to separate them visually from regular |
| 741 | logs. References to configuration files are now turned into clickable |
| 742 | links on terminals that support that. |
| 743 | |
| 744 | * systemd-journald will now stop logging to /var/log/journal during |
| 745 | shutdown when /var/ is on a separate mount, so that it can be |
| 746 | unmounted safely during shutdown. |
| 747 | |
| 748 | * systemd-resolved gained support for a new 'strict' DNS-over-TLS mode. |
| 749 | |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 750 | * systemd-resolved "Cache=" configuration option in resolved.conf has |
| 751 | been extended to also accept the 'no-negative' value. Previously, |
| 752 | only a boolean option was allowed (yes/no), having yes as the |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 753 | default. If this option is set to 'no-negative', negative answers are |
| 754 | not cached while the old cache heuristics are used positive answers. |
| 755 | The default remains unchanged. |
Jorge Niedbalski | 37d7a7d | 2019-07-12 15:34:24 -0400 | [diff] [blame] | 756 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 757 | * The predictable naming scheme for network devices now supports |
| 758 | generating predictable names for "netdevsim" devices. |
| 759 | |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 760 | Moreover, the "en" prefix was dropped from the ID_NET_NAME_ONBOARD |
| 761 | udev property. |
| 762 | |
| 763 | Those two changes form a new net.naming-policy-scheme= entry. |
| 764 | Distributions which want to preserve naming stability may want to set |
| 765 | the -Ddefault-net-naming-scheme= configuration option. |
| 766 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 767 | * systemd-networkd now supports MACsec, nlmon, IPVTAP and Xfrm |
| 768 | interfaces natively. |
| 769 | |
| 770 | * systemd-networkd's bridge FDB support now allows configuration of a |
| 771 | destination address for each entry (Destination=), as well as the |
| 772 | VXLAN VNI (VNI=), as well as an option to declare what an entry is |
| 773 | associated with (AssociatedWith=). |
| 774 | |
| 775 | * systemd-networkd's DHCPv4 support now understands a new MaxAttempts= |
Clinton Roy | 08b5953 | 2019-07-29 17:35:25 +1000 | [diff] [blame] | 776 | option for configuring the maximum number of DHCP lease requests. It |
| 777 | also learnt a new BlackList= option for blacklisting DHCP servers (a |
| 778 | similar setting has also been added to the IPv6 RA client), as well |
| 779 | as a SendRelease= option for configuring whether to send a DHCP |
| 780 | RELEASE message when terminating. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 781 | |
| 782 | * systemd-networkd's DHCPv4 and DHCPv6 stacks can now be configured |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 783 | separately in the [DHCPv4] and [DHCPv6] sections. |
| 784 | |
| 785 | * systemd-networkd's DHCP support will now optionally create an |
| 786 | implicit host route to the DNS server specified in the DHCP lease, in |
| 787 | addition to the routes listed explicitly in the lease. This should |
| 788 | ensure that in multi-homed systems DNS traffic leaves the systems on |
| 789 | the interface that acquired the DNS server information even if other |
| 790 | routes such as default routes exist. This behaviour may be turned on |
| 791 | with the new RoutesToDNS= option. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 792 | |
| 793 | * systemd-networkd's VXLAN support gained a new option |
Boucman | eebaa72 | 2019-07-14 16:41:19 +0200 | [diff] [blame] | 794 | GenericProtocolExtension= for enabling VXLAN Generic Protocol |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 795 | Extension support, as well as IPDoNotFragment= for setting the IP |
| 796 | "Don't fragment" bit on outgoing packets. A similar option has been |
| 797 | added to the GENEVE support. |
| 798 | |
| 799 | * In systemd-networkd's [Route] section you may now configure |
| 800 | FastOpenNoCookie= for configuring per-route TCP fast-open support, as |
| 801 | well as TTLPropagate= for configuring Label Switched Path (LSP) TTL |
| 802 | propagation. The Type= setting now supports local, broadcast, |
| 803 | anycast, multicast, any, xresolve routes, too. |
| 804 | |
| 805 | * systemd-networkd's [Network] section learnt a new option |
| 806 | DefaultRouteOnDevice= for automatically configuring a default route |
| 807 | onto the network device. |
| 808 | |
| 809 | * systemd-networkd's bridging support gained two new options ProxyARP= |
| 810 | and ProxyARPWifi= for configuring proxy ARP behaviour as well as |
Yu Watanabe | 9f0d45e | 2019-07-26 10:13:58 +0900 | [diff] [blame] | 811 | MulticastRouter= for configuring multicast routing behaviour. A new |
| 812 | option MulticastIGMPVersion= may be used to change bridge's multicast |
| 813 | Internet Group Management Protocol (IGMP) version. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 814 | |
| 815 | * systemd-networkd's FooOverUDP support gained the ability to configure |
| 816 | local and peer IP addresses via Local= and Peer=. A new option |
| 817 | PeerPort= may be used to configure the peer's IP port. |
| 818 | |
| 819 | * systemd-networkd's TUN support gained a new setting VnetHeader= for |
| 820 | tweaking Generic Segment Offload support. |
| 821 | |
Zbigniew Jędrzejewski-Szmek | 70fcda8 | 2020-05-19 16:21:52 +0200 | [diff] [blame] | 822 | * The address family for policy rules may be specified using the new |
| 823 | Family= option in the [RoutingPolicyRule] section. |
| 824 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 825 | * networkctl gained a new "delete" command for removing virtual network |
| 826 | devices, as well as a new "--stats" switch for showing device |
| 827 | statistics. |
| 828 | |
Yu Watanabe | 13cb62a | 2019-07-26 11:15:29 +0900 | [diff] [blame] | 829 | * networkd.conf gained a new setting SpeedMeter= and |
| 830 | SpeedMeterIntervalSec=, to measure bitrate of network interfaces. The |
| 831 | measured speed may be shown by 'networkctl status'. |
| 832 | |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 833 | * "networkctl status" now displays MTU and queue lengths, and more |
| 834 | detailed information about VXLAN and bridge devices. |
| 835 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 836 | * systemd-networkd's .network and .link files gained a new Property= |
| 837 | setting in the [Match] section, to match against devices with |
| 838 | specific udev properties. |
| 839 | |
| 840 | * systemd-networkd's tunnel support gained a new option |
| 841 | AssignToLoopback= for selecting whether to use the loopback device |
| 842 | "lo" as underlying device. |
| 843 | |
Yu Watanabe | 7018373 | 2019-07-16 10:30:47 +0900 | [diff] [blame] | 844 | * systemd-networkd's MACAddress= setting in the [Neighbor] section has |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 845 | been renamed to LinkLayerAddress=, and it now allows configuration of |
| 846 | IP addresses, too. |
| 847 | |
Zbigniew Jędrzejewski-Szmek | efb536d | 2019-09-03 11:15:37 +0200 | [diff] [blame] | 848 | * systemd-networkd's handling of the kernel's disable_ipv6 sysctl is |
| 849 | simplified: systemd-networkd will disable the sysctl (enable IPv6) if |
| 850 | IPv6 configuration (static or DHCPv6) was found for a given |
| 851 | interface. It will not touch the sysctl otherwise. |
| 852 | |
| 853 | * The order of entries is $PATH used by the user manager instance was |
| 854 | changed to put bin/ entries before the corresponding sbin/ entries. |
| 855 | It is recommended to not rely on this order, and only ever have one |
| 856 | binary with a given name in the system paths under /usr. |
| 857 | |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 858 | * A new tool systemd-network-generator has been added that may generate |
| 859 | .network, .netdev and .link files from IP configuration specified on |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 860 | the kernel command line in the format used by Dracut. |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 861 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 862 | * The CriticalConnection= setting in .network files is now deprecated, |
| 863 | and replaced by a new KeepConfiguration= setting which allows more |
| 864 | detailed configuration of the IP configuration to keep in place. |
| 865 | |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 866 | * systemd-analyze gained a few new verbs: |
| 867 | |
| 868 | - "systemd-analyze timestamp" parses and converts timestamps. This is |
| 869 | similar to the existing "systemd-analyze calendar" command which |
| 870 | does the same for recurring calendar events. |
| 871 | |
| 872 | - "systemd-analyze timespan" parses and converts timespans (i.e. |
| 873 | durations as opposed to points in time). |
| 874 | |
| 875 | - "systemd-analyze condition" will parse and test ConditionXYZ= |
| 876 | expressions. |
| 877 | |
| 878 | - "systemd-analyze exit-status" will parse and convert exit status |
| 879 | codes to their names and back. |
| 880 | |
| 881 | - "systemd-analyze unit-files" will print a list of all unit |
| 882 | file paths and unit aliases. |
| 883 | |
| 884 | * SuccessExitStatus=, RestartPreventExitStatus=, and |
| 885 | RestartForceExitStatus= now accept exit status names (e.g. "DATAERR" |
| 886 | is equivalent to "65"). Those exit status name mappings may be |
Zbigniew Jędrzejewski-Szmek | cc560ac | 2019-11-18 19:44:54 +0100 | [diff] [blame] | 887 | displayed with the systemd-analyze exit-status verb describe above. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 888 | |
| 889 | * systemd-logind now exposes a per-session SetBrightness() bus call, |
| 890 | which may be used to securely change the brightness of a kernel |
| 891 | brightness device, if it belongs to the session's seat. By using this |
| 892 | call unprivileged clients can make changes to "backlight" and "leds" |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 893 | devices securely with strict requirements on session membership. |
| 894 | Desktop environments may use this to generically make brightness |
| 895 | changes to such devices without shipping private SUID binaries or |
| 896 | udev rules for that purpose. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 897 | |
| 898 | * "udevadm info" gained a --wait-for-initialization switch to wait for |
| 899 | a device to be initialized. |
| 900 | |
| 901 | * systemd-hibernate-resume-generator will now look for resumeflags= on |
| 902 | the kernel command line, which is similar to rootflags= and may be |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 903 | used to configure device timeout for the hibernation device. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 904 | |
| 905 | * sd-event learnt a new API call sd_event_source_disable_unref() for |
| 906 | disabling and unref'ing an event source in a single function. A |
| 907 | related call sd_event_source_disable_unrefp() has been added for use |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 908 | with gcc's cleanup extension. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 909 | |
| 910 | * The sd-id128.h public API gained a new definition |
| 911 | SD_ID128_UUID_FORMAT_STR for formatting a 128bit ID in UUID format |
| 912 | with printf(). |
| 913 | |
| 914 | * "busctl introspect" gained a new switch --xml-interface for dumping |
| 915 | XML introspection data unmodified. |
| 916 | |
| 917 | * PID 1 may now show the unit name instead of the unit description |
| 918 | string in its status output during boot. This may be configured in |
| 919 | the StatusUnitFormat= setting in /etc/systemd/system.conf or the |
| 920 | kernel command line option systemd.status_unit_format=. |
| 921 | |
Lennart Poettering | 907ddcd | 2019-07-24 17:05:09 +0200 | [diff] [blame] | 922 | * PID 1 now understands a new option KExecWatchdogSec= in |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 923 | /etc/systemd/system.conf to set a watchdog timeout for kexec reboots. |
| 924 | Previously watchdog functionality was only available for regular |
| 925 | reboots. The new setting defaults to off, because we don't know in |
| 926 | the general case if the watchdog will be reset after kexec (some |
| 927 | drivers do reset it, but not all), and the new userspace might not be |
| 928 | configured to handle the watchdog. |
| 929 | |
| 930 | Moreover, the old ShutdownWatchdogSec= setting has been renamed to |
| 931 | RebootWatchdogSec= to more clearly communicate what it is about. The |
| 932 | old name is still accepted for compatibility. |
Lennart Poettering | 907ddcd | 2019-07-24 17:05:09 +0200 | [diff] [blame] | 933 | |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 934 | * The systemd.debug_shell kernel command line option now optionally |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 935 | takes a tty name to spawn the debug shell on, which allows a |
| 936 | different tty to be selected than the built-in default. |
Lennart Poettering | 2875a36 | 2019-07-14 13:18:37 +0200 | [diff] [blame] | 937 | |
Anita Zhang | a4d5848 | 2019-07-17 22:24:23 -0700 | [diff] [blame] | 938 | * Service units gained a new ExecCondition= setting which will run |
| 939 | before ExecStartPre= and either continue execution of the unit (for |
| 940 | clean exit codes), stop execution without marking the unit failed |
| 941 | (for exit codes 1 through 254), or stop execution and fail the unit |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 942 | (for exit code 255 or abnormal termination). |
Anita Zhang | a4d5848 | 2019-07-17 22:24:23 -0700 | [diff] [blame] | 943 | |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 944 | * A new service systemd-pstore.service has been added that pulls data |
Clinton Roy | 08b5953 | 2019-07-29 17:35:25 +1000 | [diff] [blame] | 945 | from /sys/fs/pstore/ and saves it to /var/lib/pstore for later |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 946 | review. |
| 947 | |
| 948 | * timedatectl gained new verbs for configuring per-interface NTP |
| 949 | service configuration for systemd-timesyncd. |
| 950 | |
| 951 | * "localectl list-locales" won't list non-UTF-8 locales anymore. It's |
Lennart Poettering | a18a3aa | 2019-07-29 10:20:43 +0200 | [diff] [blame] | 952 | 2019. (You can set non-UTF-8 locales though, if you know their name.) |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 953 | |
Lennart Poettering | b64c47c | 2019-07-26 09:28:43 +0200 | [diff] [blame] | 954 | * If variable assignments in sysctl.d/ files are prefixed with "-" any |
| 955 | failures to apply them are now ignored. |
| 956 | |
Lennart Poettering | a18a3aa | 2019-07-29 10:20:43 +0200 | [diff] [blame] | 957 | * systemd-random-seed.service now optionally credits entropy when |
| 958 | applying the seed to the system. Set $SYSTEMD_RANDOM_SEED_CREDIT to |
| 959 | true for the service to enable this behaviour, but please consult the |
| 960 | documentation first, since this comes with a couple of caveats. |
| 961 | |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 962 | * systemd-random-seed.service is now a synchronization point for full |
| 963 | initialization of the kernel's entropy pool. Services that require |
| 964 | /dev/urandom to be correctly initialized should be ordered after this |
| 965 | service. |
Lennart Poettering | a18a3aa | 2019-07-29 10:20:43 +0200 | [diff] [blame] | 966 | |
| 967 | * The systemd-boot boot loader has been updated to optionally maintain |
| 968 | a random seed file in the EFI System Partition (ESP). During the boot |
| 969 | phase, this random seed is read and updated with a new seed |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 970 | cryptographically derived from it. Another derived seed is passed to |
Lennart Poettering | a18a3aa | 2019-07-29 10:20:43 +0200 | [diff] [blame] | 971 | the OS. The latter seed is then credited to the kernel's entropy pool |
| 972 | very early during userspace initialization (from PID 1). This allows |
| 973 | systems to boot up with a fully initialized kernel entropy pool from |
| 974 | earliest boot on, and thus entirely removes all entropy pool |
| 975 | initialization delays from systems using systemd-boot. Special care |
| 976 | is taken to ensure different seeds are derived on system images |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 977 | replicated to multiple systems. "bootctl status" will show whether |
| 978 | a seed was received from the boot loader. |
Lennart Poettering | a18a3aa | 2019-07-29 10:20:43 +0200 | [diff] [blame] | 979 | |
Zbigniew Jędrzejewski-Szmek | 4860f5c | 2019-07-30 16:21:21 +0200 | [diff] [blame] | 980 | * bootctl gained two new verbs: |
| 981 | |
| 982 | - "bootctl random-seed" will generate the file in ESP and an EFI |
| 983 | variable to allow a random seed to be passed to the OS as described |
| 984 | above. |
| 985 | |
| 986 | - "bootctl is-installed" checks whether systemd-boot is currently |
| 987 | installed. |
| 988 | |
| 989 | * bootctl will warn if it detects that boot entries are misconfigured |
| 990 | (for example if the kernel image was removed without purging the |
| 991 | bootloader entry). |
Lennart Poettering | a18a3aa | 2019-07-29 10:20:43 +0200 | [diff] [blame] | 992 | |
| 993 | * A new document has been added describing systemd's use and support |
| 994 | for the kernel's entropy pool subsystem: |
| 995 | |
| 996 | https://systemd.io/RANDOM_SEEDS |
| 997 | |
Lennart Poettering | 48fd50f | 2019-07-29 19:57:08 +0200 | [diff] [blame] | 998 | * When the system is hibernated the swap device to write the |
| 999 | hibernation image to is now automatically picked from all available |
| 1000 | swap devices, preferring the swap device with the highest configured |
| 1001 | priority over all others, and picking the device with the most free |
| 1002 | space if there are multiple devices with the highest priority. |
| 1003 | |
| 1004 | * /etc/crypttab support has learnt a new keyfile-timeout= per-device |
Frantisek Sumsal | 86b52a3 | 2020-04-21 20:46:53 +0200 | [diff] [blame] | 1005 | option that permits selecting the timeout how long to wait for a |
Lennart Poettering | 48fd50f | 2019-07-29 19:57:08 +0200 | [diff] [blame] | 1006 | device with an encryption key before asking for the password. |
| 1007 | |
Kai Krakow | 2dbc45a | 2019-08-17 02:33:43 +0200 | [diff] [blame] | 1008 | * IOWeight= has learnt to properly set the IO weight when using the |
| 1009 | BFQ scheduler officially found in kernels 5.0+. |
| 1010 | |
Zbigniew Jędrzejewski-Szmek | 6d8cf86 | 2019-08-30 09:03:41 +0200 | [diff] [blame] | 1011 | * A new mailing list has been created for reporting of security issues: |
| 1012 | systemd-security@redhat.com. For mode details, see |
| 1013 | https://systemd.io/CONTRIBUTING#security-vulnerability-reports. |
| 1014 | |
Zbigniew Jędrzejewski-Szmek | f21e2ec | 2019-08-22 13:47:11 +0200 | [diff] [blame] | 1015 | Contributions from: Aaron Barany, Adrian Bunk, Alan Jenkins, Albrecht |
| 1016 | Lohofener, Andrej Valek, Anita Zhang, Arian van Putten, Balint Reczey, |
| 1017 | Bastien Nocera, Ben Boeckel, Benjamin Robin, camoz, Chen Qi, Chris |
Zbigniew Jędrzejewski-Szmek | 03985d0 | 2020-03-06 13:25:21 +0100 | [diff] [blame] | 1018 | Chiu, Chris Down, Christian Göttsche, Christian Kellner, Clinton Roy, |
| 1019 | Connor Reeder, Daniel Black, Daniel Lublin, Daniele Medri, Dan |
| 1020 | Streetman, Dave Reisner, Dave Ross, David Art, David Tardon, Debarshi |
| 1021 | Ray, Dimitri John Ledkov, Dominick Grift, Donald Buczek, Douglas |
| 1022 | Christman, Eric DeVolder, EtherGraf, Evgeny Vereshchagin, Feldwor, |
| 1023 | Felix Riemann, Florian Dollinger, Francesco Pennica, Franck Bui, |
| 1024 | Frantisek Sumsal, Franz Pletz, frederik, Hans de Goede, Iago López |
| 1025 | Galeiras, Insun Pyo, Ivan Shapovalov, Iwan Timmer, Jack, Jakob |
| 1026 | Unterwurzacher, Jan Chren, Jan Klötzke, Jan Losinski, Jan Pokorný, Jan |
| 1027 | Synacek, Jan-Michael Brummer, Jeka Pats, Jeremy Soller, Jérémy Rosen, |
| 1028 | Jiri Pirko, Joe Lin, Joerg Behrmann, Joe Richey, Jóhann B. Guðmundsson, |
| 1029 | Johannes Christ, Johannes Schmitz, Jonathan Rouleau, Jorge Niedbalski, |
| 1030 | Jörg Thalheim, Kai Krakow, Kai Lüke, Karel Zak, Kashyap Chamarthy, |
Zbigniew Jędrzejewski-Szmek | f21e2ec | 2019-08-22 13:47:11 +0200 | [diff] [blame] | 1031 | Krayushkin Konstantin, Lennart Poettering, Lubomir Rintel, Luca |
| 1032 | Boccassi, Luís Ferreira, Marc-André Lureau, Markus Felten, Martin Pitt, |
| 1033 | Matthew Leeds, Mattias Jernberg, Michael Biebl, Michael Olbrich, |
| 1034 | Michael Prokop, Michael Stapelberg, Michael Zhivich, Michal Koutný, |
| 1035 | Michal Sekletar, Mike Gilbert, Milan Broz, Miroslav Lichvar, mpe85, |
| 1036 | Mr-Foo, Network Silence, Oliver Harley, pan93412, Paul Menzel, pEJipE, |
Zbigniew Jędrzejewski-Szmek | 03985d0 | 2020-03-06 13:25:21 +0100 | [diff] [blame] | 1037 | Peter A. Bigot, Philip Withnall, Piotr Drąg, Rafael Fontenelle, Robert |
| 1038 | Scheck, Roberto Santalla, Ronan Pigott, root, RussianNeuroMancer, |
| 1039 | Sebastian Jennen, shinygold, Shreyas Behera, Simon Schricker, Susant |
| 1040 | Sahani, Thadeu Lima de Souza Cascardo, Theo Ouzhinski, Thiebaud |
| 1041 | Weksteen, Thomas Haller, Thomas Weißschuh, Tomas Mraz, Tommi Rantala, |
| 1042 | Topi Miettinen, VD-Lycos, ven, Vladimir Yerilov, Wieland Hoffmann, |
| 1043 | William A. Kennington III, William Wold, Xi Ruoyao, Yuri Chornoivan, |
| 1044 | Yu Watanabe, Zach Smith, Zbigniew Jędrzejewski-Szmek, Zhang Xianwei |
Lennart Poettering | 29db4c3 | 2019-07-23 15:33:33 +0200 | [diff] [blame] | 1045 | |
Zbigniew Jędrzejewski-Szmek | efb536d | 2019-09-03 11:15:37 +0200 | [diff] [blame] | 1046 | – Camerino, 2019-09-03 |
Lennart Poettering | 6af9058 | 2019-04-12 12:01:41 +0200 | [diff] [blame] | 1047 | |
Zbigniew Jędrzejewski-Szmek | d822bd4 | 2019-04-03 09:48:10 +0200 | [diff] [blame] | 1048 | CHANGES WITH 242: |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1049 | |
| 1050 | * In .link files, MACAddressPolicy=persistent (the default) is changed |
| 1051 | to cover more devices. For devices like bridges, tun, tap, bond, and |
| 1052 | similar interfaces that do not have other identifying information, |
| 1053 | the interface name is used as the basis for persistent seed for MAC |
| 1054 | and IPv4LL addresses. The way that devices that were handled |
Zbigniew Jędrzejewski-Szmek | fd9baae | 2019-03-22 16:26:05 +0100 | [diff] [blame] | 1055 | previously is not changed, and this change is about covering more |
| 1056 | devices then previously by the "persistent" policy. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1057 | |
| 1058 | MACAddressPolicy=random may be used to force randomized MACs and |
| 1059 | IPv4LL addresses for a device if desired. |
| 1060 | |
| 1061 | Hint: the log output from udev (at debug level) was enhanced to |
| 1062 | clarify what policy is followed and which attributes are used. |
| 1063 | `SYSTEMD_LOG_LEVEL=debug udevadm test-builtin net_setup_link /sys/class/net/<name>` |
| 1064 | may be used to view this. |
| 1065 | |
Yu Watanabe | c111cd9 | 2019-06-14 23:15:55 +0900 | [diff] [blame] | 1066 | Hint: if a bridge interface is created without any slaves, and gains |
| 1067 | a slave later, then now the bridge does not inherit slave's MAC. |
| 1068 | To inherit slave's MAC, for example, create the following file: |
| 1069 | ``` |
| 1070 | # /etc/systemd/network/98-bridge-inherit-mac.link |
| 1071 | [Match] |
| 1072 | Type=bridge |
| 1073 | |
| 1074 | [Link] |
| 1075 | MACAddressPolicy=none |
| 1076 | ``` |
| 1077 | |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1078 | * The .device units generated by systemd-fstab-generator and other |
| 1079 | generators do not automatically pull in the corresponding .mount unit |
| 1080 | as a Wants= dependency. This means that simply plugging in the device |
| 1081 | will not cause the mount unit to be started automatically. But please |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1082 | note that the mount unit may be started for other reasons, in |
| 1083 | particular if it is part of local-fs.target, and any unit which |
| 1084 | (transitively) depends on local-fs.target is started. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1085 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1086 | * networkctl list/status/lldp now accept globbing wildcards for network |
| 1087 | interface names to match against all existing interfaces. |
| 1088 | |
| 1089 | * The $PIDFILE environment variable is set to point the absolute path |
| 1090 | configured with PIDFile= for processes of that service. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1091 | |
| 1092 | * The fallback DNS server list was augmented with Cloudflare public DNS |
| 1093 | servers. Use `-Ddns-servers=` to set a different fallback. |
| 1094 | |
| 1095 | * A new special target usb-gadget.target will be started automatically |
| 1096 | when a USB Device Controller is detected (which means that the system |
| 1097 | is a USB peripheral). |
| 1098 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1099 | * A new unit setting CPUQuotaPeriodSec= assigns the time period |
| 1100 | relatively to which the CPU time quota specified by CPUQuota= is |
| 1101 | measured. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1102 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1103 | * A new unit setting ProtectHostname= may be used to prevent services |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1104 | from modifying hostname information (even if they otherwise would |
| 1105 | have privileges to do so). |
| 1106 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1107 | * A new unit setting NetworkNamespacePath= may be used to specify a |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1108 | namespace for service or socket units through a path referring to a |
| 1109 | Linux network namespace pseudo-file. |
| 1110 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1111 | * The PrivateNetwork= setting and JoinsNamespaceOf= dependencies now |
| 1112 | have an effect on .socket units: when used the listening socket is |
| 1113 | created within the configured network namespace instead of the host |
| 1114 | namespace. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1115 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1116 | * ExecStart= command lines in unit files may now be prefixed with ':' |
| 1117 | in which case environment variable substitution is |
| 1118 | disabled. (Supported for the other ExecXYZ= settings, too.) |
| 1119 | |
Lennart Poettering | 2eb466f | 2019-04-02 11:25:26 +0200 | [diff] [blame] | 1120 | * .timer units gained two new boolean settings OnClockChange= and |
| 1121 | OnTimezoneChange= which may be used to also trigger a unit when the |
| 1122 | system clock is changed or the local timezone is |
| 1123 | modified. systemd-run has been updated to make these options easily |
| 1124 | accessible from the command line for transient timers. |
| 1125 | |
| 1126 | * Two new conditions for units have been added: ConditionMemory= may be |
| 1127 | used to conditionalize a unit based on installed system |
| 1128 | RAM. ConditionCPUs= may be used to conditionalize a unit based on |
Lennart Poettering | 39e445c | 2019-04-12 12:01:23 +0200 | [diff] [blame] | 1129 | installed CPU cores. |
Lennart Poettering | 2eb466f | 2019-04-02 11:25:26 +0200 | [diff] [blame] | 1130 | |
| 1131 | * The @default system call filter group understood by SystemCallFilter= |
| 1132 | has been updated to include the new rseq() system call introduced in |
| 1133 | kernel 4.15. |
| 1134 | |
Zbigniew Jędrzejewski-Szmek | ab80eca | 2019-04-08 15:45:45 +0200 | [diff] [blame] | 1135 | * A new time-set.target has been added that indicates that the system |
| 1136 | time has been set from a local source (possibly imprecise). The |
| 1137 | existing time-sync.target is stronger and indicates that the time has |
| 1138 | been synchronized with a precise external source. Services where |
| 1139 | approximate time is sufficient should use the new target. |
| 1140 | |
Lennart Poettering | 2eb466f | 2019-04-02 11:25:26 +0200 | [diff] [blame] | 1141 | * "systemctl start" (and related commands) learnt a new |
| 1142 | --show-transaction option. If specified brief information about all |
| 1143 | jobs queued because of the requested operation is shown. |
| 1144 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1145 | * systemd-networkd recognizes a new operation state 'enslaved', used |
| 1146 | (instead of 'degraded' or 'carrier') for interfaces which form a |
| 1147 | bridge, bond, or similar, and an new 'degraded-carrier' operational |
| 1148 | state used for the bond or bridge master interface when one of the |
| 1149 | enslaved devices is not operational. |
| 1150 | |
| 1151 | * .network files learnt the new IgnoreCarrierLoss= option for leaving |
| 1152 | networks configured even if the carrier is lost. |
| 1153 | |
| 1154 | * The RequiredForOnline= setting in .network files may now specify a |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1155 | minimum operational state required for the interface to be considered |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1156 | "online" by systemd-networkd-wait-online. Related to this |
| 1157 | systemd-networkd-wait-online gained a new option --operational-state= |
| 1158 | to configure the same, and its --interface= option was updated to |
| 1159 | optionally also take an operational state specific for an interface. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1160 | |
Lennart Poettering | 2eb466f | 2019-04-02 11:25:26 +0200 | [diff] [blame] | 1161 | * systemd-networkd-wait-online gained a new setting --any for waiting |
| 1162 | for only one of the requested interfaces instead of all of them. |
| 1163 | |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1164 | * systemd-networkd now implements L2TP tunnels. |
| 1165 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1166 | * Two new .network settings UseAutonomousPrefix= and UseOnLinkPrefix= |
| 1167 | may be used to cause autonomous and onlink prefixes received in IPv6 |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1168 | Router Advertisements to be ignored. |
| 1169 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1170 | * New MulticastFlood=, NeighborSuppression=, and Learning= .network |
| 1171 | file settings may be used to tweak bridge behaviour. |
| 1172 | |
| 1173 | * The new TripleSampling= option in .network files may be used to |
| 1174 | configure CAN triple sampling. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1175 | |
Yu Watanabe | 78bb286 | 2019-04-09 00:13:56 +0900 | [diff] [blame] | 1176 | * A new .netdev settings PrivateKeyFile= and PresharedKeyFile= may be |
| 1177 | used to point to private or preshared key for a WireGuard interface. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1178 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1179 | * /etc/crypttab now supports the same-cpu-crypt and |
| 1180 | submit-from-crypt-cpus options to tweak encryption work scheduling |
| 1181 | details. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1182 | |
| 1183 | * systemd-tmpfiles will now take a BSD file lock before operating on a |
| 1184 | contents of directory. This may be used to temporarily exclude |
| 1185 | directories from aging by taking the same lock (useful for example |
| 1186 | when extracting a tarball into /tmp or /var/tmp as a privileged user, |
| 1187 | which might create files with really old timestamps, which |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1188 | nevertheless should not be deleted). For further details, see: |
| 1189 | |
| 1190 | https://systemd.io/TEMPORARY_DIRECTORIES |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1191 | |
Lennart Poettering | 70d8401 | 2019-03-28 18:38:59 +0100 | [diff] [blame] | 1192 | * systemd-tmpfiles' h line type gained support for the |
| 1193 | FS_PROJINHERIT_FL ('P') file attribute (introduced in kernel 4.5), |
| 1194 | controlling project quota inheritance. |
| 1195 | |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1196 | * sd-boot and bootctl now implement support for an Extended Boot Loader |
| 1197 | (XBOOTLDR) partition, that is intended to be mounted to /boot, in |
| 1198 | addition to the ESP partition mounted to /efi or /boot/efi. |
| 1199 | Configuration file fragments, kernels, initrds and other EFI images |
| 1200 | to boot will be loaded from both the ESP and XBOOTLDR partitions. |
| 1201 | The XBOOTLDR partition was previously described by the Boot Loader |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1202 | Specification, but implementation was missing in sd-boot. Support for |
| 1203 | this concept allows using the sd-boot boot loader in more |
| 1204 | conservative scenarios where the boot loader itself is placed in the |
| 1205 | ESP but the kernels to boot (and their metadata) in a separate |
| 1206 | partition. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1207 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1208 | * A system may now be booted with systemd.volatile=overlay on the |
| 1209 | kernel command line, which causes the root file system to be set up |
| 1210 | an overlayfs mount combining the root-only root directory with a |
| 1211 | writable tmpfs. In this setup, the underlying root device is not |
| 1212 | modified, and any changes are lost at reboot. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1213 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1214 | * Similar, systemd-nspawn can now boot containers with a volatile |
| 1215 | overlayfs root with the new --volatile=overlay switch. |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1216 | |
| 1217 | * systemd-nspawn can now consume OCI runtime bundles using a new |
| 1218 | --oci-bundle= option. This implementation is fully usable, with most |
| 1219 | features in the specification implemented, but since this a lot of |
| 1220 | new code and functionality, this feature should most likely not |
| 1221 | be used in production yet. |
| 1222 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1223 | * systemd-nspawn now supports various options described by the OCI |
| 1224 | runtime specification on the command-line and in .nspawn files: |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1225 | --inaccessible=/Inaccessible= may be used to mask parts of the file |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1226 | system tree, --console=/--pipe may be used to configure how standard |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1227 | input, output, and error are set up. |
| 1228 | |
| 1229 | * busctl learned the `emit` verb to generate D-Bus signals. |
| 1230 | |
| 1231 | * systemd-analyze cat-config may be used to gather and display |
| 1232 | configuration spread over multiple files, for example system and user |
| 1233 | presets, tmpfiles.d, sysusers.d, udev rules, etc. |
| 1234 | |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1235 | * systemd-analyze calendar now takes an optional new parameter |
| 1236 | --iterations= which may be used to show a maximum number of iterations |
| 1237 | the specified expression will elapse next. |
| 1238 | |
| 1239 | * The sd-bus C API gained support for naming method parameters in the |
| 1240 | introspection data. |
| 1241 | |
| 1242 | * systemd-logind gained D-Bus APIs to specify the "reboot parameter" |
| 1243 | the reboot() system call expects. |
| 1244 | |
| 1245 | * journalctl learnt a new --cursor-file= option that points to a file |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1246 | from which a cursor should be loaded in the beginning and to which |
| 1247 | the updated cursor should be stored at the end. |
| 1248 | |
| 1249 | * ACRN hypervisor and Windows Subsystem for Linux (WSL) are now |
| 1250 | detected by systemd-detect-virt (and may also be used in |
| 1251 | ConditionVirtualization=). |
| 1252 | |
| 1253 | * The behaviour of systemd-logind may now be modified with environment |
| 1254 | variables $SYSTEMD_REBOOT_TO_FIRMWARE_SETUP, |
| 1255 | $SYSTEMD_REBOOT_TO_BOOT_LOADER_MENU, and |
| 1256 | $SYSTEMD_REBOOT_TO_BOOT_LOADER_ENTRY. They cause logind to either |
| 1257 | skip the relevant operation completely (when set to false), or to |
| 1258 | create a flag file in /run/systemd (when set to true), instead of |
| 1259 | actually commencing the real operation when requested. The presence |
| 1260 | of /run/systemd/reboot-to-firmware-setup, |
| 1261 | /run/systemd/reboot-to-boot-loader-menu, and |
| 1262 | /run/systemd/reboot-to-boot-loader-entry, may be used by alternative |
| 1263 | boot loader implementations to replace some steps logind performs |
| 1264 | during reboot with their own operations. |
| 1265 | |
| 1266 | * systemctl can be used to request a reboot into the boot loader menu |
Lennart Poettering | 5787c50 | 2019-03-25 13:25:04 +0100 | [diff] [blame] | 1267 | or a specific boot loader entry with the new --boot-load-menu= and |
| 1268 | --boot-loader-entry= options to a reboot command. (This requires a |
| 1269 | boot loader that supports this, for example sd-boot.) |
Zbigniew Jędrzejewski-Szmek | 9b89e60 | 2019-03-22 15:27:27 +0100 | [diff] [blame] | 1270 | |
| 1271 | * kernel-install will no longer unconditionally create the output |
| 1272 | directory (e.g. /efi/<machine-id>/<kernel-version>) for boot loader |
| 1273 | snippets, but will do only if the machine-specific parent directory |
| 1274 | (i.e. /efi/<machine-id>/) already exists. bootctl has been modified |
| 1275 | to create this parent directory during sd-boot installation. |
| 1276 | |
| 1277 | This makes it easier to use kernel-install with plugins which support |
| 1278 | a different layout of the bootloader partitions (for example grub2). |
| 1279 | |
Zbigniew Jędrzejewski-Szmek | a313424 | 2019-04-01 15:47:15 +0200 | [diff] [blame] | 1280 | * During package installation (with `ninja install`), we would create |
Paul Menzel | 1fa3ba9 | 2019-04-23 17:11:51 +0200 | [diff] [blame] | 1281 | symlinks for getty@tty1.service, systemd-networkd.service, |
| 1282 | systemd-networkd.socket, systemd-resolved.service, |
| 1283 | remote-cryptsetup.target, remote-fs.target, |
Zbigniew Jędrzejewski-Szmek | a313424 | 2019-04-01 15:47:15 +0200 | [diff] [blame] | 1284 | systemd-networkd-wait-online.service, and systemd-timesyncd.service |
| 1285 | in /etc, as if `systemctl enable` was called for those units, to make |
| 1286 | the system usable immediately after installation. Now this is not |
| 1287 | done anymore, and instead calling `systemctl preset-all` is |
| 1288 | recommended after the first installation of systemd. |
| 1289 | |
Lennart Poettering | bf65b7e | 2019-03-20 20:19:38 +0100 | [diff] [blame] | 1290 | * A new boolean sandboxing option RestrictSUIDSGID= has been added that |
| 1291 | is built on seccomp. When turned on creation of SUID/SGID files is |
| 1292 | prohibited. |
| 1293 | |
| 1294 | * The NoNewPrivileges= and the new RestrictSUIDSGID= options are now |
| 1295 | implied if DynamicUser= is turned on for a service. This hardens |
| 1296 | these services, so that they neither can benefit from nor create |
| 1297 | SUID/SGID executables. This is a minor compatibility breakage, given |
| 1298 | that when DynamicUser= was first introduced SUID/SGID behaviour was |
| 1299 | unaffected. However, the security benefit of these two options is |
| 1300 | substantial, and the setting is still relatively new, hence we opted |
| 1301 | to make it mandatory for services with dynamic users. |
| 1302 | |
Lennart Poettering | 5b2fc74 | 2019-03-27 14:23:25 +0100 | [diff] [blame] | 1303 | Contributions from: Adam Jackson, Alexander Tsoy, Andrey Yashkin, |
| 1304 | Andrzej Pietrasiewicz, Anita Zhang, Balint Reczey, Beniamino Galvani, |
| 1305 | Ben Iofel, Benjamin Berg, Benjamin Dahlhoff, Chris, Chris Morin, |
| 1306 | Christopher Wong, Claudius Ellsel, Clemens Gruber, dana, Daniel Black, |
| 1307 | Davide Cavalca, David Michael, David Rheinsberg, emersion, Evgeny |
| 1308 | Vereshchagin, Filipe Brandenburger, Franck Bui, Frantisek Sumsal, |
| 1309 | Giacinto Cifelli, Hans de Goede, Hugo Kindel, Ignat Korchagin, Insun |
Lennart Poettering | c3287a4 | 2019-04-08 11:35:45 +0200 | [diff] [blame] | 1310 | Pyo, Jan Engelhardt, Jonas Dorel, Jonathan Lebon, Jonathon Kowalski, |
| 1311 | Jörg Sommer, Jörg Thalheim, Jussi Pakkanen, Kai-Heng Feng, Lennart |
| 1312 | Poettering, Lubomir Rintel, Luís Ferreira, Martin Pitt, Matthias |
| 1313 | Klumpp, Michael Biebl, Michael Niewöhner, Michael Olbrich, Michal |
Zbigniew Jędrzejewski-Szmek | ab80eca | 2019-04-08 15:45:45 +0200 | [diff] [blame] | 1314 | Sekletar, Mike Lothian, Paul Menzel, Piotr Drąg, Riccardo Schirone, |
| 1315 | Robin Elvedi, Roman Kulikov, Ronald Tschalär, Ross Burton, Ryan |
Zbigniew Jędrzejewski-Szmek | 1e5d2d6 | 2019-04-11 18:28:36 +0200 | [diff] [blame] | 1316 | Gonzalez, Sebastian Krzyszkowiak, Stephane Chazelas, StKob, Susant |
| 1317 | Sahani, Sylvain Plantefève, Szabolcs Fruhwald, Taro Yamada, Theo |
| 1318 | Ouzhinski, Thomas Haller, Tobias Jungel, Tom Yan, Tony Asleson, Topi |
| 1319 | Miettinen, unixsysadmin, Van Laser, Vesa Jääskeläinen, Yu, Li-Yu, |
| 1320 | Yu Watanabe, Zbigniew Jędrzejewski-Szmek |
Lennart Poettering | 5b2fc74 | 2019-03-27 14:23:25 +0100 | [diff] [blame] | 1321 | |
Zbigniew Jędrzejewski-Szmek | 1e5d2d6 | 2019-04-11 18:28:36 +0200 | [diff] [blame] | 1322 | — Warsaw, 2019-04-11 |
Lennart Poettering | bf65b7e | 2019-03-20 20:19:38 +0100 | [diff] [blame] | 1323 | |
Lennart Poettering | d0f7174 | 2019-02-14 10:58:06 +0100 | [diff] [blame] | 1324 | CHANGES WITH 241: |
Zbigniew Jędrzejewski-Szmek | b4ff3db | 2019-01-10 22:25:52 +0100 | [diff] [blame] | 1325 | |
| 1326 | * The default locale can now be configured at compile time. Otherwise, |
| 1327 | a suitable default will be selected automatically (one of C.UTF-8, |
| 1328 | en_US.UTF-8, and C). |
| 1329 | |
| 1330 | * The version string shown by systemd and other tools now includes the |
| 1331 | git commit hash when built from git. An override may be specified |
| 1332 | during compilation, which is intended to be used by distributions to |
| 1333 | include the package release information. |
| 1334 | |
| 1335 | * systemd-cat can now filter standard input and standard error streams |
| 1336 | for different syslog priorities using the new --stderr-priority= |
| 1337 | option. |
| 1338 | |
| 1339 | * systemd-journald and systemd-journal-remote reject entries which |
| 1340 | contain too many fields (CVE-2018-16865) and set limits on the |
| 1341 | process' command line length (CVE-2018-16864). |
| 1342 | |
| 1343 | * $DBUS_SESSION_BUS_ADDRESS environment variable is set by pam_systemd |
| 1344 | again. |
| 1345 | |
Zbigniew Jędrzejewski-Szmek | 08e1fe4 | 2019-01-16 22:38:22 +0100 | [diff] [blame] | 1346 | * A new network device NamePolicy "keep" is implemented for link files, |
| 1347 | and used by default in 99-default.link (the fallback configuration |
| 1348 | provided by systemd). With this policy, if the network device name |
| 1349 | was already set by userspace, the device will not be renamed again. |
| 1350 | This matches the naming scheme that was implemented before |
| 1351 | systemd-240. If naming-scheme < 240 is specified, the "keep" policy |
| 1352 | is also enabled by default, even if not specified. Effectively, this |
| 1353 | means that if naming-scheme >= 240 is specified, network devices will |
| 1354 | be renamed according to the configuration, even if they have been |
| 1355 | renamed already, if "keep" is not specified as the naming policy in |
| 1356 | the .link file. The 99-default.link file provided by systemd includes |
| 1357 | "keep" for backwards compatibility, but it is recommended for user |
| 1358 | installed .link files to *not* include it. |
| 1359 | |
| 1360 | The "kernel" policy, which keeps kernel names declared to be |
| 1361 | "persistent", now works again as documented. |
| 1362 | |
Lennart Poettering | ba7a6b8 | 2019-01-30 19:02:00 +0100 | [diff] [blame] | 1363 | * kernel-install script now optionally takes the paths to one or more |
| 1364 | initrd files, and passes them to all plugins. |
Yu Watanabe | bd36ef0 | 2019-01-13 09:31:27 +0900 | [diff] [blame] | 1365 | |
Lennart Poettering | 57c03b1 | 2019-01-16 12:13:37 +0100 | [diff] [blame] | 1366 | * The mincore() system call has been dropped from the @system-service |
| 1367 | system call filter group, as it is pretty exotic and may potentially |
| 1368 | used for side-channel attacks. |
| 1369 | |
Zbigniew Jędrzejewski-Szmek | 774d637 | 2019-01-15 08:29:49 +0100 | [diff] [blame] | 1370 | * -fPIE is dropped from compiler and linker options. Please specify |
| 1371 | -Db_pie=true option to meson to build position-independent |
Yu Watanabe | bd36ef0 | 2019-01-13 09:31:27 +0900 | [diff] [blame] | 1372 | executables. Note that the meson option is supported since meson-0.49. |
| 1373 | |
Lucas Werkmeister | 2732587 | 2019-01-16 00:16:10 +0100 | [diff] [blame] | 1374 | * The fs.protected_regular and fs.protected_fifos sysctls, which were |
| 1375 | added in Linux 4.19 to make some data spoofing attacks harder, are |
| 1376 | now enabled by default. While this will hopefully improve the |
| 1377 | security of most installations, it is technically a backwards |
| 1378 | incompatible change; to disable these sysctls again, place the |
| 1379 | following lines in /etc/sysctl.d/60-protected.conf or a similar file: |
| 1380 | |
| 1381 | fs.protected_regular = 0 |
| 1382 | fs.protected_fifos = 0 |
| 1383 | |
| 1384 | Note that the similar hardlink and symlink protection has been |
| 1385 | enabled since v199, and may be disabled likewise. |
| 1386 | |
Louis Taylor | a77f438 | 2019-01-18 19:40:52 +0000 | [diff] [blame] | 1387 | * The files read from the EnvironmentFile= setting in unit files now |
| 1388 | parse backslashes inside quotes literally, matching the behaviour of |
| 1389 | POSIX shells. |
| 1390 | |
Lennart Poettering | ba7a6b8 | 2019-01-30 19:02:00 +0100 | [diff] [blame] | 1391 | * udevadm trigger, udevadm control, udevadm settle and udevadm monitor |
| 1392 | now automatically become NOPs when run in a chroot() environment. |
| 1393 | |
| 1394 | * The tmpfiles.d/ "C" line type will now copy directory trees not only |
| 1395 | when the destination is so far missing, but also if it already exists |
| 1396 | as a directory and is empty. This is useful to cater for systems |
| 1397 | where directory trees are put together from multiple separate mount |
| 1398 | points but otherwise empty. |
| 1399 | |
| 1400 | * A new function sd_bus_close_unref() (and the associated |
| 1401 | sd_bus_close_unrefp()) has been added to libsystemd, that combines |
| 1402 | sd_bus_close() and sd_bus_unref() in one. |
| 1403 | |
| 1404 | * udevadm control learnt a new option for --ping for testing whether a |
| 1405 | systemd-udevd instance is running and reacting. |
| 1406 | |
Yu Watanabe | ecebd1e | 2019-02-15 10:18:14 +0900 | [diff] [blame] | 1407 | * udevadm trigger learnt a new option for --wait-daemon for waiting |
| 1408 | systemd-udevd daemon to be initialized. |
| 1409 | |
Lennart Poettering | d0f7174 | 2019-02-14 10:58:06 +0100 | [diff] [blame] | 1410 | Contributions from: Aaron Plattner, Alberts Muktupāvels, Alex Mayer, |
| 1411 | Ayman Bagabas, Beniamino Galvani, Burt P, Chris Down, Chris Lamb, Chris |
| 1412 | Morin, Christian Hesse, Claudius Ellsel, dana, Daniel Axtens, Daniele |
| 1413 | Medri, Dave Reisner, David Santamaría Rogado, Diego Canuhe, Dimitri |
| 1414 | John Ledkov, Evgeny Vereshchagin, Fabrice Fontaine, Filipe |
| 1415 | Brandenburger, Franck Bui, Frantisek Sumsal, govwin, Hans de Goede, |
| 1416 | James Hilliard, Jan Engelhardt, Jani Uusitalo, Jan Janssen, Jan |
| 1417 | Synacek, Jonathan McDowell, Jonathan Roemer, Jonathon Kowalski, Joost |
| 1418 | Heitbrink, Jörg Thalheim, Lance, Lennart Poettering, Louis Taylor, |
| 1419 | Lucas Werkmeister, Mantas Mikulėnas, Marc-Antoine Perennou, |
| 1420 | marvelousblack, Michael Biebl, Michael Sloan, Michal Sekletar, Mike |
| 1421 | Auty, Mike Gilbert, Mikhail Kasimov, Neil Brown, Niklas Hambüchen, |
| 1422 | Patrick Williams, Paul Seyfert, Peter Hutterer, Philip Withnall, Roger |
| 1423 | James, Ronnie P. Thomas, Ryan Gonzalez, Sam Morris, Stephan Edel, |
| 1424 | Stephan Gerhold, Susant Sahani, Taro Yamada, Thomas Haller, Topi |
| 1425 | Miettinen, YiFei Zhu, YmrDtnJu, YunQiang Su, Yu Watanabe, Zbigniew |
| 1426 | Jędrzejewski-Szmek, zsergeant77, Дамјан Георгиевски |
Lennart Poettering | ba7a6b8 | 2019-01-30 19:02:00 +0100 | [diff] [blame] | 1427 | |
Yu Watanabe | 36d28eb | 2019-02-15 10:15:55 +0900 | [diff] [blame] | 1428 | — Berlin, 2019-02-14 |
Lennart Poettering | ba7a6b8 | 2019-01-30 19:02:00 +0100 | [diff] [blame] | 1429 | |
Lennart Poettering | 3267316 | 2018-12-21 15:02:11 +0100 | [diff] [blame] | 1430 | CHANGES WITH 240: |
Lennart Poettering | fcb9751 | 2018-07-25 20:36:11 +0200 | [diff] [blame] | 1431 | |
Zbigniew Jędrzejewski-Szmek | e68a35a | 2018-12-18 14:14:44 +0100 | [diff] [blame] | 1432 | * NoNewPrivileges=yes has been set for all long-running services |
| 1433 | implemented by systemd. Previously, this was problematic due to |
| 1434 | SELinux (as this would also prohibit the transition from PID1's label |
| 1435 | to the service's label). This restriction has since been lifted, but |
| 1436 | an SELinux policy update is required. |
| 1437 | (See e.g. https://github.com/fedora-selinux/selinux-policy/pull/234.) |
| 1438 | |
Yu Watanabe | aa2437e | 2018-12-21 03:27:26 +0900 | [diff] [blame] | 1439 | * DynamicUser=yes is dropped from systemd-networkd.service, |
| 1440 | systemd-resolved.service and systemd-timesyncd.service, which was |
| 1441 | enabled in v239 for systemd-networkd.service and systemd-resolved.service, |
| 1442 | and since v236 for systemd-timesyncd.service. The users and groups |
| 1443 | systemd-network, systemd-resolve and systemd-timesync are created |
| 1444 | by systemd-sysusers again. Distributors or system administrators |
| 1445 | may need to create these users and groups if they not exist (or need |
| 1446 | to re-enable DynamicUser= for those units) while upgrading systemd. |
Yu Watanabe | 787a133 | 2019-01-08 13:15:14 +0900 | [diff] [blame] | 1447 | Also, the clock file for systemd-timesyncd may need to move from |
| 1448 | /var/lib/private/systemd/timesync/clock to /var/lib/systemd/timesync/clock. |
Yu Watanabe | aa2437e | 2018-12-21 03:27:26 +0900 | [diff] [blame] | 1449 | |
Zbigniew Jędrzejewski-Szmek | b1a082c | 2018-12-18 14:31:24 +0100 | [diff] [blame] | 1450 | * When unit files are loaded from disk, previously systemd would |
| 1451 | sometimes (depending on the unit loading order) load units from the |
| 1452 | target path of symlinks in .wants/ or .requires/ directories of other |
| 1453 | units. This meant that unit could be loaded from different paths |
| 1454 | depending on whether the unit was requested explicitly or as a |
| 1455 | dependency of another unit, not honouring the priority of directories |
| 1456 | in search path. It also meant that it was possible to successfully |
| 1457 | load and start units which are not found in the unit search path, as |
| 1458 | long as they were requested as a dependency and linked to from |
| 1459 | .wants/ or .requires/. The target paths of those symlinks are not |
| 1460 | used for loading units anymore and the unit file must be found in |
| 1461 | the search path. |
| 1462 | |
Lennart Poettering | fcb9751 | 2018-07-25 20:36:11 +0200 | [diff] [blame] | 1463 | * A new service type has been added: Type=exec. It's very similar to |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1464 | Type=simple but ensures the service manager will wait for both fork() |
Lennart Poettering | fcb9751 | 2018-07-25 20:36:11 +0200 | [diff] [blame] | 1465 | and execve() of the main service binary to complete before proceeding |
| 1466 | with follow-up units. This is primarily useful so that the manager |
| 1467 | propagates any errors in the preparation phase of service execution |
| 1468 | back to the job that requested the unit to be started. For example, |
| 1469 | consider a service that has ExecStart= set to a file system binary |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1470 | that doesn't exist. With Type=simple starting the unit would be |
| 1471 | considered instantly successful, as only fork() has to complete |
| 1472 | successfully and the manager does not wait for execve(), and hence |
| 1473 | its failure is seen "too late". With the new Type=exec service type |
| 1474 | starting the unit will fail, as the manager will wait for the |
| 1475 | execve() and notice its failure, which is then propagated back to the |
| 1476 | start job. |
Lennart Poettering | fcb9751 | 2018-07-25 20:36:11 +0200 | [diff] [blame] | 1477 | |
| 1478 | NOTE: with the next release 241 of systemd we intend to change the |
| 1479 | systemd-run tool to default to Type=exec for transient services |
| 1480 | started by it. This should be mostly safe, but in specific corner |
| 1481 | cases might result in problems, as the systemd-run tool will then |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1482 | block on NSS calls (such as user name look-ups due to User=) done |
Lennart Poettering | fcb9751 | 2018-07-25 20:36:11 +0200 | [diff] [blame] | 1483 | between the fork() and execve(), which under specific circumstances |
| 1484 | might cause problems. It is recommended to specify "-p Type=simple" |
| 1485 | explicitly in the few cases where this applies. For regular, |
| 1486 | non-transient services (i.e. those defined with unit files on disk) |
| 1487 | we will continue to default to Type=simple. |
| 1488 | |
Lennart Poettering | 0972c1a | 2018-10-02 09:21:45 +0200 | [diff] [blame] | 1489 | * The Linux kernel's current default RLIMIT_NOFILE resource limit for |
| 1490 | userspace processes is set to 1024 (soft) and 4096 |
| 1491 | (hard). Previously, systemd passed this on unmodified to all |
| 1492 | processes it forked off. With this systemd release the hard limit |
Lennart Poettering | 0abf949 | 2018-11-28 21:58:51 +0100 | [diff] [blame] | 1493 | systemd passes on is increased to 512K, overriding the kernel's |
Lennart Poettering | 0972c1a | 2018-10-02 09:21:45 +0200 | [diff] [blame] | 1494 | defaults and substantially increasing the number of simultaneous file |
| 1495 | descriptors unprivileged userspace processes can allocate. Note that |
| 1496 | the soft limit remains at 1024 for compatibility reasons: the |
| 1497 | traditional UNIX select() call cannot deal with file descriptors >= |
| 1498 | 1024 and increasing the soft limit globally might thus result in |
| 1499 | programs unexpectedly allocating a high file descriptor and thus |
| 1500 | failing abnormally when attempting to use it with select() (of |
| 1501 | course, programs shouldn't use select() anymore, and prefer |
| 1502 | poll()/epoll, but the call unfortunately remains undeservedly popular |
| 1503 | at this time). This change reflects the fact that file descriptor |
| 1504 | handling in the Linux kernel has been optimized in more recent |
| 1505 | kernels and allocating large numbers of them should be much cheaper |
| 1506 | both in memory and in performance than it used to be. Programs that |
| 1507 | want to take benefit of the increased limit have to "opt-in" into |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1508 | high file descriptors explicitly by raising their soft limit. Of |
| 1509 | course, when they do that they must acknowledge that they cannot use |
| 1510 | select() anymore (and neither can any shared library they use — or |
| 1511 | any shared library used by any shared library they use and so on). |
| 1512 | Which default hard limit is most appropriate is of course hard to |
| 1513 | decide. However, given reports that ~300K file descriptors are used |
| 1514 | in real-life applications we believe 512K is sufficiently high as new |
| 1515 | default for now. Note that there are also reports that using very |
| 1516 | high hard limits (e.g. 1G) is problematic: some software allocates |
| 1517 | large arrays with one element for each potential file descriptor |
| 1518 | (Java, …) — a high hard limit thus triggers excessively large memory |
| 1519 | allocations in these applications. Hopefully, the new default of 512K |
| 1520 | is a good middle ground: higher than what real-life applications |
| 1521 | currently need, and low enough for avoid triggering excessively large |
| 1522 | allocations in problematic software. (And yes, somebody should fix |
| 1523 | Java.) |
Lennart Poettering | 0972c1a | 2018-10-02 09:21:45 +0200 | [diff] [blame] | 1524 | |
Lennart Poettering | a8b627a | 2018-10-11 18:23:26 +0200 | [diff] [blame] | 1525 | * The fs.nr_open and fs.file-max sysctls are now automatically bumped |
| 1526 | to the highest possible values, as separate accounting of file |
| 1527 | descriptors is no longer necessary, as memcg tracks them correctly as |
| 1528 | part of the memory accounting anyway. Thus, from the four limits on |
| 1529 | file descriptors currently enforced (fs.file-max, fs.nr_open, |
| 1530 | RLIMIT_NOFILE hard, RLIMIT_NOFILE soft) we turn off the first two, |
| 1531 | and keep only the latter two. A set of build-time options |
Christian Hesse | a579d42 | 2019-02-04 10:34:11 +0100 | [diff] [blame] | 1532 | (-Dbump-proc-sys-fs-file-max=false and -Dbump-proc-sys-fs-nr-open=false) |
Lennart Poettering | a8b627a | 2018-10-11 18:23:26 +0200 | [diff] [blame] | 1533 | has been added to revert this change in behaviour, which might be |
| 1534 | an option for systems that turn off memcg in the kernel. |
| 1535 | |
Lennart Poettering | 4f7dc24 | 2018-11-12 17:00:32 +0100 | [diff] [blame] | 1536 | * When no /etc/locale.conf file exists (and hence no locale settings |
| 1537 | are in place), systemd will now use the "C.UTF-8" locale by default, |
| 1538 | and set LANG= to it. This locale is supported by various |
| 1539 | distributions including Fedora, with clear indications that upstream |
| 1540 | glibc is going to make it available too. This locale enables UTF-8 |
| 1541 | mode by default, which appears appropriate for 2018. |
| 1542 | |
Lubomir Rintel | 230450d | 2018-11-28 11:44:20 +0100 | [diff] [blame] | 1543 | * The "net.ipv4.conf.all.rp_filter" sysctl will now be set to 2 by |
| 1544 | default. This effectively switches the RFC3704 Reverse Path filtering |
| 1545 | from Strict mode to Loose mode. This is more appropriate for hosts |
| 1546 | that have multiple links with routes to the same networks (e.g. |
| 1547 | a client with a Wi-Fi and Ethernet both connected to the internet). |
| 1548 | |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1549 | Consult the kernel documentation for details on this sysctl: |
Lubomir Rintel | 230450d | 2018-11-28 11:44:20 +0100 | [diff] [blame] | 1550 | https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt |
| 1551 | |
Chris Down | 23305a2 | 2018-12-11 13:41:50 +0000 | [diff] [blame] | 1552 | * CPUAccounting=yes no longer enables the CPU controller when using |
| 1553 | kernel 4.15+ and the unified cgroup hierarchy, as required accounting |
| 1554 | statistics are now provided independently from the CPU controller. |
| 1555 | |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1556 | * Support for disabling a particular cgroup controller within a sub-tree |
Chris Down | a846768 | 2018-12-11 13:43:29 +0000 | [diff] [blame] | 1557 | has been added through the DisableControllers= directive. |
| 1558 | |
Chris Down | 8f044cf | 2018-12-21 13:07:45 +0000 | [diff] [blame] | 1559 | * cgroup_no_v1=all on the kernel command line now also implies |
| 1560 | using the unified cgroup hierarchy, unless one explicitly passes |
| 1561 | systemd.unified_cgroup_hierarchy=0 on the kernel command line. |
| 1562 | |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1563 | * The new "MemoryMin=" unit file property may now be used to set the |
| 1564 | memory usage protection limit of processes invoked by the unit. This |
Chris Down | 4e1dfa4 | 2019-01-02 20:15:15 +0000 | [diff] [blame] | 1565 | controls the cgroup v2 memory.min attribute. Similarly, the new |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1566 | "IODeviceLatencyTargetSec=" property has been added, wrapping the new |
Chris Down | 4e1dfa4 | 2019-01-02 20:15:15 +0000 | [diff] [blame] | 1567 | cgroup v2 io.latency cgroup property for configuring per-service I/O |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1568 | latency. |
| 1569 | |
Chris Down | 4e1dfa4 | 2019-01-02 20:15:15 +0000 | [diff] [blame] | 1570 | * systemd now supports the cgroup v2 devices BPF logic, as counterpart |
| 1571 | to the cgroup v1 "devices" cgroup controller. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1572 | |
| 1573 | * systemd-escape now is able to combine --unescape with --template. It |
| 1574 | also learnt a new option --instance for extracting and unescaping the |
| 1575 | instance part of a unit name. |
| 1576 | |
| 1577 | * sd-bus now provides the sd_bus_message_readv() which is similar to |
| 1578 | sd_bus_message_read() but takes a va_list object. The pair |
| 1579 | sd_bus_set_method_call_timeout() and sd_bus_get_method_call_timeout() |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1580 | has been added for configuring the default method call timeout to |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1581 | use. sd_bus_error_move() may be used to efficiently move the contents |
| 1582 | from one sd_bus_error structure to another, invalidating the |
| 1583 | source. sd_bus_set_close_on_exit() and sd_bus_get_close_on_exit() may |
| 1584 | be used to control whether a bus connection object is automatically |
| 1585 | flushed when an sd-event loop is exited. |
| 1586 | |
| 1587 | * When processing classic BSD syslog log messages, journald will now |
| 1588 | save the original time-stamp string supplied in the new |
| 1589 | SYSLOG_TIMESTAMP= journal field. This permits consumers to |
| 1590 | reconstruct the original BSD syslog message more correctly. |
| 1591 | |
| 1592 | * StandardOutput=/StandardError= in service files gained support for |
| 1593 | new "append:…" parameters, for connecting STDOUT/STDERR of a service |
| 1594 | to a file, and appending to it. |
| 1595 | |
| 1596 | * The signal to use as last step of killing of unit processes is now |
| 1597 | configurable. Previously it was hard-coded to SIGKILL, which may now |
| 1598 | be overridden with the new KillSignal= setting. Note that this is the |
Lennart Poettering | 46b028f | 2018-12-13 16:53:40 +0100 | [diff] [blame] | 1599 | signal used when regular termination (i.e. SIGTERM) does not suffice. |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1600 | Similarly, the signal used when aborting a program in case of a |
| 1601 | watchdog timeout may now be configured too (WatchdogSignal=). |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1602 | |
| 1603 | * The XDG_SESSION_DESKTOP environment variable may now be configured in |
| 1604 | the pam_systemd argument line, using the new desktop= switch. This is |
| 1605 | useful to initialize it properly from a display manager without |
| 1606 | having to touch C code. |
| 1607 | |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1608 | * Most configuration options that previously accepted percentage values |
| 1609 | now also accept permille values with the '‰' suffix (instead of '%'). |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1610 | |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1611 | * systemd-resolved may now optionally use OpenSSL instead of GnuTLS for |
| 1612 | DNS-over-TLS. |
| 1613 | |
| 1614 | * systemd-resolved's configuration file resolved.conf gained a new |
| 1615 | option ReadEtcHosts= which may be used to turn off processing and |
| 1616 | honoring /etc/hosts entries. |
| 1617 | |
| 1618 | * The "--wait" switch may now be passed to "systemctl |
| 1619 | is-system-running", in which case the tool will synchronously wait |
| 1620 | until the system finished start-up. |
| 1621 | |
| 1622 | * hostnamed gained a new bus call to determine the DMI product UUID. |
| 1623 | |
| 1624 | * On x86-64 systemd will now prefer using the RDRAND processor |
| 1625 | instruction over /dev/urandom whenever it requires randomness that |
| 1626 | neither has to be crypto-grade nor should be reproducible. This |
| 1627 | should substantially reduce the amount of entropy systemd requests |
| 1628 | from the kernel during initialization on such systems, though not |
| 1629 | reduce it to zero. (Why not zero? systemd still needs to allocate |
| 1630 | UUIDs and such uniquely, which require high-quality randomness.) |
| 1631 | |
| 1632 | * networkd gained support for Foo-Over-UDP, ERSPAN and ISATAP |
| 1633 | tunnels. It also gained a new option ForceDHCPv6PDOtherInformation= |
| 1634 | for forcing the "Other Information" bit in IPv6 RA messages. The |
Yu Watanabe | d6131be | 2018-12-17 10:12:08 +0900 | [diff] [blame] | 1635 | bonding logic gained four new options AdActorSystemPriority=, |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1636 | AdUserPortKey=, AdActorSystem= for configuring various 802.3ad |
Yu Watanabe | d6131be | 2018-12-17 10:12:08 +0900 | [diff] [blame] | 1637 | aspects, and DynamicTransmitLoadBalancing= for enabling dynamic |
| 1638 | shuffling of flows. The tunnel logic gained a new |
| 1639 | IPv6RapidDeploymentPrefix= option for configuring IPv6 Rapid |
| 1640 | Deployment. The policy rule logic gained four new options IPProtocol=, |
| 1641 | SourcePort= and DestinationPort=, InvertRule=. The bridge logic gained |
| 1642 | support for the MulticastToUnicast= option. networkd also gained |
| 1643 | support for configuring static IPv4 ARP or IPv6 neighbor entries. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1644 | |
| 1645 | * .preset files (as read by 'systemctl preset') may now be used to |
| 1646 | instantiate services. |
| 1647 | |
| 1648 | * /etc/crypttab now understands the sector-size= option to configure |
| 1649 | the sector size for an encrypted partition. |
| 1650 | |
| 1651 | * Key material for encrypted disks may now be placed on a formatted |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1652 | medium, and referenced from /etc/crypttab by the UUID of the file |
| 1653 | system, followed by "=" suffixed by the path to the key file. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1654 | |
| 1655 | * The "collect" udev component has been removed without replacement, as |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1656 | it is neither used nor maintained. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1657 | |
| 1658 | * When the RuntimeDirectory=, StateDirectory=, CacheDirectory=, |
| 1659 | LogsDirectory=, ConfigurationDirectory= settings are used in a |
| 1660 | service the executed processes will now receive a set of environment |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1661 | variables containing the full paths of these directories. |
| 1662 | Specifically, RUNTIME_DIRECTORY=, STATE_DIRECTORY, CACHE_DIRECTORY, |
| 1663 | LOGS_DIRECTORY, CONFIGURATION_DIRECTORY are now set if these options |
| 1664 | are used. Note that these options may be used multiple times per |
| 1665 | service in which case the resulting paths will be concatenated and |
| 1666 | separated by colons. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1667 | |
| 1668 | * Predictable interface naming has been extended to cover InfiniBand |
| 1669 | NICs. They will be exposed with an "ib" prefix. |
| 1670 | |
| 1671 | * tmpfiles.d/ line types may now be suffixed with a '-' character, in |
| 1672 | which case the respective line failing is ignored. |
| 1673 | |
| 1674 | * .link files may now be used to configure the equivalent to the |
| 1675 | "ethtool advertise" commands. |
| 1676 | |
| 1677 | * The sd-device.h and sd-hwdb.h APIs are now exported, as an |
| 1678 | alternative to libudev.h. Previously, the latter was just an internal |
| 1679 | wrapper around the former, but now these two APIs are exposed |
| 1680 | directly. |
| 1681 | |
| 1682 | * sd-id128.h gained a new function sd_id128_get_boot_app_specific() |
| 1683 | which calculates an app-specific boot ID similar to how |
| 1684 | sd_id128_get_machine_app_specific() generates an app-specific machine |
| 1685 | ID. |
| 1686 | |
| 1687 | * A new tool systemd-id128 has been added that can be used to determine |
| 1688 | and generate various 128bit IDs. |
| 1689 | |
| 1690 | * /etc/os-release gained two new standardized fields DOCUMENTATION_URL= |
| 1691 | and LOGO=. |
| 1692 | |
| 1693 | * systemd-hibernate-resume-generator will now honor the "noresume" |
| 1694 | kernel command line option, in which case it will bypass resuming |
| 1695 | from any hibernated image. |
| 1696 | |
| 1697 | * The systemd-sleep.conf configuration file gained new options |
| 1698 | AllowSuspend=, AllowHibernation=, AllowSuspendThenHibernate=, |
| 1699 | AllowHybridSleep= for prohibiting specific sleep modes even if the |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1700 | kernel exports them. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1701 | |
| 1702 | * portablectl is now officially supported and has thus moved to |
| 1703 | /usr/bin/. |
| 1704 | |
| 1705 | * bootctl learnt the two new commands "set-default" and "set-oneshot" |
| 1706 | for setting the default boot loader item to boot to (either |
| 1707 | persistently or only for the next boot). This is currently only |
| 1708 | compatible with sd-boot, but may be implemented on other boot loaders |
| 1709 | too, that follow the boot loader interface. The updated interface is |
| 1710 | now documented here: |
| 1711 | |
| 1712 | https://systemd.io/BOOT_LOADER_INTERFACE |
| 1713 | |
| 1714 | * A new kernel command line option systemd.early_core_pattern= is now |
| 1715 | understood which may be used to influence the core_pattern PID 1 |
| 1716 | installs during early boot. |
| 1717 | |
| 1718 | * busctl learnt two new options -j and --json= for outputting method |
| 1719 | call replies, properties and monitoring output in JSON. |
| 1720 | |
| 1721 | * journalctl's JSON output now supports simple ANSI coloring as well as |
| 1722 | a new "json-seq" mode for generating RFC7464 output. |
| 1723 | |
| 1724 | * Unit files now support the %g/%G specifiers that resolve to the UNIX |
| 1725 | group/GID of the service manager runs as, similar to the existing |
| 1726 | %u/%U specifiers that resolve to the UNIX user/UID. |
| 1727 | |
| 1728 | * systemd-logind learnt a new global configuration option |
| 1729 | UserStopDelaySec= that may be set in logind.conf. It specifies how |
| 1730 | long the systemd --user instance shall remain started after a user |
| 1731 | logs out. This is useful to speed up repetitive re-connections of the |
| 1732 | same user, as it means the user's service manager doesn't have to be |
| 1733 | stopped/restarted on each iteration, but can be reused between |
| 1734 | subsequent options. This setting defaults to 10s. systemd-logind also |
| 1735 | exports two new properties on its Manager D-Bus objects indicating |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1736 | whether the system's lid is currently closed, and whether the system |
| 1737 | is on AC power. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1738 | |
| 1739 | * systemd gained support for a generic boot counting logic, which |
| 1740 | generically permits automatic reverting to older boot loader entries |
| 1741 | if newer updated ones don't work. The boot loader side is implemented |
| 1742 | in sd-boot, but is kept open for other boot loaders too. For details |
| 1743 | see: |
| 1744 | |
| 1745 | https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT |
| 1746 | |
| 1747 | * The SuccessAction=/FailureAction= unit file settings now learnt two |
| 1748 | new parameters: "exit" and "exit-force", which result in immediate |
| 1749 | exiting of the service manager, and are only useful in systemd --user |
| 1750 | and container environments. |
| 1751 | |
| 1752 | * Unit files gained support for a pair of options |
| 1753 | FailureActionExitStatus=/SuccessActionExitStatus= for configuring the |
| 1754 | exit status to use as service manager exit status when |
| 1755 | SuccessAction=/FailureAction= is set to exit or exit-force. |
| 1756 | |
| 1757 | * A pair of LogRateLimitIntervalSec=/LogRateLimitBurst= per-service |
| 1758 | options may now be used to configure the log rate limiting applied by |
| 1759 | journald per-service. |
| 1760 | |
| 1761 | * systemd-analyze gained a new verb "timespan" for parsing and |
| 1762 | normalizing time span values (i.e. strings like "5min 7s 8us"). |
| 1763 | |
| 1764 | * systemd-analyze also gained a new verb "security" for analyzing the |
| 1765 | security and sand-boxing settings of services in order to determine an |
| 1766 | "exposure level" for them, indicating whether a service would benefit |
| 1767 | from more sand-boxing options turned on for them. |
| 1768 | |
| 1769 | * "systemd-analyze syscall-filter" will now also show system calls |
| 1770 | supported by the local kernel but not included in any of the defined |
| 1771 | groups. |
| 1772 | |
| 1773 | * .nspawn files now understand the Ephemeral= setting, matching the |
| 1774 | --ephemeral command line switch. |
| 1775 | |
| 1776 | * sd-event gained the new APIs sd_event_source_get_floating() and |
| 1777 | sd_event_source_set_floating() for controlling whether a specific |
| 1778 | event source is "floating", i.e. destroyed along with the even loop |
| 1779 | object itself. |
| 1780 | |
| 1781 | * Unit objects on D-Bus gained a new "Refs" property that lists all |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1782 | clients that currently have a reference on the unit (to ensure it is |
| 1783 | not unloaded). |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1784 | |
| 1785 | * The JoinControllers= option in system.conf is no longer supported, as |
| 1786 | it didn't work correctly, is hard to support properly, is legacy (as |
Chris Down | 4e1dfa4 | 2019-01-02 20:15:15 +0000 | [diff] [blame] | 1787 | the concept only exists on cgroup v1) and apparently wasn't used. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1788 | |
| 1789 | * Journal messages that are generated whenever a unit enters the failed |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1790 | state are now tagged with a unique MESSAGE_ID. Similarly, messages |
| 1791 | generated whenever a service process exits are now made recognizable, |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 1792 | too. A tagged message is also emitted whenever a unit enters the |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1793 | "dead" state on success. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1794 | |
| 1795 | * systemd-run gained a new switch --working-directory= for configuring |
| 1796 | the working directory of the service to start. A shortcut -d is |
| 1797 | equivalent, setting the working directory of the service to the |
| 1798 | current working directory of the invoking program. The new --shell |
| 1799 | (or just -S) option has been added for invoking the $SHELL of the |
| 1800 | caller as a service, and implies --pty --same-dir --wait --collect |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1801 | --service-type=exec. Or in other words, "systemd-run -S" is now the |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1802 | quickest way to quickly get an interactive in a fully clean and |
| 1803 | well-defined system service context. |
| 1804 | |
| 1805 | * machinectl gained a new verb "import-fs" for importing an OS tree |
| 1806 | from a directory. Moreover, when a directory or tarball is imported |
| 1807 | and single top-level directory found with the OS itself below the OS |
| 1808 | tree is automatically mangled and moved one level up. |
| 1809 | |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1810 | * systemd-importd will no longer set up an implicit btrfs loop-back |
| 1811 | file system on /var/lib/machines. If one is already set up, it will |
| 1812 | continue to be used. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1813 | |
| 1814 | * A new generator "systemd-run-generator" has been added. It will |
| 1815 | synthesize a unit from one or more program command lines included in |
| 1816 | the kernel command line. This is very useful in container managers |
| 1817 | for example: |
| 1818 | |
| 1819 | # systemd-nspawn -i someimage.raw -b systemd.run='"some command line"' |
| 1820 | |
| 1821 | This will run "systemd-nspawn" on an image, invoke the specified |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1822 | command line and immediately shut down the container again, returning |
| 1823 | the command line's exit code. |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1824 | |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1825 | * The block device locking logic is now documented: |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1826 | |
| 1827 | https://systemd.io/BLOCK_DEVICE_LOCKING |
| 1828 | |
| 1829 | * loginctl and machinectl now optionally output the various tables in |
| 1830 | JSON using the --output= switch. It is our intention to add similar |
| 1831 | support to systemctl and all other commands. |
| 1832 | |
| 1833 | * udevadm's query and trigger verb now optionally take a .device unit |
| 1834 | name as argument. |
| 1835 | |
| 1836 | * systemd-udevd's network naming logic now understands a new |
Zbigniew Jędrzejewski-Szmek | 421e3b4 | 2018-12-12 22:47:22 +0100 | [diff] [blame] | 1837 | net.naming-scheme= kernel command line switch, which may be used to |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1838 | pick a specific version of the naming scheme. This helps stabilizing |
| 1839 | interface names even as systemd/udev are updated and the naming logic |
| 1840 | is improved. |
| 1841 | |
Lennart Poettering | 6708143 | 2018-12-14 11:46:07 +0100 | [diff] [blame] | 1842 | * sd-id128.h learnt two new auxiliary helpers: sd_id128_is_allf() and |
| 1843 | SD_ID128_ALLF to test if a 128bit ID is set to all 0xFF bytes, and to |
| 1844 | initialize one to all 0xFF. |
| 1845 | |
Lennart Poettering | 144d7f1 | 2018-12-18 13:04:43 +0100 | [diff] [blame] | 1846 | * After loading the SELinux policy systemd will now recursively relabel |
| 1847 | all files and directories listed in |
| 1848 | /run/systemd/relabel-extra.d/*.relabel (which should be simple |
| 1849 | newline separated lists of paths) in addition to the ones it already |
| 1850 | implicitly relabels in /run, /dev and /sys. After the relabelling is |
| 1851 | completed the *.relabel files (and /run/systemd/relabel-extra.d/) are |
| 1852 | removed. This is useful to permit initrds (i.e. code running before |
| 1853 | the SELinux policy is in effect) to generate files in the host |
| 1854 | filesystem safely and ensure that the correct label is applied during |
| 1855 | the transition to the host OS. |
| 1856 | |
Lennart Poettering | 98a7b55 | 2018-12-17 16:46:36 +0100 | [diff] [blame] | 1857 | * KERNEL API BREAKAGE: Linux kernel 4.18 changed behaviour regarding |
| 1858 | mknod() handling in user namespaces. Previously mknod() would always |
| 1859 | fail with EPERM in user namespaces. Since 4.18 mknod() will succeed |
| 1860 | but device nodes generated that way cannot be opened, and attempts to |
| 1861 | open them result in EPERM. This breaks the "graceful fallback" logic |
| 1862 | in systemd's PrivateDevices= sand-boxing option. This option is |
| 1863 | implemented defensively, so that when systemd detects it runs in a |
| 1864 | restricted environment (such as a user namespace, or an environment |
| 1865 | where mknod() is blocked through seccomp or absence of CAP_SYS_MKNOD) |
| 1866 | where device nodes cannot be created the effect of PrivateDevices= is |
| 1867 | bypassed (following the logic that 2nd-level sand-boxing is not |
| 1868 | essential if the system systemd runs in is itself already sand-boxed |
| 1869 | as a whole). This logic breaks with 4.18 in container managers where |
| 1870 | user namespacing is used: suddenly PrivateDevices= succeeds setting |
| 1871 | up a private /dev/ file system containing devices nodes — but when |
| 1872 | these are opened they don't work. |
| 1873 | |
Michael Prokop | d238709 | 2019-06-27 09:54:20 +0200 | [diff] [blame] | 1874 | At this point it is recommended that container managers utilizing |
Lennart Poettering | 98a7b55 | 2018-12-17 16:46:36 +0100 | [diff] [blame] | 1875 | user namespaces that intend to run systemd in the payload explicitly |
| 1876 | block mknod() with seccomp or similar, so that the graceful fallback |
| 1877 | logic works again. |
| 1878 | |
| 1879 | We are very sorry for the breakage and the requirement to change |
| 1880 | container configurations for newer kernels. It's purely caused by an |
| 1881 | incompatible kernel change. The relevant kernel developers have been |
| 1882 | notified about this userspace breakage quickly, but they chose to |
| 1883 | ignore it. |
| 1884 | |
Zbigniew Jędrzejewski-Szmek | 455027c | 2019-01-12 20:35:17 +0100 | [diff] [blame] | 1885 | * PermissionsStartOnly= setting is deprecated (but is still supported |
| 1886 | for backwards compatibility). The same functionality is provided by |
| 1887 | the more flexible "+", "!", and "!!" prefixes to ExecStart= and other |
| 1888 | commands. |
| 1889 | |
Zbigniew Jędrzejewski-Szmek | b4ff3db | 2019-01-10 22:25:52 +0100 | [diff] [blame] | 1890 | * $DBUS_SESSION_BUS_ADDRESS environment variable is not set by |
| 1891 | pam_systemd anymore. |
| 1892 | |
Zbigniew Jędrzejewski-Szmek | 08e1fe4 | 2019-01-16 22:38:22 +0100 | [diff] [blame] | 1893 | * The naming scheme for network devices was changed to always rename |
| 1894 | devices, even if they were already renamed by userspace. The "kernel" |
| 1895 | policy was changed to only apply as a fallback, if no other naming |
| 1896 | policy took effect. |
| 1897 | |
Yu Watanabe | bd36ef0 | 2019-01-13 09:31:27 +0900 | [diff] [blame] | 1898 | * The requirements to build systemd is bumped to meson-0.46 and |
| 1899 | python-3.5. |
| 1900 | |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1901 | Contributions from: afg, Alan Jenkins, Aleksei Timofeyev, Alexander |
| 1902 | Filippov, Alexander Kurtz, Alexey Bogdanenko, Andreas Henriksson, |
| 1903 | Andrew Jorgensen, Anita Zhang, apnix-uk, Arkan49, Arseny Maslennikov, |
| 1904 | asavah, Asbjørn Apeland, aszlig, Bastien Nocera, Ben Boeckel, Benedikt |
Lennart Poettering | c37e235 | 2018-12-18 12:56:56 +0100 | [diff] [blame] | 1905 | Morbach, Benjamin Berg, Bruce Zhang, Carlo Caione, Cedric Viou, Chen |
| 1906 | Qi, Chris Chiu, Chris Down, Chris Morin, Christian Rebischke, Claudius |
| 1907 | Ellsel, Colin Guthrie, dana, Daniel, Daniele Medri, Daniel Kahn |
| 1908 | Gillmor, Daniel Rusek, Daniel van Vugt, Dariusz Gadomski, Dave Reisner, |
| 1909 | David Anderson, Davide Cavalca, David Leeds, David Malcolm, David |
Zbigniew Jędrzejewski-Szmek | 1742aae | 2018-12-21 19:52:16 +0100 | [diff] [blame] | 1910 | Strauss, David Tardon, Dimitri John Ledkov, Dmitry Torokhov, dj-kaktus, |
| 1911 | Dongsu Park, Elias Probst, Emil Soleyman, Erik Kooistra, Ervin Peters, |
| 1912 | Evgeni Golov, Evgeny Vereshchagin, Fabrice Fontaine, Faheel Ahmad, |
| 1913 | Faizal Luthfi, Felix Yan, Filipe Brandenburger, Franck Bui, Frank |
| 1914 | Schaefer, Frantisek Sumsal, Gautier Husson, Gianluca Boiano, Giuseppe |
| 1915 | Scrivano, glitsj16, Hans de Goede, Harald Hoyer, Harry Mallon, Harshit |
| 1916 | Jain, Helmut Grohne, Henry Tung, Hui Yiqun, imayoda, Insun Pyo, Iwan |
| 1917 | Timmer, Jan Janssen, Jan Pokorný, Jan Synacek, Jason A. Donenfeld, |
| 1918 | javitoom, Jérémy Nouhaud, Jeremy Su, Jiuyang Liu, João Paulo Rechi |
| 1919 | Vita, Joe Hershberger, Joe Rayhawk, Joerg Behrmann, Joerg Steffens, |
| 1920 | Jonas Dorel, Jon Ringle, Josh Soref, Julian Andres Klode, Jun Bo Bi, |
| 1921 | Jürg Billeter, Keith Busch, Khem Raj, Kirill Marinushkin, Larry |
| 1922 | Bernstone, Lennart Poettering, Lion Yang, Li Song, Lorenz |
| 1923 | Hübschle-Schneider, Lubomir Rintel, Lucas Werkmeister, Ludwin Janvier, |
| 1924 | Lukáš Nykrýn, Luke Shumaker, mal, Marc-Antoine Perennou, Marcin |
| 1925 | Skarbek, Marco Trevisan (Treviño), Marian Cepok, Mario Hros, Marko |
| 1926 | Myllynen, Markus Grimm, Martin Pitt, Martin Sobotka, Martin Wilck, |
| 1927 | Mathieu Trudel-Lapierre, Matthew Leeds, Michael Biebl, Michael Olbrich, |
| 1928 | Michael 'pbone' Pobega, Michael Scherer, Michal Koutný, Michal |
| 1929 | Sekletar, Michal Soltys, Mike Gilbert, Mike Palmer, Muhammet Kara, Neal |
| 1930 | Gompa, Neil Brown, Network Silence, Niklas Tibbling, Nikolas Nyby, |
| 1931 | Nogisaka Sadata, Oliver Smith, Patrik Flykt, Pavel Hrdina, Paweł |
| 1932 | Szewczyk, Peter Hutterer, Piotr Drąg, Ray Strode, Reinhold Mueller, |
| 1933 | Renaud Métrich, Roman Gushchin, Ronny Chevalier, Rubén Suárez Alvarez, |
| 1934 | Ruixin Bao, RussianNeuroMancer, Ryutaroh Matsumoto, Saleem Rashid, Sam |
| 1935 | Morris, Samuel Morris, Sandy Carter, scootergrisen, Sébastien Bacher, |
| 1936 | Sergey Ptashnick, Shawn Landden, Shengyao Xue, Shih-Yuan Lee |
| 1937 | (FourDollars), Silvio Knizek, Sjoerd Simons, Stasiek Michalski, Stephen |
| 1938 | Gallagher, Steven Allen, Steve Ramage, Susant Sahani, Sven Joachim, |
| 1939 | Sylvain Plantefève, Tanu Kaskinen, Tejun Heo, Thiago Macieira, Thomas |
| 1940 | Blume, Thomas Haller, Thomas H. P. Andersen, Tim Ruffing, TJ, Tobias |
| 1941 | Jungel, Todd Walton, Tommi Rantala, Tomsod M, Tony Novak, Tore |
| 1942 | Anderson, Trevonn, Victor Laskurain, Victor Tapia, Violet Halo, Vojtech |
| 1943 | Trefny, welaq, William A. Kennington III, William Douglas, Wyatt Ward, |
| 1944 | Xiang Fan, Xi Ruoyao, Xuanwo, Yann E. Morin, YmrDtnJu, Yu Watanabe, |
| 1945 | Zbigniew Jędrzejewski-Szmek, Zhang Xianwei, Zsolt Dollenstein |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1946 | |
Zbigniew Jędrzejewski-Szmek | 1742aae | 2018-12-21 19:52:16 +0100 | [diff] [blame] | 1947 | — Warsaw, 2018-12-21 |
Lennart Poettering | 6b1ab75 | 2018-12-12 20:33:02 +0100 | [diff] [blame] | 1948 | |
Lennart Poettering | e8498f8 | 2018-06-22 12:57:54 +0200 | [diff] [blame] | 1949 | CHANGES WITH 239: |
Stuart Hayes | 019cb3a | 2018-02-14 15:44:47 -0500 | [diff] [blame] | 1950 | |
| 1951 | * NETWORK INTERFACE DEVICE NAMING CHANGES: systemd-udevd's "net_id" |
Zbigniew Jędrzejewski-Szmek | d69f528 | 2018-06-14 09:18:02 +0200 | [diff] [blame] | 1952 | builtin will name network interfaces differently than in previous |
| 1953 | versions for virtual network interfaces created with SR-IOV and NPAR |
| 1954 | and for devices where the PCI network controller device does not have |
| 1955 | a slot number associated. |
| 1956 | |
| 1957 | SR-IOV virtual devices are now named based on the name of the parent |
| 1958 | interface, with a suffix of "v<N>", where <N> is the virtual device |
| 1959 | number. Previously those virtual devices were named as if completely |
| 1960 | independent. |
| 1961 | |
| 1962 | The ninth and later NPAR virtual devices will be named following the |
| 1963 | scheme used for the first eight NPAR partitions. Previously those |
| 1964 | devices were not renamed and the kernel default (eth<n>) was used. |
| 1965 | |
| 1966 | "net_id" will also generate names for PCI devices where the PCI |
| 1967 | network controller device does not have an associated slot number |
| 1968 | itself, but one of its parents does. Previously those devices were |
| 1969 | not renamed and the kernel default (eth<n>) was used. |
Stuart Hayes | 019cb3a | 2018-02-14 15:44:47 -0500 | [diff] [blame] | 1970 | |
Yu Watanabe | 6e2d744 | 2018-05-24 13:18:28 +0900 | [diff] [blame] | 1971 | * AF_INET and AF_INET6 are dropped from RestrictAddressFamilies= in |
| 1972 | systemd-logind.service. Since v235, IPAddressDeny=any has been set to |
Lennart Poettering | fe903cf | 2018-06-12 15:18:50 +0200 | [diff] [blame] | 1973 | the unit. So, it is expected that the default behavior of |
| 1974 | systemd-logind is not changed. However, if distribution packagers or |
| 1975 | administrators disabled or modified IPAddressDeny= setting by a |
| 1976 | drop-in config file, then it may be necessary to update the file to |
| 1977 | re-enable AF_INET and AF_INET6 to support network user name services, |
| 1978 | e.g. NIS. |
Yu Watanabe | 6e2d744 | 2018-05-24 13:18:28 +0900 | [diff] [blame] | 1979 | |
Lennart Poettering | fe903cf | 2018-06-12 15:18:50 +0200 | [diff] [blame] | 1980 | * When the RestrictNamespaces= unit property is specified multiple |
| 1981 | times, then the specified types are merged now. Previously, only the |
| 1982 | last assignment was used. So, if distribution packagers or |
| 1983 | administrators modified the setting by a drop-in config file, then it |
| 1984 | may be necessary to update the file. |
Yu Watanabe | e0eee47 | 2018-05-29 15:11:35 +0900 | [diff] [blame] | 1985 | |
Lennart Poettering | 1fc83d0 | 2018-06-01 19:13:38 +0200 | [diff] [blame] | 1986 | * When OnFailure= is used in combination with Restart= on a service |
| 1987 | unit, then the specified units will no longer be triggered on |
| 1988 | failures that result in restarting. Previously, the specified units |
| 1989 | would be activated each time the unit failed, even when the unit was |
| 1990 | going to be restarted automatically. This behaviour contradicted the |
| 1991 | documentation. With this release the code is adjusted to match the |
| 1992 | documentation. |
| 1993 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 1994 | * systemd-tmpfiles will now print a notice whenever it encounters |
| 1995 | tmpfiles.d/ lines referencing the /var/run/ directory. It will |
| 1996 | recommend reworking them to use the /run/ directory instead (for |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 1997 | which /var/run/ is simply a symlinked compatibility alias). This way |
| 1998 | systemd-tmpfiles can properly detect line conflicts and merge lines |
| 1999 | referencing the same file by two paths, without having to access |
| 2000 | them. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2001 | |
Zbigniew Jędrzejewski-Szmek | ce55bd5 | 2018-06-05 14:25:43 +0200 | [diff] [blame] | 2002 | * systemctl disable/unmask/preset/preset-all cannot be used with |
| 2003 | --runtime. Previously this was allowed, but resulted in unintuitive |
Lennart Poettering | fe903cf | 2018-06-12 15:18:50 +0200 | [diff] [blame] | 2004 | behaviour that wasn't useful. systemctl disable/unmask will now undo |
| 2005 | both runtime and persistent enablement/masking, i.e. it will remove |
| 2006 | any relevant symlinks both in /run and /etc. |
Zbigniew Jędrzejewski-Szmek | ce55bd5 | 2018-06-05 14:25:43 +0200 | [diff] [blame] | 2007 | |
Lennart Poettering | e01d9e2 | 2018-04-19 16:51:04 +0200 | [diff] [blame] | 2008 | * Note that all long-running system services shipped with systemd will |
| 2009 | now default to a system call whitelist (rather than a blacklist, as |
| 2010 | before). In particular, systemd-udevd will now enforce one too. For |
| 2011 | most cases this should be safe, however downstream distributions |
| 2012 | which disabled sandboxing of systemd-udevd (specifically the |
| 2013 | MountFlags= setting), might want to disable this security feature |
| 2014 | too, as the default whitelisting will prohibit all mount, swap, |
| 2015 | reboot and clock changing operations from udev rules. |
| 2016 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2017 | * sd-boot acquired new loader configuration settings to optionally turn |
| 2018 | off Windows and MacOS boot partition discovery as well as |
| 2019 | reboot-into-firmware menu items. It is also able to pick a better |
| 2020 | screen resolution for HiDPI systems, and now provides loader |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2021 | configuration settings to change the resolution explicitly. |
| 2022 | |
Iwan Timmer | c9299be | 2018-06-13 20:26:24 +0200 | [diff] [blame] | 2023 | * systemd-resolved now supports DNS-over-TLS. It's still |
| 2024 | turned off by default, use DNSOverTLS=opportunistic to turn it on in |
Lennart Poettering | c086ce8 | 2018-06-12 20:50:15 +0200 | [diff] [blame] | 2025 | resolved.conf. We intend to make this the default as soon as couple |
| 2026 | of additional techniques for optimizing the initial latency caused by |
| 2027 | establishing a TLS/TCP connection are implemented. |
| 2028 | |
Yu Watanabe | 73c718a | 2018-06-13 14:52:57 +0900 | [diff] [blame] | 2029 | * systemd-resolved.service and systemd-networkd.service now set |
| 2030 | DynamicUser=yes. The users systemd-resolve and systemd-network are |
Lennart Poettering | abc291a | 2018-07-04 15:27:29 +0200 | [diff] [blame] | 2031 | not created by systemd-sysusers anymore. |
| 2032 | |
| 2033 | NOTE: This has a chance of breaking nss-ldap and similar NSS modules |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 2034 | that embed a network facing module into any process using getpwuid() |
Lennart Poettering | abc291a | 2018-07-04 15:27:29 +0200 | [diff] [blame] | 2035 | or related call: the dynamic allocation of the user ID for |
| 2036 | systemd-resolved.service means the service manager has to check NSS |
| 2037 | if the user name is already taken when forking off the service. Since |
| 2038 | the user in the common case won't be defined in /etc/passwd the |
| 2039 | lookup is likely to trigger nss-ldap which in turn might use NSS to |
| 2040 | ask systemd-resolved for hostname lookups. This will hence result in |
| 2041 | a deadlock: a user name lookup in order to start |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 2042 | systemd-resolved.service will result in a hostname lookup for which |
Lennart Poettering | abc291a | 2018-07-04 15:27:29 +0200 | [diff] [blame] | 2043 | systemd-resolved.service needs to be started already. There are |
| 2044 | multiple ways to work around this problem: pre-allocate the |
| 2045 | "systemd-resolve" user on such systems, so that nss-ldap won't be |
| 2046 | triggered; or use a different NSS package that doesn't do networking |
| 2047 | in-process but provides a local asynchronous name cache; or configure |
| 2048 | the NSS package to avoid lookups for UIDs in the range `pkg-config |
| 2049 | systemd --variable=dynamicuidmin` … `pkg-config systemd |
| 2050 | --variable=dynamicuidmax`, so that it does not consider itself |
| 2051 | authoritative for the same UID range systemd allocates dynamic users |
| 2052 | from. |
Yu Watanabe | 73c718a | 2018-06-13 14:52:57 +0900 | [diff] [blame] | 2053 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2054 | * The systemd-resolve tool has been renamed to resolvectl (it also |
| 2055 | remains available under the old name, for compatibility), and its |
| 2056 | interface is now verb-based, similar in style to the other <xyz>ctl |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2057 | tools, such as systemctl or loginctl. |
| 2058 | |
Lennart Poettering | 75da262 | 2018-06-12 15:19:54 +0200 | [diff] [blame] | 2059 | * The resolvectl/systemd-resolve tool also provides 'resolvconf' |
| 2060 | compatibility. It may be symlinked under the 'resolvconf' name, in |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2061 | which case it will take arguments and input compatible with the |
| 2062 | Debian and FreeBSD resolvconf tool. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2063 | |
| 2064 | * Support for suspend-then-hibernate has been added, i.e. a sleep mode |
Zbigniew Jędrzejewski-Szmek | 3f9a0a5 | 2018-12-14 08:26:46 +0100 | [diff] [blame] | 2065 | where the system initially suspends, and after a timeout resumes and |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2066 | hibernates again. |
| 2067 | |
| 2068 | * networkd's ClientIdentifier= now accepts a new option "duid-only". If |
| 2069 | set the client will only send a DUID as client identifier. |
| 2070 | |
| 2071 | * The nss-systemd glibc NSS module will now enumerate dynamic users and |
| 2072 | groups in effect. Previously, it could resolve UIDs/GIDs to user |
| 2073 | names/groups and vice versa, but did not support enumeration. |
| 2074 | |
| 2075 | * journald's Compress= configuration setting now optionally accepts a |
| 2076 | byte threshold value. All journal objects larger than this threshold |
| 2077 | will be compressed, smaller ones will not. Previously this threshold |
| 2078 | was not configurable and set to 512. |
| 2079 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2080 | * A new system.conf setting NoNewPrivileges= is now available which may |
| 2081 | be used to turn off acquisition of new privileges system-wide |
| 2082 | (i.e. set Linux' PR_SET_NO_NEW_PRIVS for PID 1 itself, and thus also |
| 2083 | for all its children). Note that turning this option on means setuid |
| 2084 | binaries and file system capabilities lose their special powers. |
| 2085 | While turning on this option is a big step towards a more secure |
| 2086 | system, doing so is likely to break numerous pre-existing UNIX tools, |
| 2087 | in particular su and sudo. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2088 | |
| 2089 | * A new service systemd-time-sync-wait.service has been added. If |
| 2090 | enabled it will delay the time-sync.target unit at boot until time |
Michael Biebl | bc99dac | 2018-06-12 15:41:38 +0200 | [diff] [blame] | 2091 | synchronization has been received from the network. This |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2092 | functionality is useful on systems lacking a local RTC or where it is |
| 2093 | acceptable that the boot process shall be delayed by external network |
| 2094 | services. |
| 2095 | |
| 2096 | * When hibernating, systemd will now inform the kernel of the image |
| 2097 | write offset, on kernels new enough to support this. This means swap |
| 2098 | files should work for hibernation now. |
| 2099 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2100 | * When loading unit files, systemd will now look for drop-in unit files |
| 2101 | extensions in additional places. Previously, for a unit file name |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2102 | "foo-bar-baz.service" it would look for dropin files in |
| 2103 | "foo-bar-baz.service.d/*.conf". Now, it will also look in |
| 2104 | "foo-bar-.service.d/*.conf" and "foo-.service.d/", i.e. at the |
| 2105 | service name truncated after all inner dashes. This scheme allows |
| 2106 | writing drop-ins easily that apply to a whole set of unit files at |
| 2107 | once. It's particularly useful for mount and slice units (as their |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2108 | naming is prefix based), but is also useful for service and other |
| 2109 | units, for packages that install multiple unit files at once, |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2110 | following a strict naming regime of beginning the unit file name with |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2111 | the package's name. Two new specifiers are now supported in unit |
| 2112 | files to match this: %j and %J are replaced by the part of the unit |
| 2113 | name following the last dash. |
| 2114 | |
| 2115 | * Unit files and other configuration files that support specifier |
Zbigniew Jędrzejewski-Szmek | 8809935 | 2018-06-21 00:08:36 +0200 | [diff] [blame] | 2116 | expansion now understand another three new specifiers: %T and %V will |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2117 | resolve to /tmp and /var/tmp respectively, or whatever temporary |
Zbigniew Jędrzejewski-Szmek | 8809935 | 2018-06-21 00:08:36 +0200 | [diff] [blame] | 2118 | directory has been set for the calling user. %E will expand to either |
| 2119 | /etc (for system units) or $XDG_CONFIG_HOME (for user units). |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2120 | |
| 2121 | * The ExecStart= lines of unit files are no longer required to |
| 2122 | reference absolute paths. If non-absolute paths are specified the |
| 2123 | specified binary name is searched within the service manager's |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2124 | built-in $PATH, which may be queried with 'systemd-path |
| 2125 | search-binaries-default'. It's generally recommended to continue to |
| 2126 | use absolute paths for all binaries specified in unit files. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2127 | |
Zbigniew Jędrzejewski-Szmek | c7f93e2 | 2018-06-12 14:06:47 +0200 | [diff] [blame] | 2128 | * Units gained a new load state "bad-setting", which is used when a |
| 2129 | unit file was loaded, but contained fatal errors which prevent it |
Lennart Poettering | ba1dc1a | 2018-06-12 15:20:05 +0200 | [diff] [blame] | 2130 | from being started (for example, a service unit has been defined |
| 2131 | lacking both ExecStart= and ExecStop= lines). |
Zbigniew Jędrzejewski-Szmek | c7f93e2 | 2018-06-12 14:06:47 +0200 | [diff] [blame] | 2132 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2133 | * coredumpctl's "gdb" verb has been renamed to "debug", in order to |
| 2134 | support alternative debuggers, for example lldb. The old name |
| 2135 | continues to be available however, for compatibility reasons. Use the |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2136 | new --debugger= switch or the $SYSTEMD_DEBUGGER environment variable |
| 2137 | to pick an alternative debugger instead of the default gdb. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2138 | |
| 2139 | * systemctl and the other tools will now output escape sequences that |
| 2140 | generate proper clickable hyperlinks in various terminal emulators |
| 2141 | where useful (for example, in the "systemctl status" output you can |
| 2142 | now click on the unit file name to quickly open it in the |
| 2143 | editor/viewer of your choice). Note that not all terminal emulators |
| 2144 | support this functionality yet, but many do. Unfortunately, the |
| 2145 | "less" pager doesn't support this yet, hence this functionality is |
| 2146 | currently automatically turned off when a pager is started (which |
| 2147 | happens quite often due to auto-paging). We hope to remove this |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2148 | limitation as soon as "less" learns these escape sequences. This new |
| 2149 | behaviour may also be turned off explicitly with the $SYSTEMD_URLIFY |
| 2150 | environment variable. For details on these escape sequences see: |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2151 | https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda |
| 2152 | |
| 2153 | * networkd's .network files now support a new IPv6MTUBytes= option for |
| 2154 | setting the MTU used by IPv6 explicitly as well as a new MTUBytes= |
| 2155 | option in the [Route] section to configure the MTU to use for |
| 2156 | specific routes. It also gained support for configuration of the DHCP |
| 2157 | "UserClass" option through the new UserClass= setting. It gained |
| 2158 | three new options in the new [CAN] section for configuring CAN |
| 2159 | networks. The MULTICAST and ALLMULTI interface flags may now be |
| 2160 | controlled explicitly with the new Multicast= and AllMulticast= |
| 2161 | settings. |
| 2162 | |
| 2163 | * networkd will now automatically make use of the kernel's route |
| 2164 | expiration feature, if it is available. |
| 2165 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2166 | * udevd's .link files now support setting the number of receive and |
| 2167 | transmit channels, using the RxChannels=, TxChannels=, |
| 2168 | OtherChannels=, CombinedChannels= settings. |
| 2169 | |
| 2170 | * Support for UDPSegmentationOffload= has been removed, given its |
| 2171 | limited support in hardware, and waning software support. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2172 | |
| 2173 | * networkd's .netdev files now support creating "netdevsim" interfaces. |
| 2174 | |
| 2175 | * PID 1 learnt a new bus call GetUnitByControlGroup() which may be used |
| 2176 | to query the unit belonging to a specific kernel control group. |
| 2177 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2178 | * systemd-analyze gained a new verb "cat-config", which may be used to |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2179 | dump the contents of any configuration file, with all its matching |
| 2180 | drop-in files added in, and honouring the usual search and masking |
| 2181 | logic applied to systemd configuration files. For example use |
| 2182 | "systemd-analyze cat-config systemd/system.conf" to get the complete |
| 2183 | system configuration file of systemd how it would be loaded by PID 1 |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2184 | itself. Similar to this, various tools such as systemd-tmpfiles or |
| 2185 | systemd-sysusers, gained a new option "--cat-config", which does the |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2186 | corresponding operation for their own configuration settings. For |
| 2187 | example, "systemd-tmpfiles --cat-config" will now output the full |
| 2188 | list of tmpfiles.d/ lines in place. |
| 2189 | |
Yu Watanabe | 704ae53 | 2018-06-21 10:51:35 +0900 | [diff] [blame] | 2190 | * timedatectl gained three new verbs: "show" shows bus properties of |
| 2191 | systemd-timedated, "timesync-status" shows the current NTP |
| 2192 | synchronization state of systemd-timesyncd, and "show-timesync" |
| 2193 | shows bus properties of systemd-timesyncd. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2194 | |
| 2195 | * systemd-timesyncd gained a bus interface on which it exposes details |
| 2196 | about its state. |
| 2197 | |
Yu Watanabe | 73c718a | 2018-06-13 14:52:57 +0900 | [diff] [blame] | 2198 | * A new environment variable $SYSTEMD_TIMEDATED_NTP_SERVICES is now |
| 2199 | understood by systemd-timedated. It takes a colon-separated list of |
| 2200 | unit names of NTP client services. The list is used by |
| 2201 | "timedatectl set-ntp". |
| 2202 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2203 | * systemd-nspawn gained a new --rlimit= switch for setting initial |
| 2204 | resource limits for the container payload. There's a new switch |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2205 | --hostname= to explicitly override the container's hostname. A new |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2206 | --no-new-privileges= switch may be used to control the |
| 2207 | PR_SET_NO_NEW_PRIVS flag for the container payload. A new |
| 2208 | --oom-score-adjust= switch controls the OOM scoring adjustment value |
| 2209 | for the payload. The new --cpu-affinity= switch controls the CPU |
| 2210 | affinity of the container payload. The new --resolv-conf= switch |
| 2211 | allows more detailed control of /etc/resolv.conf handling of the |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2212 | container. Similarly, the new --timezone= switch allows more detailed |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2213 | control of /etc/localtime handling of the container. |
| 2214 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2215 | * systemd-detect-virt gained a new --list switch, which will print a |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2216 | list of all currently known VM and container environments. |
| 2217 | |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2218 | * Support for "Portable Services" has been added, see |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2219 | doc/PORTABLE_SERVICES.md for details. Currently, the support is still |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2220 | experimental, but this is expected to change soon. Reflecting this |
| 2221 | experimental state, the "portablectl" binary is not installed into |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2222 | /usr/bin yet. The binary has to be called with the full path |
| 2223 | /usr/lib/systemd/portablectl instead. |
| 2224 | |
| 2225 | * journalctl's and systemctl's -o switch now knows a new log output |
| 2226 | mode "with-unit". The output it generates is very similar to the |
| 2227 | regular "short" mode, but displays the unit name instead of the |
| 2228 | syslog tag for each log line. Also, the date is shown with timezone |
| 2229 | information. This mode is probably more useful than the classic |
| 2230 | "short" output mode for most purposes, except where pixel-perfect |
| 2231 | compatibility with classic /var/log/messages formatting is required. |
| 2232 | |
| 2233 | * A new --dump-bus-properties switch has been added to the systemd |
| 2234 | binary, which may be used to dump all supported D-Bus properties. |
Zbigniew Jędrzejewski-Szmek | c7f93e2 | 2018-06-12 14:06:47 +0200 | [diff] [blame] | 2235 | (Options which are still supported, but are deprecated, are *not* |
| 2236 | shown.) |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2237 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2238 | * sd-bus gained a set of new calls: |
| 2239 | sd_bus_slot_set_floating()/sd_bus_slot_get_floating() may be used to |
| 2240 | enable/disable the "floating" state of a bus slot object, |
| 2241 | i.e. whether the slot object pins the bus it is allocated for into |
| 2242 | memory or if the bus slot object gets disconnected when the bus goes |
| 2243 | away. sd_bus_open_with_description(), |
| 2244 | sd_bus_open_user_with_description(), |
| 2245 | sd_bus_open_system_with_description() may be used to allocate bus |
| 2246 | objects and set their description string already during allocation. |
| 2247 | |
| 2248 | * sd-event gained support for watching inotify events from the event |
| 2249 | loop, in an efficient way, sharing inotify handles between multiple |
| 2250 | users. For this a new function sd_event_add_inotify() has been added. |
| 2251 | |
| 2252 | * sd-event and sd-bus gained support for calling special user-supplied |
| 2253 | destructor functions for userdata pointers associated with |
Zbigniew Jędrzejewski-Szmek | c7f93e2 | 2018-06-12 14:06:47 +0200 | [diff] [blame] | 2254 | sd_event_source, sd_bus_slot, and sd_bus_track objects. For this new |
| 2255 | functions sd_bus_slot_set_destroy_callback, |
| 2256 | sd_bus_slot_get_destroy_callback, sd_bus_track_set_destroy_callback, |
| 2257 | sd_bus_track_get_destroy_callback, |
| 2258 | sd_event_source_set_destroy_callback, |
| 2259 | sd_event_source_get_destroy_callback have been added. |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2260 | |
| 2261 | * The "net.ipv4.tcp_ecn" sysctl will now be turned on by default. |
| 2262 | |
| 2263 | * PID 1 will now automatically reschedule .timer units whenever the |
Zbigniew Jędrzejewski-Szmek | 5cadf58 | 2018-06-12 14:06:13 +0200 | [diff] [blame] | 2264 | local timezone changes. (They previously got rescheduled |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2265 | automatically when the system clock changed.) |
| 2266 | |
| 2267 | * New documentation has been added to document cgroups delegation, |
| 2268 | portable services and the various code quality tools we have set up: |
| 2269 | |
killermoehre | a8a2737 | 2018-09-13 13:53:03 +0200 | [diff] [blame] | 2270 | https://github.com/systemd/systemd/blob/master/docs/CGROUP_DELEGATION.md |
| 2271 | https://github.com/systemd/systemd/blob/master/docs/PORTABLE_SERVICES.md |
| 2272 | https://github.com/systemd/systemd/blob/master/docs/CODE_QUALITY.md |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2273 | |
Lennart Poettering | d690610 | 2018-06-20 11:54:25 +0200 | [diff] [blame] | 2274 | * The Boot Loader Specification has been added to the source tree. |
| 2275 | |
killermoehre | a8a2737 | 2018-09-13 13:53:03 +0200 | [diff] [blame] | 2276 | https://github.com/systemd/systemd/blob/master/docs/BOOT_LOADER_SPECIFICATION.md |
Lennart Poettering | d690610 | 2018-06-20 11:54:25 +0200 | [diff] [blame] | 2277 | |
| 2278 | While moving it into our source tree we have updated it and further |
| 2279 | changes are now accepted through the usual github PR workflow. |
| 2280 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2281 | * pam_systemd will now look for PAM userdata fields systemd.memory_max, |
| 2282 | systemd.tasks_max, systemd.cpu_weight, systemd.io_weight set by |
| 2283 | earlier PAM modules. The data in these fields is used to initialize |
| 2284 | the session scope's resource properties. Thus external PAM modules |
| 2285 | may now configure per-session limits, for example sourced from |
| 2286 | external user databases. |
| 2287 | |
| 2288 | * socket units with Accept=yes will now maintain a "refused" counter in |
| 2289 | addition to the existing "accepted" counter, counting connections |
| 2290 | refused due to the enforced limits. |
| 2291 | |
| 2292 | * The "systemd-path search-binaries-default" command may now be use to |
| 2293 | query the default, built-in $PATH PID 1 will pass to the services it |
| 2294 | manages. |
| 2295 | |
Lennart Poettering | c49a7cb | 2018-06-12 16:26:36 +0200 | [diff] [blame] | 2296 | * A new unit file setting PrivateMounts= has been added. It's a boolean |
| 2297 | option. If enabled the unit's processes are invoked in their own file |
| 2298 | system namespace. Note that this behaviour is also implied if any |
| 2299 | other file system namespacing options (such as PrivateTmp=, |
| 2300 | PrivateDevices=, ProtectSystem=, …) are used. This option is hence |
| 2301 | primarily useful for services that do not use any of the other file |
| 2302 | system namespacing options. One such service is systemd-udevd.service |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 2303 | where this is now used by default. |
Lennart Poettering | c49a7cb | 2018-06-12 16:26:36 +0200 | [diff] [blame] | 2304 | |
Zbigniew Jędrzejewski-Szmek | 57ab451 | 2018-06-20 22:35:36 +0200 | [diff] [blame] | 2305 | * ConditionSecurity= gained a new value "uefi-secureboot" that is true |
| 2306 | when the system is booted in UEFI "secure mode". |
| 2307 | |
Lennart Poettering | c7668c1 | 2018-06-20 12:46:18 +0200 | [diff] [blame] | 2308 | * A new unit "system-update-pre.target" is added, which defines an |
| 2309 | optional synchronization point for offline system updates, as |
| 2310 | implemented by the pre-existing "system-update.target" unit. It |
| 2311 | allows ordering services before the service that executes the actual |
| 2312 | update process in a generic way. |
| 2313 | |
Zbigniew Jędrzejewski-Szmek | f26ad32 | 2019-01-18 13:45:10 +0100 | [diff] [blame] | 2314 | * Systemd now emits warnings whenever .include syntax is used. |
| 2315 | |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2316 | Contributions from: Adam Duskett, Alan Jenkins, Alessandro Casale, |
Lennart Poettering | ec53d48 | 2018-06-12 15:18:25 +0200 | [diff] [blame] | 2317 | Alexander Kurtz, Alex Gartrell, Anssi Hannula, Arnaud Rebillout, Brian |
Lennart Poettering | bb6f071 | 2018-06-20 11:06:17 +0200 | [diff] [blame] | 2318 | J. Murrell, Bruno Vernay, Chris Lamb, Chris Lesiak, Christian Brauner, |
| 2319 | Christian Hesse, Christian Rebischke, Colin Guthrie, Daniel Dao, Daniel |
| 2320 | Lin, Danylo Korostil, Davide Cavalca, David Tardon, Dimitri John |
| 2321 | Ledkov, Dmitriy Geels, Douglas Christman, Elia Geretto, emelenas, Emil |
| 2322 | Velikov, Evgeny Vereshchagin, Felipe Sateler, Feng Sun, Filipe |
| 2323 | Brandenburger, Franck Bui, futpib, Giuseppe Scrivano, Guillem Jover, |
| 2324 | guixxx, Hannes Reinecke, Hans de Goede, Harald Hoyer, Henrique Dante de |
| 2325 | Almeida, Hiram van Paassen, Ian Miell, Igor Gnatenko, Ivan Shapovalov, |
| 2326 | Iwan Timmer, James Cowgill, Jan Janssen, Jan Synacek, Jared Kazimir, |
| 2327 | Jérémy Rosen, João Paulo Rechi Vita, Joost Heitbrink, Jui-Chi Ricky |
| 2328 | Liang, Jürg Billeter, Kai-Heng Feng, Karol Augustin, Kay Sievers, |
| 2329 | Krzysztof Nowicki, Lauri Tirkkonen, Lennart Poettering, Leonard König, |
| 2330 | Long Li, Luca Boccassi, Lucas Werkmeister, Marcel Hoppe, Marc |
| 2331 | Kleine-Budde, Mario Limonciello, Martin Jansa, Martin Wilck, Mathieu |
| 2332 | Malaterre, Matteo F. Vescovi, Matthew McGinn, Matthias-Christian Ott, |
| 2333 | Michael Biebl, Michael Olbrich, Michael Prokop, Michal Koutný, Michal |
| 2334 | Sekletar, Mike Gilbert, Mikhail Kasimov, Milan Broz, Milan Pässler, |
| 2335 | Mladen Pejaković, Muhammet Kara, Nicolas Boichat, Omer Katz, Paride |
| 2336 | Legovini, Paul Menzel, Paul Milliken, Pavel Hrdina, Peter A. Bigot, |
| 2337 | Peter D'Hoye, Peter Hutterer, Peter Jones, Philip Sequeira, Philip |
Lennart Poettering | 61d0025 | 2018-06-14 15:22:45 +0200 | [diff] [blame] | 2338 | Withnall, Piotr Drąg, Radostin Stoyanov, Ricardo Salveti de Araujo, |
Lennart Poettering | bb6f071 | 2018-06-20 11:06:17 +0200 | [diff] [blame] | 2339 | Ronny Chevalier, Rosen Penev, Rubén Suárez Alvarez, Ryan Gonzalez, |
| 2340 | Salvo Tomaselli, Sebastian Reichel, Sergey Ptashnick, Sergio Lindo |
| 2341 | Mansilla, Stefan Schweter, Stephen Hemminger, Stuart Hayes, Susant |
| 2342 | Sahani, Sylvain Plantefève, Thomas H. P. Andersen, Tobias Jungel, |
| 2343 | Tomasz Torcz, Vito Caputo, Will Dietz, Will Thompson, Wim van Mourik, |
| 2344 | Yu Watanabe, Zbigniew Jędrzejewski-Szmek |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2345 | |
Lennart Poettering | e8498f8 | 2018-06-22 12:57:54 +0200 | [diff] [blame] | 2346 | — Berlin, 2018-06-22 |
Lennart Poettering | 41a4c3e | 2018-06-12 12:02:51 +0200 | [diff] [blame] | 2347 | |
Zbigniew Jędrzejewski-Szmek | c657bff | 2018-03-05 17:13:38 +0100 | [diff] [blame] | 2348 | CHANGES WITH 238: |
Lennart Poettering | e0c46a7 | 2018-02-09 19:59:53 +0100 | [diff] [blame] | 2349 | |
| 2350 | * The MemoryAccounting= unit property now defaults to on. After |
| 2351 | discussions with the upstream control group maintainers we learnt |
| 2352 | that the negative impact of cgroup memory accounting on current |
| 2353 | kernels is finally relatively minimal, so that it should be safe to |
Zbigniew Jędrzejewski-Szmek | 444d586 | 2018-02-15 11:43:08 +0100 | [diff] [blame] | 2354 | enable this by default without affecting system performance. Besides |
| 2355 | memory accounting only task accounting is turned on by default, all |
| 2356 | other forms of resource accounting (CPU, IO, IP) remain off for now, |
| 2357 | because it's not clear yet that their impact is small enough to move |
| 2358 | from opt-in to opt-out. We recommend downstreams to leave memory |
Tomasz Torcz | 07a35e8 | 2018-03-06 09:35:47 +0100 | [diff] [blame] | 2359 | accounting on by default if kernel 4.14 or higher is primarily |
Zbigniew Jędrzejewski-Szmek | 444d586 | 2018-02-15 11:43:08 +0100 | [diff] [blame] | 2360 | used. On very resource constrained systems or when support for old |
| 2361 | kernels is a necessity, -Dmemory-accounting-default=false can be used |
| 2362 | to revert this change. |
Lennart Poettering | e0c46a7 | 2018-02-09 19:59:53 +0100 | [diff] [blame] | 2363 | |
Zbigniew Jędrzejewski-Szmek | 313c32c | 2018-03-05 10:25:17 +0100 | [diff] [blame] | 2364 | * rpm scriptlets to update the udev hwdb and rules (%udev_hwdb_update, |
| 2365 | %udev_rules_update) and the journal catalog (%journal_catalog_update) |
| 2366 | from the upgrade scriptlets of individual packages now do nothing. |
| 2367 | Transfiletriggers have been added which will perform those updates |
| 2368 | once at the end of the transaction. |
| 2369 | |
| 2370 | Similar transfiletriggers have been added to execute any sysctl.d |
| 2371 | and binfmt.d rules. Thus, it should be unnecessary to provide any |
| 2372 | scriptlets to execute this configuration from package installation |
| 2373 | scripts. |
| 2374 | |
| 2375 | * systemd-sysusers gained a mode where the configuration to execute is |
| 2376 | specified on the command line, but this configuration is not executed |
| 2377 | directly, but instead it is merged with the configuration on disk, |
| 2378 | and the result is executed. This is useful for package installation |
| 2379 | scripts which want to create the user before installing any files on |
| 2380 | disk (in case some of those files are owned by that user), while |
| 2381 | still allowing local admin overrides. |
| 2382 | |
Tomasz Torcz | 07a35e8 | 2018-03-06 09:35:47 +0100 | [diff] [blame] | 2383 | This functionality is exposed to rpm scriptlets through a new |
Zbigniew Jędrzejewski-Szmek | 313c32c | 2018-03-05 10:25:17 +0100 | [diff] [blame] | 2384 | %sysusers_create_package macro. Old %sysusers_create and |
| 2385 | %sysusers_create_inline macros are deprecated. |
| 2386 | |
| 2387 | A transfiletrigger for sysusers.d configuration is now installed, |
Tomasz Torcz | 07a35e8 | 2018-03-06 09:35:47 +0100 | [diff] [blame] | 2388 | which means that it should be unnecessary to call systemd-sysusers from |
Zbigniew Jędrzejewski-Szmek | 313c32c | 2018-03-05 10:25:17 +0100 | [diff] [blame] | 2389 | package installation scripts, unless the package installs any files |
| 2390 | owned by those newly-created users, in which case |
| 2391 | %sysusers_create_package should be used. |
| 2392 | |
| 2393 | * Analogous change has been done for systemd-tmpfiles: it gained a mode |
| 2394 | where the command-line configuration is merged with the configuration |
| 2395 | on disk. This is exposed as the new %tmpfiles_create_package macro, |
| 2396 | and %tmpfiles_create is deprecated. A transfiletrigger is installed |
| 2397 | for tmpfiles.d, hence it should be unnecessary to call systemd-tmpfiles |
| 2398 | from package installation scripts. |
| 2399 | |
| 2400 | * sysusers.d configuration for a user may now also specify the group |
| 2401 | number, in addition to the user number ("u username 123:456"), or |
| 2402 | without the user number ("u username -:456"). |
| 2403 | |
| 2404 | * Configution items for systemd-sysusers can now be specified as |
| 2405 | positional arguments when the new --inline switch is used. |
| 2406 | |
| 2407 | * The login shell of users created through sysusers.d may now be |
| 2408 | specified (previously, it was always /bin/sh for root and |
| 2409 | /sbin/nologin for other users). |
| 2410 | |
| 2411 | * systemd-analyze gained a new --global switch to look at global user |
| 2412 | configuration. It also gained a unit-paths verb to list the unit load |
| 2413 | paths that are compiled into systemd (which can be used with |
| 2414 | --systemd, --user, or --global). |
| 2415 | |
| 2416 | * udevadm trigger gained a new --settle/-w option to wait for any |
| 2417 | triggered events to finish (but just those, and not any other events |
| 2418 | which are triggered meanwhile). |
| 2419 | |
| 2420 | * The action that systemd-logind takes when the lid is closed and the |
| 2421 | machine is connected to external power can now be configured using |
| 2422 | HandleLidSwitchExternalPower= in logind.conf. Previously, this action |
| 2423 | was determined by HandleLidSwitch=, and, for backwards compatibility, |
| 2424 | is still is, if HandleLidSwitchExternalPower= is not explicitly set. |
| 2425 | |
| 2426 | * journalctl will periodically call sd_journal_process() to make it |
| 2427 | resilient against inotify queue overruns when journal files are |
| 2428 | rotated very quickly. |
| 2429 | |
| 2430 | * Two new functions in libsystemd — sd_bus_get_n_queued_read and |
| 2431 | sd_bus_get_n_queued_write — may be used to check the number of |
| 2432 | pending bus messages. |
| 2433 | |
| 2434 | * systemd gained a new |
| 2435 | org.freedesktop.systemd1.Manager.AttachProcessesToUnit dbus call |
| 2436 | which can be used to migrate foreign processes to scope and service |
| 2437 | units. The primary user for this new API is systemd itself: the |
| 2438 | systemd --user instance uses this call of the systemd --system |
| 2439 | instance to migrate processes if it itself gets the request to |
| 2440 | migrate processes and the kernel refuses this due to access |
| 2441 | restrictions. Thanks to this "systemd-run --scope --user …" works |
Chris Down | 4e1dfa4 | 2019-01-02 20:15:15 +0000 | [diff] [blame] | 2442 | again in pure cgroup v2 environments when invoked from the user |
Zbigniew Jędrzejewski-Szmek | 313c32c | 2018-03-05 10:25:17 +0100 | [diff] [blame] | 2443 | session scope. |
| 2444 | |
| 2445 | * A new TemporaryFileSystem= setting can be used to mask out part of |
| 2446 | the real file system tree with tmpfs mounts. This may be combined |
| 2447 | with BindPaths= and BindReadOnlyPaths= to hide files or directories |
| 2448 | not relevant to the unit, while still allowing some paths lower in |
| 2449 | the tree to be accessed. |
| 2450 | |
| 2451 | ProtectHome=tmpfs may now be used to hide user home and runtime |
| 2452 | directories from units, in a way that is mostly equivalent to |
| 2453 | "TemporaryFileSystem=/home /run/user /root". |
| 2454 | |
| 2455 | * Non-service units are now started with KeyringMode=shared by default. |
| 2456 | This means that mount and swapon and other mount tools have access |
| 2457 | to keys in the main keyring. |
| 2458 | |
| 2459 | * /sys/fs/bpf is now mounted automatically. |
| 2460 | |
| 2461 | * QNX virtualization is now detected by systemd-detect-virt and may |
| 2462 | be used in ConditionVirtualization=. |
| 2463 | |
| 2464 | * IPAccounting= may now be enabled also for slice units. |
| 2465 | |
| 2466 | * A new -Dsplit-bin= build configuration switch may be used to specify |
| 2467 | whether bin and sbin directories are merged, or if they should be |
| 2468 | included separately in $PATH and various listings of executable |
| 2469 | directories. The build configuration scripts will try to autodetect |
| 2470 | the proper values of -Dsplit-usr= and -Dsplit-bin= based on build |
| 2471 | system, but distributions are encouraged to configure this |
| 2472 | explicitly. |
| 2473 | |
| 2474 | * A new -Dok-color= build configuration switch may be used to change |
| 2475 | the colour of "OK" status messages. |
| 2476 | |
| 2477 | * UPGRADE ISSUE: serialization of units using JoinsNamespaceOf= with |
| 2478 | PrivateNetwork=yes was buggy in previous versions of systemd. This |
| 2479 | means that after the upgrade and daemon-reexec, any such units must |
| 2480 | be restarted. |
| 2481 | |
| 2482 | * INCOMPATIBILITY: as announced in the NEWS for 237, systemd-tmpfiles |
| 2483 | will not exclude read-only files owned by root from cleanup. |
| 2484 | |
Zbigniew Jędrzejewski-Szmek | c657bff | 2018-03-05 17:13:38 +0100 | [diff] [blame] | 2485 | Contributions from: Alan Jenkins, Alexander F Rødseth, Alexis Jeandet, |
| 2486 | Andika Triwidada, Andrei Gherzan, Ansgar Burchardt, antizealot1337, |
| 2487 | Batuhan Osman Taşkaya, Beniamino Galvani, Bill Yodlowsky, Caio Marcelo |
| 2488 | de Oliveira Filho, CuBiC, Daniele Medri, Daniel Mouritzen, Daniel |
| 2489 | Rusek, Davide Cavalca, Dimitri John Ledkov, Douglas Christman, Evgeny |
| 2490 | Vereshchagin, Faalagorn, Filipe Brandenburger, Franck Bui, futpib, |
| 2491 | Giacomo Longo, Gunnar Hjalmarsson, Hans de Goede, Hermann Gausterer, |
| 2492 | Iago López Galeiras, Jakub Filak, Jan Synacek, Jason A. Donenfeld, |
| 2493 | Javier Martinez Canillas, Jérémy Rosen, Lennart Poettering, Lucas |
| 2494 | Werkmeister, Mao Huang, Marco Gulino, Michael Biebl, Michael Vogt, |
| 2495 | MilhouseVH, Neal Gompa (ニール・ゴンパ), Oleander Reis, Olof Mogren, |
| 2496 | Patrick Uiterwijk, Peter Hutterer, Peter Portante, Piotr Drąg, Robert |
| 2497 | Antoni Buj Gelonch, Sergey Ptashnick, Shawn Landden, Shuang Liu, Simon |
| 2498 | Fowler, SjonHortensius, snorreflorre, Susant Sahani, Sylvain |
| 2499 | Plantefève, Thomas Blume, Thomas Haller, Vito Caputo, Yu Watanabe, |
| 2500 | Zbigniew Jędrzejewski-Szmek, Марко М. Костић (Marko M. Kostić) |
| 2501 | |
| 2502 | — Warsaw, 2018-03-05 |
| 2503 | |
Lennart Poettering | 82c8e3e | 2018-01-28 16:36:03 +0100 | [diff] [blame] | 2504 | CHANGES WITH 237: |
Martin Pitt | 2b0c59b | 2018-01-22 21:17:08 +0100 | [diff] [blame] | 2505 | |
| 2506 | * Some keyboards come with a zoom see-saw or rocker which until now got |
| 2507 | mapped to the Linux "zoomin/out" keys in hwdb. However, these |
| 2508 | keycodes are not recognized by any major desktop. They now produce |
| 2509 | Up/Down key events so that they can be used for scrolling. |
| 2510 | |
Lennart Poettering | 49e8729 | 2018-01-24 10:54:10 +0100 | [diff] [blame] | 2511 | * INCOMPATIBILITY: systemd-tmpfiles' "f" lines changed behaviour |
| 2512 | slightly: previously, if an argument was specified for lines of this |
| 2513 | type (i.e. the right-most column was set) this string was appended to |
| 2514 | existing files each time systemd-tmpfiles was run. This behaviour was |
| 2515 | different from what the documentation said, and not particularly |
| 2516 | useful, as repeated systemd-tmpfiles invocations would not be |
| 2517 | idempotent and grow such files without bounds. With this release |
Zbigniew Jędrzejewski-Szmek | 15c5594 | 2018-09-12 16:11:15 +0200 | [diff] [blame] | 2518 | behaviour has been altered to match what the documentation says: |
| 2519 | lines of this type only have an effect if the indicated files don't |
| 2520 | exist yet, and only then the argument string is written to the file. |
Lennart Poettering | 49e8729 | 2018-01-24 10:54:10 +0100 | [diff] [blame] | 2521 | |
Lennart Poettering | 82c8e3e | 2018-01-28 16:36:03 +0100 | [diff] [blame] | 2522 | * FUTURE INCOMPATIBILITY: In systemd v238 we intend to slightly change |
| 2523 | systemd-tmpfiles behaviour: previously, read-only files owned by root |
| 2524 | were always excluded from the file "aging" algorithm (i.e. the |
| 2525 | automatic clean-up of directories like /tmp based on |
| 2526 | atime/mtime/ctime). We intend to drop this restriction, and age files |
| 2527 | by default even when owned by root and read-only. This behaviour was |
| 2528 | inherited from older tools, but there have been requests to remove |
| 2529 | it, and it's not obvious why this restriction was made in the first |
| 2530 | place. Please speak up now, if you are aware of software that reqires |
| 2531 | this behaviour, otherwise we'll remove the restriction in v238. |
| 2532 | |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2533 | * A new environment variable $SYSTEMD_OFFLINE is now understood by |
| 2534 | systemctl. It takes a boolean argument. If on, systemctl assumes it |
| 2535 | operates on an "offline" OS tree, and will not attempt to talk to the |
| 2536 | service manager. Previously, this mode was implicitly enabled if a |
| 2537 | chroot() environment was detected, and this new environment variable |
| 2538 | now provides explicit control. |
| 2539 | |
Zbigniew Jędrzejewski-Szmek | 1a0cd2c | 2018-01-28 16:52:47 +0100 | [diff] [blame] | 2540 | * .path and .socket units may now be created transiently, too. |
| 2541 | Previously only service, mount, automount and timer units were |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2542 | supported as transient units. The systemd-run tool has been updated |
| 2543 | to expose this new functionality, you may hence use it now to bind |
| 2544 | arbitrary commands to path or socket activation on-the-fly from the |
Zbigniew Jędrzejewski-Szmek | 1a0cd2c | 2018-01-28 16:52:47 +0100 | [diff] [blame] | 2545 | command line. Moreover, almost all properties are now exposed for the |
| 2546 | unit types that already supported transient operation. |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2547 | |
| 2548 | * The systemd-mount command gained support for a new --owner= parameter |
| 2549 | which takes a user name, which is then resolved and included in uid= |
| 2550 | and gid= mount options string of the file system to mount. |
| 2551 | |
| 2552 | * A new unit condition ConditionControlGroupController= has been added |
| 2553 | that checks whether a specific cgroup controller is available. |
| 2554 | |
| 2555 | * Unit files, udev's .link files, and systemd-networkd's .netdev and |
| 2556 | .network files all gained support for a new condition |
| 2557 | ConditionKernelVersion= for checking against specific kernel |
| 2558 | versions. |
| 2559 | |
| 2560 | * In systemd-networkd, the [IPVLAN] section in .netdev files gained |
Clinton Roy | 6cddc79 | 2018-01-26 21:44:11 +1100 | [diff] [blame] | 2561 | support for configuring device flags in the Flags= setting. In the |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2562 | same files, the [Tunnel] section gained support for configuring |
| 2563 | AllowLocalRemote=. The [Route] section in .network files gained |
| 2564 | support for configuring InitialCongestionWindow=, |
| 2565 | InitialAdvertisedReceiveWindow= and QuickAck=. The [DHCP] section now |
| 2566 | understands RapidCommit=. |
| 2567 | |
| 2568 | * systemd-networkd's DHCPv6 support gained support for Prefix |
| 2569 | Delegation. |
| 2570 | |
| 2571 | * sd-bus gained support for a new "watch-bind" feature. When this |
| 2572 | feature is enabled, an sd_bus connection may be set up to connect to |
| 2573 | an AF_UNIX socket in the file system as soon as it is created. This |
| 2574 | functionality is useful for writing early-boot services that |
| 2575 | automatically connect to the system bus as soon as it is started, |
| 2576 | without ugly time-based polling. systemd-networkd and |
| 2577 | systemd-resolved have been updated to make use of this |
| 2578 | functionality. busctl exposes this functionality in a new |
| 2579 | --watch-bind= command line switch. |
| 2580 | |
| 2581 | * sd-bus will now optionally synthesize a local "Connected" signal as |
| 2582 | soon as a D-Bus connection is set up fully. This message mirrors the |
| 2583 | already existing "Disconnected" signal which is synthesized when the |
| 2584 | connection is terminated. This signal is generally useful but |
| 2585 | particularly handy in combination with the "watch-bind" feature |
| 2586 | described above. Synthesizing of this message has to be requested |
| 2587 | explicitly through the new API call sd_bus_set_connected_signal(). In |
| 2588 | addition a new call sd_bus_is_ready() has been added that checks |
Thomas Hindoe Paaboel Andersen | caf2a2d | 2018-01-28 00:05:27 +0100 | [diff] [blame] | 2589 | whether a connection is fully set up (i.e. between the "Connected" and |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2590 | "Disconnected" signals). |
| 2591 | |
| 2592 | * sd-bus gained two new calls sd_bus_request_name_async() and |
| 2593 | sd_bus_release_name_async() for asynchronously registering bus |
| 2594 | names. Similar, there is now sd_bus_add_match_async() for installing |
| 2595 | a signal match asynchronously. All of systemd's own services have |
| 2596 | been updated to make use of these calls. Doing these operations |
| 2597 | asynchronously has two benefits: it reduces the risk of deadlocks in |
| 2598 | case of cyclic dependencies between bus services, and it speeds up |
| 2599 | service initialization since synchronization points for bus |
| 2600 | round-trips are removed. |
| 2601 | |
| 2602 | * sd-bus gained two new calls sd_bus_match_signal() and |
| 2603 | sd_bus_match_signal_async(), which are similar to sd_bus_add_match() |
| 2604 | and sd_bus_add_match_async() but instead of taking a D-Bus match |
| 2605 | string take match fields as normal function parameters. |
| 2606 | |
| 2607 | * sd-bus gained two new calls sd_bus_set_sender() and |
| 2608 | sd_bus_message_set_sender() for setting the sender name of outgoing |
| 2609 | messages (either for all outgoing messages or for just one specific |
| 2610 | one). These calls are only useful in direct connections as on |
| 2611 | brokered connections the broker fills in the sender anyway, |
| 2612 | overwriting whatever the client filled in. |
| 2613 | |
| 2614 | * sd-event gained a new pseudo-handle that may be specified on all API |
| 2615 | calls where an "sd_event*" object is expected: SD_EVENT_DEFAULT. When |
| 2616 | used this refers to the default event loop object of the calling |
| 2617 | thread. Note however that this does not implicitly allocate one — |
Clinton Roy | 6cddc79 | 2018-01-26 21:44:11 +1100 | [diff] [blame] | 2618 | which has to be done prior by using sd_event_default(). Similarly |
| 2619 | sd-bus gained three new pseudo-handles SD_BUS_DEFAULT, |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2620 | SD_BUS_DEFAULT_USER, SD_BUS_DEFAULT_SYSTEM that may be used to refer |
| 2621 | to the default bus of the specified type of the calling thread. Here |
| 2622 | too this does not implicitly allocate bus connection objects, this |
| 2623 | has to be done prior with sd_bus_default() and friends. |
| 2624 | |
| 2625 | * sd-event gained a new call pair |
Clinton Roy | 6cddc79 | 2018-01-26 21:44:11 +1100 | [diff] [blame] | 2626 | sd_event_source_{get|set}_io_fd_own(). This may be used to request |
| 2627 | automatic closure of the file descriptor an IO event source watches |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2628 | when the event source is destroyed. |
| 2629 | |
| 2630 | * systemd-networkd gained support for natively configuring WireGuard |
| 2631 | connections. |
| 2632 | |
Clinton Roy | 6cddc79 | 2018-01-26 21:44:11 +1100 | [diff] [blame] | 2633 | * In previous versions systemd synthesized user records both for the |
| 2634 | "nobody" (UID 65534) and "root" (UID 0) users in nss-systemd and |
| 2635 | internally. In order to simplify distribution-wide renames of the |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2636 | "nobody" user (like it is planned in Fedora: nfsnobody → nobody), a |
| 2637 | new transitional flag file has been added: if |
| 2638 | /etc/systemd/dont-synthesize-nobody exists synthesizing of the 65534 |
| 2639 | user and group record within the systemd codebase is disabled. |
| 2640 | |
| 2641 | * systemd-notify gained a new --uid= option for selecting the source |
| 2642 | user/UID to use for notification messages sent to the service |
| 2643 | manager. |
| 2644 | |
Zbigniew Jędrzejewski-Szmek | 31751f7 | 2018-01-28 16:54:18 +0100 | [diff] [blame] | 2645 | * journalctl gained a new --grep= option to list only entries in which |
Zbigniew Jędrzejewski-Szmek | e6501af | 2018-01-28 15:52:06 +0100 | [diff] [blame] | 2646 | the message matches a certain pattern. By default matching is case |
| 2647 | insensitive if the pattern is lowercase, and case sensitive |
| 2648 | otherwise. Option --case-sensitive=yes|no can be used to override |
| 2649 | this an specify case sensitivity or case insensitivity. |
| 2650 | |
bleep_blop | 56a2911 | 2018-01-27 22:03:52 +0530 | [diff] [blame] | 2651 | * There's now a "systemd-analyze service-watchdogs" command for printing |
Lennart Poettering | 508058c | 2018-01-28 13:28:58 +0100 | [diff] [blame] | 2652 | the current state of the service runtime watchdog, and optionally |
bleep_blop | 56a2911 | 2018-01-27 22:03:52 +0530 | [diff] [blame] | 2653 | enabling or disabling the per-service watchdogs system-wide if given a |
Lennart Poettering | 508058c | 2018-01-28 13:28:58 +0100 | [diff] [blame] | 2654 | boolean argument (i.e. the concept you configure in WatchdogSec=), for |
| 2655 | debugging purposes. There's also a kernel command line option |
bleep_blop | 56a2911 | 2018-01-27 22:03:52 +0530 | [diff] [blame] | 2656 | systemd.service_watchdogs= for controlling the same. |
Lennart Poettering | 508058c | 2018-01-28 13:28:58 +0100 | [diff] [blame] | 2657 | |
| 2658 | * Two new "log-level" and "log-target" options for systemd-analyze were |
Michael Biebl | bc99dac | 2018-06-12 15:41:38 +0200 | [diff] [blame] | 2659 | added that merge the now deprecated get-log-level, set-log-level and |
Lennart Poettering | 508058c | 2018-01-28 13:28:58 +0100 | [diff] [blame] | 2660 | get-log-target, set-log-target pairs. The deprecated options are still |
| 2661 | understood for backwards compatibility. The two new options print the |
| 2662 | current value when no arguments are given, and set them when a |
bleep_blop | 56a2911 | 2018-01-27 22:03:52 +0530 | [diff] [blame] | 2663 | level/target is given as an argument. |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2664 | |
Lennart Poettering | 508058c | 2018-01-28 13:28:58 +0100 | [diff] [blame] | 2665 | * sysusers.d's "u" lines now optionally accept both a UID and a GID |
| 2666 | specification, separated by a ":" character, in order to create users |
| 2667 | where UID and GID do not match. |
Lennart Poettering | 95894b9 | 2018-01-25 13:18:28 +0100 | [diff] [blame] | 2668 | |
Lennart Poettering | 508058c | 2018-01-28 13:28:58 +0100 | [diff] [blame] | 2669 | Contributions from: Adam Duskett, Alan Jenkins, Alexander Kuleshov, |
| 2670 | Alexis Deruelle, Andrew Jeddeloh, Armin Widegreen, Batuhan Osman |
| 2671 | Taşkaya, Björn Esser, bleep_blop, Bruce A. Johnson, Chris Down, Clinton |
| 2672 | Roy, Colin Walters, Daniel Rusek, Dimitri John Ledkov, Dmitry Rozhkov, |
| 2673 | Evgeny Vereshchagin, Ewout van Mansom, Felipe Sateler, Franck Bui, |
| 2674 | Frantisek Sumsal, George Gaydarov, Gianluca Boiano, Hans-Christian |
| 2675 | Noren Egtvedt, Hans de Goede, Henrik Grindal Bakken, Jan Alexander |
| 2676 | Steffens, Jan Klötzke, Jason A. Donenfeld, jdkbx, Jérémy Rosen, |
| 2677 | Jerónimo Borque, John Lin, John Paul Herold, Jonathan Rudenberg, Jörg |
| 2678 | Thalheim, Ken (Bitsko) MacLeod, Larry Bernstone, Lennart Poettering, |
| 2679 | Lucas Werkmeister, Maciej S. Szmigiero, Marek Čermák, Martin Pitt, |
| 2680 | Mathieu Malaterre, Matthew Thode, Matthias-Christian Ott, Max Harmathy, |
| 2681 | Michael Biebl, Michael Vogt, Michal Koutný, Michal Sekletar, Michał |
| 2682 | Szczepański, Mike Gilbert, Nathaniel McCallum, Nicolas Chauvet, Olaf |
| 2683 | Hering, Olivier Schwander, Patrik Flykt, Paul Cercueil, Peter Hutterer, |
| 2684 | Piotr Drąg, Raphael Vogelgsang, Reverend Homer, Robert Kolchmeyer, |
| 2685 | Samuel Dionne-Riel, Sergey Ptashnick, Shawn Landden, Susant Sahani, |
| 2686 | Sylvain Plantefève, Thomas H. P. Andersen, Thomas Huth, Tomasz |
| 2687 | Bachorski, Vladislav Vishnyakov, Wieland Hoffmann, Yu Watanabe, Zachary |
| 2688 | Winnerman, Zbigniew Jędrzejewski-Szmek, Дамјан Георгиевски, Дилян |
| 2689 | Палаузов |
| 2690 | |
| 2691 | — Brno, 2018-01-28 |
Martin Pitt | 2b0c59b | 2018-01-22 21:17:08 +0100 | [diff] [blame] | 2692 | |
Lennart Poettering | a1b2c92 | 2017-12-14 23:09:57 +0100 | [diff] [blame] | 2693 | CHANGES WITH 236: |
Mantas Mikulėnas | 195b943 | 2017-10-23 23:56:01 +0300 | [diff] [blame] | 2694 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2695 | * The modprobe.d/ drop-in for the bonding.ko kernel module introduced |
| 2696 | in v235 has been extended to also set the dummy.ko module option |
| 2697 | numdummies=0, preventing the kernel from automatically creating |
| 2698 | dummy0. All dummy interfaces must now be explicitly created. |
Mantas Mikulėnas | 195b943 | 2017-10-23 23:56:01 +0300 | [diff] [blame] | 2699 | |
Lennart Poettering | 3925496 | 2017-12-08 22:25:49 +0100 | [diff] [blame] | 2700 | * Unknown '%' specifiers in configuration files are now rejected. This |
| 2701 | applies to units and tmpfiles.d configuration. Any percent characters |
| 2702 | that are followed by a letter or digit that are not supposed to be |
| 2703 | interpreted as the beginning of a specifier should be escaped by |
| 2704 | doubling ("%%"). (So "size=5%" is still accepted, as well as |
| 2705 | "size=5%,foo=bar", but not "LABEL=x%y%z" since %y and %z are not |
| 2706 | valid specifiers today.) |
Zbigniew Jędrzejewski-Szmek | 751223f | 2017-11-24 12:19:40 +0100 | [diff] [blame] | 2707 | |
Dimitri John Ledkov | e6b2d94 | 2017-10-24 09:28:41 -0400 | [diff] [blame] | 2708 | * systemd-resolved now maintains a new dynamic |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2709 | /run/systemd/resolve/stub-resolv.conf compatibility file. It is |
| 2710 | recommended to make /etc/resolv.conf a symlink to it. This file |
| 2711 | points at the systemd-resolved stub DNS 127.0.0.53 resolver and |
| 2712 | includes dynamically acquired search domains, achieving more correct |
| 2713 | DNS resolution by software that bypasses local DNS APIs such as NSS. |
Dimitri John Ledkov | e6b2d94 | 2017-10-24 09:28:41 -0400 | [diff] [blame] | 2714 | |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2715 | * The "uaccess" udev tag has been dropped from /dev/kvm and |
| 2716 | /dev/dri/renderD*. These devices now have the 0666 permissions by |
| 2717 | default (but this may be changed at build-time). /dev/dri/renderD* |
| 2718 | will now be owned by the "render" group along with /dev/kfd. |
| 2719 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2720 | * "DynamicUser=yes" has been enabled for systemd-timesyncd.service, |
| 2721 | systemd-journal-gatewayd.service and |
| 2722 | systemd-journal-upload.service. This means "nss-systemd" must be |
| 2723 | enabled in /etc/nsswitch.conf to ensure the UIDs assigned to these |
| 2724 | services are resolved properly. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2725 | |
Lennart Poettering | 3925496 | 2017-12-08 22:25:49 +0100 | [diff] [blame] | 2726 | * In /etc/fstab two new mount options are now understood: |
| 2727 | x-systemd.makefs and x-systemd.growfs. The former has the effect that |
| 2728 | the configured file system is formatted before it is mounted, the |
| 2729 | latter that the file system is resized to the full block device size |
| 2730 | after it is mounted (i.e. if the file system is smaller than the |
| 2731 | partition it resides on, it's grown). This is similar to the fsck |
| 2732 | logic in /etc/fstab, and pulls in systemd-makefs@.service and |
| 2733 | systemd-growfs@.service as necessary, similar to |
| 2734 | systemd-fsck@.service. Resizing is currently only supported on ext4 |
| 2735 | and btrfs. |
| 2736 | |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2737 | * In systemd-networkd, the IPv6 RA logic now optionally may announce |
| 2738 | DNS server and domain information. |
| 2739 | |
| 2740 | * Support for the LUKS2 on-disk format for encrypted partitions has |
| 2741 | been added. This requires libcryptsetup2 during compilation and |
| 2742 | runtime. |
| 2743 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2744 | * The systemd --user instance will now signal "readiness" when its |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2745 | basic.target unit has been reached, instead of when the run queue ran |
| 2746 | empty for the first time. |
| 2747 | |
Zbigniew Jędrzejewski-Szmek | 8ea2dcb | 2017-12-07 21:03:32 +0100 | [diff] [blame] | 2748 | * Tmpfiles.d with user configuration are now also supported. |
| 2749 | systemd-tmpfiles gained a new --user switch, and snippets placed in |
| 2750 | ~/.config/user-tmpfiles.d/ and corresponding directories will be |
| 2751 | executed by systemd-tmpfiles --user running in the new |
| 2752 | systemd-tmpfiles-setup.service and systemd-tmpfiles-clean.service |
| 2753 | running in the user session. |
| 2754 | |
| 2755 | * Unit files and tmpfiles.d snippets learnt three new % specifiers: |
| 2756 | %S resolves to the top-level state directory (/var/lib for the system |
| 2757 | instance, $XDG_CONFIG_HOME for the user instance), %C resolves to the |
| 2758 | top-level cache directory (/var/cache for the system instance, |
| 2759 | $XDG_CACHE_HOME for the user instance), %L resolves to the top-level |
| 2760 | logs directory (/var/log for the system instance, |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2761 | $XDG_CONFIG_HOME/log/ for the user instance). This matches the |
Zbigniew Jędrzejewski-Szmek | 8ea2dcb | 2017-12-07 21:03:32 +0100 | [diff] [blame] | 2762 | existing %t specifier, that resolves to the top-level runtime |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2763 | directory (/run for the system instance, and $XDG_RUNTIME_DIR for the |
| 2764 | user instance). |
| 2765 | |
| 2766 | * journalctl learnt a new parameter --output-fields= for limiting the |
| 2767 | set of journal fields to output in verbose and JSON output modes. |
| 2768 | |
| 2769 | * systemd-timesyncd's configuration file gained a new option |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2770 | RootDistanceMaxSec= for setting the maximum root distance of servers |
| 2771 | it'll use, as well as the new options PollIntervalMinSec= and |
| 2772 | PollIntervalMaxSec= to tweak the minimum and maximum poll interval. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2773 | |
| 2774 | * bootctl gained a new command "list" for listing all available boot |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2775 | menu items on systems that follow the boot loader specification. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2776 | |
| 2777 | * systemctl gained a new --dry-run switch that shows what would be done |
| 2778 | instead of doing it, and is currently supported by the shutdown and |
| 2779 | sleep verbs. |
| 2780 | |
Yu Watanabe | e9ad86d | 2017-12-01 04:48:57 +0900 | [diff] [blame] | 2781 | * ConditionSecurity= can now detect the TOMOYO security module. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2782 | |
| 2783 | * Unit file [Install] sections are now also respected in unit drop-in |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2784 | files. This is intended to be used by drop-ins under /usr/lib/. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2785 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2786 | * systemd-firstboot may now also set the initial keyboard mapping. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2787 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2788 | * Udev "changed" events for devices which are exposed as systemd |
| 2789 | .device units are now propagated to units specified in |
| 2790 | ReloadPropagatedFrom= as reload requests. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2791 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2792 | * If a udev device has a SYSTEMD_WANTS= property containing a systemd |
| 2793 | unit template name (i.e. a name in the form of 'foobar@.service', |
| 2794 | without the instance component between the '@' and - the '.'), then |
| 2795 | the escaped sysfs path of the device is automatically used as the |
| 2796 | instance. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2797 | |
| 2798 | * SystemCallFilter= in unit files has been extended so that an "errno" |
| 2799 | can be specified individually for each system call. Example: |
| 2800 | SystemCallFilter=~uname:EILSEQ. |
| 2801 | |
| 2802 | * The cgroup delegation logic has been substantially updated. Delegate= |
| 2803 | now optionally takes a list of controllers (instead of a boolean, as |
| 2804 | before), which lists the controllers to delegate at least. |
| 2805 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2806 | * The networkd DHCPv6 client now implements the FQDN option (RFC 4704). |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2807 | |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2808 | * A new LogLevelMax= setting configures the maximum log level any |
| 2809 | process of the service may log at (i.e. anything with a lesser |
| 2810 | priority than what is specified is automatically dropped). A new |
| 2811 | LogExtraFields= setting allows configuration of additional journal |
| 2812 | fields to attach to all log records generated by any of the unit's |
| 2813 | processes. |
| 2814 | |
| 2815 | * New StandardInputData= and StandardInputText= settings along with the |
| 2816 | new option StandardInput=data may be used to configure textual or |
| 2817 | binary data that shall be passed to the executed service process via |
| 2818 | standard input, encoded in-line in the unit file. |
| 2819 | |
| 2820 | * StandardInput=, StandardOutput= and StandardError= may now be used to |
| 2821 | connect stdin/stdout/stderr of executed processes directly with a |
| 2822 | file or AF_UNIX socket in the file system, using the new "file:" option. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2823 | |
| 2824 | * A new unit file option CollectMode= has been added, that allows |
| 2825 | tweaking the garbage collection logic for units. It may be used to |
| 2826 | tell systemd to garbage collect units that have failed automatically |
| 2827 | (normally it only GCs units that exited successfully). systemd-run |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2828 | and systemd-mount expose this new functionality with a new -G option. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2829 | |
| 2830 | * "machinectl bind" may now be used to bind mount non-directories |
| 2831 | (i.e. regularfiles, devices, fifos, sockets). |
| 2832 | |
| 2833 | * systemd-analyze gained a new verb "calendar" for validating and |
| 2834 | testing calendar time specifications to use for OnCalendar= in timer |
| 2835 | units. Besides validating the expression it will calculate the next |
| 2836 | time the specified expression would elapse. |
| 2837 | |
| 2838 | * In addition to the pre-existing FailureAction= unit file setting |
Zbigniew Jędrzejewski-Szmek | 8978084 | 2017-12-01 16:25:19 +0100 | [diff] [blame] | 2839 | there's now SuccessAction=, for configuring a shutdown action to |
| 2840 | execute when a unit completes successfully. This is useful in |
| 2841 | particular inside containers that shall terminate after some workload |
| 2842 | has been completed. Also, both options are now supported for all unit |
| 2843 | types, not just services. |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2844 | |
| 2845 | * networkds's IP rule support gained two new options |
Christian Hesse | dd014ee | 2017-12-06 23:49:01 +0100 | [diff] [blame] | 2846 | IncomingInterface= and OutgoingInterface= for configuring the incoming |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2847 | and outgoing interfaces of configured rules. systemd-networkd also |
| 2848 | gained support for "vxcan" network devices. |
| 2849 | |
| 2850 | * networkd gained a new setting RequiredForOnline=, taking a |
| 2851 | boolean. If set, systemd-wait-online will take it into consideration |
| 2852 | when determining that the system is up, otherwise it will ignore the |
| 2853 | interface for this purpose. |
| 2854 | |
| 2855 | * The sd_notify() protocol gained support for a new operation: with |
| 2856 | FDSTOREREMOVE=1 file descriptors may be removed from the per-service |
| 2857 | store again, ahead of POLLHUP or POLLERR when they are removed |
| 2858 | anyway. |
| 2859 | |
Lennart Poettering | f09eb76 | 2018-02-26 11:48:46 +0100 | [diff] [blame] | 2860 | * A new document doc/UIDS-GIDS.md has been added to the source tree, |
| 2861 | that documents the UID/GID range and assignment assumptions and |
Lennart Poettering | 3925496 | 2017-12-08 22:25:49 +0100 | [diff] [blame] | 2862 | requirements of systemd. |
| 2863 | |
| 2864 | * The watchdog device PID 1 will ping may now be configured through the |
| 2865 | WatchdogDevice= configuration file setting, or by setting the |
| 2866 | systemd.watchdog_service= kernel commandline option. |
| 2867 | |
| 2868 | * systemd-resolved's gained support for registering DNS-SD services on |
| 2869 | the local network using MulticastDNS. Services may either be |
| 2870 | registered by dropping in a .dnssd file in /etc/systemd/dnssd/ (or |
| 2871 | the same dir below /run, /usr/lib), or through its D-Bus API. |
| 2872 | |
Daniel Black | a327431 | 2017-12-14 22:17:43 +1100 | [diff] [blame] | 2873 | * The sd_notify() protocol can now with EXTEND_TIMEOUT_USEC=microsecond |
| 2874 | extend the effective start, runtime, and stop time. The service must |
| 2875 | continue to send EXTEND_TIMEOUT_USEC within the period specified to |
| 2876 | prevent the service manager from making the service as timedout. |
| 2877 | |
Lennart Poettering | ea2a3c9 | 2017-12-13 18:27:59 +0100 | [diff] [blame] | 2878 | * systemd-resolved's DNSSEC support gained support for RFC 8080 |
| 2879 | (Ed25519 keys and signatures). |
| 2880 | |
Lennart Poettering | a1b2c92 | 2017-12-14 23:09:57 +0100 | [diff] [blame] | 2881 | * The systemd-resolve command line tool gained a new set of options |
| 2882 | --set-dns=, --set-domain=, --set-llmnr=, --set-mdns=, --set-dnssec=, |
| 2883 | --set-nta= and --revert to configure per-interface DNS configuration |
| 2884 | dynamically during runtime. It's useful for pushing DNS information |
| 2885 | into systemd-resolved from DNS hook scripts that various interface |
| 2886 | managing software supports (such as pppd). |
| 2887 | |
| 2888 | * systemd-nspawn gained a new --network-namespace-path= command line |
| 2889 | option, which may be used to make a container join an existing |
| 2890 | network namespace, by specifying a path to a "netns" file. |
| 2891 | |
Lennart Poettering | 3925496 | 2017-12-08 22:25:49 +0100 | [diff] [blame] | 2892 | Contributions from: Alan Jenkins, Alan Robertson, Alessandro Ghedini, |
| 2893 | Andrew Jeddeloh, Antonio Rojas, Ari, asavah, bleep_blop, Carsten |
| 2894 | Strotmann, Christian Brauner, Christian Hesse, Clinton Roy, Collin |
Lennart Poettering | ea2a3c9 | 2017-12-13 18:27:59 +0100 | [diff] [blame] | 2895 | Eggert, Cong Wang, Daniel Black, Daniel Lockyer, Daniel Rusek, Dimitri |
Lennart Poettering | a1b2c92 | 2017-12-14 23:09:57 +0100 | [diff] [blame] | 2896 | John Ledkov, Dmitry Rozhkov, Dongsu Park, Edward A. James, Evgeny |
| 2897 | Vereshchagin, Florian Klink, Franck Bui, Gwendal Grignou, Hans de |
| 2898 | Goede, Harald Hoyer, Hristo Venev, Iago López Galeiras, Ikey Doherty, |
| 2899 | Jakub Wilk, Jérémy Rosen, Jiahui Xie, John Lin, José Bollo, Josef |
| 2900 | Andersson, juga0, Krzysztof Nowicki, Kyle Walker, Lars Karlitski, Lars |
| 2901 | Kellogg-Stedman, Lauri Tirkkonen, Lennart Poettering, Lubomir Rintel, |
| 2902 | Luca Bruno, Lucas Werkmeister, Lukáš Nykrýn, Lukáš Říha, Lukasz |
| 2903 | Rubaszewski, Maciej S. Szmigiero, Mantas Mikulėnas, Marcus Folkesson, |
| 2904 | Martin Steuer, Mathieu Trudel-Lapierre, Matija Skala, |
| 2905 | Matthias-Christian Ott, Max Resch, Michael Biebl, Michael Vogt, Michal |
| 2906 | Koutný, Michal Sekletar, Mike Gilbert, Muhammet Kara, Neil Brown, Olaf |
| 2907 | Hering, Ondrej Kozina, Patrik Flykt, Patryk Kocielnik, Peter Hutterer, |
| 2908 | Piotr Drąg, Razvan Cojocaru, Robin McCorkell, Roland Hieber, Saran |
| 2909 | Tunyasuvunakool, Sergey Ptashnick, Shawn Landden, Shuang Liu, Simon |
| 2910 | Arlott, Simon Peeters, Stanislav Angelovič, Stefan Agner, Susant |
| 2911 | Sahani, Sylvain Plantefève, Thomas Blume, Thomas Haller, Tiago Salem |
| 2912 | Herrmann, Tinu Weber, Tom Stellard, Topi Miettinen, Torsten Hilbrich, |
| 2913 | Vito Caputo, Vladislav Vishnyakov, WaLyong Cho, Yu Watanabe, Zbigniew |
| 2914 | Jędrzejewski-Szmek, Zeal Jagannatha |
Lennart Poettering | 67eb5b3 | 2017-11-30 20:07:18 +0100 | [diff] [blame] | 2915 | |
Lennart Poettering | ea2a3c9 | 2017-12-13 18:27:59 +0100 | [diff] [blame] | 2916 | — Berlin, 2017-12-14 |
Tom Stellard | 3754abc | 2017-11-08 08:35:23 -0800 | [diff] [blame] | 2917 | |
Dimitri John Ledkov | 582faeb | 2017-08-02 13:41:18 +0100 | [diff] [blame] | 2918 | CHANGES WITH 235: |
| 2919 | |
Lennart Poettering | 2bcbffd | 2017-11-16 03:57:32 +0100 | [diff] [blame] | 2920 | * INCOMPATIBILITY: systemd-logind.service and other long-running |
| 2921 | services now run inside an IPv4/IPv6 sandbox, prohibiting them any IP |
| 2922 | communication with the outside. This generally improves security of |
| 2923 | the system, and is in almost all cases a safe and good choice, as |
Shawn Landden | 23d3736 | 2017-11-20 18:05:57 -0800 | [diff] [blame] | 2924 | these services do not and should not provide any network-facing |
Lennart Poettering | 2bcbffd | 2017-11-16 03:57:32 +0100 | [diff] [blame] | 2925 | functionality. However, systemd-logind uses the glibc NSS API to |
| 2926 | query the user database. This creates problems on systems where NSS |
| 2927 | is set up to directly consult network services for user database |
| 2928 | lookups. In particular, this creates incompatibilities with the |
| 2929 | "nss-nis" module, which attempts to directly contact the NIS/YP |
| 2930 | network servers it is configured for, and will now consistently |
| 2931 | fail. In such cases, it is possible to turn off IP sandboxing for |
| 2932 | systemd-logind.service (set IPAddressDeny= in its [Service] section |
| 2933 | to the empty string, via a .d/ unit file drop-in). Downstream |
| 2934 | distributions might want to update their nss-nis packaging to include |
| 2935 | such a drop-in snippet, accordingly, to hide this incompatibility |
| 2936 | from the user. Another option is to make use of glibc's nscd service |
| 2937 | to proxy such network requests through a privilege-separated, minimal |
| 2938 | local caching daemon, or to switch to more modern technologies such |
| 2939 | sssd, whose NSS hook-ups generally do not involve direct network |
| 2940 | access. In general, we think it's definitely time to question the |
| 2941 | implementation choices of nss-nis, i.e. whether it's a good idea |
| 2942 | today to embed a network-facing loadable module into all local |
| 2943 | processes that need to query the user database, including the most |
| 2944 | trivial and benign ones, such as "ls". For more details about |
| 2945 | IPAddressDeny= see below. |
| 2946 | |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 2947 | * A new modprobe.d drop-in is now shipped by default that sets the |
| 2948 | bonding module option max_bonds=0. This overrides the kernel default, |
| 2949 | to avoid conflicts and ambiguity as to whether or not bond0 should be |
| 2950 | managed by systemd-networkd or not. This resolves multiple issues |
| 2951 | with bond0 properties not being applied, when bond0 is configured |
| 2952 | with systemd-networkd. Distributors may choose to not package this, |
| 2953 | however in that case users will be prevented from correctly managing |
| 2954 | bond0 interface using systemd-networkd. |
Dimitri John Ledkov | 582faeb | 2017-08-02 13:41:18 +0100 | [diff] [blame] | 2955 | |
Lucas Werkmeister | ef5a8cb | 2017-09-07 23:41:20 +0200 | [diff] [blame] | 2956 | * systemd-analyze gained new verbs "get-log-level" and "get-log-target" |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 2957 | which print the logging level and target of the system manager. They |
| 2958 | complement the existing "set-log-level" and "set-log-target" verbs |
| 2959 | used to change those values. |
Lucas Werkmeister | ef5a8cb | 2017-09-07 23:41:20 +0200 | [diff] [blame] | 2960 | |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 2961 | * journald.conf gained a new boolean setting ReadKMsg= which defaults |
| 2962 | to on. If turned off kernel log messages will not be read by |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 2963 | systemd-journald or included in the logs. It also gained a new |
| 2964 | setting LineMax= for configuring the maximum line length in |
| 2965 | STDOUT/STDERR log streams. The new default for this value is 48K, up |
| 2966 | from the previous hardcoded 2048. |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 2967 | |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 2968 | * A new unit setting RuntimeDirectoryPreserve= has been added, which |
| 2969 | allows more detailed control of what to do with a runtime directory |
| 2970 | configured with RuntimeDirectory= (i.e. a directory below /run or |
| 2971 | $XDG_RUNTIME_DIR) after a unit is stopped. |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 2972 | |
| 2973 | * The RuntimeDirectory= setting for units gained support for creating |
| 2974 | deeper subdirectories below /run or $XDG_RUNTIME_DIR, instead of just |
| 2975 | one top-level directory. |
| 2976 | |
| 2977 | * Units gained new options StateDirectory=, CacheDirectory=, |
| 2978 | LogsDirectory= and ConfigurationDirectory= which are closely related |
| 2979 | to RuntimeDirectory= but manage per-service directories below |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 2980 | /var/lib, /var/cache, /var/log and /etc. By making use of them it is |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 2981 | possible to write unit files which when activated automatically gain |
| 2982 | properly owned service specific directories in these locations, thus |
| 2983 | making unit files self-contained and increasing compatibility with |
| 2984 | stateless systems and factory reset where /etc or /var are |
| 2985 | unpopulated at boot. Matching these new settings there's also |
| 2986 | StateDirectoryMode=, CacheDirectoryMode=, LogsDirectoryMode=, |
| 2987 | ConfigurationDirectoryMode= for configuring the access mode of these |
Lennart Poettering | 75dfbba | 2017-10-05 17:23:17 +0200 | [diff] [blame] | 2988 | directories. These settings are particularly useful in combination |
| 2989 | with DynamicUser=yes as they provide secure, properly-owned, |
| 2990 | writable, and stateful locations for storage, excluded from the |
| 2991 | sandbox that such services live in otherwise. |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 2992 | |
| 2993 | * Automake support has been removed from this release. systemd is now |
| 2994 | Meson-only. |
| 2995 | |
| 2996 | * systemd-journald will now aggressively cache client metadata during |
| 2997 | runtime, speeding up log write performance under pressure. This comes |
| 2998 | at a small price though: as much of the metadata is read |
| 2999 | asynchronously from /proc/ (and isn't implicitly attached to log |
| 3000 | datagrams by the kernel, like UID/GID/PID/SELinux are) this means the |
| 3001 | metadata stored alongside a log entry might be slightly |
| 3002 | out-of-date. Previously it could only be slightly newer than the log |
| 3003 | message. The time window is small however, and given that the kernel |
| 3004 | is unlikely to be improved anytime soon in this regard, this appears |
| 3005 | acceptable to us. |
| 3006 | |
| 3007 | * nss-myhostname/systemd-resolved will now by default synthesize an |
| 3008 | A/AAAA resource record for the "_gateway" hostname, pointing to the |
| 3009 | current default IP gateway. Previously it did that for the "gateway" |
| 3010 | name, hampering adoption, as some distributions wanted to leave that |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 3011 | hostname open for local use. The old behaviour may still be |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3012 | requested at build time. |
| 3013 | |
| 3014 | * systemd-networkd's [Address] section in .network files gained a new |
| 3015 | Scope= setting for configuring the IP address scope. The [Network] |
| 3016 | section gained a new boolean setting ConfigureWithoutCarrier= that |
| 3017 | tells systemd-networkd to ignore link sensing when configuring the |
| 3018 | device. The [DHCP] section gained a new Anonymize= boolean option for |
| 3019 | turning on a number of options suggested in RFC 7844. A new |
| 3020 | [RoutingPolicyRule] section has been added for configuring the IP |
| 3021 | routing policy. The [Route] section has gained support for a new |
| 3022 | Type= setting which permits configuring |
| 3023 | blackhole/unreachable/prohibit routes. |
| 3024 | |
| 3025 | * The [VRF] section in .netdev files gained a new Table= setting for |
| 3026 | configuring the routing table to use. The [Tunnel] section gained a |
| 3027 | new Independent= boolean field for configuring tunnels independent of |
| 3028 | an underlying network interface. The [Bridge] section gained a new |
| 3029 | GroupForwardMask= option for configuration of propagation of link |
| 3030 | local frames between bridge ports. |
| 3031 | |
| 3032 | * The WakeOnLan= setting in .link files gained support for a number of |
| 3033 | new modes. A new TCP6SegmentationOffload= setting has been added for |
| 3034 | configuring TCP/IPv6 hardware segmentation offload. |
| 3035 | |
| 3036 | * The IPv6 RA sender implementation may now optionally send out RDNSS |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3037 | and RDNSSL records to supply DNS configuration to peers. |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3038 | |
| 3039 | * systemd-nspawn gained support for a new --system-call-filter= command |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3040 | line option for adding and removing entries in the default system |
| 3041 | call filter it applies. Moreover systemd-nspawn has been changed to |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3042 | implement a system call whitelist instead of a blacklist. |
| 3043 | |
| 3044 | * systemd-run gained support for a new --pipe command line option. If |
| 3045 | used the STDIN/STDOUT/STDERR file descriptors passed to systemd-run |
| 3046 | are directly passed on to the activated transient service |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3047 | executable. This allows invoking arbitrary processes as systemd |
| 3048 | services (for example to take benefit of dependency management, |
| 3049 | accounting management, resource management or log management that is |
| 3050 | done automatically for services) — while still allowing them to be |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3051 | integrated in a classic UNIX shell pipeline. |
| 3052 | |
| 3053 | * When a service sends RELOAD=1 via sd_notify() and reload propagation |
| 3054 | using ReloadPropagationTo= is configured, a reload is now propagated |
| 3055 | to configured units. (Previously this was only done on explicitly |
| 3056 | requested reloads, using "systemctl reload" or an equivalent |
| 3057 | command.) |
| 3058 | |
| 3059 | * For each service unit a restart counter is now kept: it is increased |
| 3060 | each time the service is restarted due to Restart=, and may be |
| 3061 | queried using "systemctl show -p NRestarts …". |
| 3062 | |
Lennart Poettering | 44898c5 | 2017-09-30 14:34:50 +0200 | [diff] [blame] | 3063 | * New system call filter groups @aio, @sync, @chown, @setuid, @memlock, |
| 3064 | @signal and @timer have been added, for usage with SystemCallFilter= |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3065 | in unit files and the new --system-call-filter= command line option |
| 3066 | of systemd-nspawn (see above). |
| 3067 | |
| 3068 | * ExecStart= lines in unit files gained two new modifiers: when a |
| 3069 | command line is prefixed with "!" the command will be executed as |
| 3070 | configured, except for the credentials applied by |
| 3071 | setuid()/setgid()/setgroups(). It is very similar to the pre-existing |
| 3072 | "+", but does still apply namespacing options unlike "+". There's |
| 3073 | also "!!" now, which is mostly identical, but becomes a NOP on |
| 3074 | systems that support ambient capabilities. This is useful to write |
| 3075 | unit files that work with ambient capabilities where possible but |
| 3076 | automatically fall back to traditional privilege dropping mechanisms |
| 3077 | on systems where this is not supported. |
| 3078 | |
| 3079 | * ListenNetlink= settings in socket units now support RDMA netlink |
| 3080 | sockets. |
| 3081 | |
| 3082 | * A new unit file setting LockPersonality= has been added which permits |
| 3083 | locking down the chosen execution domain ("personality") of a service |
| 3084 | during runtime. |
| 3085 | |
| 3086 | * A new special target "getty-pre.target" has been added, which is |
| 3087 | ordered before all text logins, and may be used to order services |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3088 | before textual logins acquire access to the console. |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3089 | |
| 3090 | * systemd will now attempt to load the virtio-rng.ko kernel module very |
| 3091 | early on if a VM environment supporting this is detected. This should |
| 3092 | improve entropy during early boot in virtualized environments. |
| 3093 | |
| 3094 | * A _netdev option is now supported in /etc/crypttab that operates in a |
| 3095 | similar way as the same option in /etc/fstab: it permits configuring |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3096 | encrypted devices that need to be ordered after the network is up. |
| 3097 | Following this logic, two new special targets |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3098 | remote-cryptsetup-pre.target and remote-cryptsetup.target have been |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3099 | added that are to cryptsetup.target what remote-fs.target and |
| 3100 | remote-fs-pre.target are to local-fs.target. |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3101 | |
| 3102 | * Service units gained a new UnsetEnvironment= setting which permits |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3103 | unsetting specific environment variables for services that are |
| 3104 | normally passed to it (for example in order to mask out locale |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3105 | settings for specific services that can't deal with it). |
| 3106 | |
| 3107 | * Units acquired a new boolean option IPAccounting=. When turned on, IP |
| 3108 | traffic accounting (packet count as well as byte count) is done for |
| 3109 | the service, and shown as part of "systemctl status" or "systemd-run |
| 3110 | --wait". |
| 3111 | |
| 3112 | * Service units acquired two new options IPAddressAllow= and |
| 3113 | IPAddressDeny=, taking a list of IPv4 or IPv6 addresses and masks, |
| 3114 | for configuring a simple IP access control list for all sockets of |
| 3115 | the unit. These options are available also on .slice and .socket |
| 3116 | units, permitting flexible access list configuration for individual |
| 3117 | services as well as groups of services (as defined by a slice unit), |
| 3118 | including system-wide. Note that IP ACLs configured this way are |
| 3119 | enforced on every single IPv4 and IPv6 socket created by any process |
| 3120 | of the service unit, and apply to ingress as well as egress traffic. |
| 3121 | |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3122 | * If CPUAccounting= or IPAccounting= is turned on for a unit a new |
Zbigniew Jędrzejewski-Szmek | 608f70e | 2017-10-05 15:41:33 +0200 | [diff] [blame] | 3123 | structured log message is generated each time the unit is stopped, |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3124 | containing information about the consumed resources of this |
| 3125 | invocation. |
| 3126 | |
| 3127 | * A new setting KeyringMode= has been added to unit files, which may be |
| 3128 | used to control how the kernel keyring is set up for executed |
| 3129 | processes. |
| 3130 | |
Lennart Poettering | e06fafb | 2017-10-02 16:30:01 +0200 | [diff] [blame] | 3131 | * "systemctl poweroff", "systemctl reboot", "systemctl halt", |
| 3132 | "systemctl kexec" and "systemctl exit" are now always asynchronous in |
| 3133 | behaviour (that is: these commands return immediately after the |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3134 | operation was enqueued instead of waiting for the operation to |
| 3135 | complete). Previously, "systemctl poweroff" and "systemctl reboot" |
Lennart Poettering | e06fafb | 2017-10-02 16:30:01 +0200 | [diff] [blame] | 3136 | were asynchronous on systems using systemd-logind (i.e. almost |
| 3137 | always, and like they were on sysvinit), and the other three commands |
| 3138 | were unconditionally synchronous. With this release this is cleaned |
| 3139 | up, and callers will see the same asynchronous behaviour on all |
| 3140 | systems for all five operations. |
| 3141 | |
| 3142 | * systemd-logind gained new Halt() and CanHalt() bus calls for halting |
| 3143 | the system. |
| 3144 | |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3145 | * .timer units now accept calendar specifications in other timezones |
| 3146 | than UTC or the local timezone. |
| 3147 | |
Lennart Poettering | f6e64b7 | 2017-10-04 21:44:29 +0200 | [diff] [blame] | 3148 | * The tmpfiles snippet var.conf has been changed to create |
Zbigniew Jędrzejewski-Szmek | 21723f5 | 2017-10-05 13:16:31 +0200 | [diff] [blame] | 3149 | /var/log/btmp with access mode 0660 instead of 0600. It was owned by |
| 3150 | the "utmp" group already, and it appears to be generally understood |
| 3151 | that members of "utmp" can modify/flush the utmp/wtmp/lastlog/btmp |
| 3152 | databases. Previously this was implemented correctly for all these |
| 3153 | databases excepts btmp, which has been opened up like this now |
| 3154 | too. Note that while the other databases are world-readable |
| 3155 | (i.e. 0644), btmp is not and remains more restrictive. |
Lennart Poettering | f6e64b7 | 2017-10-04 21:44:29 +0200 | [diff] [blame] | 3156 | |
Lennart Poettering | d55b046 | 2017-09-29 21:19:54 +0200 | [diff] [blame] | 3157 | * The systemd-resolve tool gained a new --reset-server-features |
| 3158 | switch. When invoked like this systemd-resolved will forget |
| 3159 | everything it learnt about the features supported by the configured |
| 3160 | upstream DNS servers, and restarts the feature probing logic on the |
Lennart Poettering | cf84484 | 2017-10-05 16:53:32 +0200 | [diff] [blame] | 3161 | next resolver look-up for them at the highest feature level |
| 3162 | again. |
| 3163 | |
| 3164 | * The status dump systemd-resolved sends to the logs upon receiving |
| 3165 | SIGUSR1 now also includes information about all DNS servers it is |
| 3166 | configured to use, and the features levels it probed for them. |
Lennart Poettering | d55b046 | 2017-09-29 21:19:54 +0200 | [diff] [blame] | 3167 | |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3168 | Contributions from: Abdó Roig-Maranges, Alan Jenkins, Alexander |
| 3169 | Kuleshov, Andreas Rammhold, Andrew Jeddeloh, Andrew Soutar, Ansgar |
Lennart Poettering | 76451c1 | 2017-10-05 17:38:40 +0200 | [diff] [blame] | 3170 | Burchardt, Beniamino Galvani, Benjamin Berg, Benjamin Robin, Charles |
| 3171 | Huber, Christian Hesse, Daniel Berrange, Daniel Kahn Gillmor, Daniel |
| 3172 | Mack, Daniel Rusek, Daniel Șerbănescu, Davide Cavalca, Dimitri John |
| 3173 | Ledkov, Diogo Pereira, Djalal Harouni, Dmitriy Geels, Dmitry Torokhov, |
| 3174 | ettavolt, Evgeny Vereshchagin, Fabio Kung, Felipe Sateler, Franck Bui, |
| 3175 | Hans de Goede, Harald Hoyer, Insun Pyo, Ivan Kurnosov, Ivan Shapovalov, |
| 3176 | Jakub Wilk, Jan Synacek, Jason Gunthorpe, Jeremy Bicha, Jérémy Rosen, |
| 3177 | John Lin, jonasBoss, Jonathan Lebon, Jonathan Teh, Jon Ringle, Jörg |
| 3178 | Thalheim, Jouke Witteveen, juga0, Justin Capella, Justin Michaud, |
| 3179 | Kai-Heng Feng, Lennart Poettering, Lion Yang, Luca Bruno, Lucas |
| 3180 | Werkmeister, Lukáš Nykrýn, Marcel Hollerbach, Marcus Lundblad, Martin |
| 3181 | Pitt, Michael Biebl, Michael Grzeschik, Michal Sekletar, Mike Gilbert, |
| 3182 | Neil Brown, Nicolas Iooss, Patrik Flykt, pEJipE, Piotr Drąg, Russell |
| 3183 | Stuart, S. Fan, Shengyao Xue, Stefan Pietsch, Susant Sahani, Tejun Heo, |
| 3184 | Thomas Miller, Thomas Sailer, Tobias Hunger, Tomasz Pala, Tom |
| 3185 | Gundersen, Tommi Rantala, Topi Miettinen, Torstein Husebø, userwithuid, |
| 3186 | Vasilis Liaskovitis, Vito Caputo, WaLyong Cho, William Douglas, Xiang |
| 3187 | Fan, Yu Watanabe, Zbigniew Jędrzejewski-Szmek |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3188 | |
Lennart Poettering | c1719d8 | 2017-10-06 10:18:04 +0200 | [diff] [blame] | 3189 | — Berlin, 2017-10-06 |
Lennart Poettering | fccf541 | 2017-09-28 11:26:02 +0200 | [diff] [blame] | 3190 | |
Lennart Poettering | 4b4da29 | 2017-06-27 23:06:55 +0200 | [diff] [blame] | 3191 | CHANGES WITH 234: |
| 3192 | |
| 3193 | * Meson is now supported as build system in addition to Automake. It is |
| 3194 | our plan to remove Automake in one of our next releases, so that |
| 3195 | Meson becomes our exclusive build system. Hence, please start using |
| 3196 | the Meson build system in your downstream packaging. There's plenty |
| 3197 | of documentation around how to use Meson, the extremely brief |
| 3198 | summary: |
| 3199 | |
| 3200 | ./autogen.sh && ./configure && make && sudo make install |
| 3201 | |
| 3202 | becomes: |
| 3203 | |
| 3204 | meson build && ninja -C build && sudo ninja -C build install |
| 3205 | |
| 3206 | * Unit files gained support for a new JobRunningTimeoutUSec= setting, |
| 3207 | which permits configuring a timeout on the time a job is |
| 3208 | running. This is particularly useful for setting timeouts on jobs for |
| 3209 | .device units. |
| 3210 | |
| 3211 | * Unit files gained two new options ConditionUser= and ConditionGroup= |
| 3212 | for conditionalizing units based on the identity of the user/group |
| 3213 | running a systemd user instance. |
| 3214 | |
| 3215 | * systemd-networkd now understands a new FlowLabel= setting in the |
| 3216 | [VXLAN] section of .network files, as well as a Priority= in |
| 3217 | [Bridge], GVRP= + MVRP= + LooseBinding= + ReorderHeader= in [VLAN] |
| 3218 | and GatewayOnlink= + IPv6Preference= + Protocol= in [Route]. It also |
| 3219 | gained support for configuration of GENEVE links, and IPv6 address |
| 3220 | labels. The [Network] section gained the new IPv6ProxyNDP= setting. |
| 3221 | |
Zbigniew Jędrzejewski-Szmek | 9f09a95 | 2017-06-30 13:36:42 -0400 | [diff] [blame] | 3222 | * .link files now understand a new Port= setting. |
Lennart Poettering | 4b4da29 | 2017-06-27 23:06:55 +0200 | [diff] [blame] | 3223 | |
| 3224 | * systemd-networkd's DHCP support gained support for DHCP option 119 |
| 3225 | (domain search list). |
| 3226 | |
| 3227 | * systemd-networkd gained support for serving IPv6 address ranges using |
Michael Biebl | bc99dac | 2018-06-12 15:41:38 +0200 | [diff] [blame] | 3228 | the Router Advertisement protocol. The new .network configuration |
Lennart Poettering | 4b4da29 | 2017-06-27 23:06:55 +0200 | [diff] [blame] | 3229 | section [IPv6Prefix] may be used to configure the ranges to |
| 3230 | serve. This is implemented based on a new, minimal, native server |
| 3231 | implementation of RA. |
| 3232 | |
| 3233 | * journalctl's --output= switch gained support for a new parameter |
| 3234 | "short-iso-precise" for a mode where timestamps are shown as precise |
| 3235 | ISO date values. |
| 3236 | |
| 3237 | * systemd-udevd's "net_id" builtin may now generate stable network |
| 3238 | interface names from IBM PowerVM VIO devices as well as ACPI platform |
| 3239 | devices. |
| 3240 | |
| 3241 | * MulticastDNS support in systemd-resolved may now be explicitly |
| 3242 | enabled/disabled using the new MulticastDNS= configuration file |
| 3243 | option. |
| 3244 | |
| 3245 | * systemd-resolved may now optionally use libidn2 instead of the libidn |
Zbigniew Jędrzejewski-Szmek | 7f7ab22 | 2017-07-12 03:25:59 -0400 | [diff] [blame] | 3246 | for processing internationalized domain names. Support for libidn2 |
| 3247 | should be considered experimental and should not be enabled by |
| 3248 | default yet. |
Lennart Poettering | 4b4da29 | 2017-06-27 23:06:55 +0200 | [diff] [blame] | 3249 | |
| 3250 | * "machinectl pull-tar" and related call may now do verification of |
| 3251 | downloaded images using SUSE-style .sha256 checksum files in addition |
| 3252 | to the already existing support for validating using Ubuntu-style |
| 3253 | SHA256SUMS files. |
| 3254 | |
| 3255 | * sd-bus gained support for a new sd_bus_message_appendv() call which |
| 3256 | is va_list equivalent of sd_bus_message_append(). |
| 3257 | |
| 3258 | * sd-boot gained support for validating images using SHIM/MOK. |
| 3259 | |
| 3260 | * The SMACK code learnt support for "onlycap". |
| 3261 | |
| 3262 | * systemd-mount --umount is now much smarter in figuring out how to |
| 3263 | properly unmount a device given its mount or device path. |
Zbigniew Jędrzejewski-Szmek | 5486a31 | 2017-05-12 08:31:46 -0400 | [diff] [blame] | 3264 | |
| 3265 | * The code to call libnss_dns as a fallback from libnss_resolve when |
| 3266 | the communication with systemd-resolved fails was removed. This |
| 3267 | fallback was redundant and interfered with the [!UNAVAIL=return] |
| 3268 | suffix. See nss-resolve(8) for the recommended configuration. |
| 3269 | |
Zbigniew Jędrzejewski-Szmek | 9f09a95 | 2017-06-30 13:36:42 -0400 | [diff] [blame] | 3270 | * systemd-logind may now be restarted without losing state. It stores |
| 3271 | the file descriptors for devices it manages in the system manager |
Thomas H. P. Andersen | 38d9338 | 2017-07-03 23:35:05 +0200 | [diff] [blame] | 3272 | using the FDSTORE= mechanism. Please note that further changes in |
Zbigniew Jędrzejewski-Szmek | 9f09a95 | 2017-06-30 13:36:42 -0400 | [diff] [blame] | 3273 | other components may be required to make use of this (for example |
| 3274 | Xorg has code to listen for stops of systemd-logind and terminate |
| 3275 | itself when logind is stopped or restarted, in order to avoid using |
| 3276 | stale file descriptors for graphical devices, which is now |
| 3277 | counterproductive and must be reverted in order for restarts of |
| 3278 | systemd-logind to be safe. See |
| 3279 | https://cgit.freedesktop.org/xorg/xserver/commit/?id=dc48bd653c7e101.) |
| 3280 | |
Zbigniew Jędrzejewski-Szmek | d271c5d | 2019-03-08 15:37:35 +0100 | [diff] [blame] | 3281 | * All kernel-install plugins are called with the environment variable |
Yu Watanabe | 9d8813b | 2017-05-30 22:45:10 +0900 | [diff] [blame] | 3282 | KERNEL_INSTALL_MACHINE_ID which is set to the machine ID given by |
Zbigniew Jędrzejewski-Szmek | d271c5d | 2019-03-08 15:37:35 +0100 | [diff] [blame] | 3283 | /etc/machine-id. If the machine ID could not be determined, |
| 3284 | $KERNEL_INSTALL_MACHINE_ID will be empty. Plugins should not put |
| 3285 | anything in the entry directory (passed as the second argument) if |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 3286 | $KERNEL_INSTALL_MACHINE_ID is empty. For backwards compatibility, a |
Zbigniew Jędrzejewski-Szmek | d271c5d | 2019-03-08 15:37:35 +0100 | [diff] [blame] | 3287 | temporary directory is passed as the entry directory and removed |
| 3288 | after all the plugins exit. |
Yu Watanabe | 9d8813b | 2017-05-30 22:45:10 +0900 | [diff] [blame] | 3289 | |
Lennart Poettering | 184d2c1 | 2017-07-03 11:19:20 +0200 | [diff] [blame] | 3290 | Contributions from: Adrian Heine né Lang, Aggelos Avgerinos, Alexander |
Lennart Poettering | ac172e5 | 2017-07-11 19:17:58 +0200 | [diff] [blame] | 3291 | Kurtz, Alexandros Frantzis, Alexey Brodkin, Alex Lu, Amir Pakdel, Amir |
| 3292 | Yalon, Anchor Cat, Anthony Parsons, Bastien Nocera, Benjamin Gilbert, |
| 3293 | Benjamin Robin, Boucman, Charles Plessy, Chris Chiu, Chris Lamb, |
| 3294 | Christian Brauner, Christian Hesse, Colin Walters, Daniel Drake, |
Lennart Poettering | 184d2c1 | 2017-07-03 11:19:20 +0200 | [diff] [blame] | 3295 | Danielle Church, Daniel Molkentin, Daniel Rusek, Daniel Wang, Davide |
| 3296 | Cavalca, David Herrmann, David Michael, Dax Kelson, Dimitri John |
| 3297 | Ledkov, Djalal Harouni, Dušan Kazik, Elias Probst, Evgeny Vereshchagin, |
| 3298 | Federico Di Pierro, Felipe Sateler, Felix Zhang, Franck Bui, Gary |
Lennart Poettering | ac172e5 | 2017-07-11 19:17:58 +0200 | [diff] [blame] | 3299 | Tierney, George McCollister, Giedrius Statkevičius, Hans de Goede, |
| 3300 | hecke, Hendrik Westerberg, Hristo Venev, Ian Wienand, Insun Pyo, Ivan |
| 3301 | Shapovalov, James Cowgill, James Hemsing, Janne Heß, Jan Synacek, Jason |
| 3302 | Reeder, João Paulo Rechi Vita, John Paul Adrian Glaubitz, Jörg |
| 3303 | Thalheim, Josef Andersson, Josef Gajdusek, Julian Mehne, Kai Krakow, |
| 3304 | Krzysztof Jackiewicz, Lars Karlitski, Lennart Poettering, Lluís Gili, |
| 3305 | Lucas Werkmeister, Lukáš Nykrýn, Łukasz Stelmach, Mantas Mikulėnas, |
| 3306 | Marcin Bachry, Marcus Cooper, Mark Stosberg, Martin Pitt, Matija Skala, |
| 3307 | Matt Clarkson, Matthew Garrett, Matthias Greiner, Matthijs van Duin, |
| 3308 | Max Resch, Michael Biebl, Michal Koutný, Michal Sekletar, Michal |
| 3309 | Soltys, Michal Suchanek, Mike Gilbert, Nate Clark, Nathaniel R. Lewis, |
| 3310 | Neil Brown, Nikolai Kondrashov, Pascal S. de Kloe, Pat Riehecky, Patrik |
| 3311 | Flykt, Paul Kocialkowski, Peter Hutterer, Philip Withnall, Piotr |
| 3312 | Szydełko, Rafael Fontenelle, Ray Strode, Richard Maw, Roelf Wichertjes, |
| 3313 | Ronny Chevalier, Sarang S. Dalal, Sjoerd Simons, slodki, Stefan |
| 3314 | Schweter, Susant Sahani, Ted Wood, Thomas Blume, Thomas Haller, Thomas |
Lennart Poettering | 184d2c1 | 2017-07-03 11:19:20 +0200 | [diff] [blame] | 3315 | H. P. Andersen, Timothée Ravier, Tobias Jungel, Tobias Stoeckmann, Tom |
| 3316 | Gundersen, Tom Yan, Torstein Husebø, Umut Tezduyar Lindskog, |
Lennart Poettering | ac172e5 | 2017-07-11 19:17:58 +0200 | [diff] [blame] | 3317 | userwithuid, Vito Caputo, Waldemar Brodkorb, WaLyong Cho, Yu, Li-Yu, |
| 3318 | Yusuke Nojima, Yu Watanabe, Zbigniew Jędrzejewski-Szmek, Дамјан |
| 3319 | Георгиевски |
Lennart Poettering | 4b4da29 | 2017-06-27 23:06:55 +0200 | [diff] [blame] | 3320 | |
Lennart Poettering | ac172e5 | 2017-07-11 19:17:58 +0200 | [diff] [blame] | 3321 | — Berlin, 2017-07-12 |
Lennart Poettering | 4b4da29 | 2017-06-27 23:06:55 +0200 | [diff] [blame] | 3322 | |
Lennart Poettering | a2b5344 | 2017-03-01 17:21:29 +0100 | [diff] [blame] | 3323 | CHANGES WITH 233: |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3324 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3325 | * The "hybrid" control group mode has been modified to improve |
| 3326 | compatibility with "legacy" cgroups-v1 setups. Specifically, the |
| 3327 | "hybrid" setup of /sys/fs/cgroup is now pretty much identical to |
| 3328 | "legacy" (including /sys/fs/cgroup/systemd as "name=systemd" named |
| 3329 | cgroups-v1 hierarchy), the only externally visible change being that |
| 3330 | the cgroups-v2 hierarchy is also mounted, to |
| 3331 | /sys/fs/cgroup/unified. This should provide a large degree of |
| 3332 | compatibility with "legacy" cgroups-v1, while taking benefit of the |
| 3333 | better management capabilities of cgroups-v2. |
| 3334 | |
| 3335 | * The default control group setup mode may be selected both a boot-time |
| 3336 | via a set of kernel command line parameters (specifically: |
| 3337 | systemd.unified_cgroup_hierarchy= and |
| 3338 | systemd.legacy_systemd_cgroup_controller=), as well as a compile-time |
| 3339 | default selected on the configure command line |
| 3340 | (--with-default-hierarchy=). The upstream default is "hybrid" |
| 3341 | (i.e. the cgroups-v1 + cgroups-v2 mixture discussed above) now, but |
| 3342 | this will change in a future systemd version to be "unified" (pure |
| 3343 | cgroups-v2 mode). The third option for the compile time option is |
| 3344 | "legacy", to enter pure cgroups-v1 mode. We recommend downstream |
| 3345 | distributions to default to "hybrid" mode for release distributions, |
| 3346 | starting with v233. We recommend "unified" for development |
| 3347 | distributions (specifically: distributions such as Fedora's rawhide) |
| 3348 | as that's where things are headed in the long run. Use "legacy" for |
| 3349 | greatest stability and compatibility only. |
| 3350 | |
| 3351 | * Note one current limitation of "unified" and "hybrid" control group |
| 3352 | setup modes: the kernel currently does not permit the systemd --user |
| 3353 | instance (i.e. unprivileged code) to migrate processes between two |
| 3354 | disconnected cgroup subtrees, even if both are managed and owned by |
| 3355 | the user. This effectively means "systemd-run --user --scope" doesn't |
| 3356 | work when invoked from outside of any "systemd --user" service or |
| 3357 | scope. Specifically, it is not supported from session scopes. We are |
| 3358 | working on fixing this in a future systemd version. (See #3388 for |
| 3359 | further details about this.) |
| 3360 | |
Mike Gilbert | fb7c4ef | 2016-12-30 08:52:36 -0500 | [diff] [blame] | 3361 | * DBus policy files are now installed into /usr rather than /etc. Make |
| 3362 | sure your system has dbus >= 1.9.18 running before upgrading to this |
| 3363 | version, or override the install path with --with-dbuspolicydir= . |
| 3364 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3365 | * All python scripts shipped with systemd (specifically: the various |
| 3366 | tests written in Python) now require Python 3. |
| 3367 | |
Lennart Poettering | d60c527 | 2017-03-01 22:43:06 +0100 | [diff] [blame] | 3368 | * systemd unit tests can now run standalone (without the source or |
Zbigniew Jędrzejewski-Szmek | 4dfe64f | 2017-03-01 16:29:38 -0500 | [diff] [blame] | 3369 | build directories), and can be installed into /usr/lib/systemd/tests/ |
| 3370 | with 'make install-tests'. |
| 3371 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3372 | * Note that from this version on, CONFIG_CRYPTO_USER_API_HASH, |
| 3373 | CONFIG_CRYPTO_HMAC and CONFIG_CRYPTO_SHA256 need to be enabled in the |
| 3374 | kernel. |
| 3375 | |
| 3376 | * Support for the %c, %r, %R specifiers in unit files has been |
| 3377 | removed. Specifiers are not supposed to be dependent on configuration |
| 3378 | in the unit file itself (so that they resolve the same regardless |
| 3379 | where used in the unit files), but these specifiers were influenced |
| 3380 | by the Slice= option. |
| 3381 | |
Lennart Poettering | 5cfc0a8 | 2016-12-12 13:40:58 +0100 | [diff] [blame] | 3382 | * The shell invoked by debug-shell.service now defaults to /bin/sh in |
| 3383 | all cases. If distributions want to use a different shell for this |
| 3384 | purpose (for example Fedora's /sbin/sushell) they need to specify |
| 3385 | this explicitly at configure time using --with-debug-shell=. |
| 3386 | |
Franck Bui | 2bcc330 | 2016-11-13 09:32:52 +0100 | [diff] [blame] | 3387 | * The confirmation spawn prompt has been reworked to offer the |
| 3388 | following choices: |
| 3389 | |
Franck Bui | b0eb294 | 2016-11-15 09:29:04 +0100 | [diff] [blame] | 3390 | (c)ontinue, proceed without asking anymore |
Franck Bui | dd6f9ac | 2016-11-12 15:08:29 +0100 | [diff] [blame] | 3391 | (D)ump, show the state of the unit |
Franck Bui | 2bcc330 | 2016-11-13 09:32:52 +0100 | [diff] [blame] | 3392 | (f)ail, don't execute the command and pretend it failed |
Franck Bui | d172b17 | 2016-11-07 17:14:59 +0100 | [diff] [blame] | 3393 | (h)elp |
Franck Bui | eedf223 | 2016-11-12 14:55:12 +0100 | [diff] [blame] | 3394 | (i)nfo, show a short summary of the unit |
Franck Bui | 56fde33 | 2016-11-13 16:28:04 +0100 | [diff] [blame] | 3395 | (j)obs, show jobs that are in progress |
Franck Bui | 2bcc330 | 2016-11-13 09:32:52 +0100 | [diff] [blame] | 3396 | (s)kip, don't execute the command and pretend it succeeded |
| 3397 | (y)es, execute the command |
| 3398 | |
| 3399 | The 'n' choice for the confirmation spawn prompt has been removed, |
| 3400 | because its meaning was confusing. |
| 3401 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3402 | The prompt may now also be redirected to an alternative console by |
| 3403 | specifying the console as parameter to systemd.confirm_spawn=. |
| 3404 | |
Jouke Witteveen | 8e458bf | 2016-11-28 18:54:37 +0100 | [diff] [blame] | 3405 | * Services of Type=notify require a READY=1 notification to be sent |
| 3406 | during startup. If no such message is sent, the service now fails, |
| 3407 | even if the main process exited with a successful exit code. |
| 3408 | |
Lennart Poettering | 85266f9 | 2017-02-21 21:00:09 +0100 | [diff] [blame] | 3409 | * Services that fail to start up correctly now always have their |
| 3410 | ExecStopPost= commands executed. Previously, they'd enter "failed" |
| 3411 | state directly, without executing these commands. |
| 3412 | |
Martin Pitt | baf3278 | 2017-02-21 15:41:44 +0100 | [diff] [blame] | 3413 | * The option MulticastDNS= of network configuration files has acquired |
| 3414 | an actual implementation. With MulticastDNS=yes a host can resolve |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3415 | names of remote hosts and reply to mDNS A and AAAA requests. |
Dmitry Rozhkov | fa8b449 | 2017-01-18 17:27:40 +0200 | [diff] [blame] | 3416 | |
Lennart Poettering | 631b676 | 2016-11-24 18:47:48 +0100 | [diff] [blame] | 3417 | * When units are about to be started an additional check is now done to |
| 3418 | ensure that all dependencies of type BindsTo= (when used in |
| 3419 | combination with After=) have been started. |
| 3420 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3421 | * systemd-analyze gained a new verb "syscall-filter" which shows which |
| 3422 | system call groups are defined for the SystemCallFilter= unit file |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3423 | setting, and which system calls they contain. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3424 | |
| 3425 | * A new system call filter group "@filesystem" has been added, |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3426 | consisting of various file system related system calls. Group |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3427 | "@reboot" has been added, covering reboot, kexec and shutdown related |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3428 | calls. Finally, group "@swap" has been added covering swap |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3429 | configuration related calls. |
| 3430 | |
| 3431 | * A new unit file option RestrictNamespaces= has been added that may be |
| 3432 | used to restrict access to the various process namespace types the |
| 3433 | Linux kernel provides. Specifically, it may be used to take away the |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3434 | right for a service unit to create additional file system, network, |
| 3435 | user, and other namespaces. This sandboxing option is particularly |
| 3436 | relevant due to the high amount of recently discovered namespacing |
| 3437 | related vulnerabilities in the kernel. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3438 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3439 | * systemd-udev's .link files gained support for a new AutoNegotiation= |
| 3440 | setting for configuring Ethernet auto-negotiation. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3441 | |
| 3442 | * systemd-networkd's .network files gained support for a new |
| 3443 | ListenPort= setting in the [DHCP] section to explicitly configure the |
| 3444 | UDP client port the DHCP client shall listen on. |
| 3445 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3446 | * .network files gained a new Unmanaged= boolean setting for explicitly |
| 3447 | excluding one or more interfaces from management by systemd-networkd. |
| 3448 | |
| 3449 | * The systemd-networkd ProxyARP= option has been renamed to |
| 3450 | IPV4ProxyARP=. Similarly, VXLAN-specific option ARPProxy= has been |
| 3451 | renamed to ReduceARPProxy=. The old names continue to be available |
| 3452 | for compatibility. |
| 3453 | |
| 3454 | * systemd-networkd gained support for configuring IPv6 Proxy NDP |
| 3455 | addresses via the new IPv6ProxyNDPAddress= .network file setting. |
| 3456 | |
| 3457 | * systemd-networkd's bonding device support gained support for two new |
| 3458 | configuration options ActiveSlave= and PrimarySlave=. |
| 3459 | |
| 3460 | * The various options in the [Match] section of .network files gained |
| 3461 | support for negative matching. |
| 3462 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3463 | * New systemd-specific mount options are now understood in /etc/fstab: |
| 3464 | |
| 3465 | x-systemd.mount-timeout= may be used to configure the maximum |
| 3466 | permitted runtime of the mount command. |
| 3467 | |
| 3468 | x-systemd.device-bound may be set to bind a mount point to its |
| 3469 | backing device unit, in order to automatically remove a mount point |
| 3470 | if its backing device is unplugged. This option may also be |
| 3471 | configured through the new SYSTEMD_MOUNT_DEVICE_BOUND udev property |
| 3472 | on the block device, which is now automatically set for all CDROM |
| 3473 | drives, so that mounted CDs are automatically unmounted when they are |
| 3474 | removed from the drive. |
| 3475 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3476 | x-systemd.after= and x-systemd.before= may be used to explicitly |
| 3477 | order a mount after or before another unit or mount point. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3478 | |
| 3479 | * Enqueued start jobs for device units are now automatically garbage |
| 3480 | collected if there are no jobs waiting for them anymore. |
| 3481 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3482 | * systemctl list-jobs gained two new switches: with --after, for every |
| 3483 | queued job the jobs it's waiting for are shown; with --before the |
| 3484 | jobs which it's blocking are shown. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3485 | |
| 3486 | * systemd-nspawn gained support for ephemeral boots from disk images |
| 3487 | (or in other words: --ephemeral and --image= may now be |
| 3488 | combined). Moreover, ephemeral boots are now supported for normal |
| 3489 | directories, even if the backing file system is not btrfs. Of course, |
Martin Pitt | baf3278 | 2017-02-21 15:41:44 +0100 | [diff] [blame] | 3490 | if the file system does not support file system snapshots or |
| 3491 | reflinks, the initial copy operation will be relatively expensive, but |
| 3492 | this should still be suitable for many use cases. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3493 | |
| 3494 | * Calendar time specifications in .timer units now support |
| 3495 | specifications relative to the end of a month by using "~" instead of |
| 3496 | "-" as separator between month and day. For example, "*-02~03" means |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3497 | "the third last day in February". In addition a new syntax for |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3498 | repeated events has been added using the "/" character. For example, |
| 3499 | "9..17/2:00" means "every two hours from 9am to 5pm". |
| 3500 | |
| 3501 | * systemd-socket-proxyd gained a new parameter --connections-max= for |
| 3502 | configuring the maximum number of concurrent connections. |
| 3503 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3504 | * sd-id128 gained a new API for generating unique IDs for the host in a |
| 3505 | way that does not leak the machine ID. Specifically, |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3506 | sd_id128_get_machine_app_specific() derives an ID based on the |
Martin Pitt | baf3278 | 2017-02-21 15:41:44 +0100 | [diff] [blame] | 3507 | machine ID a in well-defined, non-reversible, stable way. This is |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3508 | useful whenever an identifier for the host is needed but where the |
| 3509 | identifier shall not be useful to identify the system beyond the |
| 3510 | scope of the application itself. (Internally this uses HMAC-SHA256 as |
| 3511 | keyed hash function using the machine ID as input.) |
| 3512 | |
| 3513 | * NotifyAccess= gained a new supported value "exec". When set |
| 3514 | notifications are accepted from all processes systemd itself invoked, |
| 3515 | including all control processes. |
| 3516 | |
| 3517 | * .nspawn files gained support for defining overlay mounts using the |
| 3518 | Overlay= and OverlayReadOnly= options. Previously this functionality |
| 3519 | was only available on the systemd-nspawn command line. |
| 3520 | |
| 3521 | * systemd-nspawn's --bind= and --overlay= options gained support for |
| 3522 | bind/overlay mounts whose source lies within the container tree by |
| 3523 | prefixing the source path with "+". |
| 3524 | |
| 3525 | * systemd-nspawn's --bind= and --overlay= options gained support for |
| 3526 | automatically allocating a temporary source directory in /var/tmp |
| 3527 | that is removed when the container dies. Specifically, if the source |
| 3528 | directory is specified as empty string this mechanism is selected. An |
| 3529 | example usage is --overlay=+/var::/var, which creates an overlay |
Frantisek Sumsal | 86b52a3 | 2020-04-21 20:46:53 +0200 | [diff] [blame] | 3530 | mount based on the original /var contained in the image, overlaid |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3531 | with a temporary directory in the host's /var/tmp. This way changes |
| 3532 | to /var are automatically flushed when the container shuts down. |
| 3533 | |
Martin Pitt | baf3278 | 2017-02-21 15:41:44 +0100 | [diff] [blame] | 3534 | * systemd-nspawn --image= option does now permit raw file system block |
| 3535 | devices (in addition to images containing partition tables, as |
| 3536 | before). |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3537 | |
| 3538 | * The disk image dissection logic in systemd-nspawn gained support for |
| 3539 | automatically setting up LUKS encrypted as well as Verity protected |
| 3540 | partitions. When a container is booted from an encrypted image the |
| 3541 | passphrase is queried at start-up time. When a container with Verity |
| 3542 | data is started, the root hash is search in a ".roothash" file |
| 3543 | accompanying the disk image (alternatively, pass the root hash via |
| 3544 | the new --root-hash= command line option). |
| 3545 | |
| 3546 | * A new tool /usr/lib/systemd/systemd-dissect has been added that may |
| 3547 | be used to dissect disk images the same way as systemd-nspawn does |
| 3548 | it, following the Bootable Partition Specification. It may even be |
| 3549 | used to mount disk images with complex partition setups (including |
| 3550 | LUKS and Verity partitions) to a local host directory, in order to |
| 3551 | inspect them. This tool is not considered public API (yet), and is |
| 3552 | thus not installed into /usr/bin. Please do not rely on its |
Thomas H. P. Andersen | 3b31c46 | 2017-02-25 15:19:26 +0100 | [diff] [blame] | 3553 | existence, since it might go away or be changed in later systemd |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3554 | versions. |
| 3555 | |
| 3556 | * A new generator "systemd-verity-generator" has been added, similar in |
Martin Pitt | baf3278 | 2017-02-21 15:41:44 +0100 | [diff] [blame] | 3557 | style to "systemd-cryptsetup-generator", permitting automatic setup of |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3558 | Verity root partitions when systemd boots up. In order to make use of |
| 3559 | this your partition setup should follow the Discoverable Partitions |
| 3560 | Specification, and the GPT partition ID of the root file system |
| 3561 | partition should be identical to the upper 128bit of the Verity root |
| 3562 | hash. The GPT partition ID of the Verity partition protecting it |
| 3563 | should be the lower 128bit of the Verity root hash. If the partition |
| 3564 | image follows this model it is sufficient to specify a single |
| 3565 | "roothash=" kernel command line argument to both configure which root |
| 3566 | image and verity partition to use as well as the root hash for |
| 3567 | it. Note that systemd-nspawn's Verity support follows the same |
| 3568 | semantics, meaning that disk images with proper Verity data in place |
| 3569 | may be booted in containers with systemd-nspawn as well as on |
| 3570 | physical systems via the verity generator. Also note that the "mkosi" |
| 3571 | tool available at https://github.com/systemd/mkosi has been updated |
| 3572 | to generate Verity protected disk images following this scheme. In |
| 3573 | fact, it has been updated to generate disk images that optionally |
| 3574 | implement a complete UEFI SecureBoot trust chain, involving a signed |
| 3575 | kernel and initrd image that incorporates such a root hash as well as |
| 3576 | a Verity-enabled root partition. |
| 3577 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3578 | * The hardware database (hwdb) udev supports has been updated to carry |
| 3579 | accelerometer quirks. |
| 3580 | |
| 3581 | * All system services are now run with a fresh kernel keyring set up |
| 3582 | for them. The invocation ID is stored by default in it, thus |
| 3583 | providing a safe, non-overridable way to determine the invocation |
| 3584 | ID of each service. |
| 3585 | |
| 3586 | * Service unit files gained new BindPaths= and BindReadOnlyPaths= |
| 3587 | options for bind mounting arbitrary paths in a service-specific |
| 3588 | way. When these options are used, arbitrary host or service files and |
| 3589 | directories may be mounted to arbitrary locations in the service's |
| 3590 | view. |
| 3591 | |
| 3592 | * Documentation has been added that lists all of systemd's low-level |
| 3593 | environment variables: |
| 3594 | |
killermoehre | a8a2737 | 2018-09-13 13:53:03 +0200 | [diff] [blame] | 3595 | https://github.com/systemd/systemd/blob/master/docs/ENVIRONMENT.md |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3596 | |
| 3597 | * sd-daemon gained a new API sd_is_socket_sockaddr() for determining |
| 3598 | whether a specific socket file descriptor matches a specified socket |
| 3599 | address. |
| 3600 | |
| 3601 | * systemd-firstboot has been updated to check for the |
| 3602 | systemd.firstboot= kernel command line option. It accepts a boolean |
| 3603 | and when set to false the first boot questions are skipped. |
| 3604 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3605 | * systemd-fstab-generator has been updated to check for the |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3606 | systemd.volatile= kernel command line option, which either takes an |
| 3607 | optional boolean parameter or the special value "state". If used the |
| 3608 | system may be booted in a "volatile" boot mode. Specifically, |
| 3609 | "systemd.volatile" is used, the root directory will be mounted as |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3610 | tmpfs, and only /usr is mounted from the actual root file system. If |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3611 | "systemd.volatile=state" is used, the root directory will be mounted |
| 3612 | as usual, but /var is mounted as tmpfs. This concept provides similar |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3613 | functionality as systemd-nspawn's --volatile= option, but provides it |
| 3614 | on physical boots. Use this option for implementing stateless |
| 3615 | systems, or testing systems with all state and/or configuration reset |
| 3616 | to the defaults. (Note though that many distributions are not |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3617 | prepared to boot up without a populated /etc or /var, though.) |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3618 | |
| 3619 | * systemd-gpt-auto-generator gained support for LUKS encrypted root |
| 3620 | partitions. Previously it only supported LUKS encrypted partitions |
| 3621 | for all other uses, except for the root partition itself. |
| 3622 | |
| 3623 | * Socket units gained support for listening on AF_VSOCK sockets for |
| 3624 | communication in virtualized QEMU environments. |
| 3625 | |
| 3626 | * The "configure" script gained a new option --with-fallback-hostname= |
| 3627 | for specifying the fallback hostname to use if none is configured in |
| 3628 | /etc/hostname. For example, by specifying |
| 3629 | --with-fallback-hostname=fedora it is possible to default to a |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3630 | hostname of "fedora" on pristine installations. |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3631 | |
| 3632 | * systemd-cgls gained support for a new --unit= switch for listing only |
| 3633 | the control groups of a specific unit. Similar --user-unit= has been |
| 3634 | added for listing only the control groups of a specific user unit. |
| 3635 | |
| 3636 | * systemd-mount gained a new --umount switch for unmounting a mount or |
| 3637 | automount point (and all mount/automount points below it). |
| 3638 | |
| 3639 | * systemd will now refuse full configuration reloads (via systemctl |
| 3640 | daemon-reload and related calls) unless at least 16MiB of free space |
| 3641 | are available in /run. This is a safety precaution in order to ensure |
| 3642 | that generators can safely operate after the reload completed. |
| 3643 | |
| 3644 | * A new unit file option RootImage= has been added, which has a similar |
| 3645 | effect as RootDirectory= but mounts the service's root directory from |
| 3646 | a disk image instead of plain directory. This logic reuses the same |
| 3647 | image dissection and mount logic that systemd-nspawn already uses, |
| 3648 | and hence supports any disk images systemd-nspawn supports, including |
| 3649 | those following the Discoverable Partition Specification, as well as |
| 3650 | Verity enabled images. This option enables systemd to run system |
| 3651 | services directly off disk images acting as resource bundles, |
| 3652 | possibly even including full integrity data. |
| 3653 | |
| 3654 | * A new MountAPIVFS= unit file option has been added, taking a boolean |
Martin Pitt | baf3278 | 2017-02-21 15:41:44 +0100 | [diff] [blame] | 3655 | argument. If enabled /proc, /sys and /dev (collectively called the |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3656 | "API VFS") will be mounted for the service. This is only relevant if |
| 3657 | RootDirectory= or RootImage= is used for the service, as these mounts |
| 3658 | are of course in place in the host mount namespace anyway. |
| 3659 | |
| 3660 | * systemd-nspawn gained support for a new --pivot-root= switch. If |
| 3661 | specified the root directory within the container image is pivoted to |
| 3662 | the specified mount point, while the original root disk is moved to a |
| 3663 | different place. This option enables booting of ostree images |
| 3664 | directly with systemd-nspawn. |
| 3665 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3666 | * The systemd build scripts will no longer complain if the NTP server |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3667 | addresses are not changed from the defaults. Google now supports |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3668 | these NTP servers officially. We still recommend downstreams to |
| 3669 | properly register an NTP pool with the NTP pool project though. |
| 3670 | |
Lucas Werkmeister | c1ec34d | 2017-03-02 01:08:32 +0100 | [diff] [blame] | 3671 | * coredumpctl gained a new "--reverse" option for printing the list |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3672 | of coredumps in reverse order. |
| 3673 | |
Lennart Poettering | a2b5344 | 2017-03-01 17:21:29 +0100 | [diff] [blame] | 3674 | * coredumpctl will now show additional information about truncated and |
| 3675 | inaccessible coredumps, as well as coredumps that are still being |
| 3676 | processed. It also gained a new --quiet switch for suppressing |
| 3677 | additional informational message in its output. |
| 3678 | |
| 3679 | * coredumpctl gained support for only showing coredumps newer and/or |
| 3680 | older than specific timestamps, using the new --since= and --until= |
| 3681 | options, reminiscent of journalctl's options by the same name. |
| 3682 | |
Zbigniew Jędrzejewski-Szmek | 23eb30b | 2017-03-01 16:14:12 -0500 | [diff] [blame] | 3683 | * The systemd-coredump logic has been improved so that it may be reused |
| 3684 | to collect backtraces in non-compiled languages, for example in |
| 3685 | scripting languages such as Python. |
| 3686 | |
| 3687 | * machinectl will now show the UID shift of local containers, if user |
| 3688 | namespacing is enabled for them. |
| 3689 | |
| 3690 | * systemd will now optionally run "environment generator" binaries at |
| 3691 | configuration load time. They may be used to add environment |
| 3692 | variables to the environment block passed to services invoked. One |
| 3693 | user environment generator is shipped by default that sets up |
| 3694 | environment variables based on files dropped into /etc/environment.d |
| 3695 | and ~/.config/environment.d/. |
| 3696 | |
| 3697 | * systemd-resolved now includes the new, recently published 2017 DNSSEC |
| 3698 | root key (KSK). |
| 3699 | |
Lennart Poettering | a2b5344 | 2017-03-01 17:21:29 +0100 | [diff] [blame] | 3700 | * hostnamed has been updated to report a new chassis type of |
| 3701 | "convertible" to cover "foldable" laptops that can both act as a |
| 3702 | tablet and as a laptop, such as various Lenovo Yoga devices. |
| 3703 | |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3704 | Contributions from: Adrián López, Alexander Galanin, Alexander |
| 3705 | Kochetkov, Alexandros Frantzis, Andrey Ulanov, Antoine Eiche, Baruch |
| 3706 | Siach, Bastien Nocera, Benjamin Robin, Björn, Brandon Philips, Cédric |
| 3707 | Schieli, Charles (Chas) Williams, Christian Hesse, Daniele Medri, |
| 3708 | Daniel Drake, Daniel Rusek, Daniel Wagner, Dan Streetman, Dave Reisner, |
| 3709 | David Glasser, David Herrmann, David Michael, Djalal Harouni, Dmitry |
| 3710 | Khlebnikov, Dmitry Rozhkov, Dongsu Park, Douglas Christman, Earnestly, |
| 3711 | Emil Soleyman, Eric Cook, Evgeny Vereshchagin, Felipe Sateler, Fionn |
| 3712 | Cleary, Florian Klink, Francesco Brozzu, Franck Bui, Gabriel Rauter, |
Lennart Poettering | a2b5344 | 2017-03-01 17:21:29 +0100 | [diff] [blame] | 3713 | Gianluca Boiano, Giedrius Statkevičius, Graeme Lawes, Hans de Goede, |
| 3714 | Harald Hoyer, Ian Kelling, Ivan Shapovalov, Jakub Wilk, Janne Heß, Jan |
| 3715 | Synacek, Jason Reeder, Jonathan Boulle, Jörg Thalheim, Jouke Witteveen, |
| 3716 | Karl Kraus, Kees Cook, Keith Busch, Kieran Colford, kilian-k, Lennart |
| 3717 | Poettering, Lubomir Rintel, Lucas Werkmeister, Lukas Rusak, Maarten de |
| 3718 | Vries, Maks Naumov, Mantas Mikulėnas, Marc-Andre Lureau, Marcin Bachry, |
| 3719 | Mark Stosberg, Martin Ejdestig, Martin Pitt, Mauricio Faria de |
| 3720 | Oliveira, micah, Michael Biebl, Michael Shields, Michal Schmidt, Michal |
| 3721 | Sekletar, Michel Kraus, Mike Gilbert, Mikko Ylinen, Mirza Krak, |
| 3722 | Namhyung Kim, nikolaof, peoronoob, Peter Hutterer, Peter Körner, Philip |
| 3723 | Withnall, Piotr Drąg, Ray Strode, Reverend Homer, Rike-Benjamin |
| 3724 | Schuppner, Robert Kreuzer, Ronny Chevalier, Ruslan Bilovol, sammynx, |
| 3725 | Sergey Ptashnick, Sergiusz Urbaniak, Stefan Berger, Stefan Hajnoczi, |
| 3726 | Stefan Schweter, Stuart McLaren, Susant Sahani, Sylvain Plantefève, |
| 3727 | Taylor Smock, Tejun Heo, Thomas Blume, Thomas H. P. Andersen, Tibor |
| 3728 | Nagy, Tobias Stoeckmann, Tom Gundersen, Torstein Husebø, Viktar |
| 3729 | Vaŭčkievič, Viktor Mihajlovski, Vitaly Sulimov, Waldemar Brodkorb, |
| 3730 | Walter Garcia-Fontes, Wim de With, Yassine Imounachen, Yi EungJun, |
| 3731 | YunQiang Su, Yu Watanabe, Zbigniew Jędrzejewski-Szmek, Александр |
| 3732 | Тихонов |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3733 | |
Lennart Poettering | a2b5344 | 2017-03-01 17:21:29 +0100 | [diff] [blame] | 3734 | — Berlin, 2017-03-01 |
Lennart Poettering | d08ee7c | 2017-02-21 13:59:12 +0100 | [diff] [blame] | 3735 | |
Lennart Poettering | 54b2459 | 2016-11-03 08:56:26 -0600 | [diff] [blame] | 3736 | CHANGES WITH 232: |
Zbigniew Jędrzejewski-Szmek | 76153ad | 2016-07-26 02:19:33 -0400 | [diff] [blame] | 3737 | |
Lennart Poettering | 05f426d | 2017-02-22 01:36:12 +0100 | [diff] [blame] | 3738 | * udev now runs with MemoryDenyWriteExecute=, RestrictRealtime= and |
| 3739 | RestrictAddressFamilies= enabled. These sandboxing options should |
| 3740 | generally be compatible with the various external udev call-out |
| 3741 | binaries we are aware of, however there may be exceptions, in |
| 3742 | particular when exotic languages for these call-outs are used. In |
| 3743 | this case, consider turning off these settings locally. |
| 3744 | |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3745 | * The new RemoveIPC= option can be used to remove IPC objects owned by |
| 3746 | the user or group of a service when that service exits. |
| 3747 | |
Djalal Harouni | 6fa4411 | 2016-10-21 13:25:23 +0200 | [diff] [blame] | 3748 | * The new ProtectKernelModules= option can be used to disable explicit |
Lennart Poettering | 4c37970 | 2016-10-24 20:06:03 +0200 | [diff] [blame] | 3749 | load and unload operations of kernel modules by a service. In |
| 3750 | addition access to /usr/lib/modules is removed if this option is set. |
Djalal Harouni | 6fa4411 | 2016-10-21 13:25:23 +0200 | [diff] [blame] | 3751 | |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3752 | * ProtectSystem= option gained a new value "strict", which causes the |
| 3753 | whole file system tree with the exception of /dev, /proc, and /sys, |
| 3754 | to be remounted read-only for a service. |
| 3755 | |
Djalal Harouni | e49e2c2 | 2016-10-22 00:43:36 +0200 | [diff] [blame] | 3756 | * The new ProtectKernelTunables= option can be used to disable |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3757 | modification of configuration files in /sys and /proc by a service. |
| 3758 | Various directories and files are remounted read-only, so access is |
| 3759 | restricted even if the file permissions would allow it. |
| 3760 | |
Djalal Harouni | 6fa4411 | 2016-10-21 13:25:23 +0200 | [diff] [blame] | 3761 | * The new ProtectControlGroups= option can be used to disable write |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3762 | access by a service to /sys/fs/cgroup. |
| 3763 | |
| 3764 | * Various systemd services have been hardened with |
| 3765 | ProtectKernelTunables=yes, ProtectControlGroups=yes, |
| 3766 | RestrictAddressFamilies=. |
| 3767 | |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3768 | * Support for dynamically creating users for the lifetime of a service |
| 3769 | has been added. If DynamicUser=yes is specified, user and group IDs |
| 3770 | will be allocated from the range 61184..65519 for the lifetime of the |
| 3771 | service. They can be resolved using the new nss-systemd.so NSS |
| 3772 | module. The module must be enabled in /etc/nsswitch.conf. Services |
| 3773 | started in this way have PrivateTmp= and RemoveIPC= enabled, so that |
| 3774 | any resources allocated by the service will be cleaned up when the |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3775 | service exits. They also have ProtectHome=read-only and |
| 3776 | ProtectSystem=strict enabled, so they are not able to make any |
| 3777 | permanent modifications to the system. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3778 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3779 | * The nss-systemd module also always resolves root and nobody, making |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3780 | it possible to have no /etc/passwd or /etc/group files in minimal |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3781 | container or chroot environments. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3782 | |
| 3783 | * Services may be started with their own user namespace using the new |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3784 | boolean PrivateUsers= option. Only root, nobody, and the uid/gid |
| 3785 | under which the service is running are mapped. All other users are |
| 3786 | mapped to nobody. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3787 | |
| 3788 | * Support for the cgroup namespace has been added to systemd-nspawn. If |
| 3789 | supported by kernel, the container system started by systemd-nspawn |
| 3790 | will have its own view of the cgroup hierarchy. This new behaviour |
| 3791 | can be disabled using $SYSTEMD_NSPAWN_USE_CGNS environment variable. |
| 3792 | |
| 3793 | * The new MemorySwapMax= option can be used to limit the maximum swap |
| 3794 | usage under the unified cgroup hierarchy. |
| 3795 | |
| 3796 | * Support for the CPU controller in the unified cgroup hierarchy has |
| 3797 | been added, via the CPUWeight=, CPUStartupWeight=, CPUAccounting= |
| 3798 | options. This controller requires out-of-tree patches for the kernel |
| 3799 | and the support is provisional. |
| 3800 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3801 | * Mount and automount units may now be created transiently |
| 3802 | (i.e. dynamically at runtime via the bus API, instead of requiring |
| 3803 | unit files in the file system). |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3804 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3805 | * systemd-mount is a new tool which may mount file systems – much like |
| 3806 | mount(8), optionally pulling in additional dependencies through |
| 3807 | transient .mount and .automount units. For example, this tool |
| 3808 | automatically runs fsck on a backing block device before mounting, |
| 3809 | and allows the automount logic to be used dynamically from the |
| 3810 | command line for establishing mount points. This tool is particularly |
| 3811 | useful when dealing with removable media, as it will ensure fsck is |
| 3812 | run – if necessary – before the first access and that the file system |
| 3813 | is quickly unmounted after each access by utilizing the automount |
| 3814 | logic. This maximizes the chance that the file system on the |
| 3815 | removable media stays in a clean state, and if it isn't in a clean |
| 3816 | state is fixed automatically. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3817 | |
| 3818 | * LazyUnmount=yes option for mount units has been added to expose the |
| 3819 | umount --lazy option. Similarly, ForceUnmount=yes exposes the --force |
| 3820 | option. |
| 3821 | |
| 3822 | * /efi will be used as the mount point of the EFI boot partition, if |
| 3823 | the directory is present, and the mount point was not configured |
| 3824 | through other means (e.g. fstab). If /efi directory does not exist, |
| 3825 | /boot will be used as before. This makes it easier to automatically |
| 3826 | mount the EFI partition on systems where /boot is used for something |
| 3827 | else. |
| 3828 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3829 | * When operating on GPT disk images for containers, systemd-nspawn will |
| 3830 | now mount the ESP to /boot or /efi according to the same rules as PID |
| 3831 | 1 running on a host. This allows tools like "bootctl" to operate |
| 3832 | correctly within such containers, in order to make container images |
| 3833 | bootable on physical systems. |
| 3834 | |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3835 | * disk/by-id and disk/by-path symlinks are now created for NVMe drives. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3836 | |
| 3837 | * Two new user session targets have been added to support running |
| 3838 | graphical sessions under the systemd --user instance: |
| 3839 | graphical-session.target and graphical-session-pre.target. See |
| 3840 | systemd.special(7) for a description of how those targets should be |
| 3841 | used. |
| 3842 | |
| 3843 | * The vconsole initialization code has been significantly reworked to |
Thomas H. P. Andersen | d4c0829 | 2016-10-04 20:41:46 +0200 | [diff] [blame] | 3844 | use KD_FONT_OP_GET/SET ioctls instead of KD_FONT_OP_COPY and better |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3845 | support unicode keymaps. Font and keymap configuration will now be |
| 3846 | copied to all allocated virtual consoles. |
| 3847 | |
Elias Probst | 05ecf46 | 2016-10-04 14:37:28 +0200 | [diff] [blame] | 3848 | * FreeBSD's bhyve virtualization is now detected. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3849 | |
Thomas H. P. Andersen | d4c0829 | 2016-10-04 20:41:46 +0200 | [diff] [blame] | 3850 | * Information recorded in the journal for core dumps now includes the |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3851 | contents of /proc/mountinfo and the command line of the process at |
| 3852 | the top of the process hierarchy (which is usually the init process |
| 3853 | of the container). |
| 3854 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3855 | * systemd-journal-gatewayd learned the --directory= option to serve |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3856 | files from the specified location. |
| 3857 | |
| 3858 | * journalctl --root=… can be used to peruse the journal in the |
| 3859 | /var/log/ directories inside of a container tree. This is similar to |
| 3860 | the existing --machine= option, but does not require the container to |
| 3861 | be active. |
| 3862 | |
| 3863 | * The hardware database has been extended to support |
| 3864 | ID_INPUT_TRACKBALL, used in addition to ID_INPUT_MOUSE to identify |
| 3865 | trackball devices. |
| 3866 | |
| 3867 | MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL hwdb property has been added to |
| 3868 | specify the click rate for mice which include a horizontal wheel with |
| 3869 | a click rate that is different than the one for the vertical wheel. |
| 3870 | |
| 3871 | * systemd-run gained a new --wait option that makes service execution |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3872 | synchronous. (Specifically, the command will not return until the |
| 3873 | specified service binary exited.) |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3874 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3875 | * systemctl gained a new --wait option that causes the start command to |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3876 | wait until the units being started have terminated again. |
| 3877 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3878 | * A new journal output mode "short-full" has been added which displays |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3879 | timestamps with abbreviated English day names and adds a timezone |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3880 | suffix. Those timestamps include more information than the default |
| 3881 | "short" output mode, and can be passed directly to journalctl's |
| 3882 | --since= and --until= options. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3883 | |
| 3884 | * /etc/resolv.conf will be bind-mounted into containers started by |
| 3885 | systemd-nspawn, if possible, so any changes to resolv.conf contents |
| 3886 | are automatically propagated to the container. |
| 3887 | |
| 3888 | * The number of instances for socket-activated services originating |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3889 | from a single IP address can be limited with |
| 3890 | MaxConnectionsPerSource=, extending the existing setting of |
| 3891 | MaxConnections=. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3892 | |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3893 | * systemd-networkd gained support for vcan ("Virtual CAN") interface |
| 3894 | configuration. |
| 3895 | |
| 3896 | * .netdev and .network configuration can now be extended through |
| 3897 | drop-ins. |
| 3898 | |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3899 | * UDP Segmentation Offload, TCP Segmentation Offload, Generic |
| 3900 | Segmentation Offload, Generic Receive Offload, Large Receive Offload |
| 3901 | can be enabled and disabled using the new UDPSegmentationOffload=, |
| 3902 | TCPSegmentationOffload=, GenericSegmentationOffload=, |
| 3903 | GenericReceiveOffload=, LargeReceiveOffload= options in the |
| 3904 | [Link] section of .link files. |
| 3905 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3906 | * The Spanning Tree Protocol, Priority, Aging Time, and the Default |
| 3907 | Port VLAN ID can be configured for bridge devices using the new STP=, |
| 3908 | Priority=, AgeingTimeSec=, and DefaultPVID= settings in the [Bridge] |
| 3909 | section of .netdev files. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3910 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3911 | * The route table to which routes received over DHCP or RA should be |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3912 | added can be configured with the new RouteTable= option in the [DHCP] |
| 3913 | and [IPv6AcceptRA] sections of .network files. |
| 3914 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3915 | * The Address Resolution Protocol can be disabled on links managed by |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3916 | systemd-networkd using the ARP=no setting in the [Link] section of |
| 3917 | .network files. |
| 3918 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3919 | * New environment variables $SERVICE_RESULT, $EXIT_CODE and |
| 3920 | $EXIT_STATUS are set for ExecStop= and ExecStopPost= commands, and |
| 3921 | encode information about the result and exit codes of the current |
| 3922 | service runtime cycle. |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3923 | |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3924 | * systemd-sysctl will now configure kernel parameters in the order |
Lucas Werkmeister | 1f4f4cf | 2016-10-04 15:53:16 +0200 | [diff] [blame] | 3925 | they occur in the configuration files. This matches what sysctl |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3926 | has been traditionally doing. |
| 3927 | |
| 3928 | * kernel-install "plugins" that are executed to perform various |
| 3929 | tasks after a new kernel is added and before an old one is removed |
| 3930 | can now return a special value to terminate the procedure and |
| 3931 | prevent any later plugins from running. |
| 3932 | |
Zbigniew Jędrzejewski-Szmek | 76153ad | 2016-07-26 02:19:33 -0400 | [diff] [blame] | 3933 | * Journald's SplitMode=login setting has been deprecated. It has been |
Thomas H. P. Andersen | d4c0829 | 2016-10-04 20:41:46 +0200 | [diff] [blame] | 3934 | removed from documentation, and its use is discouraged. In a future |
Zbigniew Jędrzejewski-Szmek | 76153ad | 2016-07-26 02:19:33 -0400 | [diff] [blame] | 3935 | release it will be completely removed, and made equivalent to current |
| 3936 | default of SplitMode=uid. |
| 3937 | |
Zbigniew Jędrzejewski-Szmek | 4a77c53 | 2016-10-02 14:51:49 +0200 | [diff] [blame] | 3938 | * Storage=both option setting in /etc/systemd/coredump.conf has been |
| 3939 | removed. With fast LZ4 compression storing the core dump twice is not |
| 3940 | useful. |
| 3941 | |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 3942 | * The --share-system systemd-nspawn option has been replaced with an |
| 3943 | (undocumented) variable $SYSTEMD_NSPAWN_SHARE_SYSTEM, but the use of |
| 3944 | this functionality is discouraged. In addition the variables |
| 3945 | $SYSTEMD_NSPAWN_SHARE_NS_IPC, $SYSTEMD_NSPAWN_SHARE_NS_PID, |
| 3946 | $SYSTEMD_NSPAWN_SHARE_NS_UTS may be used to control the unsharing of |
| 3947 | individual namespaces. |
| 3948 | |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3949 | * "machinectl list" now shows the IP address of running containers in |
| 3950 | the output, as well as OS release information. |
| 3951 | |
| 3952 | * "loginctl list" now shows the TTY of each session in the output. |
| 3953 | |
| 3954 | * sd-bus gained new API calls sd_bus_track_set_recursive(), |
| 3955 | sd_bus_track_get_recursive(), sd_bus_track_count_name(), |
| 3956 | sd_bus_track_count_sender(). They permit usage of sd_bus_track peer |
| 3957 | tracking objects in a "recursive" mode, where a single client can be |
| 3958 | counted multiple times, if it takes multiple references. |
| 3959 | |
| 3960 | * sd-bus gained new API calls sd_bus_set_exit_on_disconnect() and |
Michael Biebl | bc99dac | 2018-06-12 15:41:38 +0200 | [diff] [blame] | 3961 | sd_bus_get_exit_on_disconnect(). They may be used to make a |
Lennart Poettering | 171ae2c | 2016-10-21 20:15:18 +0200 | [diff] [blame] | 3962 | process using sd-bus automatically exit if the bus connection is |
| 3963 | severed. |
| 3964 | |
| 3965 | * Bus clients of the service manager may now "pin" loaded units into |
| 3966 | memory, by taking an explicit reference on them. This is useful to |
| 3967 | ensure the client can retrieve runtime data about the service even |
| 3968 | after the service completed execution. Taking such a reference is |
| 3969 | available only for privileged clients and should be helpful to watch |
| 3970 | running services in a race-free manner, and in particular collect |
| 3971 | information about exit statuses and results. |
| 3972 | |
Lennart Poettering | 4c37970 | 2016-10-24 20:06:03 +0200 | [diff] [blame] | 3973 | * The nss-resolve module has been changed to strictly return UNAVAIL |
| 3974 | when communication via D-Bus with resolved failed, and NOTFOUND when |
| 3975 | a lookup completed but was negative. This means it is now possible to |
| 3976 | neatly configure fallbacks using nsswitch.conf result checking |
| 3977 | expressions. Taking benefit of this, the new recommended |
| 3978 | configuration line for the "hosts" entry in /etc/nsswitch.conf is: |
| 3979 | |
| 3980 | hosts: files mymachines resolve [!UNAVAIL=return] dns myhostname |
| 3981 | |
| 3982 | * A new setting CtrlAltDelBurstAction= has been added to |
| 3983 | /etc/systemd/system.conf which may be used to configure the precise |
| 3984 | behaviour if the user on the console presses Ctrl-Alt-Del more often |
| 3985 | than 7 times in 2s. Previously this would unconditionally result in |
| 3986 | an expedited, immediate reboot. With this new setting the precise |
| 3987 | operation may be configured in more detail, and also turned off |
| 3988 | entirely. |
| 3989 | |
| 3990 | * In .netdev files two new settings RemoteChecksumTx= and |
| 3991 | RemoteChecksumRx= are now understood that permit configuring the |
| 3992 | remote checksumming logic for VXLAN networks. |
| 3993 | |
| 3994 | * The service manager learnt a new "invocation ID" concept for invoked |
| 3995 | services. Each runtime cycle of a service will get a new invocation |
| 3996 | ID (a 128bit random UUID) assigned that identifies the current |
| 3997 | run of the service uniquely and globally. A new invocation ID |
| 3998 | is generated each time a service starts up. The journal will store |
| 3999 | the invocation ID of a service along with any logged messages, thus |
| 4000 | making the invocation ID useful for matching the online runtime of a |
| 4001 | service with the offline log data it generated in a safe way without |
| 4002 | relying on synchronized timestamps. In many ways this new service |
| 4003 | invocation ID concept is similar to the kernel's boot ID concept that |
| 4004 | uniquely and globally identifies the runtime of each boot. The |
| 4005 | invocation ID of a service is passed to the service itself via an |
| 4006 | environment variable ($INVOCATION_ID). A new bus call |
| 4007 | GetUnitByInvocationID() has been added that is similar to GetUnit() |
| 4008 | but instead of retrieving the bus path for a unit by its name |
| 4009 | retrieves it by its invocation ID. The returned path is valid only as |
| 4010 | long as the passed invocation ID is current. |
| 4011 | |
| 4012 | * systemd-resolved gained a new "DNSStubListener" setting in |
| 4013 | resolved.conf. It either takes a boolean value or the special values |
| 4014 | "udp" and "tcp", and configures whether to enable the stub DNS |
| 4015 | listener on 127.0.0.53:53. |
| 4016 | |
| 4017 | * IP addresses configured via networkd may now carry additional |
| 4018 | configuration settings supported by the kernel. New options include: |
| 4019 | HomeAddress=, DuplicateAddressDetection=, ManageTemporaryAddress=, |
| 4020 | PrefixRoute=, AutoJoin=. |
| 4021 | |
| 4022 | * The PAM configuration fragment file for "user@.service" shipped with |
| 4023 | systemd (i.e. the --user instance of systemd) has been stripped to |
| 4024 | the minimum necessary to make the system boot. Previously, it |
| 4025 | contained Fedora-specific stanzas that did not apply to other |
| 4026 | distributions. It is expected that downstream distributions add |
| 4027 | additional configuration lines, matching their needs to this file, |
| 4028 | using it only as rough template of what systemd itself needs. Note |
| 4029 | that this reduced fragment does not even include an invocation of |
| 4030 | pam_limits which most distributions probably want to add, even though |
| 4031 | systemd itself does not need it. (There's also the new build time |
| 4032 | option --with-pamconfdir=no to disable installation of the PAM |
| 4033 | fragment entirely.) |
| 4034 | |
| 4035 | * If PrivateDevices=yes is set for a service the CAP_SYS_RAWIO |
| 4036 | capability is now also dropped from its set (in addition to |
| 4037 | CAP_SYS_MKNOD as before). |
| 4038 | |
| 4039 | * In service unit files it is now possible to connect a specific named |
| 4040 | file descriptor with stdin/stdout/stdout of an executed service. The |
| 4041 | name may be specified in matching .socket units using the |
| 4042 | FileDescriptorName= setting. |
| 4043 | |
| 4044 | * A number of journal settings may now be configured on the kernel |
| 4045 | command line. Specifically, the following options are now understood: |
| 4046 | systemd.journald.max_level_console=, |
| 4047 | systemd.journald.max_level_store=, |
| 4048 | systemd.journald.max_level_syslog=, systemd.journald.max_level_kmsg=, |
| 4049 | systemd.journald.max_level_wall=. |
| 4050 | |
| 4051 | * "systemctl is-enabled --full" will now show by which symlinks a unit |
| 4052 | file is enabled in the unit dependency tree. |
| 4053 | |
Lennart Poettering | b4eed56 | 2016-11-02 16:02:12 -0600 | [diff] [blame] | 4054 | * Support for VeraCrypt encrypted partitions has been added to the |
| 4055 | "cryptsetup" logic and /etc/crypttab. |
| 4056 | |
| 4057 | * systemd-detect-virt gained support for a new --private-users switch |
| 4058 | that checks whether the invoking processes are running inside a user |
| 4059 | namespace. Similar, a new special value "private-users" for the |
| 4060 | existing ConditionVirtualization= setting has been added, permitting |
| 4061 | skipping of specific units in user namespace environments. |
| 4062 | |
Lennart Poettering | 07393b6 | 2016-11-02 15:52:57 -0600 | [diff] [blame] | 4063 | Contributions from: Alban Crequy, Alexander Kuleshov, Alfie John, |
| 4064 | Andreas Henriksson, Andrew Jeddeloh, Balázs Úr, Bart Rulon, Benjamin |
| 4065 | Richter, Ben Gamari, Ben Harris, Brian J. Murrell, Christian Brauner, |
| 4066 | Christian Rebischke, Clinton Roy, Colin Walters, Cristian Rodríguez, |
| 4067 | Daniel Hahler, Daniel Mack, Daniel Maixner, Daniel Rusek, Dan Dedrick, |
| 4068 | Davide Cavalca, David Herrmann, David Michael, Dennis Wassenberg, |
| 4069 | Djalal Harouni, Dongsu Park, Douglas Christman, Elias Probst, Eric |
| 4070 | Cook, Erik Karlsson, Evgeny Vereshchagin, Felipe Sateler, Felix Zhang, |
| 4071 | Franck Bui, George Hilliard, Giuseppe Scrivano, HATAYAMA Daisuke, |
| 4072 | Heikki Kemppainen, Hendrik Brueckner, hi117, Ismo Puustinen, Ivan |
| 4073 | Shapovalov, Jakub Filak, Jakub Wilk, Jan Synacek, Jason Kölker, |
| 4074 | Jean-Sébastien Bour, Jiří Pírko, Jonathan Boulle, Jorge Niedbalski, |
| 4075 | Keith Busch, kristbaum, Kyle Russell, Lans Zhang, Lennart Poettering, |
| 4076 | Leonardo Brondani Schenkel, Lucas Werkmeister, Luca Bruno, Lukáš |
| 4077 | Nykrýn, Maciek Borzecki, Mantas Mikulėnas, Marc-Antoine Perennou, |
| 4078 | Marcel Holtmann, Marcos Mello, Martin Ejdestig, Martin Pitt, Matej |
| 4079 | Habrnal, Maxime de Roucy, Michael Biebl, Michael Chapman, Michael Hoy, |
| 4080 | Michael Olbrich, Michael Pope, Michal Sekletar, Michal Soltys, Mike |
| 4081 | Gilbert, Nick Owens, Patrik Flykt, Paweł Szewczyk, Peter Hutterer, |
| 4082 | Piotr Drąg, Reid Price, Richard W.M. Jones, Roman Stingler, Ronny |
| 4083 | Chevalier, Seraphime Kirkovski, Stefan Schweter, Steve Muir, Susant |
| 4084 | Sahani, Tejun Heo, Thomas Blume, Thomas H. P. Andersen, Tiago Levit, |
| 4085 | Tobias Jungel, Tomáš Janoušek, Topi Miettinen, Torstein Husebø, Umut |
| 4086 | Tezduyar Lindskog, Vito Caputo, WaLyong Cho, Wilhelm Schuster, Yann |
| 4087 | E. MORIN, Yi EungJun, Yuki Inoguchi, Yu Watanabe, Zbigniew |
| 4088 | Jędrzejewski-Szmek, Zeal Jagannatha |
| 4089 | |
Lennart Poettering | 54b2459 | 2016-11-03 08:56:26 -0600 | [diff] [blame] | 4090 | — Santa Fe, 2016-11-03 |
Lennart Poettering | 07393b6 | 2016-11-02 15:52:57 -0600 | [diff] [blame] | 4091 | |
Martin Pitt | 5cd118b | 2016-06-22 13:22:47 +0200 | [diff] [blame] | 4092 | CHANGES WITH 231: |
| 4093 | |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4094 | * In service units the various ExecXYZ= settings have been extended |
| 4095 | with an additional special character as first argument of the |
Lennart Poettering | 43eb109 | 2016-07-25 16:53:33 +0200 | [diff] [blame] | 4096 | assigned value: if the character '+' is used the specified command |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4097 | line it will be run with full privileges, regardless of User=, |
| 4098 | Group=, CapabilityBoundingSet= and similar options. The effect is |
| 4099 | similar to the existing PermissionsStartOnly= option, but allows |
| 4100 | configuration of this concept for each executed command line |
| 4101 | independently. |
| 4102 | |
| 4103 | * Services may now alter the service watchdog timeout at runtime by |
| 4104 | sending a WATCHDOG_USEC= message via sd_notify(). |
| 4105 | |
| 4106 | * MemoryLimit= and related unit settings now optionally take percentage |
| 4107 | specifications. The percentage is taken relative to the amount of |
| 4108 | physical memory in the system (or in case of containers, the assigned |
| 4109 | amount of memory). This allows scaling service resources neatly with |
Zbigniew Jędrzejewski-Szmek | 771de3f | 2016-07-22 21:40:46 -0400 | [diff] [blame] | 4110 | the amount of RAM available on the system. Similarly, systemd-logind's |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4111 | RuntimeDirectorySize= option now also optionally takes percentage |
| 4112 | values. |
| 4113 | |
| 4114 | * In similar fashion TasksMax= takes percentage values now, too. The |
| 4115 | value is taken relative to the configured maximum number of processes |
| 4116 | on the system. The per-service task maximum has been changed to 15% |
| 4117 | using this functionality. (Effectively this is an increase of 512 → |
| 4118 | 4915 for service units, given the kernel's default pid_max setting.) |
| 4119 | |
| 4120 | * Calendar time specifications in .timer units now understand a ".." |
| 4121 | syntax for time ranges. Example: "4..7:10" may now be used for |
| 4122 | defining a timer that is triggered at 4:10am, 5:10am, 6:10am and |
| 4123 | 7:10am every day. |
| 4124 | |
| 4125 | * The InaccessableDirectories=, ReadOnlyDirectories= and |
| 4126 | ReadWriteDirectories= unit file settings have been renamed to |
| 4127 | InaccessablePaths=, ReadOnlyPaths= and ReadWritePaths= and may now be |
| 4128 | applied to all kinds of file nodes, and not just directories, with |
| 4129 | the exception of symlinks. Specifically these settings may now be |
| 4130 | used on block and character device nodes, UNIX sockets and FIFOS as |
| 4131 | well as regular files. The old names of these settings remain |
| 4132 | available for compatibility. |
| 4133 | |
| 4134 | * systemd will now log about all service processes it kills forcibly |
| 4135 | (using SIGKILL) because they remained after the clean shutdown phase |
| 4136 | of the service completed. This should help identifying services that |
| 4137 | shut down uncleanly. Moreover if KillUserProcesses= is enabled in |
| 4138 | systemd-logind's configuration a similar log message is generated for |
| 4139 | processes killed at the end of each session due to this setting. |
| 4140 | |
| 4141 | * systemd will now set the $JOURNAL_STREAM environment variable for all |
| 4142 | services whose stdout/stderr are connected to the Journal (which |
| 4143 | effectively means by default: all services). The variable contains |
| 4144 | the device and inode number of the file descriptor used for |
| 4145 | stdout/stderr. This may be used by invoked programs to detect whether |
| 4146 | their stdout/stderr is connected to the Journal, in which case they |
| 4147 | can switch over to direct Journal communication, thus being able to |
| 4148 | pass extended, structured metadata along with their log messages. As |
| 4149 | one example, this is now used by glib's logging primitives. |
| 4150 | |
| 4151 | * When using systemd's default tmp.mount unit for /tmp, the mount point |
| 4152 | will now be established with the "nosuid" and "nodev" options. This |
| 4153 | avoids privilege escalation attacks that put traps and exploits into |
| 4154 | /tmp. However, this might cause problems if you e. g. put container |
Martin Pitt | 5cd118b | 2016-06-22 13:22:47 +0200 | [diff] [blame] | 4155 | images or overlays into /tmp; if you need this, override tmp.mount's |
| 4156 | "Options=" with a drop-in, or mount /tmp from /etc/fstab with your |
| 4157 | desired options. |
| 4158 | |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4159 | * systemd now supports the "memory" cgroup controller also on |
Chris Down | 4e1dfa4 | 2019-01-02 20:15:15 +0000 | [diff] [blame] | 4160 | cgroup v2. |
Martin Pitt | ceeddf7 | 2016-06-24 07:54:28 +0200 | [diff] [blame] | 4161 | |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4162 | * The systemd-cgtop tool now optionally takes a control group path as |
| 4163 | command line argument. If specified, the control group list shown is |
| 4164 | limited to subgroups of that group. |
| 4165 | |
| 4166 | * The SystemCallFilter= unit file setting gained support for |
| 4167 | pre-defined, named system call filter sets. For example |
| 4168 | SystemCallFilter=@clock is now an effective way to make all clock |
Zbigniew Jędrzejewski-Szmek | 771de3f | 2016-07-22 21:40:46 -0400 | [diff] [blame] | 4169 | changing-related system calls unavailable to a service. A number of |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4170 | similar pre-defined groups are defined. Writing system call filters |
| 4171 | for system services is simplified substantially with this new |
| 4172 | concept. Accordingly, all of systemd's own, long-running services now |
| 4173 | enable system call filtering based on this, by default. |
| 4174 | |
| 4175 | * A new service setting MemoryDenyWriteExecute= has been added, taking |
| 4176 | a boolean value. If turned on, a service may no longer create memory |
| 4177 | mappings that are writable and executable at the same time. This |
| 4178 | enhances security for services where this is enabled as it becomes |
| 4179 | harder to dynamically write and then execute memory in exploited |
| 4180 | service processes. This option has been enabled for all of systemd's |
| 4181 | own long-running services. |
| 4182 | |
| 4183 | * A new RestrictRealtime= service setting has been added, taking a |
| 4184 | boolean argument. If set the service's processes may no longer |
| 4185 | acquire realtime scheduling. This improves security as realtime |
| 4186 | scheduling may otherwise be used to easily freeze the system. |
| 4187 | |
| 4188 | * systemd-nspawn gained a new switch --notify-ready= taking a boolean |
| 4189 | value. This may be used for requesting that the system manager inside |
| 4190 | of the container reports start-up completion to nspawn which then |
| 4191 | propagates this notification further to the service manager |
| 4192 | supervising nspawn itself. A related option NotifyReady= in .nspawn |
| 4193 | files has been added too. This functionality allows ordering of the |
| 4194 | start-up of multiple containers using the usual systemd ordering |
| 4195 | primitives. |
| 4196 | |
| 4197 | * machinectl gained a new command "stop" that is an alias for |
| 4198 | "terminate". |
| 4199 | |
| 4200 | * systemd-resolved gained support for contacting DNS servers on |
| 4201 | link-local IPv6 addresses. |
| 4202 | |
| 4203 | * If systemd-resolved receives the SIGUSR2 signal it will now flush all |
| 4204 | its caches. A method call for requesting the same operation has been |
| 4205 | added to the bus API too, and is made available via "systemd-resolve |
| 4206 | --flush-caches". |
| 4207 | |
Zbigniew Jędrzejewski-Szmek | 771de3f | 2016-07-22 21:40:46 -0400 | [diff] [blame] | 4208 | * systemd-resolve gained a new --status switch. If passed a brief |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4209 | summary of the used DNS configuration with per-interface information |
| 4210 | is shown. |
| 4211 | |
| 4212 | * resolved.conf gained a new Cache= boolean option, defaulting to |
| 4213 | on. If turned off local DNS caching is disabled. This comes with a |
| 4214 | performance penalty in particular when DNSSEC is enabled. Note that |
Zbigniew Jędrzejewski-Szmek | 771de3f | 2016-07-22 21:40:46 -0400 | [diff] [blame] | 4215 | resolved disables its internal caching implicitly anyway, when the |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4216 | configured DNS server is on a host-local IP address such as ::1 or |
| 4217 | 127.0.0.1, thus automatically avoiding double local caching. |
| 4218 | |
| 4219 | * systemd-resolved now listens on the local IP address 127.0.0.53:53 |
| 4220 | for DNS requests. This improves compatibility with local programs |
| 4221 | that do not use the libc NSS or systemd-resolved's bus APIs for name |
| 4222 | resolution. This minimal DNS service is only available to local |
| 4223 | programs and does not implement the full DNS protocol, but enough to |
| 4224 | cover local DNS clients. A new, static resolv.conf file, listing just |
| 4225 | this DNS server is now shipped in /usr/lib/systemd/resolv.conf. It is |
| 4226 | now recommended to make /etc/resolv.conf a symlink to this file in |
| 4227 | order to route all DNS lookups to systemd-resolved, regardless if |
| 4228 | done via NSS, the bus API or raw DNS packets. Note that this local |
| 4229 | DNS service is not as fully featured as the libc NSS or |
| 4230 | systemd-resolved's bus APIs. For example, as unicast DNS cannot be |
| 4231 | used to deliver link-local address information (as this implies |
| 4232 | sending a local interface index along), LLMNR/mDNS support via this |
| 4233 | interface is severely restricted. It is thus strongly recommended for |
| 4234 | all applications to use the libc NSS API or native systemd-resolved |
| 4235 | bus API instead. |
| 4236 | |
| 4237 | * systemd-networkd's bridge support learned a new setting |
| 4238 | VLANFiltering= for controlling VLAN filtering. Moreover a new section |
| 4239 | in .network files has been added for configuring VLAN bridging in |
| 4240 | more detail: VLAN=, EgressUntagged=, PVID= in [BridgeVLAN]. |
| 4241 | |
| 4242 | * systemd-networkd's IPv6 Router Advertisement code now makes use of |
| 4243 | the DNSSL and RDNSS options. This means IPv6 DNS configuration may |
| 4244 | now be acquired without relying on DHCPv6. Two new options |
| 4245 | UseDomains= and UseDNS= have been added to configure this behaviour. |
| 4246 | |
| 4247 | * systemd-networkd's IPv6AcceptRouterAdvertisements= option has been |
| 4248 | renamed IPv6AcceptRA=, without altering its behaviour. The old |
| 4249 | setting name remains available for compatibility reasons. |
| 4250 | |
| 4251 | * The systemd-networkd VTI/VTI6 tunneling support gained new options |
| 4252 | Key=, InputKey= and OutputKey=. |
| 4253 | |
| 4254 | * systemd-networkd gained support for VRF ("Virtual Routing Function") |
| 4255 | interface configuration. |
| 4256 | |
| 4257 | * "systemctl edit" may now be used to create new unit files by |
| 4258 | specifying the --force switch. |
| 4259 | |
| 4260 | * sd-event gained a new function sd_event_get_iteration() for |
| 4261 | requesting the current iteration counter of the event loop. It starts |
| 4262 | at zero and is increased by one with each event loop iteration. |
| 4263 | |
Zbigniew Jędrzejewski-Szmek | 43a569a | 2016-07-23 04:11:30 -0400 | [diff] [blame] | 4264 | * A new rpm macro %systemd_ordering is provided by the macros.systemd |
| 4265 | file. It can be used in lieu of %systemd_requires in packages which |
| 4266 | don't use any systemd functionality and are intended to be installed |
| 4267 | in minimal containers without systemd present. This macro provides |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 4268 | ordering dependencies to ensure that if the package is installed in |
Zbigniew Jędrzejewski-Szmek | 43a569a | 2016-07-23 04:11:30 -0400 | [diff] [blame] | 4269 | the same rpm transaction as systemd, systemd will be installed before |
| 4270 | the scriptlets for the package are executed, allowing unit presets |
| 4271 | to be handled. |
| 4272 | |
| 4273 | New macros %_systemdgeneratordir and %_systemdusergeneratordir have |
| 4274 | been added to simplify packaging of generators. |
| 4275 | |
| 4276 | * The os-release file gained VERSION_CODENAME field for the |
| 4277 | distribution nickname (e.g. VERSION_CODENAME=woody). |
| 4278 | |
| 4279 | * New udev property UDEV_DISABLE_PERSISTENT_STORAGE_RULES_FLAG=1 |
| 4280 | can be set to disable parsing of metadata and the creation |
| 4281 | of persistent symlinks for that device. |
| 4282 | |
Lennart Poettering | 0f1da52 | 2016-07-25 15:27:10 +0200 | [diff] [blame] | 4283 | * The v230 change to tag framebuffer devices (/dev/fb*) with "uaccess" |
| 4284 | to make them available to logged-in users has been reverted. |
| 4285 | |
| 4286 | * Much of the common code of the various systemd components is now |
| 4287 | built into an internal shared library libsystemd-shared-231.so |
| 4288 | (incorporating the systemd version number in the name, to be updated |
| 4289 | with future releases) that the components link to. This should |
| 4290 | decrease systemd footprint both in memory during runtime and on |
| 4291 | disk. Note that the shared library is not for public use, and is |
Yu Watanabe | ead6bd2 | 2018-05-30 01:07:37 +0900 | [diff] [blame] | 4292 | neither API nor ABI stable, but is likely to change with every new |
Zbigniew Jędrzejewski-Szmek | 1ecbf32 | 2016-07-25 10:34:56 -0400 | [diff] [blame] | 4293 | released update. Packagers need to make sure that binaries |
| 4294 | linking to libsystemd-shared.so are updated in step with the |
| 4295 | library. |
Zbigniew Jędrzejewski-Szmek | 43a569a | 2016-07-23 04:11:30 -0400 | [diff] [blame] | 4296 | |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4297 | * Configuration for "mkosi" is now part of the systemd |
| 4298 | repository. mkosi is a tool to easily build legacy-free OS images, |
| 4299 | and is available on github: https://github.com/systemd/mkosi. If |
| 4300 | "mkosi" is invoked in the build tree a new raw OS image is generated |
| 4301 | incorporating the systemd sources currently being worked on and a |
| 4302 | clean, fresh distribution installation. The generated OS image may be |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 4303 | booted up with "systemd-nspawn -b -i", qemu-kvm or on any physical |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4304 | UEFI PC. This functionality is particularly useful to easily test |
| 4305 | local changes made to systemd in a pristine, defined environment. See |
Lennart Poettering | f09eb76 | 2018-02-26 11:48:46 +0100 | [diff] [blame] | 4306 | doc/HACKING for details. |
Lennart Poettering | fcd3082 | 2016-07-22 20:18:34 +0200 | [diff] [blame] | 4307 | |
Zbigniew Jędrzejewski-Szmek | 4ffe247 | 2016-09-14 01:40:02 -0400 | [diff] [blame] | 4308 | * configure learned the --with-support-url= option to specify the |
| 4309 | distribution's bugtracker. |
| 4310 | |
Lennart Poettering | 38b383d | 2016-07-25 21:49:47 +0200 | [diff] [blame] | 4311 | Contributions from: Alban Crequy, Alessandro Puccetti, Alessio Igor |
| 4312 | Bogani, Alexander Kuleshov, Alexander Kurtz, Alex Gaynor, Andika |
| 4313 | Triwidada, Andreas Pokorny, Andreas Rammhold, Andrew Jeddeloh, Ansgar |
| 4314 | Burchardt, Atrotors, Benjamin Drung, Brian Boylston, Christian Hesse, |
| 4315 | Christian Rebischke, Daniele Medri, Daniel Mack, Dave Reisner, David |
| 4316 | Herrmann, David Michael, Djalal Harouni, Douglas Christman, Elias |
| 4317 | Probst, Evgeny Vereshchagin, Federico Mena Quintero, Felipe Sateler, |
| 4318 | Franck Bui, Harald Hoyer, Ian Lee, Ivan Shapovalov, Jakub Wilk, Jan |
| 4319 | Janssen, Jean-Sébastien Bour, John Paul Adrian Glaubitz, Jouke |
| 4320 | Witteveen, Kai Ruhnau, kpengboy, Kyle Walker, Lénaïc Huard, Lennart |
| 4321 | Poettering, Luca Bruno, Lukas Lösche, Lukáš Nykrýn, mahkoh, Marcel |
| 4322 | Holtmann, Martin Pitt, Marty Plummer, Matthieu Codron, Max Prokhorov, |
| 4323 | Michael Biebl, Michael Karcher, Michael Olbrich, Michał Bartoszkiewicz, |
| 4324 | Michal Sekletar, Michal Soltys, Minkyung, Muhammet Kara, mulkieran, |
| 4325 | Otto Wallenius, Pablo Lezaeta Reyes, Peter Hutterer, Ronny Chevalier, |
| 4326 | Rusty Bird, Stef Walter, Susant Sahani, Tejun Heo, Thomas Blume, Thomas |
Zbigniew Jędrzejewski-Szmek | 771de3f | 2016-07-22 21:40:46 -0400 | [diff] [blame] | 4327 | Haller, Thomas H. P. Andersen, Tobias Jungel, Tom Gundersen, Tom Yan, |
| 4328 | Topi Miettinen, Torstein Husebø, Valentin Vidić, Viktar Vaŭčkievič, |
Lennart Poettering | 38b383d | 2016-07-25 21:49:47 +0200 | [diff] [blame] | 4329 | WaLyong Cho, Weng Xuetian, Werner Fink, Zbigniew Jędrzejewski-Szmek |
Martin Pitt | 5cd118b | 2016-06-22 13:22:47 +0200 | [diff] [blame] | 4330 | |
Lennart Poettering | 38b383d | 2016-07-25 21:49:47 +0200 | [diff] [blame] | 4331 | — Berlin, 2016-07-25 |
Martin Pitt | 5cd118b | 2016-06-22 13:22:47 +0200 | [diff] [blame] | 4332 | |
Zbigniew Jędrzejewski-Szmek | 46e40fa | 2016-05-21 17:51:13 -0400 | [diff] [blame] | 4333 | CHANGES WITH 230: |
Zbigniew Jędrzejewski-Szmek | 7f6e804 | 2016-02-11 22:11:33 -0500 | [diff] [blame] | 4334 | |
Lennart Poettering | 61ecb46 | 2016-02-15 18:40:02 +0100 | [diff] [blame] | 4335 | * DNSSEC is now turned on by default in systemd-resolved (in |
| 4336 | "allow-downgrade" mode), but may be turned off during compile time by |
| 4337 | passing "--with-default-dnssec=no" to "configure" (and of course, |
| 4338 | during runtime with DNSSEC= in resolved.conf). We recommend |
| 4339 | downstreams to leave this on at least during development cycles and |
| 4340 | report any issues with the DNSSEC logic upstream. We are very |
| 4341 | interested in collecting feedback about the DNSSEC validator and its |
| 4342 | limitations in the wild. Note however, that DNSSEC support is |
| 4343 | probably nothing downstreams should turn on in stable distros just |
Torstein Husebø | 96d4901 | 2016-02-08 13:27:22 +0100 | [diff] [blame] | 4344 | yet, as it might create incompatibilities with a few DNS servers and |
Lennart Poettering | 61ecb46 | 2016-02-15 18:40:02 +0100 | [diff] [blame] | 4345 | networks. We tried hard to make sure we downgrade to non-DNSSEC mode |
| 4346 | automatically whenever we detect such incompatible setups, but there |
| 4347 | might be systems we do not cover yet. Hence: please help us testing |
| 4348 | the DNSSEC code, leave this on where you can, report back, but then |
| 4349 | again don't consider turning this on in your stable, LTS or |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4350 | production release just yet. (Note that you have to enable |
| 4351 | nss-resolve in /etc/nsswitch.conf, to actually use systemd-resolved |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 4352 | and its DNSSEC mode for hostname resolution from local |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4353 | applications.) |
Lennart Poettering | 61ecb46 | 2016-02-15 18:40:02 +0100 | [diff] [blame] | 4354 | |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4355 | * systemd-resolve conveniently resolves DANE records with the --tlsa |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4356 | option and OPENPGPKEY records with the --openpgp option. It also |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4357 | supports dumping raw DNS record data via the new --raw= switch. |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4358 | |
Zbigniew Jędrzejewski-Szmek | 97e5530 | 2016-04-09 20:40:45 -0400 | [diff] [blame] | 4359 | * systemd-logind will now by default terminate user processes that are |
| 4360 | part of the user session scope unit (session-XX.scope) when the user |
Thomas H. P. Andersen | 977f2be | 2016-05-07 23:52:31 +0200 | [diff] [blame] | 4361 | logs out. This behavior is controlled by the KillUserProcesses= |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4362 | setting in logind.conf, and the previous default of "no" is now |
| 4363 | changed to "yes". This means that user sessions will be properly |
| 4364 | cleaned up after, but additional steps are necessary to allow |
| 4365 | intentionally long-running processes to survive logout. |
Zbigniew Jędrzejewski-Szmek | 97e5530 | 2016-04-09 20:40:45 -0400 | [diff] [blame] | 4366 | |
| 4367 | While the user is logged in at least once, user@.service is running, |
| 4368 | and any service that should survive the end of any individual login |
| 4369 | session can be started at a user service or scope using systemd-run. |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4370 | systemd-run(1) man page has been extended with an example which shows |
Zbigniew Jędrzejewski-Szmek | 8951eae | 2016-05-07 11:43:39 -0400 | [diff] [blame] | 4371 | how to run screen in a scope unit underneath user@.service. The same |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4372 | command works for tmux. |
Zbigniew Jędrzejewski-Szmek | 97e5530 | 2016-04-09 20:40:45 -0400 | [diff] [blame] | 4373 | |
| 4374 | After the user logs out of all sessions, user@.service will be |
| 4375 | terminated too, by default, unless the user has "lingering" enabled. |
| 4376 | To effectively allow users to run long-term tasks even if they are |
Zbigniew Jędrzejewski-Szmek | 152199f | 2016-04-12 22:52:28 -0400 | [diff] [blame] | 4377 | logged out, lingering must be enabled for them. See loginctl(1) for |
| 4378 | details. The default polkit policy was modified to allow users to |
| 4379 | set lingering for themselves without authentication. |
Zbigniew Jędrzejewski-Szmek | 7f6e804 | 2016-02-11 22:11:33 -0500 | [diff] [blame] | 4380 | |
Zbigniew Jędrzejewski-Szmek | 95365a5 | 2016-04-11 22:51:31 -0400 | [diff] [blame] | 4381 | Previous defaults can be restored at compile time by the |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4382 | --without-kill-user-processes option to "configure". |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4383 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4384 | * systemd-logind gained new configuration settings SessionsMax= and |
| 4385 | InhibitorsMax=, both with a default of 8192. It will not register new |
Thomas H. P. Andersen | 188d308 | 2016-05-20 15:04:01 +0200 | [diff] [blame] | 4386 | user sessions or inhibitors above this limit. |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4387 | |
| 4388 | * systemd-logind will now reload configuration on SIGHUP. |
| 4389 | |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4390 | * The unified cgroup hierarchy added in Linux 4.5 is now supported. |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4391 | Use systemd.unified_cgroup_hierarchy=1 on the kernel command line to |
Lennart Poettering | 25b0e6c | 2016-05-16 22:18:39 +0200 | [diff] [blame] | 4392 | enable. Also, support for the "io" cgroup controller in the unified |
| 4393 | hierarchy has been added, so that the "memory", "pids" and "io" are |
| 4394 | now the controllers that are supported on the unified hierarchy. |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4395 | |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4396 | WARNING: it is not possible to use previous systemd versions with |
| 4397 | systemd.unified_cgroup_hierarchy=1 and the new kernel. Therefore it |
| 4398 | is necessary to also update systemd in the initramfs if using the |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4399 | unified hierarchy. An updated SELinux policy is also required. |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4400 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4401 | * LLDP support has been extended, and both passive (receive-only) and |
| 4402 | active (sender) modes are supported. Passive mode ("routers-only") is |
Zbigniew Jędrzejewski-Szmek | 8951eae | 2016-05-07 11:43:39 -0400 | [diff] [blame] | 4403 | enabled by default in systemd-networkd. Active LLDP mode is enabled |
| 4404 | by default for containers on the internal network. The "networkctl |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4405 | lldp" command may be used to list information gathered. "networkctl |
| 4406 | status" will also show basic LLDP information on connected peers now. |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4407 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4408 | * The IAID and DUID unique identifier sent in DHCP requests may now be |
| 4409 | configured for the system and each .network file managed by |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4410 | systemd-networkd using the DUIDType=, DUIDRawData=, IAID= options. |
| 4411 | |
| 4412 | * systemd-networkd gained support for configuring proxy ARP support for |
| 4413 | each interface, via the ProxyArp= setting in .network files. It also |
| 4414 | gained support for configuring the multicast querier feature of |
| 4415 | bridge devices, via the new MulticastQuerier= setting in .netdev |
| 4416 | files. Similarly, snooping on the IGMP traffic can be controlled |
| 4417 | via the new setting MulticastSnooping=. |
| 4418 | |
| 4419 | A new setting PreferredLifetime= has been added for addresses |
| 4420 | configured in .network file to configure the lifetime intended for an |
| 4421 | address. |
| 4422 | |
| 4423 | The systemd-networkd DHCP server gained the option EmitRouter=, which |
| 4424 | defaults to yes, to configure whether the DHCP Option 3 (Router) |
| 4425 | should be emitted. |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4426 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4427 | * The testing tool /usr/lib/systemd/systemd-activate is renamed to |
Zbigniew Jędrzejewski-Szmek | 97e5530 | 2016-04-09 20:40:45 -0400 | [diff] [blame] | 4428 | systemd-socket-activate and installed into /usr/bin. It is now fully |
| 4429 | supported. |
| 4430 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4431 | * systemd-journald now uses separate threads to flush changes to disk |
| 4432 | when closing journal files, thus reducing impact of slow disk I/O on |
| 4433 | logging performance. |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4434 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4435 | * The sd-journal API gained two new calls |
| 4436 | sd_journal_open_directory_fd() and sd_journal_open_files_fd() which |
| 4437 | can be used to open journal files using file descriptors instead of |
| 4438 | file or directory paths. sd_journal_open_container() has been |
| 4439 | deprecated, sd_journal_open_directory_fd() should be used instead |
| 4440 | with the flag SD_JOURNAL_OS_ROOT. |
| 4441 | |
| 4442 | * journalctl learned a new output mode "-o short-unix" that outputs log |
| 4443 | lines prefixed by their UNIX time (i.e. seconds since Jan 1st, 1970 |
| 4444 | UTC). It also gained support for a new --no-hostname setting to |
| 4445 | suppress the hostname column in the family of "short" output modes. |
| 4446 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4447 | * systemd-ask-password now optionally skips printing of the password to |
| 4448 | stdout with --no-output which can be useful in scripts. |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4449 | |
| 4450 | * Framebuffer devices (/dev/fb*) and 3D printers and scanners |
| 4451 | (devices tagged with ID_MAKER_TOOL) are now tagged with |
| 4452 | "uaccess" and are available to logged in users. |
| 4453 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4454 | * The DeviceAllow= unit setting now supports specifiers (with "%"). |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4455 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4456 | * "systemctl show" gained a new --value switch, which allows print a |
| 4457 | only the contents of a specific unit property, without also printing |
Zbigniew Jędrzejewski-Szmek | 8951eae | 2016-05-07 11:43:39 -0400 | [diff] [blame] | 4458 | the property's name. Similar support was added to "show*" verbs |
| 4459 | of loginctl and machinectl that output "key=value" lists. |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4460 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4461 | * A new unit type "generated" was added for files dynamically generated |
| 4462 | by generator tools. Similarly, a new unit type "transient" is used |
| 4463 | for unit files created using the runtime API. "systemctl enable" will |
| 4464 | refuse to operate on such files. |
| 4465 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4466 | * A new command "systemctl revert" has been added that may be used to |
| 4467 | revert to the vendor version of a unit file, in case local changes |
| 4468 | have been made by adding drop-ins or overriding the unit file. |
| 4469 | |
| 4470 | * "machinectl clean" gained a new verb to automatically remove all or |
| 4471 | just hidden container images. |
| 4472 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4473 | * systemd-tmpfiles gained support for a new line type "e" for emptying |
| 4474 | directories, if they exist, without creating them if they don't. |
| 4475 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4476 | * systemd-nspawn gained support for automatically patching the UID/GIDs |
| 4477 | of the owners and the ACLs of all files and directories in a |
| 4478 | container tree to match the UID/GID user namespacing range selected |
| 4479 | for the container invocation. This mode is enabled via the new |
Zbigniew Jędrzejewski-Szmek | 24597ee | 2016-10-20 23:03:26 -0400 | [diff] [blame] | 4480 | --private-users-chown switch. It also gained support for |
| 4481 | automatically choosing a free, previously unused UID/GID range when |
| 4482 | starting a container, via the new --private-users=pick setting (which |
| 4483 | implies --private-users-chown). Together, these options for the first |
| 4484 | time make user namespacing for nspawn containers fully automatic and |
| 4485 | thus deployable. The systemd-nspawn@.service template unit file has |
| 4486 | been changed to use this functionality by default. |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4487 | |
Lennart Poettering | 25b0e6c | 2016-05-16 22:18:39 +0200 | [diff] [blame] | 4488 | * systemd-nspawn gained a new --network-zone= switch, that allows |
| 4489 | creating ad-hoc virtual Ethernet links between multiple containers, |
| 4490 | that only exist as long as at least one container referencing them is |
| 4491 | running. This allows easy connecting of multiple containers with a |
| 4492 | common link that implements an Ethernet broadcast domain. Each of |
| 4493 | these network "zones" may be named relatively freely by the user, and |
| 4494 | may be referenced by any number of containers, but each container may |
| 4495 | only reference one of these "zones". On the lower level, this is |
| 4496 | implemented by an automatically managed bridge network interface for |
| 4497 | each zone, that is created when the first container referencing its |
| 4498 | zone is created and removed when the last one referencing its zone |
| 4499 | terminates. |
| 4500 | |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4501 | * The default start timeout may now be configured on the kernel command |
Zbigniew Jędrzejewski-Szmek | 8951eae | 2016-05-07 11:43:39 -0400 | [diff] [blame] | 4502 | line via systemd.default_timeout_start_sec=. It was already |
| 4503 | configurable via the DefaultTimeoutStartSec= option in |
| 4504 | /etc/systemd/system.conf. |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4505 | |
Daniele Medri | 030bd83 | 2016-05-07 05:00:12 +0200 | [diff] [blame] | 4506 | * Socket units gained a new TriggerLimitIntervalSec= and |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4507 | TriggerLimitBurst= setting to configure a limit on the activation |
| 4508 | rate of the socket unit. |
| 4509 | |
| 4510 | * The LimitNICE= setting now optionally takes normal UNIX nice values |
| 4511 | in addition to the raw integer limit value. If the specified |
| 4512 | parameter is prefixed with "+" or "-" and is in the range -20..19 the |
| 4513 | value is understood as UNIX nice value. If not prefixed like this it |
| 4514 | is understood as raw RLIMIT_NICE limit. |
| 4515 | |
Lennart Poettering | 999a43f | 2016-05-16 23:07:08 +0200 | [diff] [blame] | 4516 | * Note that the effect of the PrivateDevices= unit file setting changed |
| 4517 | slightly with this release: the per-device /dev file system will be |
| 4518 | mounted read-only from this version on, and will have "noexec" |
Thomas H. P. Andersen | 188d308 | 2016-05-20 15:04:01 +0200 | [diff] [blame] | 4519 | set. This (minor) change of behavior might cause some (exceptional) |
Lennart Poettering | 999a43f | 2016-05-16 23:07:08 +0200 | [diff] [blame] | 4520 | legacy software to break, when PrivateDevices=yes is set for its |
| 4521 | service. Please leave PrivateDevices= off if you run into problems |
| 4522 | with this. |
| 4523 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4524 | * systemd-bootchart has been split out to a separate repository: |
| 4525 | https://github.com/systemd/systemd-bootchart |
Clemens Gruber | 77ff602 | 2016-05-18 01:34:25 +0200 | [diff] [blame] | 4526 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4527 | * systemd-bus-proxyd has been removed, as kdbus is unlikely to still be |
| 4528 | merged into the kernel in its current form. |
| 4529 | |
| 4530 | * The compatibility libraries libsystemd-daemon.so, |
| 4531 | libsystemd-journal.so, libsystemd-id128.so, and libsystemd-login.so |
| 4532 | which have been deprecated since systemd-209 have been removed along |
| 4533 | with the corresponding pkg-config files. All symbols provided by |
| 4534 | those libraries are provided by libsystemd.so. |
| 4535 | |
| 4536 | * The Capabilities= unit file setting has been removed (it is ignored |
| 4537 | for backwards compatibility). AmbientCapabilities= and |
| 4538 | CapabilityBoundingSet= should be used instead. |
| 4539 | |
Dave Reisner | 4f9020f | 2016-05-23 10:31:47 +0200 | [diff] [blame] | 4540 | * A new special target has been added, initrd-root-device.target, |
| 4541 | which creates a synchronization point for dependencies of the root |
| 4542 | device in early userspace. Initramfs builders must ensure that this |
| 4543 | target is now included in early userspace. |
| 4544 | |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4545 | Contributions from: Alban Crequy, Alexander Kuleshov, Alexander Shopov, |
| 4546 | Alex Crawford, Andre Klärner, Andrew Eikum, Beniamino Galvani, Benjamin |
| 4547 | Robin, Biao Lu, Bjørnar Ness, Calvin Owens, Christian Hesse, Clemens |
| 4548 | Gruber, Colin Guthrie, Daniel Drake, Daniele Medri, Daniel J Walsh, |
| 4549 | Daniel Mack, Dan Nicholson, daurnimator, David Herrmann, David |
| 4550 | R. Hedges, Elias Probst, Emmanuel Gil Peyrot, EMOziko, Evgeny |
| 4551 | Vereshchagin, Federico, Felipe Sateler, Filipe Brandenburger, Franck |
| 4552 | Bui, frankheckenbach, gdamjan, Georgia Brikis, Harald Hoyer, Hendrik |
Clemens Gruber | 77ff602 | 2016-05-18 01:34:25 +0200 | [diff] [blame] | 4553 | Brueckner, Hristo Venev, Iago López Galeiras, Ian Kelling, Ismo |
| 4554 | Puustinen, Jakub Wilk, Jaroslav Škarvada, Jeff Huang, Joel Holdsworth, |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4555 | John Paul Adrian Glaubitz, Jonathan Boulle, kayrus, Klearchos |
| 4556 | Chaloulos, Kyle Russell, Lars Uebernickel, Lennart Poettering, Lubomir |
| 4557 | Rintel, Lukáš Nykrýn, Mantas Mikulėnas, Marcel Holtmann, Martin Pitt, |
Clemens Gruber | 77ff602 | 2016-05-18 01:34:25 +0200 | [diff] [blame] | 4558 | Michael Biebl, michaelolbrich, Michał Bartoszkiewicz, Michal Koutný, |
| 4559 | Michal Sekletar, Mike Frysinger, Mike Gilbert, Mingcong Bai, Ming Lin, |
| 4560 | mulkieran, muzena, Nalin Dahyabhai, Naohiro Aota, Nathan McSween, |
Zbigniew Jędrzejewski-Szmek | e75690c | 2016-05-19 00:11:20 -0400 | [diff] [blame] | 4561 | Nicolas Braud-Santoni, Patrik Flykt, Peter Hutterer, Peter Mattern, |
| 4562 | Petr Lautrbach, Petros Angelatos, Piotr Drąg, Rabin Vincent, Robert |
| 4563 | Węcławski, Ronny Chevalier, Samuel Tardieu, Stefan Saraev, Stefan |
| 4564 | Schallenberg aka nafets227, Steven Siloti, Susant Sahani, Sylvain |
| 4565 | Plantefève, Taylor Smock, Tejun Heo, Thomas Blume, Thomas Haller, |
| 4566 | Thomas H. P. Andersen, Tobias Klauser, Tom Gundersen, topimiettinen, |
Zbigniew Jędrzejewski-Szmek | 46e40fa | 2016-05-21 17:51:13 -0400 | [diff] [blame] | 4567 | Torstein Husebø, Umut Tezduyar Lindskog, Uwe Kleine-König, Victor Toso, |
| 4568 | Vinay Kulkarni, Vito Caputo, Vittorio G (VittGam), Vladimir Panteleev, |
| 4569 | Wieland Hoffmann, Wouter Verhelst, Yu Watanabe, Zbigniew |
| 4570 | Jędrzejewski-Szmek |
Lennart Poettering | e40a326 | 2016-05-06 16:55:44 +0200 | [diff] [blame] | 4571 | |
Zbigniew Jędrzejewski-Szmek | 46e40fa | 2016-05-21 17:51:13 -0400 | [diff] [blame] | 4572 | — Fairfax, 2016-05-21 |
Zbigniew Jędrzejewski-Szmek | 96515db | 2016-04-03 13:16:06 -0400 | [diff] [blame] | 4573 | |
Martin Pitt | 61f32bf | 2016-02-01 12:09:34 +0100 | [diff] [blame] | 4574 | CHANGES WITH 229: |
| 4575 | |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4576 | * The systemd-resolved DNS resolver service has gained a substantial |
| 4577 | set of new features, most prominently it may now act as a DNSSEC |
| 4578 | validating stub resolver. DNSSEC mode is currently turned off by |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4579 | default, but is expected to be turned on by default in one of the |
| 4580 | next releases. For now, we invite everybody to test the DNSSEC logic |
| 4581 | by setting DNSSEC=allow-downgrade in /etc/systemd/resolved.conf. The |
| 4582 | service also gained a full set of D-Bus interfaces, including calls |
| 4583 | to configure DNS and DNSSEC settings per link (for use by external |
| 4584 | network management software). systemd-resolved and systemd-networkd |
| 4585 | now distinguish between "search" and "routing" domains. The former |
| 4586 | are used to qualify single-label names, the latter are used purely |
| 4587 | for routing lookups within certain domains to specific links. |
| 4588 | resolved now also synthesizes RRs for all entries from /etc/hosts. |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4589 | |
| 4590 | * The systemd-resolve tool (which is a client utility for |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4591 | systemd-resolved) has been improved considerably and is now fully |
| 4592 | supported and documented. Hence it has moved from /usr/lib/systemd to |
| 4593 | /usr/bin. |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4594 | |
| 4595 | * /dev/disk/by-path/ symlink support has been (re-)added for virtio |
| 4596 | devices. |
| 4597 | |
Lennart Poettering | a7c723c | 2016-02-10 16:34:11 +0100 | [diff] [blame] | 4598 | * The coredump collection logic has been reworked: when a coredump is |
| 4599 | collected it is now written to disk, compressed and processed |
| 4600 | (including stacktrace extraction) from a new instantiated service |
| 4601 | systemd-coredump@.service, instead of directly from the |
| 4602 | /proc/sys/kernel/core_pattern hook we provide. This is beneficial as |
| 4603 | processing large coredumps can take up a substantial amount of |
| 4604 | resources and time, and this previously happened entirely outside of |
| 4605 | systemd's service supervision. With the new logic the core_pattern |
| 4606 | hook only does minimal metadata collection before passing off control |
| 4607 | to the new instantiated service, which is configured with a time |
| 4608 | limit, a nice level and other settings to minimize negative impact on |
| 4609 | the rest of the system. Also note that the new logic will honour the |
| 4610 | RLIMIT_CORE setting of the crashed process, which now allows users |
| 4611 | and processes to turn off coredumping for their processes by setting |
| 4612 | this limit. |
| 4613 | |
| 4614 | * The RLIMIT_CORE resource limit now defaults to "unlimited" for PID 1 |
| 4615 | and all forked processes by default. Previously, PID 1 would leave |
| 4616 | the setting at "0" for all processes, as set by the kernel. Note that |
| 4617 | the resource limit traditionally has no effect on the generated |
| 4618 | coredumps on the system if the /proc/sys/kernel/core_pattern hook |
| 4619 | logic is used. Since the limit is now honoured (see above) its |
| 4620 | default has been changed so that the coredumping logic is enabled by |
| 4621 | default for all processes, while allowing specific opt-out. |
| 4622 | |
| 4623 | * When the stacktrace is extracted from processes of system users, this |
| 4624 | is now done as "systemd-coredump" user, in order to sandbox this |
| 4625 | potentially security sensitive parsing operation. (Note that when |
| 4626 | processing coredumps of normal users this is done under the user ID |
| 4627 | of process that crashed, as before.) Packagers should take notice |
| 4628 | that it is now necessary to create the "systemd-coredump" system user |
| 4629 | and group at package installation time. |
| 4630 | |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4631 | * The systemd-activate socket activation testing tool gained support |
| 4632 | for SOCK_DGRAM and SOCK_SEQPACKET sockets using the new --datagram |
| 4633 | and --seqpacket switches. It also has been extended to support both |
| 4634 | new-style and inetd-style file descriptor passing. Use the new |
| 4635 | --inetd switch to request inetd-style file descriptor passing. |
| 4636 | |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4637 | * Most systemd tools now honor a new $SYSTEMD_COLORS environment |
| 4638 | variable, which takes a boolean value. If set to false, ANSI color |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4639 | output is disabled in the tools even when run on a terminal that |
| 4640 | supports it. |
| 4641 | |
| 4642 | * The VXLAN support in networkd now supports two new settings |
| 4643 | DestinationPort= and PortRange=. |
| 4644 | |
| 4645 | * A new systemd.machine_id= kernel command line switch has been added, |
| 4646 | that may be used to set the machine ID in /etc/machine-id if it is |
| 4647 | not initialized yet. This command line option has no effect if the |
| 4648 | file is already initialized. |
| 4649 | |
| 4650 | * systemd-nspawn gained a new --as-pid2 switch that invokes any |
| 4651 | specified command line as PID 2 rather than PID 1 in the |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4652 | container. In this mode PID 1 is a minimal stub init process that |
| 4653 | implements the special POSIX and Linux semantics of PID 1 regarding |
| 4654 | signal and child process management. Note that this stub init process |
| 4655 | is implemented in nspawn itself and requires no support from the |
| 4656 | container image. This new logic is useful to support running |
| 4657 | arbitrary commands in the container, as normal processes are |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4658 | generally not prepared to run as PID 1. |
| 4659 | |
| 4660 | * systemd-nspawn gained a new --chdir= switch for setting the current |
| 4661 | working directory for the process started in the container. |
| 4662 | |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4663 | * "journalctl /dev/sda" will now output all kernel log messages for |
| 4664 | specified device from the current boot, in addition to all devices |
| 4665 | that are parents of it. This should make log output about devices |
| 4666 | pretty useful, as long as kernel drivers attach enough metadata to |
| 4667 | the log messages. (The usual SATA drivers do.) |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4668 | |
| 4669 | * The sd-journal API gained two new calls |
| 4670 | sd_journal_has_runtime_files() and sd_journal_has_persistent_files() |
| 4671 | that report whether log data from /run or /var has been found. |
| 4672 | |
| 4673 | * journalctl gained a new switch "--fields" that prints all journal |
| 4674 | record field names currently in use in the journal. This is backed |
| 4675 | by two new sd-journal API calls sd_journal_enumerate_fields() and |
| 4676 | sd_journal_restart_fields(). |
| 4677 | |
| 4678 | * Most configurable timeouts in systemd now expect an argument of |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4679 | "infinity" to turn them off, instead of "0" as before. The semantics |
| 4680 | from now on is that a timeout of "0" means "now", and "infinity" |
| 4681 | means "never". To maintain backwards compatibility, "0" continues to |
| 4682 | turn off previously existing timeout settings. |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4683 | |
| 4684 | * "systemctl reload-or-try-restart" has been renamed to "systemctl |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4685 | try-reload-or-restart" to clarify what it actually does: the "try" |
| 4686 | logic applies to both reloading and restarting, not just restarting. |
| 4687 | The old name continues to be accepted for compatibility. |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4688 | |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4689 | * On boot-up, when PID 1 detects that the system clock is behind the |
| 4690 | release date of the systemd version in use, the clock is now set |
| 4691 | to the latter. Previously, this was already done in timesyncd, in order |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4692 | to avoid running with clocks set to the various clock epochs such as |
| 4693 | 1902, 1938 or 1970. With this change the logic is now done in PID 1 |
| 4694 | in addition to timesyncd during early boot-up, so that it is enforced |
| 4695 | before the first process is spawned by systemd. Note that the logic |
| 4696 | in timesyncd remains, as it is more comprehensive and ensures |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4697 | clock monotonicity by maintaining a persistent timestamp file in |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4698 | /var. Since /var is generally not available in earliest boot or the |
| 4699 | initrd, this part of the logic remains in timesyncd, and is not done |
| 4700 | by PID 1. |
| 4701 | |
Daniel Mack | 50f48ad | 2016-02-10 15:44:01 +0100 | [diff] [blame] | 4702 | * Support for tweaking details in net_cls.class_id through the |
| 4703 | NetClass= configuration directive has been removed, as the kernel |
| 4704 | people have decided to deprecate that controller in cgroup v2. |
| 4705 | Userspace tools such as nftables are moving over to setting rules |
| 4706 | that are specific to the full cgroup path of a task, which obsoletes |
| 4707 | these controllers anyway. The NetClass= directive is kept around for |
| 4708 | legacy compatibility reasons. For a more in-depth description of the |
| 4709 | kernel change, please refer to the respective upstream commit: |
| 4710 | |
| 4711 | https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=bd1060a1d671 |
| 4712 | |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4713 | * A new service setting RuntimeMaxSec= has been added that may be used |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4714 | to specify a maximum runtime for a service. If the timeout is hit, the |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4715 | service is terminated and put into a failure state. |
| 4716 | |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4717 | * A new service setting AmbientCapabilities= has been added. It allows |
| 4718 | configuration of additional Linux process capabilities that are |
| 4719 | passed to the activated processes. This is only available on very |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4720 | recent kernels. |
| 4721 | |
| 4722 | * The process resource limit settings in service units may now be used |
| 4723 | to configure hard and soft limits individually. |
| 4724 | |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4725 | * The various libsystemd APIs such as sd-bus or sd-event now publicly |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4726 | expose support for gcc's __attribute__((cleanup())) C extension. |
| 4727 | Specifically, for many object destructor functions alternative |
| 4728 | versions have been added that have names suffixed with "p" and take a |
| 4729 | pointer to a pointer to the object to destroy, instead of just a |
| 4730 | pointer to the object itself. This is useful because these destructor |
| 4731 | functions may be used directly as parameters to the cleanup |
| 4732 | construct. Internally, systemd has been a heavy user of this GCC |
| 4733 | extension for a long time, and with this change similar support is |
| 4734 | now available to consumers of the library outside of systemd. Note |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4735 | that by using this extension in your sources compatibility with old |
Zbigniew Jędrzejewski-Szmek | ed5f884 | 2016-02-10 09:09:36 -0500 | [diff] [blame] | 4736 | and strictly ANSI compatible C compilers is lost. However, all gcc or |
| 4737 | LLVM versions of recent years support this extension. |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4738 | |
| 4739 | * Timer units gained support for a new setting RandomizedDelaySec= that |
Martin Pitt | 8968aea | 2016-02-10 13:51:10 +0100 | [diff] [blame] | 4740 | allows configuring some additional randomized delay to the configured |
| 4741 | time. This is useful to spread out timer events to avoid load peaks in |
| 4742 | clusters or larger setups. |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4743 | |
| 4744 | * Calendar time specifications now support sub-second accuracy. |
| 4745 | |
| 4746 | * Socket units now support listening on SCTP and UDP-lite protocol |
| 4747 | sockets. |
| 4748 | |
| 4749 | * The sd-event API now comes with a full set of man pages. |
| 4750 | |
| 4751 | * Older versions of systemd contained experimental support for |
| 4752 | compressing journal files and coredumps with the LZ4 compressor that |
| 4753 | was not compatible with the lz4 binary (due to API limitations of the |
| 4754 | lz4 library). This support has been removed; only support for files |
| 4755 | compatible with the lz4 binary remains. This LZ4 logic is now |
| 4756 | officially supported and no longer considered experimental. |
| 4757 | |
| 4758 | * The dkr image import logic has been removed again from importd. dkr's |
| 4759 | micro-services focus doesn't fit into the machine image focus of |
| 4760 | importd, and quickly got out of date with the upstream dkr API. |
| 4761 | |
| 4762 | * Creation of the /run/lock/lockdev/ directory was dropped from |
| 4763 | tmpfiles.d/legacy.conf. Better locking mechanisms like flock() have |
Martin Pitt | 61f32bf | 2016-02-01 12:09:34 +0100 | [diff] [blame] | 4764 | been available for many years. If you still need this, you need to |
| 4765 | create your own tmpfiles.d config file with: |
Lennart Poettering | d5f8b29 | 2016-02-10 12:29:38 +0100 | [diff] [blame] | 4766 | |
| 4767 | d /run/lock/lockdev 0775 root lock - |
Martin Pitt | 61f32bf | 2016-02-01 12:09:34 +0100 | [diff] [blame] | 4768 | |
Lennart Poettering | dd95b38 | 2018-01-04 13:52:50 +0100 | [diff] [blame] | 4769 | * The settings StartLimitBurst=, StartLimitInterval=, StartLimitAction= |
| 4770 | and RebootArgument= have been moved from the [Service] section of |
| 4771 | unit files to [Unit], and they are now supported on all unit types, |
| 4772 | not just service units. Of course, systemd will continue to |
| 4773 | understand these settings also at the old location, in order to |
| 4774 | maintain compatibility. |
| 4775 | |
Lennart Poettering | 3545ab3 | 2016-02-11 13:02:35 +0100 | [diff] [blame] | 4776 | Contributions from: Abdo Roig-Maranges, Alban Crequy, Aleksander |
| 4777 | Adamowski, Alexander Kuleshov, Andreas Pokorny, Andrei Borzenkov, |
| 4778 | Andrew Wilcox, Arthur Clement, Beniamino Galvani, Casey Schaufler, |
| 4779 | Chris Atkinson, Chris Mayo, Christian Hesse, Damjan Georgievski, Dan |
| 4780 | Dedrick, Daniele Medri, Daniel J Walsh, Daniel Korostil, Daniel Mack, |
| 4781 | David Herrmann, Dimitri John Ledkov, Dominik Hannen, Douglas Christman, |
| 4782 | Evgeny Vereshchagin, Filipe Brandenburger, Franck Bui, Gabor Kelemen, |
| 4783 | Harald Hoyer, Hayden Walles, Helmut Grohne, Henrik Kaare Poulsen, |
| 4784 | Hristo Venev, Hui Wang, Indrajit Raychaudhuri, Ismo Puustinen, Jakub |
| 4785 | Wilk, Jan Alexander Steffens (heftig), Jan Engelhardt, Jan Synacek, |
| 4786 | Joost Bremmer, Jorgen Schaefer, Karel Zak, Klearchos Chaloulos, |
| 4787 | lc85446, Lennart Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel |
| 4788 | Holtmann, Martin Pitt, Michael Biebl, Michael Olbrich, Michael Scherer, |
| 4789 | Michał Górny, Michal Sekletar, Nicolas Cornu, Nicolas Iooss, Nils |
| 4790 | Carlson, nmartensen, nnz1024, Patrick Ohly, Peter Hutterer, Phillip Sz, |
| 4791 | Ronny Chevalier, Samu Kallio, Shawn Landden, Stef Walter, Susant |
| 4792 | Sahani, Sylvain Plantefève, Tadej Janež, Thomas Hindoe Paaboel |
| 4793 | Andersen, Tom Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Vito |
| 4794 | Caputo, WaLyong Cho, Yu Watanabe, Zbigniew Jędrzejewski-Szmek |
Martin Pitt | 61f32bf | 2016-02-01 12:09:34 +0100 | [diff] [blame] | 4795 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 4796 | — Berlin, 2016-02-11 |
Martin Pitt | 61f32bf | 2016-02-01 12:09:34 +0100 | [diff] [blame] | 4797 | |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4798 | CHANGES WITH 228: |
| 4799 | |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4800 | * A number of properties previously only settable in unit |
| 4801 | files are now also available as properties to set when |
| 4802 | creating transient units programmatically via the bus, as it |
| 4803 | is exposed with systemd-run's --property= |
| 4804 | setting. Specifically, these are: SyslogIdentifier=, |
| 4805 | SyslogLevelPrefix=, TimerSlackNSec=, OOMScoreAdjust=, |
| 4806 | EnvironmentFile=, ReadWriteDirectories=, |
| 4807 | ReadOnlyDirectories=, InaccessibleDirectories=, |
| 4808 | ProtectSystem=, ProtectHome=, RuntimeDirectory=. |
| 4809 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4810 | * When creating transient services via the bus API it is now |
| 4811 | possible to pass in a set of file descriptors to use as |
| 4812 | STDIN/STDOUT/STDERR for the invoked process. |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4813 | |
Lennart Poettering | f1f8a5a | 2015-11-17 01:31:42 +0100 | [diff] [blame] | 4814 | * Slice units may now be created transiently via the bus APIs, |
| 4815 | similar to the way service and scope units may already be |
| 4816 | created transiently. |
| 4817 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4818 | * Wherever systemd expects a calendar timestamp specification |
| 4819 | (like in journalctl's --since= and --until= switches) UTC |
| 4820 | timestamps are now supported. Timestamps suffixed with "UTC" |
| 4821 | are now considered to be in Universal Time Coordinated |
| 4822 | instead of the local timezone. Also, timestamps may now |
Thomas Hindoe Paaboel Andersen | 815bb5b | 2015-11-15 17:30:33 +0100 | [diff] [blame] | 4823 | optionally be specified with sub-second accuracy. Both of |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4824 | these additions also apply to recurring calendar event |
| 4825 | specification, such as OnCalendar= in timer units. |
| 4826 | |
| 4827 | * journalctl gained a new "--sync" switch that asks the |
| 4828 | journal daemon to write all so far unwritten log messages to |
| 4829 | disk and sync the files, before returning. |
| 4830 | |
| 4831 | * systemd-tmpfiles learned two new line types "q" and "Q" that |
| 4832 | operate like "v", but also set up a basic btrfs quota |
| 4833 | hierarchy when used on a btrfs file system with quota |
| 4834 | enabled. |
| 4835 | |
Lennart Poettering | f1f8a5a | 2015-11-17 01:31:42 +0100 | [diff] [blame] | 4836 | * tmpfiles' "v", "q" and "Q" will now create a plain directory |
| 4837 | instead of a subvolume (even on a btrfs file system) if the |
| 4838 | root directory is a plain directory, and not a |
| 4839 | subvolume. This should simplify things with certain chroot() |
| 4840 | environments which are not aware of the concept of btrfs |
| 4841 | subvolumes. |
| 4842 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4843 | * systemd-detect-virt gained a new --chroot switch to detect |
| 4844 | whether execution takes place in a chroot() environment. |
| 4845 | |
| 4846 | * CPUAffinity= now takes CPU index ranges in addition to |
| 4847 | individual indexes. |
| 4848 | |
| 4849 | * The various memory-related resource limit settings (such as |
| 4850 | LimitAS=) now understand the usual K, M, G, ... suffixes to |
| 4851 | the base of 1024 (IEC). Similar, the time-related resource |
| 4852 | limit settings understand the usual min, h, day, ... |
| 4853 | suffixes now. |
| 4854 | |
Lennart Poettering | f1f8a5a | 2015-11-17 01:31:42 +0100 | [diff] [blame] | 4855 | * There's a new system.conf setting DefaultTasksMax= to |
| 4856 | control the default TasksMax= setting for services and |
| 4857 | scopes running on the system. (TasksMax= is the primary |
| 4858 | setting that exposes the "pids" cgroup controller on systemd |
| 4859 | and was introduced in the previous systemd release.) The |
| 4860 | setting now defaults to 512, which means services that are |
| 4861 | not explicitly configured otherwise will only be able to |
| 4862 | create 512 processes or threads at maximum, from this |
| 4863 | version on. Note that this means that thread- or |
| 4864 | process-heavy services might need to be reconfigured to set |
| 4865 | TasksMax= to a higher value. It is sufficient to set |
| 4866 | TasksMax= in these specific unit files to a higher value, or |
| 4867 | even "infinity". Similar, there's now a logind.conf setting |
| 4868 | UserTasksMax= that defaults to 4096 and limits the total |
| 4869 | number of processes or tasks each user may own |
| 4870 | concurrently. nspawn containers also have the TasksMax= |
| 4871 | value set by default now, to 8192. Note that all of this |
| 4872 | only has an effect if the "pids" cgroup controller is |
| 4873 | enabled in the kernel. The general benefit of these changes |
| 4874 | should be a more robust and safer system, that provides a |
| 4875 | certain amount of per-service fork() bomb protection. |
| 4876 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4877 | * systemd-nspawn gained the new --network-veth-extra= switch |
| 4878 | to define additional and arbitrarily-named virtual Ethernet |
| 4879 | links between the host and the container. |
| 4880 | |
| 4881 | * A new service execution setting PassEnvironment= has been |
| 4882 | added that allows importing select environment variables |
| 4883 | from PID1's environment block into the environment block of |
| 4884 | the service. |
| 4885 | |
Lennart Poettering | ddb4b0d | 2015-11-18 12:17:57 +0100 | [diff] [blame] | 4886 | * Timer units gained support for a new RemainAfterElapse= |
Michael Biebl | 595bfe7 | 2016-07-12 12:52:11 +0200 | [diff] [blame] | 4887 | setting which takes a boolean argument. It defaults to on, |
Lennart Poettering | ddb4b0d | 2015-11-18 12:17:57 +0100 | [diff] [blame] | 4888 | exposing behaviour unchanged to previous releases. If set to |
| 4889 | off, timer units are unloaded after they elapsed if they |
| 4890 | cannot elapse again. This is particularly useful for |
| 4891 | transient timer units, which shall not stay around longer |
| 4892 | than until they first elapse. |
| 4893 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4894 | * systemd will now bump the net.unix.max_dgram_qlen to 512 by |
| 4895 | default now (the kernel default is 16). This is beneficial |
| 4896 | for avoiding blocking on AF_UNIX/SOCK_DGRAM sockets since it |
| 4897 | allows substantially larger numbers of queued |
| 4898 | datagrams. This should increase the capability of systemd to |
| 4899 | parallelize boot-up, as logging and sd_notify() are unlikely |
| 4900 | to stall execution anymore. If you need to change the value |
| 4901 | from the new defaults, use the usual sysctl.d/ snippets. |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4902 | |
| 4903 | * The compression framing format used by the journal or |
| 4904 | coredump processing has changed to be in line with what the |
| 4905 | official LZ4 tools generate. LZ4 compression support in |
| 4906 | systemd was considered unsupported previously, as the format |
| 4907 | was not compatible with the normal tools. With this release |
| 4908 | this has changed now, and it is hence safe for downstream |
| 4909 | distributions to turn it on. While not compressing as well |
Thomas Hindoe Paaboel Andersen | 815bb5b | 2015-11-15 17:30:33 +0100 | [diff] [blame] | 4910 | as the XZ, LZ4 is substantially faster, which makes |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4911 | it a good default choice for the compression logic in the |
| 4912 | journal and in coredump handling. |
| 4913 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4914 | * Any reference to /etc/mtab has been dropped from |
| 4915 | systemd. The file has been obsolete since a while, but |
| 4916 | systemd refused to work on systems where it was incorrectly |
Thomas Hindoe Paaboel Andersen | 815bb5b | 2015-11-15 17:30:33 +0100 | [diff] [blame] | 4917 | set up (it should be a symlink or non-existent). Please make |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4918 | sure to update to util-linux 2.27.1 or newer in conjunction |
| 4919 | with this systemd release, which also drops any reference to |
| 4920 | /etc/mtab. If you maintain a distribution make sure that no |
| 4921 | software you package still references it, as this is a |
| 4922 | likely source of bugs. There's also a glibc bug pending, |
| 4923 | asking for removal of any reference to this obsolete file: |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4924 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4925 | https://sourceware.org/bugzilla/show_bug.cgi?id=19108 |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4926 | |
Lennart Poettering | d5bd92b | 2016-04-08 19:13:43 +0200 | [diff] [blame] | 4927 | Note that only util-linux versions built with |
| 4928 | --enable-libmount-force-mountinfo are supported. |
| 4929 | |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4930 | * Support for the ".snapshot" unit type has been removed. This |
| 4931 | feature turned out to be little useful and little used, and |
| 4932 | has now been removed from the core and from systemctl. |
| 4933 | |
Lennart Poettering | b9e2f7e | 2015-11-13 14:59:25 +0100 | [diff] [blame] | 4934 | * The dependency types RequiresOverridable= and |
| 4935 | RequisiteOverridable= have been removed from systemd. They |
| 4936 | have been used only very sparingly to our knowledge and |
| 4937 | other options that provide a similar effect (such as |
| 4938 | systemctl --mode=ignore-dependencies) are much more useful |
| 4939 | and commonly used. Moreover, they were only half-way |
| 4940 | implemented as the option to control behaviour regarding |
| 4941 | these dependencies was never added to systemctl. By removing |
| 4942 | these dependency types the execution engine becomes a bit |
| 4943 | simpler. Unit files that use these dependencies should be |
| 4944 | changed to use the non-Overridable dependency types |
| 4945 | instead. In fact, when parsing unit files with these |
| 4946 | options, that's what systemd will automatically convert them |
| 4947 | too, but it will also warn, asking users to fix the unit |
| 4948 | files accordingly. Removal of these dependency types should |
| 4949 | only affect a negligible number of unit files in the wild. |
| 4950 | |
| 4951 | * Behaviour of networkd's IPForward= option changed |
| 4952 | (again). It will no longer maintain a per-interface setting, |
| 4953 | but propagate one way from interfaces where this is enabled |
| 4954 | to the global kernel setting. The global setting will be |
| 4955 | enabled when requested by a network that is set up, but |
| 4956 | never be disabled again. This change was made to make sure |
| 4957 | IPv4 and IPv6 behaviour regarding packet forwarding is |
| 4958 | similar (as the Linux IPv6 stack does not support |
| 4959 | per-interface control of this setting) and to minimize |
| 4960 | surprises. |
| 4961 | |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4962 | * In unit files the behaviour of %u, %U, %h, %s has |
| 4963 | changed. These specifiers will now unconditionally resolve |
| 4964 | to the various user database fields of the user that the |
| 4965 | systemd instance is running as, instead of the user |
| 4966 | configured in the specific unit via User=. Note that this |
| 4967 | effectively doesn't change much, as resolving of these |
| 4968 | specifiers was already turned off in the --system instance |
| 4969 | of systemd, as we cannot do NSS lookups from PID 1. In the |
| 4970 | --user instance of systemd these specifiers where correctly |
| 4971 | resolved, but hardly made any sense, since the user instance |
| 4972 | lacks privileges to do user switches anyway, and User= is |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 4973 | hence useless. Moreover, even in the --user instance of |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4974 | systemd behaviour was awkward as it would only take settings |
| 4975 | from User= assignment placed before the specifier into |
| 4976 | account. In order to unify and simplify the logic around |
| 4977 | this the specifiers will now always resolve to the |
| 4978 | credentials of the user invoking the manager (which in case |
| 4979 | of PID 1 is the root user). |
| 4980 | |
| 4981 | Contributions from: Andrew Jones, Beniamino Galvani, Boyuan |
| 4982 | Yang, Daniel Machon, Daniel Mack, David Herrmann, David |
| 4983 | Reynolds, David Strauss, Dongsu Park, Evgeny Vereshchagin, |
Lennart Poettering | f1f8a5a | 2015-11-17 01:31:42 +0100 | [diff] [blame] | 4984 | Felipe Sateler, Filipe Brandenburger, Franck Bui, Hristo |
| 4985 | Venev, Iago López Galeiras, Jan Engelhardt, Jan Janssen, Jan |
| 4986 | Synacek, Jesus Ornelas Aguayo, Karel Zak, kayrus, Kay Sievers, |
| 4987 | Lennart Poettering, Liu Yuan Yuan, Mantas Mikulėnas, Marcel |
| 4988 | Holtmann, Marcin Bachry, Marcos Alano, Marcos Mello, Mark |
| 4989 | Theunissen, Martin Pitt, Michael Marineau, Michael Olbrich, |
| 4990 | Michal Schmidt, Michal Sekletar, Mirco Tischler, Nick Owens, |
| 4991 | Nicolas Cornu, Patrik Flykt, Peter Hutterer, reverendhomer, |
| 4992 | Ronny Chevalier, Sangjung Woo, Seong-ho Cho, Shawn Landden, |
| 4993 | Susant Sahani, Thomas Haller, Thomas Hindoe Paaboel Andersen, |
| 4994 | Tom Gundersen, Torstein Husebø, Vito Caputo, Zbigniew |
| 4995 | Jędrzejewski-Szmek |
Lennart Poettering | 28c85da | 2015-11-13 13:59:50 +0100 | [diff] [blame] | 4996 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 4997 | — Berlin, 2015-11-18 |
Lennart Poettering | a11c7ea | 2015-11-12 13:40:21 +0100 | [diff] [blame] | 4998 | |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 4999 | CHANGES WITH 227: |
| 5000 | |
| 5001 | * systemd now depends on util-linux v2.27. More specifically, |
| 5002 | the newly added mount monitor feature in libmount now |
| 5003 | replaces systemd's former own implementation. |
| 5004 | |
| 5005 | * libmount mandates /etc/mtab not to be regular file, and |
| 5006 | systemd now enforces this condition at early boot. |
| 5007 | /etc/mtab has been deprecated and warned about for a very |
| 5008 | long time, so systems running systemd should already have |
| 5009 | stopped having this file around as anything else than a |
| 5010 | symlink to /proc/self/mounts. |
| 5011 | |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5012 | * Support for the "pids" cgroup controller has been added. It |
| 5013 | allows accounting the number of tasks in a cgroup and |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5014 | enforcing limits on it. This adds two new setting |
| 5015 | TasksAccounting= and TasksMax= to each unit, as well as a |
Zbigniew Jędrzejewski-Szmek | 6fd5517 | 2015-09-30 11:48:33 -0400 | [diff] [blame] | 5016 | global option DefaultTasksAccounting=. |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5017 | |
| 5018 | * Support for the "net_cls" cgroup controller has been added. |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5019 | It allows assigning a net class ID to each task in the |
| 5020 | cgroup, which can then be used in firewall rules and traffic |
| 5021 | shaping configurations. Note that the kernel netfilter net |
| 5022 | class code does not currently work reliably for ingress |
| 5023 | packets on unestablished sockets. |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5024 | |
| 5025 | This adds a new config directive called NetClass= to CGroup |
Zbigniew Jędrzejewski-Szmek | 6fd5517 | 2015-09-30 11:48:33 -0400 | [diff] [blame] | 5026 | enabled units. Allowed values are positive numbers for fixed |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5027 | assignments and "auto" for picking a free value |
| 5028 | automatically. |
| 5029 | |
Daniel Mack | 21d86c6 | 2015-09-30 12:40:44 +0200 | [diff] [blame] | 5030 | * 'systemctl is-system-running' now returns 'offline' if the |
| 5031 | system is not booted with systemd. This command can now be |
| 5032 | used as a substitute for 'systemd-notify --booted'. |
| 5033 | |
| 5034 | * Watchdog timeouts have been increased to 3 minutes for all |
| 5035 | in-tree service files. Apparently, disk IO issues are more |
| 5036 | frequent than we hoped, and user reported >1 minute waiting |
| 5037 | for disk IO. |
| 5038 | |
| 5039 | * 'machine-id-commit' functionality has been merged into |
| 5040 | 'machine-id-setup --commit'. The separate binary has been |
| 5041 | removed. |
| 5042 | |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5043 | * The WorkingDirectory= directive in unit files may now be set |
| 5044 | to the special value '~'. In this case, the working |
| 5045 | directory is set to the home directory of the user |
| 5046 | configured in User=. |
Daniel Mack | 21d86c6 | 2015-09-30 12:40:44 +0200 | [diff] [blame] | 5047 | |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5048 | * "machinectl shell" will now open the shell in the home |
| 5049 | directory of the selected user by default. |
| 5050 | |
Daniel Mack | 21d86c6 | 2015-09-30 12:40:44 +0200 | [diff] [blame] | 5051 | * The CrashChVT= configuration file setting is renamed to |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5052 | CrashChangeVT=, following our usual logic of not |
| 5053 | abbreviating unnecessarily. The old directive is still |
| 5054 | supported for compat reasons. Also, this directive now takes |
| 5055 | an integer value between 1 and 63, or a boolean value. The |
| 5056 | formerly supported '-1' value for disabling stays around for |
| 5057 | compat reasons. |
Daniel Mack | 21d86c6 | 2015-09-30 12:40:44 +0200 | [diff] [blame] | 5058 | |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5059 | * The PrivateTmp=, PrivateDevices=, PrivateNetwork=, |
Daniel Mack | 8b5f9d1 | 2015-10-01 13:28:09 +0200 | [diff] [blame] | 5060 | NoNewPrivileges=, TTYPath=, WorkingDirectory= and |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5061 | RootDirectory= properties can now be set for transient |
| 5062 | units. |
| 5063 | |
| 5064 | * The systemd-analyze tool gained a new "set-log-target" verb |
| 5065 | to change the logging target the system manager logs to |
| 5066 | dynamically during runtime. This is similar to how |
| 5067 | "systemd-analyze set-log-level" already changes the log |
| 5068 | level. |
| 5069 | |
| 5070 | * In nspawn /sys is now mounted as tmpfs, with only a selected |
| 5071 | set of subdirectories mounted in from the real sysfs. This |
| 5072 | enhances security slightly, and is useful for ensuring user |
| 5073 | namespaces work correctly. |
| 5074 | |
| 5075 | * Support for USB FunctionFS activation has been added. This |
| 5076 | allows implementation of USB gadget services that are |
| 5077 | activated as soon as they are requested, so that they don't |
Michael Biebl | 595bfe7 | 2016-07-12 12:52:11 +0200 | [diff] [blame] | 5078 | have to run continuously, similar to classic socket |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5079 | activation. |
| 5080 | |
| 5081 | * The "systemctl exit" command now optionally takes an |
| 5082 | additional parameter that sets the exit code to return from |
| 5083 | the systemd manager when exiting. This is only relevant when |
| 5084 | running the systemd user instance, or when running the |
| 5085 | system instance in a container. |
| 5086 | |
| 5087 | * sd-bus gained the new API calls sd_bus_path_encode_many() |
| 5088 | and sd_bus_path_decode_many() that allow easy encoding and |
| 5089 | decoding of multiple identifier strings inside a D-Bus |
| 5090 | object path. Another new call sd_bus_default_flush_close() |
| 5091 | has been added to flush and close per-thread default |
| 5092 | connections. |
| 5093 | |
| 5094 | * systemd-cgtop gained support for a -M/--machine= switch to |
| 5095 | show the control groups within a certain container only. |
| 5096 | |
| 5097 | * "systemctl kill" gained support for an optional --fail |
| 5098 | switch. If specified the requested operation will fail of no |
| 5099 | processes have been killed, because the unit had no |
| 5100 | processes attached, or similar. |
| 5101 | |
Daniel Mack | bdba922 | 2015-10-07 15:55:10 +0200 | [diff] [blame] | 5102 | * A new systemd.crash_reboot=1 kernel command line option has |
| 5103 | been added that triggers a reboot after crashing. This can |
| 5104 | also be set through CrashReboot= in systemd.conf. |
| 5105 | |
| 5106 | * The RuntimeDirectory= setting now understands unit |
| 5107 | specifiers like %i or %f. |
| 5108 | |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 5109 | * A new (still internal) library API sd-ipv4acd has been added, |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5110 | that implements address conflict detection for IPv4. It's |
| 5111 | based on code from sd-ipv4ll, and will be useful for |
| 5112 | detecting DHCP address conflicts. |
| 5113 | |
Daniel Mack | bdba922 | 2015-10-07 15:55:10 +0200 | [diff] [blame] | 5114 | * File descriptors passed during socket activation may now be |
| 5115 | named. A new API sd_listen_fds_with_names() is added to |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 5116 | access the names. The default names may be overridden, |
Daniel Mack | bdba922 | 2015-10-07 15:55:10 +0200 | [diff] [blame] | 5117 | either in the .socket file using the FileDescriptorName= |
| 5118 | parameter, or by passing FDNAME= when storing the file |
| 5119 | descriptors using sd_notify(). |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5120 | |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5121 | * systemd-networkd gained support for: |
| 5122 | |
Zbigniew Jędrzejewski-Szmek | 0053598 | 2016-05-28 11:50:37 -0400 | [diff] [blame] | 5123 | - Setting the IPv6 Router Advertisement settings via |
Tom Gundersen | edf4126 | 2015-10-06 11:54:14 +0200 | [diff] [blame] | 5124 | IPv6AcceptRouterAdvertisements= in .network files. |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5125 | |
| 5126 | - Configuring the HelloTimeSec=, MaxAgeSec= and |
| 5127 | ForwardDelaySec= bridge parameters in .netdev files. |
| 5128 | |
| 5129 | - Configuring PreferredSource= for static routes in |
Tom Gundersen | edf4126 | 2015-10-06 11:54:14 +0200 | [diff] [blame] | 5130 | .network files. |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5131 | |
Daniel Mack | bdba922 | 2015-10-07 15:55:10 +0200 | [diff] [blame] | 5132 | * The "ask-password" framework used to query for LUKS harddisk |
| 5133 | passwords or SSL passwords during boot gained support for |
| 5134 | caching passwords in the kernel keyring, if it is |
| 5135 | available. This makes sure that the user only has to type in |
| 5136 | a passphrase once if there are multiple objects to unlock |
| 5137 | with the same one. Previously, such password caching was |
| 5138 | available only when Plymouth was used; this moves the |
| 5139 | caching logic into the systemd codebase itself. The |
| 5140 | "systemd-ask-password" utility gained a new --keyname= |
| 5141 | switch to control which kernel keyring key to use for |
| 5142 | caching a password in. This functionality is also useful for |
| 5143 | enabling display managers such as gdm to automatically |
| 5144 | unlock the user's GNOME keyring if its passphrase, the |
| 5145 | user's password and the harddisk password are the same, if |
| 5146 | gdm-autologin is used. |
Lennart Poettering | fe08a30 | 2015-09-30 23:35:10 +0200 | [diff] [blame] | 5147 | |
| 5148 | * When downloading tar or raw images using "machinectl |
| 5149 | pull-tar" or "machinectl pull-raw", a matching ".nspawn" |
| 5150 | file is now also downloaded, if it is available and stored |
| 5151 | next to the image file. |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5152 | |
Lennart Poettering | 91d0d69 | 2015-10-01 16:24:04 +0200 | [diff] [blame] | 5153 | * Units of type ".socket" gained a new boolean setting |
| 5154 | Writable= which is only useful in conjunction with |
| 5155 | ListenSpecial=. If true, enables opening the specified |
| 5156 | special file in O_RDWR mode rather than O_RDONLY mode. |
| 5157 | |
| 5158 | * systemd-rfkill has been reworked to become a singleton |
| 5159 | service that is activated through /dev/rfkill on each rfkill |
| 5160 | state change and saves the settings to disk. This way, |
| 5161 | systemd-rfkill is now compatible with devices that exist |
| 5162 | only intermittendly, and even restores state if the previous |
| 5163 | system shutdown was abrupt rather than clean. |
| 5164 | |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5165 | * The journal daemon gained support for vacuuming old journal |
| 5166 | files controlled by the number of files that shall remain, |
| 5167 | in addition to the already existing control by size and by |
| 5168 | date. This is useful as journal interleaving performance |
Torstein Husebø | 6dd6a9c | 2016-05-12 11:23:35 +0200 | [diff] [blame] | 5169 | degrades with too many separate journal files, and allows |
Lennart Poettering | d046fb9 | 2015-10-06 12:33:25 +0200 | [diff] [blame] | 5170 | putting an effective limit on them. The new setting defaults |
| 5171 | to 100, but this may be changed by setting SystemMaxFiles= |
| 5172 | and RuntimeMaxFiles= in journald.conf. Also, the |
| 5173 | "journalctl" tool gained the new --vacuum-files= switch to |
| 5174 | manually vacuum journal files to leave only the specified |
| 5175 | number of files in place. |
Tom Gundersen | c48eb61 | 2015-10-06 12:11:44 +0200 | [diff] [blame] | 5176 | |
Daniel Mack | bdba922 | 2015-10-07 15:55:10 +0200 | [diff] [blame] | 5177 | * udev will now create /dev/disk/by-path links for ATA devices |
| 5178 | on kernels where that is supported. |
Lennart Poettering | c30f086 | 2015-10-07 15:45:04 +0200 | [diff] [blame] | 5179 | |
Daniel Machon | efce0ff | 2015-10-05 11:15:16 +0200 | [diff] [blame] | 5180 | * Galician, Serbian, Turkish and Korean translations were added. |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5181 | |
Lennart Poettering | 61e6771 | 2015-10-07 15:48:58 +0200 | [diff] [blame] | 5182 | Contributions from: Aaro Koskinen, Alban Crequy, Beniamino |
| 5183 | Galvani, Benjamin Robin, Branislav Blaskovic, Chen-Han Hsiao |
| 5184 | (Stanley), Daniel Buch, Daniel Machon, Daniel Mack, David |
| 5185 | Herrmann, David Milburn, doubleodoug, Evgeny Vereshchagin, |
| 5186 | Felipe Franciosi, Filipe Brandenburger, Fran Dieguez, Gabriel |
| 5187 | de Perthuis, Georg Müller, Hans de Goede, Hendrik Brueckner, |
| 5188 | Ivan Shapovalov, Jacob Keller, Jan Engelhardt, Jan Janssen, |
| 5189 | Jan Synacek, Jens Kuske, Karel Zak, Kay Sievers, Krzesimir |
| 5190 | Nowak, Krzysztof Kotlenga, Lars Uebernickel, Lennart |
| 5191 | Poettering, Lukas Nykryn, Łukasz Stelmach, Maciej Wereski, |
| 5192 | Marcel Holtmann, Marius Thesing, Martin Pitt, Michael Biebl, |
| 5193 | Michael Gebetsroither, Michal Schmidt, Michal Sekletar, Mike |
| 5194 | Gilbert, Muhammet Kara, nazgul77, Nicolas Cornu, NoXPhasma, |
| 5195 | Olof Johansson, Patrik Flykt, Pawel Szewczyk, reverendhomer, |
| 5196 | Ronny Chevalier, Sangjung Woo, Seong-ho Cho, Susant Sahani, |
| 5197 | Sylvain Plantefève, Thomas Haller, Thomas Hindoe Paaboel |
| 5198 | Andersen, Tom Gundersen, Tom Lyon, Viktar Vauchkevich, |
| 5199 | Zbigniew Jędrzejewski-Szmek, Марко М. Костић |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5200 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5201 | — Berlin, 2015-10-07 |
Daniel Mack | c97e586 | 2015-09-22 13:30:12 +0200 | [diff] [blame] | 5202 | |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5203 | CHANGES WITH 226: |
| 5204 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5205 | * The DHCP implementation of systemd-networkd gained a set of |
| 5206 | new features: |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5207 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5208 | - The DHCP server now supports emitting DNS and NTP |
| 5209 | information. It may be enabled and configured via |
| 5210 | EmitDNS=, DNS=, EmitNTP=, and NTP=. If transmission of DNS |
| 5211 | and NTP information is enabled, but no servers are |
| 5212 | configured, the corresponding uplink information (if there |
| 5213 | is any) is propagated. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5214 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5215 | - Server and client now support transmission and reception |
| 5216 | of timezone information. It can be configured via the |
| 5217 | newly introduced network options UseTimezone=, |
| 5218 | EmitTimezone=, and Timezone=. Transmission of timezone |
| 5219 | information is enabled between host and containers by |
| 5220 | default now: the container will change its local timezone |
| 5221 | to what the host has set. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5222 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5223 | - Lease timeouts can now be configured via |
| 5224 | MaxLeaseTimeSec= and DefaultLeaseTimeSec=. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5225 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5226 | - The DHCP server improved on the stability of |
| 5227 | leases. Clients are more likely to get the same lease |
| 5228 | information back, even if the server loses state. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5229 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5230 | - The DHCP server supports two new configuration options to |
| 5231 | control the lease address pool metrics, PoolOffset= and |
| 5232 | PoolSize=. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5233 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5234 | * The encapsulation limit of tunnels in systemd-networkd may |
| 5235 | now be configured via 'EncapsulationLimit='. It allows |
| 5236 | modifying the maximum additional levels of encapsulation |
| 5237 | that are permitted to be prepended to a packet. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5238 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5239 | * systemd now supports the concept of user buses replacing |
| 5240 | session buses, if used with dbus-1.10 (and enabled via dbus |
| 5241 | --enable-user-session). It previously only supported this on |
| 5242 | kdbus-enabled systems, and this release expands this to |
| 5243 | 'dbus-daemon' systems. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5244 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5245 | * systemd-networkd now supports predictable interface names |
| 5246 | for virtio devices. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5247 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5248 | * systemd now optionally supports the new Linux kernel |
| 5249 | "unified" control group hierarchy. If enabled via the kernel |
| 5250 | command-line option 'systemd.unified_cgroup_hierarchy=1', |
| 5251 | systemd will try to mount the unified cgroup hierarchy |
| 5252 | directly on /sys/fs/cgroup. If not enabled, or not |
| 5253 | available, systemd will fall back to the legacy cgroup |
| 5254 | hierarchy setup, as before. Host system and containers can |
| 5255 | mix and match legacy and unified hierarchies as they |
Evgeny Vereshchagin | 856ca72 | 2016-06-03 12:17:00 +0300 | [diff] [blame] | 5256 | wish. nspawn understands the $UNIFIED_CGROUP_HIERARCHY |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5257 | environment variable to individually select the hierarchy to |
| 5258 | use for executed containers. By default, nspawn will use the |
| 5259 | unified hierarchy for the containers if the host uses the |
| 5260 | unified hierarchy, and the legacy hierarchy otherwise. |
| 5261 | Please note that at this point the unified hierarchy is an |
| 5262 | experimental kernel feature and is likely to change in one |
| 5263 | of the next kernel releases. Therefore, it should not be |
| 5264 | enabled by default in downstream distributions yet. The |
| 5265 | minimum required kernel version for the unified hierarchy to |
| 5266 | work is 4.2. Note that when the unified hierarchy is used |
| 5267 | for the first time delegated access to controllers is |
| 5268 | safe. Because of this systemd-nspawn containers will get |
| 5269 | access to controllers now, as will systemd user |
| 5270 | sessions. This means containers and user sessions may now |
| 5271 | manage their own resources, partitioning up what the system |
| 5272 | grants them. |
| 5273 | |
| 5274 | * A new special scope unit "init.scope" has been introduced |
| 5275 | that encapsulates PID 1 of the system. It may be used to |
| 5276 | determine resource usage and enforce resource limits on PID |
| 5277 | 1 itself. PID 1 hence moved out of the root of the control |
| 5278 | group tree. |
| 5279 | |
| 5280 | * The cgtop tool gained support for filtering out kernel |
| 5281 | threads when counting tasks in a control group. Also, the |
| 5282 | count of processes is now recursively summed up by |
| 5283 | default. Two options -k and --recursive= have been added to |
| 5284 | revert to old behaviour. The tool has also been updated to |
| 5285 | work correctly in containers now. |
| 5286 | |
| 5287 | * systemd-nspawn's --bind= and --bind-ro= options have been |
| 5288 | extended to allow creation of non-recursive bind mounts. |
| 5289 | |
Daniel Mack | c626bf1 | 2015-09-07 13:06:53 +0200 | [diff] [blame] | 5290 | * libsystemd gained two new calls sd_pid_get_cgroup() and |
| 5291 | sd_peer_get_cgroup() which return the control group path of |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5292 | a process or peer of a connected AF_UNIX socket. This |
| 5293 | function call is particularly useful when implementing |
| 5294 | delegated subtrees support in the control group hierarchy. |
| 5295 | |
| 5296 | * The "sd-event" event loop API of libsystemd now supports |
| 5297 | correct dequeuing of real-time signals, without losing |
| 5298 | signal events. |
| 5299 | |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 5300 | * When systemd requests a polkit decision when managing units it |
| 5301 | will now add additional fields to the request, including unit |
| 5302 | name and desired operation. This enables more powerful polkit |
| 5303 | policies, that make decisions depending on these parameters. |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5304 | |
Lennart Poettering | 47f5a38 | 2015-09-07 12:43:25 +0200 | [diff] [blame] | 5305 | * nspawn learnt support for .nspawn settings files, that may |
| 5306 | accompany the image files or directories of containers, and |
| 5307 | may contain additional settings for the container. This is |
| 5308 | an alternative to configuring container parameters via the |
| 5309 | nspawn command line. |
| 5310 | |
Lennart Poettering | 2f77dec | 2015-09-08 01:36:59 +0200 | [diff] [blame] | 5311 | Contributions from: Cristian Rodríguez, Daniel Mack, David |
| 5312 | Herrmann, Eugene Yakubovich, Evgeny Vereshchagin, Filipe |
| 5313 | Brandenburger, Hans de Goede, Jan Alexander Steffens, Jan |
| 5314 | Synacek, Kay Sievers, Lennart Poettering, Mangix, Marcel |
| 5315 | Holtmann, Martin Pitt, Michael Biebl, Michael Chapman, Michal |
| 5316 | Sekletar, Peter Hutterer, Piotr Drąg, reverendhomer, Robin |
| 5317 | Hack, Susant Sahani, Sylvain Pasche, Thomas Hindoe Paaboel |
David Herrmann | 23d08d1 | 2015-09-08 13:31:57 +0200 | [diff] [blame] | 5318 | Andersen, Tom Gundersen, Torstein Husebø |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5319 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5320 | — Berlin, 2015-09-08 |
David Herrmann | c9912c5 | 2015-09-05 11:09:44 +0200 | [diff] [blame] | 5321 | |
Daniel Mack | ec5249a | 2015-08-25 15:01:51 +0200 | [diff] [blame] | 5322 | CHANGES WITH 225: |
| 5323 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5324 | * machinectl gained a new verb 'shell' which opens a fresh |
| 5325 | shell on the target container or the host. It is similar to |
| 5326 | the existing 'login' command of machinectl, but spawns the |
| 5327 | shell directly without prompting for username or |
| 5328 | password. The pseudo machine '.host' now refers to the local |
| 5329 | host and is used by default. Hence, 'machinectl shell' can |
| 5330 | be used as replacement for 'su -' which spawns a session as |
| 5331 | a fresh systemd unit in a way that is fully isolated from |
| 5332 | the originating session. |
Daniel Mack | ec5249a | 2015-08-25 15:01:51 +0200 | [diff] [blame] | 5333 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5334 | * systemd-networkd learned to cope with private-zone DHCP |
| 5335 | options and allows other programs to query the values. |
Daniel Mack | ec5249a | 2015-08-25 15:01:51 +0200 | [diff] [blame] | 5336 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5337 | * SELinux access control when enabling/disabling units is no |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 5338 | longer enforced with this release. The previous implementation |
| 5339 | was incorrect, and a new corrected implementation is not yet |
| 5340 | available. As unit file operations are still protected via |
| 5341 | polkit and D-Bus policy this is not a security problem. Yet, |
| 5342 | distributions which care about optimal SELinux support should |
| 5343 | probably not stabilize on this release. |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5344 | |
| 5345 | * sd-bus gained support for matches of type "arg0has=", that |
| 5346 | test for membership of strings in string arrays sent in bus |
| 5347 | messages. |
| 5348 | |
| 5349 | * systemd-resolved now dumps the contents of its DNS and LLMNR |
| 5350 | caches to the logs on reception of the SIGUSR1 signal. This |
| 5351 | is useful to debug DNS behaviour. |
| 5352 | |
| 5353 | * The coredumpctl tool gained a new --directory= option to |
| 5354 | operate on journal files in a specific directory. |
| 5355 | |
| 5356 | * "systemctl reboot" and related commands gained a new |
| 5357 | "--message=" option which may be used to set a free-text |
| 5358 | wall message when shutting down or rebooting the |
| 5359 | system. This message is also logged, which is useful for |
| 5360 | figuring out the reason for a reboot or shutdown a |
| 5361 | posteriori. |
| 5362 | |
| 5363 | * The "systemd-resolve-host" tool's -i switch now takes |
| 5364 | network interface numbers as alternative to interface names. |
| 5365 | |
| 5366 | * A new unit file setting for services has been introduced: |
| 5367 | UtmpMode= allows configuration of how precisely systemd |
| 5368 | handles utmp and wtmp entries for the service if this is |
| 5369 | enabled. This allows writing services that appear similar to |
| 5370 | user sessions in the output of the "w", "who", "last" and |
| 5371 | "lastlog" tools. |
| 5372 | |
| 5373 | * systemd-resolved will now locally synthesize DNS resource |
| 5374 | records for the "localhost" and "gateway" domains as well as |
| 5375 | the local hostname. This should ensure that clients querying |
| 5376 | RRs via resolved will get similar results as those going via |
| 5377 | NSS, if nss-myhostname is enabled. |
| 5378 | |
| 5379 | Contributions from: Alastair Hughes, Alex Crawford, Daniel |
| 5380 | Mack, David Herrmann, Dimitri John Ledkov, Eric Kostrowski, |
| 5381 | Evgeny Vereshchagin, Felipe Sateler, HATAYAMA Daisuke, Jan |
| 5382 | Pokorný, Jan Synacek, Johnny Robeson, Karel Zak, Kay Sievers, |
| 5383 | Kefeng Wang, Lennart Poettering, Major Hayden, Marcel |
| 5384 | Holtmann, Markus Elfring, Martin Mikkelsen, Martin Pitt, Matt |
| 5385 | Turner, Maxim Mikityanskiy, Michael Biebl, Namhyung Kim, |
| 5386 | Nicolas Cornu, Owen W. Taylor, Patrik Flykt, Peter Hutterer, |
| 5387 | reverendhomer, Richard Maw, Ronny Chevalier, Seth Jennings, |
| 5388 | Stef Walter, Susant Sahani, Thomas Blume, Thomas Hindoe |
| 5389 | Paaboel Andersen, Thomas Meyer, Tom Gundersen, Vincent Batts, |
| 5390 | WaLyong Cho, Zbigniew Jędrzejewski-Szmek |
Daniel Mack | ec5249a | 2015-08-25 15:01:51 +0200 | [diff] [blame] | 5391 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5392 | — Berlin, 2015-08-27 |
Daniel Mack | ec5249a | 2015-08-25 15:01:51 +0200 | [diff] [blame] | 5393 | |
David Herrmann | 11811e8 | 2015-07-31 18:10:52 +0200 | [diff] [blame] | 5394 | CHANGES WITH 224: |
| 5395 | |
David Herrmann | 10fa421 | 2015-07-31 18:21:19 +0200 | [diff] [blame] | 5396 | * The systemd-efi-boot-generator functionality was merged into |
| 5397 | systemd-gpt-auto-generator. |
| 5398 | |
Lennart Poettering | 5e8d425 | 2015-09-07 00:08:12 +0200 | [diff] [blame] | 5399 | * systemd-networkd now supports Group Policy for vxlan |
| 5400 | devices. It can be enabled via the new boolean configuration |
| 5401 | option called 'GroupPolicyExtension='. |
David Herrmann | 10fa421 | 2015-07-31 18:21:19 +0200 | [diff] [blame] | 5402 | |
David Herrmann | 11811e8 | 2015-07-31 18:10:52 +0200 | [diff] [blame] | 5403 | Contributions from: Andreas Kempf, Christian Hesse, Daniel Mack, David |
| 5404 | Herrmann, Herman Fries, Johannes Nixdorf, Kay Sievers, Lennart |
| 5405 | Poettering, Peter Hutterer, Susant Sahani, Tom Gundersen |
| 5406 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5407 | — Berlin, 2015-07-31 |
David Herrmann | 11811e8 | 2015-07-31 18:10:52 +0200 | [diff] [blame] | 5408 | |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5409 | CHANGES WITH 223: |
| 5410 | |
| 5411 | * The python-systemd code has been removed from the systemd repository. |
| 5412 | A new repository has been created which accommodates the code from |
| 5413 | now on, and we kindly ask distributions to create a separate package |
| 5414 | for this: https://github.com/systemd/python-systemd |
| 5415 | |
Kay Sievers | 01608bc | 2015-07-27 18:20:54 +0200 | [diff] [blame] | 5416 | * The systemd daemon will now reload its main configuration |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5417 | (/etc/systemd/system.conf) on daemon-reload. |
| 5418 | |
| 5419 | * sd-dhcp now exposes vendor specific extensions via |
| 5420 | sd_dhcp_lease_get_vendor_specific(). |
| 5421 | |
Daniel Mack | 931618d | 2015-07-27 19:09:22 +0200 | [diff] [blame] | 5422 | * systemd-networkd gained a number of new configuration options. |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5423 | |
Daniel Mack | 931618d | 2015-07-27 19:09:22 +0200 | [diff] [blame] | 5424 | - A new boolean configuration option for TAP devices called |
Daniel Mack | 37d54b9 | 2015-07-27 21:34:28 +0200 | [diff] [blame] | 5425 | 'VNetHeader='. If set, the IFF_VNET_HDR flag is set for the |
Daniel Mack | 931618d | 2015-07-27 19:09:22 +0200 | [diff] [blame] | 5426 | device, thus allowing to send and receive GSO packets. |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5427 | |
Daniel Mack | 931618d | 2015-07-27 19:09:22 +0200 | [diff] [blame] | 5428 | - A new tunnel configuration option called 'CopyDSCP='. |
| 5429 | If enabled, the DSCP field of ip6 tunnels is copied into the |
| 5430 | decapsulated packet. |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5431 | |
Daniel Mack | 931618d | 2015-07-27 19:09:22 +0200 | [diff] [blame] | 5432 | - A set of boolean bridge configuration options were added. |
| 5433 | 'UseBPDU=', 'HairPin=', 'FastLeave=', 'AllowPortToBeRoot=', |
| 5434 | and 'UnicastFlood=' are now parsed by networkd and applied to the |
| 5435 | respective bridge link device via the respective IFLA_BRPORT_* |
| 5436 | netlink attribute. |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5437 | |
Daniel Mack | 931618d | 2015-07-27 19:09:22 +0200 | [diff] [blame] | 5438 | - A new string configuration option to override the hostname sent |
| 5439 | to a DHCP server, called 'Hostname='. If set and 'SendHostname=' |
| 5440 | is true, networkd will use the configured hostname instead of the |
| 5441 | system hostname when sending DHCP requests. |
| 5442 | |
| 5443 | - A new tunnel configuration option called 'IPv6FlowLabel='. If set, |
| 5444 | networkd will configure the IPv6 flow-label of the tunnel device |
| 5445 | according to RFC2460. |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5446 | |
David Herrmann | f5f113f | 2015-07-29 12:12:10 +0200 | [diff] [blame] | 5447 | - The 'macvtap' virtual network devices are now supported, similar to |
| 5448 | the already supported 'macvlan' devices. |
| 5449 | |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5450 | * systemd-resolved now implements RFC5452 to improve resilience against |
Kay Sievers | 01608bc | 2015-07-27 18:20:54 +0200 | [diff] [blame] | 5451 | cache poisoning. Additionally, source port randomization is enabled |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5452 | by default to further protect against DNS spoofing attacks. |
| 5453 | |
| 5454 | * nss-mymachines now supports translating UIDs and GIDs of running |
| 5455 | containers with user-namespaces enabled. If a container 'foo' |
| 5456 | translates a host uid 'UID' to the container uid 'TUID', then |
| 5457 | nss-mymachines will also map uid 'UID' to/from username 'vu-foo-TUID' |
| 5458 | (with 'foo' and 'TUID' replaced accordingly). Similarly, groups are |
| 5459 | mapped as 'vg-foo-TGID'. |
| 5460 | |
| 5461 | Contributions from: Beniamino Galvani, cee1, Christian Hesse, Daniel |
David Herrmann | e4e6699 | 2015-07-29 14:59:35 +0200 | [diff] [blame] | 5462 | Buch, Daniel Mack, daurnimator, David Herrmann, Dimitri John Ledkov, |
| 5463 | HATAYAMA Daisuke, Ivan Shapovalov, Jan Alexander Steffens (heftig), |
| 5464 | Johan Ouwerkerk, Jose Carlos Venegas Munoz, Karel Zak, Kay Sievers, |
| 5465 | Lennart Poettering, Lidong Zhong, Martin Pitt, Michael Biebl, Michael |
| 5466 | Olbrich, Michal Schmidt, Michal Sekletar, Mike Gilbert, Namhyung Kim, |
| 5467 | Nick Owens, Peter Hutterer, Richard Maw, Steven Allen, Sungbae Yoo, |
| 5468 | Susant Sahani, Thomas Blume, Thomas Hindoe Paaboel Andersen, Tom |
| 5469 | Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Vito Caputo, |
| 5470 | Vivenzio Pagliari, Zbigniew Jędrzejewski-Szmek |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5471 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5472 | — Berlin, 2015-07-29 |
David Herrmann | e57eaef | 2015-07-27 18:13:37 +0200 | [diff] [blame] | 5473 | |
David Herrmann | 0db83ad | 2015-07-05 11:04:59 +0200 | [diff] [blame] | 5474 | CHANGES WITH 222: |
David Herrmann | 5541c88 | 2015-07-06 19:07:10 +0200 | [diff] [blame] | 5475 | |
Kay Sievers | 861b02e | 2015-07-05 16:02:13 +0200 | [diff] [blame] | 5476 | * udev does not longer support the WAIT_FOR_SYSFS= key in udev rules. |
| 5477 | There are no known issues with current sysfs, and udev does not need |
| 5478 | or should be used to work around such bugs. |
| 5479 | |
| 5480 | * udev does no longer enable USB HID power management. Several reports |
| 5481 | indicate, that some devices cannot handle that setting. |
David Herrmann | 0db83ad | 2015-07-05 11:04:59 +0200 | [diff] [blame] | 5482 | |
| 5483 | * The udev accelerometer helper was removed. The functionality |
| 5484 | is now fully included in iio-sensor-proxy. But this means, |
| 5485 | older iio-sensor-proxy versions will no longer provide |
| 5486 | accelerometer/orientation data with this systemd version. |
| 5487 | Please upgrade iio-sensor-proxy to version 1.0. |
| 5488 | |
David Herrmann | 5541c88 | 2015-07-06 19:07:10 +0200 | [diff] [blame] | 5489 | * networkd gained a new configuration option IPv6PrivacyExtensions= |
| 5490 | which enables IPv6 privacy extensions (RFC 4941, "Privacy Extensions |
| 5491 | for Stateless Address") on selected networks. |
| 5492 | |
Daniel Mack | 9b36111 | 2015-07-06 21:19:57 -0400 | [diff] [blame] | 5493 | * For the sake of fewer build-time dependencies and less code in the |
| 5494 | main repository, the python bindings are about to be removed in the |
| 5495 | next release. A new repository has been created which accommodates |
| 5496 | the code from now on, and we kindly ask distributions to create a |
| 5497 | separate package for this. The removal will take place in v223. |
| 5498 | |
| 5499 | https://github.com/systemd/python-systemd |
| 5500 | |
David Herrmann | 0db83ad | 2015-07-05 11:04:59 +0200 | [diff] [blame] | 5501 | Contributions from: Abdo Roig-Maranges, Andrew Eikum, Bastien Nocera, |
| 5502 | Cédric Delmas, Christian Hesse, Christos Trochalakis, Daniel Mack, |
| 5503 | daurnimator, David Herrmann, Dimitri John Ledkov, Eric Biggers, Eric |
| 5504 | Cook, Felipe Sateler, Geert Jansen, Gerd Hoffmann, Gianpaolo Macario, |
David Herrmann | 5541c88 | 2015-07-06 19:07:10 +0200 | [diff] [blame] | 5505 | Greg Kroah-Hartman, Iago López Galeiras, Jan Alexander Steffens |
| 5506 | (heftig), Jan Engelhardt, Jay Strict, Kay Sievers, Lennart Poettering, |
David Herrmann | 0db83ad | 2015-07-05 11:04:59 +0200 | [diff] [blame] | 5507 | Markus Knetschke, Martin Pitt, Michael Biebl, Michael Marineau, Michal |
| 5508 | Sekletar, Miguel Bernal Marin, Peter Hutterer, Richard Maw, rinrinne, |
David Herrmann | 2d1ca11 | 2015-07-07 17:13:39 +0200 | [diff] [blame] | 5509 | Susant Sahani, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Torstein |
| 5510 | Husebø, Vedran Miletić, WaLyong Cho, Zbigniew Jędrzejewski-Szmek |
David Herrmann | 0db83ad | 2015-07-05 11:04:59 +0200 | [diff] [blame] | 5511 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5512 | — Berlin, 2015-07-07 |
David Herrmann | 0db83ad | 2015-07-05 11:04:59 +0200 | [diff] [blame] | 5513 | |
Martin Pitt | 0f0467e | 2015-05-27 17:04:49 +0200 | [diff] [blame] | 5514 | CHANGES WITH 221: |
| 5515 | |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5516 | * The sd-bus.h and sd-event.h APIs have now been declared |
Kay Sievers | 5f92d24 | 2015-06-18 00:25:17 +0200 | [diff] [blame] | 5517 | stable and have been added to the official interface of |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5518 | libsystemd.so. sd-bus implements an alternative D-Bus client |
| 5519 | library, that is relatively easy to use, very efficient and |
| 5520 | supports both classic D-Bus as well as kdbus as transport |
| 5521 | backend. sd-event is a generic event loop abstraction that |
| 5522 | is built around Linux epoll, but adds features such as event |
Thomas Hindoe Paaboel Andersen | 0aee49d | 2015-06-18 17:10:59 +0200 | [diff] [blame] | 5523 | prioritization or efficient timer handling. Both APIs are good |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5524 | choices for C programs looking for a bus and/or event loop |
| 5525 | implementation that is minimal and does not have to be |
Kay Sievers | 5f92d24 | 2015-06-18 00:25:17 +0200 | [diff] [blame] | 5526 | portable to other kernels. |
Martin Pitt | 0f0467e | 2015-05-27 17:04:49 +0200 | [diff] [blame] | 5527 | |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5528 | * kdbus support is no longer compile-time optional. It is now |
| 5529 | always built-in. However, it can still be disabled at |
| 5530 | runtime using the kdbus=0 kernel command line setting, and |
Ronny Chevalier | c655146 | 2015-06-18 16:23:28 +0200 | [diff] [blame] | 5531 | that setting may be changed to default to off, by specifying |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5532 | --disable-kdbus at build-time. Note though that the kernel |
| 5533 | command line setting has no effect if the kdbus.ko kernel |
| 5534 | module is not installed, in which case kdbus is (obviously) |
| 5535 | also disabled. We encourage all downstream distributions to |
Thomas Hindoe Paaboel Andersen | 0aee49d | 2015-06-18 17:10:59 +0200 | [diff] [blame] | 5536 | begin testing kdbus by adding it to the kernel images in the |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5537 | development distributions, and leaving kdbus support in |
| 5538 | systemd enabled. |
Martin Pitt | 0f0467e | 2015-05-27 17:04:49 +0200 | [diff] [blame] | 5539 | |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5540 | * The minimal required util-linux version has been bumped to |
| 5541 | 2.26. |
| 5542 | |
| 5543 | * Support for chkconfig (--enable-chkconfig) was removed in |
Thomas Hindoe Paaboel Andersen | 0aee49d | 2015-06-18 17:10:59 +0200 | [diff] [blame] | 5544 | favor of calling an abstraction tool |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5545 | /lib/systemd/systemd-sysv-install. This needs to be |
| 5546 | implemented for your distribution. See "SYSV INIT.D SCRIPTS" |
| 5547 | in README for details. |
| 5548 | |
| 5549 | * If there's a systemd unit and a SysV init script for the |
| 5550 | same service name, and the user executes "systemctl enable" |
| 5551 | for it (or a related call), then this will now enable both |
| 5552 | (or execute the related operation on both), not just the |
| 5553 | unit. |
| 5554 | |
| 5555 | * The libudev API documentation has been converted from gtkdoc |
| 5556 | into man pages. |
| 5557 | |
| 5558 | * gudev has been removed from the systemd tree, it is now an |
| 5559 | external project. |
| 5560 | |
| 5561 | * The systemd-cgtop tool learnt a new --raw switch to generate |
Thomas Hindoe Paaboel Andersen | 0aee49d | 2015-06-18 17:10:59 +0200 | [diff] [blame] | 5562 | "raw" (machine parsable) output. |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5563 | |
| 5564 | * networkd's IPForwarding= .network file setting learnt the |
| 5565 | new setting "kernel", which ensures that networkd does not |
| 5566 | change the IP forwarding sysctl from the default kernel |
| 5567 | state. |
| 5568 | |
| 5569 | * The systemd-logind bus API now exposes a new boolean |
| 5570 | property "Docked" that reports whether logind considers the |
| 5571 | system "docked", i.e. connected to a docking station or not. |
| 5572 | |
| 5573 | Contributions from: Alex Crawford, Andreas Pokorny, Andrei |
| 5574 | Borzenkov, Charles Duffy, Colin Guthrie, Cristian Rodríguez, |
| 5575 | Daniele Medri, Daniel Hahler, Daniel Mack, David Herrmann, |
| 5576 | David Mohr, Dimitri John Ledkov, Djalal Harouni, dslul, Ed |
| 5577 | Swierk, Eric Cook, Filipe Brandenburger, Gianpaolo Macario, |
| 5578 | Harald Hoyer, Iago López Galeiras, Igor Vuk, Jan Synacek, |
| 5579 | Jason Pleau, Jason S. McMullan, Jean Delvare, Jeff Huang, |
| 5580 | Jonathan Boulle, Karel Zak, Kay Sievers, kloun, Lennart |
| 5581 | Poettering, Marc-Antoine Perennou, Marcel Holtmann, Mario |
| 5582 | Limonciello, Martin Pitt, Michael Biebl, Michael Olbrich, |
| 5583 | Michal Schmidt, Mike Gilbert, Nick Owens, Pablo Lezaeta Reyes, |
Lennart Poettering | b912e25 | 2015-06-19 01:12:28 +0200 | [diff] [blame] | 5584 | Patrick Donnelly, Pavel Odvody, Peter Hutterer, Philip |
| 5585 | Withnall, Ronny Chevalier, Simon McVittie, Susant Sahani, |
| 5586 | Thomas Hindoe Paaboel Andersen, Tom Gundersen, Torstein |
| 5587 | Husebø, Umut Tezduyar Lindskog, Viktar Vauchkevich, Werner |
| 5588 | Fink, Zbigniew Jędrzejewski-Szmek |
Lennart Poettering | 470e72d | 2015-06-18 00:18:49 +0200 | [diff] [blame] | 5589 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5590 | — Berlin, 2015-06-19 |
Martin Pitt | 0f0467e | 2015-05-27 17:04:49 +0200 | [diff] [blame] | 5591 | |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5592 | CHANGES WITH 220: |
| 5593 | |
David Herrmann | f7a73a2 | 2015-05-21 20:39:47 +0200 | [diff] [blame] | 5594 | * The gudev library has been extracted into a separate repository |
| 5595 | available at: https://git.gnome.org/browse/libgudev/ |
| 5596 | It is now managed as part of the Gnome project. Distributions |
| 5597 | are recommended to pass --disable-gudev to systemd and use |
| 5598 | gudev from the Gnome project instead. gudev is still included |
| 5599 | in systemd, for now. It will be removed soon, though. Please |
| 5600 | also see the announcement-thread on systemd-devel: |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 5601 | https://lists.freedesktop.org/archives/systemd-devel/2015-May/032070.html |
David Herrmann | f7a73a2 | 2015-05-21 20:39:47 +0200 | [diff] [blame] | 5602 | |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5603 | * systemd now exposes a CPUUsageNSec= property for each |
| 5604 | service unit on the bus, that contains the overall consumed |
| 5605 | CPU time of a service (the sum of what each process of the |
| 5606 | service consumed). This value is only available if |
| 5607 | CPUAccounting= is turned on for a service, and is then shown |
| 5608 | in the "systemctl status" output. |
| 5609 | |
| 5610 | * Support for configuring alternative mappings of the old SysV |
| 5611 | runlevels to systemd targets has been removed. They are now |
Zbigniew Jędrzejewski-Szmek | 29d1fcb | 2015-05-21 14:30:53 -0400 | [diff] [blame] | 5612 | hardcoded in a way that runlevels 2, 3, 4 all map to |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5613 | multi-user.target and 5 to graphical.target (which |
| 5614 | previously was already the default behaviour). |
| 5615 | |
| 5616 | * The auto-mounter logic gained support for mount point |
| 5617 | expiry, using a new TimeoutIdleSec= setting in .automount |
| 5618 | units. (Also available as x-systemd.idle-timeout= in /etc/fstab). |
| 5619 | |
| 5620 | * The EFI System Partition (ESP) as mounted to /boot by |
| 5621 | systemd-efi-boot-generator will now be unmounted |
Zbigniew Jędrzejewski-Szmek | 29d1fcb | 2015-05-21 14:30:53 -0400 | [diff] [blame] | 5622 | automatically after 2 minutes of not being used. This should |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5623 | minimize the risk of ESP corruptions. |
| 5624 | |
| 5625 | * New /etc/fstab options x-systemd.requires= and |
| 5626 | x-systemd.requires-mounts-for= are now supported to express |
| 5627 | additional dependencies for mounts. This is useful for |
| 5628 | journalling file systems that support external journal |
| 5629 | devices or overlay file systems that require underlying file |
| 5630 | systems to be mounted. |
| 5631 | |
| 5632 | * systemd does not support direct live-upgrades (via systemctl |
| 5633 | daemon-reexec) from versions older than v44 anymore. As no |
| 5634 | distribution we are aware of shipped such old versions in a |
| 5635 | stable release this should not be problematic. |
| 5636 | |
| 5637 | * When systemd forks off a new per-connection service instance |
| 5638 | it will now set the $REMOTE_ADDR environment variable to the |
| 5639 | remote IP address, and $REMOTE_PORT environment variable to |
| 5640 | the remote IP port. This behaviour is similar to the |
| 5641 | corresponding environment variables defined by CGI. |
| 5642 | |
| 5643 | * systemd-networkd gained support for uplink failure |
| 5644 | detection. The BindCarrier= option allows binding interface |
| 5645 | configuration dynamically to the link sense of other |
| 5646 | interfaces. This is useful to achieve behaviour like in |
| 5647 | network switches. |
| 5648 | |
| 5649 | * systemd-networkd gained support for configuring the DHCP |
| 5650 | client identifier to use when requesting leases. |
| 5651 | |
| 5652 | * systemd-networkd now has a per-network UseNTP= option to |
| 5653 | configure whether NTP server information acquired via DHCP |
| 5654 | is passed on to services like systemd-timesyncd. |
| 5655 | |
| 5656 | * systemd-networkd gained support for vti6 tunnels. |
| 5657 | |
Lennart Poettering | 1579dd2 | 2015-05-21 20:24:34 +0200 | [diff] [blame] | 5658 | * Note that systemd-networkd manages the sysctl variable |
| 5659 | /proc/sys/net/ipv[46]/conf/*/forwarding for each interface |
| 5660 | it is configured for since v219. The variable controls IP |
| 5661 | forwarding, and is a per-interface alternative to the global |
| 5662 | /proc/sys/net/ipv[46]/ip_forward. This setting is |
| 5663 | configurable in the IPForward= option, which defaults to |
| 5664 | "no". This means if networkd is used for an interface it is |
| 5665 | no longer sufficient to set the global sysctl option to turn |
| 5666 | on IP forwarding! Instead, the .network file option |
| 5667 | IPForward= needs to be turned on! Note that the |
| 5668 | implementation of this behaviour was broken in v219 and has |
| 5669 | been fixed in v220. |
| 5670 | |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5671 | * Many bonding and vxlan options are now configurable in |
| 5672 | systemd-networkd. |
| 5673 | |
| 5674 | * systemd-nspawn gained a new --property= setting to set unit |
| 5675 | properties for the container scope. This is useful for |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 5676 | setting resource parameters (e.g. "CPUShares=500") on |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5677 | containers started from the command line. |
| 5678 | |
| 5679 | * systemd-nspawn gained a new --private-users= switch to make |
| 5680 | use of user namespacing available on recent Linux kernels. |
| 5681 | |
| 5682 | * systemd-nspawn may now be called as part of a shell pipeline |
| 5683 | in which case the pipes used for stdin and stdout are passed |
| 5684 | directly to the process invoked in the container, without |
| 5685 | indirection via a pseudo tty. |
| 5686 | |
| 5687 | * systemd-nspawn gained a new switch to control the UNIX |
| 5688 | signal to use when killing the init process of the container |
| 5689 | when shutting down. |
| 5690 | |
| 5691 | * systemd-nspawn gained a new --overlay= switch for mounting |
| 5692 | overlay file systems into the container using the new kernel |
| 5693 | overlayfs support. |
| 5694 | |
| 5695 | * When a container image is imported via systemd-importd and |
| 5696 | the host file system is not btrfs, a loopback block device |
| 5697 | file is created in /var/lib/machines.raw with a btrfs file |
| 5698 | system inside. It is then mounted to /var/lib/machines to |
| 5699 | enable btrfs features for container management. The loopback |
| 5700 | file and btrfs file system is grown as needed when container |
| 5701 | images are imported via systemd-importd. |
| 5702 | |
| 5703 | * systemd-machined/systemd-importd gained support for btrfs |
| 5704 | quota, to enforce container disk space limits on disk. This |
| 5705 | is exposed in "machinectl set-limit". |
| 5706 | |
| 5707 | * systemd-importd now can import containers from local .tar, |
| 5708 | .raw and .qcow2 images, and export them to .tar and .raw. It |
| 5709 | can also import dkr v2 images now from the network (on top |
| 5710 | of v1 as before). |
| 5711 | |
| 5712 | * systemd-importd gained support for verifying downloaded |
| 5713 | images with gpg2 (previously only gpg1 was supported). |
| 5714 | |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 5715 | * systemd-machined, systemd-logind, systemd: most bus calls are |
| 5716 | now accessible to unprivileged processes via polkit. Also, |
| 5717 | systemd-logind will now allow users to kill their own sessions |
| 5718 | without further privileges or authorization. |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5719 | |
| 5720 | * systemd-shutdownd has been removed. This service was |
| 5721 | previously responsible for implementing scheduled shutdowns |
| 5722 | as exposed in /usr/bin/shutdown's time parameter. This |
| 5723 | functionality has now been moved into systemd-logind and is |
| 5724 | accessible via a bus interface. |
| 5725 | |
| 5726 | * "systemctl reboot" gained a new switch --firmware-setup that |
| 5727 | can be used to reboot into the EFI firmware setup, if that |
| 5728 | is available. systemd-logind now exposes an API on the bus |
| 5729 | to trigger such reboots, in case graphical desktop UIs want |
| 5730 | to cover this functionality. |
| 5731 | |
| 5732 | * "systemctl enable", "systemctl disable" and "systemctl mask" |
Lennart Poettering | 1579dd2 | 2015-05-21 20:24:34 +0200 | [diff] [blame] | 5733 | now support a new "--now" switch. If specified the units |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5734 | that are enabled will also be started, and the ones |
| 5735 | disabled/masked also stopped. |
| 5736 | |
| 5737 | * The Gummiboot EFI boot loader tool has been merged into |
David Herrmann | 1a2d5fb | 2015-05-21 20:25:38 +0200 | [diff] [blame] | 5738 | systemd, and renamed to "systemd-boot". The bootctl tool has been |
| 5739 | updated to support systemd-boot. |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5740 | |
| 5741 | * An EFI kernel stub has been added that may be used to create |
| 5742 | kernel EFI binaries that contain not only the actual kernel, |
| 5743 | but also an initrd, boot splash, command line and OS release |
| 5744 | information. This combined binary can then be signed as a |
| 5745 | single image, so that the firmware can verify it all in one |
David Herrmann | 1a2d5fb | 2015-05-21 20:25:38 +0200 | [diff] [blame] | 5746 | step. systemd-boot has special support for EFI binaries created |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5747 | like this and can extract OS release information from them |
| 5748 | and show them in the boot menu. This functionality is useful |
| 5749 | to implement cryptographically verified boot schemes. |
| 5750 | |
| 5751 | * Optional support has been added to systemd-fsck to pass |
| 5752 | fsck's progress report to an AF_UNIX socket in the file |
| 5753 | system. |
| 5754 | |
| 5755 | * udev will no longer create device symlinks for all block |
| 5756 | devices by default. A blacklist for excluding special block |
| 5757 | devices from this logic has been turned into a whitelist |
| 5758 | that requires picking block devices explicitly that require |
| 5759 | device symlinks. |
| 5760 | |
| 5761 | * A new (currently still internal) API sd-device.h has been |
| 5762 | added to libsystemd. This modernized API is supposed to |
| 5763 | replace libudev eventually. In fact, already much of libudev |
| 5764 | is now just a wrapper around sd-device.h. |
| 5765 | |
| 5766 | * A new hwdb database for storing metadata about pointing |
| 5767 | stick devices has been added. |
| 5768 | |
| 5769 | * systemd-tmpfiles gained support for setting file attributes |
| 5770 | similar to the "chattr" tool with new 'h' and 'H' lines. |
| 5771 | |
| 5772 | * systemd-journald will no longer unconditionally set the |
| 5773 | btrfs NOCOW flag on new journal files. This is instead done |
| 5774 | with tmpfiles snippet using the new 'h' line type. This |
| 5775 | allows easy disabling of this logic, by masking the |
| 5776 | journal-nocow.conf tmpfiles file. |
| 5777 | |
| 5778 | * systemd-journald will now translate audit message types to |
| 5779 | human readable identifiers when writing them to the |
| 5780 | journal. This should improve readability of audit messages. |
| 5781 | |
| 5782 | * The LUKS logic gained support for the offset= and skip= |
| 5783 | options in /etc/crypttab, as previously implemented by |
| 5784 | Debian. |
| 5785 | |
| 5786 | * /usr/lib/os-release gained a new optional field VARIANT= for |
| 5787 | distributions that support multiple variants (such as a |
| 5788 | desktop edition, a server edition, ...) |
| 5789 | |
| 5790 | Contributions from: Aaro Koskinen, Adam Goode, Alban Crequy, |
| 5791 | Alberto Fanjul Alonso, Alexander Sverdlin, Alex Puchades, Alin |
| 5792 | Rauta, Alison Chaiken, Andrew Jones, Arend van Spriel, |
| 5793 | Benedikt Morbach, Benjamin Franzke, Benjamin Tissoires, Blaž |
| 5794 | Tomažič, Chris Morgan, Chris Morin, Colin Walters, Cristian |
| 5795 | Rodríguez, Daniel Buch, Daniel Drake, Daniele Medri, Daniel |
| 5796 | Mack, Daniel Mustieles, daurnimator, Davide Bettio, David |
| 5797 | Herrmann, David Strauss, Didier Roche, Dimitri John Ledkov, |
| 5798 | Eric Cook, Gavin Li, Goffredo Baroncelli, Hannes Reinecke, |
| 5799 | Hans de Goede, Hans-Peter Deifel, Harald Hoyer, Iago López |
| 5800 | Galeiras, Ivan Shapovalov, Jan Engelhardt, Jan Janssen, Jan |
| 5801 | Pazdziora, Jan Synacek, Jasper St. Pierre, Jay Faulkner, John |
| 5802 | Paul Adrian Glaubitz, Jonathon Gilbert, Karel Zak, Kay |
| 5803 | Sievers, Koen Kooi, Lennart Poettering, Lubomir Rintel, Lucas |
| 5804 | De Marchi, Lukas Nykryn, Lukas Rusak, Lukasz Skalski, Łukasz |
| 5805 | Stelmach, Mantas Mikulėnas, Marc-Antoine Perennou, Marcel |
| 5806 | Holtmann, Martin Pitt, Mathieu Chevrier, Matthew Garrett, |
| 5807 | Michael Biebl, Michael Marineau, Michael Olbrich, Michal |
| 5808 | Schmidt, Michal Sekletar, Mirco Tischler, Nir Soffer, Patrik |
| 5809 | Flykt, Pavel Odvody, Peter Hutterer, Peter Lemenkov, Peter |
| 5810 | Waller, Piotr Drąg, Raul Gutierrez S, Richard Maw, Ronny |
| 5811 | Chevalier, Ross Burton, Sebastian Rasmussen, Sergey Ptashnick, |
| 5812 | Seth Jennings, Shawn Landden, Simon Farnsworth, Stefan Junker, |
| 5813 | Stephen Gallagher, Susant Sahani, Sylvain Plantefève, Thomas |
| 5814 | Haller, Thomas Hindoe Paaboel Andersen, Tobias Hunger, Tom |
| 5815 | Gundersen, Torstein Husebø, Umut Tezduyar Lindskog, Will |
| 5816 | Woods, Zachary Cook, Zbigniew Jędrzejewski-Szmek |
| 5817 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 5818 | — Berlin, 2015-05-22 |
Lennart Poettering | 481a0aa | 2015-05-21 19:47:42 +0200 | [diff] [blame] | 5819 | |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5820 | CHANGES WITH 219: |
| 5821 | |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5822 | * Introduce a new API "sd-hwdb.h" for querying the hardware |
| 5823 | metadata database. With this minimal interface one can query |
| 5824 | and enumerate the udev hwdb, decoupled from the old libudev |
| 5825 | library. libudev's interface for this is now only a wrapper |
| 5826 | around sd-hwdb. A new tool systemd-hwdb has been added to |
| 5827 | interface with and update the database. |
| 5828 | |
| 5829 | * When any of systemd's tools copies files (for example due to |
| 5830 | tmpfiles' C lines) a btrfs reflink will attempted first, |
| 5831 | before bytewise copying is done. |
| 5832 | |
| 5833 | * systemd-nspawn gained a new --ephemeral switch. When |
| 5834 | specified a btrfs snapshot is taken of the container's root |
| 5835 | directory, and immediately removed when the container |
| 5836 | terminates again. Thus, a container can be started whose |
| 5837 | changes never alter the container's root directory, and are |
| 5838 | lost on container termination. This switch can also be used |
| 5839 | for starting a container off the root file system of the |
| 5840 | host without affecting the host OS. This switch is only |
| 5841 | available on btrfs file systems. |
| 5842 | |
| 5843 | * systemd-nspawn gained a new --template= switch. It takes the |
| 5844 | path to a container tree to use as template for the tree |
Thomas Hindoe Paaboel Andersen | 7edecf2 | 2015-02-16 21:21:16 +0100 | [diff] [blame] | 5845 | specified via --directory=, should that directory be |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5846 | missing. This allows instantiating containers dynamically, |
| 5847 | on first run. This switch is only available on btrfs file |
| 5848 | systems. |
| 5849 | |
| 5850 | * When a .mount unit refers to a mount point on which multiple |
| 5851 | mounts are stacked, and the .mount unit is stopped all of |
| 5852 | the stacked mount points will now be unmounted until no |
| 5853 | mount point remains. |
| 5854 | |
| 5855 | * systemd now has an explicit notion of supported and |
| 5856 | unsupported unit types. Jobs enqueued for unsupported unit |
| 5857 | types will now fail with an "unsupported" error code. More |
| 5858 | specifically .swap, .automount and .device units are not |
| 5859 | supported in containers, .busname units are not supported on |
| 5860 | non-kdbus systems. .swap and .automount are also not |
| 5861 | supported if their respective kernel compile time options |
| 5862 | are disabled. |
| 5863 | |
| 5864 | * machinectl gained support for two new "copy-from" and |
| 5865 | "copy-to" commands for copying files from a running |
| 5866 | container to the host or vice versa. |
| 5867 | |
| 5868 | * machinectl gained support for a new "bind" command to bind |
| 5869 | mount host directories into local containers. This is |
| 5870 | currently only supported for nspawn containers. |
| 5871 | |
| 5872 | * networkd gained support for configuring bridge forwarding |
| 5873 | database entries (fdb) from .network files. |
| 5874 | |
| 5875 | * A new tiny daemon "systemd-importd" has been added that can |
| 5876 | download container images in tar, raw, qcow2 or dkr formats, |
| 5877 | and make them available locally in /var/lib/machines, so |
| 5878 | that they can run as nspawn containers. The daemon can GPG |
| 5879 | verify the downloads (not supported for dkr, since it has no |
| 5880 | provisions for verifying downloads). It will transparently |
| 5881 | decompress bz2, xz, gzip compressed downloads if necessary, |
| 5882 | and restore sparse files on disk. The daemon uses privilege |
| 5883 | separation to ensure the actual download logic runs with |
Torstein Husebø | 94e5ba3 | 2015-07-24 11:14:01 +0200 | [diff] [blame] | 5884 | fewer privileges than the daemon itself. machinectl has |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5885 | gained new commands "pull-tar", "pull-raw" and "pull-dkr" to |
| 5886 | make the functionality of importd available to the |
| 5887 | user. With this in place the Fedora and Ubuntu "Cloud" |
| 5888 | images can be downloaded and booted as containers unmodified |
| 5889 | (the Fedora images lack the appropriate GPG signature files |
| 5890 | currently, so they cannot be verified, but this will change |
| 5891 | soon, hopefully). Note that downloading images is currently |
| 5892 | only fully supported on btrfs. |
| 5893 | |
| 5894 | * machinectl is now able to list container images found in |
| 5895 | /var/lib/machines, along with some metadata about sizes of |
| 5896 | disk and similar. If the directory is located on btrfs and |
| 5897 | quota is enabled, this includes quota display. A new command |
| 5898 | "image-status" has been added that shows additional |
| 5899 | information about images. |
| 5900 | |
| 5901 | * machinectl is now able to clone container images |
| 5902 | efficiently, if the underlying file system (btrfs) supports |
Elias Probst | f59dba2 | 2016-03-16 09:23:31 +0100 | [diff] [blame] | 5903 | it, with the new "machinectl clone" command. It also |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5904 | gained commands for renaming and removing images, as well as |
| 5905 | marking them read-only or read-write (supported also on |
| 5906 | legacy file systems). |
| 5907 | |
| 5908 | * networkd gained support for collecting LLDP network |
| 5909 | announcements, from hardware that supports this. This is |
| 5910 | shown in networkctl output. |
| 5911 | |
| 5912 | * systemd-run gained support for a new -t (--pty) switch for |
| 5913 | invoking a binary on a pty whose input and output is |
| 5914 | connected to the invoking terminal. This allows executing |
| 5915 | processes as system services while interactively |
| 5916 | communicating with them via the terminal. Most interestingly |
| 5917 | this is supported across container boundaries. Invoking |
| 5918 | "systemd-run -t /bin/bash" is an alternative to running a |
| 5919 | full login session, the difference being that the former |
| 5920 | will not register a session, nor go through the PAM session |
| 5921 | setup. |
| 5922 | |
| 5923 | * tmpfiles gained support for a new "v" line type for creating |
| 5924 | btrfs subvolumes. If the underlying file system is a legacy |
| 5925 | file system, this automatically degrades to creating a |
| 5926 | normal directory. Among others /var/lib/machines is now |
| 5927 | created like this at boot, should it be missing. |
| 5928 | |
| 5929 | * The directory /var/lib/containers/ has been deprecated and |
| 5930 | been replaced by /var/lib/machines. The term "machines" has |
| 5931 | been used in the systemd context as generic term for both |
| 5932 | VMs and containers, and hence appears more appropriate for |
| 5933 | this, as the directory can also contain raw images bootable |
| 5934 | via qemu/kvm. |
| 5935 | |
| 5936 | * systemd-nspawn when invoked with -M but without --directory= |
| 5937 | or --image= is now capable of searching for the container |
| 5938 | root directory, subvolume or disk image automatically, in |
| 5939 | /var/lib/machines. systemd-nspawn@.service has been updated |
| 5940 | to make use of this, thus allowing it to be used for raw |
| 5941 | disk images, too. |
| 5942 | |
| 5943 | * A new machines.target unit has been introduced that is |
| 5944 | supposed to group all containers/VMs invoked as services on |
| 5945 | the system. systemd-nspawn@.service has been updated to |
| 5946 | integrate with that. |
| 5947 | |
| 5948 | * machinectl gained a new "start" command, for invoking a |
| 5949 | container as a service. "machinectl start foo" is mostly |
| 5950 | equivalent to "systemctl start systemd-nspawn@foo.service", |
| 5951 | but handles escaping in a nicer way. |
| 5952 | |
| 5953 | * systemd-nspawn will now mount most of the cgroupfs tree |
| 5954 | read-only into each container, with the exception of the |
| 5955 | container's own subtree in the name=systemd hierarchy. |
| 5956 | |
| 5957 | * journald now sets the special FS_NOCOW file flag for its |
| 5958 | journal files. This should improve performance on btrfs, by |
| 5959 | avoiding heavy fragmentation when journald's write-pattern |
| 5960 | is used on COW file systems. It degrades btrfs' data |
| 5961 | integrity guarantees for the files to the same levels as for |
| 5962 | ext3/ext4 however. This should be OK though as journald does |
| 5963 | its own data integrity checks and all its objects are |
| 5964 | checksummed on disk. Also, journald should handle btrfs disk |
| 5965 | full events a lot more gracefully now, by processing SIGBUS |
| 5966 | errors, and not relying on fallocate() anymore. |
| 5967 | |
| 5968 | * When journald detects that journal files it is writing to |
| 5969 | have been deleted it will immediately start new journal |
| 5970 | files. |
| 5971 | |
| 5972 | * systemd now provides a way to store file descriptors |
Lennart Poettering | 4c37970 | 2016-10-24 20:06:03 +0200 | [diff] [blame] | 5973 | per-service in PID 1. This is useful for daemons to ensure |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5974 | that fds they require are not lost during a daemon |
Torstein Husebø | 94e5ba3 | 2015-07-24 11:14:01 +0200 | [diff] [blame] | 5975 | restart. The fds are passed to the daemon on the next |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 5976 | invocation in the same way socket activation fds are |
| 5977 | passed. This is now used by journald to ensure that the |
| 5978 | various sockets connected to all the system's stdout/stderr |
| 5979 | are not lost when journald is restarted. File descriptors |
| 5980 | may be stored in PID 1 via the sd_pid_notify_with_fds() API, |
| 5981 | an extension to sd_notify(). Note that a limit is enforced |
| 5982 | on the number of fds a service can store in PID 1, and it |
| 5983 | defaults to 0, so that no fds may be stored, unless this is |
| 5984 | explicitly turned on. |
| 5985 | |
| 5986 | * The default TERM variable to use for units connected to a |
| 5987 | terminal, when no other value is explicitly is set is now |
| 5988 | vt220 rather than vt102. This should be fairly safe still, |
| 5989 | but allows PgUp/PgDn work. |
| 5990 | |
| 5991 | * The /etc/crypttab option header= as known from Debian is now |
| 5992 | supported. |
| 5993 | |
| 5994 | * "loginctl user-status" and "loginctl session-status" will |
| 5995 | now show the last 10 lines of log messages of the |
| 5996 | user/session following the status output. Similar, |
| 5997 | "machinectl status" will show the last 10 log lines |
| 5998 | associated with a virtual machine or container |
| 5999 | service. (Note that this is usually not the log messages |
| 6000 | done in the VM/container itself, but simply what the |
| 6001 | container manager logs. For nspawn this includes all console |
| 6002 | output however.) |
| 6003 | |
| 6004 | * "loginctl session-status" without further argument will now |
| 6005 | show the status of the session of the caller. Similar, |
| 6006 | "lock-session", "unlock-session", "activate", |
| 6007 | "enable-linger", "disable-linger" may now be called without |
| 6008 | session/user parameter in which case they apply to the |
| 6009 | caller's session/user. |
| 6010 | |
| 6011 | * An X11 session scriptlet is now shipped that uploads |
| 6012 | $DISPLAY and $XAUTHORITY into the environment of the systemd |
| 6013 | --user daemon if a session begins. This should improve |
| 6014 | compatibility with X11 enabled applications run as systemd |
| 6015 | user services. |
| 6016 | |
| 6017 | * Generators are now subject to masking via /etc and /run, the |
| 6018 | same way as unit files. |
| 6019 | |
| 6020 | * networkd .network files gained support for configuring |
| 6021 | per-link IPv4/IPv6 packet forwarding as well as IPv4 |
| 6022 | masquerading. This is by default turned on for veth links to |
| 6023 | containers, as registered by systemd-nspawn. This means that |
| 6024 | nspawn containers run with --network-veth will now get |
| 6025 | automatic routed access to the host's networks without any |
| 6026 | further configuration or setup, as long as networkd runs on |
| 6027 | the host. |
| 6028 | |
| 6029 | * systemd-nspawn gained the --port= (-p) switch to expose TCP |
| 6030 | or UDP posts of a container on the host. With this in place |
| 6031 | it is possible to run containers with private veth links |
| 6032 | (--network-veth), and have their functionality exposed on |
| 6033 | the host as if their services were running directly on the |
| 6034 | host. |
| 6035 | |
Lennart Poettering | dd2fd15 | 2015-02-16 19:36:51 +0100 | [diff] [blame] | 6036 | * systemd-nspawn's --network-veth switch now gained a short |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 6037 | version "-n", since with the changes above it is now truly |
| 6038 | useful out-of-the-box. The systemd-nspawn@.service has been |
| 6039 | updated to make use of it too by default. |
| 6040 | |
| 6041 | * systemd-nspawn will now maintain a per-image R/W lock, to |
| 6042 | ensure that the same image is not started more than once |
| 6043 | writable. (It's OK to run an image multiple times |
| 6044 | simultaneously in read-only mode.) |
| 6045 | |
| 6046 | * systemd-nspawn's --image= option is now capable of |
| 6047 | dissecting and booting MBR and GPT disk images that contain |
| 6048 | only a single active Linux partition. Previously it |
| 6049 | supported only GPT disk images with proper GPT type |
| 6050 | IDs. This allows running cloud images from major |
| 6051 | distributions directly with systemd-nspawn, without |
| 6052 | modification. |
| 6053 | |
| 6054 | * In addition to collecting mouse dpi data in the udev |
| 6055 | hardware database, there's now support for collecting angle |
| 6056 | information for mouse scroll wheels. The database is |
Thomas Hindoe Paaboel Andersen | 7edecf2 | 2015-02-16 21:21:16 +0100 | [diff] [blame] | 6057 | supposed to guarantee similar scrolling behavior on mice |
Lennart Poettering | 615aaf4 | 2015-02-12 18:44:46 +0100 | [diff] [blame] | 6058 | that it knows about. There's also support for collecting |
| 6059 | information about Touchpad types. |
| 6060 | |
| 6061 | * udev's input_id built-in will now also collect touch screen |
| 6062 | dimension data and attach it to probed devices. |
| 6063 | |
| 6064 | * /etc/os-release gained support for a Distribution Privacy |
| 6065 | Policy link field. |
| 6066 | |
| 6067 | * networkd gained support for creating "ipvlan", "gretap", |
| 6068 | "ip6gre", "ip6gretap" and "ip6tnl" network devices. |
| 6069 | |
| 6070 | * systemd-tmpfiles gained support for "a" lines for setting |
| 6071 | ACLs on files. |
| 6072 | |
| 6073 | * systemd-nspawn will now mount /tmp in the container to |
| 6074 | tmpfs, automatically. |
| 6075 | |
| 6076 | * systemd now exposes the memory.usage_in_bytes cgroup |
| 6077 | attribute and shows it for each service in the "systemctl |
| 6078 | status" output, if available. |
| 6079 | |
| 6080 | * When the user presses Ctrl-Alt-Del more than 7x within 2s an |
| 6081 | immediate reboot is triggered. This useful if shutdown is |
| 6082 | hung and is unable to complete, to expedite the |
| 6083 | operation. Note that this kind of reboot will still unmount |
| 6084 | all file systems, and hence should not result in fsck being |
| 6085 | run on next reboot. |
| 6086 | |
| 6087 | * A .device unit for an optical block device will now be |
| 6088 | considered active only when a medium is in the drive. Also, |
| 6089 | mount units are now bound to their backing devices thus |
| 6090 | triggering automatic unmounting when devices become |
| 6091 | unavailable. With this in place systemd will now |
| 6092 | automatically unmount left-over mounts when a CD-ROM is |
| 6093 | ejected or an USB stick is yanked from the system. |
| 6094 | |
| 6095 | * networkd-wait-online now has support for waiting for |
| 6096 | specific interfaces only (with globbing), and for giving up |
| 6097 | after a configurable timeout. |
| 6098 | |
| 6099 | * networkd now exits when idle. It will be automatically |
| 6100 | restarted as soon as interfaces show up, are removed or |
| 6101 | change state. networkd will stay around as long as there is |
| 6102 | at least one DHCP state machine or similar around, that keep |
| 6103 | it non-idle. |
| 6104 | |
| 6105 | * networkd may now configure IPv6 link-local addressing in |
| 6106 | addition to IPv4 link-local addressing. |
| 6107 | |
| 6108 | * The IPv6 "token" for use in SLAAC may now be configured for |
| 6109 | each .network interface in networkd. |
| 6110 | |
| 6111 | * Routes configured with networkd may now be assigned a scope |
| 6112 | in .network files. |
| 6113 | |
| 6114 | * networkd's [Match] sections now support globbing and lists |
| 6115 | of multiple space-separated matches per item. |
| 6116 | |
Lennart Poettering | 11ea278 | 2015-02-12 20:45:19 +0100 | [diff] [blame] | 6117 | Contributions from: Alban Crequy, Alin Rauta, Andrey Chaser, |
Lennart Poettering | d2c643c | 2015-02-16 17:17:07 +0100 | [diff] [blame] | 6118 | Bastien Nocera, Bruno Bottazzini, Carlos Garnacho, Carlos |
| 6119 | Morata Castillo, Chris Atkinson, Chris J. Arges, Christian |
| 6120 | Kirbach, Christian Seiler, Christoph Brill, Colin Guthrie, |
| 6121 | Colin Walters, Cristian Rodríguez, Daniele Medri, Daniel Mack, |
| 6122 | Dave Reisner, David Herrmann, Djalal Harouni, Erik Auerswald, |
| 6123 | Filipe Brandenburger, Frank Theile, Gabor Kelemen, Gabriel de |
| 6124 | Perthuis, Harald Hoyer, Hui Wang, Ivan Shapovalov, Jan |
| 6125 | Engelhardt, Jan Synacek, Jay Faulkner, Johannes Hölzl, Jonas |
| 6126 | Ådahl, Jonathan Boulle, Josef Andersson, Kay Sievers, Ken |
| 6127 | Werner, Lennart Poettering, Lucas De Marchi, Lukas Märdian, |
| 6128 | Lukas Nykryn, Lukasz Skalski, Luke Shumaker, Mantas Mikulėnas, |
| 6129 | Manuel Mendez, Marcel Holtmann, Marc Schmitzer, Marko |
| 6130 | Myllynen, Martin Pitt, Maxim Mikityanskiy, Michael Biebl, |
| 6131 | Michael Marineau, Michael Olbrich, Michal Schmidt, Mindaugas |
Lennart Poettering | 11ea278 | 2015-02-12 20:45:19 +0100 | [diff] [blame] | 6132 | Baranauskas, Moez Bouhlel, Naveen Kumar, Patrik Flykt, Paul |
| 6133 | Martin, Peter Hutterer, Peter Mattern, Philippe De Swert, |
| 6134 | Piotr Drąg, Rafael Ferreira, Rami Rosen, Robert Milasan, Ronny |
| 6135 | Chevalier, Sangjung Woo, Sebastien Bacher, Sergey Ptashnick, |
| 6136 | Shawn Landden, Stéphane Graber, Susant Sahani, Sylvain |
| 6137 | Plantefève, Thomas Hindoe Paaboel Andersen, Tim JP, Tom |
| 6138 | Gundersen, Topi Miettinen, Torstein Husebø, Umut Tezduyar |
Lennart Poettering | d2c643c | 2015-02-16 17:17:07 +0100 | [diff] [blame] | 6139 | Lindskog, Veres Lajos, Vincent Batts, WaLyong Cho, Wieland |
| 6140 | Hoffmann, Zbigniew Jędrzejewski-Szmek |
Lennart Poettering | 11ea278 | 2015-02-12 20:45:19 +0100 | [diff] [blame] | 6141 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 6142 | — Berlin, 2015-02-16 |
Lennart Poettering | 11ea278 | 2015-02-12 20:45:19 +0100 | [diff] [blame] | 6143 | |
David Herrmann | d4f5a1f | 2014-11-24 15:12:42 +0100 | [diff] [blame] | 6144 | CHANGES WITH 218: |
| 6145 | |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6146 | * When querying unit file enablement status (for example via |
| 6147 | "systemctl is-enabled"), a new state "indirect" is now known |
| 6148 | which indicates that a unit might not be enabled itself, but |
Evgeny Vereshchagin | c7683ff | 2015-08-16 18:10:23 +0000 | [diff] [blame] | 6149 | another unit listed in its Also= setting might be. |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6150 | |
| 6151 | * Similar to the various existing ConditionXYZ= settings for |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6152 | units, there are now matching AssertXYZ= settings. While |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6153 | failing conditions cause a unit to be skipped, but its job |
| 6154 | to succeed, failing assertions declared like this will cause |
| 6155 | a unit start operation and its job to fail. |
| 6156 | |
| 6157 | * hostnamed now knows a new chassis type "embedded". |
| 6158 | |
| 6159 | * systemctl gained a new "edit" command. When used on a unit |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6160 | file, this allows extending unit files with .d/ drop-in |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6161 | configuration snippets or editing the full file (after |
| 6162 | copying it from /usr/lib to /etc). This will invoke the |
| 6163 | user's editor (as configured with $EDITOR), and reload the |
| 6164 | modified configuration after editing. |
| 6165 | |
| 6166 | * "systemctl status" now shows the suggested enablement state |
| 6167 | for a unit, as declared in the (usually vendor-supplied) |
| 6168 | system preset files. |
| 6169 | |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 6170 | * nss-myhostname will now resolve the single-label hostname |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6171 | "gateway" to the locally configured default IP routing |
| 6172 | gateways, ordered by their metrics. This assigns a stable |
| 6173 | name to the used gateways, regardless which ones are |
| 6174 | currently configured. Note that the name will only be |
| 6175 | resolved after all other name sources (if nss-myhostname is |
| 6176 | configured properly) and should hence not negatively impact |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 6177 | systems that use the single-label hostname "gateway" in |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6178 | other contexts. |
| 6179 | |
| 6180 | * systemd-inhibit now allows filtering by mode when listing |
| 6181 | inhibitors. |
| 6182 | |
Lennart Poettering | 122676c | 2014-12-10 23:17:54 +0100 | [diff] [blame] | 6183 | * Scope and service units gained a new "Delegate" boolean |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6184 | property, which, when set, allows processes running inside the |
Lennart Poettering | 122676c | 2014-12-10 23:17:54 +0100 | [diff] [blame] | 6185 | unit to further partition resources. This is primarily |
| 6186 | useful for systemd user instances as well as container |
| 6187 | managers. |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6188 | |
| 6189 | * journald will now pick up audit messages directly from |
| 6190 | the kernel, and log them like any other log message. The |
| 6191 | audit fields are split up and fully indexed. This means that |
| 6192 | journalctl in many ways is now a (nicer!) alternative to |
| 6193 | ausearch, the traditional audit client. Note that this |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6194 | implements only a minimal audit client. If you want the |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6195 | special audit modes like reboot-on-log-overflow, please use |
| 6196 | the traditional auditd instead, which can be used in |
| 6197 | parallel to journald. |
| 6198 | |
| 6199 | * The ConditionSecurity= unit file option now understands the |
| 6200 | special string "audit" to check whether auditing is |
| 6201 | available. |
| 6202 | |
| 6203 | * journalctl gained two new commands --vacuum-size= and |
| 6204 | --vacuum-time= to delete old journal files until the |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 6205 | remaining ones take up no more than the specified size on disk, |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6206 | or are not older than the specified time. |
| 6207 | |
| 6208 | * A new, native PPPoE library has been added to sd-network, |
| 6209 | systemd's library of light-weight networking protocols. This |
| 6210 | library will be used in a future version of networkd to |
| 6211 | enable PPPoE communication without an external pppd daemon. |
| 6212 | |
| 6213 | * The busctl tool now understands a new "capture" verb that |
| 6214 | works similar to "monitor", but writes a packet capture |
| 6215 | trace to STDOUT that can be redirected to a file which is |
| 6216 | compatible with libcap's capture file format. This can then |
| 6217 | be loaded in Wireshark and similar tools to inspect bus |
| 6218 | communication. |
| 6219 | |
| 6220 | * The busctl tool now understands a new "tree" verb that shows |
| 6221 | the object trees of a specific service on the bus, or of all |
| 6222 | services. |
| 6223 | |
| 6224 | * The busctl tool now understands a new "introspect" verb that |
| 6225 | shows all interfaces and members of objects on the bus, |
| 6226 | including their signature and values. This is particularly |
| 6227 | useful to get more information about bus objects shown by |
| 6228 | the new "busctl tree" command. |
| 6229 | |
| 6230 | * The busctl tool now understands new verbs "call", |
| 6231 | "set-property" and "get-property" for invoking bus method |
| 6232 | calls, setting and getting bus object properties in a |
| 6233 | friendly way. |
| 6234 | |
| 6235 | * busctl gained a new --augment-creds= argument that controls |
| 6236 | whether the tool shall augment credential information it |
| 6237 | gets from the bus with data from /proc, in a possibly |
| 6238 | race-ful way. |
| 6239 | |
| 6240 | * nspawn's --link-journal= switch gained two new values |
| 6241 | "try-guest" and "try-host" that work like "guest" and |
Ronny Chevalier | 17c2949 | 2014-12-10 00:50:24 +0100 | [diff] [blame] | 6242 | "host", but do not fail if the host has no persistent |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6243 | journalling enabled. -j is now equivalent to |
| 6244 | --link-journal=try-guest. |
| 6245 | |
| 6246 | * macvlan network devices created by nspawn will now have |
| 6247 | stable MAC addresses. |
| 6248 | |
| 6249 | * A new SmackProcessLabel= unit setting has been added, which |
| 6250 | controls the SMACK security label processes forked off by |
| 6251 | the respective unit shall use. |
| 6252 | |
David Herrmann | d4f5a1f | 2014-11-24 15:12:42 +0100 | [diff] [blame] | 6253 | * If compiled with --enable-xkbcommon, systemd-localed will |
| 6254 | verify x11 keymap settings by compiling the given keymap. It |
| 6255 | will spew out warnings if the compilation fails. This |
| 6256 | requires libxkbcommon to be installed. |
| 6257 | |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6258 | * When a coredump is collected, a larger number of metadata |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6259 | fields is now collected and included in the journal records |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6260 | created for it. More specifically, control group membership, |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6261 | environment variables, memory maps, working directory, |
| 6262 | chroot directory, /proc/$PID/status, and a list of open file |
| 6263 | descriptors is now stored in the log entry. |
| 6264 | |
Ronny Chevalier | 17c2949 | 2014-12-10 00:50:24 +0100 | [diff] [blame] | 6265 | * The udev hwdb now contains DPI information for mice. For |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6266 | details see: |
| 6267 | |
| 6268 | http://who-t.blogspot.de/2014/12/building-a-dpi-database-for-mice.html |
| 6269 | |
| 6270 | * All systemd programs that read standalone configuration |
| 6271 | files in /etc now also support a corresponding series of |
Josh Triplett | 997b2b4 | 2014-11-29 14:01:47 -0800 | [diff] [blame] | 6272 | .conf.d configuration directories in /etc/, /run/, |
| 6273 | /usr/local/lib/, /usr/lib/, and (if configured with |
| 6274 | --enable-split-usr) /lib/. In particular, the following |
| 6275 | configuration files now have corresponding configuration |
| 6276 | directories: system.conf user.conf, logind.conf, |
| 6277 | journald.conf, sleep.conf, bootchart.conf, coredump.conf, |
| 6278 | resolved.conf, timesyncd.conf, journal-remote.conf, and |
| 6279 | journal-upload.conf. Note that distributions should use the |
| 6280 | configuration directories in /usr/lib/; the directories in |
| 6281 | /etc/ are reserved for the system administrator. |
| 6282 | |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6283 | * systemd-rfkill will no longer take the rfkill device name |
| 6284 | into account when storing rfkill state on disk, as the name |
| 6285 | might be dynamically assigned and not stable. Instead, the |
| 6286 | ID_PATH udev variable combined with the rfkill type (wlan, |
| 6287 | bluetooth, ...) is used. |
| 6288 | |
| 6289 | * A new service systemd-machine-id-commit.service has been |
| 6290 | added. When used on systems where /etc is read-only during |
| 6291 | boot, and /etc/machine-id is not initialized (but an empty |
| 6292 | file), this service will copy the temporary machine ID |
| 6293 | created as replacement into /etc after the system is fully |
| 6294 | booted up. This is useful for systems that are freshly |
| 6295 | installed with a non-initialized machine ID, but should get |
| 6296 | a fixed machine ID for subsequent boots. |
| 6297 | |
| 6298 | * networkd's .netdev files now provide a large set of |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 6299 | configuration parameters for VXLAN devices. Similarly, the |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6300 | bridge port cost parameter is now configurable in .network |
| 6301 | files. There's also new support for configuring IP source |
| 6302 | routing. networkd .link files gained support for a new |
| 6303 | OriginalName= match that is useful to match against the |
| 6304 | original interface name the kernel assigned. .network files |
| 6305 | may include MTU= and MACAddress= fields for altering the MTU |
| 6306 | and MAC address while being connected to a specific network |
| 6307 | interface. |
| 6308 | |
| 6309 | * The LUKS logic gained supported for configuring |
| 6310 | UUID-specific key files. There's also new support for naming |
| 6311 | LUKS device from the kernel command line, using the new |
| 6312 | luks.name= argument. |
| 6313 | |
| 6314 | * Timer units may now be transiently created via the bus API |
| 6315 | (this was previously already available for scope and service |
| 6316 | units). In addition it is now possible to create multiple |
| 6317 | transient units at the same time with a single bus call. The |
| 6318 | "systemd-run" tool has been updated to make use of this for |
| 6319 | running commands on a specified time, in at(1)-style. |
| 6320 | |
| 6321 | * tmpfiles gained support for "t" lines, for assigning |
| 6322 | extended attributes to files. Among other uses this may be |
| 6323 | used to assign SMACK labels to files. |
| 6324 | |
Lennart Poettering | 13e92f3 | 2014-12-10 00:30:19 +0100 | [diff] [blame] | 6325 | Contributions from: Alin Rauta, Alison Chaiken, Andrej |
| 6326 | Manduch, Bastien Nocera, Chris Atkinson, Chris Leech, Chris |
| 6327 | Mayo, Colin Guthrie, Colin Walters, Cristian Rodríguez, |
| 6328 | Daniele Medri, Daniel Mack, Dan Williams, Dan Winship, Dave |
| 6329 | Reisner, David Herrmann, Didier Roche, Felipe Sateler, Gavin |
| 6330 | Li, Hans de Goede, Harald Hoyer, Iago López Galeiras, Ivan |
| 6331 | Shapovalov, Jakub Filak, Jan Janssen, Jan Synacek, Joe |
| 6332 | Lawrence, Josh Triplett, Kay Sievers, Lennart Poettering, |
| 6333 | Lukas Nykryn, Łukasz Stelmach, Maciej Wereski, Mantas |
| 6334 | Mikulėnas, Marcel Holtmann, Martin Pitt, Maurizio Lombardi, |
| 6335 | Michael Biebl, Michael Chapman, Michael Marineau, Michal |
Lennart Poettering | 7da81d3 | 2014-12-10 22:33:21 +0100 | [diff] [blame] | 6336 | Schmidt, Michal Sekletar, Olivier Brunel, Patrik Flykt, Peter |
| 6337 | Hutterer, Przemyslaw Kedzierski, Rami Rosen, Ray Strode, |
| 6338 | Richard Schütz, Richard W.M. Jones, Ronny Chevalier, Ross |
| 6339 | Lagerwall, Sean Young, Stanisław Pitucha, Susant Sahani, |
| 6340 | Thomas Haller, Thomas Hindoe Paaboel Andersen, Tom Gundersen, |
| 6341 | Torstein Husebø, Umut Tezduyar Lindskog, Vicente Olivert |
| 6342 | Riera, WaLyong Cho, Wesley Dawson, Zbigniew Jędrzejewski-Szmek |
Lennart Poettering | 13e92f3 | 2014-12-10 00:30:19 +0100 | [diff] [blame] | 6343 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 6344 | — Berlin, 2014-12-10 |
Lennart Poettering | f9e00a9 | 2014-12-10 00:27:26 +0100 | [diff] [blame] | 6345 | |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6346 | CHANGES WITH 217: |
| 6347 | |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6348 | * journalctl gained the new options -t/--identifier= to match |
| 6349 | on the syslog identifier (aka "tag"), as well as --utc to |
| 6350 | show log timestamps in the UTC timezone. journalctl now also |
| 6351 | accepts -n/--lines=all to disable line capping in a pager. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6352 | |
Zbigniew Jędrzejewski-Szmek | a65b824 | 2014-11-01 13:52:14 -0400 | [diff] [blame] | 6353 | * journalctl gained a new switch, --flush, that synchronously |
| 6354 | flushes logs from /run/log/journal to /var/log/journal if |
| 6355 | persistent storage is enabled. systemd-journal-flush.service |
| 6356 | now waits until the operation is complete. |
Umut Tezduyar Lindskog | 2a97b03 | 2014-10-29 11:20:02 +0100 | [diff] [blame] | 6357 | |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6358 | * Services can notify the manager before they start a reload |
| 6359 | (by sending RELOADING=1) or shutdown (by sending |
Lennart Poettering | 4bdc60c | 2014-10-24 19:06:23 +0200 | [diff] [blame] | 6360 | STOPPING=1). This allows the manager to track and show the |
| 6361 | internal state of daemons and closes a race condition when |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6362 | the process is still running but has closed its D-Bus |
Lennart Poettering | 4bdc60c | 2014-10-24 19:06:23 +0200 | [diff] [blame] | 6363 | connection. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6364 | |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6365 | * Services with Type=oneshot do not have to have any ExecStart |
| 6366 | commands anymore. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6367 | |
| 6368 | * User units are now loaded also from |
| 6369 | $XDG_RUNTIME_DIR/systemd/user/. This is similar to the |
| 6370 | /run/systemd/user directory that was already previously |
| 6371 | supported, but is under the control of the user. |
| 6372 | |
Zbigniew Jędrzejewski-Szmek | 3f9a0a5 | 2018-12-14 08:26:46 +0100 | [diff] [blame] | 6373 | * Job timeouts (i.e. timeouts on the time a job that is |
Lennart Poettering | 4ffd29f | 2014-10-28 02:17:12 +0100 | [diff] [blame] | 6374 | queued stays in the run queue) can now optionally result in |
| 6375 | immediate reboot or power-off actions (JobTimeoutAction= and |
| 6376 | JobTimeoutRebootArgument=). This is useful on ".target" |
| 6377 | units, to limit the maximum time a target remains |
| 6378 | undispatched in the run queue, and to trigger an emergency |
| 6379 | operation in such a case. This is now used by default to |
| 6380 | turn off the system if boot-up (as defined by everything in |
| 6381 | basic.target) hangs and does not complete for at least |
| 6382 | 15min. Also, if power-off or reboot hang for at least 30min |
| 6383 | an immediate power-off/reboot operation is triggered. This |
| 6384 | functionality is particularly useful to increase reliability |
| 6385 | on embedded devices, but also on laptops which might |
| 6386 | accidentally get powered on when carried in a backpack and |
| 6387 | whose boot stays stuck in a hard disk encryption passphrase |
| 6388 | question. |
| 6389 | |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6390 | * systemd-logind can be configured to also handle lid switch |
| 6391 | events even when the machine is docked or multiple displays |
| 6392 | are attached (HandleLidSwitchDocked= option). |
| 6393 | |
| 6394 | * A helper binary and a service have been added which can be |
| 6395 | used to resume from hibernation in the initramfs. A |
| 6396 | generator will parse the resume= option on the kernel |
Lennart Poettering | 81c7dd8 | 2014-11-06 20:06:30 +0100 | [diff] [blame] | 6397 | command line to trigger resume. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6398 | |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6399 | * A user console daemon systemd-consoled has been |
| 6400 | added. Currently, it is a preview, and will so far open a |
| 6401 | single terminal on each session of the user marked as |
Lennart Poettering | 0907714 | 2014-10-28 12:31:11 +0100 | [diff] [blame] | 6402 | Desktop=systemd-console. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6403 | |
| 6404 | * Route metrics can be specified for DHCP routes added by |
| 6405 | systemd-networkd. |
| 6406 | |
Kay Sievers | ba8df74 | 2014-10-28 15:53:44 +0100 | [diff] [blame] | 6407 | * The SELinux context of socket-activated services can be set |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6408 | from the information provided by the networking stack |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6409 | (SELinuxContextFromNet= option). |
| 6410 | |
| 6411 | * Userspace firmware loading support has been removed and |
| 6412 | the minimum supported kernel version is thus bumped to 3.7. |
| 6413 | |
| 6414 | * Timeout for udev workers has been increased from 1 to 3 |
| 6415 | minutes, but a warning will be printed after 1 minute to |
| 6416 | help diagnose kernel modules that take a long time to load. |
| 6417 | |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6418 | * Udev rules can now remove tags on devices with TAG-="foobar". |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6419 | |
Lennart Poettering | 4bdc60c | 2014-10-24 19:06:23 +0200 | [diff] [blame] | 6420 | * systemd's readahead implementation has been removed. In many |
Ronny Chevalier | f6d1de8 | 2014-10-28 16:04:21 +0100 | [diff] [blame] | 6421 | circumstances it didn't give expected benefits even for |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6422 | rotational disk drives and was becoming less relevant in the |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6423 | age of SSDs. As none of the developers has been using |
| 6424 | rotating media anymore, and nobody stepped up to actively |
| 6425 | maintain this component of systemd it has now been removed. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6426 | |
Lennart Poettering | c4ac990 | 2014-10-28 20:36:32 +0100 | [diff] [blame] | 6427 | * Swap units can use Options= to specify discard options. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6428 | Discard options specified for swaps in /etc/fstab are now |
| 6429 | respected. |
| 6430 | |
| 6431 | * Docker containers are now detected as a separate type of |
| 6432 | virtualization. |
| 6433 | |
| 6434 | * The Password Agent protocol gained support for queries where |
Kay Sievers | ba8df74 | 2014-10-28 15:53:44 +0100 | [diff] [blame] | 6435 | the user input is shown, useful e.g. for user names. |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6436 | systemd-ask-password gained a new --echo option to turn that |
| 6437 | on. |
Zbigniew Jędrzejewski-Szmek | b62a309 | 2014-10-07 22:01:37 -0400 | [diff] [blame] | 6438 | |
Michal Schmidt | e6c253e | 2014-10-16 13:49:04 +0200 | [diff] [blame] | 6439 | * The default sysctl.d/ snippets will now set: |
| 6440 | |
| 6441 | net.core.default_qdisc = fq_codel |
| 6442 | |
Kay Sievers | ba8df74 | 2014-10-28 15:53:44 +0100 | [diff] [blame] | 6443 | This selects Fair Queuing Controlled Delay as the default |
| 6444 | queuing discipline for network interfaces. fq_codel helps |
Michal Schmidt | e6c253e | 2014-10-16 13:49:04 +0200 | [diff] [blame] | 6445 | fight the network bufferbloat problem. It is believed to be |
| 6446 | a good default with no tuning required for most workloads. |
| 6447 | Downstream distributions may override this choice. On 10Gbit |
| 6448 | servers that do not do forwarding, "fq" may perform better. |
| 6449 | Systems without a good clocksource should use "pfifo_fast". |
| 6450 | |
Lennart Poettering | 4bdc60c | 2014-10-24 19:06:23 +0200 | [diff] [blame] | 6451 | * If kdbus is enabled during build a new option BusPolicy= is |
| 6452 | available for service units, that allows locking all service |
| 6453 | processes into a stricter bus policy, in order to limit |
| 6454 | access to various bus services, or even hide most of them |
| 6455 | from the service's view entirely. |
| 6456 | |
| 6457 | * networkctl will now show the .network and .link file |
| 6458 | networkd has applied to a specific interface. |
| 6459 | |
| 6460 | * sd-login gained a new API call sd_session_get_desktop() to |
| 6461 | query which desktop environment has been selected for a |
| 6462 | session. |
| 6463 | |
| 6464 | * UNIX utmp support is now compile-time optional to support |
| 6465 | legacy-free systems. |
| 6466 | |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6467 | * systemctl gained two new commands "add-wants" and |
| 6468 | "add-requires" for pulling in units from specific targets |
| 6469 | easily. |
| 6470 | |
| 6471 | * If the word "rescue" is specified on the kernel command line |
| 6472 | the system will now boot into rescue mode (aka |
| 6473 | rescue.target), which was previously available only by |
| 6474 | specifying "1" or "systemd.unit=rescue.target" on the kernel |
| 6475 | command line. This new kernel command line option nicely |
| 6476 | mirrors the already existing "emergency" kernel command line |
| 6477 | option. |
| 6478 | |
| 6479 | * New kernel command line options mount.usr=, mount.usrflags=, |
Tom Gundersen | d4474c4 | 2014-10-28 15:42:57 +0100 | [diff] [blame] | 6480 | mount.usrfstype= have been added that match root=, rootflags=, |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6481 | rootfstype= but allow mounting a specific file system to |
| 6482 | /usr. |
| 6483 | |
Ronny Chevalier | f6d1de8 | 2014-10-28 16:04:21 +0100 | [diff] [blame] | 6484 | * The $NOTIFY_SOCKET is now also passed to control processes of |
Lennart Poettering | 78b6b7c | 2014-10-27 13:31:56 +0100 | [diff] [blame] | 6485 | services, not only the main process. |
| 6486 | |
| 6487 | * This version reenables support for fsck's -l switch. This |
| 6488 | means at least version v2.25 of util-linux is required for |
| 6489 | operation, otherwise dead-locks on device nodes may |
| 6490 | occur. Again: you need to update util-linux to at least |
| 6491 | v2.25 when updating systemd to v217. |
| 6492 | |
Timofey Titovets | 3769415 | 2014-10-26 00:17:24 +0300 | [diff] [blame] | 6493 | * The "multi-seat-x" tool has been removed from systemd, as |
| 6494 | its functionality has been integrated into X servers 1.16, |
| 6495 | and the tool is hence redundant. It is recommended to update |
| 6496 | display managers invoking this tool to simply invoke X |
| 6497 | directly from now on, again. |
| 6498 | |
Lennart Poettering | fae9332 | 2014-10-28 15:17:53 +0100 | [diff] [blame] | 6499 | * Support for the new ALLOW_INTERACTIVE_AUTHORIZATION D-Bus |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 6500 | message flag has been added for all of systemd's polkit |
| 6501 | authenticated method calls has been added. In particular this |
| 6502 | now allows optional interactive authorization via polkit for |
| 6503 | many of PID1's privileged operations such as unit file |
| 6504 | enabling and disabling. |
Lennart Poettering | fae9332 | 2014-10-28 15:17:53 +0100 | [diff] [blame] | 6505 | |
Lennart Poettering | cfa1571 | 2014-10-28 15:35:35 +0100 | [diff] [blame] | 6506 | * "udevadm hwdb --update" learnt a new switch "--usr" for |
| 6507 | placing the rebuilt hardware database in /usr instead of |
| 6508 | /etc. When used only hardware database entries stored in |
| 6509 | /usr will be used, and any user database entries in /etc are |
| 6510 | ignored. This functionality is useful for vendors to ship a |
| 6511 | pre-built database on systems where local configuration is |
| 6512 | unnecessary or unlikely. |
| 6513 | |
Lennart Poettering | 7e63dd1 | 2014-10-28 15:44:00 +0100 | [diff] [blame] | 6514 | * Calendar time specifications in .timer units now also |
| 6515 | understand the strings "semi-annually", "quarterly" and |
Kay Sievers | ba8df74 | 2014-10-28 15:53:44 +0100 | [diff] [blame] | 6516 | "minutely" as shortcuts (in addition to the preexisting |
Frantisek Sumsal | 86b52a3 | 2020-04-21 20:46:53 +0200 | [diff] [blame] | 6517 | "annually", "hourly", ...). |
Lennart Poettering | 7e63dd1 | 2014-10-28 15:44:00 +0100 | [diff] [blame] | 6518 | |
Tom Gundersen | d4474c4 | 2014-10-28 15:42:57 +0100 | [diff] [blame] | 6519 | * systemd-tmpfiles will now correctly create files in /dev |
| 6520 | at boot which are marked for creation only at boot. It is |
| 6521 | recommended to always create static device nodes with 'c!' |
| 6522 | and 'b!', so that they are created only at boot and not |
| 6523 | overwritten at runtime. |
| 6524 | |
Lennart Poettering | 3b187c5 | 2014-10-28 18:10:48 +0100 | [diff] [blame] | 6525 | * When the watchdog logic is used for a service (WatchdogSec=) |
| 6526 | and the watchdog timeout is hit the service will now be |
| 6527 | terminated with SIGABRT (instead of just SIGTERM), in order |
| 6528 | to make sure a proper coredump and backtrace is |
| 6529 | generated. This ensures that hanging services will result in |
| 6530 | similar coredump/backtrace behaviour as services that hit a |
| 6531 | segmentation fault. |
| 6532 | |
Lennart Poettering | 4b08dd8 | 2014-10-28 15:20:16 +0100 | [diff] [blame] | 6533 | Contributions from: Andreas Henriksson, Andrei Borzenkov, |
| 6534 | Angus Gibson, Ansgar Burchardt, Ben Wolsieffer, Brandon L. |
| 6535 | Black, Christian Hesse, Cristian Rodríguez, Daniel Buch, |
| 6536 | Daniele Medri, Daniel Mack, Dan Williams, Dave Reisner, David |
| 6537 | Herrmann, David Sommerseth, David Strauss, Emil Renner |
| 6538 | Berthing, Eric Cook, Evangelos Foutras, Filipe Brandenburger, |
| 6539 | Gustavo Sverzut Barbieri, Hans de Goede, Harald Hoyer, Hristo |
| 6540 | Venev, Hugo Grostabussiat, Ivan Shapovalov, Jan Janssen, Jan |
| 6541 | Synacek, Jonathan Liu, Juho Son, Karel Zak, Kay Sievers, Klaus |
| 6542 | Purer, Koen Kooi, Lennart Poettering, Lukas Nykryn, Lukasz |
| 6543 | Skalski, Łukasz Stelmach, Mantas Mikulėnas, Marcel Holtmann, |
| 6544 | Marius Tessmann, Marko Myllynen, Martin Pitt, Michael Biebl, |
| 6545 | Michael Marineau, Michael Olbrich, Michael Scherer, Michal |
| 6546 | Schmidt, Michal Sekletar, Miroslav Lichvar, Patrik Flykt, |
| 6547 | Philippe De Swert, Piotr Drąg, Rahul Sundaram, Richard |
| 6548 | Weinberger, Robert Milasan, Ronny Chevalier, Ruben Kerkhof, |
| 6549 | Santiago Vila, Sergey Ptashnick, Simon McVittie, Sjoerd |
| 6550 | Simons, Stefan Brüns, Steven Allen, Steven Noonan, Susant |
| 6551 | Sahani, Sylvain Plantefève, Thomas Hindoe Paaboel Andersen, |
| 6552 | Timofey Titovets, Tobias Hunger, Tom Gundersen, Torstein |
| 6553 | Husebø, Umut Tezduyar Lindskog, WaLyong Cho, Zbigniew |
Lennart Poettering | 13e92f3 | 2014-12-10 00:30:19 +0100 | [diff] [blame] | 6554 | Jędrzejewski-Szmek |
Lennart Poettering | 4b08dd8 | 2014-10-28 15:20:16 +0100 | [diff] [blame] | 6555 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 6556 | — Berlin, 2014-10-28 |
Lennart Poettering | 4b08dd8 | 2014-10-28 15:20:16 +0100 | [diff] [blame] | 6557 | |
Kay Sievers | b72ddf0 | 2014-07-09 14:29:20 +0200 | [diff] [blame] | 6558 | CHANGES WITH 216: |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6559 | |
| 6560 | * timedated no longer reads NTP implementation unit names from |
Kay Sievers | b72ddf0 | 2014-07-09 14:29:20 +0200 | [diff] [blame] | 6561 | /usr/lib/systemd/ntp-units.d/*.list. Alternative NTP |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6562 | implementations should add a |
| 6563 | |
Kay Sievers | b72ddf0 | 2014-07-09 14:29:20 +0200 | [diff] [blame] | 6564 | Conflicts=systemd-timesyncd.service |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6565 | |
| 6566 | to their unit files to take over and replace systemd's NTP |
| 6567 | default functionality. |
| 6568 | |
| 6569 | * systemd-sysusers gained a new line type "r" for configuring |
| 6570 | which UID/GID ranges to allocate system users/groups |
| 6571 | from. Lines of type "u" may now add an additional column |
| 6572 | that specifies the home directory for the system user to be |
| 6573 | created. Also, systemd-sysusers may now optionally read user |
| 6574 | information from STDIN instead of a file. This is useful for |
| 6575 | invoking it from RPM preinst scriptlets that need to create |
| 6576 | users before the first RPM file is installed since these |
| 6577 | files might need to be owned by them. A new |
| 6578 | %sysusers_create_inline RPM macro has been introduced to do |
| 6579 | just that. systemd-sysusers now updates the shadow files as |
| 6580 | well as the user/group databases, which should enhance |
| 6581 | compatibility with certain tools like grpck. |
| 6582 | |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 6583 | * A number of bus APIs of PID 1 now optionally consult polkit to |
| 6584 | permit access for otherwise unprivileged clients under certain |
| 6585 | conditions. Note that this currently doesn't support |
| 6586 | interactive authentication yet, but this is expected to be |
| 6587 | added eventually, too. |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6588 | |
| 6589 | * /etc/machine-info now has new fields for configuring the |
| 6590 | deployment environment of the machine, as well as the |
| 6591 | location of the machine. hostnamectl has been updated with |
| 6592 | new command to update these fields. |
| 6593 | |
| 6594 | * systemd-timesyncd has been updated to automatically acquire |
| 6595 | NTP server information from systemd-networkd, which might |
| 6596 | have been discovered via DHCP. |
| 6597 | |
| 6598 | * systemd-resolved now includes a caching DNS stub resolver |
| 6599 | and a complete LLMNR name resolution implementation. A new |
Ansgar Burchardt | daa0534 | 2014-08-26 00:19:54 +0200 | [diff] [blame] | 6600 | NSS module "nss-resolve" has been added which can be used |
| 6601 | instead of glibc's own "nss-dns" to resolve hostnames via |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6602 | systemd-resolved. Hostnames, addresses and arbitrary RRs may |
| 6603 | be resolved via systemd-resolved D-Bus APIs. In contrast to |
| 6604 | the glibc internal resolver systemd-resolved is aware of |
| 6605 | multi-homed system, and keeps DNS server and caches separate |
Thomas Hindoe Paaboel Andersen | 5f02e26 | 2014-08-19 23:10:53 +0200 | [diff] [blame] | 6606 | and per-interface. Queries are sent simultaneously on all |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6607 | interfaces that have DNS servers configured, in order to |
| 6608 | properly handle VPNs and local LANs which might resolve |
| 6609 | separate sets of domain names. systemd-resolved may acquire |
Daniel Mack | a1a4a25 | 2014-08-19 22:23:43 +0200 | [diff] [blame] | 6610 | DNS server information from systemd-networkd automatically, |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6611 | which in turn might have discovered them via DHCP. A tool |
| 6612 | "systemd-resolve-host" has been added that may be used to |
| 6613 | query the DNS logic in resolved. systemd-resolved implements |
| 6614 | IDNA and automatically uses IDNA or UTF-8 encoding depending |
| 6615 | on whether classic DNS or LLMNR is used as transport. In the |
| 6616 | next releases we intend to add a DNSSEC and mDNS/DNS-SD |
| 6617 | implementation to systemd-resolved. |
| 6618 | |
| 6619 | * A new NSS module nss-mymachines has been added, that |
| 6620 | automatically resolves the names of all local registered |
| 6621 | containers to their respective IP addresses. |
| 6622 | |
| 6623 | * A new client tool "networkctl" for systemd-networkd has been |
| 6624 | added. It currently is entirely passive and will query |
| 6625 | networking configuration from udev, rtnetlink and networkd, |
Thomas Hindoe Paaboel Andersen | 5f02e26 | 2014-08-19 23:10:53 +0200 | [diff] [blame] | 6626 | and present it to the user in a very friendly |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6627 | way. Eventually, we hope to extend it to become a full |
| 6628 | control utility for networkd. |
| 6629 | |
| 6630 | * .socket units gained a new DeferAcceptSec= setting that |
| 6631 | controls the kernels' TCP_DEFER_ACCEPT sockopt for |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 6632 | TCP. Similarly, support for controlling TCP keep-alive |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6633 | settings has been added (KeepAliveTimeSec=, |
| 6634 | KeepAliveIntervalSec=, KeepAliveProbes=). Also, support for |
| 6635 | turning off Nagle's algorithm on TCP has been added |
| 6636 | (NoDelay=). |
| 6637 | |
Daniel Mack | a1a4a25 | 2014-08-19 22:23:43 +0200 | [diff] [blame] | 6638 | * logind learned a new session type "web", for use in projects |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6639 | like Cockpit which register web clients as PAM sessions. |
| 6640 | |
| 6641 | * timer units with at least one OnCalendar= setting will now |
Philip Withnall | 46ae28d | 2017-04-20 11:34:26 +0100 | [diff] [blame] | 6642 | be started only after time-sync.target has been |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6643 | reached. This way they will not elapse before the system |
| 6644 | clock has been corrected by a local NTP client or |
| 6645 | similar. This is particular useful on RTC-less embedded |
| 6646 | machines, that come up with an invalid system clock. |
| 6647 | |
| 6648 | * systemd-nspawn's --network-veth= switch should now result in |
| 6649 | stable MAC addresses for both the outer and the inner side |
| 6650 | of the link. |
| 6651 | |
| 6652 | * systemd-nspawn gained a new --volatile= switch for running |
| 6653 | container instances with /etc or /var unpopulated. |
| 6654 | |
| 6655 | * The kdbus client code has been updated to use the new Linux |
| 6656 | 3.17 memfd subsystem instead of the old kdbus-specific one. |
| 6657 | |
| 6658 | * systemd-networkd's DHCP client and server now support |
Lennart Poettering | 01da80b | 2014-08-19 23:37:16 +0200 | [diff] [blame] | 6659 | FORCERENEW. There are also new configuration options to |
| 6660 | configure the vendor client identifier and broadcast mode |
| 6661 | for DHCP. |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6662 | |
| 6663 | * systemd will no longer inform the kernel about the current |
| 6664 | timezone, as this is necessarily incorrect and racy as the |
| 6665 | kernel has no understanding of DST and similar |
| 6666 | concepts. This hence means FAT timestamps will be always |
| 6667 | considered UTC, similar to what Android is already |
| 6668 | doing. Also, when the RTC is configured to the local time |
| 6669 | (rather than UTC) systemd will never synchronize back to it, |
| 6670 | as this might confuse Windows at a later boot. |
| 6671 | |
| 6672 | * systemd-analyze gained a new command "verify" for offline |
| 6673 | validation of unit files. |
| 6674 | |
| 6675 | * systemd-networkd gained support for a couple of additional |
| 6676 | settings for bonding networking setups. Also, the metric for |
| 6677 | statically configured routes may now be configured. For |
| 6678 | network interfaces where this is appropriate the peer IP |
| 6679 | address may now be configured. |
| 6680 | |
Tom Gundersen | 2656840 | 2014-08-19 23:44:17 +0200 | [diff] [blame] | 6681 | * systemd-networkd's DHCP client will no longer request |
| 6682 | broadcasting by default, as this tripped up some networks. |
| 6683 | For hardware where broadcast is required the feature should |
| 6684 | be switched back on using RequestBroadcast=yes. |
| 6685 | |
| 6686 | * systemd-networkd will now set up IPv4LL addresses (when |
| 6687 | enabled) even if DHCP is configured successfully. |
| 6688 | |
| 6689 | * udev will now default to respect network device names given |
| 6690 | by the kernel when the kernel indicates that these are |
| 6691 | predictable. This behavior can be tweaked by changing |
| 6692 | NamePolicy= in the relevant .link file. |
| 6693 | |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6694 | * A new library systemd-terminal has been added that |
| 6695 | implements full TTY stream parsing and rendering. This |
| 6696 | library is supposed to be used later on for implementing a |
| 6697 | full userspace VT subsystem, replacing the current kernel |
| 6698 | implementation. |
| 6699 | |
| 6700 | * A new tool systemd-journal-upload has been added to push |
| 6701 | journal data to a remote system running |
| 6702 | systemd-journal-remote. |
| 6703 | |
| 6704 | * journald will no longer forward all local data to another |
| 6705 | running syslog daemon. This change has been made because |
| 6706 | rsyslog (which appears to be the most commonly used syslog |
| 6707 | implementation these days) no longer makes use of this, and |
| 6708 | instead pulls the data out of the journal on its own. Since |
Thomas Hindoe Paaboel Andersen | 5f02e26 | 2014-08-19 23:10:53 +0200 | [diff] [blame] | 6709 | forwarding the messages to a non-existent syslog server is |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6710 | more expensive than we assumed we have now turned this |
| 6711 | off. If you run a syslog server that is not a recent rsyslog |
| 6712 | version, you have to turn this option on again |
| 6713 | (ForwardToSyslog= in journald.conf). |
| 6714 | |
| 6715 | * journald now optionally supports the LZ4 compressor for |
| 6716 | larger journal fields. This compressor should perform much |
| 6717 | better than XZ which was the previous default. |
| 6718 | |
| 6719 | * machinectl now shows the IP addresses of local containers, |
| 6720 | if it knows them, plus the interface name of the container. |
| 6721 | |
| 6722 | * A new tool "systemd-escape" has been added that makes it |
| 6723 | easy to escape strings to build unit names and similar. |
| 6724 | |
| 6725 | * sd_notify() messages may now include a new ERRNO= field |
| 6726 | which is parsed and collected by systemd and shown among the |
| 6727 | "systemctl status" output for a service. |
| 6728 | |
| 6729 | * A new component "systemd-firstboot" has been added that |
| 6730 | queries the most basic systemd information (timezone, |
Daniel Mack | a1a4a25 | 2014-08-19 22:23:43 +0200 | [diff] [blame] | 6731 | hostname, root password) interactively on first |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6732 | boot. Alternatively it may also be used to provision these |
| 6733 | things offline on OS images installed into directories. |
| 6734 | |
Lennart Poettering | 01da80b | 2014-08-19 23:37:16 +0200 | [diff] [blame] | 6735 | * The default sysctl.d/ snippets will now set |
| 6736 | |
| 6737 | net.ipv4.conf.default.promote_secondaries=1 |
| 6738 | |
| 6739 | This has the benefit of no flushing secondary IP addresses |
| 6740 | when primary addresses are removed. |
| 6741 | |
Lennart Poettering | b2ca0d6 | 2014-08-19 21:53:43 +0200 | [diff] [blame] | 6742 | Contributions from: Ansgar Burchardt, Bastien Nocera, Colin |
| 6743 | Walters, Dan Dedrick, Daniel Buch, Daniel Korostil, Daniel |
| 6744 | Mack, Dan Williams, Dave Reisner, David Herrmann, Denis |
| 6745 | Kenzior, Eelco Dolstra, Eric Cook, Hannes Reinecke, Harald |
| 6746 | Hoyer, Hong Shick Pak, Hui Wang, Jean-André Santoni, Jóhann |
| 6747 | B. Guðmundsson, Jon Severinsson, Karel Zak, Kay Sievers, Kevin |
| 6748 | Wells, Lennart Poettering, Lukas Nykryn, Mantas Mikulėnas, |
| 6749 | Marc-Antoine Perennou, Martin Pitt, Michael Biebl, Michael |
| 6750 | Marineau, Michael Olbrich, Michal Schmidt, Michal Sekletar, |
| 6751 | Miguel Angel Ajo, Mike Gilbert, Olivier Brunel, Robert |
| 6752 | Schiele, Ronny Chevalier, Simon McVittie, Sjoerd Simons, Stef |
| 6753 | Walter, Steven Noonan, Susant Sahani, Tanu Kaskinen, Thomas |
| 6754 | Blume, Thomas Hindoe Paaboel Andersen, Timofey Titovets, |
| 6755 | Tobias Geerinckx-Rice, Tomasz Torcz, Tom Gundersen, Umut |
| 6756 | Tezduyar Lindskog, Zbigniew Jędrzejewski-Szmek |
| 6757 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 6758 | — Berlin, 2014-08-19 |
Kay Sievers | b72ddf0 | 2014-07-09 14:29:20 +0200 | [diff] [blame] | 6759 | |
Kay Sievers | 3dff3e0 | 2014-06-12 14:59:53 +0200 | [diff] [blame] | 6760 | CHANGES WITH 215: |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6761 | |
| 6762 | * A new tool systemd-sysusers has been added. This tool |
| 6763 | creates system users and groups in /etc/passwd and |
| 6764 | /etc/group, based on static declarative system user/group |
| 6765 | definitions in /usr/lib/sysusers.d/. This is useful to |
| 6766 | enable factory resets and volatile systems that boot up with |
| 6767 | an empty /etc directory, and thus need system users and |
| 6768 | groups created during early boot. systemd now also ships |
| 6769 | with two default sysusers.d/ files for the most basic |
| 6770 | users and groups systemd and the core operating system |
| 6771 | require. |
| 6772 | |
| 6773 | * A new tmpfiles snippet has been added that rebuilds the |
| 6774 | essential files in /etc on boot, should they be missing. |
| 6775 | |
| 6776 | * A directive for ensuring automatic clean-up of |
| 6777 | /var/cache/man/ has been removed from the default |
| 6778 | configuration. This line should now be shipped by the man |
| 6779 | implementation. The necessary change has been made to the |
| 6780 | man-db implementation. Note that you need to update your man |
| 6781 | implementation to one that ships this line, otherwise no |
| 6782 | automatic clean-up of /var/cache/man will take place. |
| 6783 | |
| 6784 | * A new condition ConditionNeedsUpdate= has been added that |
| 6785 | may conditionalize services to only run when /etc or /var |
| 6786 | are "older" than the vendor operating system resources in |
| 6787 | /usr. This is useful for reconstructing or updating /etc |
| 6788 | after an offline update of /usr or a factory reset, on the |
| 6789 | next reboot. Services that want to run once after such an |
| 6790 | update or reset should use this condition and order |
| 6791 | themselves before the new systemd-update-done.service, which |
| 6792 | will mark the two directories as fully updated. A number of |
| 6793 | service files have been added making use of this, to rebuild |
| 6794 | the udev hardware database, the journald message catalog and |
| 6795 | dynamic loader cache (ldconfig). The systemd-sysusers tool |
| 6796 | described above also makes use of this now. With this in |
| 6797 | place it is now possible to start up a minimal operating |
Thomas Hindoe Paaboel Andersen | ce1dde2 | 2014-07-01 21:11:35 +0200 | [diff] [blame] | 6798 | system with /etc empty cleanly. For more information on the |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6799 | concepts involved see this recent blog story: |
| 6800 | |
| 6801 | http://0pointer.de/blog/projects/stateless.html |
| 6802 | |
| 6803 | * A new system group "input" has been introduced, and all |
| 6804 | input device nodes get this group assigned. This is useful |
| 6805 | for system-level software to get access to input devices. It |
Kay Sievers | 3dff3e0 | 2014-06-12 14:59:53 +0200 | [diff] [blame] | 6806 | complements what is already done for "audio" and "video". |
| 6807 | |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6808 | * systemd-networkd learnt minimal DHCPv4 server support in |
| 6809 | addition to the existing DHCPv4 client support. It also |
| 6810 | learnt DHCPv6 client and IPv6 Router Solicitation client |
| 6811 | support. The DHCPv4 client gained support for static routes |
| 6812 | passed in from the server. Note that the [DHCPv4] section |
| 6813 | known in older systemd-networkd versions has been renamed to |
| 6814 | [DHCP] and is now also used by the DHCPv6 client. Existing |
Lennart Poettering | c7435cc | 2014-07-03 20:46:35 +0200 | [diff] [blame] | 6815 | .network files using settings of this section should be |
| 6816 | updated, though compatibility is maintained. Optionally, the |
| 6817 | client hostname may now be sent to the DHCP server. |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6818 | |
Lennart Poettering | c7435cc | 2014-07-03 20:46:35 +0200 | [diff] [blame] | 6819 | * networkd gained support for vxlan virtual networks as well |
| 6820 | as tun/tap and dummy devices. |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6821 | |
| 6822 | * networkd gained support for automatic allocation of address |
| 6823 | ranges for interfaces from a system-wide pool of |
| 6824 | addresses. This is useful for dynamically managing a large |
| 6825 | number of interfaces with a single network configuration |
| 6826 | file. In particular this is useful to easily assign |
| 6827 | appropriate IP addresses to the veth links of a large number |
| 6828 | of nspawn instances. |
| 6829 | |
| 6830 | * RPM macros for processing sysusers, sysctl and binfmt |
| 6831 | drop-in snippets at package installation time have been |
| 6832 | added. |
| 6833 | |
| 6834 | * The /etc/os-release file should now be placed in |
| 6835 | /usr/lib/os-release. The old location is automatically |
| 6836 | created as symlink. /usr/lib is the more appropriate |
| 6837 | location of this file, since it shall actually describe the |
| 6838 | vendor operating system shipped in /usr, and not the |
| 6839 | configuration stored in /etc. |
| 6840 | |
| 6841 | * .mount units gained a new boolean SloppyOptions= setting |
| 6842 | that maps to mount(8)'s -s option which enables permissive |
| 6843 | parsing of unknown mount options. |
| 6844 | |
| 6845 | * tmpfiles learnt a new "L+" directive which creates a symlink |
| 6846 | but (unlike "L") deletes a pre-existing file first, should |
| 6847 | it already exist and not already be the correct |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 6848 | symlink. Similarly, "b+", "c+" and "p+" directives have been |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6849 | added as well, which create block and character devices, as |
| 6850 | well as fifos in the filesystem, possibly removing any |
| 6851 | pre-existing files of different types. |
| 6852 | |
| 6853 | * For tmpfiles' "L", "L+", "C" and "C+" directives the final |
| 6854 | 'argument' field (which so far specified the source to |
Thomas Hindoe Paaboel Andersen | ce1dde2 | 2014-07-01 21:11:35 +0200 | [diff] [blame] | 6855 | symlink/copy the files from) is now optional. If omitted the |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6856 | same file os copied from /usr/share/factory/ suffixed by the |
| 6857 | full destination path. This is useful for populating /etc |
| 6858 | with essential files, by copying them from vendor defaults |
| 6859 | shipped in /usr/share/factory/etc. |
| 6860 | |
| 6861 | * A new command "systemctl preset-all" has been added that |
| 6862 | applies the service preset settings to all installed unit |
| 6863 | files. A new switch --preset-mode= has been added that |
| 6864 | controls whether only enable or only disable operations |
| 6865 | shall be executed. |
| 6866 | |
| 6867 | * A new command "systemctl is-system-running" has been added |
| 6868 | that allows checking the overall state of the system, for |
Thomas Hindoe Paaboel Andersen | ce1dde2 | 2014-07-01 21:11:35 +0200 | [diff] [blame] | 6869 | example whether it is fully up and running. |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6870 | |
| 6871 | * When the system boots up with an empty /etc, the equivalent |
| 6872 | to "systemctl preset-all" is executed during early boot, to |
| 6873 | make sure all default services are enabled after a factory |
| 6874 | reset. |
| 6875 | |
| 6876 | * systemd now contains a minimal preset file that enables the |
| 6877 | most basic services systemd ships by default. |
| 6878 | |
| 6879 | * Unit files' [Install] section gained a new DefaultInstance= |
| 6880 | field for defining the default instance to create if a |
| 6881 | template unit is enabled with no instance specified. |
| 6882 | |
| 6883 | * A new passive target cryptsetup-pre.target has been added |
| 6884 | that may be used by services that need to make they run and |
| 6885 | finish before the first LUKS cryptographic device is set up. |
| 6886 | |
| 6887 | * The /dev/loop-control and /dev/btrfs-control device nodes |
| 6888 | are now owned by the "disk" group by default, opening up |
| 6889 | access to this group. |
| 6890 | |
| 6891 | * systemd-coredump will now automatically generate a |
| 6892 | stack trace of all core dumps taking place on the system, |
| 6893 | based on elfutils' libdw library. This stack trace is logged |
| 6894 | to the journal. |
| 6895 | |
| 6896 | * systemd-coredump may now optionally store coredumps directly |
| 6897 | on disk (in /var/lib/systemd/coredump, possibly compressed), |
| 6898 | instead of storing them unconditionally in the journal. This |
| 6899 | mode is the new default. A new configuration file |
| 6900 | /etc/systemd/coredump.conf has been added to configure this |
| 6901 | and other parameters of systemd-coredump. |
| 6902 | |
| 6903 | * coredumpctl gained a new "info" verb to show details about a |
| 6904 | specific coredump. A new switch "-1" has also been added |
| 6905 | that makes sure to only show information about the most |
| 6906 | recent entry instead of all entries. Also, as the tool is |
| 6907 | generally useful now the "systemd-" prefix of the binary |
| 6908 | name has been removed. Distributions that want to maintain |
| 6909 | compatibility with the old name should add a symlink from |
| 6910 | the old name to the new name. |
| 6911 | |
| 6912 | * journald's SplitMode= now defaults to "uid". This makes sure |
Thomas Hindoe Paaboel Andersen | ce1dde2 | 2014-07-01 21:11:35 +0200 | [diff] [blame] | 6913 | that unprivileged users can access their own coredumps with |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6914 | coredumpctl without restrictions. |
| 6915 | |
| 6916 | * New kernel command line options "systemd.wants=" (for |
| 6917 | pulling an additional unit during boot), "systemd.mask=" |
| 6918 | (for masking a specific unit for the boot), and |
| 6919 | "systemd.debug-shell" (for enabling the debug shell on tty9) |
| 6920 | have been added. This is implemented in the new generator |
| 6921 | "systemd-debug-generator". |
| 6922 | |
| 6923 | * systemd-nspawn will now by default filter a couple of |
| 6924 | syscalls for containers, among them those required for |
| 6925 | kernel module loading, direct x86 IO port access, swap |
| 6926 | management, and kexec. Most importantly though |
| 6927 | open_by_handle_at() is now prohibited for containers, |
| 6928 | closing a hole similar to a recently discussed vulnerability |
| 6929 | in docker regarding access to files on file hierarchies the |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 6930 | container should normally not have access to. Note that, for |
| 6931 | nspawn, we generally make no security claims anyway (and |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6932 | this is explicitly documented in the man page), so this is |
| 6933 | just a fix for one of the most obvious problems. |
| 6934 | |
| 6935 | * A new man page file-hierarchy(7) has been added that |
| 6936 | contains a minimized, modernized version of the file system |
| 6937 | layout systemd expects, similar in style to the FHS |
Lennart Poettering | c7435cc | 2014-07-03 20:46:35 +0200 | [diff] [blame] | 6938 | specification or hier(5). A new tool systemd-path(1) has |
| 6939 | been added to query many of these paths for the local |
| 6940 | machine and user. |
Lennart Poettering | 24a2bf4 | 2014-07-01 02:38:41 +0200 | [diff] [blame] | 6941 | |
| 6942 | * Automatic time-based clean-up of $XDG_RUNTIME_DIR is no |
| 6943 | longer done. Since the directory now has a per-user size |
| 6944 | limit, and is cleaned on logout this appears unnecessary, |
| 6945 | in particular since this now brings the lifecycle of this |
| 6946 | directory closer in line with how IPC objects are handled. |
| 6947 | |
| 6948 | * systemd.pc now exports a number of additional directories, |
| 6949 | including $libdir (which is useful to identify the library |
| 6950 | path for the primary architecture of the system), and a |
| 6951 | couple of drop-in directories. |
| 6952 | |
Thadeu Lima de Souza Cascardo | 3058e01 | 2014-07-01 10:11:50 -0300 | [diff] [blame] | 6953 | * udev's predictable network interface names now use the dev_port |
| 6954 | sysfs attribute, introduced in linux 3.15 instead of dev_id to |
| 6955 | distinguish between ports of the same PCI function. dev_id should |
| 6956 | only be used for ports using the same HW address, hence the need |
| 6957 | for dev_port. |
| 6958 | |
Lennart Poettering | c7435cc | 2014-07-03 20:46:35 +0200 | [diff] [blame] | 6959 | * machined has been updated to export the OS version of a |
| 6960 | container (read from /etc/os-release and |
| 6961 | /usr/lib/os-release) on the bus. This is now shown in |
| 6962 | "machinectl status" for a machine. |
| 6963 | |
| 6964 | * A new service setting RestartForceExitStatus= has been |
| 6965 | added. If configured to a set of exit signals or process |
| 6966 | return values, the service will be restarted when the main |
| 6967 | daemon process exits with any of them, regardless of the |
| 6968 | Restart= setting. |
| 6969 | |
| 6970 | * systemctl's -H switch for connecting to remote systemd |
| 6971 | machines has been extended so that it may be used to |
| 6972 | directly connect to a specific container on the |
| 6973 | host. "systemctl -H root@foobar:waldi" will now connect as |
| 6974 | user "root" to host "foobar", and then proceed directly to |
| 6975 | the container named "waldi". Note that currently you have to |
| 6976 | authenticate as user "root" for this to work, as entering |
| 6977 | containers is a privileged operation. |
| 6978 | |
| 6979 | Contributions from: Andreas Henriksson, Benjamin Steinwender, |
| 6980 | Carl Schaefer, Christian Hesse, Colin Ian King, Cristian |
| 6981 | Rodríguez, Daniel Mack, Dave Reisner, David Herrmann, Eugene |
| 6982 | Yakubovich, Filipe Brandenburger, Frederic Crozat, Hristo |
| 6983 | Venev, Jan Engelhardt, Jonathan Boulle, Kay Sievers, Lennart |
| 6984 | Poettering, Luke Shumaker, Mantas Mikulėnas, Marc-Antoine |
| 6985 | Perennou, Marcel Holtmann, Michael Marineau, Michael Olbrich, |
| 6986 | Michał Bartoszkiewicz, Michal Sekletar, Patrik Flykt, Ronan Le |
| 6987 | Martret, Ronny Chevalier, Ruediger Oertel, Steven Noonan, |
| 6988 | Susant Sahani, Thadeu Lima de Souza Cascardo, Thomas Hindoe |
| 6989 | Paaboel Andersen, Tom Gundersen, Tom Hirst, Umut Tezduyar |
| 6990 | Lindskog, Uoti Urpala, Zbigniew Jędrzejewski-Szmek |
| 6991 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 6992 | — Berlin, 2014-07-03 |
Lennart Poettering | c7435cc | 2014-07-03 20:46:35 +0200 | [diff] [blame] | 6993 | |
Kay Sievers | 4196a3e | 2014-06-11 12:00:47 +0200 | [diff] [blame] | 6994 | CHANGES WITH 214: |
| 6995 | |
| 6996 | * As an experimental feature, udev now tries to lock the |
| 6997 | disk device node (flock(LOCK_SH|LOCK_NB)) while it |
| 6998 | executes events for the disk or any of its partitions. |
| 6999 | Applications like partitioning programs can lock the |
| 7000 | disk device node (flock(LOCK_EX)) and claim temporary |
| 7001 | device ownership that way; udev will entirely skip all event |
| 7002 | handling for this disk and its partitions. If the disk |
| 7003 | was opened for writing, the close will trigger a partition |
| 7004 | table rescan in udev's "watch" facility, and if needed |
Kay Sievers | 71449ca | 2014-06-11 14:04:28 +0200 | [diff] [blame] | 7005 | synthesize "change" events for the disk and all its partitions. |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7006 | This is now unconditionally enabled, and if it turns out to |
Kay Sievers | 4196a3e | 2014-06-11 12:00:47 +0200 | [diff] [blame] | 7007 | cause major problems, we might turn it on only for specific |
Jan Engelhardt | 45df865 | 2014-06-28 00:49:12 +0200 | [diff] [blame] | 7008 | devices, or might need to disable it entirely. Device Mapper |
Kay Sievers | 4196a3e | 2014-06-11 12:00:47 +0200 | [diff] [blame] | 7009 | devices are excluded from this logic. |
| 7010 | |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7011 | * We temporarily dropped the "-l" switch for fsck invocations, |
| 7012 | since they collide with the flock() logic above. util-linux |
| 7013 | upstream has been changed already to avoid this conflict, |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 7014 | and we will re-add "-l" as soon as util-linux with this |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7015 | change has been released. |
| 7016 | |
| 7017 | * The dependency on libattr has been removed. Since a long |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7018 | time, the extended attribute calls have moved to glibc, and |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7019 | libattr is thus unnecessary. |
| 7020 | |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 7021 | * Virtualization detection works without privileges now. This |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7022 | means the systemd-detect-virt binary no longer requires |
| 7023 | CAP_SYS_PTRACE file capabilities, and our daemons can run |
Kay Sievers | 71449ca | 2014-06-11 14:04:28 +0200 | [diff] [blame] | 7024 | with fewer privileges. |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7025 | |
| 7026 | * systemd-networkd now runs under its own "systemd-network" |
| 7027 | user. It retains the CAP_NET_ADMIN, CAP_NET_BIND_SERVICE, |
| 7028 | CAP_NET_BROADCAST, CAP_NET_RAW capabilities though, but |
| 7029 | loses the ability to write to files owned by root this way. |
| 7030 | |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 7031 | * Similarly, systemd-resolved now runs under its own |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7032 | "systemd-resolve" user with no capabilities remaining. |
| 7033 | |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 7034 | * Similarly, systemd-bus-proxyd now runs under its own |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7035 | "systemd-bus-proxy" user with only CAP_IPC_OWNER remaining. |
| 7036 | |
| 7037 | * systemd-networkd gained support for setting up "veth" |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 7038 | virtual Ethernet devices for container connectivity, as well |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7039 | as GRE and VTI tunnels. |
| 7040 | |
| 7041 | * systemd-networkd will no longer automatically attempt to |
| 7042 | manually load kernel modules necessary for certain tunnel |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7043 | transports. Instead, it is assumed the kernel loads them |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7044 | automatically when required. This only works correctly on |
| 7045 | very new kernels. On older kernels, please consider adding |
Mantas Mikulėnas | c54bed5 | 2014-06-11 17:09:11 +0300 | [diff] [blame] | 7046 | the kernel modules to /etc/modules-load.d/ as a work-around. |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7047 | |
Lennart Poettering | cd14eda | 2014-06-11 15:32:20 +0200 | [diff] [blame] | 7048 | * The resolv.conf file systemd-resolved generates has been |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7049 | moved to /run/systemd/resolve/. If you have a symlink from |
| 7050 | /etc/resolv.conf, it might be necessary to correct it. |
Lennart Poettering | cd14eda | 2014-06-11 15:32:20 +0200 | [diff] [blame] | 7051 | |
Ansgar Burchardt | ef392da | 2014-07-28 18:57:30 +0200 | [diff] [blame] | 7052 | * Two new service settings, ProtectHome= and ProtectSystem=, |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7053 | have been added. When enabled, they will make the user data |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7054 | (such as /home) inaccessible or read-only and the system |
| 7055 | (such as /usr) read-only, for specific services. This allows |
| 7056 | very light-weight per-service sandboxing to avoid |
| 7057 | modifications of user data or system files from |
| 7058 | services. These two new switches have been enabled for all |
| 7059 | of systemd's long-running services, where appropriate. |
| 7060 | |
| 7061 | * Socket units gained new SocketUser= and SocketGroup= |
| 7062 | settings to set the owner user and group of AF_UNIX sockets |
| 7063 | and FIFOs in the file system. |
| 7064 | |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7065 | * Socket units gained a new RemoveOnStop= setting. If enabled, |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7066 | all FIFOS and sockets in the file system will be removed |
| 7067 | when the specific socket unit is stopped. |
| 7068 | |
| 7069 | * Socket units gained a new Symlinks= setting. It takes a list |
| 7070 | of symlinks to create to file system sockets or FIFOs |
Jan Engelhardt | 45df865 | 2014-06-28 00:49:12 +0200 | [diff] [blame] | 7071 | created by the specific Unix sockets. This is useful to |
Zbigniew Jędrzejewski-Szmek | de04bbd | 2019-02-21 07:45:45 +0100 | [diff] [blame] | 7072 | manage symlinks to socket nodes with the same lifecycle as |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7073 | the socket itself. |
| 7074 | |
| 7075 | * The /dev/log socket and /dev/initctl FIFO have been moved to |
| 7076 | /run, and have been replaced by symlinks. This allows |
| 7077 | connecting to these facilities even if PrivateDevices=yes is |
| 7078 | used for a service (which makes /dev/log itself unavailable, |
| 7079 | but /run is left). This also has the benefit of ensuring |
| 7080 | that /dev only contains device nodes, directories and |
| 7081 | symlinks, and nothing else. |
| 7082 | |
| 7083 | * sd-daemon gained two new calls sd_pid_notify() and |
| 7084 | sd_pid_notifyf(). They are similar to sd_notify() and |
| 7085 | sd_notifyf(), but allow overriding of the source PID of |
| 7086 | notification messages if permissions permit this. This is |
| 7087 | useful to send notify messages on behalf of a different |
| 7088 | process (for example, the parent process). The |
| 7089 | systemd-notify tool has been updated to make use of this |
| 7090 | when sending messages (so that notification messages now |
| 7091 | originate from the shell script invoking systemd-notify and |
| 7092 | not the systemd-notify process itself. This should minimize |
| 7093 | a race where systemd fails to associate notification |
| 7094 | messages to services when the originating process already |
| 7095 | vanished. |
| 7096 | |
| 7097 | * A new "on-abnormal" setting for Restart= has been added. If |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7098 | set, it will result in automatic restarts on all "abnormal" |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7099 | reasons for a process to exit, which includes unclean |
| 7100 | signals, core dumps, timeouts and watchdog timeouts, but |
| 7101 | does not include clean and unclean exit codes or clean |
| 7102 | signals. Restart=on-abnormal is an alternative for |
| 7103 | Restart=on-failure for services that shall be able to |
| 7104 | terminate and avoid restarts on certain errors, by |
| 7105 | indicating so with an unclean exit code. Restart=on-failure |
| 7106 | or Restart=on-abnormal is now the recommended setting for |
| 7107 | all long-running services. |
| 7108 | |
| 7109 | * If the InaccessibleDirectories= service setting points to a |
| 7110 | mount point (or if there are any submounts contained within |
| 7111 | it), it is now attempted to completely unmount it, to make |
| 7112 | the file systems truly unavailable for the respective |
| 7113 | service. |
| 7114 | |
| 7115 | * The ReadOnlyDirectories= service setting and |
| 7116 | systemd-nspawn's --read-only parameter are now recursively |
| 7117 | applied to all submounts, too. |
| 7118 | |
| 7119 | * Mount units may now be created transiently via the bus APIs. |
| 7120 | |
| 7121 | * The support for SysV and LSB init scripts has been removed |
| 7122 | from the systemd daemon itself. Instead, it is now |
| 7123 | implemented as a generator that creates native systemd units |
| 7124 | from these scripts when needed. This enables us to remove a |
| 7125 | substantial amount of legacy code from PID 1, following the |
| 7126 | fact that many distributions only ship a very small number |
| 7127 | of LSB/SysV init scripts nowadays. |
| 7128 | |
Torstein Husebø | cc98b30 | 2015-01-26 15:29:14 +0100 | [diff] [blame] | 7129 | * Privileged Xen (dom0) domains are not considered |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7130 | virtualization anymore by the virtualization detection |
| 7131 | logic. After all, they generally have unrestricted access to |
Kay Sievers | 71449ca | 2014-06-11 14:04:28 +0200 | [diff] [blame] | 7132 | the hardware and usually are used to manage the unprivileged |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7133 | (domU) domains. |
| 7134 | |
| 7135 | * systemd-tmpfiles gained a new "C" line type, for copying |
| 7136 | files or entire directories. |
| 7137 | |
| 7138 | * systemd-tmpfiles "m" lines are now fully equivalent to "z" |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7139 | lines. So far, they have been non-globbing versions of the |
| 7140 | latter, and have thus been redundant. In future, it is |
| 7141 | recommended to only use "z". "m" has hence been removed |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7142 | from the documentation, even though it stays supported. |
| 7143 | |
| 7144 | * A tmpfiles snippet to recreate the most basic structure in |
| 7145 | /var has been added. This is enough to create the /var/run → |
| 7146 | /run symlink and create a couple of structural |
| 7147 | directories. This allows systems to boot up with an empty or |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7148 | volatile /var. Of course, while with this change, the core OS |
| 7149 | now is capable with dealing with a volatile /var, not all |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7150 | user services are ready for it. However, we hope that sooner |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7151 | or later, many service daemons will be changed upstream so |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7152 | that they are able to automatically create their necessary |
| 7153 | directories in /var at boot, should they be missing. This is |
| 7154 | the first step to allow state-less systems that only require |
| 7155 | the vendor image for /usr to boot. |
| 7156 | |
| 7157 | * systemd-nspawn has gained a new --tmpfs= switch to mount an |
| 7158 | empty tmpfs instance to a specific directory. This is |
| 7159 | particularly useful for making use of the automatic |
| 7160 | reconstruction of /var (see above), by passing --tmpfs=/var. |
| 7161 | |
| 7162 | * Access modes specified in tmpfiles snippets may now be |
| 7163 | prefixed with "~", which indicates that they shall be masked |
Ansgar Burchardt | daa0534 | 2014-08-26 00:19:54 +0200 | [diff] [blame] | 7164 | by whether the existing file or directory is currently |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7165 | writable, readable or executable at all. Also, if specified, |
Lennart Poettering | 04e91da | 2014-06-11 13:31:51 +0200 | [diff] [blame] | 7166 | the sgid/suid/sticky bits will be masked for all |
| 7167 | non-directories. |
| 7168 | |
| 7169 | * A new passive target unit "network-pre.target" has been |
| 7170 | added which is useful for services that shall run before any |
| 7171 | network is configured, for example firewall scripts. |
| 7172 | |
Lennart Poettering | 4c0d13b | 2014-06-11 18:42:38 +0200 | [diff] [blame] | 7173 | * The "floppy" group that previously owned the /dev/fd* |
| 7174 | devices is no longer used. The "disk" group is now used |
| 7175 | instead. Distributions should probably deprecate usage of |
| 7176 | this group. |
| 7177 | |
Lennart Poettering | dc1d6c0 | 2014-06-11 15:04:59 +0200 | [diff] [blame] | 7178 | Contributions from: Camilo Aguilar, Christian Hesse, Colin Ian |
| 7179 | King, Cristian Rodríguez, Daniel Buch, Dave Reisner, David |
| 7180 | Strauss, Denis Tikhomirov, John, Jonathan Liu, Kay Sievers, |
| 7181 | Lennart Poettering, Mantas Mikulėnas, Mark Eichin, Ronny |
| 7182 | Chevalier, Susant Sahani, Thomas Blume, Thomas Hindoe Paaboel |
| 7183 | Andersen, Tom Gundersen, Umut Tezduyar Lindskog, Zbigniew |
| 7184 | Jędrzejewski-Szmek |
| 7185 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 7186 | — Berlin, 2014-06-11 |
Lennart Poettering | dc1d6c0 | 2014-06-11 15:04:59 +0200 | [diff] [blame] | 7187 | |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7188 | CHANGES WITH 213: |
| 7189 | |
| 7190 | * A new "systemd-timesyncd" daemon has been added for |
Kay Sievers | 69beda1 | 2014-05-24 14:50:17 +0800 | [diff] [blame] | 7191 | synchronizing the system clock across the network. It |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7192 | implements an SNTP client. In contrast to NTP |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7193 | implementations such as chrony or the NTP reference server, |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7194 | this only implements a client side, and does not bother with |
Lennart Poettering | c9679c6 | 2014-05-28 09:43:43 +0800 | [diff] [blame] | 7195 | the full NTP complexity, focusing only on querying time from |
| 7196 | one remote server and synchronizing the local clock to |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7197 | it. Unless you intend to serve NTP to networked clients or |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7198 | want to connect to local hardware clocks, this simple NTP |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7199 | client should be more than appropriate for most |
| 7200 | installations. The daemon runs with minimal privileges, and |
| 7201 | has been hooked up with networkd to only operate when |
| 7202 | network connectivity is available. The daemon saves the |
| 7203 | current clock to disk every time a new NTP sync has been |
| 7204 | acquired, and uses this to possibly correct the system clock |
Kay Sievers | 69beda1 | 2014-05-24 14:50:17 +0800 | [diff] [blame] | 7205 | early at bootup, in order to accommodate for systems that |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7206 | lack an RTC such as the Raspberry Pi and embedded devices, |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7207 | and to make sure that time monotonically progresses on these |
Lennart Poettering | c9679c6 | 2014-05-28 09:43:43 +0800 | [diff] [blame] | 7208 | systems, even if it is not always correct. To make use of |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7209 | this daemon, a new system user and group "systemd-timesync" |
Lennart Poettering | c9679c6 | 2014-05-28 09:43:43 +0800 | [diff] [blame] | 7210 | needs to be created on installation of systemd. |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7211 | |
Kay Sievers | 69beda1 | 2014-05-24 14:50:17 +0800 | [diff] [blame] | 7212 | * The queue "seqnum" interface of libudev has been disabled, as |
| 7213 | it was generally incompatible with device namespacing as |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7214 | sequence numbers of devices go "missing" if the devices are |
| 7215 | part of a different namespace. |
| 7216 | |
| 7217 | * "systemctl list-timers" and "systemctl list-sockets" gained |
| 7218 | a --recursive switch for showing units of these types also |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7219 | for all local containers, similar in style to the already |
| 7220 | supported --recursive switch for "systemctl list-units". |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7221 | |
| 7222 | * A new RebootArgument= setting has been added for service |
| 7223 | units, which may be used to specify a kernel reboot argument |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7224 | to use when triggering reboots with StartLimitAction=. |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7225 | |
| 7226 | * A new FailureAction= setting has been added for service |
| 7227 | units which may be used to specify an operation to trigger |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7228 | when a service fails. This works similarly to |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7229 | StartLimitAction=, but unlike it, controls what is done |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7230 | immediately rather than only after several attempts to |
| 7231 | restart the service in question. |
| 7232 | |
| 7233 | * hostnamed got updated to also expose the kernel name, |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7234 | release, and version on the bus. This is useful for |
| 7235 | executing commands like hostnamectl with the -H switch. |
| 7236 | systemd-analyze makes use of this to properly display |
| 7237 | details when running non-locally. |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7238 | |
| 7239 | * The bootchart tool can now show cgroup information in the |
| 7240 | graphs it generates. |
| 7241 | |
| 7242 | * The CFS CPU quota cgroup attribute is now exposed for |
| 7243 | services. The new CPUQuota= switch has been added for this |
| 7244 | which takes a percentage value. Setting this will have the |
| 7245 | result that a service may never get more CPU time than the |
| 7246 | specified percentage, even if the machine is otherwise idle. |
| 7247 | |
| 7248 | * systemd-networkd learned IPIP and SIT tunnel support. |
| 7249 | |
| 7250 | * LSB init scripts exposing a dependency on $network will now |
| 7251 | get a dependency on network-online.target rather than simply |
| 7252 | network.target. This should bring LSB handling closer to |
| 7253 | what it was on SysV systems. |
| 7254 | |
| 7255 | * A new fsck.repair= kernel option has been added to control |
| 7256 | how fsck shall deal with unclean file systems at boot. |
| 7257 | |
Zbigniew Jędrzejewski-Szmek | 2ad9888 | 2020-02-04 15:19:37 +0100 | [diff] [blame] | 7258 | * The (.ini) configuration file parser will now silently ignore |
| 7259 | sections whose names begin with "X-". This may be used to maintain |
| 7260 | application-specific extension sections in unit files. |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7261 | |
| 7262 | * machined gained a new API to query the IP addresses of |
| 7263 | registered containers. "machinectl status" has been updated |
| 7264 | to show these addresses in its output. |
| 7265 | |
| 7266 | * A new call sd_uid_get_display() has been added to the |
| 7267 | sd-login APIs for querying the "primary" session of a |
| 7268 | user. The "primary" session of the user is elected from the |
| 7269 | user's sessions and generally a graphical session is |
| 7270 | preferred over a text one. |
| 7271 | |
| 7272 | * A minimal systemd-resolved daemon has been added. It |
| 7273 | currently simply acts as a companion to systemd-networkd and |
| 7274 | manages resolv.conf based on per-interface DNS |
| 7275 | configuration, possibly supplied via DHCP. In the long run |
| 7276 | we hope to extend this into a local DNSSEC enabled DNS and |
| 7277 | mDNS cache. |
| 7278 | |
Tom Gundersen | 68dd095 | 2014-05-24 12:28:47 +0200 | [diff] [blame] | 7279 | * The systemd-networkd-wait-online tool is now enabled by |
| 7280 | default. It will delay network-online.target until a network |
| 7281 | connection has been configured. The tool primarily integrates |
| 7282 | with networkd, but will also make a best effort to make sense |
| 7283 | of network configuration performed in some other way. |
| 7284 | |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7285 | * Two new service options StartupCPUShares= and |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7286 | StartupBlockIOWeight= have been added that work similarly to |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7287 | CPUShares= and BlockIOWeight= however only apply during |
Kay Sievers | 69beda1 | 2014-05-24 14:50:17 +0800 | [diff] [blame] | 7288 | system startup. This is useful to prioritize certain services |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7289 | differently during bootup than during normal runtime. |
| 7290 | |
Lennart Poettering | 8e7acf6 | 2014-05-28 09:39:55 +0800 | [diff] [blame] | 7291 | * hostnamed has been changed to prefer the statically |
| 7292 | configured hostname in /etc/hostname (unless set to |
| 7293 | 'localhost' or empty) over any dynamic one supplied by |
Jan Engelhardt | 8d0e0dd | 2014-06-28 00:48:28 +0200 | [diff] [blame] | 7294 | dhcp. With this change, the rules for picking the hostname |
Lennart Poettering | 8e7acf6 | 2014-05-28 09:39:55 +0800 | [diff] [blame] | 7295 | match more closely the rules of other configuration settings |
| 7296 | where the local administrator's configuration in /etc always |
| 7297 | overrides any other settings. |
| 7298 | |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 7299 | Contributions from: Ali H. Caliskan, Alison Chaiken, Bas van |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7300 | den Berg, Brandon Philips, Cristian Rodríguez, Daniel Buch, |
| 7301 | Dan Kilman, Dave Reisner, David Härdeman, David Herrmann, |
| 7302 | David Strauss, Dimitris Spingos, Djalal Harouni, Eelco |
| 7303 | Dolstra, Evan Nemerson, Florian Albrechtskirchinger, Greg |
| 7304 | Kroah-Hartman, Harald Hoyer, Holger Hans Peter Freyther, Jan |
| 7305 | Engelhardt, Jani Nikula, Jason St. John, Jeffrey Clark, |
| 7306 | Jonathan Boulle, Kay Sievers, Lennart Poettering, Lukas |
| 7307 | Nykryn, Lukasz Skalski, Łukasz Stelmach, Mantas Mikulėnas, |
Lennart Poettering | 8e7acf6 | 2014-05-28 09:39:55 +0800 | [diff] [blame] | 7308 | Marcel Holtmann, Martin Pitt, Matthew Monaco, Michael |
| 7309 | Marineau, Michael Olbrich, Michal Sekletar, Mike Gilbert, Nis |
| 7310 | Martensen, Patrik Flykt, Philip Lorenz, poma, Ray Strode, |
| 7311 | Reyad Attiyat, Robert Milasan, Scott Thrasher, Stef Walter, |
| 7312 | Steven Siloti, Susant Sahani, Tanu Kaskinen, Thomas Bächler, |
| 7313 | Thomas Hindoe Paaboel Andersen, Tom Gundersen, Umut Tezduyar |
| 7314 | Lindskog, WaLyong Cho, Will Woods, Zbigniew |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7315 | Jędrzejewski-Szmek |
| 7316 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 7317 | — Beijing, 2014-05-28 |
Lennart Poettering | 6936cd8 | 2014-05-24 14:25:28 +0800 | [diff] [blame] | 7318 | |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7319 | CHANGES WITH 212: |
| 7320 | |
| 7321 | * When restoring the screen brightness at boot, stay away from |
| 7322 | the darkest setting or from the lowest 5% of the available |
| 7323 | range, depending on which is the larger value of both. This |
| 7324 | should effectively protect the user from rebooting into a |
| 7325 | black screen, should the brightness have been set to minimum |
| 7326 | by accident. |
| 7327 | |
| 7328 | * sd-login gained a new sd_machine_get_class() call to |
| 7329 | determine the class ("vm" or "container") of a machine |
| 7330 | registered with machined. |
| 7331 | |
| 7332 | * sd-login gained new calls |
| 7333 | sd_peer_get_{session,owner_uid,unit,user_unit,slice,machine_name}(), |
| 7334 | to query the identity of the peer of a local AF_UNIX |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7335 | connection. They operate similarly to their sd_pid_get_xyz() |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7336 | counterparts. |
| 7337 | |
| 7338 | * PID 1 will now maintain a system-wide system state engine |
| 7339 | with the states "starting", "running", "degraded", |
| 7340 | "maintenance", "stopping". These states are bound to system |
| 7341 | startup, normal runtime, runtime with at least one failed |
| 7342 | service, rescue/emergency mode and system shutdown. This |
| 7343 | state is shown in the "systemctl status" output when no unit |
| 7344 | name is passed. It is useful to determine system state, in |
| 7345 | particularly when doing so for many systems or containers at |
| 7346 | once. |
| 7347 | |
| 7348 | * A new command "list-machines" has been added to "systemctl" |
| 7349 | that lists all local OS containers and shows their system |
| 7350 | state (see above), if systemd runs inside of them. |
| 7351 | |
| 7352 | * systemctl gained a new "-r" switch to recursively enumerate |
| 7353 | units on all local containers, when used with the |
| 7354 | "list-unit" command (which is the default one that is |
| 7355 | executed when no parameters are specified). |
| 7356 | |
| 7357 | * The GPT automatic partition discovery logic will now honour |
| 7358 | two GPT partition flags: one may be set on a partition to |
| 7359 | cause it to be mounted read-only, and the other may be set |
| 7360 | on a partition to ignore it during automatic discovery. |
| 7361 | |
| 7362 | * Two new GPT type UUIDs have been added for automatic root |
Jan Engelhardt | 70a44af | 2014-05-03 19:15:24 +0200 | [diff] [blame] | 7363 | partition discovery, for 32-bit and 64-bit ARM. This is not |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7364 | particularly useful for discovering the root directory on |
| 7365 | these architectures during bare-metal boots (since UEFI is |
| 7366 | not common there), but still very useful to allow booting of |
| 7367 | ARM disk images in nspawn with the -i option. |
| 7368 | |
| 7369 | * MAC addresses of interfaces created with nspawn's |
| 7370 | --network-interface= switch will now be generated from the |
| 7371 | machine name, and thus be stable between multiple invocations |
| 7372 | of the container. |
| 7373 | |
| 7374 | * logind will now automatically remove all IPC objects owned |
| 7375 | by a user if she or he fully logs out. This makes sure that |
| 7376 | users who are logged out cannot continue to consume IPC |
| 7377 | resources. This covers SysV memory, semaphores and message |
| 7378 | queues as well as POSIX shared memory and message |
Zbigniew Jędrzejewski-Szmek | de04bbd | 2019-02-21 07:45:45 +0100 | [diff] [blame] | 7379 | queues. Traditionally, SysV and POSIX IPC had no lifecycle |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7380 | limits. With this functionality, that is corrected. This may |
| 7381 | be turned off by using the RemoveIPC= switch of logind.conf. |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7382 | |
| 7383 | * The systemd-machine-id-setup and tmpfiles tools gained a |
| 7384 | --root= switch to operate on a specific root directory, |
| 7385 | instead of /. |
| 7386 | |
| 7387 | * journald can now forward logged messages to the TTYs of all |
| 7388 | logged in users ("wall"). This is the default for all |
| 7389 | emergency messages now. |
| 7390 | |
| 7391 | * A new tool systemd-journal-remote has been added to stream |
| 7392 | journal log messages across the network. |
| 7393 | |
| 7394 | * /sys/fs/cgroup/ is now mounted read-only after all cgroup |
| 7395 | controller trees are mounted into it. Note that the |
| 7396 | directories mounted beneath it are not read-only. This is a |
| 7397 | security measure and is particularly useful because glibc |
| 7398 | actually includes a search logic to pick any tmpfs it can |
| 7399 | find to implement shm_open() if /dev/shm is not available |
| 7400 | (which it might very well be in namespaced setups). |
| 7401 | |
| 7402 | * machinectl gained a new "poweroff" command to cleanly power |
| 7403 | down a local OS container. |
| 7404 | |
| 7405 | * The PrivateDevices= unit file setting will now also drop the |
| 7406 | CAP_MKNOD capability from the capability bound set, and |
| 7407 | imply DevicePolicy=closed. |
| 7408 | |
| 7409 | * PrivateDevices=, PrivateNetwork= and PrivateTmp= is now used |
| 7410 | comprehensively on all long-running systemd services where |
| 7411 | this is appropriate. |
| 7412 | |
| 7413 | * systemd-udevd will now run in a disassociated mount |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7414 | namespace. To mount directories from udev rules, make sure to |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7415 | pull in mount units via SYSTEMD_WANTS properties. |
| 7416 | |
| 7417 | * The kdbus support gained support for uploading policy into |
| 7418 | the kernel. sd-bus gained support for creating "monitoring" |
| 7419 | connections that can eavesdrop into all bus communication |
| 7420 | for debugging purposes. |
| 7421 | |
| 7422 | * Timestamps may now be specified in seconds since the UNIX |
| 7423 | epoch Jan 1st, 1970 by specifying "@" followed by the value |
| 7424 | in seconds. |
| 7425 | |
| 7426 | * Native tcpwrap support in systemd has been removed. tcpwrap |
| 7427 | is old code, not really maintained anymore and has serious |
| 7428 | shortcomings, and better options such as firewalls |
| 7429 | exist. For setups that require tcpwrap usage, please |
| 7430 | consider invoking your socket-activated service via tcpd, |
| 7431 | like on traditional inetd. |
| 7432 | |
| 7433 | * A new system.conf configuration option |
| 7434 | DefaultTimerAccuracySec= has been added that controls the |
| 7435 | default AccuracySec= setting of .timer units. |
| 7436 | |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7437 | * Timer units gained a new WakeSystem= switch. If enabled, |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7438 | timers configured this way will cause the system to resume |
| 7439 | from system suspend (if the system supports that, which most |
| 7440 | do these days). |
| 7441 | |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7442 | * Timer units gained a new Persistent= switch. If enabled, |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7443 | timers configured this way will save to disk when they have |
| 7444 | been last triggered. This information is then used on next |
| 7445 | reboot to possible execute overdue timer events, that |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 7446 | could not take place because the system was powered off. |
| 7447 | This enables simple anacron-like behaviour for timer units. |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7448 | |
| 7449 | * systemctl's "list-timers" will now also list the time a |
| 7450 | timer unit was last triggered in addition to the next time |
| 7451 | it will be triggered. |
| 7452 | |
| 7453 | * systemd-networkd will now assign predictable IPv4LL |
| 7454 | addresses to its local interfaces. |
| 7455 | |
| 7456 | Contributions from: Brandon Philips, Daniel Buch, Daniel Mack, |
| 7457 | Dave Reisner, David Herrmann, Gerd Hoffmann, Greg |
| 7458 | Kroah-Hartman, Hendrik Brueckner, Jason St. John, Josh |
| 7459 | Triplett, Kay Sievers, Lennart Poettering, Marc-Antoine |
| 7460 | Perennou, Michael Marineau, Michael Olbrich, Miklos Vajna, |
| 7461 | Patrik Flykt, poma, Sebastian Thorarensen, Thomas Bächler, |
| 7462 | Thomas Hindoe Paaboel Andersen, Tomasz Torcz, Tom Gundersen, |
| 7463 | Umut Tezduyar Lindskog, Wieland Hoffmann, Zbigniew |
| 7464 | Jędrzejewski-Szmek |
| 7465 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 7466 | — Berlin, 2014-03-25 |
Lennart Poettering | 51c61cd | 2014-03-25 05:02:35 +0100 | [diff] [blame] | 7467 | |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7468 | CHANGES WITH 211: |
| 7469 | |
| 7470 | * A new unit file setting RestrictAddressFamilies= has been |
| 7471 | added to restrict which socket address families unit |
| 7472 | processes gain access to. This takes address family names |
| 7473 | like "AF_INET" or "AF_UNIX", and is useful to minimize the |
| 7474 | attack surface of services via exotic protocol stacks. This |
| 7475 | is built on seccomp system call filters. |
| 7476 | |
| 7477 | * Two new unit file settings RuntimeDirectory= and |
| 7478 | RuntimeDirectoryMode= have been added that may be used to |
| 7479 | manage a per-daemon runtime directories below /run. This is |
| 7480 | an alternative for setting up directory permissions with |
| 7481 | tmpfiles snippets, and has the advantage that the runtime |
| 7482 | directory's lifetime is bound to the daemon runtime and that |
| 7483 | the daemon starts up with an empty directory each time. This |
| 7484 | is particularly useful when writing services that drop |
Nis Martensen | f172162 | 2014-05-18 15:43:18 +0200 | [diff] [blame] | 7485 | privileges using the User= or Group= setting. |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7486 | |
| 7487 | * The DeviceAllow= unit setting now supports globbing for |
| 7488 | matching against device group names. |
| 7489 | |
| 7490 | * The systemd configuration file system.conf gained new |
| 7491 | settings DefaultCPUAccounting=, DefaultBlockIOAccounting=, |
| 7492 | DefaultMemoryAccounting= to globally turn on/off accounting |
| 7493 | for specific resources (cgroups) for all units. These |
David Herrmann | 22e7062 | 2014-03-11 20:46:57 +0100 | [diff] [blame] | 7494 | settings may still be overridden individually in each unit |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7495 | though. |
| 7496 | |
| 7497 | * systemd-gpt-auto-generator is now able to discover /srv and |
| 7498 | root partitions in addition to /home and swap partitions. It |
| 7499 | also supports LUKS-encrypted partitions now. With this in |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7500 | place, automatic discovery of partitions to mount following |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7501 | the Discoverable Partitions Specification |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 7502 | (https://www.freedesktop.org/wiki/Specifications/DiscoverablePartitionsSpec) |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7503 | is now a lot more complete. This allows booting without |
| 7504 | /etc/fstab and without root= on the kernel command line on |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7505 | systems prepared appropriately. |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7506 | |
| 7507 | * systemd-nspawn gained a new --image= switch which allows |
| 7508 | booting up disk images and Linux installations on any block |
| 7509 | device that follow the Discoverable Partitions Specification |
| 7510 | (see above). This means that installations made with |
| 7511 | appropriately updated installers may now be started and |
| 7512 | deployed using container managers, completely |
| 7513 | unmodified. (We hope that libvirt-lxc will add support for |
| 7514 | this feature soon, too.) |
| 7515 | |
| 7516 | * systemd-nspawn gained a new --network-macvlan= setting to |
| 7517 | set up a private macvlan interface for the |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 7518 | container. Similarly, systemd-networkd gained a new |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7519 | Kind=macvlan setting in .netdev files. |
| 7520 | |
| 7521 | * systemd-networkd now supports configuring local addresses |
| 7522 | using IPv4LL. |
| 7523 | |
| 7524 | * A new tool systemd-network-wait-online has been added to |
| 7525 | synchronously wait for network connectivity using |
| 7526 | systemd-networkd. |
| 7527 | |
| 7528 | * The sd-bus.h bus API gained a new sd_bus_track object for |
Zbigniew Jędrzejewski-Szmek | de04bbd | 2019-02-21 07:45:45 +0100 | [diff] [blame] | 7529 | tracking the lifecycle of bus peers. Note that sd-bus.h is |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7530 | still not a public API though (unless you specify |
| 7531 | --enable-kdbus on the configure command line, which however |
| 7532 | voids your warranty and you get no API stability guarantee). |
| 7533 | |
| 7534 | * The $XDG_RUNTIME_DIR runtime directories for each user are |
| 7535 | now individual tmpfs instances, which has the benefit of |
| 7536 | introducing separate pools for each user, with individual |
Kay Sievers | 4ef6e53 | 2014-03-11 20:41:12 +0100 | [diff] [blame] | 7537 | size limits, and thus making sure that unprivileged clients |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7538 | can no longer negatively impact the system or other users by |
| 7539 | filling up their $XDG_RUNTIME_DIR. A new logind.conf setting |
| 7540 | RuntimeDirectorySize= has been introduced that allows |
| 7541 | controlling the default size limit for all users. It |
| 7542 | defaults to 10% of the available physical memory. This is no |
| 7543 | replacement for quotas on tmpfs though (which the kernel |
| 7544 | still does not support), as /dev/shm and /tmp are still |
Kay Sievers | 4ef6e53 | 2014-03-11 20:41:12 +0100 | [diff] [blame] | 7545 | shared resources used by both the system and unprivileged |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7546 | users. |
| 7547 | |
| 7548 | * logind will now automatically turn off automatic suspending |
| 7549 | on laptop lid close when more than one display is |
| 7550 | connected. This was previously expected to be implemented |
| 7551 | individually in desktop environments (such as GNOME), |
| 7552 | however has been added to logind now, in order to fix a |
| 7553 | boot-time race where a desktop environment might not have |
| 7554 | been started yet and thus not been able to take an inhibitor |
| 7555 | lock at the time where logind already suspends the system |
| 7556 | due to a closed lid. |
| 7557 | |
| 7558 | * logind will now wait at least 30s after each system |
| 7559 | suspend/resume cycle, and 3min after system boot before |
| 7560 | suspending the system due to a closed laptop lid. This |
| 7561 | should give USB docking stations and similar enough time to |
Kay Sievers | 4ef6e53 | 2014-03-11 20:41:12 +0100 | [diff] [blame] | 7562 | be probed and configured after system resume and boot in |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7563 | order to then act as suspend blocker. |
| 7564 | |
| 7565 | * systemd-run gained a new --property= setting which allows |
| 7566 | initialization of resource control properties (and others) |
| 7567 | for the created scope or service unit. Example: "systemd-run |
| 7568 | --property=BlockIOWeight=10 updatedb" may be used to run |
| 7569 | updatedb at a low block IO scheduling weight. |
| 7570 | |
| 7571 | * systemd-run's --uid=, --gid=, --setenv=, --setenv= switches |
| 7572 | now also work in --scope mode. |
| 7573 | |
| 7574 | * When systemd is compiled with kdbus support, basic support |
| 7575 | for enforced policies is now in place. (Note that enabling |
| 7576 | kdbus still voids your warranty and no API compatibility |
| 7577 | promises are made.) |
| 7578 | |
| 7579 | Contributions from: Andrey Borzenkov, Ansgar Burchardt, Armin |
| 7580 | K., Daniel Mack, Dave Reisner, David Herrmann, Djalal Harouni, |
| 7581 | Harald Hoyer, Henrik Grindal Bakken, Jasper St. Pierre, Kay |
| 7582 | Sievers, Kieran Clancy, Lennart Poettering, Lukas Nykryn, |
| 7583 | Mantas Mikulėnas, Marcel Holtmann, Mark Oteiza, Martin Pitt, |
| 7584 | Mike Gilbert, Peter Rajnoha, poma, Samuli Suominen, Stef |
| 7585 | Walter, Susant Sahani, Tero Roponen, Thomas Andersen, Thomas |
| 7586 | Bächler, Thomas Hindoe Paaboel Andersen, Tomasz Torcz, Tom |
| 7587 | Gundersen, Umut Tezduyar Lindskog, Uoti Urpala, Zachary Cook, |
| 7588 | Zbigniew Jędrzejewski-Szmek |
| 7589 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 7590 | — Berlin, 2014-03-12 |
Lennart Poettering | 699b6b3 | 2014-03-11 20:18:06 +0100 | [diff] [blame] | 7591 | |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7592 | CHANGES WITH 210: |
| 7593 | |
| 7594 | * systemd will now relabel /dev after loading the SMACK policy |
| 7595 | according to SMACK rules. |
| 7596 | |
Lennart Poettering | 67dd87c | 2014-02-25 02:36:12 +0100 | [diff] [blame] | 7597 | * A new unit file option AppArmorProfile= has been added to |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7598 | set the AppArmor profile for the processes of a unit. |
| 7599 | |
| 7600 | * A new condition check ConditionArchitecture= has been added |
| 7601 | to conditionalize units based on the system architecture, as |
| 7602 | reported by uname()'s "machine" field. |
| 7603 | |
| 7604 | * systemd-networkd now supports matching on the system |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 7605 | virtualization, architecture, kernel command line, hostname |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7606 | and machine ID. |
| 7607 | |
Kay Sievers | ed28905 | 2014-02-24 20:20:25 +0100 | [diff] [blame] | 7608 | * logind is now a lot more aggressive when suspending the |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7609 | machine due to a closed laptop lid. Instead of acting only |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7610 | on the lid close action, it will continuously watch the lid |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7611 | status and act on it. This is useful for laptops where the |
| 7612 | power button is on the outside of the chassis so that it can |
Kay Sievers | ed28905 | 2014-02-24 20:20:25 +0100 | [diff] [blame] | 7613 | be reached without opening the lid (such as the Lenovo |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7614 | Yoga). On those machines, logind will now immediately |
Kay Sievers | ed28905 | 2014-02-24 20:20:25 +0100 | [diff] [blame] | 7615 | re-suspend the machine if the power button has been |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7616 | accidentally pressed while the laptop was suspended and in a |
| 7617 | backpack or similar. |
| 7618 | |
| 7619 | * logind will now watch SW_DOCK switches and inhibit reaction |
| 7620 | to the lid switch if it is pressed. This means that logind |
Lennart Poettering | d27893e | 2014-02-24 19:13:39 +0100 | [diff] [blame] | 7621 | will not suspend the machine anymore if the lid is closed |
Ansgar Burchardt | 949138c | 2014-02-25 10:53:49 +0100 | [diff] [blame] | 7622 | and the system is docked, if the laptop supports SW_DOCK |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7623 | notifications via the input layer. Note that ACPI docking |
| 7624 | stations do not generate this currently. Also note that this |
| 7625 | logic is usually not fully sufficient and Desktop |
| 7626 | Environments should take a lid switch inhibitor lock when an |
| 7627 | external display is connected, as systemd will not watch |
| 7628 | this on its own. |
| 7629 | |
| 7630 | * nspawn will now make use of the devices cgroup controller by |
| 7631 | default, and only permit creation of and access to the usual |
| 7632 | API device nodes like /dev/null or /dev/random, as well as |
| 7633 | access to (but not creation of) the pty devices. |
| 7634 | |
| 7635 | * We will now ship a default .network file for |
| 7636 | systemd-networkd that automatically configures DHCP for |
| 7637 | network interfaces created by nspawn's --network-veth or |
| 7638 | --network-bridge= switches. |
| 7639 | |
| 7640 | * systemd will now understand the usual M, K, G, T suffixes |
| 7641 | according to SI conventions (i.e. to the base 1000) when |
| 7642 | referring to throughput and hardware metrics. It will stay |
| 7643 | with IEC conventions (i.e. to the base 1024) for software |
| 7644 | metrics, according to what is customary according to |
| 7645 | Wikipedia. We explicitly document which base applies for |
| 7646 | each configuration option. |
| 7647 | |
| 7648 | * The DeviceAllow= setting in unit files now supports a syntax |
Kay Sievers | ed28905 | 2014-02-24 20:20:25 +0100 | [diff] [blame] | 7649 | to whitelist an entire group of devices node majors at once, |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7650 | based on the /proc/devices listing. For example, with the |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7651 | string "char-pts", it is now possible to whitelist all |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7652 | current and future pseudo-TTYs at once. |
| 7653 | |
| 7654 | * sd-event learned a new "post" event source. Event sources of |
| 7655 | this type are triggered by the dispatching of any event |
| 7656 | source of a type that is not "post". This is useful for |
| 7657 | implementing clean-up and check event sources that are |
| 7658 | triggered by other work being done in the program. |
| 7659 | |
| 7660 | * systemd-networkd is no longer statically enabled, but uses |
| 7661 | the usual [Install] sections so that it can be |
| 7662 | enabled/disabled using systemctl. It still is enabled by |
| 7663 | default however. |
| 7664 | |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7665 | * When creating a veth interface pair with systemd-nspawn, the |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7666 | host side will now be prefixed with "vb-" if |
| 7667 | --network-bridge= is used, and with "ve-" if --network-veth |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7668 | is used. This way, it is easy to distinguish these cases on |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7669 | the host, for example to apply different configuration to |
| 7670 | them with systemd-networkd. |
| 7671 | |
Lennart Poettering | d27893e | 2014-02-24 19:13:39 +0100 | [diff] [blame] | 7672 | * The compatibility libraries for libsystemd-journal.so, |
| 7673 | libsystem-id128.so, libsystemd-login.so and |
| 7674 | libsystemd-daemon.so do not make use of IFUNC |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7675 | anymore. Instead, we now build libsystemd.so multiple times |
Lennart Poettering | d27893e | 2014-02-24 19:13:39 +0100 | [diff] [blame] | 7676 | under these alternative names. This means that the footprint |
| 7677 | is drastically increased, but given that these are |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 7678 | transitional compatibility libraries, this should not matter |
Lennart Poettering | d27893e | 2014-02-24 19:13:39 +0100 | [diff] [blame] | 7679 | much. This change has been made necessary to support the ARM |
| 7680 | platform for these compatibility libraries, as the ARM |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 7681 | toolchain is not really at the same level as the toolchain |
Kay Sievers | ed28905 | 2014-02-24 20:20:25 +0100 | [diff] [blame] | 7682 | for other architectures like x86 and does not support |
Lennart Poettering | d27893e | 2014-02-24 19:13:39 +0100 | [diff] [blame] | 7683 | IFUNC. Please make sure to use --enable-compat-libs only |
| 7684 | during a transitional period! |
| 7685 | |
Zbigniew Jędrzejewski-Szmek | f26ad32 | 2019-01-18 13:45:10 +0100 | [diff] [blame] | 7686 | * The .include syntax has been deprecated and is not documented |
| 7687 | anymore. Drop-in files in .d directories should be used instead. |
| 7688 | |
Lennart Poettering | 13b28d8 | 2014-03-12 16:39:21 +0100 | [diff] [blame] | 7689 | Contributions from: Andreas Fuchs, Armin K., Colin Walters, |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7690 | Daniel Mack, Dave Reisner, David Herrmann, Djalal Harouni, |
| 7691 | Holger Schurig, Jason A. Donenfeld, Jason St. John, Jasper |
| 7692 | St. Pierre, Kay Sievers, Lennart Poettering, Łukasz Stelmach, |
| 7693 | Marcel Holtmann, Michael Scherer, Michal Sekletar, Mike |
| 7694 | Gilbert, Samuli Suominen, Thomas Bächler, Thomas Hindoe |
| 7695 | Paaboel Andersen, Tom Gundersen, Umut Tezduyar Lindskog, |
| 7696 | Zbigniew Jędrzejewski-Szmek |
| 7697 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 7698 | — Berlin, 2014-02-24 |
Lennart Poettering | 43c7125 | 2014-02-24 18:34:12 +0100 | [diff] [blame] | 7699 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7700 | CHANGES WITH 209: |
| 7701 | |
| 7702 | * A new component "systemd-networkd" has been added that can |
| 7703 | be used to configure local network interfaces statically or |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7704 | via DHCP. It is capable of bringing up bridges, VLANs, and |
| 7705 | bonding. Currently, no hook-ups for interactive network |
Jan Engelhardt | 4670e9d | 2014-02-18 05:10:48 +0100 | [diff] [blame] | 7706 | configuration are provided. Use this for your initrd, |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7707 | container, embedded, or server setup if you need a simple, |
| 7708 | yet powerful, network configuration solution. This |
Jan Engelhardt | 4670e9d | 2014-02-18 05:10:48 +0100 | [diff] [blame] | 7709 | configuration subsystem is quite nifty, as it allows wildcard |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7710 | hotplug matching in interfaces. For example, with a single |
Jan Engelhardt | 4670e9d | 2014-02-18 05:10:48 +0100 | [diff] [blame] | 7711 | configuration snippet, you can configure that all Ethernet |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7712 | interfaces showing up are automatically added to a bridge, |
| 7713 | or similar. It supports link-sensing and more. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7714 | |
| 7715 | * A new tool "systemd-socket-proxyd" has been added which can |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7716 | act as a bidirectional proxy for TCP sockets. This is |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7717 | useful for adding socket activation support to services that |
| 7718 | do not actually support socket activation, including virtual |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7719 | machines and the like. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7720 | |
| 7721 | * Add a new tool to save/restore rfkill state on |
| 7722 | shutdown/boot. |
| 7723 | |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7724 | * Save/restore state of keyboard backlights in addition to |
| 7725 | display backlights on shutdown/boot. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7726 | |
| 7727 | * udev learned a new SECLABEL{} construct to label device |
| 7728 | nodes with a specific security label when they appear. For |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7729 | now, only SECLABEL{selinux} is supported, but the syntax is |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7730 | prepared for additional security frameworks. |
| 7731 | |
| 7732 | * udev gained a new scheme to configure link-level attributes |
| 7733 | from files in /etc/systemd/network/*.link. These files can |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7734 | match against MAC address, device path, driver name and type, |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7735 | and will apply attributes like the naming policy, link speed, |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7736 | MTU, duplex settings, Wake-on-LAN settings, MAC address, MAC |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7737 | address assignment policy (randomized, ...). |
| 7738 | |
Zbigniew Jędrzejewski-Szmek | dfb08b0 | 2014-02-23 18:11:48 -0500 | [diff] [blame] | 7739 | * The configuration of network interface naming rules for |
| 7740 | "permanent interface names" has changed: a new NamePolicy= |
| 7741 | setting in the [Link] section of .link files determines the |
Jan Engelhardt | a8eaaee | 2014-08-03 07:11:37 +0200 | [diff] [blame] | 7742 | priority of possible naming schemes (onboard, slot, MAC, |
Zbigniew Jędrzejewski-Szmek | dfb08b0 | 2014-02-23 18:11:48 -0500 | [diff] [blame] | 7743 | path). The default value of this setting is determined by |
| 7744 | /usr/lib/net/links/99-default.link. Old |
| 7745 | 80-net-name-slot.rules udev configuration file has been |
| 7746 | removed, so local configuration overriding this file should |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 7747 | be adapted to override 99-default.link instead. |
Zbigniew Jędrzejewski-Szmek | dfb08b0 | 2014-02-23 18:11:48 -0500 | [diff] [blame] | 7748 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7749 | * When the User= switch is used in a unit file, also |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7750 | initialize $SHELL= based on the user database entry. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7751 | |
| 7752 | * systemd no longer depends on libdbus. All communication is |
| 7753 | now done with sd-bus, systemd's low-level bus library |
| 7754 | implementation. |
| 7755 | |
| 7756 | * kdbus support has been added to PID 1 itself. When kdbus is |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7757 | enabled, this causes PID 1 to set up the system bus and |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7758 | enable support for a new ".busname" unit type that |
| 7759 | encapsulates bus name activation on kdbus. It works a little |
| 7760 | bit like ".socket" units, except for bus names. A new |
| 7761 | generator has been added that converts classic dbus1 service |
| 7762 | activation files automatically into native systemd .busname |
| 7763 | and .service units. |
| 7764 | |
| 7765 | * sd-bus: add a light-weight vtable implementation that allows |
| 7766 | defining objects on the bus with a simple static const |
| 7767 | vtable array of its methods, signals and properties. |
| 7768 | |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7769 | * systemd will not generate or install static dbus |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7770 | introspection data anymore to /usr/share/dbus-1/interfaces, |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7771 | as the precise format of these files is unclear, and |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7772 | nothing makes use of it. |
| 7773 | |
| 7774 | * A proxy daemon is now provided to proxy clients connecting |
| 7775 | via classic D-Bus AF_UNIX sockets to kdbus, to provide full |
| 7776 | compatibility with classic D-Bus. |
| 7777 | |
| 7778 | * A bus driver implementation has been added that supports the |
| 7779 | classic D-Bus bus driver calls on kdbus, also for |
| 7780 | compatibility purposes. |
| 7781 | |
| 7782 | * A new API "sd-event.h" has been added that implements a |
| 7783 | minimal event loop API built around epoll. It provides a |
| 7784 | couple of features that direct epoll usage is lacking: |
Kay Sievers | b976100 | 2014-02-18 03:06:15 +0100 | [diff] [blame] | 7785 | prioritization of events, scales to large numbers of timer |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7786 | events, per-event timer slack (accuracy), system-wide |
| 7787 | coalescing of timer events, exit handlers, watchdog |
| 7788 | supervision support using systemd's sd_notify() API, child |
| 7789 | process handling. |
| 7790 | |
| 7791 | * A new API "sd-rntl.h" has been added that provides an API |
| 7792 | around the route netlink interface of the kernel, similar in |
| 7793 | style to "sd-bus.h". |
| 7794 | |
Patrik Flykt | 7e95eda | 2014-02-18 16:30:09 +0200 | [diff] [blame] | 7795 | * A new API "sd-dhcp-client.h" has been added that provides a |
| 7796 | small DHCPv4 client-side implementation. This is used by |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7797 | "systemd-networkd". |
| 7798 | |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7799 | * There is a new kernel command line option |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7800 | "systemd.restore_state=0|1". When set to "0", none of the |
| 7801 | systemd tools will restore saved runtime state to hardware |
| 7802 | devices. More specifically, the rfkill and backlight states |
| 7803 | are not restored. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7804 | |
| 7805 | * The FsckPassNo= compatibility option in mount/service units |
| 7806 | has been removed. The fstab generator will now add the |
| 7807 | necessary dependencies automatically, and does not require |
| 7808 | PID1's support for that anymore. |
| 7809 | |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7810 | * journalctl gained a new switch, --list-boots, that lists |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7811 | recent boots with their times and boot IDs. |
| 7812 | |
| 7813 | * The various tools like systemctl, loginctl, timedatectl, |
| 7814 | busctl, systemd-run, ... have gained a new switch "-M" to |
| 7815 | connect to a specific, local OS container (as direct |
| 7816 | connection, without requiring SSH). This works on any |
| 7817 | container that is registered with machined, such as those |
| 7818 | created by libvirt-lxc or nspawn. |
| 7819 | |
| 7820 | * systemd-run and systemd-analyze also gained support for "-H" |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7821 | to connect to remote hosts via SSH. This is particularly |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7822 | useful for systemd-run because it enables queuing of jobs |
| 7823 | onto remote systems. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7824 | |
| 7825 | * machinectl gained a new command "login" to open a getty |
| 7826 | login in any local container. This works with any container |
| 7827 | that is registered with machined (such as those created by |
Lennart Poettering | 8e42049 | 2014-02-18 13:38:31 +0100 | [diff] [blame] | 7828 | libvirt-lxc or nspawn), and which runs systemd inside. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7829 | |
| 7830 | * machinectl gained a new "reboot" command that may be used to |
| 7831 | trigger a reboot on a specific container that is registered |
| 7832 | with machined. This works on any container that runs an init |
| 7833 | system of some kind. |
| 7834 | |
| 7835 | * systemctl gained a new "list-timers" command to print a nice |
| 7836 | listing of installed timer units with the times they elapse |
| 7837 | next. |
| 7838 | |
| 7839 | * Alternative reboot() parameters may now be specified on the |
| 7840 | "systemctl reboot" command line and are passed to the |
| 7841 | reboot() system call. |
| 7842 | |
| 7843 | * systemctl gained a new --job-mode= switch to configure the |
| 7844 | mode to queue a job with. This is a more generic version of |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7845 | --fail, --irreversible, and --ignore-dependencies, which are |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7846 | still available but not advertised anymore. |
| 7847 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7848 | * /etc/systemd/system.conf gained new settings to configure |
| 7849 | various default timeouts of units, as well as the default |
Kay Sievers | b976100 | 2014-02-18 03:06:15 +0100 | [diff] [blame] | 7850 | start limit interval and burst. These may still be overridden |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7851 | within each Unit. |
| 7852 | |
Lennart Poettering | 270f162 | 2014-02-18 03:03:04 +0100 | [diff] [blame] | 7853 | * PID1 will now export on the bus profile data of the security |
| 7854 | policy upload process (such as the SELinux policy upload to |
Lennart Poettering | 8e42049 | 2014-02-18 13:38:31 +0100 | [diff] [blame] | 7855 | the kernel). |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7856 | |
Jan Engelhardt | 4670e9d | 2014-02-18 05:10:48 +0100 | [diff] [blame] | 7857 | * journald: when forwarding logs to the console, include |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7858 | timestamps (following the setting in |
| 7859 | /sys/module/printk/parameters/time). |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7860 | |
| 7861 | * OnCalendar= in timer units now understands the special |
| 7862 | strings "yearly" and "annually". (Both are equivalent) |
| 7863 | |
| 7864 | * The accuracy of timer units is now configurable with the new |
| 7865 | AccuracySec= setting. It defaults to 1min. |
| 7866 | |
| 7867 | * A new dependency type JoinsNamespaceOf= has been added that |
| 7868 | allows running two services within the same /tmp and network |
| 7869 | namespace, if PrivateNetwork= or PrivateTmp= are used. |
| 7870 | |
| 7871 | * A new command "cat" has been added to systemctl. It outputs |
| 7872 | the original unit file of a unit, and concatenates the |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7873 | contents of additional "drop-in" unit file snippets, so that |
| 7874 | the full configuration is shown. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7875 | |
| 7876 | * systemctl now supports globbing on the various "list-xyz" |
| 7877 | commands, like "list-units" or "list-sockets", as well as on |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7878 | those commands which take multiple unit names. |
| 7879 | |
| 7880 | * journalctl's --unit= switch gained support for globbing. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7881 | |
| 7882 | * All systemd daemons now make use of the watchdog logic so |
| 7883 | that systemd automatically notices when they hang. |
| 7884 | |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7885 | * If the $container_ttys environment variable is set, |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7886 | getty-generator will automatically spawn a getty for each |
| 7887 | listed tty. This is useful for container managers to request |
| 7888 | login gettys to be spawned on as many ttys as needed. |
| 7889 | |
| 7890 | * %h, %s, %U specifier support is not available anymore when |
| 7891 | used in unit files for PID 1. This is because NSS calls are |
| 7892 | not safe from PID 1. They stay available for --user |
| 7893 | instances of systemd, and as special case for the root user. |
| 7894 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7895 | * loginctl gained a new "--no-legend" switch to turn off output |
| 7896 | of the legend text. |
| 7897 | |
| 7898 | * The "sd-login.h" API gained three new calls: |
| 7899 | sd_session_is_remote(), sd_session_get_remote_user(), |
| 7900 | sd_session_get_remote_host() to query information about |
| 7901 | remote sessions. |
| 7902 | |
Lennart Poettering | 8e42049 | 2014-02-18 13:38:31 +0100 | [diff] [blame] | 7903 | * The udev hardware database now also carries vendor/product |
| 7904 | information of SDIO devices. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7905 | |
| 7906 | * The "sd-daemon.h" API gained a new sd_watchdog_enabled() to |
| 7907 | determine whether watchdog notifications are requested by |
| 7908 | the system manager. |
| 7909 | |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7910 | * Socket-activated per-connection services now include a |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7911 | short description of the connection parameters in the |
| 7912 | description. |
| 7913 | |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7914 | * tmpfiles gained a new "--boot" option. When this is not used, |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7915 | only lines where the command character is not suffixed with |
Jan Engelhardt | 4670e9d | 2014-02-18 05:10:48 +0100 | [diff] [blame] | 7916 | "!" are executed. When this option is specified, those |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 7917 | options are executed too. This partitions tmpfiles |
| 7918 | directives into those that can be safely executed at any |
| 7919 | time, and those which should be run only at boot (for |
| 7920 | example, a line that creates /run/nologin). |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7921 | |
Daniel Buch | c0c5af0 | 2014-02-18 08:13:25 +0100 | [diff] [blame] | 7922 | * A new API "sd-resolve.h" has been added which provides a simple |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 7923 | asynchronous wrapper around glibc NSS hostname resolution |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7924 | calls, such as getaddrinfo(). In contrast to glibc's |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7925 | getaddrinfo_a(), it does not use signals. In contrast to most |
| 7926 | other asynchronous name resolution libraries, this one does |
| 7927 | not reimplement DNS, but reuses NSS, so that alternate |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 7928 | hostname resolution systems continue to work, such as mDNS, |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7929 | LDAP, etc. This API is based on libasyncns, but it has been |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7930 | cleaned up for inclusion in systemd. |
| 7931 | |
Lennart Poettering | 6300b3e | 2014-02-20 03:55:22 +0100 | [diff] [blame] | 7932 | * The APIs "sd-journal.h", "sd-login.h", "sd-id128.h", |
| 7933 | "sd-daemon.h" are no longer found in individual libraries |
| 7934 | libsystemd-journal.so, libsystemd-login.so, |
| 7935 | libsystemd-id128.so, libsystemd-daemon.so. Instead, we have |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7936 | merged them into a single library, libsystemd.so, which |
| 7937 | provides all symbols. The reason for this is cyclic |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7938 | dependencies, as these libraries tend to use each other's |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 7939 | symbols. So far, we have managed to workaround that by linking |
Lennart Poettering | 6300b3e | 2014-02-20 03:55:22 +0100 | [diff] [blame] | 7940 | a copy of a good part of our code into each of these |
| 7941 | libraries again and again, which, however, makes certain |
| 7942 | things hard to do, like sharing static variables. Also, it |
| 7943 | substantially increases footprint. With this change, there |
| 7944 | is only one library for the basic APIs systemd |
| 7945 | provides. Also, "sd-bus.h", "sd-memfd.h", "sd-event.h", |
| 7946 | "sd-rtnl.h", "sd-resolve.h", "sd-utf8.h" are found in this |
| 7947 | library as well, however are subject to the --enable-kdbus |
| 7948 | switch (see below). Note that "sd-dhcp-client.h" is not part |
| 7949 | of this library (this is because it only consumes, never |
| 7950 | provides, services of/to other APIs). To make the transition |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7951 | easy from the separate libraries to the unified one, we |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7952 | provide the --enable-compat-libs compile-time switch which |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7953 | will generate stub libraries that are compatible with the |
| 7954 | old ones but redirect all calls to the new one. |
| 7955 | |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7956 | * All of the kdbus logic and the new APIs "sd-bus.h", |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7957 | "sd-memfd.h", "sd-event.h", "sd-rtnl.h", "sd-resolve.h", |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7958 | and "sd-utf8.h" are compile-time optional via the |
| 7959 | "--enable-kdbus" switch, and they are not compiled in by |
| 7960 | default. To make use of kdbus, you have to explicitly enable |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7961 | the switch. Note however, that neither the kernel nor the |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7962 | userspace API for all of this is considered stable yet. We |
| 7963 | want to maintain the freedom to still change the APIs for |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7964 | now. By specifying this build-time switch, you acknowledge |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7965 | that you are aware of the instability of the current |
Kay Sievers | ad42cf7 | 2014-02-18 03:19:57 +0100 | [diff] [blame] | 7966 | APIs. |
| 7967 | |
| 7968 | * Also, note that while kdbus is pretty much complete, |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7969 | it lacks one thing: proper policy support. This means you |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7970 | can build a fully working system with all features; however, |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7971 | it will be highly insecure. Policy support will be added in |
| 7972 | one of the next releases, at the same time that we will |
| 7973 | declare the APIs stable. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7974 | |
Lennart Poettering | 81c7dd8 | 2014-11-06 20:06:30 +0100 | [diff] [blame] | 7975 | * When the kernel command line argument "kdbus" is specified, |
Kay Sievers | ad42cf7 | 2014-02-18 03:19:57 +0100 | [diff] [blame] | 7976 | systemd will automatically load the kdbus.ko kernel module. At |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7977 | this stage of development, it is only useful for testing kdbus |
Kay Sievers | ad42cf7 | 2014-02-18 03:19:57 +0100 | [diff] [blame] | 7978 | and should not be used in production. Note: if "--enable-kdbus" |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7979 | is specified, and the kdbus.ko kernel module is available, and |
Kay Sievers | ad42cf7 | 2014-02-18 03:19:57 +0100 | [diff] [blame] | 7980 | "kdbus" is added to the kernel command line, the entire system |
| 7981 | runs with kdbus instead of dbus-daemon, with the above mentioned |
| 7982 | problem of missing the system policy enforcement. Also a future |
| 7983 | version of kdbus.ko or a newer systemd will not be compatible with |
| 7984 | each other, and will unlikely be able to boot the machine if only |
| 7985 | one of them is updated. |
| 7986 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7987 | * systemctl gained a new "import-environment" command which |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7988 | uploads the caller's environment (or parts thereof) into the |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7989 | service manager so that it is inherited by services started |
| 7990 | by the manager. This is useful to upload variables like |
| 7991 | $DISPLAY into the user service manager. |
| 7992 | |
| 7993 | * A new PrivateDevices= switch has been added to service units |
| 7994 | which allows running a service with a namespaced /dev |
| 7995 | directory that does not contain any device nodes for |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 7996 | physical devices. More specifically, it only includes devices |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 7997 | such as /dev/null, /dev/urandom, and /dev/zero which are API |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 7998 | entry points. |
| 7999 | |
| 8000 | * logind has been extended to support behaviour like VT |
| 8001 | switching on seats that do not support a VT. This makes |
| 8002 | multi-session available on seats that are not the first seat |
| 8003 | (seat0), and on systems where kernel support for VTs has |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8004 | been disabled at compile-time. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8005 | |
| 8006 | * If a process holds a delay lock for system sleep or shutdown |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8007 | and fails to release it in time, we will now log its |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8008 | identity. This makes it easier to identify processes that |
| 8009 | cause slow suspends or power-offs. |
| 8010 | |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8011 | * When parsing /etc/crypttab, support for a new key-slot= |
| 8012 | option as supported by Debian is added. It allows indicating |
| 8013 | which LUKS slot to use on disk, speeding up key loading. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8014 | |
Zbigniew Jędrzejewski-Szmek | 000b1ba | 2018-01-20 14:04:17 +1100 | [diff] [blame] | 8015 | * The sd_journal_sendv() API call has been checked and |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8016 | officially declared to be async-signal-safe so that it may |
| 8017 | be invoked from signal handlers for logging purposes. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8018 | |
| 8019 | * Boot-time status output is now enabled automatically after a |
| 8020 | short timeout if boot does not progress, in order to give |
Lennart Poettering | 8e42049 | 2014-02-18 13:38:31 +0100 | [diff] [blame] | 8021 | the user an indication what she or he is waiting for. |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8022 | |
| 8023 | * The boot-time output has been improved to show how much time |
| 8024 | remains until jobs expire. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8025 | |
| 8026 | * The KillMode= switch in service units gained a new possible |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8027 | value "mixed". If set, and the unit is shut down, then the |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8028 | initial SIGTERM signal is sent only to the main daemon |
Lennart Poettering | 8e42049 | 2014-02-18 13:38:31 +0100 | [diff] [blame] | 8029 | process, while the following SIGKILL signal is sent to |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8030 | all remaining processes of the service. |
| 8031 | |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 8032 | * When a scope unit is registered, a new property "Controller" |
| 8033 | may be set. If set to a valid bus name, systemd will send a |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8034 | RequestStop() signal to this name when it would like to shut |
| 8035 | down the scope. This may be used to hook manager logic into |
| 8036 | the shutdown logic of scope units. Also, scope units may now |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8037 | be put in a special "abandoned" state, in which case the |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8038 | manager process which created them takes no further |
| 8039 | responsibilities for it. |
| 8040 | |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8041 | * When reading unit files, systemd will now verify |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8042 | the access mode of these files, and warn about certain |
| 8043 | suspicious combinations. This has been added to make it |
| 8044 | easier to track down packaging bugs where unit files are |
| 8045 | marked executable or world-writable. |
| 8046 | |
| 8047 | * systemd-nspawn gained a new "--setenv=" switch to set |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8048 | container-wide environment variables. The similar option in |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8049 | systemd-activate was renamed from "--environment=" to |
| 8050 | "--setenv=" for consistency. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8051 | |
| 8052 | * systemd-nspawn has been updated to create a new kdbus domain |
| 8053 | for each container that is invoked, thus allowing each |
Kay Sievers | b976100 | 2014-02-18 03:06:15 +0100 | [diff] [blame] | 8054 | container to have its own set of system and user buses, |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8055 | independent of the host. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8056 | |
| 8057 | * systemd-nspawn gained a new --drop-capability= switch to run |
| 8058 | the container with less capabilities than the default. Both |
Kay Sievers | b976100 | 2014-02-18 03:06:15 +0100 | [diff] [blame] | 8059 | --drop-capability= and --capability= now take the special |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8060 | string "all" for dropping or keeping all capabilities. |
| 8061 | |
| 8062 | * systemd-nspawn gained new switches for executing containers |
| 8063 | with specific SELinux labels set. |
| 8064 | |
| 8065 | * systemd-nspawn gained a new --quiet switch to not generate |
| 8066 | any additional output but the container's own console |
| 8067 | output. |
| 8068 | |
| 8069 | * systemd-nspawn gained a new --share-system switch to run a |
| 8070 | container without PID namespacing enabled. |
| 8071 | |
| 8072 | * systemd-nspawn gained a new --register= switch to control |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8073 | whether the container is registered with systemd-machined or |
Lennart Poettering | 8e42049 | 2014-02-18 13:38:31 +0100 | [diff] [blame] | 8074 | not. This is useful for containers that do not run full |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8075 | OS images, but only specific apps. |
| 8076 | |
| 8077 | * systemd-nspawn gained a new --keep-unit which may be used |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8078 | when invoked as the only program from a service unit, and |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8079 | results in registration of the unit service itself in |
Zbigniew Jędrzejewski-Szmek | 1e19050 | 2014-02-17 22:01:28 -0500 | [diff] [blame] | 8080 | systemd-machined, instead of a newly opened scope unit. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8081 | |
| 8082 | * systemd-nspawn gained a new --network-interface= switch for |
| 8083 | moving arbitrary interfaces to the container. The new |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 8084 | --network-veth switch creates a virtual Ethernet connection |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8085 | between host and container. The new --network-bridge= |
| 8086 | switch then allows assigning the host side of this virtual |
| 8087 | Ethernet connection to a bridge device. |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8088 | |
Lennart Poettering | 6afc95b | 2014-02-18 23:35:19 +0100 | [diff] [blame] | 8089 | * systemd-nspawn gained a new --personality= switch for |
| 8090 | setting the kernel personality for the container. This is |
Jan Engelhardt | 70a44af | 2014-05-03 19:15:24 +0200 | [diff] [blame] | 8091 | useful when running a 32-bit container on a 64-bit host. A |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 8092 | similar option Personality= is now also available for service |
| 8093 | units to use. |
Lennart Poettering | 6afc95b | 2014-02-18 23:35:19 +0100 | [diff] [blame] | 8094 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8095 | * logind will now also track a "Desktop" identifier for each |
| 8096 | session which encodes the desktop environment of it. This is |
| 8097 | useful for desktop environments that want to identify |
| 8098 | multiple running sessions of itself easily. |
| 8099 | |
| 8100 | * A new SELinuxContext= setting for service units has been |
| 8101 | added that allows setting a specific SELinux execution |
| 8102 | context for a service. |
| 8103 | |
| 8104 | * Most systemd client tools will now honour $SYSTEMD_LESS for |
| 8105 | settings of the "less" pager. By default, these tools will |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8106 | override $LESS to allow certain operations to work, such as |
| 8107 | jump-to-the-end. With $SYSTEMD_LESS, it is possible to |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8108 | influence this logic. |
| 8109 | |
| 8110 | * systemd's "seccomp" hook-up has been changed to make use of |
| 8111 | the libseccomp library instead of using its own |
| 8112 | implementation. This has benefits for portability among |
| 8113 | other things. |
| 8114 | |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 8115 | * For usage together with SystemCallFilter=, a new |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8116 | SystemCallErrorNumber= setting has been introduced that |
Jan Engelhardt | b8bde11 | 2014-05-08 01:28:45 +0200 | [diff] [blame] | 8117 | allows configuration of a system error number to be returned |
| 8118 | on filtered system calls, instead of immediately killing the |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8119 | process. Also, SystemCallArchitectures= has been added to |
| 8120 | limit access to system calls of a particular architecture |
| 8121 | (in order to turn off support for unused secondary |
Jan Engelhardt | 4c2413b | 2014-02-18 03:13:08 +0100 | [diff] [blame] | 8122 | architectures). There is also a global |
Jason St. John | 8b7d049 | 2014-02-18 00:28:42 -0500 | [diff] [blame] | 8123 | SystemCallArchitectures= setting in system.conf now to turn |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8124 | off support for non-native system calls system-wide. |
| 8125 | |
Kay Sievers | 210054d | 2014-02-21 18:11:47 +0100 | [diff] [blame] | 8126 | * systemd requires a kernel with a working name_to_handle_at(), |
| 8127 | please see the kernel config requirements in the README file. |
| 8128 | |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8129 | Contributions from: Adam Williamson, Alex Jia, Anatol Pomozov, |
| 8130 | Ansgar Burchardt, AppleBloom, Auke Kok, Bastien Nocera, |
| 8131 | Chengwei Yang, Christian Seiler, Colin Guthrie, Colin Walters, |
| 8132 | Cristian Rodríguez, Daniel Buch, Daniele Medri, Daniel J |
| 8133 | Walsh, Daniel Mack, Dan McGee, Dave Reisner, David Coppa, |
| 8134 | David Herrmann, David Strauss, Djalal Harouni, Dmitry Pisklov, |
| 8135 | Elia Pinto, Florian Weimer, George McCollister, Goffredo |
| 8136 | Baroncelli, Greg Kroah-Hartman, Hendrik Brueckner, Igor |
| 8137 | Zhbanov, Jan Engelhardt, Jan Janssen, Jason A. Donenfeld, |
| 8138 | Jason St. John, Jasper St. Pierre, Jóhann B. Guðmundsson, Jose |
| 8139 | Ignacio Naranjo, Karel Zak, Kay Sievers, Kristian Høgsberg, |
| 8140 | Lennart Poettering, Lubomir Rintel, Lukas Nykryn, Lukasz |
| 8141 | Skalski, Łukasz Stelmach, Luke Shumaker, Mantas Mikulėnas, |
| 8142 | Marc-Antoine Perennou, Marcel Holtmann, Marcos Felipe Rasia de |
| 8143 | Mello, Marko Myllynen, Martin Pitt, Matthew Monaco, Michael |
| 8144 | Marineau, Michael Scherer, Michał Górny, Michal Sekletar, |
| 8145 | Michele Curti, Oleksii Shevchuk, Olivier Brunel, Patrik Flykt, |
| 8146 | Pavel Holica, Raudi, Richard Marko, Ronny Chevalier, Sébastien |
| 8147 | Luttringer, Sergey Ptashnick, Shawn Landden, Simon Peeters, |
| 8148 | Stefan Beller, Susant Sahani, Sylvain Plantefeve, Sylvia Else, |
| 8149 | Tero Roponen, Thomas Bächler, Thomas Hindoe Paaboel Andersen, |
| 8150 | Tom Gundersen, Umut Tezduyar Lindskog, Unai Uribarri, Václav |
| 8151 | Pavlín, Vincent Batts, WaLyong Cho, William Giokas, Yang |
| 8152 | Zhiyong, Yin Kangkai, Yuxuan Shui, Zbigniew Jędrzejewski-Szmek |
| 8153 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 8154 | — Berlin, 2014-02-20 |
Lennart Poettering | e49b5aa | 2014-02-18 02:51:39 +0100 | [diff] [blame] | 8155 | |
Lennart Poettering | cd4010b | 2013-10-02 03:02:25 +0200 | [diff] [blame] | 8156 | CHANGES WITH 208: |
| 8157 | |
| 8158 | * logind has gained support for facilitating privileged input |
| 8159 | and drm device access for unprivileged clients. This work is |
| 8160 | useful to allow Wayland display servers (and similar |
| 8161 | programs, such as kmscon) to run under the user's ID and |
| 8162 | access input and drm devices which are normally |
| 8163 | protected. When this is used (and the kernel is new enough) |
| 8164 | logind will "mute" IO on the file descriptors passed to |
| 8165 | Wayland as long as it is in the background and "unmute" it |
| 8166 | if it returns into the foreground. This allows secure |
| 8167 | session switching without allowing background sessions to |
| 8168 | eavesdrop on input and display data. This also introduces |
| 8169 | session switching support if VT support is turned off in the |
| 8170 | kernel, and on seats that are not seat0. |
| 8171 | |
| 8172 | * A new kernel command line option luks.options= is understood |
Ruben Kerkhof | 06b643e | 2014-08-30 17:13:16 +0200 | [diff] [blame] | 8173 | now which allows specifying LUKS options for usage for LUKS |
Lennart Poettering | cd4010b | 2013-10-02 03:02:25 +0200 | [diff] [blame] | 8174 | encrypted partitions specified with luks.uuid=. |
| 8175 | |
| 8176 | * tmpfiles.d(5) snippets may now use specifier expansion in |
| 8177 | path names. More specifically %m, %b, %H, %v, are now |
| 8178 | replaced by the local machine id, boot id, hostname, and |
| 8179 | kernel version number. |
| 8180 | |
| 8181 | * A new tmpfiles.d(5) command "m" has been introduced which |
| 8182 | may be used to change the owner/group/access mode of a file |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 8183 | or directory if it exists, but do nothing if it does not. |
Lennart Poettering | cd4010b | 2013-10-02 03:02:25 +0200 | [diff] [blame] | 8184 | |
| 8185 | * This release removes high-level support for the |
| 8186 | MemorySoftLimit= cgroup setting. The underlying kernel |
| 8187 | cgroup attribute memory.soft_limit= is currently badly |
| 8188 | designed and likely to be removed from the kernel API in its |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 8189 | current form, hence we should not expose it for now. |
Lennart Poettering | cd4010b | 2013-10-02 03:02:25 +0200 | [diff] [blame] | 8190 | |
| 8191 | * The memory.use_hierarchy cgroup attribute is now enabled for |
| 8192 | all cgroups systemd creates in the memory cgroup |
| 8193 | hierarchy. This option is likely to be come the built-in |
Torstein Husebø | cc98b30 | 2015-01-26 15:29:14 +0100 | [diff] [blame] | 8194 | default in the kernel anyway, and the non-hierarchical mode |
| 8195 | never made much sense in the intrinsically hierarchical |
Lennart Poettering | cd4010b | 2013-10-02 03:02:25 +0200 | [diff] [blame] | 8196 | cgroup system. |
| 8197 | |
| 8198 | * A new field _SYSTEMD_SLICE= is logged along with all journal |
| 8199 | messages containing the slice a message was generated |
| 8200 | from. This is useful to allow easy per-customer filtering of |
| 8201 | logs among other things. |
| 8202 | |
| 8203 | * systemd-journald will no longer adjust the group of journal |
| 8204 | files it creates to the "systemd-journal" group. Instead we |
| 8205 | rely on the journal directory to be owned by the |
| 8206 | "systemd-journal" group, and its setgid bit set, so that the |
| 8207 | kernel file system layer will automatically enforce that |
| 8208 | journal files inherit this group assignment. The reason for |
| 8209 | this change is that we cannot allow NSS look-ups from |
| 8210 | journald which would be necessary to resolve |
| 8211 | "systemd-journal" to a numeric GID, because this might |
| 8212 | create deadlocks if NSS involves synchronous queries to |
| 8213 | other daemons (such as nscd, or sssd) which in turn are |
| 8214 | logging clients of journald and might block on it, which |
| 8215 | would then dead lock. A tmpfiles.d(5) snippet included in |
| 8216 | systemd will make sure the setgid bit and group are |
| 8217 | properly set on the journal directory if it exists on every |
| 8218 | boot. However, we recommend adjusting it manually after |
| 8219 | upgrades too (or from RPM scriptlets), so that the change is |
| 8220 | not delayed until next reboot. |
| 8221 | |
| 8222 | * Backlight and random seed files in /var/lib/ have moved into |
| 8223 | the /var/lib/systemd/ directory, in order to centralize all |
| 8224 | systemd generated files in one directory. |
| 8225 | |
| 8226 | * Boot time performance measurements (as displayed by |
| 8227 | "systemd-analyze" for example) will now read ACPI 5.0 FPDT |
| 8228 | performance information if that's available to determine how |
| 8229 | much time BIOS and boot loader initialization required. With |
| 8230 | a sufficiently new BIOS you hence no longer need to boot |
| 8231 | with Gummiboot to get access to such information. |
| 8232 | |
| 8233 | Contributions from: Andrey Borzenkov, Chen Jie, Colin Walters, |
| 8234 | Cristian Rodríguez, Dave Reisner, David Herrmann, David |
| 8235 | Mackey, David Strauss, Eelco Dolstra, Evan Callicoat, Gao |
| 8236 | feng, Harald Hoyer, Jimmie Tauriainen, Kay Sievers, Lennart |
| 8237 | Poettering, Lukas Nykryn, Mantas Mikulėnas, Martin Pitt, |
| 8238 | Michael Scherer, Michał Górny, Mike Gilbert, Patrick McCarty, |
| 8239 | Sebastian Ott, Tom Gundersen, Zbigniew Jędrzejewski-Szmek |
| 8240 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 8241 | — Berlin, 2013-10-02 |
Lennart Poettering | cd4010b | 2013-10-02 03:02:25 +0200 | [diff] [blame] | 8242 | |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8243 | CHANGES WITH 207: |
Lennart Poettering | 408f281 | 2013-07-22 00:16:17 +0200 | [diff] [blame] | 8244 | |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8245 | * The Restart= option for services now understands a new |
Kay Sievers | f3a165b | 2013-09-13 02:24:57 +0200 | [diff] [blame] | 8246 | on-watchdog setting, which will restart the service |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8247 | automatically if the service stops sending out watchdog keep |
| 8248 | alive messages (as configured with WatchdogSec=). |
| 8249 | |
| 8250 | * The getty generator (which is responsible for bringing up a |
| 8251 | getty on configured serial consoles) will no longer only |
| 8252 | start a getty on the primary kernel console but on all |
| 8253 | others, too. This makes the order in which console= is |
| 8254 | specified on the kernel command line less important. |
| 8255 | |
| 8256 | * libsystemd-logind gained a new sd_session_get_vt() call to |
| 8257 | retrieve the VT number of a session. |
| 8258 | |
| 8259 | * If the option "tries=0" is set for an entry of /etc/crypttab |
| 8260 | its passphrase is queried indefinitely instead of any |
| 8261 | maximum number of tries. |
| 8262 | |
| 8263 | * If a service with a configure PID file terminates its PID |
| 8264 | file will now be removed automatically if it still exists |
| 8265 | afterwards. This should put an end to stale PID files. |
| 8266 | |
| 8267 | * systemd-run will now also take relative binary path names |
| 8268 | for execution and no longer insists on absolute paths. |
| 8269 | |
| 8270 | * InaccessibleDirectories= and ReadOnlyDirectories= now take |
| 8271 | paths that are optionally prefixed with "-" to indicate that |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 8272 | it should not be considered a failure if they do not exist. |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8273 | |
Kay Sievers | f3a165b | 2013-09-13 02:24:57 +0200 | [diff] [blame] | 8274 | * journalctl -o (and similar commands) now understands a new |
| 8275 | output mode "short-precise", it is similar to "short" but |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8276 | shows timestamps with usec accuracy. |
| 8277 | |
| 8278 | * The option "discard" (as known from Debian) is now |
| 8279 | synonymous to "allow-discards" in /etc/crypttab. In fact, |
Lennart Poettering | 387abf8 | 2013-09-17 13:57:04 -0500 | [diff] [blame] | 8280 | "discard" is preferred now (since it is easier to remember |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8281 | and type). |
| 8282 | |
Kay Sievers | f3a165b | 2013-09-13 02:24:57 +0200 | [diff] [blame] | 8283 | * Some licensing clean-ups were made, so that more code is now |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8284 | LGPL-2.1 licensed than before. |
| 8285 | |
| 8286 | * A minimal tool to save/restore the display backlight |
| 8287 | brightness across reboots has been added. It will store the |
Kay Sievers | f3a165b | 2013-09-13 02:24:57 +0200 | [diff] [blame] | 8288 | backlight setting as late as possible at shutdown, and |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8289 | restore it as early as possible during reboot. |
| 8290 | |
| 8291 | * A logic to automatically discover and enable home and swap |
| 8292 | partitions on GPT disks has been added. With this in place |
| 8293 | /etc/fstab becomes optional for many setups as systemd can |
| 8294 | discover certain partitions located on the root disk |
| 8295 | automatically. Home partitions are recognized under their |
| 8296 | GPT type ID 933ac7e12eb44f13b8440e14e2aef915. Swap |
| 8297 | partitions are recognized under their GPT type ID |
| 8298 | 0657fd6da4ab43c484e50933c84b4f4f. |
| 8299 | |
| 8300 | * systemd will no longer pass any environment from the kernel |
| 8301 | or initrd to system services. If you want to set an |
| 8302 | environment for all services, do so via the kernel command |
| 8303 | line systemd.setenv= assignment. |
| 8304 | |
Lennart Poettering | 387abf8 | 2013-09-17 13:57:04 -0500 | [diff] [blame] | 8305 | * The systemd-sysctl tool no longer natively reads the file |
| 8306 | /etc/sysctl.conf. If desired, the file should be symlinked |
| 8307 | from /etc/sysctl.d/99-sysctl.conf. Apart from providing |
| 8308 | legacy support by a symlink rather than built-in code, it |
| 8309 | also makes the otherwise hidden order of application of the |
| 8310 | different files visible. (Note that this partly reverts to a |
| 8311 | pre-198 application order of sysctl knobs!) |
Kay Sievers | 04bf3c1 | 2013-08-15 18:35:03 +0200 | [diff] [blame] | 8312 | |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8313 | * The "systemctl set-log-level" and "systemctl dump" commands |
| 8314 | have been moved to systemd-analyze. |
| 8315 | |
| 8316 | * systemd-run learned the new --remain-after-exit switch, |
| 8317 | which causes the scope unit not to be cleaned up |
| 8318 | automatically after the process terminated. |
| 8319 | |
| 8320 | * tmpfiles learned a new --exclude-prefix= switch to exclude |
| 8321 | certain paths from operation. |
| 8322 | |
| 8323 | * journald will now automatically flush all messages to disk |
Zbigniew Jędrzejewski-Szmek | f47ad59 | 2014-11-01 14:33:01 -0400 | [diff] [blame] | 8324 | as soon as a message at the log level CRIT, ALERT or EMERG |
| 8325 | is received. |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8326 | |
| 8327 | Contributions from: Andrew Cook, Brandon Philips, Christian |
| 8328 | Hesse, Christoph Junghans, Colin Walters, Daniel Schaal, |
| 8329 | Daniel Wallace, Dave Reisner, David Herrmann, Gao feng, George |
| 8330 | McCollister, Giovanni Campagna, Hannes Reinecke, Harald Hoyer, |
| 8331 | Herczeg Zsolt, Holger Hans Peter Freyther, Jan Engelhardt, |
| 8332 | Jesper Larsen, Kay Sievers, Khem Raj, Lennart Poettering, |
| 8333 | Lukas Nykryn, Maciej Wereski, Mantas Mikulėnas, Marcel |
| 8334 | Holtmann, Martin Pitt, Michael Biebl, Michael Marineau, |
| 8335 | Michael Scherer, Michael Stapelberg, Michal Sekletar, Michał |
| 8336 | Górny, Olivier Brunel, Ondrej Balaz, Ronny Chevalier, Shawn |
| 8337 | Landden, Steven Hiscocks, Thomas Bächler, Thomas Hindoe |
| 8338 | Paaboel Andersen, Tom Gundersen, Umut Tezduyar, WANG Chao, |
| 8339 | William Giokas, Zbigniew Jędrzejewski-Szmek |
| 8340 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 8341 | — Berlin, 2013-09-13 |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8342 | |
Kay Sievers | 04bf3c1 | 2013-08-15 18:35:03 +0200 | [diff] [blame] | 8343 | CHANGES WITH 206: |
| 8344 | |
Lennart Poettering | 408f281 | 2013-07-22 00:16:17 +0200 | [diff] [blame] | 8345 | * The documentation has been updated to cover the various new |
| 8346 | concepts introduced with 205. |
| 8347 | |
| 8348 | * Unit files now understand the new %v specifier which |
| 8349 | resolves to the kernel version string as returned by "uname |
| 8350 | -r". |
| 8351 | |
| 8352 | * systemctl now supports filtering the unit list output by |
| 8353 | load state, active state and sub state, using the new |
Maciej Wereski | 33b521b | 2013-07-22 11:02:50 +0200 | [diff] [blame] | 8354 | --state= parameter. |
Lennart Poettering | 408f281 | 2013-07-22 00:16:17 +0200 | [diff] [blame] | 8355 | |
| 8356 | * "systemctl status" will now show the results of the |
| 8357 | condition checks (like ConditionPathExists= and similar) of |
| 8358 | the last start attempts of the unit. They are also logged to |
| 8359 | the journal. |
| 8360 | |
| 8361 | * "journalctl -b" may now be used to look for boot output of a |
| 8362 | specific boot. Try "journalctl -b -1" for the previous boot, |
| 8363 | but the syntax is substantially more powerful. |
| 8364 | |
| 8365 | * "journalctl --show-cursor" has been added which prints the |
| 8366 | cursor string the last shown log line. This may then be used |
| 8367 | with the new "journalctl --after-cursor=" switch to continue |
| 8368 | browsing logs from that point on. |
| 8369 | |
| 8370 | * "journalctl --force" may now be used to force regeneration |
| 8371 | of an FSS key. |
| 8372 | |
Lennart Poettering | 251cc81 | 2013-07-23 01:32:36 +0200 | [diff] [blame] | 8373 | * Creation of "dead" device nodes has been moved from udev |
| 8374 | into kmod and tmpfiles. Previously, udev would read the kmod |
| 8375 | databases to pre-generate dead device nodes based on meta |
| 8376 | information contained in kernel modules, so that these would |
| 8377 | be auto-loaded on access rather then at boot. As this |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 8378 | does not really have much to do with the exposing actual |
Lennart Poettering | 251cc81 | 2013-07-23 01:32:36 +0200 | [diff] [blame] | 8379 | kernel devices to userspace this has always been slightly |
| 8380 | alien in the udev codebase. Following the new scheme kmod |
| 8381 | will now generate a runtime snippet for tmpfiles from the |
| 8382 | module meta information and it now is tmpfiles' job to the |
| 8383 | create the nodes. This also allows overriding access and |
| 8384 | other parameters for the nodes using the usual tmpfiles |
| 8385 | facilities. As side effect this allows us to remove the |
| 8386 | CAP_SYS_MKNOD capability bit from udevd entirely. |
| 8387 | |
| 8388 | * logind's device ACLs may now be applied to these "dead" |
| 8389 | devices nodes too, thus finally allowing managed access to |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 8390 | devices such as /dev/snd/sequencer without loading the |
Lennart Poettering | 251cc81 | 2013-07-23 01:32:36 +0200 | [diff] [blame] | 8391 | backing module right-away. |
Lennart Poettering | 408f281 | 2013-07-22 00:16:17 +0200 | [diff] [blame] | 8392 | |
| 8393 | * A new RPM macro has been added that may be used to apply |
| 8394 | tmpfiles configuration during package installation. |
| 8395 | |
| 8396 | * systemd-detect-virt and ConditionVirtualization= now can |
| 8397 | detect User-Mode-Linux machines (UML). |
| 8398 | |
Lennart Poettering | 251cc81 | 2013-07-23 01:32:36 +0200 | [diff] [blame] | 8399 | * journald will now implicitly log the effective capabilities |
| 8400 | set of processes in the message metadata. |
Lennart Poettering | 408f281 | 2013-07-22 00:16:17 +0200 | [diff] [blame] | 8401 | |
| 8402 | * systemd-cryptsetup has gained support for TrueCrypt volumes. |
| 8403 | |
| 8404 | * The initrd interface has been simplified (more specifically, |
| 8405 | support for passing performance data via environment |
| 8406 | variables and fsck results via files in /run has been |
| 8407 | removed). These features were non-essential, and are |
| 8408 | nowadays available in a much nicer way by having systemd in |
| 8409 | the initrd serialize its state and have the hosts systemd |
| 8410 | deserialize it again. |
| 8411 | |
Kay Sievers | 28f5c77 | 2013-07-22 20:17:26 +0200 | [diff] [blame] | 8412 | * The udev "keymap" data files and tools to apply keyboard |
| 8413 | specific mappings of scan to key codes, and force-release |
| 8414 | scan code lists have been entirely replaced by a udev |
| 8415 | "keyboard" builtin and a hwdb data file. |
Lennart Poettering | 408f281 | 2013-07-22 00:16:17 +0200 | [diff] [blame] | 8416 | |
Lennart Poettering | 251cc81 | 2013-07-23 01:32:36 +0200 | [diff] [blame] | 8417 | * systemd will now honour the kernel's "quiet" command line |
| 8418 | argument also during late shutdown, resulting in a |
| 8419 | completely silent shutdown when used. |
| 8420 | |
| 8421 | * There's now an option to control the SO_REUSEPORT socket |
| 8422 | option in .socket units. |
| 8423 | |
| 8424 | * Instance units will now automatically get a per-template |
| 8425 | subslice of system.slice unless something else is explicitly |
| 8426 | configured. For example, instances of sshd@.service will now |
| 8427 | implicitly be placed in system-sshd.slice rather than |
| 8428 | system.slice as before. |
| 8429 | |
| 8430 | * Test coverage support may now be enabled at build time. |
| 8431 | |
| 8432 | Contributions from: Dave Reisner, Frederic Crozat, Harald |
| 8433 | Hoyer, Holger Hans Peter Freyther, Jan Engelhardt, Jan |
| 8434 | Janssen, Jason St. John, Jesper Larsen, Kay Sievers, Lennart |
| 8435 | Poettering, Lukas Nykryn, Maciej Wereski, Martin Pitt, Michael |
| 8436 | Olbrich, Ramkumar Ramachandra, Ross Lagerwall, Shawn Landden, |
| 8437 | Thomas H.P. Andersen, Tom Gundersen, Tomasz Torcz, William |
| 8438 | Giokas, Zbigniew Jędrzejewski-Szmek |
| 8439 | |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 8440 | — Berlin, 2013-07-23 |
Lennart Poettering | 4f0be68 | 2013-09-13 02:11:19 +0200 | [diff] [blame] | 8441 | |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8442 | CHANGES WITH 205: |
| 8443 | |
| 8444 | * Two new unit types have been introduced: |
| 8445 | |
| 8446 | Scope units are very similar to service units, however, are |
Zbigniew Jędrzejewski-Szmek | ccddd10 | 2016-04-21 22:57:06 -0400 | [diff] [blame] | 8447 | created out of pre-existing processes — instead of PID 1 |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8448 | forking off the processes. By using scope units it is |
| 8449 | possible for system services and applications to group their |
| 8450 | own child processes (worker processes) in a powerful way |
| 8451 | which then maybe used to organize them, or kill them |
| 8452 | together, or apply resource limits on them. |
| 8453 | |
| 8454 | Slice units may be used to partition system resources in an |
Torstein Husebø | cc98b30 | 2015-01-26 15:29:14 +0100 | [diff] [blame] | 8455 | hierarchical fashion and then assign other units to them. By |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8456 | default there are now three slices: system.slice (for all |
| 8457 | system services), user.slice (for all user sessions), |
| 8458 | machine.slice (for VMs and containers). |
| 8459 | |
| 8460 | Slices and scopes have been introduced primarily in |
| 8461 | context of the work to move cgroup handling to a |
| 8462 | single-writer scheme, where only PID 1 |
| 8463 | creates/removes/manages cgroups. |
| 8464 | |
| 8465 | * There's a new concept of "transient" units. In contrast to |
| 8466 | normal units these units are created via an API at runtime, |
| 8467 | not from configuration from disk. More specifically this |
| 8468 | means it is now possible to run arbitrary programs as |
| 8469 | independent services, with all execution parameters passed |
| 8470 | in via bus APIs rather than read from disk. Transient units |
| 8471 | make systemd substantially more dynamic then it ever was, |
| 8472 | and useful as a general batch manager. |
| 8473 | |
| 8474 | * logind has been updated to make use of scope and slice units |
| 8475 | for managing user sessions. As a user logs in he will get |
| 8476 | his own private slice unit, to which all sessions are added |
| 8477 | as scope units. We also added support for automatically |
| 8478 | adding an instance of user@.service for the user into the |
| 8479 | slice. Effectively logind will no longer create cgroup |
| 8480 | hierarchies on its own now, it will defer entirely to PID 1 |
| 8481 | for this by means of scope, service and slice units. Since |
| 8482 | user sessions this way become entities managed by PID 1 |
| 8483 | the output of "systemctl" is now a lot more comprehensive. |
| 8484 | |
| 8485 | * A new mini-daemon "systemd-machined" has been added which |
| 8486 | may be used by virtualization managers to register local |
| 8487 | VMs/containers. nspawn has been updated accordingly, and |
| 8488 | libvirt will be updated shortly. machined will collect a bit |
| 8489 | of meta information about the VMs/containers, and assign |
| 8490 | them their own scope unit (see above). The collected |
| 8491 | meta-data is then made available via the "machinectl" tool, |
| 8492 | and exposed in "ps" and similar tools. machined/machinectl |
| 8493 | is compile-time optional. |
| 8494 | |
| 8495 | * As discussed earlier, the low-level cgroup configuration |
| 8496 | options ControlGroup=, ControlGroupModify=, |
| 8497 | ControlGroupPersistent=, ControlGroupAttribute= have been |
| 8498 | removed. Please use high-level attribute settings instead as |
| 8499 | well as slice units. |
| 8500 | |
| 8501 | * A new bus call SetUnitProperties() has been added to alter |
| 8502 | various runtime parameters of a unit. This is primarily |
| 8503 | useful to alter cgroup parameters dynamically in a nice way, |
| 8504 | but will be extended later on to make more properties |
| 8505 | modifiable at runtime. systemctl gained a new set-properties |
| 8506 | command that wraps this call. |
| 8507 | |
| 8508 | * A new tool "systemd-run" has been added which can be used to |
| 8509 | run arbitrary command lines as transient services or scopes, |
| 8510 | while configuring a number of settings via the command |
| 8511 | line. This tool is currently very basic, however already |
| 8512 | very useful. We plan to extend this tool to even allow |
| 8513 | queuing of execution jobs with time triggers from the |
| 8514 | command line, similar in fashion to "at". |
| 8515 | |
| 8516 | * nspawn will now inform the user explicitly that kernels with |
| 8517 | audit enabled break containers, and suggest the user to turn |
| 8518 | off audit. |
| 8519 | |
| 8520 | * Support for detecting the IMA and AppArmor security |
| 8521 | frameworks with ConditionSecurity= has been added. |
| 8522 | |
| 8523 | * journalctl gained a new "-k" switch for showing only kernel |
Zbigniew Jędrzejewski-Szmek | 1fda0ab | 2013-07-03 11:20:17 -0400 | [diff] [blame] | 8524 | messages, mimicking dmesg output; in addition to "--user" |
| 8525 | and "--system" switches for showing only user's own logs |
| 8526 | and system logs. |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8527 | |
| 8528 | * systemd-delta can now show information about drop-in |
| 8529 | snippets extending unit files. |
| 8530 | |
| 8531 | * libsystemd-bus has been substantially updated but is still |
| 8532 | not available as public API. |
| 8533 | |
| 8534 | * systemd will now look for the "debug" argument on the kernel |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 8535 | command line and enable debug logging, similar to what |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8536 | "systemd.log_level=debug" already did before. |
| 8537 | |
| 8538 | * "systemctl set-default", "systemctl get-default" has been |
| 8539 | added to configure the default.target symlink, which |
| 8540 | controls what to boot into by default. |
| 8541 | |
Zbigniew Jędrzejewski-Szmek | 1fda0ab | 2013-07-03 11:20:17 -0400 | [diff] [blame] | 8542 | * "systemctl set-log-level" has been added as a convenient |
| 8543 | way to raise and lower systemd logging threshold. |
| 8544 | |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8545 | * "systemd-analyze plot" will now show the time the various |
| 8546 | generators needed for execution, as well as information |
| 8547 | about the unit file loading. |
| 8548 | |
Lennart Poettering | 00aa832 | 2013-07-03 16:33:53 +0200 | [diff] [blame] | 8549 | * libsystemd-journal gained a new sd_journal_open_files() call |
| 8550 | for opening specific journal files. journactl also gained a |
| 8551 | new switch to expose this new functionality. Previously we |
| 8552 | only supported opening all files from a directory, or all |
| 8553 | files from the system, as opening individual files only is |
| 8554 | racy due to journal file rotation. |
| 8555 | |
| 8556 | * systemd gained the new DefaultEnvironment= setting in |
| 8557 | /etc/systemd/system.conf to set environment variables for |
| 8558 | all services. |
| 8559 | |
| 8560 | * If a privileged process logs a journal message with the |
| 8561 | OBJECT_PID= field set, then journald will automatically |
| 8562 | augment this with additional OBJECT_UID=, OBJECT_GID=, |
| 8563 | OBJECT_COMM=, OBJECT_EXE=, ... fields. This is useful if |
| 8564 | system services want to log events about specific client |
| 8565 | processes. journactl/systemctl has been updated to make use |
| 8566 | of this information if all log messages regarding a specific |
| 8567 | unit is requested. |
| 8568 | |
| 8569 | Contributions from: Auke Kok, Chengwei Yang, Colin Walters, |
| 8570 | Cristian Rodríguez, Daniel Albers, Daniel Wallace, Dave |
| 8571 | Reisner, David Coppa, David King, David Strauss, Eelco |
| 8572 | Dolstra, Gabriel de Perthuis, Harald Hoyer, Jan Alexander |
| 8573 | Steffens, Jan Engelhardt, Jan Janssen, Jason St. John, Johan |
| 8574 | Heikkilä, Karel Zak, Karol Lewandowski, Kay Sievers, Lennart |
| 8575 | Poettering, Lukas Nykryn, Mantas Mikulėnas, Marius Vollmer, |
| 8576 | Martin Pitt, Michael Biebl, Michael Olbrich, Michael Tremer, |
| 8577 | Michal Schmidt, Michał Bartoszkiewicz, Nirbheek Chauhan, |
| 8578 | Pierre Neidhardt, Ross Burton, Ross Lagerwall, Sean McGovern, |
| 8579 | Thomas Hindoe Paaboel Andersen, Tom Gundersen, Umut Tezduyar, |
| 8580 | Václav Pavlín, Zachary Cook, Zbigniew Jędrzejewski-Szmek, |
| 8581 | Łukasz Stelmach, 장동준 |
| 8582 | |
Lennart Poettering | 606c24e | 2013-05-09 15:45:50 +0200 | [diff] [blame] | 8583 | CHANGES WITH 204: |
| 8584 | |
| 8585 | * The Python bindings gained some minimal support for the APIs |
| 8586 | exposed by libsystemd-logind. |
| 8587 | |
| 8588 | * ConditionSecurity= gained support for detecting SMACK. Since |
| 8589 | this condition already supports SELinux and AppArmor we only |
| 8590 | miss IMA for this. Patches welcome! |
| 8591 | |
| 8592 | Contributions from: Karol Lewandowski, Lennart Poettering, |
| 8593 | Zbigniew Jędrzejewski-Szmek |
| 8594 | |
Lennart Poettering | 2f3fcf8 | 2013-05-06 23:43:59 +0200 | [diff] [blame] | 8595 | CHANGES WITH 203: |
| 8596 | |
| 8597 | * systemd-nspawn will now create /etc/resolv.conf if |
| 8598 | necessary, before bind-mounting the host's file onto it. |
| 8599 | |
| 8600 | * systemd-nspawn will now store meta information about a |
| 8601 | container on the container's cgroup as extended attribute |
| 8602 | fields, including the root directory. |
| 8603 | |
| 8604 | * The cgroup hierarchy has been reworked in many ways. All |
| 8605 | objects any of the components systemd creates in the cgroup |
Lennart Poettering | b82eed9 | 2013-05-06 23:59:14 +0200 | [diff] [blame] | 8606 | tree are now suffixed. More specifically, user sessions are |
Lennart Poettering | 2f3fcf8 | 2013-05-06 23:43:59 +0200 | [diff] [blame] | 8607 | now placed in cgroups suffixed with ".session", users in |
| 8608 | cgroups suffixed with ".user", and nspawn containers in |
| 8609 | cgroups suffixed with ".nspawn". Furthermore, all cgroup |
| 8610 | names are now escaped in a simple scheme to avoid collision |
| 8611 | of userspace object names with kernel filenames. This work |
| 8612 | is preparation for making these objects relocatable in the |
| 8613 | cgroup tree, in order to allow easy resource partitioning of |
| 8614 | these objects without causing naming conflicts. |
| 8615 | |
| 8616 | * systemctl list-dependencies gained the new switches |
| 8617 | --plain, --reverse, --after and --before. |
| 8618 | |
| 8619 | * systemd-inhibit now shows the process name of processes that |
| 8620 | have taken an inhibitor lock. |
| 8621 | |
| 8622 | * nss-myhostname will now also resolve "localhost" |
| 8623 | implicitly. This makes /etc/hosts an optional file and |
| 8624 | nicely handles that on IPv6 ::1 maps to both "localhost" and |
| 8625 | the local hostname. |
| 8626 | |
| 8627 | * libsystemd-logind.so gained a new call |
| 8628 | sd_get_machine_names() to enumerate running containers and |
| 8629 | VMs (currently only supported by very new libvirt and |
| 8630 | nspawn). sd_login_monitor can now be used to watch |
| 8631 | VMs/containers coming and going. |
| 8632 | |
| 8633 | * .include is not allowed recursively anymore, and only in |
| 8634 | unit files. Usually it is better to use drop-in snippets in |
| 8635 | .d/*.conf anyway, as introduced with systemd 198. |
| 8636 | |
| 8637 | * systemd-analyze gained a new "critical-chain" command that |
| 8638 | determines the slowest chain of units run during system |
| 8639 | boot-up. It is very useful for tracking down where |
| 8640 | optimizing boot time is the most beneficial. |
| 8641 | |
| 8642 | * systemd will no longer allow manipulating service paths in |
| 8643 | the name=systemd:/system cgroup tree using ControlGroup= in |
| 8644 | units. (But is still fine with it in all other dirs.) |
| 8645 | |
| 8646 | * There's a new systemd-nspawn@.service service file that may |
| 8647 | be used to easily run nspawn containers as system |
| 8648 | services. With the container's root directory in |
| 8649 | /var/lib/container/foobar it is now sufficient to run |
| 8650 | "systemctl start systemd-nspawn@foobar.service" to boot it. |
| 8651 | |
| 8652 | * systemd-cgls gained a new parameter "--machine" to list only |
| 8653 | the processes within a certain container. |
| 8654 | |
| 8655 | * ConditionSecurity= now can check for "apparmor". We still |
| 8656 | are lacking checks for SMACK and IMA for this condition |
| 8657 | check though. Patches welcome! |
| 8658 | |
| 8659 | * A new configuration file /etc/systemd/sleep.conf has been |
| 8660 | added that may be used to configure which kernel operation |
| 8661 | systemd is supposed to execute when "suspend", "hibernate" |
| 8662 | or "hybrid-sleep" is requested. This makes the new kernel |
| 8663 | "freeze" state accessible to the user. |
| 8664 | |
| 8665 | * ENV{SYSTEMD_WANTS} in udev rules will now implicitly escape |
| 8666 | the passed argument if applicable. |
| 8667 | |
| 8668 | Contributions from: Auke Kok, Colin Guthrie, Colin Walters, |
| 8669 | Cristian Rodríguez, Daniel Buch, Daniel Wallace, Dave Reisner, |
| 8670 | Evangelos Foutras, Greg Kroah-Hartman, Harald Hoyer, Josh |
| 8671 | Triplett, Kay Sievers, Lennart Poettering, Lukas Nykryn, |
| 8672 | MUNEDA Takahiro, Mantas Mikulėnas, Mirco Tischler, Nathaniel |
| 8673 | Chen, Nirbheek Chauhan, Ronny Chevalier, Ross Lagerwall, Tom |
| 8674 | Gundersen, Umut Tezduyar, Ville Skyttä, Zbigniew |
| 8675 | Jędrzejewski-Szmek |
| 8676 | |
Lennart Poettering | ef3b524 | 2013-04-19 00:41:24 +0200 | [diff] [blame] | 8677 | CHANGES WITH 202: |
| 8678 | |
| 8679 | * The output of 'systemctl list-jobs' got some polishing. The |
| 8680 | '--type=' argument may now be passed more than once. A new |
| 8681 | command 'systemctl list-sockets' has been added which shows |
| 8682 | a list of kernel sockets systemd is listening on with the |
| 8683 | socket units they belong to, plus the units these socket |
| 8684 | units activate. |
| 8685 | |
| 8686 | * The experimental libsystemd-bus library got substantial |
| 8687 | updates to work in conjunction with the (also experimental) |
| 8688 | kdbus kernel project. It works well enough to exchange |
| 8689 | messages with some sophistication. Note that kdbus is not |
| 8690 | ready yet, and the library is mostly an elaborate test case |
| 8691 | for now, and not installable. |
| 8692 | |
| 8693 | * systemd gained a new unit 'systemd-static-nodes.service' |
| 8694 | that generates static device nodes earlier during boot, and |
| 8695 | can run in conjunction with udev. |
| 8696 | |
| 8697 | * libsystemd-login gained a new call sd_pid_get_user_unit() |
| 8698 | to retrieve the user systemd unit a process is running |
| 8699 | in. This is useful for systems where systemd is used as |
| 8700 | session manager. |
| 8701 | |
| 8702 | * systemd-nspawn now places all containers in the new /machine |
| 8703 | top-level cgroup directory in the name=systemd |
| 8704 | hierarchy. libvirt will soon do the same, so that we get a |
| 8705 | uniform separation of /system, /user and /machine for system |
| 8706 | services, user processes and containers/virtual |
| 8707 | machines. This new cgroup hierarchy is also useful to stick |
| 8708 | stable names to specific container instances, which can be |
Lennart Poettering | 7c04ad2 | 2013-04-19 01:11:38 +0200 | [diff] [blame] | 8709 | recognized later this way (this name may be controlled |
Lennart Poettering | ef3b524 | 2013-04-19 00:41:24 +0200 | [diff] [blame] | 8710 | via systemd-nspawn's new -M switch). libsystemd-login also |
| 8711 | gained a new call sd_pid_get_machine_name() to retrieve the |
| 8712 | name of the container/VM a specific process belongs to. |
| 8713 | |
| 8714 | * bootchart can now store its data in the journal. |
| 8715 | |
| 8716 | * libsystemd-journal gained a new call |
| 8717 | sd_journal_add_conjunction() for AND expressions to the |
| 8718 | matching logic. This can be used to express more complex |
| 8719 | logical expressions. |
| 8720 | |
| 8721 | * journactl can now take multiple --unit= and --user-unit= |
| 8722 | switches. |
| 8723 | |
| 8724 | * The cryptsetup logic now understands the "luks.key=" kernel |
| 8725 | command line switch for specifying a file to read the |
Lennart Poettering | 7c04ad2 | 2013-04-19 01:11:38 +0200 | [diff] [blame] | 8726 | decryption key from. Also, if a configured key file is not |
Lennart Poettering | ef3b524 | 2013-04-19 00:41:24 +0200 | [diff] [blame] | 8727 | found the tool will now automatically fall back to prompting |
| 8728 | the user. |
| 8729 | |
Zbigniew Jędrzejewski-Szmek | cbeabcf | 2013-04-18 19:59:12 -0400 | [diff] [blame] | 8730 | * Python systemd.journal module was updated to wrap recently |
| 8731 | added functions from libsystemd-journal. The interface was |
| 8732 | changed to bring the low level interface in s.j._Reader |
| 8733 | closer to the C API, and the high level interface in |
| 8734 | s.j.Reader was updated to wrap and convert all data about |
| 8735 | an entry. |
| 8736 | |
Lennart Poettering | ef3b524 | 2013-04-19 00:41:24 +0200 | [diff] [blame] | 8737 | Contributions from: Anatol Pomozov, Auke Kok, Harald Hoyer, |
| 8738 | Henrik Grindal Bakken, Josh Triplett, Kay Sievers, Lennart |
| 8739 | Poettering, Lukas Nykryn, Mantas Mikulėnas Marius Vollmer, |
| 8740 | Martin Jansa, Martin Pitt, Michael Biebl, Michal Schmidt, |
| 8741 | Mirco Tischler, Pali Rohar, Simon Peeters, Steven Hiscocks, |
| 8742 | Tom Gundersen, Zbigniew Jędrzejewski-Szmek |
| 8743 | |
Lennart Poettering | d3a8698 | 2013-04-08 22:24:19 +0200 | [diff] [blame] | 8744 | CHANGES WITH 201: |
| 8745 | |
| 8746 | * journalctl --update-catalog now understands a new --root= |
| 8747 | option to operate on catalogs found in a different root |
| 8748 | directory. |
| 8749 | |
| 8750 | * During shutdown after systemd has terminated all running |
| 8751 | services a final killing loop kills all remaining left-over |
| 8752 | processes. We will now print the name of these processes |
| 8753 | when we send SIGKILL to them, since this usually indicates a |
| 8754 | problem. |
| 8755 | |
| 8756 | * If /etc/crypttab refers to password files stored on |
| 8757 | configured mount points automatic dependencies will now be |
| 8758 | generated to ensure the specific mount is established first |
| 8759 | before the key file is attempted to be read. |
| 8760 | |
| 8761 | * 'systemctl status' will now show information about the |
| 8762 | network sockets a socket unit is listening on. |
| 8763 | |
| 8764 | * 'systemctl status' will also shown information about any |
| 8765 | drop-in configuration file for units. (Drop-In configuration |
| 8766 | files in this context are files such as |
| 8767 | /etc/systemd/systemd/foobar.service.d/*.conf) |
| 8768 | |
| 8769 | * systemd-cgtop now optionally shows summed up CPU times of |
| 8770 | cgroups. Press '%' while running cgtop to switch between |
| 8771 | percentage and absolute mode. This is useful to determine |
| 8772 | which cgroups use up the most CPU time over the entire |
| 8773 | runtime of the system. systemd-cgtop has also been updated |
| 8774 | to be 'pipeable' for processing with further shell tools. |
| 8775 | |
| 8776 | * 'hostnamectl set-hostname' will now allow setting of FQDN |
| 8777 | hostnames. |
| 8778 | |
| 8779 | * The formatting and parsing of time span values has been |
| 8780 | changed. The parser now understands fractional expressions |
| 8781 | such as "5.5h". The formatter will now output fractional |
| 8782 | expressions for all time spans under 1min, i.e. "5.123456s" |
| 8783 | rather than "5s 123ms 456us". For time spans under 1s |
| 8784 | millisecond values are shown, for those under 1ms |
| 8785 | microsecond values are shown. This should greatly improve |
| 8786 | all time-related output of systemd. |
| 8787 | |
| 8788 | * libsystemd-login and libsystemd-journal gained new |
| 8789 | functions for querying the poll() events mask and poll() |
| 8790 | timeout value for integration into arbitrary event |
| 8791 | loops. |
| 8792 | |
| 8793 | * localectl gained the ability to list available X11 keymaps |
| 8794 | (models, layouts, variants, options). |
| 8795 | |
| 8796 | * 'systemd-analyze dot' gained the ability to filter for |
| 8797 | specific units via shell-style globs, to create smaller, |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 8798 | more useful graphs. I.e. it is now possible to create simple |
Lennart Poettering | d3a8698 | 2013-04-08 22:24:19 +0200 | [diff] [blame] | 8799 | graphs of all the dependencies between only target units, or |
| 8800 | of all units that Avahi has dependencies with. |
| 8801 | |
| 8802 | Contributions from: Cristian Rodríguez, Dr. Tilmann Bubeck, |
| 8803 | Harald Hoyer, Holger Hans Peter Freyther, Kay Sievers, Kelly |
| 8804 | Anderson, Koen Kooi, Lennart Poettering, Maksim Melnikau, |
| 8805 | Marc-Antoine Perennou, Marius Vollmer, Martin Pitt, Michal |
| 8806 | Schmidt, Oleksii Shevchuk, Ronny Chevalier, Simon McVittie, |
| 8807 | Steven Hiscocks, Thomas Weißschuh, Umut Tezduyar, Václav |
| 8808 | Pavlín, Zbigniew Jędrzejewski-Szmek, Łukasz Stelmach |
| 8809 | |
Lennart Poettering | 9ca3c17 | 2013-03-28 21:31:55 +0100 | [diff] [blame] | 8810 | CHANGES WITH 200: |
| 8811 | |
| 8812 | * The boot-time readahead implementation for rotating media |
| 8813 | will now read the read-ahead data in multiple passes which |
| 8814 | consist of all read requests made in equidistant time |
| 8815 | intervals. This means instead of strictly reading read-ahead |
| 8816 | data in its physical order on disk we now try to find a |
| 8817 | middle ground between physical and access time order. |
| 8818 | |
| 8819 | * /etc/os-release files gained a new BUILD_ID= field for usage |
| 8820 | on operating systems that provide continuous builds of OS |
| 8821 | images. |
| 8822 | |
| 8823 | Contributions from: Auke Kok, Eelco Dolstra, Kay Sievers, |
| 8824 | Lennart Poettering, Lukas Nykryn, Martin Pitt, Václav Pavlín |
| 8825 | William Douglas, Zbigniew Jędrzejewski-Szmek |
| 8826 | |
Lennart Poettering | 3591145 | 2013-03-25 23:05:21 +0100 | [diff] [blame] | 8827 | CHANGES WITH 199: |
| 8828 | |
| 8829 | * systemd-python gained an API exposing libsystemd-daemon. |
| 8830 | |
| 8831 | * The SMACK setup logic gained support for uploading CIPSO |
| 8832 | security policy. |
| 8833 | |
| 8834 | * Behaviour of PrivateTmp=, ReadWriteDirectories=, |
| 8835 | ReadOnlyDirectories= and InaccessibleDirectories= has |
| 8836 | changed. The private /tmp and /var/tmp directories are now |
| 8837 | shared by all processes of a service (which means |
| 8838 | ExecStartPre= may now leave data in /tmp that ExecStart= of |
| 8839 | the same service can still access). When a service is |
| 8840 | stopped its temporary directories are immediately deleted |
Zbigniew Jędrzejewski-Szmek | a87197f | 2013-03-26 11:56:01 -0400 | [diff] [blame] | 8841 | (normal clean-up with tmpfiles is still done in addition to |
Lennart Poettering | 3591145 | 2013-03-25 23:05:21 +0100 | [diff] [blame] | 8842 | this though). |
| 8843 | |
| 8844 | * By default, systemd will now set a couple of sysctl |
| 8845 | variables in the kernel: the safe sysrq options are turned |
| 8846 | on, IP route verification is turned on, and source routing |
| 8847 | disabled. The recently added hardlink and softlink |
| 8848 | protection of the kernel is turned on. These settings should |
| 8849 | be reasonably safe, and good defaults for all new systems. |
| 8850 | |
| 8851 | * The predictable network naming logic may now be turned off |
Zbigniew Jędrzejewski-Szmek | a87197f | 2013-03-26 11:56:01 -0400 | [diff] [blame] | 8852 | with a new kernel command line switch: net.ifnames=0. |
Lennart Poettering | 3591145 | 2013-03-25 23:05:21 +0100 | [diff] [blame] | 8853 | |
| 8854 | * A new libsystemd-bus module has been added that implements a |
| 8855 | pretty complete D-Bus client library. For details see: |
| 8856 | |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 8857 | https://lists.freedesktop.org/archives/systemd-devel/2013-March/009797.html |
Lennart Poettering | 3591145 | 2013-03-25 23:05:21 +0100 | [diff] [blame] | 8858 | |
Kay Sievers | c20d829 | 2013-03-26 00:41:07 +0100 | [diff] [blame] | 8859 | * journald will now explicitly flush the journal files to disk |
Zbigniew Jędrzejewski-Szmek | a87197f | 2013-03-26 11:56:01 -0400 | [diff] [blame] | 8860 | at the latest 5min after each write. The file will then also |
| 8861 | be marked offline until the next write. This should increase |
| 8862 | reliability in case of a crash. The synchronization delay |
| 8863 | can be configured via SyncIntervalSec= in journald.conf. |
Lennart Poettering | 3591145 | 2013-03-25 23:05:21 +0100 | [diff] [blame] | 8864 | |
| 8865 | * There's a new remote-fs-setup.target unit that can be used |
| 8866 | to pull in specific services when at least one remote file |
| 8867 | system is to be mounted. |
| 8868 | |
| 8869 | * There are new targets timers.target and paths.target as |
| 8870 | canonical targets to pull user timer and path units in |
| 8871 | from. This complements sockets.target with a similar |
| 8872 | purpose for socket units. |
| 8873 | |
Lennart Poettering | 6a7d3d6 | 2013-03-25 23:48:08 +0100 | [diff] [blame] | 8874 | * libudev gained a new call udev_device_set_attribute_value() |
| 8875 | to set sysfs attributes of a device. |
| 8876 | |
Zbigniew Jędrzejewski-Szmek | a87197f | 2013-03-26 11:56:01 -0400 | [diff] [blame] | 8877 | * The udev daemon now sets the default number of worker |
| 8878 | processes executed in parallel based on the number of available |
Kay Sievers | c20d829 | 2013-03-26 00:41:07 +0100 | [diff] [blame] | 8879 | CPUs instead of the amount of available RAM. This is supposed |
Anatol Pomozov | ab06eef | 2013-04-14 19:37:54 -0700 | [diff] [blame] | 8880 | to provide a more reliable default and limit a too aggressive |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 8881 | parallelism for setups with 1000s of devices connected. |
Kay Sievers | c20d829 | 2013-03-26 00:41:07 +0100 | [diff] [blame] | 8882 | |
Lennart Poettering | 3591145 | 2013-03-25 23:05:21 +0100 | [diff] [blame] | 8883 | Contributions from: Auke Kok, Colin Walters, Cristian |
| 8884 | Rodríguez, Daniel Buch, Dave Reisner, Frederic Crozat, Hannes |
| 8885 | Reinecke, Harald Hoyer, Jan Alexander Steffens, Jan |
| 8886 | Engelhardt, Josh Triplett, Kay Sievers, Lennart Poettering, |
| 8887 | Mantas Mikulėnas, Martin Pitt, Mathieu Bridon, Michael Biebl, |
| 8888 | Michal Schmidt, Michal Sekletar, Miklos Vajna, Nathaniel Chen, |
| 8889 | Oleksii Shevchuk, Ozan Çağlayan, Thomas Hindoe Paaboel |
| 8890 | Andersen, Tollef Fog Heen, Tom Gundersen, Umut Tezduyar, |
| 8891 | Zbigniew Jędrzejewski-Szmek |
| 8892 | |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8893 | CHANGES WITH 198: |
| 8894 | |
| 8895 | * Configuration of unit files may now be extended via drop-in |
| 8896 | files without having to edit/override the unit files |
| 8897 | themselves. More specifically, if the administrator wants to |
| 8898 | change one value for a service file foobar.service he can |
| 8899 | now do so by dropping in a configuration snippet into |
Zbigniew Jędrzejewski-Szmek | ad88e75 | 2013-03-09 18:55:31 -0500 | [diff] [blame] | 8900 | /etc/systemd/system/foobar.service.d/*.conf. The unit logic |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8901 | will load all these snippets and apply them on top of the |
| 8902 | main unit configuration file, possibly extending or |
| 8903 | overriding its settings. Using these drop-in snippets is |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 8904 | generally nicer than the two earlier options for changing |
| 8905 | unit files locally: copying the files from |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8906 | /usr/lib/systemd/system/ to /etc/systemd/system/ and editing |
| 8907 | them there; or creating a new file in /etc/systemd/system/ |
| 8908 | that incorporates the original one via ".include". Drop-in |
| 8909 | snippets into these .d/ directories can be placed in any |
Kay Sievers | fd86897 | 2013-03-07 21:04:30 +0100 | [diff] [blame] | 8910 | directory systemd looks for units in, and the usual |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8911 | overriding semantics between /usr/lib, /etc and /run apply |
| 8912 | for them too. |
| 8913 | |
| 8914 | * Most unit file settings which take lists of items can now be |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8915 | reset by assigning the empty string to them. For example, |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8916 | normally, settings such as Environment=FOO=BAR append a new |
| 8917 | environment variable assignment to the environment block, |
| 8918 | each time they are used. By assigning Environment= the empty |
| 8919 | string the environment block can be reset to empty. This is |
| 8920 | particularly useful with the .d/*.conf drop-in snippets |
Kay Sievers | 156f7d0 | 2013-03-07 21:07:52 +0100 | [diff] [blame] | 8921 | mentioned above, since this adds the ability to reset list |
| 8922 | settings from vendor unit files via these drop-ins. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8923 | |
| 8924 | * systemctl gained a new "list-dependencies" command for |
| 8925 | listing the dependencies of a unit recursively. |
| 8926 | |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 8927 | * Inhibitors are now honored and listed by "systemctl |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8928 | suspend", "systemctl poweroff" (and similar) too, not only |
| 8929 | GNOME. These commands will also list active sessions by |
| 8930 | other users. |
| 8931 | |
| 8932 | * Resource limits (as exposed by the various control group |
| 8933 | controllers) can now be controlled dynamically at runtime |
| 8934 | for all units. More specifically, you can now use a command |
| 8935 | like "systemctl set-cgroup-attr foobar.service cpu.shares |
| 8936 | 2000" to alter the CPU shares a specific service gets. These |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8937 | settings are stored persistently on disk, and thus allow the |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8938 | administrator to easily adjust the resource usage of |
| 8939 | services with a few simple commands. This dynamic resource |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8940 | management logic is also available to other programs via the |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8941 | bus. Almost any kernel cgroup attribute and controller is |
| 8942 | supported. |
| 8943 | |
| 8944 | * systemd-vconsole-setup will now copy all font settings to |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8945 | all allocated VTs, where it previously applied them only to |
| 8946 | the foreground VT. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8947 | |
| 8948 | * libsystemd-login gained the new sd_session_get_tty() API |
| 8949 | call. |
| 8950 | |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8951 | * This release drops support for a few legacy or |
| 8952 | distribution-specific LSB facility names when parsing init |
| 8953 | scripts: $x-display-manager, $mail-transfer-agent, |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8954 | $mail-transport-agent, $mail-transfer-agent, $smtp, |
| 8955 | $null. Also, the mail-transfer-agent.target unit backing |
| 8956 | this has been removed. Distributions which want to retain |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8957 | compatibility with this should carry the burden for |
| 8958 | supporting this themselves and patch support for these back |
| 8959 | in, if they really need to. Also, the facilities $syslog and |
| 8960 | $local_fs are now ignored, since systemd does not support |
| 8961 | early-boot LSB init scripts anymore, and these facilities |
| 8962 | are implied anyway for normal services. syslog.target has |
| 8963 | also been removed. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8964 | |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 8965 | * There are new bus calls on PID1's Manager object for |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8966 | cancelling jobs, and removing snapshot units. Previously, |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8967 | both calls were only available on the Job and Snapshot |
| 8968 | objects themselves. |
| 8969 | |
| 8970 | * systemd-journal-gatewayd gained SSL support. |
| 8971 | |
| 8972 | * The various "environment" files, such as /etc/locale.conf |
| 8973 | now support continuation lines with a backslash ("\") as |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 8974 | last character in the line, similarly in style (but different) |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8975 | to how this is supported in shells. |
| 8976 | |
| 8977 | * For normal user processes the _SYSTEMD_USER_UNIT= field is |
| 8978 | now implicitly appended to every log entry logged. systemctl |
| 8979 | has been updated to filter by this field when operating on a |
| 8980 | user systemd instance. |
| 8981 | |
| 8982 | * nspawn will now implicitly add the CAP_AUDIT_WRITE and |
| 8983 | CAP_AUDIT_CONTROL capabilities to the capabilities set for |
| 8984 | the container. This makes it easier to boot unmodified |
| 8985 | Fedora systems in a container, which however still requires |
| 8986 | audit=0 to be passed on the kernel command line. Auditing in |
| 8987 | kernel and userspace is unfortunately still too broken in |
| 8988 | context of containers, hence we recommend compiling it out |
| 8989 | of the kernel or using audit=0. Hopefully this will be fixed |
| 8990 | one day for good in the kernel. |
| 8991 | |
| 8992 | * nspawn gained the new --bind= and --bind-ro= parameters to |
| 8993 | bind mount specific directories from the host into the |
| 8994 | container. |
| 8995 | |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 8996 | * nspawn will now mount its own devpts file system instance |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 8997 | into the container, in order not to leak pty devices from |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 8998 | the host into the container. |
| 8999 | |
| 9000 | * systemd will now read the firmware boot time performance |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 9001 | information from the EFI variables, if the used boot loader |
| 9002 | supports this, and takes it into account for boot performance |
| 9003 | analysis via "systemd-analyze". This is currently supported |
| 9004 | only in conjunction with Gummiboot, but could be supported |
| 9005 | by other boot loaders too. For details see: |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9006 | |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 9007 | https://www.freedesktop.org/wiki/Software/systemd/BootLoaderInterface |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9008 | |
| 9009 | * A new generator has been added that automatically mounts the |
| 9010 | EFI System Partition (ESP) to /boot, if that directory |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 9011 | exists, is empty, and no other file system has been |
| 9012 | configured to be mounted there. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9013 | |
| 9014 | * logind will now send out PrepareForSleep(false) out |
| 9015 | unconditionally, after coming back from suspend. This may be |
| 9016 | used by applications as asynchronous notification for |
| 9017 | system resume events. |
| 9018 | |
| 9019 | * "systemctl unlock-sessions" has been added, that allows |
| 9020 | unlocking the screens of all user sessions at once, similar |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 9021 | to how "systemctl lock-sessions" already locked all users |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 9022 | sessions. This is backed by a new D-Bus call UnlockSessions(). |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9023 | |
| 9024 | * "loginctl seat-status" will now show the master device of a |
| 9025 | seat. (i.e. the device of a seat that needs to be around for |
| 9026 | the seat to be considered available, usually the graphics |
| 9027 | card). |
| 9028 | |
| 9029 | * tmpfiles gained a new "X" line type, that allows |
| 9030 | configuration of files and directories (with wildcards) that |
| 9031 | shall be excluded from automatic cleanup ("aging"). |
| 9032 | |
Kay Sievers | bf93356 | 2013-03-07 20:44:26 +0100 | [diff] [blame] | 9033 | * udev default rules set the device node permissions now only |
| 9034 | at "add" events, and do not change them any longer with a |
| 9035 | later "change" event. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9036 | |
| 9037 | * The log messages for lid events and power/sleep keypresses |
| 9038 | now carry a message ID. |
| 9039 | |
| 9040 | * We now have a substantially larger unit test suite, but this |
| 9041 | continues to be work in progress. |
| 9042 | |
| 9043 | * udevadm hwdb gained a new --root= parameter to change the |
| 9044 | root directory to operate relative to. |
| 9045 | |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 9046 | * logind will now issue a background sync() request to the kernel |
| 9047 | early at shutdown, so that dirty buffers are flushed to disk early |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9048 | instead of at the last moment, in order to optimize shutdown |
| 9049 | times a little. |
| 9050 | |
| 9051 | * A new bootctl tool has been added that is an interface for |
| 9052 | certain boot loader operations. This is currently a preview |
| 9053 | and is likely to be extended into a small mechanism daemon |
| 9054 | like timedated, localed, hostnamed, and can be used by |
| 9055 | graphical UIs to enumerate available boot options, and |
| 9056 | request boot into firmware operations. |
| 9057 | |
| 9058 | * systemd-bootchart has been relicensed to LGPLv2.1+ to match |
| 9059 | the rest of the package. It also has been updated to work |
| 9060 | correctly in initrds. |
| 9061 | |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 9062 | * polkit previously has been runtime optional, and is now also |
| 9063 | compile time optional via a configure switch. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9064 | |
| 9065 | * systemd-analyze has been reimplemented in C. Also "systemctl |
| 9066 | dot" has moved into systemd-analyze. |
| 9067 | |
| 9068 | * "systemctl status" with no further parameters will now print |
| 9069 | the status of all active or failed units. |
| 9070 | |
| 9071 | * Operations such as "systemctl start" can now be executed |
| 9072 | with a new mode "--irreversible" which may be used to queue |
| 9073 | operations that cannot accidentally be reversed by a later |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 9074 | job queuing. This is by default used to make shutdown |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9075 | requests more robust. |
| 9076 | |
| 9077 | * The Python API of systemd now gained a new module for |
| 9078 | reading journal files. |
| 9079 | |
| 9080 | * A new tool kernel-install has been added that can install |
| 9081 | kernel images according to the Boot Loader Specification: |
| 9082 | |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 9083 | https://www.freedesktop.org/wiki/Specifications/BootLoaderSpec |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9084 | |
| 9085 | * Boot time console output has been improved to provide |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 9086 | animated boot time output for hanging jobs. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9087 | |
| 9088 | * A new tool systemd-activate has been added which can be used |
| 9089 | to test socket activation with, directly from the command |
| 9090 | line. This should make it much easier to test and debug |
| 9091 | socket activation in daemons. |
| 9092 | |
| 9093 | * journalctl gained a new "--reverse" (or -r) option to show |
| 9094 | journal output in reverse order (i.e. newest line first). |
| 9095 | |
Lennart Poettering | 43447fb | 2013-03-07 21:28:05 +0100 | [diff] [blame] | 9096 | * journalctl gained a new "--pager-end" (or -e) option to jump |
| 9097 | to immediately jump to the end of the journal in the |
| 9098 | pager. This is only supported in conjunction with "less". |
| 9099 | |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9100 | * journalctl gained a new "--user-unit=" option, that works |
Zbigniew Jędrzejewski-Szmek | 499b604 | 2014-05-24 18:45:04 -0400 | [diff] [blame] | 9101 | similarly to "--unit=" but filters for user units rather than |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9102 | system units. |
| 9103 | |
| 9104 | * A number of unit files to ease adoption of systemd in |
| 9105 | initrds has been added. This moves some minimal logic from |
| 9106 | the various initrd implementations into systemd proper. |
| 9107 | |
| 9108 | * The journal files are now owned by a new group |
| 9109 | "systemd-journal", which exists specifically to allow access |
| 9110 | to the journal, and nothing else. Previously, we used the |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 9111 | "adm" group for that, which however possibly covers more |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9112 | than just journal/log file access. This new group is now |
| 9113 | already used by systemd-journal-gatewayd to ensure this |
| 9114 | daemon gets access to the journal files and as little else |
| 9115 | as possible. Note that "make install" will also set FS ACLs |
| 9116 | up for /var/log/journal to give "adm" and "wheel" read |
| 9117 | access to it, in addition to "systemd-journal" which owns |
| 9118 | the journal files. We recommend that packaging scripts also |
Lennart Poettering | 6aa8d43 | 2013-03-07 21:08:04 +0100 | [diff] [blame] | 9119 | add read access to "adm" + "wheel" to /var/log/journal, and |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9120 | all existing/future journal files. To normal users and |
| 9121 | administrators little changes, however packagers need to |
| 9122 | ensure to create the "systemd-journal" system group at |
| 9123 | package installation time. |
| 9124 | |
| 9125 | * The systemd-journal-gatewayd now runs as unprivileged user |
| 9126 | systemd-journal-gateway:systemd-journal-gateway. Packaging |
| 9127 | scripts need to create these system user/group at |
| 9128 | installation time. |
| 9129 | |
| 9130 | * timedated now exposes a new boolean property CanNTP that |
| 9131 | indicates whether a local NTP service is available or not. |
| 9132 | |
| 9133 | * systemd-detect-virt will now also detect xen PVs |
| 9134 | |
Kay Sievers | 40e21da | 2013-03-07 20:39:12 +0100 | [diff] [blame] | 9135 | * The pstore file system is now mounted by default, if it is |
| 9136 | available. |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9137 | |
Lennart Poettering | 1aed459 | 2013-03-07 20:46:27 +0100 | [diff] [blame] | 9138 | * In addition to the SELinux and IMA policies we will now also |
| 9139 | load SMACK policies at early boot. |
| 9140 | |
Lennart Poettering | 85d6839 | 2013-03-07 20:25:12 +0100 | [diff] [blame] | 9141 | Contributions from: Adel Gadllah, Aleksander Morgado, Auke |
| 9142 | Kok, Ayan George, Bastien Nocera, Colin Walters, Daniel Buch, |
| 9143 | Daniel Wallace, Dave Reisner, David Herrmann, David Strauss, |
| 9144 | Eelco Dolstra, Enrico Scholz, Frederic Crozat, Harald Hoyer, |
| 9145 | Jan Janssen, Jonathan Callen, Kay Sievers, Lennart Poettering, |
| 9146 | Lukas Nykryn, Mantas Mikulėnas, Marc-Antoine Perennou, Martin |
| 9147 | Pitt, Mauro Dreissig, Max F. Albrecht, Michael Biebl, Michael |
| 9148 | Olbrich, Michal Schmidt, Michal Sekletar, Michal Vyskocil, |
| 9149 | Michał Bartoszkiewicz, Mirco Tischler, Nathaniel Chen, Nestor |
| 9150 | Ovroy, Oleksii Shevchuk, Paul W. Frields, Piotr Drąg, Rob |
| 9151 | Clark, Ryan Lortie, Simon McVittie, Simon Peeters, Steven |
| 9152 | Hiscocks, Thomas Hindoe Paaboel Andersen, Tollef Fog Heen, Tom |
| 9153 | Gundersen, Umut Tezduyar, William Giokas, Zbigniew |
| 9154 | Jędrzejewski-Szmek, Zeeshan Ali (Khattak) |
| 9155 | |
Lennart Poettering | 8ad2685 | 2013-01-08 02:27:22 +0100 | [diff] [blame] | 9156 | CHANGES WITH 197: |
| 9157 | |
| 9158 | * Timer units now support calendar time events in addition to |
| 9159 | monotonic time events. That means you can now trigger a unit |
| 9160 | based on a calendar time specification such as "Thu,Fri |
| 9161 | 2013-*-1,5 11:12:13" which refers to 11:12:13 of the first |
| 9162 | or fifth day of any month of the year 2013, given that it is |
| 9163 | a thursday or friday. This brings timer event support |
| 9164 | considerably closer to cron's capabilities. For details on |
| 9165 | the supported calendar time specification language see |
| 9166 | systemd.time(7). |
| 9167 | |
| 9168 | * udev now supports a number of different naming policies for |
| 9169 | network interfaces for predictable names, and a combination |
| 9170 | of these policies is now the default. Please see this wiki |
| 9171 | document for details: |
| 9172 | |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 9173 | https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames |
Lennart Poettering | 8ad2685 | 2013-01-08 02:27:22 +0100 | [diff] [blame] | 9174 | |
| 9175 | * Auke Kok's bootchart implementation has been added to the |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 9176 | systemd tree. It is an optional component that can graph the |
| 9177 | boot in quite some detail. It is one of the best bootchart |
Lennart Poettering | 8ad2685 | 2013-01-08 02:27:22 +0100 | [diff] [blame] | 9178 | implementations around and minimal in its code and |
| 9179 | dependencies. |
| 9180 | |
| 9181 | * nss-myhostname has been integrated into the systemd source |
| 9182 | tree. nss-myhostname guarantees that the local hostname |
| 9183 | always stays resolvable via NSS. It has been a weak |
| 9184 | requirement of systemd-hostnamed since a long time, and |
| 9185 | since its code is actually trivial we decided to just |
| 9186 | include it in systemd's source tree. It can be turned off |
| 9187 | with a configure switch. |
| 9188 | |
| 9189 | * The read-ahead logic is now capable of properly detecting |
| 9190 | whether a btrfs file system is on SSD or rotating media, in |
| 9191 | order to optimize the read-ahead scheme. Previously, it was |
| 9192 | only capable of detecting this on traditional file systems |
| 9193 | such as ext4. |
| 9194 | |
| 9195 | * In udev, additional device properties are now read from the |
| 9196 | IAB in addition to the OUI database. Also, Bluetooth company |
| 9197 | identities are attached to the devices as well. |
| 9198 | |
| 9199 | * In service files %U may be used as specifier that is |
| 9200 | replaced by the configured user name of the service. |
| 9201 | |
| 9202 | * nspawn may now be invoked without a controlling TTY. This |
| 9203 | makes it suitable for invocation as its own service. This |
| 9204 | may be used to set up a simple containerized server system |
| 9205 | using only core OS tools. |
| 9206 | |
| 9207 | * systemd and nspawn can now accept socket file descriptors |
| 9208 | when they are started for socket activation. This enables |
| 9209 | implementation of socket activated nspawn |
| 9210 | containers. i.e. think about autospawning an entire OS image |
| 9211 | when the first SSH or HTTP connection is received. We expect |
| 9212 | that similar functionality will also be added to libvirt-lxc |
| 9213 | eventually. |
| 9214 | |
| 9215 | * journalctl will now suppress ANSI color codes when |
| 9216 | presenting log data. |
| 9217 | |
| 9218 | * systemctl will no longer show control group information for |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 9219 | a unit if the control group is empty anyway. |
Lennart Poettering | 8ad2685 | 2013-01-08 02:27:22 +0100 | [diff] [blame] | 9220 | |
| 9221 | * logind can now automatically suspend/hibernate/shutdown the |
| 9222 | system on idle. |
| 9223 | |
| 9224 | * /etc/machine-info and hostnamed now also expose the chassis |
| 9225 | type of the system. This can be used to determine whether |
| 9226 | the local system is a laptop, desktop, handset or |
| 9227 | tablet. This information may either be configured by the |
| 9228 | user/vendor or is automatically determined from ACPI and DMI |
| 9229 | information if possible. |
| 9230 | |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 9231 | * A number of polkit actions are now bound together with "imply" |
| 9232 | rules. This should simplify creating UIs because many actions |
| 9233 | will now authenticate similar ones as well. |
Lennart Poettering | 8ad2685 | 2013-01-08 02:27:22 +0100 | [diff] [blame] | 9234 | |
| 9235 | * Unit files learnt a new condition ConditionACPower= which |
| 9236 | may be used to conditionalize a unit depending on whether an |
| 9237 | AC power source is connected or not, of whether the system |
| 9238 | is running on battery power. |
| 9239 | |
| 9240 | * systemctl gained a new "is-failed" verb that may be used in |
| 9241 | shell scripts and suchlike to check whether a specific unit |
| 9242 | is in the "failed" state. |
| 9243 | |
| 9244 | * The EnvironmentFile= setting in unit files now supports file |
| 9245 | globbing, and can hence be used to easily read a number of |
| 9246 | environment files at once. |
| 9247 | |
| 9248 | * systemd will no longer detect and recognize specific |
| 9249 | distributions. All distribution-specific #ifdeffery has been |
| 9250 | removed, systemd is now fully generic and |
| 9251 | distribution-agnostic. Effectively, not too much is lost as |
| 9252 | a lot of the code is still accessible via explicit configure |
| 9253 | switches. However, support for some distribution specific |
| 9254 | legacy configuration file formats has been dropped. We |
| 9255 | recommend distributions to simply adopt the configuration |
| 9256 | files everybody else uses now and convert the old |
| 9257 | configuration from packaging scripts. Most distributions |
| 9258 | already did that. If that's not possible or desirable, |
| 9259 | distributions are welcome to forward port the specific |
| 9260 | pieces of code locally from the git history. |
| 9261 | |
| 9262 | * When logging a message about a unit systemd will now always |
| 9263 | log the unit name in the message meta data. |
| 9264 | |
| 9265 | * localectl will now also discover system locale data that is |
| 9266 | not stored in locale archives, but directly unpacked. |
| 9267 | |
| 9268 | * logind will no longer unconditionally use framebuffer |
| 9269 | devices as seat masters, i.e. as devices that are required |
| 9270 | to be existing before a seat is considered preset. Instead, |
| 9271 | it will now look for all devices that are tagged as |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 9272 | "seat-master" in udev. By default, framebuffer devices will |
| 9273 | be marked as such, but depending on local systems, other |
Lennart Poettering | 8ad2685 | 2013-01-08 02:27:22 +0100 | [diff] [blame] | 9274 | devices might be marked as well. This may be used to |
| 9275 | integrate graphics cards using closed source drivers (such |
| 9276 | as NVidia ones) more nicely into logind. Note however, that |
| 9277 | we recommend using the open source NVidia drivers instead, |
| 9278 | and no udev rules for the closed-source drivers will be |
| 9279 | shipped from us upstream. |
| 9280 | |
| 9281 | Contributions from: Adam Williamson, Alessandro Crismani, Auke |
| 9282 | Kok, Colin Walters, Daniel Wallace, Dave Reisner, David |
| 9283 | Herrmann, David Strauss, Dimitrios Apostolou, Eelco Dolstra, |
| 9284 | Eric Benoit, Giovanni Campagna, Hannes Reinecke, Henrik |
| 9285 | Grindal Bakken, Hermann Gausterer, Kay Sievers, Lennart |
| 9286 | Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel Holtmann, |
| 9287 | Martin Pitt, Matthew Monaco, Michael Biebl, Michael Terry, |
| 9288 | Michal Schmidt, Michal Sekletar, Michał Bartoszkiewicz, Oleg |
| 9289 | Samarin, Pekka Lundstrom, Philip Nilsson, Ramkumar |
| 9290 | Ramachandra, Richard Yao, Robert Millan, Sami Kerola, Shawn |
| 9291 | Landden, Thomas Hindoe Paaboel Andersen, Thomas Jarosch, |
| 9292 | Tollef Fog Heen, Tom Gundersen, Umut Tezduyar, Zbigniew |
| 9293 | Jędrzejewski-Szmek |
| 9294 | |
Lennart Poettering | 0428ddb | 2012-11-21 01:37:11 +0100 | [diff] [blame] | 9295 | CHANGES WITH 196: |
| 9296 | |
| 9297 | * udev gained support for loading additional device properties |
| 9298 | from an indexed database that is keyed by vendor/product IDs |
| 9299 | and similar device identifiers. For the beginning this |
| 9300 | "hwdb" is populated with data from the well-known PCI and |
| 9301 | USB database, but also includes PNP, ACPI and OID data. In |
| 9302 | the longer run this indexed database shall grow into |
| 9303 | becoming the one central database for non-essential |
| 9304 | userspace device metadata. Previously, data from the PCI/USB |
Lennart Poettering | 96ec33c | 2012-11-21 01:59:45 +0100 | [diff] [blame] | 9305 | database was only attached to select devices, since the |
Lennart Poettering | 0428ddb | 2012-11-21 01:37:11 +0100 | [diff] [blame] | 9306 | lookup was a relatively expensive operation due to O(n) time |
Lennart Poettering | 96ec33c | 2012-11-21 01:59:45 +0100 | [diff] [blame] | 9307 | complexity (with n being the number of entries in the |
| 9308 | database). Since this is now O(1), we decided to add in this |
| 9309 | data for all devices where this is available, by |
Lennart Poettering | 0428ddb | 2012-11-21 01:37:11 +0100 | [diff] [blame] | 9310 | default. Note that the indexed database needs to be rebuilt |
| 9311 | when new data files are installed. To achieve this you need |
| 9312 | to update your packaging scripts to invoke "udevadm hwdb |
| 9313 | --update" after installation of hwdb data files. For |
| 9314 | RPM-based distributions we introduced the new |
| 9315 | %udev_hwdb_update macro for this purpose. |
| 9316 | |
| 9317 | * The Journal gained support for the "Message Catalog", an |
| 9318 | indexed database to link up additional information with |
| 9319 | journal entries. For further details please check: |
| 9320 | |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 9321 | https://www.freedesktop.org/wiki/Software/systemd/catalog |
Lennart Poettering | 0428ddb | 2012-11-21 01:37:11 +0100 | [diff] [blame] | 9322 | |
| 9323 | The indexed message catalog database also needs to be |
| 9324 | rebuilt after installation of message catalog files. Use |
| 9325 | "journalctl --update-catalog" for this. For RPM-based |
| 9326 | distributions we introduced the %journal_catalog_update |
| 9327 | macro for this purpose. |
| 9328 | |
| 9329 | * The Python Journal bindings gained support for the standard |
| 9330 | Python logging framework. |
| 9331 | |
| 9332 | * The Journal API gained new functions for checking whether |
| 9333 | the underlying file system of a journal file is capable of |
| 9334 | properly reporting file change notifications, or whether |
| 9335 | applications that want to reflect journal changes "live" |
Anatol Pomozov | ab06eef | 2013-04-14 19:37:54 -0700 | [diff] [blame] | 9336 | need to recheck journal files continuously in appropriate |
Lennart Poettering | 0428ddb | 2012-11-21 01:37:11 +0100 | [diff] [blame] | 9337 | time intervals. |
| 9338 | |
| 9339 | * It is now possible to set the "age" field for tmpfiles |
| 9340 | entries to 0, indicating that files matching this entry |
| 9341 | shall always be removed when the directories are cleaned up. |
| 9342 | |
| 9343 | * coredumpctl gained a new "gdb" verb which invokes gdb |
| 9344 | right-away on the selected coredump. |
| 9345 | |
| 9346 | * There's now support for "hybrid sleep" on kernels that |
| 9347 | support this, in addition to "suspend" and "hibernate". Use |
| 9348 | "systemctl hybrid-sleep" to make use of this. |
| 9349 | |
| 9350 | * logind's HandleSuspendKey= setting (and related settings) |
| 9351 | now gained support for a new "lock" setting to simply |
| 9352 | request the screen lock on all local sessions, instead of |
| 9353 | actually executing a suspend or hibernation. |
| 9354 | |
| 9355 | * systemd will now mount the EFI variables file system by |
| 9356 | default. |
| 9357 | |
| 9358 | * Socket units now gained support for configuration of the |
| 9359 | SMACK security label. |
| 9360 | |
| 9361 | * timedatectl will now output the time of the last and next |
| 9362 | daylight saving change. |
| 9363 | |
| 9364 | * We dropped support for various legacy and distro-specific |
| 9365 | concepts, such as insserv, early-boot SysV services |
| 9366 | (i.e. those for non-standard runlevels such as 'b' or 'S') |
| 9367 | or ArchLinux /etc/rc.conf support. We recommend the |
| 9368 | distributions who still need support this to either continue |
| 9369 | to maintain the necessary patches downstream, or find a |
| 9370 | different solution. (Talk to us if you have questions!) |
| 9371 | |
Zbigniew Jędrzejewski-Szmek | d35f51e | 2018-07-16 12:44:24 +0200 | [diff] [blame] | 9372 | * Various systemd components will now bypass polkit checks for |
| 9373 | root and otherwise handle properly if polkit is not found to |
| 9374 | be around. This should fix most issues for polkit-less |
| 9375 | systems. Quite frankly this should have been this way since |
| 9376 | day one. It is absolutely our intention to make systemd work |
| 9377 | fine on polkit-less systems, and we consider it a bug if |
| 9378 | something does not work as it should if polkit is not around. |
Lennart Poettering | 0428ddb | 2012-11-21 01:37:11 +0100 | [diff] [blame] | 9379 | |
| 9380 | * For embedded systems it is now possible to build udev and |
| 9381 | systemd without blkid and/or kmod support. |
| 9382 | |
| 9383 | * "systemctl switch-root" is now capable of switching root |
| 9384 | more than once. I.e. in addition to transitions from the |
| 9385 | initrd to the host OS it is now possible to transition to |
| 9386 | further OS images from the host. This is useful to implement |
| 9387 | offline updating tools. |
| 9388 | |
| 9389 | * Various other additions have been made to the RPM macros |
| 9390 | shipped with systemd. Use %udev_rules_update() after |
| 9391 | installing new udev rules files. %_udevhwdbdir, |
| 9392 | %_udevrulesdir, %_journalcatalogdir, %_tmpfilesdir, |
| 9393 | %_sysctldir are now available which resolve to the right |
| 9394 | directories for packages to place various data files in. |
| 9395 | |
| 9396 | * journalctl gained the new --full switch (in addition to |
| 9397 | --all, to disable ellipsation for long messages. |
| 9398 | |
| 9399 | Contributions from: Anders Olofsson, Auke Kok, Ben Boeckel, |
| 9400 | Colin Walters, Cosimo Cecchi, Daniel Wallace, Dave Reisner, |
| 9401 | Eelco Dolstra, Holger Hans Peter Freyther, Kay Sievers, |
| 9402 | Chun-Yi Lee, Lekensteyn, Lennart Poettering, Mantas Mikulėnas, |
| 9403 | Marti Raudsepp, Martin Pitt, Mauro Dreissig, Michael Biebl, |
| 9404 | Michal Schmidt, Michal Sekletar, Miklos Vajna, Nis Martensen, |
| 9405 | Oleksii Shevchuk, Olivier Brunel, Ramkumar Ramachandra, Thomas |
| 9406 | Bächler, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Tony |
| 9407 | Camuso, Umut Tezduyar, Zbigniew Jędrzejewski-Szmek |
| 9408 | |
Lennart Poettering | 139ee8c | 2012-10-23 00:01:47 +0200 | [diff] [blame] | 9409 | CHANGES WITH 195: |
| 9410 | |
Zbigniew Jędrzejewski-Szmek | 6827101 | 2012-10-29 09:52:31 +0000 | [diff] [blame] | 9411 | * journalctl gained new --since= and --until= switches to |
Lennart Poettering | 139ee8c | 2012-10-23 00:01:47 +0200 | [diff] [blame] | 9412 | filter by time. It also now supports nice filtering for |
| 9413 | units via --unit=/-u. |
| 9414 | |
Zbigniew Jędrzejewski-Szmek | 6827101 | 2012-10-29 09:52:31 +0000 | [diff] [blame] | 9415 | * Type=oneshot services may use ExecReload= and do the |
Lennart Poettering | 139ee8c | 2012-10-23 00:01:47 +0200 | [diff] [blame] | 9416 | right thing. |
| 9417 | |
| 9418 | * The journal daemon now supports time-based rotation and |
| 9419 | vacuuming, in addition to the usual disk-space based |
| 9420 | rotation. |
| 9421 | |
| 9422 | * The journal will now index the available field values for |
| 9423 | each field name. This enables clients to show pretty drop |
| 9424 | downs of available match values when filtering. The bash |
| 9425 | completion of journalctl has been updated |
| 9426 | accordingly. journalctl gained a new switch -F to list all |
| 9427 | values a certain field takes in the journal database. |
| 9428 | |
| 9429 | * More service events are now written as structured messages |
| 9430 | to the journal, and made recognizable via message IDs. |
| 9431 | |
| 9432 | * The timedated, localed and hostnamed mini-services which |
| 9433 | previously only provided support for changing time, locale |
| 9434 | and hostname settings from graphical DEs such as GNOME now |
| 9435 | also have a minimal (but very useful) text-based client |
| 9436 | utility each. This is probably the nicest way to changing |
| 9437 | these settings from the command line now, especially since |
| 9438 | it lists available options and is fully integrated with bash |
| 9439 | completion. |
| 9440 | |
| 9441 | * There's now a new tool "systemd-coredumpctl" to list and |
| 9442 | extract coredumps from the journal. |
| 9443 | |
| 9444 | * We now install a README each in /var/log/ and |
| 9445 | /etc/rc.d/init.d explaining where the system logs and init |
| 9446 | scripts went. This hopefully should help folks who go to |
| 9447 | that dirs and look into the otherwise now empty void and |
| 9448 | scratch their heads. |
| 9449 | |
| 9450 | * When user-services are invoked (by systemd --user) the |
| 9451 | $MANAGERPID env var is set to the PID of systemd. |
| 9452 | |
| 9453 | * SIGRTMIN+24 when sent to a --user instance will now result |
| 9454 | in immediate termination of systemd. |
| 9455 | |
| 9456 | * gatewayd received numerous feature additions such as a |
| 9457 | "follow" mode, for live syncing and filtering. |
| 9458 | |
| 9459 | * browse.html now allows filtering and showing detailed |
| 9460 | information on specific entries. Keyboard navigation and |
| 9461 | mouse screen support has been added. |
| 9462 | |
| 9463 | * gatewayd/journalctl now supports HTML5/JSON |
| 9464 | Server-Sent-Events as output. |
| 9465 | |
Lennart Poettering | 1cb88f2 | 2012-10-23 17:13:01 +0200 | [diff] [blame] | 9466 | * The SysV init script compatibility logic will now |
Lennart Poettering | 139ee8c | 2012-10-23 00:01:47 +0200 | [diff] [blame] | 9467 | heuristically determine whether a script supports the |
| 9468 | "reload" verb, and only then make this available as |
| 9469 | "systemctl reload". |
| 9470 | |
Ben Boeckel | 15f4722 | 2012-10-27 03:08:56 -0400 | [diff] [blame] | 9471 | * "systemctl status --follow" has been removed, use "journalctl |
Lennart Poettering | 139ee8c | 2012-10-23 00:01:47 +0200 | [diff] [blame] | 9472 | -u" instead. |
| 9473 | |
| 9474 | * journald.conf's RuntimeMinSize=, PersistentMinSize= settings |
| 9475 | have been removed since they are hardly useful to be |
| 9476 | configured. |
| 9477 | |
| 9478 | * And I'd like to take the opportunity to specifically mention |
| 9479 | Zbigniew for his great contributions. Zbigniew, you rock! |
| 9480 | |
| 9481 | Contributions from: Andrew Eikum, Christian Hesse, Colin |
| 9482 | Guthrie, Daniel J Walsh, Dave Reisner, Eelco Dolstra, Ferenc |
Lennart Poettering | 4d92e07 | 2012-10-23 02:03:10 +0200 | [diff] [blame] | 9483 | Wágner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Mantas |
| 9484 | Mikulėnas, Martin Mikkelsen, Martin Pitt, Michael Olbrich, |
| 9485 | Michael Stapelberg, Michal Schmidt, Sebastian Ott, Thomas |
| 9486 | Bächler, Umut Tezduyar, Will Woods, Wulf C. Krueger, Zbigniew |
| 9487 | Jędrzejewski-Szmek, Сковорода Никита Андреевич |
Lennart Poettering | 139ee8c | 2012-10-23 00:01:47 +0200 | [diff] [blame] | 9488 | |
Lennart Poettering | f9b5572 | 2012-10-03 14:32:29 -0400 | [diff] [blame] | 9489 | CHANGES WITH 194: |
| 9490 | |
| 9491 | * If /etc/vconsole.conf is non-existent or empty we will no |
| 9492 | longer load any console font or key map at boot by |
| 9493 | default. Instead the kernel defaults will be left |
| 9494 | intact. This is definitely the right thing to do, as no |
| 9495 | configuration should mean no configuration, and hard-coding |
| 9496 | font names that are different on all archs is probably a bad |
| 9497 | idea. Also, the kernel default key map and font should be |
| 9498 | good enough for most cases anyway, and mostly identical to |
| 9499 | the userspace fonts/key maps we previously overloaded them |
| 9500 | with. If distributions want to continue to default to a |
| 9501 | non-kernel font or key map they should ship a default |
| 9502 | /etc/vconsole.conf with the appropriate contents. |
| 9503 | |
| 9504 | Contributions from: Colin Walters, Daniel J Walsh, Dave |
| 9505 | Reisner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Tollef |
| 9506 | Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek |
| 9507 | |
Lennart Poettering | 597c52c | 2012-09-28 01:34:38 +0200 | [diff] [blame] | 9508 | CHANGES WITH 193: |
| 9509 | |
| 9510 | * journalctl gained a new --cursor= switch to show entries |
| 9511 | starting from the specified location in the journal. |
| 9512 | |
| 9513 | * We now enforce a size limit on journal entry fields exported |
| 9514 | with "-o json" in journalctl. Fields larger than 4K will be |
| 9515 | assigned null. This can be turned off with --all. |
| 9516 | |
| 9517 | * An (optional) journal gateway daemon is now available as |
| 9518 | "systemd-journal-gatewayd.service". This service provides |
| 9519 | access to the journal via HTTP and JSON. This functionality |
| 9520 | will be used to implement live log synchronization in both |
| 9521 | pull and push modes, but has various other users too, such |
| 9522 | as easy log access for debugging of embedded devices. Right |
| 9523 | now it is already useful to retrieve the journal via HTTP: |
| 9524 | |
| 9525 | # systemctl start systemd-journal-gatewayd.service |
| 9526 | # wget http://localhost:19531/entries |
| 9527 | |
| 9528 | This will download the journal contents in a |
| 9529 | /var/log/messages compatible format. The same as JSON: |
| 9530 | |
| 9531 | # curl -H"Accept: application/json" http://localhost:19531/entries |
| 9532 | |
| 9533 | This service is also accessible via a web browser where a |
| 9534 | single static HTML5 app is served that uses the JSON logic |
| 9535 | to enable the user to do some basic browsing of the |
| 9536 | journal. This will be extended later on. Here's an example |
| 9537 | screenshot of this app in its current state: |
| 9538 | |
| 9539 | http://0pointer.de/public/journal-gatewayd |
| 9540 | |
| 9541 | Contributions from: Kay Sievers, Lennart Poettering, Robert |
| 9542 | Milasan, Tom Gundersen |
| 9543 | |
Lennart Poettering | 075d4ec | 2012-09-25 22:23:57 +0200 | [diff] [blame] | 9544 | CHANGES WITH 192: |
| 9545 | |
| 9546 | * The bash completion logic is now available for journalctl |
| 9547 | too. |
| 9548 | |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 9549 | * We do not mount the "cpuset" controller anymore together with |
Lennart Poettering | 075d4ec | 2012-09-25 22:23:57 +0200 | [diff] [blame] | 9550 | "cpu" and "cpuacct", as "cpuset" groups generally cannot be |
| 9551 | started if no parameters are assigned to it. "cpuset" hence |
Torstein Husebø | 6123382 | 2016-07-10 14:48:23 +0200 | [diff] [blame] | 9552 | broke code that assumed it could create "cpu" groups and |
Lennart Poettering | 075d4ec | 2012-09-25 22:23:57 +0200 | [diff] [blame] | 9553 | just start them. |
| 9554 | |
| 9555 | * journalctl -f will now subscribe to terminal size changes, |
| 9556 | and line break accordingly. |
| 9557 | |
Lennart Poettering | 597c52c | 2012-09-28 01:34:38 +0200 | [diff] [blame] | 9558 | Contributions from: Dave Reisner, Kay Sievers, Lennart |
| 9559 | Poettering, Lukas Nykrynm, Mirco Tischler, Václav Pavlín |
Lennart Poettering | 075d4ec | 2012-09-25 22:23:57 +0200 | [diff] [blame] | 9560 | |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9561 | CHANGES WITH 191: |
| 9562 | |
| 9563 | * nspawn will now create a symlink /etc/localtime in the |
| 9564 | container environment, copying the host's timezone |
| 9565 | setting. Previously this has been done via a bind mount, but |
| 9566 | since symlinks cannot be bind mounted this has now been |
| 9567 | changed to create/update the appropriate symlink. |
| 9568 | |
| 9569 | * journalctl -n's line number argument is now optional, and |
| 9570 | will default to 10 if omitted. |
| 9571 | |
| 9572 | * journald will now log the maximum size the journal files may |
| 9573 | take up on disk. This is particularly useful if the default |
| 9574 | built-in logic of determining this parameter from the file |
| 9575 | system size is used. Use "systemctl status |
Lennart Poettering | 6563b53 | 2012-09-23 19:19:22 +0200 | [diff] [blame] | 9576 | systemd-journald.service" to see this information. |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9577 | |
| 9578 | * The multi-seat X wrapper tool has been stripped down. As X |
| 9579 | is now capable of enumerating graphics devices via udev in a |
| 9580 | seat-aware way the wrapper is not strictly necessary |
| 9581 | anymore. A stripped down temporary stop-gap is still shipped |
| 9582 | until the upstream display managers have been updated to |
| 9583 | fully support the new X logic. Expect this wrapper to be |
Lennart Poettering | 6563b53 | 2012-09-23 19:19:22 +0200 | [diff] [blame] | 9584 | removed entirely in one of the next releases. |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9585 | |
| 9586 | * HandleSleepKey= in logind.conf has been split up into |
| 9587 | HandleSuspendKey= and HandleHibernateKey=. The old setting |
Lennart Poettering | 6563b53 | 2012-09-23 19:19:22 +0200 | [diff] [blame] | 9588 | is not available anymore. X11 and the kernel are |
Torstein Husebø | 45afd51 | 2015-05-26 19:17:30 +0200 | [diff] [blame] | 9589 | distinguishing between these keys and we should too. This |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9590 | also means the inhibition lock for these keys has been split |
| 9591 | into two. |
| 9592 | |
Lennart Poettering | 597c52c | 2012-09-28 01:34:38 +0200 | [diff] [blame] | 9593 | Contributions from: Dave Airlie, Eelco Dolstra, Lennart |
| 9594 | Poettering, Lukas Nykryn, Václav Pavlín |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9595 | |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9596 | CHANGES WITH 190: |
| 9597 | |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 9598 | * Whenever a unit changes state we will now log this to the |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9599 | journal and show along the unit's own log output in |
| 9600 | "systemctl status". |
| 9601 | |
| 9602 | * ConditionPathIsMountPoint= can now properly detect bind |
| 9603 | mount points too. (Previously, a bind mount of one file |
Lennart Poettering | 8d0256b | 2012-09-20 22:50:26 +0200 | [diff] [blame] | 9604 | system to another place in the same file system could not be |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9605 | detected as mount, since they shared struct stat's st_dev |
| 9606 | field.) |
| 9607 | |
| 9608 | * We will now mount the cgroup controllers cpu, cpuacct, |
| 9609 | cpuset and the controllers net_cls, net_prio together by |
| 9610 | default. |
| 9611 | |
| 9612 | * nspawn containers will now have a virtualized boot |
| 9613 | ID. (i.e. /proc/sys/kernel/random/boot_id is now mounted |
| 9614 | over with a randomized ID at container initialization). This |
| 9615 | has the effect of making "journalctl -b" do the right thing |
| 9616 | in a container. |
| 9617 | |
| 9618 | * The JSON output journal serialization has been updated not |
| 9619 | to generate "endless" list objects anymore, but rather one |
| 9620 | JSON object per line. This is more in line how most JSON |
| 9621 | parsers expect JSON objects. The new output mode |
| 9622 | "json-pretty" has been added to provide similar output, but |
| 9623 | neatly aligned for readability by humans. |
| 9624 | |
| 9625 | * We dropped all explicit sync() invocations in the shutdown |
| 9626 | code. The kernel does this implicitly anyway in the kernel |
| 9627 | reboot() syscall. halt(8)'s -n option is now a compatibility |
| 9628 | no-op. |
| 9629 | |
| 9630 | * We now support virtualized reboot() in containers, as |
| 9631 | supported by newer kernels. We will fall back to exit() if |
| 9632 | CAP_SYS_REBOOT is not available to the container. Also, |
| 9633 | nspawn makes use of this now and will actually reboot the |
| 9634 | container if the containerized OS asks for that. |
| 9635 | |
| 9636 | * journalctl will only show local log output by default |
| 9637 | now. Use --merge (-m) to show remote log output, too. |
| 9638 | |
| 9639 | * libsystemd-journal gained the new sd_journal_get_usage() |
| 9640 | call to determine the current disk usage of all journal |
| 9641 | files. This is exposed in the new "journalctl --disk-usage" |
| 9642 | command. |
| 9643 | |
| 9644 | * journald gained a new configuration setting SplitMode= in |
| 9645 | journald.conf which may be used to control how user journals |
| 9646 | are split off. See journald.conf(5) for details. |
| 9647 | |
| 9648 | * A new condition type ConditionFileNotEmpty= has been added. |
| 9649 | |
| 9650 | * tmpfiles' "w" lines now support file globbing, to write |
| 9651 | multiple files at once. |
| 9652 | |
| 9653 | * We added Python bindings for the journal submission |
| 9654 | APIs. More Python APIs for a number of selected APIs will |
| 9655 | likely follow. Note that we intend to add native bindings |
| 9656 | only for the Python language, as we consider it common |
| 9657 | enough to deserve bindings shipped within systemd. There are |
| 9658 | various projects outside of systemd that provide bindings |
| 9659 | for languages such as PHP or Lua. |
| 9660 | |
Lennart Poettering | a98d5d6 | 2012-09-20 19:12:23 +0200 | [diff] [blame] | 9661 | * Many conditions will now resolve specifiers such as %i. In |
| 9662 | addition, PathChanged= and related directives of .path units |
| 9663 | now support specifiers as well. |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9664 | |
| 9665 | * There's now a new RPM macro definition for the system preset |
| 9666 | dir: %_presetdir. |
| 9667 | |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 9668 | * journald will now warn if it ca not forward a message to the |
Jan Engelhardt | dca348b | 2014-05-08 01:28:44 +0200 | [diff] [blame] | 9669 | syslog daemon because its socket is full. |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9670 | |
| 9671 | * timedated will no longer write or process /etc/timezone, |
| 9672 | except on Debian. As we do not support late mounted /usr |
| 9673 | anymore /etc/localtime always being a symlink is now safe, |
| 9674 | and hence the information in /etc/timezone is not necessary |
| 9675 | anymore. |
| 9676 | |
Lennart Poettering | aaccc32 | 2012-09-20 19:58:31 +0200 | [diff] [blame] | 9677 | * logind will now always reserve one VT for a text getty (VT6 |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9678 | by default). Previously if more than 6 X sessions where |
| 9679 | started they took up all the VTs with auto-spawned gettys, |
| 9680 | so that no text gettys were available anymore. |
| 9681 | |
| 9682 | * udev will now automatically inform the btrfs kernel logic |
| 9683 | about btrfs RAID components showing up. This should make |
| 9684 | simple hotplug based btrfs RAID assembly work. |
| 9685 | |
| 9686 | * PID 1 will now increase its RLIMIT_NOFILE to 64K by default |
| 9687 | (but not for its children which will stay at the kernel |
| 9688 | default). This should allow setups with a lot more listening |
| 9689 | sockets. |
| 9690 | |
| 9691 | * systemd will now always pass the configured timezone to the |
| 9692 | kernel at boot. timedated will do the same when the timezone |
| 9693 | is changed. |
| 9694 | |
| 9695 | * logind's inhibition logic has been updated. By default, |
| 9696 | logind will now handle the lid switch, the power and sleep |
| 9697 | keys all the time, even in graphical sessions. If DEs want |
| 9698 | to handle these events on their own they should take the new |
| 9699 | handle-power-key, handle-sleep-key and handle-lid-switch |
Veres Lajos | f131770 | 2014-12-29 09:45:58 +0000 | [diff] [blame] | 9700 | inhibitors during their runtime. A simple way to achieve |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9701 | that is to invoke the DE wrapped in an invocation of: |
| 9702 | |
| 9703 | systemd-inhibit --what=handle-power-key:handle-sleep-key:handle-lid-switch ... |
| 9704 | |
| 9705 | * Access to unit operations is now checked via SELinux taking |
| 9706 | the unit file label and client process label into account. |
| 9707 | |
Lennart Poettering | aad803a | 2012-09-20 19:00:26 +0200 | [diff] [blame] | 9708 | * systemd will now notify the administrator in the journal |
| 9709 | when he over-mounts a non-empty directory. |
| 9710 | |
| 9711 | * There are new specifiers that are resolved in unit files, |
Zbigniew Jędrzejewski-Szmek | 38b3850 | 2020-04-14 10:37:40 +0200 | [diff] [blame] | 9712 | for the hostname (%H), the machine ID (%m) and the boot ID |
Lennart Poettering | aad803a | 2012-09-20 19:00:26 +0200 | [diff] [blame] | 9713 | (%b). |
| 9714 | |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9715 | Contributions from: Allin Cottrell, Auke Kok, Brandon Philips, |
Lennart Poettering | 0c11f94 | 2012-09-20 18:54:20 +0200 | [diff] [blame] | 9716 | Colin Guthrie, Colin Walters, Daniel J Walsh, Dave Reisner, |
| 9717 | Eelco Dolstra, Jan Engelhardt, Kay Sievers, Lennart |
| 9718 | Poettering, Lucas De Marchi, Lukas Nykryn, Mantas Mikulėnas, |
| 9719 | Martin Pitt, Matthias Clasen, Michael Olbrich, Pierre Schmitz, |
| 9720 | Shawn Landden, Thomas Hindoe Paaboel Andersen, Tom Gundersen, |
| 9721 | Václav Pavlín, Yin Kangkai, Zbigniew Jędrzejewski-Szmek |
| 9722 | |
Lennart Poettering | 38a60d7 | 2012-08-23 02:46:22 +0200 | [diff] [blame] | 9723 | CHANGES WITH 189: |
| 9724 | |
| 9725 | * Support for reading structured kernel messages from |
| 9726 | /dev/kmsg has now been added and is enabled by default. |
| 9727 | |
| 9728 | * Support for reading kernel messages from /proc/kmsg has now |
| 9729 | been removed. If you want kernel messages in the journal |
| 9730 | make sure to run a recent kernel (>= 3.5) that supports |
| 9731 | reading structured messages from /dev/kmsg (see |
| 9732 | above). /proc/kmsg is now exclusive property of classic |
| 9733 | syslog daemons again. |
| 9734 | |
| 9735 | * The libudev API gained the new |
| 9736 | udev_device_new_from_device_id() call. |
| 9737 | |
| 9738 | * The logic for file system namespace (ReadOnlyDirectory=, |
| 9739 | ReadWriteDirectoy=, PrivateTmp=) has been reworked not to |
| 9740 | require pivot_root() anymore. This means fewer temporary |
| 9741 | directories are created below /tmp for this feature. |
| 9742 | |
| 9743 | * nspawn containers will now see and receive all submounts |
| 9744 | made on the host OS below the root file system of the |
| 9745 | container. |
| 9746 | |
| 9747 | * Forward Secure Sealing is now supported for Journal files, |
| 9748 | which provide cryptographical sealing of journal files so |
| 9749 | that attackers cannot alter log history anymore without this |
| 9750 | being detectable. Lennart will soon post a blog story about |
| 9751 | this explaining it in more detail. |
| 9752 | |
| 9753 | * There are two new service settings RestartPreventExitStatus= |
| 9754 | and SuccessExitStatus= which allow configuration of exit |
| 9755 | status (exit code or signal) which will be excepted from the |
| 9756 | restart logic, resp. consider successful. |
| 9757 | |
| 9758 | * journalctl gained the new --verify switch that can be used |
| 9759 | to check the integrity of the structure of journal files and |
| 9760 | (if Forward Secure Sealing is enabled) the contents of |
| 9761 | journal files. |
| 9762 | |
| 9763 | * nspawn containers will now be run with /dev/stdin, /dev/fd/ |
| 9764 | and similar symlinks pre-created. This makes running shells |
| 9765 | as container init process a lot more fun. |
| 9766 | |
| 9767 | * The fstab support can now handle PARTUUID= and PARTLABEL= |
| 9768 | entries. |
| 9769 | |
| 9770 | * A new ConditionHost= condition has been added to match |
| 9771 | against the hostname (with globs) and machine ID. This is |
| 9772 | useful for clusters where a single OS image is used to |
| 9773 | provision a large number of hosts which shall run slightly |
| 9774 | different sets of services. |
| 9775 | |
| 9776 | * Services which hit the restart limit will now be placed in a |
| 9777 | failure state. |
| 9778 | |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 9779 | Contributions from: Bertram Poettering, Dave Reisner, Huang |
Lennart Poettering | 38a60d7 | 2012-08-23 02:46:22 +0200 | [diff] [blame] | 9780 | Hang, Kay Sievers, Lennart Poettering, Lukas Nykryn, Martin |
| 9781 | Pitt, Simon Peeters, Zbigniew Jędrzejewski-Szmek |
| 9782 | |
Lennart Poettering | c269cec | 2012-08-08 21:49:01 +0200 | [diff] [blame] | 9783 | CHANGES WITH 188: |
| 9784 | |
| 9785 | * When running in --user mode systemd will now become a |
| 9786 | subreaper (PR_SET_CHILD_SUBREAPER). This should make the ps |
| 9787 | tree a lot more organized. |
| 9788 | |
| 9789 | * A new PartOf= unit dependency type has been introduced that |
| 9790 | may be used to group services in a natural way. |
| 9791 | |
| 9792 | * "systemctl enable" may now be used to enable instances of |
| 9793 | services. |
| 9794 | |
| 9795 | * journalctl now prints error log levels in red, and |
| 9796 | warning/notice log levels in bright white. It also supports |
| 9797 | filtering by log level now. |
| 9798 | |
| 9799 | * cgtop gained a new -n switch (similar to top), to configure |
| 9800 | the maximum number of iterations to run for. It also gained |
| 9801 | -b, to run in batch mode (accepting no input). |
| 9802 | |
Anatol Pomozov | ab06eef | 2013-04-14 19:37:54 -0700 | [diff] [blame] | 9803 | * The suffix ".service" may now be omitted on most systemctl |
Lennart Poettering | c269cec | 2012-08-08 21:49:01 +0200 | [diff] [blame] | 9804 | command lines involving service unit names. |
| 9805 | |
| 9806 | * There's a new bus call in logind to lock all sessions, as |
| 9807 | well as a loginctl verb for it "lock-sessions". |
| 9808 | |
| 9809 | * libsystemd-logind.so gained a new call sd_journal_perror() |
| 9810 | that works similar to libc perror() but logs to the journal |
| 9811 | and encodes structured information about the error number. |
| 9812 | |
| 9813 | * /etc/crypttab entries now understand the new keyfile-size= |
| 9814 | option. |
| 9815 | |
| 9816 | * shutdown(8) now can send a (configurable) wall message when |
| 9817 | a shutdown is cancelled. |
| 9818 | |
| 9819 | * The mount propagation mode for the root file system will now |
| 9820 | default to "shared", which is useful to make containers work |
| 9821 | nicely out-of-the-box so that they receive new mounts from |
| 9822 | the host. This can be undone locally by running "mount |
| 9823 | --make-rprivate /" if needed. |
| 9824 | |
| 9825 | * The prefdm.service file has been removed. Distributions |
| 9826 | should maintain this unit downstream if they intend to keep |
| 9827 | it around. However, we recommend writing normal unit files |
| 9828 | for display managers instead. |
| 9829 | |
| 9830 | * Since systemd is a crucial part of the OS we will now |
| 9831 | default to a number of compiler switches that improve |
| 9832 | security (hardening) such as read-only relocations, stack |
| 9833 | protection, and suchlike. |
| 9834 | |
| 9835 | * The TimeoutSec= setting for services is now split into |
| 9836 | TimeoutStartSec= and TimeoutStopSec= to allow configuration |
| 9837 | of individual time outs for the start and the stop phase of |
| 9838 | the service. |
| 9839 | |
| 9840 | Contributions from: Artur Zaprzala, Arvydas Sidorenko, Auke |
| 9841 | Kok, Bryan Kadzban, Dave Reisner, David Strauss, Harald Hoyer, |
| 9842 | Jim Meyering, Kay Sievers, Lennart Poettering, Mantas |
| 9843 | Mikulėnas, Martin Pitt, Michal Schmidt, Michal Sekletar, Peter |
| 9844 | Alfredsen, Shawn Landden, Simon Peeters, Terence Honles, Tom |
| 9845 | Gundersen, Zbigniew Jędrzejewski-Szmek |
| 9846 | |
Lennart Poettering | c4f1b86 | 2012-07-20 00:38:02 +0200 | [diff] [blame] | 9847 | CHANGES WITH 187: |
| 9848 | |
| 9849 | * The journal and id128 C APIs are now fully documented as man |
| 9850 | pages. |
| 9851 | |
| 9852 | * Extra safety checks have been added when transitioning from |
| 9853 | the initial RAM disk to the main system to avoid accidental |
| 9854 | data loss. |
| 9855 | |
Lennart Poettering | c269cec | 2012-08-08 21:49:01 +0200 | [diff] [blame] | 9856 | * /etc/crypttab entries now understand the new keyfile-offset= |
Lennart Poettering | c4f1b86 | 2012-07-20 00:38:02 +0200 | [diff] [blame] | 9857 | option. |
| 9858 | |
| 9859 | * systemctl -t can now be used to filter by unit load state. |
| 9860 | |
| 9861 | * The journal C API gained the new sd_journal_wait() call to |
| 9862 | make writing synchronous journal clients easier. |
| 9863 | |
| 9864 | * journalctl gained the new -D switch to show journals from a |
| 9865 | specific directory. |
| 9866 | |
| 9867 | * journalctl now displays a special marker between log |
| 9868 | messages of two different boots. |
| 9869 | |
| 9870 | * The journal is now explicitly flushed to /var via a service |
| 9871 | systemd-journal-flush.service, rather than implicitly simply |
| 9872 | by seeing /var/log/journal to be writable. |
| 9873 | |
| 9874 | * journalctl (and the journal C APIs) can now match for much |
| 9875 | more complex expressions, with alternatives and |
| 9876 | disjunctions. |
| 9877 | |
| 9878 | * When transitioning from the initial RAM disk to the main |
| 9879 | system we will now kill all processes in a killing spree to |
| 9880 | ensure no processes stay around by accident. |
| 9881 | |
| 9882 | * Three new specifiers may be used in unit files: %u, %h, %s |
| 9883 | resolve to the user name, user home directory resp. user |
| 9884 | shell. This is useful for running systemd user instances. |
| 9885 | |
| 9886 | * We now automatically rotate journal files if their data |
| 9887 | object hash table gets a fill level > 75%. We also size the |
| 9888 | hash table based on the configured maximum file size. This |
| 9889 | together should lower hash collisions drastically and thus |
| 9890 | speed things up a bit. |
| 9891 | |
| 9892 | * journalctl gained the new "--header" switch to introspect |
| 9893 | header data of journal files. |
| 9894 | |
| 9895 | * A new setting SystemCallFilters= has been added to services |
| 9896 | which may be used to apply blacklists or whitelists to |
| 9897 | system calls. This is based on SECCOMP Mode 2 of Linux 3.5. |
| 9898 | |
| 9899 | * nspawn gained a new --link-journal= switch (and quicker: -j) |
| 9900 | to link the container journal with the host. This makes it |
| 9901 | very easy to centralize log viewing on the host for all |
| 9902 | guests while still keeping the journal files separated. |
| 9903 | |
| 9904 | * Many bugfixes and optimizations |
| 9905 | |
| 9906 | Contributions from: Auke Kok, Eelco Dolstra, Harald Hoyer, Kay |
| 9907 | Sievers, Lennart Poettering, Malte Starostik, Paul Menzel, Rex |
| 9908 | Tsai, Shawn Landden, Tom Gundersen, Ville Skyttä, Zbigniew |
| 9909 | Jędrzejewski-Szmek |
| 9910 | |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 9911 | CHANGES WITH 186: |
| 9912 | |
| 9913 | * Several tools now understand kernel command line arguments, |
| 9914 | which are only read when run in an initial RAM disk. They |
| 9915 | usually follow closely their normal counterparts, but are |
| 9916 | prefixed with rd. |
| 9917 | |
| 9918 | * There's a new tool to analyze the readahead files that are |
| 9919 | automatically generated at boot. Use: |
| 9920 | |
| 9921 | /usr/lib/systemd/systemd-readahead analyze /.readahead |
| 9922 | |
| 9923 | * We now provide an early debug shell on tty9 if this enabled. Use: |
| 9924 | |
Lennart Poettering | d1f9eda | 2012-07-02 14:33:04 +0200 | [diff] [blame] | 9925 | systemctl enable debug-shell.service |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 9926 | |
| 9927 | * All plymouth related units have been moved into the Plymouth |
| 9928 | package. Please make sure to upgrade your Plymouth version |
| 9929 | as well. |
| 9930 | |
| 9931 | * systemd-tmpfiles now supports getting passed the basename of |
| 9932 | a configuration file only, in which case it will look for it |
| 9933 | in all appropriate directories automatically. |
| 9934 | |
| 9935 | * udevadm info now takes a /dev or /sys path as argument, and |
| 9936 | does the right thing. Example: |
| 9937 | |
| 9938 | udevadm info /dev/sda |
| 9939 | udevadm info /sys/class/block/sda |
| 9940 | |
| 9941 | * systemctl now prints a warning if a unit is stopped but a |
| 9942 | unit that might trigger it continues to run. Example: a |
| 9943 | service is stopped but the socket that activates it is left |
| 9944 | running. |
| 9945 | |
| 9946 | * "systemctl status" will now mention if the log output was |
| 9947 | shortened due to rotation since a service has been started. |
| 9948 | |
| 9949 | * The journal API now exposes functions to determine the |
| 9950 | "cutoff" times due to rotation. |
| 9951 | |
| 9952 | * journald now understands SIGUSR1 and SIGUSR2 for triggering |
| 9953 | immediately flushing of runtime logs to /var if possible, |
| 9954 | resp. for triggering immediate rotation of the journal |
| 9955 | files. |
| 9956 | |
| 9957 | * It is now considered an error if a service is attempted to |
| 9958 | be stopped that is not loaded. |
| 9959 | |
| 9960 | * XDG_RUNTIME_DIR now uses numeric UIDs instead of usernames. |
| 9961 | |
| 9962 | * systemd-analyze now supports Python 3 |
| 9963 | |
| 9964 | * tmpfiles now supports cleaning up directories via aging |
| 9965 | where the first level dirs are always kept around but |
| 9966 | directories beneath it automatically aged. This is enabled |
| 9967 | by prefixing the age field with '~'. |
| 9968 | |
| 9969 | * Seat objects now expose CanGraphical, CanTTY properties |
| 9970 | which is required to deal with very fast bootups where the |
| 9971 | display manager might be running before the graphics drivers |
| 9972 | completed initialization. |
| 9973 | |
| 9974 | * Seat objects now expose a State property. |
| 9975 | |
| 9976 | * We now include RPM macros for service enabling/disabling |
| 9977 | based on the preset logic. We recommend RPM based |
| 9978 | distributions to make use of these macros if possible. This |
| 9979 | makes it simpler to reuse RPM spec files across |
| 9980 | distributions. |
| 9981 | |
| 9982 | * We now make sure that the collected systemd unit name is |
| 9983 | always valid when services log to the journal via |
| 9984 | STDOUT/STDERR. |
| 9985 | |
| 9986 | * There's a new man page kernel-command-line(7) detailing all |
| 9987 | command line options we understand. |
| 9988 | |
| 9989 | * The fstab generator may now be disabled at boot by passing |
| 9990 | fstab=0 on the kernel command line. |
| 9991 | |
Kay Sievers | 91ac742 | 2012-07-02 15:05:26 +0200 | [diff] [blame] | 9992 | * A new kernel command line option modules-load= is now understood |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 9993 | to load a specific kernel module statically, early at boot. |
| 9994 | |
| 9995 | * Unit names specified on the systemctl command line are now |
| 9996 | automatically escaped as needed. Also, if file system or |
| 9997 | device paths are specified they are automatically turned |
| 9998 | into the appropriate mount or device unit names. Example: |
| 9999 | |
| 10000 | systemctl status /home |
| 10001 | systemctl status /dev/sda |
| 10002 | |
| 10003 | * The SysVConsole= configuration option has been removed from |
| 10004 | system.conf parsing. |
| 10005 | |
| 10006 | * The SysV search path is no longer exported on the D-Bus |
| 10007 | Manager object. |
| 10008 | |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 10009 | * The Names= option has been removed from unit file parsing. |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 10010 | |
| 10011 | * There's a new man page bootup(7) detailing the boot process. |
| 10012 | |
| 10013 | * Every unit and every generator we ship with systemd now |
| 10014 | comes with full documentation. The self-explanatory boot is |
| 10015 | complete. |
| 10016 | |
| 10017 | * A couple of services gained "systemd-" prefixes in their |
| 10018 | name if they wrap systemd code, rather than only external |
| 10019 | code. Among them fsck@.service which is now |
| 10020 | systemd-fsck@.service. |
| 10021 | |
| 10022 | * The HaveWatchdog property has been removed from the D-Bus |
| 10023 | Manager object. |
| 10024 | |
| 10025 | * systemd.confirm_spawn= on the kernel command line should now |
| 10026 | work sensibly. |
| 10027 | |
| 10028 | * There's a new man page crypttab(5) which details all options |
| 10029 | we actually understand. |
| 10030 | |
| 10031 | * systemd-nspawn gained a new --capability= switch to pass |
| 10032 | additional capabilities to the container. |
| 10033 | |
| 10034 | * timedated will now read known NTP implementation unit names |
Lennart Poettering | 5b00c01 | 2012-07-18 01:24:39 +0200 | [diff] [blame] | 10035 | from /usr/lib/systemd/ntp-units.d/*.list, |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 10036 | systemd-timedated-ntp.target has been removed. |
| 10037 | |
| 10038 | * journalctl gained a new switch "-b" that lists log data of |
| 10039 | the current boot only. |
| 10040 | |
| 10041 | * The notify socket is in the abstract namespace again, in |
| 10042 | order to support daemons which chroot() at start-up. |
| 10043 | |
| 10044 | * There is a new Storage= configuration option for journald |
| 10045 | which allows configuration of where log data should go. This |
| 10046 | also provides a way to disable journal logging entirely, so |
| 10047 | that data collected is only forwarded to the console, the |
| 10048 | kernel log buffer or another syslog implementation. |
| 10049 | |
Lennart Poettering | c4f1b86 | 2012-07-20 00:38:02 +0200 | [diff] [blame] | 10050 | * Many bugfixes and optimizations |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 10051 | |
Lennart Poettering | 2d938ac | 2012-07-03 16:27:59 +0200 | [diff] [blame] | 10052 | Contributions from: Auke Kok, Colin Guthrie, Dave Reisner, |
| 10053 | David Strauss, Eelco Dolstra, Kay Sievers, Lennart Poettering, |
| 10054 | Lukas Nykryn, Michal Schmidt, Michal Sekletar, Paul Menzel, |
| 10055 | Shawn Landden, Tom Gundersen |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 10056 | |
Kay Sievers | 2d19728 | 2012-06-04 20:15:16 +0200 | [diff] [blame] | 10057 | CHANGES WITH 185: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10058 | |
Kay Sievers | 2d19728 | 2012-06-04 20:15:16 +0200 | [diff] [blame] | 10059 | * "systemctl help <unit>" now shows the man page if one is |
| 10060 | available. |
| 10061 | |
| 10062 | * Several new man pages have been added. |
| 10063 | |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 10064 | * MaxLevelStore=, MaxLevelSyslog=, MaxLevelKMsg=, |
| 10065 | MaxLevelConsole= can now be specified in |
| 10066 | journald.conf. These options allow reducing the amount of |
| 10067 | data stored on disk or forwarded by the log level. |
Kay Sievers | 2d19728 | 2012-06-04 20:15:16 +0200 | [diff] [blame] | 10068 | |
Lennart Poettering | b5b4c94 | 2012-07-02 11:38:03 +0200 | [diff] [blame] | 10069 | * TimerSlackNSec= can now be specified in system.conf for |
| 10070 | PID1. This allows system-wide power savings. |
Kay Sievers | 2d19728 | 2012-06-04 20:15:16 +0200 | [diff] [blame] | 10071 | |
| 10072 | Contributions from: Dave Reisner, Kay Sievers, Lauri Kasanen, |
| 10073 | Lennart Poettering, Malte Starostik, Marc-Antoine Perennou, |
| 10074 | Matthias Clasen |
| 10075 | |
Lennart Poettering | 4c8cd17 | 2012-05-31 01:58:01 +0200 | [diff] [blame] | 10076 | CHANGES WITH 184: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10077 | |
Lennart Poettering | 4c8cd17 | 2012-05-31 01:58:01 +0200 | [diff] [blame] | 10078 | * logind is now capable of (optionally) handling power and |
| 10079 | sleep keys as well as the lid switch. |
| 10080 | |
| 10081 | * journalctl now understands the syntax "journalctl |
| 10082 | /usr/bin/avahi-daemon" to get all log output of a specific |
| 10083 | daemon. |
| 10084 | |
| 10085 | * CapabilityBoundingSet= in system.conf now also influences |
| 10086 | the capability bound set of usermode helpers of the kernel. |
| 10087 | |
| 10088 | Contributions from: Daniel Drake, Daniel J. Walsh, Gert |
| 10089 | Michael Kulyk, Harald Hoyer, Jean Delvare, Kay Sievers, |
| 10090 | Lennart Poettering, Matthew Garrett, Matthias Clasen, Paul |
| 10091 | Menzel, Shawn Landden, Tero Roponen, Tom Gundersen |
| 10092 | |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10093 | CHANGES WITH 183: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10094 | |
Lennart Poettering | 187076d | 2012-05-24 16:41:08 +0200 | [diff] [blame] | 10095 | * Note that we skipped 139 releases here in order to set the |
| 10096 | new version to something that is greater than both udev's |
| 10097 | and systemd's most recent version number. |
| 10098 | |
Kay Sievers | 194bbe3 | 2012-04-15 02:35:31 +0200 | [diff] [blame] | 10099 | * udev: all udev sources are merged into the systemd source tree now. |
| 10100 | All future udev development will happen in the systemd tree. It |
| 10101 | is still fully supported to use the udev daemon and tools without |
| 10102 | systemd running, like in initramfs or other init systems. Building |
| 10103 | udev though, will require the *build* of the systemd tree, but |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10104 | udev can be properly *run* without systemd. |
Kay Sievers | 07cd4fc | 2012-04-08 16:50:16 +0200 | [diff] [blame] | 10105 | |
Tollef Fog Heen | 91cf7e5 | 2012-04-17 09:47:23 +0200 | [diff] [blame] | 10106 | * udev: /lib/udev/devices/ are not read anymore; systemd-tmpfiles |
Kay Sievers | f13b388 | 2012-04-16 23:32:22 +0200 | [diff] [blame] | 10107 | should be used to create dead device nodes as workarounds for broken |
| 10108 | subsystems. |
Kay Sievers | 64661ee | 2012-04-06 19:52:49 +0200 | [diff] [blame] | 10109 | |
Kay Sievers | 2d13da8 | 2012-04-09 20:45:45 +0200 | [diff] [blame] | 10110 | * udev: RUN+="socket:..." and udev_monitor_new_from_socket() is |
| 10111 | no longer supported. udev_monitor_new_from_netlink() needs to be |
| 10112 | used to subscribe to events. |
| 10113 | |
Kay Sievers | 194bbe3 | 2012-04-15 02:35:31 +0200 | [diff] [blame] | 10114 | * udev: when udevd is started by systemd, processes which are left |
| 10115 | behind by forking them off of udev rules, are unconditionally cleaned |
| 10116 | up and killed now after the event handling has finished. Services or |
| 10117 | daemons must be started as systemd services. Services can be |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10118 | pulled-in by udev to get started, but they can no longer be directly |
Kay Sievers | 194bbe3 | 2012-04-15 02:35:31 +0200 | [diff] [blame] | 10119 | forked by udev rules. |
| 10120 | |
Kay Sievers | f13b388 | 2012-04-16 23:32:22 +0200 | [diff] [blame] | 10121 | * udev: the daemon binary is called systemd-udevd now and installed |
| 10122 | in /usr/lib/systemd/. Standalone builds or non-systemd systems need |
| 10123 | to adapt to that, create symlink, or rename the binary after building |
| 10124 | it. |
| 10125 | |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10126 | * libudev no longer provides these symbols: |
Kay Sievers | c195956 | 2012-05-15 23:44:28 +0200 | [diff] [blame] | 10127 | udev_monitor_from_socket() |
| 10128 | udev_queue_get_failed_list_entry() |
| 10129 | udev_get_{dev,sys,run}_path() |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10130 | The versions number was bumped and symbol versioning introduced. |
Kay Sievers | c195956 | 2012-05-15 23:44:28 +0200 | [diff] [blame] | 10131 | |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10132 | * systemd-loginctl and systemd-journalctl have been renamed |
Lennart Poettering | 9ae9afc | 2012-05-24 16:52:12 +0200 | [diff] [blame] | 10133 | to loginctl and journalctl to match systemctl. |
Kay Sievers | 18b754d | 2012-03-30 23:18:33 +0200 | [diff] [blame] | 10134 | |
| 10135 | * The config files: /etc/systemd/systemd-logind.conf and |
| 10136 | /etc/systemd/systemd-journald.conf have been renamed to |
| 10137 | logind.conf and journald.conf. Package updates should rename |
| 10138 | the files to the new names on upgrade. |
| 10139 | |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10140 | * For almost all files the license is now LGPL2.1+, changed |
| 10141 | from the previous GPL2.0+. Exceptions are some minor stuff |
| 10142 | of udev (which will be changed to LGPL2.1 eventually, too), |
| 10143 | and the MIT licensed sd-daemon.[ch] library that is suitable |
| 10144 | to be used as drop-in files. |
| 10145 | |
| 10146 | * systemd and logind now handle system sleep states, in |
Ville Skyttä | 49f43d5 | 2012-07-15 11:41:40 +0300 | [diff] [blame] | 10147 | particular suspending and hibernating. |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10148 | |
| 10149 | * logind now implements a sleep/shutdown/idle inhibiting logic |
| 10150 | suitable for a variety of uses. Soonishly Lennart will blog |
| 10151 | about this in more detail. |
| 10152 | |
| 10153 | * var-run.mount and var-lock.mount are no longer provided |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 10154 | (which previously bind mounted these directories to their new |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10155 | places). Distributions which have not converted these |
| 10156 | directories to symlinks should consider stealing these files |
| 10157 | from git history and add them downstream. |
| 10158 | |
| 10159 | * We introduced the Documentation= field for units and added |
| 10160 | this to all our shipped units. This is useful to make it |
Lennart Poettering | 3943231 | 2012-05-24 16:53:31 +0200 | [diff] [blame] | 10161 | easier to explore the boot and the purpose of the various |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10162 | units. |
| 10163 | |
| 10164 | * All smaller setup units (such as |
| 10165 | systemd-vconsole-setup.service) now detect properly if they |
| 10166 | are run in a container and are skipped when |
| 10167 | appropriate. This guarantees an entirely noise-free boot in |
| 10168 | Linux container environments such as systemd-nspawn. |
| 10169 | |
| 10170 | * A framework for implementing offline system updates is now |
| 10171 | integrated, for details see: |
AsciiWolf | c6749ba | 2017-02-21 18:26:23 +0100 | [diff] [blame] | 10172 | https://www.freedesktop.org/wiki/Software/systemd/SystemUpdates |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10173 | |
| 10174 | * A new service type Type=idle is available now which helps us |
| 10175 | avoiding ugly interleaving of getty output and boot status |
| 10176 | messages. |
| 10177 | |
Lennart Poettering | 439d6df | 2012-05-24 17:03:52 +0200 | [diff] [blame] | 10178 | * There's now a system-wide CapabilityBoundingSet= option to |
| 10179 | globally reduce the set of capabilities for the |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10180 | system. This is useful to drop CAP_SYS_MKNOD, CAP_SYS_RAWIO, |
| 10181 | CAP_NET_RAW, CAP_SYS_MODULE, CAP_SYS_TIME, CAP_SYS_PTRACE or |
| 10182 | even CAP_NET_ADMIN system-wide for secure systems. |
| 10183 | |
| 10184 | * There are now system-wide DefaultLimitXXX= options to |
| 10185 | globally change the defaults of the various resource limits |
| 10186 | for all units started by PID 1. |
| 10187 | |
| 10188 | * Harald Hoyer's systemd test suite has been integrated into |
| 10189 | systemd which allows easy testing of systemd builds in qemu |
| 10190 | and nspawn. (This is really awesome! Ask us for details!) |
| 10191 | |
Lennart Poettering | 3943231 | 2012-05-24 16:53:31 +0200 | [diff] [blame] | 10192 | * The fstab parser is now implemented as generator, not inside |
| 10193 | of PID 1 anymore. |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10194 | |
| 10195 | * systemctl will now warn you if .mount units generated from |
| 10196 | /etc/fstab are out of date due to changes in fstab that |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 10197 | have not been read by systemd yet. |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10198 | |
| 10199 | * systemd is now suitable for usage in initrds. Dracut has |
| 10200 | already been updated to make use of this. With this in place |
| 10201 | initrds get a slight bit faster but primarily are much |
| 10202 | easier to introspect and debug since "systemctl status" in |
| 10203 | the host system can be used to introspect initrd services, |
| 10204 | and the journal from the initrd is kept around too. |
| 10205 | |
| 10206 | * systemd-delta has been added, a tool to explore differences |
| 10207 | between user/admin configuration and vendor defaults. |
| 10208 | |
| 10209 | * PrivateTmp= now affects both /tmp and /var/tmp. |
| 10210 | |
| 10211 | * Boot time status messages are now much prettier and feature |
| 10212 | proper english language. Booting up systemd has never been |
| 10213 | so sexy. |
| 10214 | |
| 10215 | * Read-ahead pack files now include the inode number of all |
| 10216 | files to pre-cache. When the inode changes the pre-caching |
| 10217 | is not attempted. This should be nicer to deal with updated |
| 10218 | packages which might result in changes of read-ahead |
| 10219 | patterns. |
| 10220 | |
| 10221 | * We now temporaritly lower the kernel's read_ahead_kb variable |
| 10222 | when collecting read-ahead data to ensure the kernel's |
| 10223 | built-in read-ahead does not add noise to our measurements |
| 10224 | of necessary blocks to pre-cache. |
| 10225 | |
| 10226 | * There's now RequiresMountsFor= to add automatic dependencies |
| 10227 | for all mounts necessary for a specific file system path. |
| 10228 | |
| 10229 | * MountAuto= and SwapAuto= have been removed from |
| 10230 | system.conf. Mounting file systems at boot has to take place |
| 10231 | in systemd now. |
| 10232 | |
| 10233 | * nspawn now learned a new switch --uuid= to set the machine |
| 10234 | ID on the command line. |
| 10235 | |
Lennart Poettering | f8c0a2c | 2012-05-24 17:06:03 +0200 | [diff] [blame] | 10236 | * nspawn now learned the -b switch to automatically search |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10237 | for an init system. |
| 10238 | |
| 10239 | * vt102 is now the default TERM for serial TTYs, upgraded from |
| 10240 | vt100. |
| 10241 | |
| 10242 | * systemd-logind now works on VT-less systems. |
| 10243 | |
| 10244 | * The build tree has been reorganized. The individual |
Lennart Poettering | 3943231 | 2012-05-24 16:53:31 +0200 | [diff] [blame] | 10245 | components now have directories of their own. |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10246 | |
| 10247 | * A new condition type ConditionPathIsReadWrite= is now available. |
| 10248 | |
| 10249 | * nspawn learned the new -C switch to create cgroups for the |
| 10250 | container in other hierarchies. |
| 10251 | |
| 10252 | * We now have support for hardware watchdogs, configurable in |
| 10253 | system.conf. |
| 10254 | |
| 10255 | * The scheduled shutdown logic now has a public API. |
| 10256 | |
| 10257 | * We now mount /tmp as tmpfs by default, but this can be |
| 10258 | masked and /etc/fstab can override it. |
| 10259 | |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 10260 | * Since udisks does not make use of /media anymore we are not |
Lennart Poettering | ea5943d | 2012-05-24 16:39:55 +0200 | [diff] [blame] | 10261 | mounting a tmpfs on it anymore. |
| 10262 | |
| 10263 | * journalctl gained a new --local switch to only interleave |
| 10264 | locally generated journal files. |
| 10265 | |
| 10266 | * We can now load the IMA policy at boot automatically. |
| 10267 | |
| 10268 | * The GTK tools have been split off into a systemd-ui. |
| 10269 | |
Lennart Poettering | 79849bf | 2012-05-24 18:15:35 +0200 | [diff] [blame] | 10270 | Contributions from: Andreas Schwab, Auke Kok, Ayan George, |
| 10271 | Colin Guthrie, Daniel Mack, Dave Reisner, David Ward, Elan |
| 10272 | Ruusamäe, Frederic Crozat, Gergely Nagy, Guillermo Vidal, |
| 10273 | Hannes Reinecke, Harald Hoyer, Javier Jardón, Kay Sievers, |
| 10274 | Lennart Poettering, Lucas De Marchi, Léo Gillot-Lamure, |
| 10275 | Marc-Antoine Perennou, Martin Pitt, Matthew Monaco, Maxim |
| 10276 | A. Mikityanskiy, Michael Biebl, Michael Olbrich, Michal |
| 10277 | Schmidt, Nis Martensen, Patrick McCarty, Roberto Sassu, Shawn |
| 10278 | Landden, Sjoerd Simons, Sven Anders, Tollef Fog Heen, Tom |
| 10279 | Gundersen |
| 10280 | |
Lennart Poettering | 16f1239 | 2012-03-16 01:57:47 +0100 | [diff] [blame] | 10281 | CHANGES WITH 44: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10282 | |
Lennart Poettering | 16f1239 | 2012-03-16 01:57:47 +0100 | [diff] [blame] | 10283 | * This is mostly a bugfix release |
| 10284 | |
| 10285 | * Support optional initialization of the machine ID from the |
| 10286 | KVM or container configured UUID. |
| 10287 | |
| 10288 | * Support immediate reboots with "systemctl reboot -ff" |
| 10289 | |
| 10290 | * Show /etc/os-release data in systemd-analyze output |
| 10291 | |
Anatol Pomozov | ab06eef | 2013-04-14 19:37:54 -0700 | [diff] [blame] | 10292 | * Many bugfixes for the journal, including endianness fixes and |
Lennart Poettering | 16f1239 | 2012-03-16 01:57:47 +0100 | [diff] [blame] | 10293 | ensuring that disk space enforcement works |
| 10294 | |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 10295 | * sd-login.h is C++ compatible again |
Lennart Poettering | 16f1239 | 2012-03-16 01:57:47 +0100 | [diff] [blame] | 10296 | |
| 10297 | * Extend the /etc/os-release format on request of the Debian |
| 10298 | folks |
| 10299 | |
| 10300 | * We now refuse non-UTF8 strings used in various configuration |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 10301 | and unit files. This is done to ensure we do not pass invalid |
Lennart Poettering | 16f1239 | 2012-03-16 01:57:47 +0100 | [diff] [blame] | 10302 | data over D-Bus or expose it elsewhere. |
| 10303 | |
| 10304 | * Register Mimo USB Screens as suitable for automatic seat |
| 10305 | configuration |
| 10306 | |
| 10307 | * Read SELinux client context from journal clients in a race |
| 10308 | free fashion |
| 10309 | |
| 10310 | * Reorder configuration file lookup order. /etc now always |
| 10311 | overrides /run in order to allow the administrator to always |
Jan Engelhardt | b938cb9 | 2014-08-03 07:11:12 +0200 | [diff] [blame] | 10312 | and unconditionally override vendor-supplied or |
Lennart Poettering | 16f1239 | 2012-03-16 01:57:47 +0100 | [diff] [blame] | 10313 | automatically generated data. |
| 10314 | |
| 10315 | * The various user visible bits of the journal now have man |
| 10316 | pages. We still lack man pages for the journal API calls |
| 10317 | however. |
| 10318 | |
| 10319 | * We now ship all man pages in HTML format again in the |
| 10320 | tarball. |
| 10321 | |
| 10322 | Contributions from: Dave Reisner, Dirk Eibach, Frederic |
| 10323 | Crozat, Harald Hoyer, Kay Sievers, Lennart Poettering, Marti |
| 10324 | Raudsepp, Michal Schmidt, Shawn Landden, Tero Roponen, Thierry |
| 10325 | Reding |
| 10326 | |
Lennart Poettering | 437b7de | 2012-02-15 05:00:27 +0100 | [diff] [blame] | 10327 | CHANGES WITH 43: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10328 | |
Lennart Poettering | 437b7de | 2012-02-15 05:00:27 +0100 | [diff] [blame] | 10329 | * This is mostly a bugfix release |
| 10330 | |
| 10331 | * systems lacking /etc/os-release are no longer supported. |
| 10332 | |
| 10333 | * Various functionality updates to libsystemd-login.so |
| 10334 | |
Torstein Husebø | 45afd51 | 2015-05-26 19:17:30 +0200 | [diff] [blame] | 10335 | * Track class of PAM logins to distinguish greeters from |
Lennart Poettering | 437b7de | 2012-02-15 05:00:27 +0100 | [diff] [blame] | 10336 | normal user logins. |
| 10337 | |
| 10338 | Contributions from: Kay Sievers, Lennart Poettering, Michael |
| 10339 | Biebl |
| 10340 | |
Lennart Poettering | 204fa33 | 2012-02-11 01:52:18 +0100 | [diff] [blame] | 10341 | CHANGES WITH 42: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10342 | |
Lennart Poettering | 204fa33 | 2012-02-11 01:52:18 +0100 | [diff] [blame] | 10343 | * This is an important bugfix release for v41. |
| 10344 | |
| 10345 | * Building man pages is now optional which should be useful |
| 10346 | for those building systemd from git but unwilling to install |
| 10347 | xsltproc. |
| 10348 | |
| 10349 | * Watchdog support for supervising services is now usable. In |
| 10350 | a future release support for hardware watchdogs |
| 10351 | (i.e. /dev/watchdog) will be added building on this. |
| 10352 | |
| 10353 | * Service start rate limiting is now configurable and can be |
| 10354 | turned off per service. When a start rate limit is hit a |
| 10355 | reboot can automatically be triggered. |
| 10356 | |
| 10357 | * New CanReboot(), CanPowerOff() bus calls in systemd-logind. |
| 10358 | |
| 10359 | Contributions from: Benjamin Franzke, Bill Nottingham, |
| 10360 | Frederic Crozat, Lennart Poettering, Michael Olbrich, Michal |
| 10361 | Schmidt, Michał Górny, Piotr Drąg |
| 10362 | |
Kay Sievers | e0d2532 | 2012-02-08 00:08:10 +0100 | [diff] [blame] | 10363 | CHANGES WITH 41: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10364 | |
Kay Sievers | e0d2532 | 2012-02-08 00:08:10 +0100 | [diff] [blame] | 10365 | * The systemd binary is installed /usr/lib/systemd/systemd now; |
| 10366 | An existing /sbin/init symlink needs to be adapted with the |
| 10367 | package update. |
| 10368 | |
Lennart Poettering | b13df96 | 2012-02-09 01:06:07 +0100 | [diff] [blame] | 10369 | * The code that loads kernel modules has been ported to invoke |
| 10370 | libkmod directly, instead of modprobe. This means we do not |
| 10371 | support systems with module-init-tools anymore. |
| 10372 | |
| 10373 | * Watchdog support is now already useful, but still not |
| 10374 | complete. |
| 10375 | |
| 10376 | * A new kernel command line option systemd.setenv= is |
| 10377 | understood to set system wide environment variables |
| 10378 | dynamically at boot. |
| 10379 | |
Jason St. John | e9c1ea9 | 2013-07-02 13:24:48 +0200 | [diff] [blame] | 10380 | * We now limit the set of capabilities of systemd-journald. |
Lennart Poettering | ccd07a0 | 2012-02-09 02:06:13 +0100 | [diff] [blame] | 10381 | |
Lennart Poettering | 353e12c | 2012-02-09 03:18:04 +0100 | [diff] [blame] | 10382 | * We now set SIGPIPE to ignore by default, since it only is |
| 10383 | useful in shell pipelines, and has little use in general |
| 10384 | code. This can be disabled with IgnoreSIPIPE=no in unit |
| 10385 | files. |
| 10386 | |
Lennart Poettering | b13df96 | 2012-02-09 01:06:07 +0100 | [diff] [blame] | 10387 | Contributions from: Benjamin Franzke, Kay Sievers, Lennart |
| 10388 | Poettering, Michael Olbrich, Michal Schmidt, Tom Gundersen, |
| 10389 | William Douglas |
| 10390 | |
Lennart Poettering | d26e427 | 2012-02-07 03:38:23 +0100 | [diff] [blame] | 10391 | CHANGES WITH 40: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10392 | |
Lennart Poettering | d26e427 | 2012-02-07 03:38:23 +0100 | [diff] [blame] | 10393 | * This is mostly a bugfix release |
| 10394 | |
| 10395 | * We now expose the reason why a service failed in the |
| 10396 | "Result" D-Bus property. |
| 10397 | |
| 10398 | * Rudimentary service watchdog support (will be completed over |
| 10399 | the next few releases.) |
| 10400 | |
| 10401 | * When systemd forks off in order execute some service we will |
| 10402 | now immediately changes its argv[0] to reflect which process |
| 10403 | it will execute. This is useful to minimize the time window |
| 10404 | with a generic argv[0], which makes bootcharts more useful |
| 10405 | |
Lennart Poettering | b13df96 | 2012-02-09 01:06:07 +0100 | [diff] [blame] | 10406 | Contributions from: Alvaro Soliverez, Chris Paulson-Ellis, Kay |
| 10407 | Sievers, Lennart Poettering, Michael Olbrich, Michal Schmidt, |
| 10408 | Mike Kazantsev, Ray Strode |
| 10409 | |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10410 | CHANGES WITH 39: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10411 | |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10412 | * This is mostly a test release, but incorporates many |
| 10413 | bugfixes. |
| 10414 | |
| 10415 | * New systemd-cgtop tool to show control groups by their |
| 10416 | resource usage. |
| 10417 | |
| 10418 | * Linking against libacl for ACLs is optional again. If |
| 10419 | disabled, support tracking device access for active logins |
| 10420 | goes becomes unavailable, and so does access to the user |
| 10421 | journals by the respective users. |
| 10422 | |
| 10423 | * If a group "adm" exists, journal files are automatically |
| 10424 | owned by them, thus allow members of this group full access |
| 10425 | to the system journal as well as all user journals. |
| 10426 | |
| 10427 | * The journal now stores the SELinux context of the logging |
| 10428 | client for all entries. |
| 10429 | |
| 10430 | * Add C++ inclusion guards to all public headers |
| 10431 | |
| 10432 | * New output mode "cat" in the journal to print only text |
| 10433 | messages, without any meta data like date or time. |
| 10434 | |
| 10435 | * Include tiny X server wrapper as a temporary stop-gap to |
| 10436 | teach XOrg udev display enumeration. This is used by display |
| 10437 | managers such as gdm, and will go away as soon as XOrg |
| 10438 | learned native udev hotplugging for display devices. |
| 10439 | |
| 10440 | * Add new systemd-cat tool for executing arbitrary programs |
| 10441 | with STDERR/STDOUT connected to the journal. Can also act as |
| 10442 | BSD logger replacement, and does so by default. |
| 10443 | |
| 10444 | * Optionally store all locally generated coredumps in the |
| 10445 | journal along with meta data. |
| 10446 | |
| 10447 | * systemd-tmpfiles learnt four new commands: n, L, c, b, for |
| 10448 | writing short strings to files (for usage for /sys), and for |
| 10449 | creating symlinks, character and block device nodes. |
| 10450 | |
| 10451 | * New unit file option ControlGroupPersistent= to make cgroups |
| 10452 | persistent, following the mechanisms outlined in |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 10453 | https://www.freedesktop.org/wiki/Software/systemd/PaxControlGroups |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10454 | |
| 10455 | * Support multiple local RTCs in a sane way |
| 10456 | |
| 10457 | * No longer monopolize IO when replaying readahead data on |
| 10458 | rotating disks, since we might starve non-file-system IO to |
| 10459 | death, since fanotify() will not see accesses done by blkid, |
| 10460 | or fsck. |
| 10461 | |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 10462 | * Do not show kernel threads in systemd-cgls anymore, unless |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10463 | requested with new -k switch. |
| 10464 | |
| 10465 | Contributions from: Dan Horák, Kay Sievers, Lennart |
| 10466 | Poettering, Michal Schmidt |
| 10467 | |
| 10468 | CHANGES WITH 38: |
Lennart Poettering | b6a8673 | 2012-09-21 23:05:10 +0200 | [diff] [blame] | 10469 | |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10470 | * This is mostly a test release, but incorporates many |
| 10471 | bugfixes. |
| 10472 | |
| 10473 | * The git repository moved to: |
| 10474 | git://anongit.freedesktop.org/systemd/systemd |
| 10475 | ssh://git.freedesktop.org/git/systemd/systemd |
| 10476 | |
| 10477 | * First release with the journal |
| 10478 | http://0pointer.de/blog/projects/the-journal.html |
| 10479 | |
| 10480 | * The journal replaces both systemd-kmsg-syslogd and |
| 10481 | systemd-stdout-bridge. |
| 10482 | |
| 10483 | * New sd_pid_get_unit() API call in libsystemd-logind |
| 10484 | |
| 10485 | * Many systemadm clean-ups |
| 10486 | |
| 10487 | * Introduce remote-fs-pre.target which is ordered before all |
| 10488 | remote mounts and may be used to start services before all |
| 10489 | remote mounts. |
| 10490 | |
| 10491 | * Added Mageia support |
| 10492 | |
| 10493 | * Add bash completion for systemd-loginctl |
| 10494 | |
| 10495 | * Actively monitor PID file creation for daemons which exit in |
| 10496 | the parent process before having finished writing the PID |
| 10497 | file in the daemon process. Daemons which do this need to be |
| 10498 | fixed (i.e. PID file creation must have finished before the |
| 10499 | parent exits), but we now react a bit more gracefully to them. |
| 10500 | |
| 10501 | * Add colourful boot output, mimicking the well-known output |
| 10502 | of existing distributions. |
| 10503 | |
| 10504 | * New option PassCredentials= for socket units, for |
| 10505 | compatibility with a recent kernel ABI breakage. |
| 10506 | |
| 10507 | * /etc/rc.local is now hooked in via a generator binary, and |
| 10508 | thus will no longer act as synchronization point during |
| 10509 | boot. |
| 10510 | |
| 10511 | * systemctl list-unit-files now supports --root=. |
| 10512 | |
| 10513 | * systemd-tmpfiles now understands two new commands: z, Z for |
| 10514 | relabelling files according to the SELinux database. This is |
| 10515 | useful to apply SELinux labels to specific files in /sys, |
| 10516 | among other things. |
| 10517 | |
| 10518 | * Output of SysV services is now forwarded to both the console |
| 10519 | and the journal by default, not only just the console. |
| 10520 | |
| 10521 | * New man pages for all APIs from libsystemd-login. |
| 10522 | |
Jakub Wilk | ce83087 | 2016-10-22 13:18:17 +0200 | [diff] [blame] | 10523 | * The build tree got reorganized and the build system is a |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10524 | lot more modular allowing embedded setups to specifically |
| 10525 | select the components of systemd they are interested in. |
| 10526 | |
| 10527 | * Support for Linux systems lacking the kernel VT subsystem is |
| 10528 | restored. |
| 10529 | |
| 10530 | * configure's --with-rootdir= got renamed to |
| 10531 | --with-rootprefix= to follow the naming used by udev and |
| 10532 | kmod |
| 10533 | |
Jan Engelhardt | d28315e | 2014-05-03 19:15:23 +0200 | [diff] [blame] | 10534 | * Unless specified otherwise we will now install to /usr instead |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10535 | of /usr/local by default. |
| 10536 | |
| 10537 | * Processes with '@' in argv[0][0] are now excluded from the |
| 10538 | final shut-down killing spree, following the logic explained |
| 10539 | in: |
AsciiWolf | 56cadcb | 2017-02-21 16:03:04 +0100 | [diff] [blame] | 10540 | https://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10541 | |
| 10542 | * All processes remaining in a service cgroup when we enter |
| 10543 | the START or START_PRE states are now killed with |
| 10544 | SIGKILL. That means it is no longer possible to spawn |
| 10545 | background processes from ExecStart= lines (which was never |
| 10546 | supported anyway, and bad style). |
| 10547 | |
| 10548 | * New PropagateReloadTo=/PropagateReloadFrom= options to bind |
| 10549 | reloading of units together. |
| 10550 | |
Lennart Poettering | 4c8cd17 | 2012-05-31 01:58:01 +0200 | [diff] [blame] | 10551 | Contributions from: Bill Nottingham, Daniel J. Walsh, Dave |
Lennart Poettering | 220a21d | 2012-01-25 01:02:41 +0100 | [diff] [blame] | 10552 | Reisner, Dexter Morgan, Gregs Gregs, Jonathan Nieder, Kay |
| 10553 | Sievers, Lennart Poettering, Michael Biebl, Michal Schmidt, |
| 10554 | Michał Górny, Ran Benita, Thomas Jarosch, Tim Waugh, Tollef |
| 10555 | Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek |