diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-07-19 21:17:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-19 21:17:49 +0200 |
commit | 069a92c6581a2ee4fc0f0f9430f54412e6e3026b (patch) | |
tree | 02fb11f404687d06d5c7a5792c7e425604f16c30 /src/basic | |
parent | 4526e15d064c77a61cf79c595c3384effd66d31b (diff) | |
parent | 2a624c36e646e9ef8d204a506b12e7dbd380e111 (diff) |
Merge pull request #3685 from kinvolk/alessandro/inaccessible-paths
namespace: unify limit behavior on non-directory paths
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/mount-util.c | 18 | ||||
-rw-r--r-- | src/basic/mount-util.h | 2 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c index 90b7a885a8..63dff3dd5c 100644 --- a/src/basic/mount-util.c +++ b/src/basic/mount-util.c @@ -532,3 +532,21 @@ int repeat_unmount(const char *path, int flags) { done = true; } } + +const char* mode_to_inaccessible_node(mode_t mode) { + switch(mode & S_IFMT) { + case S_IFREG: + return "/run/systemd/inaccessible/reg"; + case S_IFDIR: + return "/run/systemd/inaccessible/dir"; + case S_IFCHR: + return "/run/systemd/inaccessible/chr"; + case S_IFBLK: + return "/run/systemd/inaccessible/blk"; + case S_IFIFO: + return "/run/systemd/inaccessible/fifo"; + case S_IFSOCK: + return "/run/systemd/inaccessible/sock"; + } + return NULL; +} diff --git a/src/basic/mount-util.h b/src/basic/mount-util.h index bdb525d6b0..f46989ebb3 100644 --- a/src/basic/mount-util.h +++ b/src/basic/mount-util.h @@ -49,4 +49,6 @@ union file_handle_union { char padding[sizeof(struct file_handle) + MAX_HANDLE_SZ]; }; +const char* mode_to_inaccessible_node(mode_t mode); + #define FILE_HANDLE_INIT { .handle.handle_bytes = MAX_HANDLE_SZ } |