/* * File : netclient.c * This file is part of RT-Thread * COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Change Logs: * Date Author Notes * 2018-08-10 never the first version */ #include #include #ifdef RT_USING_SAL #include #include #include #include #include #include #include #include #include "netclient.h" #include "luat_malloc.h" #include "fcntl.h" #define LUAT_LOG_TAG "netc" #include "luat_log.h" #define BUFF_SIZE (1024) #define MAX_VAL(A, B) ((A) > (B) ? (A) : (B)) #define STRCMP(a, R, b) (strcmp((a), (b)) R 0) static netclient_t *netclient_create(void); static rt_int32_t netclient_destory(netclient_t *thiz); static rt_int32_t socket_init(netclient_t *thiz, const char *hostname, int port); static rt_int32_t socket_deinit(netclient_t *thiz); static rt_int32_t pipe_init(netclient_t *thiz); static rt_int32_t pipe_deinit(netclient_t *thiz); static void select_handle(netclient_t *thiz, char *sock_buff); static rt_int32_t netclient_thread_init(netclient_t *thiz); static void netclient_thread_entry(void *param); static rt_uint32_t netc_seq = 1; uint32_t netc_next_no(void) { if (netc_seq > 0xFFFF00) { netc_seq = 0xFF; } return netc_seq++; } static void EVENT(int netc_id, tpc_cb_t cb, int lua_ref, int tp, size_t len, void* buff) { netc_ent_t* ent; LLOGI("netc[%ld] event type=%d", netc_id, tp); if (cb == RT_NULL) return; if (tp != NETC_EVENT_RECV || len < 0) len = 0; //len = 0; ent = luat_heap_malloc(sizeof(netc_ent_t)); if (ent == NULL) { LLOGE("netc[%ld] EVENT call rt_malloc return NULL!", netc_id); return; } ent->netc_id = netc_id; ent->lua_ref = lua_ref; ent->len = len; ent->event = tp; if (len > 0) { ent->buff = luat_heap_malloc(len); if (ent->buff == RT_NULL) { LLOGE("netc[%ld] EVENT call rt_malloc buff return NULL!", netc_id); luat_heap_free(ent); return; } rt_memcpy(ent->buff, buff, len); } else { ent->buff = RT_NULL; } cb(ent); } static rt_int32_t netclient_destory(netclient_t *thiz) { int res = 0; if (thiz == RT_NULL) { LLOGE("netclient del : param is NULL, delete failed"); return -1; } LLOGI("netc[%ld] destory begin", thiz->id); if (thiz->sock_fd != -1) socket_deinit(thiz); pipe_deinit(thiz); LLOGI("netc[%ld] destory end", thiz->id); thiz->closed = 1; return 0; } static rt_int32_t socket_init(netclient_t *thiz, const char *url, int port) { struct sockaddr_in dst_addr; struct hostent *hostname; rt_int32_t res = 0; if (thiz == RT_NULL) return -1; if (thiz->type == NETC_TYPE_TCP) thiz->sock_fd = socket(AF_INET, SOCK_STREAM, 0); else { thiz->sock_fd = socket(AF_INET, SOCK_DGRAM, 0); } if (thiz->sock_fd == -1) { LLOGE("netc[%ld] socket init : socket create failed", thiz->id); return -1; } hostname = gethostbyname(url); if (hostname == NULL) { LLOGW("netc[%ld] dns name relove fail, retry at 2000ms", thiz->id); rt_thread_mdelay(2000); hostname = gethostbyname(url); if (hostname == NULL) { LLOGW("netc[%ld] dns name relove fail again, quit", thiz->id); return -1; } } thiz->ipv4 = (*((struct in_addr *)hostname->h_addr)).s_addr; // TODO: print ip for hostname //LLOGI("socket host=%s port=%d", hostname, port); dst_addr.sin_family = AF_INET; dst_addr.sin_port = htons(port); dst_addr.sin_addr = *((struct in_addr *)hostname->h_addr); memset(&(dst_addr.sin_zero), 0, sizeof(dst_addr.sin_zero)); res = connect(thiz->sock_fd, (struct sockaddr *)&dst_addr, sizeof(struct sockaddr)); if (res == -1) { LLOGE("netc[%ld] connect failed", thiz->id); return -1; } LLOGI("netc[%ld] connect succeed", thiz->id); //send(thiz->sock_fd, str, strlen(str), 0); return 0; } static rt_int32_t socket_deinit(netclient_t *thiz) { int res = 0; if (thiz == RT_NULL) { LLOGE("socket deinit : param is NULL, socket deinit failed"); return -1; } if (thiz->sock_fd < 0) return 0; res = closesocket(thiz->sock_fd); //RT_ASSERT(res == 0); thiz->sock_fd = -1; LLOGI("netc[%ld] socket close succeed", thiz->id); return 0; } static rt_int32_t pipe_init(netclient_t *thiz) { char dev_name[32]; rt_pipe_t *pipe = RT_NULL; if (thiz == RT_NULL) { LLOGE("pipe init : param is NULL"); return -1; } snprintf(thiz->pipe_name, sizeof(thiz->pipe_name), "p%06X", thiz->id); pipe = rt_pipe_create(thiz->pipe_name, 512); if (pipe == RT_NULL) { thiz->pipe_name[0] = 0x00; LLOGE("netc[%ld] pipe create failed", thiz->id); return -1; } snprintf(dev_name, sizeof(dev_name), "/dev/%s", thiz->pipe_name); thiz->pipe_read_fd = open(dev_name, O_RDONLY, 0); if (thiz->pipe_read_fd < 0) goto fail_read; thiz->pipe_write_fd = open(dev_name, O_WRONLY, 0); if (thiz->pipe_write_fd < 0) goto fail_write; LLOGI("netc[%ld] pipe init succeed", thiz->id); return 0; fail_write: close(thiz->pipe_read_fd); fail_read: rt_pipe_delete(thiz->pipe_name); thiz->pipe_name[0] = 0x00; return -1; } static rt_int32_t pipe_deinit(netclient_t *thiz) { int res = 0; if (thiz == RT_NULL) { LLOGE("pipe deinit : param is NULL, pipe deinit failed"); return -1; } if (thiz->pipe_read_fd != -1) { close(thiz->pipe_read_fd); thiz->pipe_read_fd = -1; res ++; } if (thiz->pipe_write_fd != -1) { res = close(thiz->pipe_write_fd); thiz->pipe_write_fd = -1; res ++; } if (thiz->pipe_name[0] != 0) { rt_pipe_delete(thiz->pipe_name); res ++; } if (res) LLOGI("netc[%ld] pipe close succeed", thiz->id); return 0; } static rt_int32_t netclient_thread_init(netclient_t *thiz) { rt_thread_t th; char tname[12]; rt_sprintf(tname, "n%06X", thiz->id); th = rt_thread_create(tname, netclient_thread_entry, thiz, 2048, 20, 10); if (th == RT_NULL) { LLOGE("netc[%ld] thread create fail", thiz->id); return -1; } if (rt_thread_startup(th) != RT_EOK) { rt_thread_detach(th); LLOGE("netc[%ld] thread start fail", thiz->id); return -1; } return 0; } static void select_handle(netclient_t *thiz, char *sock_buff) { fd_set fds; rt_int32_t max_fd = 0, res = 0; struct sockaddr_in from = {0}; max_fd = MAX_VAL(thiz->sock_fd, thiz->pipe_read_fd) + 1; FD_ZERO(&fds); while (1) { FD_SET(thiz->sock_fd, &fds); FD_SET(thiz->pipe_read_fd, &fds); res = select(max_fd, &fds, RT_NULL, RT_NULL, RT_NULL); /* exception handling: exit */ if (res <= 0) { LLOGI("netc[%ld] select result=%d, goto cleanup", thiz->id, res); goto exit; } /* socket is ready */ if (FD_ISSET(thiz->sock_fd, &fds)) { #if 1 if (thiz->type == NETC_TYPE_TCP) res = recv(thiz->sock_fd, sock_buff, BUFF_SIZE, 0); else { res = recvfrom(thiz->sock_fd, sock_buff, BUFF_SIZE, 0, &from, sizeof(struct sockaddr_in)); } if (res > 0) { LLOGI("netc[%ld] data recv len=%d", thiz->id, res); if (thiz->rx) { EVENT(thiz->id, thiz->rx, thiz->cb_recv, NETC_EVENT_RECV, res, sock_buff); } } else { LLOGI("netc[%ld] recv return error=%d", thiz->id, res); if (thiz->rx) { EVENT(thiz->id, thiz->rx, thiz->cb_error, NETC_EVENT_ERROR, res, sock_buff); } goto exit; } #endif //EVENT(thiz->id, thiz->rx, thiz->cb_recv, NETC_EVENT_RECV, res, sock_buff); } /* pipe is read */ if (FD_ISSET(thiz->pipe_read_fd, &fds)) { /* read pipe */ res = read(thiz->pipe_read_fd, sock_buff, BUFF_SIZE); if (res <= 0) { thiz->closed = 0; goto exit; } else if (thiz->closed) { goto exit; } else if (res > 0) { if (thiz->type == NETC_TYPE_TCP) send(thiz->sock_fd, sock_buff, res, 0); else { from.sin_addr.s_addr = thiz->ipv4; from.sin_port = htons(thiz->port); from.sin_family = AF_INET; sendto(thiz->sock_fd, sock_buff, res, 0, &from, sizeof(struct sockaddr_in)); } } } } exit: LLOGI("netc[%ld] select loop exit, cleanup", thiz->id); return; } static void netclient_thread_entry(void *param) { netclient_t *thiz = param; char *sock_buff = RT_NULL; if (socket_init(thiz, thiz->hostname, thiz->port) != 0) { LLOGW("netc[%ld] connect fail", thiz->id); if (thiz->rx) { EVENT(thiz->id, thiz->rx, thiz->cb_connect, NETC_EVENT_CONNECT_FAIL, 0, RT_NULL); } goto netc_exit; } else { LLOGI("netc[%ld] connect ok", thiz->id); if (thiz->rx) { EVENT(thiz->id, thiz->rx, thiz->cb_connect, NETC_EVENT_CONNECT_OK, 0, RT_NULL); } } sock_buff = rt_malloc(BUFF_SIZE); if (sock_buff == RT_NULL) { LLOGE("netc[%ld] fail to malloc sock_buff!!!", thiz->id); goto netc_exit; } memset(sock_buff, 0, BUFF_SIZE); select_handle(thiz, sock_buff); rt_free(sock_buff); //if (thiz != NULL) { thiz->closed = 1; netclient_destory(thiz); // if (thiz->rx) { // EVENT(thiz->id, thiz->rx, thiz->cb_close, NETC_EVENT_CLOSE, 0, RT_NULL); // } //} netc_exit: thiz->closed = 1; EVENT(thiz->id, thiz->rx, thiz->self_ref, NETC_EVENT_END, 0, RT_NULL); LLOGW("netc[%ld] thread end", thiz->id); } int32_t netclient_start(netclient_t * thiz) { if (pipe_init(thiz) != 0) goto quit; if (netclient_thread_init(thiz) != 0) goto quit; LLOGI("netc[%ld] start succeed", thiz->id); return 0; quit: netclient_destory(thiz); return 1; } void netclient_close(netclient_t *thiz) { LLOGI("netc[%ld] deinit start", thiz->id); int fd = thiz->sock_fd; if (fd != -1 && fd != 0) { closesocket(fd); } rt_thread_mdelay(1); netclient_destory(thiz); LLOGI("netc[%ld] deinit end", thiz->id); } int32_t netclient_send(netclient_t *thiz, const void *buff, size_t len, int flags) { size_t bytes = 0; if (thiz == RT_NULL) { LLOGW("netclient send : param is NULL"); return -1; } if (buff == RT_NULL) { LLOGW("netc[%ld] send : buff is NULL", thiz->id); return -1; } if (thiz->pipe_write_fd == -1) { LLOGW("netc[%ld] socket is closed!!!", thiz->id); return -1; } //LLOGD("netc[%ld] send data len=%d buff=[%s]", this->id, len, buff); bytes = write(thiz->pipe_write_fd, buff, len); return bytes; } int32_t netclient_rebind(netclient_t * thiz) { LLOGW("netclient_rebind not support yet!!"); return -1; } #endif