2010-08-14 21:59:25 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-05-24 07:25:33 +04: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/>.
* * */
# include <sys/inotify.h>
# include <sys/epoll.h>
# include <sys/ioctl.h>
# include <errno.h>
# include <unistd.h>
# include "unit.h"
# include "unit-name.h"
# include "path.h"
# include "dbus-path.h"
2010-07-03 21:48:33 +04:00
# include "special.h"
2010-07-08 04:43:18 +04:00
# include "bus-errors.h"
2010-05-24 07:25:33 +04:00
static const UnitActiveState state_translation_table [ _PATH_STATE_MAX ] = {
[ PATH_DEAD ] = UNIT_INACTIVE ,
[ PATH_WAITING ] = UNIT_ACTIVE ,
[ PATH_RUNNING ] = UNIT_ACTIVE ,
2010-08-31 02:23:34 +04:00
[ PATH_FAILED ] = UNIT_FAILED
2010-05-24 07:25:33 +04:00
} ;
2011-04-10 03:30:14 +04:00
static void path_init ( Unit * u ) {
Path * p = PATH ( u ) ;
assert ( u ) ;
assert ( u - > meta . load_state = = UNIT_STUB ) ;
p - > directory_mode = 0755 ;
}
2010-11-15 23:30:52 +03:00
static void path_unwatch_one ( Path * p , PathSpec * s ) {
if ( s - > inotify_fd < 0 )
return ;
unit_unwatch_fd ( UNIT ( p ) , & s - > watch ) ;
close_nointr_nofail ( s - > inotify_fd ) ;
s - > inotify_fd = - 1 ;
}
2010-05-24 07:25:33 +04:00
static void path_done ( Unit * u ) {
Path * p = PATH ( u ) ;
PathSpec * s ;
assert ( p ) ;
while ( ( s = p - > specs ) ) {
2010-11-15 23:30:52 +03:00
path_unwatch_one ( p , s ) ;
2010-05-24 07:25:33 +04:00
LIST_REMOVE ( PathSpec , spec , p - > specs , s ) ;
2010-11-15 23:30:52 +03:00
free ( s - > path ) ;
2010-05-24 07:25:33 +04:00
free ( s ) ;
}
}
int path_add_one_mount_link ( Path * p , Mount * m ) {
PathSpec * s ;
int r ;
assert ( p ) ;
assert ( m ) ;
if ( p - > meta . load_state ! = UNIT_LOADED | |
m - > meta . load_state ! = UNIT_LOADED )
return 0 ;
LIST_FOREACH ( spec , s , p - > specs ) {
if ( ! path_startswith ( s - > path , m - > where ) )
continue ;
2010-07-03 21:46:38 +04:00
if ( ( r = unit_add_two_dependencies ( UNIT ( p ) , UNIT_AFTER , UNIT_REQUIRES , UNIT ( m ) , true ) ) < 0 )
2010-05-24 07:25:33 +04:00
return r ;
}
return 0 ;
}
static int path_add_mount_links ( Path * p ) {
Meta * other ;
int r ;
assert ( p ) ;
LIST_FOREACH ( units_per_type , other , p - > meta . manager - > units_per_type [ UNIT_MOUNT ] )
if ( ( r = path_add_one_mount_link ( p , ( Mount * ) other ) ) < 0 )
return r ;
return 0 ;
}
static int path_verify ( Path * p ) {
assert ( p ) ;
2010-06-19 18:55:49 +04:00
if ( p - > meta . load_state ! = UNIT_LOADED )
2010-05-24 07:25:33 +04:00
return 0 ;
if ( ! p - > specs ) {
log_error ( " %s lacks path setting. Refusing. " , p - > meta . id ) ;
return - EINVAL ;
}
return 0 ;
}
2010-07-16 20:57:21 +04:00
static int path_add_default_dependencies ( Path * p ) {
int r ;
assert ( p ) ;
2010-10-29 08:04:03 +04:00
if ( p - > meta . manager - > running_as = = MANAGER_SYSTEM ) {
if ( ( r = unit_add_dependency_by_name ( UNIT ( p ) , UNIT_BEFORE , SPECIAL_BASIC_TARGET , NULL , true ) ) < 0 )
return r ;
2010-07-16 20:57:21 +04:00
if ( ( r = unit_add_two_dependencies_by_name ( UNIT ( p ) , UNIT_AFTER , UNIT_REQUIRES , SPECIAL_SYSINIT_TARGET , NULL , true ) ) < 0 )
return r ;
2010-10-29 08:04:03 +04:00
}
2010-07-16 20:57:21 +04:00
2010-10-29 03:15:18 +04:00
return unit_add_two_dependencies_by_name ( UNIT ( p ) , UNIT_BEFORE , UNIT_CONFLICTS , SPECIAL_SHUTDOWN_TARGET , NULL , true ) ;
2010-07-16 20:57:21 +04:00
}
2010-05-24 07:25:33 +04:00
static int path_load ( Unit * u ) {
Path * p = PATH ( u ) ;
int r ;
assert ( u ) ;
assert ( u - > meta . load_state = = UNIT_STUB ) ;
if ( ( r = unit_load_fragment_and_dropin ( u ) ) < 0 )
return r ;
if ( u - > meta . load_state = = UNIT_LOADED ) {
if ( ! p - > unit )
if ( ( r = unit_load_related_unit ( u , " .service " , & p - > unit ) ) )
return r ;
if ( ( r = unit_add_dependency ( u , UNIT_BEFORE , p - > unit , true ) ) < 0 )
return r ;
if ( ( r = path_add_mount_links ( p ) ) < 0 )
return r ;
2010-07-03 21:48:33 +04:00
if ( p - > meta . default_dependencies )
2010-07-16 20:57:21 +04:00
if ( ( r = path_add_default_dependencies ( p ) ) < 0 )
2010-07-03 21:48:33 +04:00
return r ;
2010-05-24 07:25:33 +04:00
}
return path_verify ( p ) ;
}
static void path_dump ( Unit * u , FILE * f , const char * prefix ) {
Path * p = PATH ( u ) ;
PathSpec * s ;
2010-08-12 00:04:22 +04:00
assert ( p ) ;
assert ( f ) ;
2010-05-24 07:25:33 +04:00
fprintf ( f ,
" %sPath State: %s \n "
2011-04-10 03:30:14 +04:00
" %sUnit: %s \n "
" %sMakeDirectory: %s \n "
" %sDirectoryMode: %04o \n " ,
2010-05-24 07:25:33 +04:00
prefix , path_state_to_string ( p - > state ) ,
2011-04-10 03:30:14 +04:00
prefix , p - > unit - > meta . id ,
prefix , yes_no ( p - > make_directory ) ,
prefix , p - > directory_mode ) ;
2010-05-24 07:25:33 +04:00
LIST_FOREACH ( spec , s , p - > specs )
fprintf ( f ,
" %s%s: %s \n " ,
prefix ,
path_type_to_string ( s - > type ) ,
s - > path ) ;
}
static int path_watch_one ( Path * p , PathSpec * s ) {
static const int flags_table [ _PATH_TYPE_MAX ] = {
2010-11-15 02:47:29 +03:00
[ PATH_EXISTS ] = IN_DELETE_SELF | IN_MOVE_SELF | IN_ATTRIB ,
2010-05-24 07:25:33 +04:00
[ PATH_CHANGED ] = IN_DELETE_SELF | IN_MOVE_SELF | IN_ATTRIB | IN_CLOSE_WRITE | IN_CREATE | IN_DELETE | IN_MOVED_FROM | IN_MOVED_TO ,
2010-11-15 02:47:29 +03:00
[ PATH_DIRECTORY_NOT_EMPTY ] = IN_DELETE_SELF | IN_MOVE_SELF | IN_ATTRIB | IN_CREATE | IN_MOVED_TO
2010-05-24 07:25:33 +04:00
} ;
bool exists = false ;
2010-12-01 17:39:52 +03:00
char * k , * slash ;
2010-05-24 07:25:33 +04:00
int r ;
assert ( p ) ;
assert ( s ) ;
path_unwatch_one ( p , s ) ;
if ( ! ( k = strdup ( s - > path ) ) )
return - ENOMEM ;
if ( ( s - > inotify_fd = inotify_init1 ( IN_NONBLOCK | IN_CLOEXEC ) ) < 0 ) {
r = - errno ;
goto fail ;
}
if ( unit_watch_fd ( UNIT ( p ) , s - > inotify_fd , EPOLLIN , & s - > watch ) < 0 ) {
r = - errno ;
goto fail ;
}
if ( ( s - > primary_wd = inotify_add_watch ( s - > inotify_fd , k , flags_table [ s - > type ] ) ) > = 0 )
exists = true ;
2010-12-01 17:39:52 +03:00
do {
2010-05-24 07:25:33 +04:00
int flags ;
/* This assumes the path was passed through path_kill_slashes()! */
if ( ! ( slash = strrchr ( k , ' / ' ) ) )
break ;
2010-12-01 17:39:52 +03:00
/* Trim the path at the last slash. Keep the slash if it's the root dir. */
slash [ slash = = k ] = 0 ;
2010-05-24 07:25:33 +04:00
2011-03-04 02:22:00 +03:00
flags = IN_MOVE_SELF ;
2010-05-24 07:25:33 +04:00
if ( ! exists )
2011-03-04 02:22:00 +03:00
flags | = IN_DELETE_SELF | IN_ATTRIB | IN_CREATE | IN_MOVED_TO ;
2010-05-24 07:25:33 +04:00
if ( inotify_add_watch ( s - > inotify_fd , k , flags ) > = 0 )
exists = true ;
2010-12-01 17:39:52 +03:00
} while ( slash ! = k ) ;
2010-05-24 07:25:33 +04:00
return 0 ;
fail :
free ( k ) ;
path_unwatch_one ( p , s ) ;
return r ;
}
static void path_unwatch ( Path * p ) {
PathSpec * s ;
assert ( p ) ;
LIST_FOREACH ( spec , s , p - > specs )
path_unwatch_one ( p , s ) ;
}
static int path_watch ( Path * p ) {
int r ;
PathSpec * s ;
assert ( p ) ;
LIST_FOREACH ( spec , s , p - > specs )
if ( ( r = path_watch_one ( p , s ) ) < 0 )
return r ;
return 0 ;
}
static void path_set_state ( Path * p , PathState state ) {
PathState old_state ;
assert ( p ) ;
old_state = p - > state ;
p - > state = state ;
2010-11-15 02:49:21 +03:00
if ( state ! = PATH_WAITING & &
( state ! = PATH_RUNNING | | p - > inotify_triggered ) )
2010-05-24 07:25:33 +04:00
path_unwatch ( p ) ;
if ( state ! = old_state )
log_debug ( " %s changed %s -> %s " ,
p - > meta . id ,
path_state_to_string ( old_state ) ,
path_state_to_string ( state ) ) ;
2011-01-20 15:17:22 +03:00
unit_notify ( UNIT ( p ) , state_translation_table [ old_state ] , state_translation_table [ state ] , true ) ;
2010-05-24 07:25:33 +04:00
}
2011-04-28 05:22:05 +04:00
static void path_enter_waiting ( Path * p , bool initial , bool recheck ) ;
2010-05-24 07:25:33 +04:00
static int path_coldplug ( Unit * u ) {
Path * p = PATH ( u ) ;
assert ( p ) ;
assert ( p - > state = = PATH_DEAD ) ;
if ( p - > deserialized_state ! = p - > state ) {
if ( p - > deserialized_state = = PATH_WAITING | |
p - > deserialized_state = = PATH_RUNNING )
2011-04-28 05:22:05 +04:00
path_enter_waiting ( p , true , true ) ;
2010-05-24 07:25:33 +04:00
else
path_set_state ( p , p - > deserialized_state ) ;
}
return 0 ;
}
static void path_enter_dead ( Path * p , bool success ) {
assert ( p ) ;
if ( ! success )
p - > failure = true ;
2010-08-31 02:23:34 +04:00
path_set_state ( p , p - > failure ? PATH_FAILED : PATH_DEAD ) ;
2010-05-24 07:25:33 +04:00
}
static void path_enter_running ( Path * p ) {
int r ;
2010-07-08 04:43:18 +04:00
DBusError error ;
2010-05-24 07:25:33 +04:00
assert ( p ) ;
2010-07-08 04:43:18 +04:00
dbus_error_init ( & error ) ;
2010-05-24 07:25:33 +04:00
2010-07-13 02:27:27 +04:00
/* Don't start job if we are supposed to go down */
if ( p - > meta . job & & p - > meta . job - > type = = JOB_STOP )
return ;
2010-07-08 04:43:18 +04:00
if ( ( r = manager_add_job ( p - > meta . manager , JOB_START , p - > unit , JOB_REPLACE , true , & error , NULL ) ) < 0 )
2010-05-24 07:25:33 +04:00
goto fail ;
2010-11-15 02:49:21 +03:00
p - > inotify_triggered = false ;
if ( ( r = path_watch ( p ) ) < 0 )
goto fail ;
2010-05-24 07:25:33 +04:00
path_set_state ( p , PATH_RUNNING ) ;
return ;
fail :
2010-07-08 04:43:18 +04:00
log_warning ( " %s failed to queue unit startup job: %s " , p - > meta . id , bus_error ( & error , r ) ) ;
2010-05-24 07:25:33 +04:00
path_enter_dead ( p , false ) ;
2010-07-08 04:43:18 +04:00
dbus_error_free ( & error ) ;
2010-05-24 07:25:33 +04:00
}
2011-04-28 05:22:05 +04:00
static bool path_check_good ( Path * p , bool initial ) {
2010-05-24 07:25:33 +04:00
PathSpec * s ;
bool good = false ;
2011-04-28 05:22:05 +04:00
assert ( p ) ;
2010-11-15 02:49:21 +03:00
2010-05-24 07:25:33 +04:00
LIST_FOREACH ( spec , s , p - > specs ) {
switch ( s - > type ) {
case PATH_EXISTS :
good = access ( s - > path , F_OK ) > = 0 ;
break ;
2010-11-15 22:06:49 +03:00
case PATH_DIRECTORY_NOT_EMPTY : {
int k ;
k = dir_is_empty ( s - > path ) ;
good = ! ( k = = - ENOENT | | k > 0 ) ;
2010-05-24 07:25:33 +04:00
break ;
2010-11-15 22:06:49 +03:00
}
2010-05-24 07:25:33 +04:00
case PATH_CHANGED : {
bool b ;
b = access ( s - > path , F_OK ) > = 0 ;
good = ! initial & & b ! = s - > previous_exists ;
s - > previous_exists = b ;
break ;
}
default :
;
}
if ( good )
break ;
}
2011-04-28 05:22:05 +04:00
return good ;
}
2010-05-24 07:25:33 +04:00
2011-04-28 05:22:05 +04:00
static void path_enter_waiting ( Path * p , bool initial , bool recheck ) {
int r ;
2011-03-04 03:49:37 +03:00
2011-04-28 05:22:05 +04:00
if ( recheck )
if ( path_check_good ( p , initial ) ) {
log_debug ( " %s got triggered. " , p - > meta . id ) ;
path_enter_running ( p ) ;
return ;
}
if ( ( r = path_watch ( p ) ) < 0 )
goto fail ;
/* Hmm, so now we have created inotify watches, but the file
* might have appeared / been removed by now , so we must
* recheck */
if ( recheck )
if ( path_check_good ( p , false ) ) {
log_debug ( " %s got triggered. " , p - > meta . id ) ;
path_enter_running ( p ) ;
return ;
}
2010-05-24 07:25:33 +04:00
path_set_state ( p , PATH_WAITING ) ;
return ;
fail :
log_warning ( " %s failed to enter waiting state: %s " , p - > meta . id , strerror ( - r ) ) ;
path_enter_dead ( p , false ) ;
}
2011-04-10 03:30:14 +04:00
static void path_mkdir ( Path * p ) {
PathSpec * s ;
assert ( p ) ;
if ( ! p - > make_directory )
return ;
LIST_FOREACH ( spec , s , p - > specs ) {
int r ;
if ( s - > type = = PATH_EXISTS )
continue ;
if ( ( r = mkdir_p ( s - > path , p - > directory_mode ) ) < 0 )
log_warning ( " mkdir(%s) failed: %s " , s - > path , strerror ( - r ) ) ;
}
}
2010-05-24 07:25:33 +04:00
static int path_start ( Unit * u ) {
Path * p = PATH ( u ) ;
assert ( p ) ;
2010-08-31 02:23:34 +04:00
assert ( p - > state = = PATH_DEAD | | p - > state = = PATH_FAILED ) ;
2010-05-24 07:25:33 +04:00
if ( p - > unit - > meta . load_state ! = UNIT_LOADED )
return - ENOENT ;
2011-04-10 03:30:14 +04:00
path_mkdir ( p ) ;
2010-05-24 07:25:33 +04:00
p - > failure = false ;
2011-04-28 05:22:05 +04:00
path_enter_waiting ( p , true , true ) ;
2010-10-08 04:31:36 +04:00
2010-05-24 07:25:33 +04:00
return 0 ;
}
static int path_stop ( Unit * u ) {
Path * p = PATH ( u ) ;
assert ( p ) ;
assert ( p - > state = = PATH_WAITING | | p - > state = = PATH_RUNNING ) ;
path_enter_dead ( p , true ) ;
return 0 ;
}
static int path_serialize ( Unit * u , FILE * f , FDSet * fds ) {
Path * p = PATH ( u ) ;
assert ( u ) ;
assert ( f ) ;
assert ( fds ) ;
unit_serialize_item ( u , f , " state " , path_state_to_string ( p - > state ) ) ;
return 0 ;
}
static int path_deserialize_item ( Unit * u , const char * key , const char * value , FDSet * fds ) {
Path * p = PATH ( u ) ;
assert ( u ) ;
assert ( key ) ;
assert ( value ) ;
assert ( fds ) ;
if ( streq ( key , " state " ) ) {
PathState state ;
if ( ( state = path_state_from_string ( value ) ) < 0 )
log_debug ( " Failed to parse state value %s " , value ) ;
else
p - > deserialized_state = state ;
} else
log_debug ( " Unknown serialization key '%s' " , key ) ;
return 0 ;
}
static UnitActiveState path_active_state ( Unit * u ) {
assert ( u ) ;
return state_translation_table [ PATH ( u ) - > state ] ;
}
static const char * path_sub_state_to_string ( Unit * u ) {
assert ( u ) ;
return path_state_to_string ( PATH ( u ) - > state ) ;
}
static void path_fd_event ( Unit * u , int fd , uint32_t events , Watch * w ) {
Path * p = PATH ( u ) ;
int l ;
ssize_t k ;
2010-10-13 04:34:00 +04:00
uint8_t * buf = NULL ;
struct inotify_event * e ;
2010-05-24 07:25:33 +04:00
PathSpec * s ;
2010-11-15 02:49:21 +03:00
bool changed ;
2010-05-24 07:25:33 +04:00
assert ( p ) ;
assert ( fd > = 0 ) ;
2010-11-15 02:49:21 +03:00
if ( p - > state ! = PATH_WAITING & &
p - > state ! = PATH_RUNNING )
2010-05-24 07:25:33 +04:00
return ;
2010-11-16 05:27:00 +03:00
/* log_debug("inotify wakeup on %s.", u->meta.id); */
2010-05-24 07:25:33 +04:00
if ( events ! = EPOLLIN ) {
log_error ( " Got Invalid poll event on inotify. " ) ;
goto fail ;
}
LIST_FOREACH ( spec , s , p - > specs )
if ( s - > inotify_fd = = fd )
break ;
if ( ! s ) {
log_error ( " Got event on unknown fd. " ) ;
goto fail ;
}
if ( ioctl ( fd , FIONREAD , & l ) < 0 ) {
log_error ( " FIONREAD failed: %s " , strerror ( errno ) ) ;
goto fail ;
}
2011-04-28 05:22:05 +04:00
assert ( l > 0 ) ;
2010-05-24 07:25:33 +04:00
if ( ! ( buf = malloc ( l ) ) ) {
log_error ( " Failed to allocate buffer: %s " , strerror ( - ENOMEM ) ) ;
goto fail ;
}
if ( ( k = read ( fd , buf , l ) ) < 0 ) {
log_error ( " Failed to read inotify event: %s " , strerror ( - errno ) ) ;
goto fail ;
}
2010-11-15 02:49:21 +03:00
/* If we are already running, then remember that one event was
* dispatched so that we restart the service only if something
* actually changed on disk */
p - > inotify_triggered = true ;
2010-10-13 04:34:00 +04:00
e = ( struct inotify_event * ) buf ;
2010-05-24 07:25:33 +04:00
2010-11-15 02:49:21 +03:00
changed = false ;
2010-10-13 04:34:00 +04:00
while ( k > 0 ) {
size_t step ;
if ( s - > type = = PATH_CHANGED & & s - > primary_wd = = e - > wd )
2010-11-15 02:49:21 +03:00
changed = true ;
2010-10-13 04:34:00 +04:00
step = sizeof ( struct inotify_event ) + e - > len ;
assert ( step < = ( size_t ) k ) ;
e = ( struct inotify_event * ) ( ( uint8_t * ) e + step ) ;
k - = step ;
}
2010-05-24 07:25:33 +04:00
2010-11-15 02:49:21 +03:00
if ( changed )
path_enter_running ( p ) ;
else
2011-04-28 05:22:05 +04:00
path_enter_waiting ( p , false , true ) ;
2010-11-15 02:49:21 +03:00
2010-05-24 07:25:33 +04:00
free ( buf ) ;
return ;
fail :
free ( buf ) ;
path_enter_dead ( p , false ) ;
}
void path_unit_notify ( Unit * u , UnitActiveState new_state ) {
char * n ;
int r ;
Iterator i ;
if ( u - > meta . type = = UNIT_PATH )
return ;
SET_FOREACH ( n , u - > meta . names , i ) {
char * k ;
Unit * t ;
Path * p ;
if ( ! ( k = unit_name_change_suffix ( n , " .path " ) ) ) {
r = - ENOMEM ;
goto fail ;
}
t = manager_get_unit ( u - > meta . manager , k ) ;
free ( k ) ;
if ( ! t )
continue ;
if ( t - > meta . load_state ! = UNIT_LOADED )
continue ;
p = PATH ( t ) ;
if ( p - > unit ! = u )
continue ;
if ( p - > state = = PATH_RUNNING & & new_state = = UNIT_INACTIVE ) {
log_debug ( " %s got notified about unit deactivation. " , p - > meta . id ) ;
2010-11-15 02:49:21 +03:00
/* Hmm, so inotify was triggered since the
* last activation , so I guess we need to
* recheck what is going on . */
2011-04-28 05:22:05 +04:00
path_enter_waiting ( p , false , p - > inotify_triggered ) ;
2010-05-24 07:25:33 +04:00
}
}
return ;
fail :
log_error ( " Failed find path unit: %s " , strerror ( - r ) ) ;
}
2010-08-31 02:23:34 +04:00
static void path_reset_failed ( Unit * u ) {
2010-07-18 06:58:01 +04:00
Path * p = PATH ( u ) ;
assert ( p ) ;
2010-08-31 02:23:34 +04:00
if ( p - > state = = PATH_FAILED )
2010-07-18 06:58:01 +04:00
path_set_state ( p , PATH_DEAD ) ;
p - > failure = false ;
}
2010-05-24 07:25:33 +04:00
static const char * const path_state_table [ _PATH_STATE_MAX ] = {
[ PATH_DEAD ] = " dead " ,
[ PATH_WAITING ] = " waiting " ,
[ PATH_RUNNING ] = " running " ,
2010-08-31 02:23:34 +04:00
[ PATH_FAILED ] = " failed "
2010-05-24 07:25:33 +04:00
} ;
DEFINE_STRING_TABLE_LOOKUP ( path_state , PathState ) ;
static const char * const path_type_table [ _PATH_TYPE_MAX ] = {
[ PATH_EXISTS ] = " PathExists " ,
[ PATH_CHANGED ] = " PathChanged " ,
[ PATH_DIRECTORY_NOT_EMPTY ] = " DirectoryNotEmpty "
} ;
DEFINE_STRING_TABLE_LOOKUP ( path_type , PathType ) ;
const UnitVTable path_vtable = {
. suffix = " .path " ,
2011-04-10 03:30:14 +04:00
. init = path_init ,
2010-05-24 07:25:33 +04:00
. done = path_done ,
. load = path_load ,
. coldplug = path_coldplug ,
. dump = path_dump ,
. start = path_start ,
. stop = path_stop ,
. serialize = path_serialize ,
. deserialize_item = path_deserialize_item ,
. active_state = path_active_state ,
. sub_state_to_string = path_sub_state_to_string ,
. fd_event = path_fd_event ,
2010-08-31 02:23:34 +04:00
. reset_failed = path_reset_failed ,
2010-07-18 06:58:01 +04:00
2010-08-20 04:26:05 +04:00
. bus_interface = " org.freedesktop.systemd1.Path " ,
2010-05-24 07:25:33 +04:00
. bus_message_handler = bus_path_message_handler
} ;