aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/firejail.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/firejail.h')
-rw-r--r--src/firejail/firejail.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/firejail/firejail.h b/src/firejail/firejail.h
index f988dc114..18d66b983 100644
--- a/src/firejail/firejail.h
+++ b/src/firejail/firejail.h
@@ -308,6 +308,7 @@ static inline int any_interface_configured(void) {
308 308
309extern int arg_private; // mount private /home 309extern int arg_private; // mount private /home
310extern int arg_private_template; // private /home template 310extern int arg_private_template; // private /home template
311extern int arg_private_cache; // private home/.cache
311extern int arg_debug; // print debug messages 312extern int arg_debug; // print debug messages
312extern int arg_debug_blacklists; // print debug messages for blacklists 313extern int arg_debug_blacklists; // print debug messages for blacklists
313extern int arg_debug_whitelists; // print debug messages for whitelists 314extern int arg_debug_whitelists; // print debug messages for whitelists
@@ -447,6 +448,7 @@ void fs_overlayfs(void);
447void fs_chroot(const char *rootdir); 448void fs_chroot(const char *rootdir);
448void fs_check_chroot_dir(const char *rootdir); 449void fs_check_chroot_dir(const char *rootdir);
449void fs_private_tmp(void); 450void fs_private_tmp(void);
451void fs_private_cache(void);
450 452
451// profile.c 453// profile.c
452// find and read the profile specified by name from dir directory 454// find and read the profile specified by name from dir directory
@@ -525,6 +527,7 @@ void mkdir_attr(const char *fname, mode_t mode, uid_t uid, gid_t gid);
525unsigned extract_timeout(const char *str); 527unsigned extract_timeout(const char *str);
526void disable_file_or_dir(const char *fname); 528void disable_file_or_dir(const char *fname);
527void disable_file_path(const char *path, const char *file); 529void disable_file_path(const char *path, const char *file);
530int safe_fd(const char *path, int flags);
528 531
529// Get info regarding the last kernel mount operation from /proc/self/mountinfo 532// Get info regarding the last kernel mount operation from /proc/self/mountinfo
530// The return value points to a static area, and will be overwritten by subsequent calls. 533// The return value points to a static area, and will be overwritten by subsequent calls.