]> git.ipfire.org Git - thirdparty/systemd.git/commit - src/core/device.c
core: make mount units from /proc/self/mountinfo possibly bind to a device (#4515)
authorFranck Bui <fbui@suse.com>
Fri, 16 Dec 2016 16:13:58 +0000 (17:13 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 16 Dec 2016 16:13:58 +0000 (17:13 +0100)
commitebc8968bc0b6fc460099041f5ae1262ca17eeb6e
treea1c3593e691fae26283c8bf2f38649c1e33b15d8
parentd6ccb4f9428102ac784f8ebd5d937d5363146c1d
core: make mount units from /proc/self/mountinfo possibly bind to a device (#4515)

Since commit 9d06297, mount units from mountinfo are not bound to their devices
anymore (they use the "Requires" dependency instead).

This has the following drawback: if a media is mounted and the eject button is
pressed then the media is unconditionally ejected leaving some inconsistent
states.

Since udev is the component that is reacting (no matter if the device is used
or not) to the eject button, users expect that udev at least try to unmount the
media properly.

This patch introduces a new property "SYSTEMD_MOUNT_DEVICE_BOUND". When set on
a block device, all units that requires this device will see their "Requires"
dependency upgraded to a "BindTo" one. This is currently only used by cdrom
devices.

This patch also gives the possibility to the user to restore the previous
behavior that is bind a mount unit to a device. This is achieved by passing the
"x-systemd.device-bound" option to mount(8). Please note that currently this is
not working because libmount treats the x-* options has comments therefore
they're not available in utab for later application retrievals.
man/systemd.mount.xml
rules/60-cdrom_id.rules
src/core/device.c
src/core/device.h
src/core/mount.c
src/core/unit.c