Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
systemd: add snapd.core-fixup.service unit #3557
Merged
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
Jump to file or symbol
Failed to load files and symbols.
| @@ -0,0 +1,15 @@ | ||
| +[Unit] | ||
| +Description=Automatically repair incorrect owner/permissions on core devices | ||
| +Before=snapd.service | ||
| +ConditionPathExists=/writable/system-data | ||
| +ConditionPathExists=!/var/lib/snapd/device/ownership-change.after | ||
| +Documentation=man:snap(1) | ||
| + | ||
| +[Service] | ||
| +Type=oneshot | ||
| +ExecStart=@libexecdir@/snapd/snapd.core-fixup.sh | ||
| +RemainAfterExit=true | ||
mvo5
Collaborator
|
||
| + | ||
| +[Install] | ||
| +WantedBy=multi-user.target | ||
| + | ||
| @@ -0,0 +1,40 @@ | ||
| +#!/bin/sh | ||
| + | ||
| +set -e | ||
| + | ||
| +if ! grep -q "ID=ubuntu-core" /etc/os-release; then | ||
| + # this code is only relevant on ubuntu-core devices | ||
| + # | ||
| + # this script will only run via systemd if /writable/system-data | ||
| + # exists however we still add this check here in case people run | ||
| + # it manually | ||
| + exit 0 | ||
| +fi | ||
| + | ||
| +# store important data in case we need it later | ||
| +if [ ! -f /var/lib/snapd/device/ownership-change.before ]; then | ||
| + mkdir -p /var/lib/snapd/device | ||
| + find /etc/cloud /var/lib/cloud /var/lib/snapd -printf '%M %U %G %p\n' > /var/lib/snapd/device/ownership-change.before.tmp || true | ||
| + find /writable/system-data /writable/system-data/var /writable/system-data/var/lib /writable/system-data/boot /writable/system-data/etc -maxdepth 0 -printf '%M %U %G %p\n' >> /var/lib/snapd/device/ownership-change.before.tmp || true | ||
| + mv /var/lib/snapd/device/ownership-change.before.tmp /var/lib/snapd/device/ownership-change.before | ||
| +fi | ||
| + | ||
| +# cleanup read/write files and directories (CVE-2017-10600) | ||
| +for i in /etc/cloud /var/lib/cloud /var/lib/snapd ; do | ||
| + # restore ownership to root:root | ||
| + find "$i" \( -type f -o -type d -o -type l \) -a \( \! -uid 0 -o \! -gid 0 \) -print0 | \ | ||
| + xargs -0 --no-run-if-empty chown -c --no-dereference root:root -- || true | ||
|
|
||
| +done | ||
| + | ||
| +# cleanup a few /writable directories without descending | ||
| +for i in /writable/system-data /writable/system-data/var /writable/system-data/var/lib /writable/system-data/boot /writable/system-data/etc ; do | ||
| + # restore ownership to root:root | ||
| + find "$i" -maxdepth 0 \( \! -uid 0 -o \! -gid 0 -o -type l \) -print0 | \ | ||
| + xargs -0 --no-run-if-empty chown -c --no-dereference root:root -- || true | ||
| +done | ||
| + | ||
| +# store permissions after manipulation, this is also used as the stamp file | ||
| +# for the systemd service to ensure it is only run once | ||
| +find /etc/cloud /var/lib/cloud /var/lib/snapd -printf '%M %U %G %p\n' > /var/lib/snapd/device/ownership-change.after.tmp | ||
| +find /writable/system-data /writable/system-data/var /writable/system-data/var/lib /writable/system-data/boot /writable/system-data/etc -maxdepth 0 -printf '%M %U %G %p\n' >> /var/lib/snapd/device/ownership-change.after.tmp | ||
| +mv /var/lib/snapd/device/ownership-change.after.tmp /var/lib/snapd/device/ownership-change.after | ||
chipaca
Member
|
||
I've read the doc on this flag but it's not clear to me why we don't want the default here ("false")?