2012-05-07 23:36:12 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2013-03-29 06:03:53 +04:00
# pragma once
2012-05-07 23:36:12 +04:00
/***
This file is part of systemd .
Copyright 2010 - 2012 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
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
( 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
Lesser General Public License for more details .
You should have received a copy of the GNU Lesser General Public License
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2013-05-03 06:51:50 +04:00
# include <stdbool.h>
2012-05-07 23:36:12 +04:00
2013-05-03 06:51:50 +04:00
# include "macro.h"
2013-10-26 02:36:49 +04:00
# include "time-util.h"
2013-05-03 06:51:50 +04:00
2013-12-21 03:35:38 +04:00
# define DEFAULT_PATH_NORMAL " / usr / local / sbin: / usr / local / bin: / usr / sbin: / usr / bin"
# define DEFAULT_PATH_SPLIT_USR DEFAULT_PATH_NORMAL ": / sbin: / bin"
2013-09-08 15:51:39 +04:00
# ifdef HAVE_SPLIT_USR
2013-12-21 03:35:38 +04:00
# define DEFAULT_PATH DEFAULT_PATH_SPLIT_USR
2013-09-08 15:51:39 +04:00
# else
2013-12-21 03:35:38 +04:00
# define DEFAULT_PATH DEFAULT_PATH_NORMAL
2013-09-08 15:51:39 +04:00
# endif
2013-05-03 06:51:50 +04:00
bool is_path ( const char * p ) _pure_ ;
char * * path_split_and_make_absolute ( const char * p ) ;
2012-05-07 23:36:12 +04:00
int path_get_parent ( const char * path , char * * parent ) ;
2013-05-03 06:51:50 +04:00
bool path_is_absolute ( const char * p ) _pure_ ;
char * path_make_absolute ( const char * p , const char * prefix ) ;
char * path_make_absolute_cwd ( const char * p ) ;
2014-05-03 12:52:12 +04:00
int path_make_relative ( const char * from_dir , const char * to_path , char * * _r ) ;
2013-05-03 06:51:50 +04:00
char * path_kill_slashes ( char * path ) ;
char * path_startswith ( const char * path , const char * prefix ) _pure_ ;
bool path_equal ( const char * a , const char * b ) _pure_ ;
2014-07-26 22:47:31 +04:00
char * path_join ( const char * root , const char * path , const char * rest ) ;
2013-05-03 06:51:50 +04:00
char * * path_strv_make_absolute_cwd ( char * * l ) ;
2014-06-20 06:07:02 +04:00
char * * path_strv_resolve ( char * * l , const char * prefix ) ;
char * * path_strv_resolve_uniq ( char * * l , const char * prefix ) ;
2012-05-07 23:36:12 +04:00
int path_is_mount_point ( const char * path , bool allow_symlink ) ;
int path_is_read_only_fs ( const char * path ) ;
2013-04-16 07:47:04 +04:00
int path_is_os_tree ( const char * path ) ;
2013-09-08 15:51:39 +04:00
2014-11-23 02:00:07 +03:00
int find_binary ( const char * name , bool local , char * * filename ) ;
2013-09-25 22:58:23 +04:00
2014-01-09 02:41:41 +04:00
bool paths_check_timestamp ( const char * const * paths , usec_t * paths_ts_usec , bool update ) ;
2013-10-26 02:36:49 +04:00
2014-04-13 00:07:45 +04:00
int fsck_exists ( const char * fstype ) ;
2013-09-26 21:58:33 +04:00
/* Iterates through the path prefixes of the specified path, going up
* the tree , to root . Also returns " " ( and not " / " ! ) for the root
* directory . Excludes the specified directory itself */
2013-09-25 22:58:23 +04:00
# define PATH_FOREACH_PREFIX(prefix, path) \
2014-09-25 18:12:41 +04:00
for ( char * _slash = ( { path_kill_slashes ( strcpy ( prefix , path ) ) ; streq ( prefix , " / " ) ? NULL : strrchr ( prefix , ' / ' ) ; } ) ; _slash & & ( ( * _slash = 0 ) , true ) ; _slash = strrchr ( ( prefix ) , ' / ' ) )
2013-09-26 21:58:33 +04:00
/* Same as PATH_FOREACH_PREFIX but also includes the specified path itself */
# define PATH_FOREACH_PREFIX_MORE(prefix, path) \
2014-09-25 18:12:41 +04:00
for ( char * _slash = ( { path_kill_slashes ( strcpy ( prefix , path ) ) ; if ( streq ( prefix , " / " ) ) prefix [ 0 ] = 0 ; strrchr ( prefix , 0 ) ; } ) ; _slash & & ( ( * _slash = 0 ) , true ) ; _slash = strrchr ( ( prefix ) , ' / ' ) )