diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-09-16 16:14:11 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-09-16 16:20:09 +0200 |
commit | 25ea79fe0756c3c46a16c0c19bf3380a30382a1c (patch) | |
tree | e0d7b15b00b9812120674858f8f194cd7d98facf /src/shared | |
parent | ed8b7a3ee55b27a06a54d2dfa39eec5e555e005b (diff) |
nspawn: use automatic cleanup for umask
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/macro.h | 1 | ||||
-rw-r--r-- | src/shared/util.c | 4 | ||||
-rw-r--r-- | src/shared/util.h | 2 |
3 files changed, 7 insertions, 0 deletions
diff --git a/src/shared/macro.h b/src/shared/macro.h index f8c5656538..c7ce7c87d0 100644 --- a/src/shared/macro.h +++ b/src/shared/macro.h @@ -191,5 +191,6 @@ static inline size_t IOVEC_INCREMENT(struct iovec *i, unsigned n, size_t k) { #define _cleanup_fclose_ __attribute__((cleanup(fclosep))) #define _cleanup_close_ __attribute__((cleanup(closep))) #define _cleanup_closedir_ __attribute__((cleanup(closedirp))) +#define _cleanup_umask_ __attribute__((cleanup(umaskp))) #include "log.h" diff --git a/src/shared/util.c b/src/shared/util.c index add3fdce53..27b6683393 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -5827,3 +5827,7 @@ void closedirp(DIR **d) { if (*d) closedir(*d); } + +void umaskp(mode_t *u) { + umask(*u); +} diff --git a/src/shared/util.h b/src/shared/util.h index 2b75ba62f9..1a607cf37c 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -31,6 +31,7 @@ #include <signal.h> #include <sched.h> #include <limits.h> +#include <sys/types.h> #include <sys/stat.h> #include <dirent.h> #include <sys/resource.h> @@ -533,3 +534,4 @@ void freep(void *p); void fclosep(FILE **f); void closep(int *fd); void closedirp(DIR **d); +void umaskp(mode_t *u); |