/* * Copyright (c) 2006-2018 RT-Thread Development Team. All rights reserved. * License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include "iot_import.h" #undef perror #define perror rt_kprintf #define PLATFORM_RTTHREADSOCK_LOG(format, ...) \ do { \ HAL_Printf("LINUXSOCK %u %s() | "format"\n", __LINE__, __FUNCTION__, ##__VA_ARGS__);\ } while(0); static uint64_t _rtthread_get_time_ms(void) { #if (RT_TICK_PER_SECOND == 1000) /* #define RT_TICK_PER_SECOND 1000 */ return (uint64_t)rt_tick_get(); #else uint64_t tick = 0; uint64_t clock_ms = 0; tick = rt_tick_get(); tick = tick * 1000; return (uint64_t)((tick + RT_TICK_PER_SECOND - 1)/RT_TICK_PER_SECOND); #endif } static uint64_t _rtthread_time_left(uint64_t t_end, uint64_t t_now) { uint64_t t_left; if (t_end > t_now) { t_left = t_end - t_now; } else { t_left = 0; } return t_left; } uintptr_t HAL_TCP_Establish(const char *host, uint16_t port) { struct addrinfo hints; struct addrinfo *addrInfoList = NULL; struct addrinfo *cur = NULL; int fd = 0; int rc = 0; char service[6]; memset(&hints, 0, sizeof(hints)); PLATFORM_RTTHREADSOCK_LOG("establish tcp connection with server(host=%s port=%u)", host, port); hints.ai_family = AF_INET; /* only IPv4 */ hints.ai_socktype = SOCK_STREAM; hints.ai_protocol = IPPROTO_TCP; sprintf(service, "%u", port); if ((rc = getaddrinfo(host, service, &hints, &addrInfoList)) != 0) { perror("getaddrinfo error"); return 0; } for (cur = addrInfoList; cur != NULL; cur = cur->ai_next) { if (cur->ai_family != AF_INET) { perror("socket type error"); rc = 0; continue; } fd = socket(cur->ai_family, cur->ai_socktype, cur->ai_protocol); if (fd < 0) { perror("create socket error"); rc = 0; continue; } if (connect(fd, cur->ai_addr, cur->ai_addrlen) == 0) { rc = fd; break; } close(fd); perror("connect error"); rc = 0; } if (0 == rc) { PLATFORM_RTTHREADSOCK_LOG("fail to establish tcp"); } else { PLATFORM_RTTHREADSOCK_LOG("success to establish tcp, fd=%d", rc); } freeaddrinfo(addrInfoList); return (uintptr_t)rc; } int32_t HAL_TCP_Destroy(uintptr_t fd) { int rc; rc = close((int) fd); if (0 != rc) { perror("closesocket error"); return -1; } return 0; } int32_t HAL_TCP_Write(uintptr_t fd, const char *buf, uint32_t len, uint32_t timeout_ms) { int ret; uint32_t len_sent; uint64_t t_end, t_left; fd_set sets; t_end = _rtthread_get_time_ms() + timeout_ms; len_sent = 0; ret = 1; /* send one time if timeout_ms is value 0 */ do { t_left = _rtthread_time_left(t_end, _rtthread_get_time_ms()); if (0 != t_left) { struct timeval timeout; FD_ZERO(&sets); FD_SET(fd, &sets); timeout.tv_sec = t_left / 1000; timeout.tv_usec = (t_left % 1000) * 1000; ret = select(fd + 1, NULL, &sets, NULL, &timeout); if (ret > 0) { if (0 == FD_ISSET(fd, &sets)) { PLATFORM_RTTHREADSOCK_LOG("Should NOT arrive"); /* If timeout in next loop, it will not sent any data */ ret = 0; continue; } } else if (0 == ret) { PLATFORM_RTTHREADSOCK_LOG("select-write timeout %d", (int)fd); break; } else { if (EINTR == errno) { PLATFORM_RTTHREADSOCK_LOG("EINTR be caught"); continue; } perror("select-write fail"); break; } } if (ret > 0) { ret = send(fd, buf + len_sent, len - len_sent, 0); if (ret > 0) { len_sent += ret; } else if (0 == ret) { PLATFORM_RTTHREADSOCK_LOG("No data be sent"); } else { if (EINTR == errno) { PLATFORM_RTTHREADSOCK_LOG("EINTR be caught"); continue; } perror("send fail"); break; } } } while ((len_sent < len) && (_rtthread_time_left(t_end, _rtthread_get_time_ms()) > 0)); return len_sent; } int32_t HAL_TCP_Read(uintptr_t fd, char *buf, uint32_t len, uint32_t timeout_ms) { int ret, err_code; uint32_t len_recv; uint64_t t_end, t_left; fd_set sets; struct timeval timeout; t_end = _rtthread_get_time_ms() + timeout_ms; len_recv = 0; err_code = 0; do { t_left = _rtthread_time_left(t_end, _rtthread_get_time_ms()); if (0 == t_left) { break; } FD_ZERO(&sets); FD_SET(fd, &sets); timeout.tv_sec = t_left / 1000; timeout.tv_usec = (t_left % 1000) * 1000; ret = select(fd + 1, &sets, NULL, NULL, &timeout); if (ret > 0) { ret = recv(fd, buf + len_recv, len - len_recv, 0); if (ret > 0) { len_recv += ret; } else if (0 == ret) { perror("connection is closed"); err_code = -1; break; } else { if (EINTR == errno) { PLATFORM_RTTHREADSOCK_LOG("EINTR be caught"); continue; } perror("recv fail"); err_code = -2; break; } } else if (0 == ret) { break; } else { perror("select-recv fail"); err_code = -2; break; } } while ((len_recv < len)); /* priority to return data bytes if any data be received from TCP connection. */ /* It will get error code on next calling */ return (0 != len_recv) ? len_recv : err_code; }