dnsproxy: Only one copy of the relevant buffers will be made to a TCP request
[framework/connectivity/connman.git] / src / stats.c
index 679a372..828c1ef 100644 (file)
@@ -24,6 +24,7 @@
 #endif
 
 #define _GNU_SOURCE
+#include <errno.h>
 #include <sys/mman.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #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
@@ -214,6 +219,9 @@ static void stats_free(gpointer user_data)
 {
        struct stats_file *file = user_data;
 
+       if (file == NULL)
+               return;
+
        msync(file->addr, file->len, MS_SYNC);
 
        munmap(file->addr, file->len);
@@ -232,8 +240,7 @@ static void stats_free(gpointer user_data)
                file->name = NULL;
        }
 
-       if (file != NULL)
-               g_free(file);
+       g_free(file);
 }
 
 static void update_first(struct stats_file *file)
@@ -275,6 +282,9 @@ static int stats_file_remap(struct stats_file *file, size_t size)
        void *addr;
        int err;
 
+       DBG("file %p size %zu addr %p len %zu", file, size, file->addr,
+               file->len);
+
        page_size = sysconf(_SC_PAGESIZE);
        new_size = (size + page_size - 1) & ~(page_size - 1);
 
@@ -288,9 +298,10 @@ static int stats_file_remap(struct stats_file *file, size_t size)
        if (file->addr == NULL) {
                /*
                 * Though the buffer is not shared between processes, we still
-                * have to take MAP_SHARED because MAP_PRIVATE does not guarantee
-                * that writes will hit the file eventually. For more details
-                * please read the mmap man pages.
+                * have to take MAP_SHARED because MAP_PRIVATE does not
+                * guarantee that writes will hit the file without an explicit
+                * call to munmap or msync. For more details please read the
+                * mmap man pages.
                 */
                addr = mmap(NULL, new_size, PROT_READ | PROT_WRITE,
                                MAP_SHARED, file->fd, 0);
@@ -301,6 +312,11 @@ static int stats_file_remap(struct stats_file *file, size_t size)
        if (addr == MAP_FAILED) {
                connman_error("mmap error %s for %s",
                                strerror(errno), file->name);
+               if (errno == EINVAL) {
+                       connman_error("%s might be on a file system, such as "
+                                       "JFFS2, that does not allow shared "
+                                       "writable mappings.", file->name);
+               }
                return -errno;
        }
 
@@ -315,13 +331,16 @@ static int stats_file_remap(struct stats_file *file, size_t size)
 static int stats_open(struct stats_file *file,
                        const char *name)
 {
+       DBG("file %p name %s", file, name);
+
        file->name = g_strdup(name);
 
-       file->fd = TFR(open(file->name, O_RDWR | O_CREAT, 0644));
+       file->fd = TFR(open(file->name, O_RDWR | O_CREAT | O_CLOEXEC, 0644));
        if (file->fd < 0) {
                connman_error("open error %s for %s",
                                strerror(errno), file->name);
                g_free(file->name);
+               file->name = NULL;
                return -errno;
        }
 
@@ -330,13 +349,14 @@ 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) {
                connman_error("create tempory file error %s for %s",
                                strerror(errno), file->name);
                g_free(file->name);
+               file->name = NULL;
                return -errno;
        }
 
@@ -350,6 +370,8 @@ static int stats_file_setup(struct stats_file *file)
        size_t size = 0;
        int err;
 
+       DBG("file %p fd %d name %s", file, file->fd, file->name);
+
        err = fstat(file->fd, &st);
        if (err < 0) {
                connman_error("fstat error %s for %s\n",
@@ -357,6 +379,7 @@ static int stats_file_setup(struct stats_file *file)
 
                TFR(close(file->fd));
                g_free(file->name);
+               file->name = NULL;
 
                return -errno;
        }
@@ -371,6 +394,7 @@ static int stats_file_setup(struct stats_file *file)
        if (err < 0) {
                TFR(close(file->fd));
                g_free(file->name);
+               file->name = NULL;
 
                return err;
        }
@@ -586,6 +610,7 @@ static void stats_file_cleanup(struct stats_file *file)
 {
        file->fd = -1;
        g_free(file->name);
+       file->name = NULL;
 }
 
 static int stats_file_close_swap(struct stats_file *history_file,
@@ -646,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);
@@ -662,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. */