2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-03-31 18:29:55 +04:00
2012-07-18 21:07:51 +04:00
# pragma once
2010-03-31 18:29:55 +04:00
/***
This file is part of systemd .
2013-06-27 06:14:27 +04:00
Copyright 2013 Lennart Poettering
2010-03-31 18:29:55 +04:00
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
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
2010-03-31 18:29:55 +04:00
( 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
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2010-03-31 18:29:55 +04:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2010-03-31 18:29:55 +04:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2013-06-27 06:14:27 +04:00
# include "list.h"
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
typedef struct CGroupContext CGroupContext ;
typedef struct CGroupDeviceAllow CGroupDeviceAllow ;
typedef struct CGroupBlockIODeviceWeight CGroupBlockIODeviceWeight ;
typedef struct CGroupBlockIODeviceBandwidth CGroupBlockIODeviceBandwidth ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
typedef enum CGroupDevicePolicy {
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
/* When devices listed, will allow those, plus built-in ones,
if none are listed will allow everything . */
CGROUP_AUTO ,
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
/* Everything forbidden, except built-in ones and listed ones. */
CGROUP_CLOSED ,
2010-04-21 06:01:24 +04:00
2013-06-27 06:14:27 +04:00
/* Everythings forbidden, except for the listed devices */
CGROUP_STRICT ,
2010-04-21 06:01:24 +04:00
2013-06-27 06:14:27 +04:00
_CGROUP_DEVICE_POLICY_MAX ,
_CGROUP_DEVICE_POLICY_INVALID = - 1
} CGroupDevicePolicy ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
struct CGroupDeviceAllow {
LIST_FIELDS ( CGroupDeviceAllow , device_allow ) ;
char * path ;
bool r : 1 ;
bool w : 1 ;
bool m : 1 ;
} ;
2010-06-22 01:27:18 +04:00
2013-06-27 06:14:27 +04:00
struct CGroupBlockIODeviceWeight {
LIST_FIELDS ( CGroupBlockIODeviceWeight , device_weights ) ;
char * path ;
unsigned long weight ;
2010-03-31 18:29:55 +04:00
} ;
2013-06-27 06:14:27 +04:00
struct CGroupBlockIODeviceBandwidth {
LIST_FIELDS ( CGroupBlockIODeviceBandwidth , device_bandwidths ) ;
char * path ;
uint64_t bandwidth ;
bool read ;
} ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
struct CGroupContext {
bool cpu_accounting ;
bool blockio_accounting ;
bool memory_accounting ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
unsigned long cpu_shares ;
2014-05-15 19:09:34 +04:00
unsigned long startup_cpu_shares ;
2014-04-25 15:27:25 +04:00
usec_t cpu_quota_per_sec_usec ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
unsigned long blockio_weight ;
2014-05-15 19:09:34 +04:00
unsigned long startup_blockio_weight ;
2013-06-27 06:14:27 +04:00
LIST_HEAD ( CGroupBlockIODeviceWeight , blockio_device_weights ) ;
LIST_HEAD ( CGroupBlockIODeviceBandwidth , blockio_device_bandwidths ) ;
2013-01-12 07:24:12 +04:00
2013-06-27 06:14:27 +04:00
uint64_t memory_limit ;
2011-06-30 02:11:25 +04:00
2013-06-27 06:14:27 +04:00
CGroupDevicePolicy device_policy ;
LIST_HEAD ( CGroupDeviceAllow , device_allow ) ;
} ;
2011-06-30 02:11:25 +04:00
2013-06-27 06:14:27 +04:00
# include "unit.h"
# include "manager.h"
# include "cgroup-util.h"
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
void cgroup_context_init ( CGroupContext * c ) ;
void cgroup_context_done ( CGroupContext * c ) ;
void cgroup_context_dump ( CGroupContext * c , FILE * f , const char * prefix ) ;
2014-05-22 02:06:16 +04:00
void cgroup_context_apply ( CGroupContext * c , CGroupControllerMask mask , const char * path , ManagerState state ) ;
2014-02-14 22:11:07 +04:00
2014-05-22 02:06:16 +04:00
CGroupControllerMask cgroup_context_get_mask ( CGroupContext * c ) ;
2010-07-10 19:34:42 +04:00
2013-06-27 06:14:27 +04:00
void cgroup_context_free_device_allow ( CGroupContext * c , CGroupDeviceAllow * a ) ;
void cgroup_context_free_blockio_device_weight ( CGroupContext * c , CGroupBlockIODeviceWeight * w ) ;
void cgroup_context_free_blockio_device_bandwidth ( CGroupContext * c , CGroupBlockIODeviceBandwidth * b ) ;
2010-03-31 18:29:55 +04:00
2014-02-14 22:11:07 +04:00
CGroupControllerMask unit_get_cgroup_mask ( Unit * u ) ;
CGroupControllerMask unit_get_siblings_mask ( Unit * u ) ;
CGroupControllerMask unit_get_members_mask ( Unit * u ) ;
CGroupControllerMask unit_get_target_mask ( Unit * u ) ;
void unit_update_cgroup_members_masks ( Unit * u ) ;
2013-07-01 01:55:36 +04:00
int unit_realize_cgroup ( Unit * u ) ;
2013-06-27 06:14:27 +04:00
void unit_destroy_cgroup ( Unit * u ) ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
int manager_setup_cgroup ( Manager * m ) ;
void manager_shutdown_cgroup ( Manager * m , bool delete ) ;
2010-04-18 05:04:54 +04:00
2013-06-27 06:14:27 +04:00
unsigned manager_dispatch_cgroup_queue ( Manager * m ) ;
2010-10-27 05:16:49 +04:00
2013-06-27 06:14:27 +04:00
Unit * manager_get_unit_by_cgroup ( Manager * m , const char * cgroup ) ;
Unit * manager_get_unit_by_pid ( Manager * m , pid_t pid ) ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
pid_t unit_search_main_pid ( Unit * u ) ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
int manager_notify_cgroup_empty ( Manager * m , const char * group ) ;
2010-03-31 18:29:55 +04:00
2013-06-27 06:14:27 +04:00
const char * cgroup_device_policy_to_string ( CGroupDevicePolicy i ) _const_ ;
CGroupDevicePolicy cgroup_device_policy_from_string ( const char * s ) _pure_ ;