diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-09-04 14:37:09 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-09-04 14:37:09 +0200 |
commit | c98436f85a94d621ef7236b0f32360437fcf4abf (patch) | |
tree | 8efa735ea50ec44b8821224f031b20514402caac /filescan-utils.c | |
parent | d8f02a120fc1c9a6b42d1c097c6fe1027d1215be (diff) |
Retrieve binder rootdir and subfolder paths
Change-Id: I064bf4831be40de70dab68b72489c4fdfc69e9c4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'filescan-utils.c')
-rw-r--r-- | filescan-utils.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/filescan-utils.c b/filescan-utils.c index dbbccc3..830e233 100644 --- a/filescan-utils.c +++ b/filescan-utils.c @@ -17,6 +17,8 @@ #define _GNU_SOURCE #include <stdio.h> +#include <unistd.h> +#include <sys/stat.h> #include <string.h> #include <time.h> #include <sys/prctl.h> @@ -120,3 +122,38 @@ PUBLIC const char *GetBinderName() { return binderName; } + +PUBLIC BPaths GetBindingDirsPath() +{ + BPaths BindingPaths; + + void initBindingPaths(char* bdir, const char* dir) + { + strcpy(bdir, BindingPaths.rootdir); + strcat(bdir, dir); + } + + // A file description should not be greater than 999.999.999 + char fd[10]; + sprintf(fd, "%d", afb_daemon_rootdir_get_fd()); + char* fd_link = malloc(strlen("/proc/self/fd/") + strlen(&fd)); + strcpy(fd_link, "/proc/self/fd/"); + strcat(fd_link, &fd); + + ssize_t len; + if((len = readlink(fd_link, &BindingPaths.rootdir, sizeof(BindingPaths)-1)) == -1) + { + perror("lstat"); + AFB_ERROR("Error reading stat of link: %s", fd_link); + return BindingPaths; + } + BindingPaths.rootdir[len] = '\0'; + free(fd_link); + initBindingPaths(BindingPaths.bindir, "/bin"); + initBindingPaths(BindingPaths.etcdir, "/etc"); + initBindingPaths(BindingPaths.libdir, "/lib"); + initBindingPaths(BindingPaths.datadir, "/data"); + initBindingPaths(BindingPaths.httpdir, "/http"); + + return BindingPaths; +} |