sd-login.h revision 034a2a52ac0ec83e0229941d635d310b23eb04df
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#ifndef foosdloginhfoo
#define foosdloginhfoo
/***
This file is part of systemd.
Copyright 2011 Lennart Poettering
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 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.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
/*
* A few points:
*
* Instead of returning an empty string array or empty uid array, we
* may return NULL.
*
* Free the data we return with libc free().
*
* We return error codes as negative errno, kernel-style.
*
* of these are virtual file systems, hence the accesses are
* relatively cheap.
*/
/* Get session from PID. Note that 'shared' processes of a user are
* not attached to a session, but only attached to a user. This will
* return an error for system processes and 'shared' processes of a
* user. */
/* Get UID of the owner of the session of the PID (or in case the
* process is a 'shared' user process the UID of that user is
* returned). This will not return the UID of the process, but rather
* the UID of the owner of the cgroup the process is in. This will
* return an error for system processes. */
/* Get state from uid. Possible states: offline, lingering, online, active */
/* Return 1 if uid has session on seat. If require_active is true will
* look for active sessions only. */
/* Return sessions of user. If require_active is true will look
* for active sessions only. */
/* Return seats of user is on. If require_active is true will look for
* active seats only. */
/* Return 1 if the session is a active */
int sd_session_is_active(const char *session);
/* Determine user id of session */
/* Determine seat of session */
/* Return active session and user of seat */
/* Return sessions and users on seat */
/* Get all seats */
int sd_get_seats(char ***seats);
/* Get all sessions */
int sd_get_sessions(char ***sessions);
/* Get all logged in users */
/* Monitor object */
typedef struct sd_login_monitor sd_login_monitor;
/* Create a new monitor. Category must be NULL, "seat", "session",
* "uid" to get monitor events for the specific category (or all). */
/* Destroys the passed monitor. Returns NULL. */
/* Flushes the monitor */
int sd_login_monitor_flush(sd_login_monitor *m);
/* Get FD from monitor */
int sd_login_monitor_get_fd(sd_login_monitor *m);
#endif