diff options
author | Stephen Smalley <sds@tycho.nsa.gov> | 2012-02-09 20:13:23 +0100 |
---|---|---|
committer | Stephen Smalley <sds@tycho.nsa.gov> | 2012-03-30 15:32:46 +0200 |
commit | 779701db515d1a0d363d5a8896252f331bc4e22a (patch) | |
tree | 46aacb687e7126a5a64949dd7ade2f284ee57c15 /minzip/DirUtil.c | |
parent | Add libselinux to LOCAL_STATIC_LIBRARIES wherever libext4_utils is used. (diff) | |
download | android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.gz android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.bz2 android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.lz android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.xz android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.zst android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.zip |
Diffstat (limited to '')
-rw-r--r-- | minzip/DirUtil.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/minzip/DirUtil.c b/minzip/DirUtil.c index 20c89cd6f..0d49b5780 100644 --- a/minzip/DirUtil.c +++ b/minzip/DirUtil.c @@ -54,7 +54,8 @@ getPathDirStatus(const char *path) int dirCreateHierarchy(const char *path, int mode, - const struct utimbuf *timestamp, bool stripFileName) + const struct utimbuf *timestamp, bool stripFileName, + struct selabel_handle *sehnd) { DirStatus ds; @@ -144,7 +145,25 @@ dirCreateHierarchy(const char *path, int mode, } else if (ds == DMISSING) { int err; +#ifdef HAVE_SELINUX + char *secontext = NULL; + + if (sehnd) { + selabel_lookup(sehnd, &secontext, cpath, mode); + setfscreatecon(secontext); + } +#endif + err = mkdir(cpath, mode); + +#ifdef HAVE_SELINUX + + if (secontext) { + freecon(secontext); + setfscreatecon(NULL); + } +#endif + if (err != 0) { free(cpath); return -1; |