2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2009-11-18 02:42:52 +03:00
# ifndef foomanagerhfoo
# define foomanagerhfoo
2010-02-03 15:03:47 +03:00
/***
This file is part of systemd .
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
( 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/>.
* * */
2009-11-18 02:42:52 +03:00
# include <stdbool.h>
# include <inttypes.h>
2010-01-19 02:22:34 +03:00
# include <stdio.h>
2010-02-01 05:33:24 +03:00
# include <dbus/dbus.h>
2010-04-21 05:27:44 +04:00
# include "fdset.h"
2010-04-22 04:56:42 +04:00
/* Enforce upper limit how many names we allow */
2010-11-25 01:36:40 +03:00
# define MANAGER_MAX_NAMES 131072 /* 128K */
2010-04-22 04:56:42 +04:00
2009-11-18 02:42:52 +03:00
typedef struct Manager Manager ;
2010-01-27 06:31:52 +03:00
typedef enum WatchType WatchType ;
typedef struct Watch Watch ;
2010-04-21 05:27:44 +04:00
typedef enum ManagerExitCode {
MANAGER_RUNNING ,
MANAGER_EXIT ,
MANAGER_RELOAD ,
MANAGER_REEXECUTE ,
2010-10-14 02:52:26 +04:00
MANAGER_REBOOT ,
MANAGER_POWEROFF ,
MANAGER_HALT ,
MANAGER_KEXEC ,
2010-04-21 05:27:44 +04:00
_MANAGER_EXIT_CODE_MAX ,
_MANAGER_EXIT_CODE_INVALID = - 1
} ManagerExitCode ;
2010-02-12 23:57:39 +03:00
typedef enum ManagerRunningAs {
2010-06-19 05:15:59 +04:00
MANAGER_SYSTEM ,
2010-11-16 00:12:41 +03:00
MANAGER_USER ,
2010-02-12 23:57:39 +03:00
_MANAGER_RUNNING_AS_MAX ,
_MANAGER_RUNNING_AS_INVALID = - 1
} ManagerRunningAs ;
2010-01-27 06:31:52 +03:00
enum WatchType {
WATCH_INVALID ,
2010-01-29 08:04:08 +03:00
WATCH_SIGNAL ,
2010-06-16 07:10:31 +04:00
WATCH_NOTIFY ,
2010-01-27 06:31:52 +03:00
WATCH_FD ,
2010-07-17 06:09:28 +04:00
WATCH_UNIT_TIMER ,
WATCH_JOB_TIMER ,
2010-01-29 08:45:59 +03:00
WATCH_MOUNT ,
2010-10-19 01:09:09 +04:00
WATCH_SWAP ,
2010-02-01 05:33:24 +03:00
WATCH_UDEV ,
WATCH_DBUS_WATCH ,
WATCH_DBUS_TIMEOUT
2010-01-27 06:31:52 +03:00
} ;
struct Watch {
int fd ;
WatchType type ;
2010-02-01 05:33:24 +03:00
union {
union Unit * unit ;
2010-07-17 06:09:28 +04:00
struct Job * job ;
2010-02-01 05:33:24 +03:00
DBusWatch * bus_watch ;
DBusTimeout * bus_timeout ;
} data ;
2010-04-24 00:11:13 +04:00
bool fd_is_dupped : 1 ;
bool socket_accept : 1 ;
2010-01-27 06:31:52 +03:00
} ;
2009-11-18 02:42:52 +03:00
2010-01-26 23:39:06 +03:00
# include "unit.h"
2009-11-18 02:42:52 +03:00
# include "job.h"
# include "hashmap.h"
# include "list.h"
# include "set.h"
2010-02-01 05:33:24 +03:00
# include "dbus.h"
2010-06-15 16:45:15 +04:00
# include "path-lookup.h"
2009-11-18 02:42:52 +03:00
struct Manager {
2010-01-26 23:39:06 +03:00
/* Note that the set of units we know of is allowed to be
2011-02-21 17:32:17 +03:00
* inconsistent . However the subset of it that is loaded may
2010-01-19 01:50:13 +03:00
* not , and the list of jobs may neither . */
2010-01-26 23:39:06 +03:00
/* Active jobs and units */
Hashmap * units ; /* name string => Unit object n:1 */
2009-11-18 02:42:52 +03:00
Hashmap * jobs ; /* job id => Job object 1:1 */
2010-01-29 08:04:08 +03:00
/* To make it easy to iterate through the units of a specific
* type we maintain a per type linked list */
2011-05-24 01:53:43 +04:00
LIST_HEAD ( Meta , units_by_type [ _UNIT_TYPE_MAX ] ) ;
2010-01-29 08:04:08 +03:00
2010-01-26 23:39:06 +03:00
/* Units that need to be loaded */
2009-11-18 02:42:52 +03:00
LIST_HEAD ( Meta , load_queue ) ; /* this is actually more a stack than a queue, but uh. */
2010-01-26 06:18:44 +03:00
/* Jobs that need to be run */
LIST_HEAD ( Job , run_queue ) ; /* more a stack than a queue, too */
2010-02-05 02:38:41 +03:00
/* Units and jobs that have not yet been announced via
* D - Bus . When something about a job changes it is added here
* if it is not in there yet . This allows easy coalescing of
* D - Bus change signals . */
LIST_HEAD ( Meta , dbus_unit_queue ) ;
LIST_HEAD ( Job , dbus_job_queue ) ;
2010-04-21 08:01:13 +04:00
/* Units to remove */
2010-04-06 04:43:58 +04:00
LIST_HEAD ( Meta , cleanup_queue ) ;
2010-04-21 08:01:13 +04:00
/* Units to check when doing GC */
LIST_HEAD ( Meta , gc_queue ) ;
2010-01-20 04:12:51 +03:00
/* Jobs to be added */
2010-01-26 23:39:06 +03:00
Hashmap * transaction_jobs ; /* Unit object => Job object list 1:1 */
2010-01-20 04:12:51 +03:00
JobDependency * transaction_anchor ;
2009-11-19 04:52:17 +03:00
2010-01-26 23:39:06 +03:00
Hashmap * watch_pids ; /* pid => Unit object n:1 */
2010-01-24 02:39:29 +03:00
2010-06-19 01:12:48 +04:00
char * notify_socket ;
2010-06-16 07:10:31 +04:00
Watch notify_watch ;
2010-04-21 06:01:24 +04:00
Watch signal_watch ;
2010-01-24 02:39:29 +03:00
int epoll_fd ;
2010-01-27 06:31:52 +03:00
2010-04-21 06:01:24 +04:00
unsigned n_snapshots ;
2010-01-28 04:01:15 +03:00
2010-06-15 16:45:15 +04:00
LookupPaths lookup_paths ;
2010-07-11 02:52:00 +04:00
Set * unit_path_cache ;
2010-02-13 03:07:02 +03:00
2010-05-10 01:53:52 +04:00
char * * environment ;
2010-11-18 02:42:35 +03:00
char * * default_controllers ;
2010-05-10 01:53:52 +04:00
2010-11-08 08:31:09 +03:00
dual_timestamp initrd_timestamp ;
2010-07-01 02:26:44 +04:00
dual_timestamp startup_timestamp ;
2010-09-21 06:14:38 +04:00
dual_timestamp finish_timestamp ;
2010-04-17 01:24:39 +04:00
2010-11-11 23:28:33 +03:00
char * generator_unit_path ;
2010-08-30 23:31:40 +04:00
2010-01-29 08:04:08 +03:00
/* Data specific to the device subsystem */
2010-01-28 08:46:33 +03:00
struct udev * udev ;
2010-01-29 08:45:59 +03:00
struct udev_monitor * udev_monitor ;
Watch udev_watch ;
2010-07-20 22:33:19 +04:00
Hashmap * devices_by_sysfs ;
2010-01-29 08:04:08 +03:00
/* Data specific to the mount subsystem */
FILE * proc_self_mountinfo ;
Watch mount_watch ;
2010-02-01 05:33:24 +03:00
2010-05-09 20:44:11 +04:00
/* Data specific to the swap filesystem */
FILE * proc_swaps ;
2010-10-12 06:07:43 +04:00
Hashmap * swaps_by_proc_swaps ;
bool request_reload ;
2010-10-19 01:09:09 +04:00
Watch swap_watch ;
2010-05-09 20:44:11 +04:00
2010-02-01 05:33:24 +03:00
/* Data specific to the D-Bus subsystem */
2010-04-06 18:32:07 +04:00
DBusConnection * api_bus , * system_bus ;
2010-06-19 05:04:04 +04:00
DBusServer * private_bus ;
Set * bus_connections , * bus_connections_for_dispatch ;
2010-04-21 05:27:44 +04:00
DBusMessage * queued_message ; /* This is used during reloading:
* before the reload we queue the
* reply message here , and
* afterwards we send it */
2010-07-07 04:21:16 +04:00
DBusConnection * queued_message_connection ; /* The connection to send the queued message on */
2010-03-31 18:29:55 +04:00
2010-04-16 01:16:16 +04:00
Hashmap * watch_bus ; /* D-Bus names => Unit object n:1 */
int32_t name_data_slot ;
2010-07-05 02:58:07 +04:00
int32_t subscribed_data_slot ;
2010-04-16 01:16:16 +04:00
2010-08-12 00:37:10 +04:00
uint32_t current_job_id ;
2010-04-21 06:01:24 +04:00
/* Data specific to the Automount subsystem */
int dev_autofs_fd ;
2010-03-31 18:29:55 +04:00
/* Data specific to the cgroup subsystem */
Hashmap * cgroup_bondings ; /* path string => CGroupBonding object 1:n */
char * cgroup_hierarchy ;
2010-04-10 19:53:17 +04:00
2010-04-21 08:01:13 +04:00
usec_t gc_queue_timestamp ;
int gc_marker ;
unsigned n_in_gc_queue ;
2011-02-21 17:32:17 +03:00
/* Make sure the user cannot accidentally unmount our cgroup
2010-06-18 22:15:34 +04:00
* file system */
int pin_cgroupfs_fd ;
2010-08-11 03:43:23 +04:00
/* Audit fd */
# ifdef HAVE_AUDIT
int audit_fd ;
# endif
2010-04-21 06:01:24 +04:00
/* Flags */
ManagerRunningAs running_as ;
2010-10-14 02:52:26 +04:00
ManagerExitCode exit_code : 5 ;
2010-04-18 05:07:42 +04:00
2010-04-21 06:01:24 +04:00
bool dispatching_load_queue : 1 ;
bool dispatching_run_queue : 1 ;
bool dispatching_dbus_queue : 1 ;
2011-03-30 02:47:50 +04:00
bool taint_usr : 1 ;
2010-07-07 02:00:59 +04:00
bool show_status ;
2010-07-04 06:47:19 +04:00
bool confirm_spawn ;
2010-09-21 07:23:12 +04:00
# ifdef HAVE_SYSV_COMPAT
2010-08-09 20:00:24 +04:00
bool sysv_console ;
2010-09-21 07:23:12 +04:00
# endif
2010-08-25 05:11:26 +04:00
bool mount_auto ;
2010-08-25 22:37:04 +04:00
bool swap_auto ;
2010-08-25 05:11:26 +04:00
2011-02-15 13:52:29 +03:00
ExecOutput default_std_output , default_std_error ;
2011-07-06 02:47:39 +04:00
/* non-zero if we are reloading or reexecuting, */
int n_reloading ;
2010-09-21 05:51:31 +04:00
unsigned n_installed_jobs ;
2010-09-23 17:38:42 +04:00
unsigned n_failed_jobs ;
2009-11-18 02:42:52 +03:00
} ;
2010-07-07 02:00:59 +04:00
int manager_new ( ManagerRunningAs running_as , Manager * * m ) ;
2009-11-18 02:42:52 +03:00
void manager_free ( Manager * m ) ;
2010-04-21 05:27:44 +04:00
int manager_enumerate ( Manager * m ) ;
2010-01-29 05:18:09 +03:00
int manager_coldplug ( Manager * m ) ;
2010-04-21 05:27:44 +04:00
int manager_startup ( Manager * m , FILE * serialization , FDSet * fds ) ;
2010-01-29 05:18:09 +03:00
2009-11-18 02:42:52 +03:00
Job * manager_get_job ( Manager * m , uint32_t id ) ;
2010-01-26 23:39:06 +03:00
Unit * manager_get_unit ( Manager * m , const char * name ) ;
2009-11-18 02:42:52 +03:00
2010-02-01 05:33:24 +03:00
int manager_get_unit_from_dbus_path ( Manager * m , const char * s , Unit * * _u ) ;
2010-02-02 14:42:08 +03:00
int manager_get_job_from_dbus_path ( Manager * m , const char * s , Job * * _j ) ;
2010-02-01 05:33:24 +03:00
2010-07-08 04:43:18 +04:00
int manager_load_unit_prepare ( Manager * m , const char * name , const char * path , DBusError * e , Unit * * _ret ) ;
int manager_load_unit ( Manager * m , const char * name , const char * path , DBusError * e , Unit * * _ret ) ;
2010-04-13 03:59:06 +04:00
2010-07-08 04:43:18 +04:00
int manager_add_job ( Manager * m , JobType type , Unit * unit , JobMode mode , bool force , DBusError * e , Job * * _ret ) ;
int manager_add_job_by_name ( Manager * m , JobType type , const char * name , JobMode mode , bool force , DBusError * e , Job * * _ret ) ;
2009-11-18 02:42:52 +03:00
2010-01-26 23:39:06 +03:00
void manager_dump_units ( Manager * s , FILE * f , const char * prefix ) ;
2010-01-20 06:02:39 +03:00
void manager_dump_jobs ( Manager * s , FILE * f , const char * prefix ) ;
2010-01-19 02:22:34 +03:00
2010-04-06 04:43:58 +04:00
void manager_transaction_unlink_job ( Manager * m , Job * j , bool delete_dependencies ) ;
2010-01-20 04:12:51 +03:00
2010-01-20 07:03:52 +03:00
void manager_clear_jobs ( Manager * m ) ;
2010-02-05 02:38:41 +03:00
unsigned manager_dispatch_load_queue ( Manager * m ) ;
unsigned manager_dispatch_run_queue ( Manager * m ) ;
unsigned manager_dispatch_dbus_queue ( Manager * m ) ;
2010-01-29 05:18:09 +03:00
2010-11-18 02:42:35 +03:00
int manager_set_default_controllers ( Manager * m , char * * controllers ) ;
2010-08-30 23:31:40 +04:00
2010-01-24 02:39:29 +03:00
int manager_loop ( Manager * m ) ;
2010-01-24 00:56:47 +03:00
2010-04-16 01:16:16 +04:00
void manager_dispatch_bus_name_owner_changed ( Manager * m , const char * name , const char * old_owner , const char * new_owner ) ;
void manager_dispatch_bus_query_pid_done ( Manager * m , const char * name , pid_t pid ) ;
2010-07-20 22:54:33 +04:00
int manager_open_serialization ( Manager * m , FILE * * _f ) ;
2010-04-21 05:27:44 +04:00
int manager_serialize ( Manager * m , FILE * f , FDSet * fds ) ;
int manager_deserialize ( Manager * m , FILE * f , FDSet * fds ) ;
int manager_reload ( Manager * m ) ;
2010-07-07 02:00:59 +04:00
bool manager_is_booting_or_shutting_down ( Manager * m ) ;
2010-08-31 02:23:34 +04:00
void manager_reset_failed ( Manager * m ) ;
2010-07-18 06:58:01 +04:00
2010-08-11 03:43:23 +04:00
void manager_send_unit_audit ( Manager * m , Unit * u , int type , bool success ) ;
2010-10-06 05:55:49 +04:00
void manager_send_unit_plymouth ( Manager * m , Unit * u ) ;
2010-08-11 03:43:23 +04:00
2010-09-01 05:30:59 +04:00
bool manager_unit_pending_inactive ( Manager * m , const char * name ) ;
2010-09-21 06:14:38 +04:00
void manager_check_finished ( Manager * m ) ;
2010-11-11 23:28:33 +03:00
void manager_run_generators ( Manager * m ) ;
void manager_undo_generators ( Manager * m ) ;
2011-03-18 06:31:22 +03:00
void manager_recheck_syslog ( Manager * m ) ;
2010-04-16 01:16:16 +04:00
const char * manager_running_as_to_string ( ManagerRunningAs i ) ;
ManagerRunningAs manager_running_as_from_string ( const char * s ) ;
2009-11-18 02:42:52 +03:00
# endif