X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=man%2Fsd_pid_get_session.xml;h=fd1ce4b87e1a1946f18a73a144cc4a5369a3d138;hp=94f533022263c1dd018a37370a2df690fca1cf06;hb=8e7076caae32a560a11c1643b53fc4f12db4a6b1;hpb=50b1678aaba9d3c2be5115db34a822911d791b8c diff --git a/man/sd_pid_get_session.xml b/man/sd_pid_get_session.xml index 94f533022..fd1ce4b87 100644 --- a/man/sd_pid_get_session.xml +++ b/man/sd_pid_get_session.xml @@ -8,20 +8,20 @@ Copyright 2010 Lennart Poettering systemd is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. systemd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + Lesser General Public License for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the GNU Lesser General Public License along with systemd; If not, see . --> - + sd_pid_get_session @@ -45,8 +45,10 @@ sd_pid_get_session sd_pid_get_unit + sd_pid_get_user_unit sd_pid_get_owner_uid - Determine session, service or owner of a session of a specific PID + sd_pid_get_machine_name + Determine session, service, owner of a session or container/VM of a specific PID @@ -65,11 +67,23 @@ char** unit + + int sd_pid_get_user_unit + pid_t pid + char** unit + + int sd_pid_get_owner_uid pid_t pid uid_t* uid + + + int sd_pid_get_machine_name + pid_t pid + char** name + @@ -91,18 +105,28 @@ call after use. sd_pid_get_unit() may be - used to determine the systemd unit (i.e. system + used to determine the systemd system unit (i.e. system service) identifier of a process identified by the - specified process identifier. The unit name is a short - string, suitable for usage in file system paths. Note - that not all processes are part of a unit/service + specified PID. The unit name is a short string, + suitable for usage in file system paths. Note that not + all processes are part of a system unit/service (e.g. user processes, or kernel threads). For - processes not being part of a systemd unit/system - service this function will fail. The returned string - needs to be freed with the libc + processes not being part of a systemd system unit this + function will fail. (More specifically: this call will + not work for processes that are part of user units, + use sd_pid_get_user_unit() for + that.) The returned string needs to be freed with the + libc free3 call after use. + sd_pid_get_user_unit() may + be used to determine the systemd user unit (i.e. user + service) identifier of a process identified by the + specified PID. This is similar to + sd_pid_get_unit() but applies to + user units instead of system units. + sd_pid_get_owner_uid() may be used to determine the Unix user identifier of the owner of the session of a process identified the @@ -114,7 +138,15 @@ and not being a shared process of a user this function will fail. - If the pid paramater of any + sd_pid_machine_name() may + be used to determine the name of the VM or container + is a member of. The machine name is a short string, + suitable for usage in file system paths. The returned + string needs to be freed with the libc + free3 + call after use. + + If the pid parameter of any of these functions is passed as 0 the operation is executed for the calling process. @@ -131,12 +163,13 @@ Notes The sd_pid_get_session(), - sd_pid_get_pid(), and - sd_pid_get_owner_uid() interfaces - are available as shared library, which can be compiled - and linked to with the - libsystemd-login - pkg-config1 + sd_pid_get_unit(), + sd_pid_get_user_unit(), + sd_pid_get_owner_uid() and + sd_pid_get_machine_name() + interfaces are available as shared library, which can + be compiled and linked to with the + libsystemd-login pkg-config1 file. Note that the login session identifier as @@ -151,7 +184,7 @@ systemd1, - sd-login7, + sd-login3, sd_session_is_active3, getsid2