logind.h revision 202630822f52e06dce8404633407329c38099278
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#ifndef foologindhfoo
#define foologindhfoo
/***
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/>.
***/
#include <stdbool.h>
#include <inttypes.h>
#include <libudev.h>
#include "util.h"
#include "list.h"
#include "hashmap.h"
#include "cgroup-util.h"
/* TODO:
*
* recreate VTs when disallocated
* udev rules
* spawn user systemd
* non-local X11 server
* udev-acl
* PAM rewrite
*/
struct Device {
char *sysfs;
};
struct Seat {
char *id;
char *state_file;
};
typedef enum SessionType {
} SessionType;
struct Session {
char *id;
char *state_file;
char *tty;
char *display;
bool remote;
char *remote_host;
int vtnr;
int pipe_fd;
char *cgroup_path;
char **controllers, **reset_controllers;
bool kill_processes;
};
typedef enum UserState {
_USER_STATE_INVALID = -1
} UserState;
struct User {
char *name;
char *state_file;
char *runtime_path;
char *service;
char *cgroup_path;
};
struct Manager {
struct udev_monitor *udev_monitor;
int udev_fd;
int console_active_fd;
int bus_fd;
int epoll_fd;
int n_autovts;
char *cgroup_path;
char **controllers, **reset_controllers;
char **kill_only_users, **kill_exlude_users;
bool kill_user_processes;
};
void device_free(Device *d);
void device_detach(Device *d);
int seat_preallocate_vts(Seat *s);
int seat_apply_acls(Seat *s);
void session_free(Session *s);
int session_activate(Session *s);
bool session_is_active(Session *s);
int session_check_gc(Session *s);
int session_start(Session *s);
int session_stop(Session *s);
int session_save(Session *s);
int session_load(Session *s);
int user_start(User *u);
int user_check_gc(User *u);
Manager *manager_new(void);
void manager_free(Manager *m);
int manager_dispatch_udev(Manager *m);
int manager_dispatch_console(Manager *m);
int manager_enumerate_devices(Manager *m);
int manager_enumerate_seats(Manager *m);
int manager_enumerate_sessions(Manager *m);
int manager_enumerate_users(Manager *m);
int manager_start_linger_users(Manager *m);
int manager_startup(Manager *m);
int manager_run(Manager *m);
const char* session_type_to_string(SessionType t);
SessionType session_type_from_string(const char *s);
const char* user_state_to_string(UserState s);
UserState user_state_from_string(const char *s);
bool x11_display_is_local(const char *display);
#endif