Смущен записями ExecStartPre в системном файле systemd


23

У меня есть служба systemd, в которой нужно создать каталог /run, но в противном случае он будет работать как пользователь без полномочий root. На примере блога я получил следующее решение:

[Unit]
Description=Startup Thing

[Service]
Type=oneshot
ExecStart=/usr/bin/python3 -u /opt/thing/doStartup
WorkingDirectory=/opt/thing
StandardOutput=journal
User=thingUser
# Make sure the /run/thing directory exists
PermissionsStartOnly=true
ExecStartPre=-/bin/mkdir -p /run/thing
ExecStartPre=/bin/chmod -R 777 /run/thing

[Install]
WantedBy=multi-user.target

Магия в 3-х строках, которые следуют за комментарием. Очевидно, что ExecStartPreфайлы будут работать от имени пользователя root, но ExecStartбудут работать от имени указанного пользователя.

Это привело к 3 вопросам, хотя:

  1. Что делает -перед /bin/mkdir? Я не знаю, почему он там или что он делает.
  2. Когда ExecStartPreв файле модуля есть несколько файлов, они запускаются последовательно в порядке их нахождения в файле модуля? Или какой-то другой метод?
  3. Действительно ли это лучший метод для достижения моей цели - создать каталог run, чтобы его могли использовать пользователи без полномочий root?

Причина, по которой ExecStartPreработает от имени пользователя root - это PermissionsStartOnly=trueдиректива. Он ограничивает Userдирективу только ExecStartкомандой. См freedesktop.org/software/systemd/man/systemd.service.html
cayhorstmann

Ответы:


30

По любым вопросам о директивах systemd вы можете использовать man systemd.directivesсправочную страницу, которая документирует директиву. В случае ExecStartPre=, вы найдете это в документации man systemd.service.

Там, в документации для ExecStartPre=, вы найдете объяснение, что начальный «-» используется, чтобы отметить, что сбой допустим для этих команд. В этом случае это допустимо, если /run/thingуже существует.

Документы там также объясняют, что «допускается несколько командных строк и команды выполняются одна за другой последовательно».

Одно из усовершенствований вашего метода предварительного создания каталога - не делать его доступным для записи всем, когда он нужен только для записи конкретному пользователю. Более ограниченные разрешения будут достигнуты с:

 ExecStartPre=-/bin/chown thingUser /run/thing
 ExecStartPre=-/bin/chmod 700       /run/thing

Это делает каталог принадлежащим и полностью доступным для конкретного пользователя.


Потрясающий ответ, спасибо за подсказку systemd.directives, мне всегда сложно найти systemd, куда идти. Что помогает.
Трэвис Григгс

1
Тебе наверное надо прикрывать RuntimeDirectoryи RuntimeDirectoryModeтоже.
JdeBP

2

Ответ № 3:

Проверьте RuntimeDirectory=& RuntimeDirectoryMode=директивы. Полные документы здесь . Но в заключение (небольшое изменение в тексте, но суть должна остаться):

RuntimeDirectory=

       This option take a whitespace-separated list of directory names. The 
       specified directory names must be relative, and may not include "..". If
       set, one or more directories by the specified names will be created
       (including their parents) below /run (for system services) or below 
       $XDG_RUNTIME_DIR (for user services) when the unit is started. Also, the  
       $RUNTIME_DIRECTORY environment variable is defined with the full path of 
       directories. If multiple directories are set, then in the environment 
       variable the paths are concatenated with colon (":").

       The innermost subdirectories are removed when the unit is stopped. It is 
       possible to preserve the specified directories in this case if 
       RuntimeDirectoryPreserve= is configured to restart or yes. The innermost 
       specified directories will be owned by the user and group specified in 
       User= and Group=.

       If the specified directories already exist and their owning user or group 
       do not match the configured ones, all files and directories below the 
       specified directories as well as the directories themselves will have their 
       file ownership recursively changed to match what is configured. As an 
       optimization, if the specified directories are already owned by the right 
       user and group, files and directories below of them are left as-is, even if 
       they do not match what is requested. The innermost specified directories 
       will have their access mode adjusted to the what is specified in 
       RuntimeDirectoryMode=.

       Use RuntimeDirectory= to manage one or more runtime directories for the 
       unit and bind their lifetime to the daemon runtime. This is particularly 
       useful for unprivileged daemons that cannot create runtime directories in 
       /run due to lack of privileges, and to make sure the runtime directory is 
       cleaned up automatically after use. For runtime directories that require 
       more complex or different configuration or lifetime guarantees, please 
       consider using tmpfiles.d(5).


RuntimeDirectoryMode=

       Specifies the access mode of the directories specified in 
       RuntimeDirectory= as an octal number. Defaults to 0755. See "Permissions" 
       in path_resolution(7) for a discussion of the meaning of permission bits.

Таким образом, чтобы использовать это, это должно сделать свое дело:

[Unit]
Description=Startup Thing

[Service]
Type=oneshot
ExecStart=/usr/bin/python3 -u /opt/thing/doStartup
WorkingDirectory=/opt/thing
StandardOutput=journal
User=thingUser
# Make sure the /run/thing directory exists
PermissionsStartOnly=true
RuntimeDirectory=thing
RuntimeDirectoryMode=0777

[Install]
WantedBy=multi-user.target
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.