Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8dbadd5 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by android-build-merger
Browse files

Merge \\"libcutils: canned_fs_config.c drop tabs\\" am: 4ee9ed53

am: ec129fe0

Change-Id: I365d06333de78629f36fb94adf035f70a299e291
parents dc4493cb ec129fe0
Loading
Loading
Loading
Loading
+81 −75
Original line number Diff line number Diff line
@@ -14,12 +14,12 @@
 * limitations under the License.
 */

#include <inttypes.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <inttypes.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <private/android_filesystem_config.h>
#include <private/canned_fs_config.h>
@@ -41,26 +41,30 @@ static int path_compare(const void* a, const void* b) {
}

int load_canned_fs_config(const char* fn) {
	FILE* f = fopen(fn, "r");
    char line[PATH_MAX + 200];
    FILE* f;

    f = fopen(fn, "r");
    if (f == NULL) {
        fprintf(stderr, "failed to open %s: %s\n", fn, strerror(errno));
        return -1;
    }

	char line[PATH_MAX + 200];
    while (fgets(line, sizeof(line), f)) {
        Path* p;
        char* token;

        while (canned_used >= canned_alloc) {
            canned_alloc = (canned_alloc+1) * 2;
            canned_data = (Path*) realloc(canned_data, canned_alloc * sizeof(Path));
        }
		Path* p = canned_data + canned_used;
        p = canned_data + canned_used;
        p->path = strdup(strtok(line, " "));
        p->uid = atoi(strtok(NULL, " "));
        p->gid = atoi(strtok(NULL, " "));
        p->mode = strtol(strtok(NULL, " "), NULL, 8);   // mode is in octal
        p->capabilities = 0;

		char* token = NULL;
        do {
            token = strtok(NULL, " ");
            if (token && strncmp(token, "capabilities=", 13) == 0) {
@@ -84,11 +88,11 @@ static const int kDebugCannedFsConfig = 0;

void canned_fs_config(const char* path, int dir, const char* target_out_path,
                      unsigned* uid, unsigned* gid, unsigned* mode, uint64_t* capabilities) {
	Path key;
    Path key, *p;

    key.path = path;
    if (path[0] == '/')
        key.path++;   // canned paths lack the leading '/'
	Path* p = (Path*) bsearch(&key, canned_data, canned_used, sizeof(Path), path_compare);
    if (path[0] == '/') key.path++; // canned paths lack the leading '/'
    p = (Path*) bsearch(&key, canned_data, canned_used, sizeof(Path), path_compare);
    if (p == NULL) {
        fprintf(stderr, "failed to find [%s] in canned fs_config\n", path);
        exit(1);
@@ -103,15 +107,17 @@ void canned_fs_config(const char* path, int dir, const char* target_out_path,

        unsigned c_uid, c_gid, c_mode;
        uint64_t c_capabilities;

        fs_config(path, dir, target_out_path, &c_uid, &c_gid, &c_mode, &c_capabilities);

        if (c_uid != *uid) printf("%s uid %d %d\n", path, *uid, c_uid);
        if (c_gid != *gid) printf("%s gid %d %d\n", path, *gid, c_gid);
        if (c_mode != *mode) printf("%s mode 0%o 0%o\n", path, *mode, c_mode);
		if (c_capabilities != *capabilities)
        if (c_capabilities != *capabilities) {
            printf("%s capabilities %" PRIx64 " %" PRIx64 "\n",
                path,
                *capabilities,
                c_capabilities);
        }
    }
}