diff options
author | Alok Barsode <alok.barsode@linux.intel.com> | 2011-08-24 16:53:20 +0300 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-09-12 11:40:47 +0200 |
commit | da4e30cb1a2387a8727d150567e7eea90e1eb20f (patch) | |
tree | daab9ea4a51736e741a789657e9dc80c1f139603 /src | |
parent | d60b5edf7fd2ed4eb779e68a139359b4573385eb (diff) | |
download | connman-da4e30cb1a2387a8727d150567e7eea90e1eb20f.tar.gz connman-da4e30cb1a2387a8727d150567e7eea90e1eb20f.tar.bz2 connman-da4e30cb1a2387a8727d150567e7eea90e1eb20f.zip |
stats: Move stat files to respective service identifier directory
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 | ||||
-rw-r--r-- | src/stats.c | 29 |
2 files changed, 25 insertions, 10 deletions
@@ -293,12 +293,6 @@ int main(int argc, char *argv[]) perror("Failed to create storage directory"); } - if (mkdir(STORAGEDIR "/stats", S_IRUSR | S_IWUSR | S_IXUSR | - S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) { - if (errno != EEXIST) - perror("Failed to create statistics directory"); - } - umask(0077); main_loop = g_main_loop_new(NULL, FALSE); diff --git a/src/stats.c b/src/stats.c index 743b795a..df28eb4a 100644 --- a/src/stats.c +++ b/src/stats.c @@ -33,9 +33,13 @@ #include <unistd.h> #include <string.h> #include <limits.h> +#include <sys/stat.h> #include "connman.h" +#define MODE (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | \ + S_IXGRP | S_IROTH | S_IXOTH) + #ifdef TEMP_FAILURE_RETRY #define TFR TEMP_FAILURE_RETRY #else @@ -345,7 +349,7 @@ static int stats_open(struct stats_file *file, static int stats_open_temp(struct stats_file *file) { - file->name = g_strdup_printf("%s/stats/stats.XXXXXX.tmp", + file->name = g_strdup_printf("%s/stats.XXXXXX.tmp", STORAGEDIR); file->fd = g_mkstemp_full(file->name, O_RDWR | O_CREAT, 0644); if (file->fd < 0) { @@ -667,7 +671,7 @@ static int stats_file_history_update(struct stats_file *data_file) int __connman_stats_service_register(struct connman_service *service) { struct stats_file *file; - char *name; + char *name, *dir; int err; DBG("service %p", service); @@ -683,9 +687,26 @@ int __connman_stats_service_register(struct connman_service *service) return -EALREADY; } - name = g_strdup_printf("%s/stats/%s.data", STORAGEDIR, + dir = g_strdup_printf("%s/%s", STORAGEDIR, + __connman_service_get_ident(service)); + + /* If the dir doesn't exist, create it */ + if (!g_file_test(dir, G_FILE_TEST_IS_DIR)) { + if(mkdir(dir, MODE) < 0) { + if (errno != EEXIST) { + g_free(dir); + + err = -errno; + goto err; + } + } + } + + g_free(dir); + + name = g_strdup_printf("%s/%s/data", STORAGEDIR, __connman_service_get_ident(service)); - file->history_name = g_strdup_printf("%s/stats/%s.history", STORAGEDIR, + file->history_name = g_strdup_printf("%s/%s/history", STORAGEDIR, __connman_service_get_ident(service)); /* TODO: Use a global config file instead of hard coded value. */ |