X-Git-Url: http://git.lttng.org/?p=ust.git;a=blobdiff_plain;f=libustcomm%2Fustcomm.c;fp=libustcomm%2Fustcomm.c;h=fe299770a560287c1c0a3becaa01da5172179afb;hp=d537eebf8a7164b0acf02c415889e6fb632e62fb;hb=18baca846d9957651fd0f10b6e5c9cdaa42ce748;hpb=b2cc3e5040b641716daa51b863ac5e17ac1a6774 diff --git a/libustcomm/ustcomm.c b/libustcomm/ustcomm.c index d537eeb..fe29977 100644 --- a/libustcomm/ustcomm.c +++ b/libustcomm/ustcomm.c @@ -46,6 +46,7 @@ static int mkdir_p(const char *path, mode_t mode) int retval = 0; int result; + mode_t old_umask; tmp = malloc(strlen(path) + 1); if (tmp == NULL) @@ -54,6 +55,7 @@ static int mkdir_p(const char *path, mode_t mode) /* skip first / */ path_p = path+1; + old_umask = umask(0); for(;;) { while (*path_p != '/') { if(*path_p == 0) @@ -85,6 +87,7 @@ static int mkdir_p(const char *path, mode_t mode) } free(tmp); + umask(old_umask); return retval; } @@ -645,7 +648,8 @@ static int ensure_dir_exists(const char *dir) /* ENOENT */ int result; - result = mkdir_p(dir, 0777); + /* mkdir mode to 0777 */ + result = mkdir_p(dir, S_IRWXU | S_IRWXG | S_IRWXO); if(result != 0) { ERR("executing in recursive creation of directory %s", dir); return -1;