Thread termination code is updated.
authorSung-jae Park <nicesj.park@samsung.com>
Tue, 4 Jun 2013 07:09:03 +0000 (16:09 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Tue, 4 Jun 2013 07:26:54 +0000 (16:26 +0900)
[model] Redwood
[binary_type] AP
[customer] Docomo/Orange/Open
[issue#] N/A
[problem] Thread is not terminated. so the process hangs while waiting thread termination.
[cause] If a main thread close the fd, service thread can not detect it.
[solution] Add ctrl-pipe to terminate the service thread. (to wakeup it from select)
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: I9d253eefa1b5c3206046cfff1f16ae89798a94fa

include/util.h
packaging/libcom-core.spec
src/com-core_packet-router.c
src/com-core_thread.c
src/secure_socket.c

index a0ef886..e3e45c1 100644 (file)
@@ -33,4 +33,18 @@ do { \
                ErrPrint("Failed to unlock: %s\n", strerror(ret)); \
 } while (0)
 
+#define CLOSE_PIPE(p)  do { \
+       int status; \
+       status = close(p[PIPE_READ]); \
+       if (status < 0) \
+               ErrPrint("close: %s\n", strerror(errno)); \
+       status = close(p[PIPE_WRITE]); \
+       if (status < 0) \
+               ErrPrint("close: %s\n", strerror(errno)); \
+} while (0)
+
+#define PIPE_READ 0
+#define PIPE_WRITE 1
+#define PIPE_MAX 2
+
 /* End of a file */
index b5d0688..27e633e 100644 (file)
@@ -1,6 +1,6 @@
 Name: libcom-core
 Summary: Library for the light-weight IPC 
-Version: 0.3.15
+Version: 0.4.0
 Release: 1
 Group: HomeTF/Framework
 License: Apache License
index 362355c..8002eca 100644 (file)
@@ -37,9 +37,6 @@
 #include "util.h"
 #include "com-core_packet-router.h"
 
-#define PIPE_READ 0
-#define PIPE_WRITE 1
-
 struct packet_item {
        pid_t pid;
        struct packet *packet;
@@ -100,8 +97,8 @@ struct router {
        pthread_mutex_t send_packet_list_lock;
        struct dlist *send_packet_list;
 
-       int recv_pipe[2];
-       int send_pipe[2];
+       int recv_pipe[PIPE_MAX];
+       int send_pipe[PIPE_MAX];
 
        pthread_t send_thid;
 
@@ -673,11 +670,7 @@ static struct router *create_router(const char *sock, int handle, struct method
                ErrPrint("pipe2: %s\n", strerror(errno));
                free(router->sock);
 
-               if (close(router->recv_pipe[0]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->recv_pipe[1]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
+               CLOSE_PIPE(router->recv_pipe);
 
                ret = pthread_mutex_destroy(&router->send_packet_list_lock);
                if (ret != 0)
@@ -701,17 +694,8 @@ static struct router *create_router(const char *sock, int handle, struct method
 
        gio = g_io_channel_unix_new(router->recv_pipe[PIPE_READ]);
        if (!gio) {
-               if (close(router->recv_pipe[PIPE_READ]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->recv_pipe[PIPE_WRITE]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->send_pipe[PIPE_READ]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->send_pipe[PIPE_WRITE]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
+               CLOSE_PIPE(router->recv_pipe);
+               CLOSE_PIPE(router->send_pipe);
 
                free(router->sock);
 
@@ -742,17 +726,8 @@ static struct router *create_router(const char *sock, int handle, struct method
                }
                g_io_channel_unref(gio);
 
-               if (close(router->recv_pipe[PIPE_READ]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->recv_pipe[PIPE_WRITE]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->send_pipe[PIPE_READ]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
-
-               if (close(router->send_pipe[PIPE_WRITE]) < 0)
-                       ErrPrint("close: %s\n", strerror(errno));
+               CLOSE_PIPE(router->recv_pipe);
+               CLOSE_PIPE(router->send_pipe);
 
                free(router->sock);
 
@@ -783,17 +758,8 @@ static struct router *create_router(const char *sock, int handle, struct method
 
                g_source_remove(router->id);
 
-               if (close(router->recv_pipe[PIPE_READ]) < 0)
-                       ErrPrint("Close: %s\n", strerror(errno));
-
-               if (close(router->recv_pipe[PIPE_WRITE]) < 0)
-                       ErrPrint("Close: %s\n", strerror(errno));
-
-               if (close(router->send_pipe[PIPE_READ]) < 0)
-                       ErrPrint("Close: %s\n", strerror(errno));
-
-               if (close(router->send_pipe[PIPE_WRITE]) < 0)
-                       ErrPrint("Close: %s\n", strerror(errno));
+               CLOSE_PIPE(router->recv_pipe);
+               CLOSE_PIPE(router->send_pipe);
 
                free(router->sock);
 
@@ -839,17 +805,8 @@ static inline __attribute__((always_inline)) int destroy_router(struct router *r
        if (router->id > 0)
                g_source_remove(router->id);
 
-       if (close(router->recv_pipe[PIPE_READ]) < 0)
-               ErrPrint("close: %s\n", strerror(errno));
-
-       if (close(router->recv_pipe[PIPE_WRITE]) < 0)
-               ErrPrint("close: %s\n", strerror(errno));
-
-       if (close(router->send_pipe[PIPE_READ]) < 0)
-               ErrPrint("close: %s\n", strerror(errno));
-
-       if (close(router->send_pipe[PIPE_WRITE]) < 0)
-               ErrPrint("close: %s\n", strerror(errno));
+       CLOSE_PIPE(router->recv_pipe);
+       CLOSE_PIPE(router->send_pipe);
 
        free(router->sock);
 
index 0b3172b..387c4fc 100644 (file)
@@ -37,8 +37,6 @@
 #include "util.h"
 
 int errno;
-#define PIPE_READ 0
-#define PIPE_WRITE 1
 #define EVENT_READY 'a'
 #define EVENT_TERM 'e'
 
@@ -78,7 +76,8 @@ struct tcb {
        pthread_t thid;
        int handle;
        struct dlist *chunk_list;
-       int evt_pipe[2];
+       int evt_pipe[PIPE_MAX];
+       int ctrl_pipe[PIPE_MAX];
        pthread_mutex_t chunk_lock;
        guint id; /*!< g_io_watch */
 
@@ -149,6 +148,9 @@ static inline void terminate_thread(struct tcb *tcb)
        void *res = NULL;
        struct chunk *chunk;
 
+       if (write(tcb->ctrl_pipe[PIPE_WRITE], &tcb, sizeof(tcb)) != sizeof(tcb))
+               ErrPrint("Unable to write CTRL pipe\n");
+
        secure_socket_destroy_handle(tcb->handle);
 
        status = pthread_join(tcb->thid, &res);
@@ -300,6 +302,7 @@ static void *client_cb(void *data)
        fd_set set;
        int readsize;
        char event_ch;
+       int fd;
 
        DbgPrint("Thread is created for %d (server: %d)\n", tcb->handle, tcb->server_handle);
        /*!
@@ -309,8 +312,11 @@ static void *client_cb(void *data)
        while (1) {
                FD_ZERO(&set);
                FD_SET(tcb->handle, &set);
+               FD_SET(tcb->ctrl_pipe[PIPE_READ], &set);
+
+               fd = tcb->handle > tcb->ctrl_pipe[PIPE_READ] ? tcb->handle : tcb->ctrl_pipe[PIPE_READ];
 
-               ret = select(tcb->handle + 1, &set, NULL, NULL, NULL);
+               ret = select(fd + 1, &set, NULL, NULL, NULL);
                if (ret < 0) {
                        if (errno == EINTR) {
                                DbgPrint("Select receives INTR\n");
@@ -325,6 +331,12 @@ static void *client_cb(void *data)
                        continue;
                }
 
+               if (FD_ISSET(tcb->ctrl_pipe[PIPE_READ], &set)) {
+                       DbgPrint("Thread is canceled\n");
+                       ret = -ECANCELED;
+                       break;
+               }
+
                if (!FD_ISSET(tcb->handle, &set)) {
                        ErrPrint("Unexpected handle is toggled\n");
                        ret = -EINVAL;
@@ -397,11 +409,8 @@ static inline void tcb_destroy(struct tcb *tcb)
        if (tcb->id > 0)
                g_source_remove(tcb->id);
 
-       if (tcb->evt_pipe[PIPE_WRITE] > 0)
-               close(tcb->evt_pipe[PIPE_WRITE]);
-
-       if (tcb->evt_pipe[PIPE_READ] > 0)
-               close(tcb->evt_pipe[PIPE_READ]);
+       CLOSE_PIPE(tcb->evt_pipe);
+       CLOSE_PIPE(tcb->ctrl_pipe);
 
        status = pthread_mutex_destroy(&tcb->chunk_lock);
        if (status != 0)
@@ -490,7 +499,20 @@ static inline struct tcb *tcb_create(int client_fd, int is_sync, int (*service_c
                return NULL;
        }
 
-       DbgPrint("[%d] New TCB created: %d, %d\n", client_fd, tcb->evt_pipe[0], tcb->evt_pipe[1]);
+       if (pipe2(tcb->ctrl_pipe, O_NONBLOCK | O_CLOEXEC) < 0) {
+               ErrPrint("Error: %s\n", strerror(errno));
+
+               CLOSE_PIPE(tcb->evt_pipe);
+
+               status = pthread_mutex_destroy(&tcb->chunk_lock);
+               if (status != 0)
+                       ErrPrint("Error: %s\n", strerror(status));
+
+               free(tcb);
+               return NULL;
+       }
+
+       DbgPrint("[%d] New TCB created: %d, %d\n", client_fd, tcb->evt_pipe[PIPE_READ], tcb->evt_pipe[PIPE_WRITE]);
        return tcb;
 }
 
index a69a7b3..8c6c93e 100644 (file)
@@ -81,7 +81,7 @@ EAPI int secure_socket_create_client(const char *peer)
                ErrPrint("Failed to connect to server [%s] %s\n",
                                                        peer, strerror(errno));
                if (close(handle) < 0)
-                       ErrPrint("close a handle: %s\n", strerror(errno));
+                       ErrPrint("close: %s\n", strerror(errno));
 
                return -ENOTCONN;
        }
@@ -89,7 +89,7 @@ EAPI int secure_socket_create_client(const char *peer)
        if (setsockopt(handle, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) {
                ErrPrint("Failed to change sock opt : %s\n", strerror(errno));
                if (close(handle) < 0)
-                       ErrPrint("close a handle: %s\n", strerror(errno));
+                       ErrPrint("close: %s\n", strerror(errno));
                return -EFAULT;
        }
 
@@ -112,7 +112,7 @@ EAPI int secure_socket_create_server(const char *peer)
 
                ErrPrint("Failed to bind a socket %s\n", strerror(errno));
                if (close(handle) < 0)
-                       ErrPrint("Close a handle : %s\n", strerror(errno));
+                       ErrPrint("close: %s\n", strerror(errno));
 
                return state;
        }
@@ -123,7 +123,7 @@ EAPI int secure_socket_create_server(const char *peer)
                ErrPrint("Failed to listen a socket %s\n", strerror(errno));
 
                if (close(handle) < 0)
-                       ErrPrint("Close a handle : %s\n", strerror(errno));
+                       ErrPrint("close: %s\n", strerror(errno));
 
                return state;
        }
@@ -154,7 +154,7 @@ EAPI int secure_socket_get_connection_handle(int server_handle)
                ret = -errno;
                ErrPrint("Failed to change sock opt : %s\n", strerror(errno));
                if (close(handle) < 0)
-                       ErrPrint("Close a handle: %s\n", strerror(errno));
+                       ErrPrint("close: %s\n", strerror(errno));
                return ret;
        }
 
@@ -248,7 +248,7 @@ EAPI int secure_socket_destroy_handle(int handle)
 {
        DbgPrint("Close socket handle %d\n", handle);
        if (close(handle) < 0) {
-               ErrPrint("Failed to close a handle: %s\n", strerror(errno));
+               ErrPrint("close: %s\n", strerror(errno));
                return -1;
        }
        return 0;