summaryrefslogtreecommitdiffstats
path: root/libcutils
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2016-06-02 10:10:35 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-06-02 10:10:37 +0000
commit6a29fe931d9fd3bf7f2aad3713dc70c080970763 (patch)
tree4cfe01523abf0ffd47c8431ca22d2356bb5e6b2c /libcutils
parentfe01f56c0d5c42508e1e82f5976e4c10bb00f632 (diff)
parent9812105b20a19354d9bd6f912da707203d62b397 (diff)
downloadsystem_core-6a29fe931d9fd3bf7f2aad3713dc70c080970763.tar.gz
system_core-6a29fe931d9fd3bf7f2aad3713dc70c080970763.tar.bz2
system_core-6a29fe931d9fd3bf7f2aad3713dc70c080970763.zip
Merge "Add utility to prepare files in a similar way to directories" into nyc-dev
Diffstat (limited to 'libcutils')
-rw-r--r--libcutils/fs.c33
1 files changed, 24 insertions, 9 deletions
diff --git a/libcutils/fs.c b/libcutils/fs.c
index 5e2ef0b8d..3f14de7a5 100644
--- a/libcutils/fs.c
+++ b/libcutils/fs.c
@@ -37,10 +37,11 @@
#define ALL_PERMS (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
#define BUF_SIZE 64
-static int fs_prepare_dir_impl(const char* path, mode_t mode, uid_t uid, gid_t gid,
- int allow_fixup) {
+static int fs_prepare_path_impl(const char* path, mode_t mode, uid_t uid, gid_t gid,
+ int allow_fixup, int prepare_as_dir) {
// Check if path needs to be created
struct stat sb;
+ int create_result = -1;
if (TEMP_FAILURE_RETRY(lstat(path, &sb)) == -1) {
if (errno == ENOENT) {
goto create;
@@ -51,10 +52,12 @@ static int fs_prepare_dir_impl(const char* path, mode_t mode, uid_t uid, gid_t g
}
// Exists, verify status
- if (!S_ISDIR(sb.st_mode)) {
- ALOGE("Not a directory: %s", path);
+ int type_ok = prepare_as_dir ? S_ISDIR(sb.st_mode) : S_ISREG(sb.st_mode);
+ if (!type_ok) {
+ ALOGE("Not a %s: %s", (prepare_as_dir ? "directory" : "regular file"), path);
return -1;
}
+
int owner_match = ((sb.st_uid == uid) && (sb.st_gid == gid));
int mode_match = ((sb.st_mode & ALL_PERMS) == mode);
if (owner_match && mode_match) {
@@ -74,13 +77,21 @@ static int fs_prepare_dir_impl(const char* path, mode_t mode, uid_t uid, gid_t g
}
create:
- if (TEMP_FAILURE_RETRY(mkdir(path, mode)) == -1) {
+ create_result = prepare_as_dir
+ ? TEMP_FAILURE_RETRY(mkdir(path, mode))
+ : TEMP_FAILURE_RETRY(open(path, O_CREAT | O_CLOEXEC | O_NOFOLLOW | O_RDONLY));
+ if (create_result == -1) {
if (errno != EEXIST) {
- ALOGE("Failed to mkdir(%s): %s", path, strerror(errno));
+ ALOGE("Failed to %s(%s): %s",
+ (prepare_as_dir ? "mkdir" : "open"), path, strerror(errno));
return -1;
}
+ } else if (!prepare_as_dir) {
+ // For regular files we need to make sure we close the descriptor
+ if (close(create_result) == -1) {
+ ALOGW("Failed to close file after create %s: %s", path, strerror(errno));
+ }
}
-
fixup:
if (TEMP_FAILURE_RETRY(chmod(path, mode)) == -1) {
ALOGE("Failed to chmod(%s, %d): %s", path, mode, strerror(errno));
@@ -95,11 +106,15 @@ fixup:
}
int fs_prepare_dir(const char* path, mode_t mode, uid_t uid, gid_t gid) {
- return fs_prepare_dir_impl(path, mode, uid, gid, 1);
+ return fs_prepare_path_impl(path, mode, uid, gid, /*allow_fixup*/ 1, /*prepare_as_dir*/ 1);
}
int fs_prepare_dir_strict(const char* path, mode_t mode, uid_t uid, gid_t gid) {
- return fs_prepare_dir_impl(path, mode, uid, gid, 0);
+ return fs_prepare_path_impl(path, mode, uid, gid, /*allow_fixup*/ 0, /*prepare_as_dir*/ 1);
+}
+
+int fs_prepare_file_strict(const char* path, mode_t mode, uid_t uid, gid_t gid) {
+ return fs_prepare_path_impl(path, mode, uid, gid, /*allow_fixup*/ 0, /*prepare_as_dir*/ 0);
}
int fs_read_atomic_int(const char* path, int* out_value) {