| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /*
- * 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.
- *
- * Again edit by rt-thread group
- * Change Logs:
- * Date Author Notes
- * 2019-07-21 MurphyZhao first edit
- */
- #include <rtthread.h>
- #include <stdio.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/time.h>
- #include <sys/socket.h>
- #include <sys/select.h>
- #include <sys/errno.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <netinet/tcp.h>
- #include <netdb.h>
- #define DBG_TAG "ali.tcp"
- #define DBG_LVL DBG_INFO
- #include <rtdbg.h>
- extern void HAL_Printf(const char *fmt, ...);
- extern uint64_t HAL_UptimeMs(void);
- 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));
- LOG_D("establish tcp connection with server(host=%s port=%d)", 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) {
- LOG_E("getaddrinfo error");
- return 0;
- }
- for (cur = addrInfoList; cur != NULL; cur = cur->ai_next) {
- if (cur->ai_family != AF_INET) {
- LOG_E("socket type error");
- rc = 0;
- continue;
- }
- fd = socket(cur->ai_family, cur->ai_socktype, cur->ai_protocol);
- if (fd < 0) {
- LOG_E("create socket error");
- rc = 0;
- continue;
- }
- if (connect(fd, cur->ai_addr, cur->ai_addrlen) == 0) {
- rc = fd;
- break;
- }
- close(fd);
- LOG_E("connect error");
- rc = 0;
- }
- if (0 == rc) {
- LOG_E("fail to establish tcp");
- } else {
- LOG_D("success to establish tcp, fd=%d", rc);
- }
- freeaddrinfo(addrInfoList);
- return (uintptr_t)rc;
- }
- int32_t HAL_TCP_Destroy(uintptr_t fd)
- {
- int rc;
-
- rc = closesocket((int) fd);
- if (0 != rc) {
- LOG_E("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 = HAL_UptimeMs() + timeout_ms;
- len_sent = 0;
- ret = 1; /* send one time if timeout_ms is value 0 */
- do {
- t_left = _rtthread_time_left(t_end, HAL_UptimeMs());
- 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)) {
- LOG_E("Should NOT arrive");
- /* If timeout in next loop, it will not sent any data */
- ret = 0;
- continue;
- }
- } else if (0 == ret) {
- LOG_E("select-write timeout %d", timeout_ms);
- break;
- } else {
- if (EINTR == errno) {
- LOG_E("EINTR be caught");
- continue;
- }
- LOG_E("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) {
- LOG_E("No data be sent");
- } else {
- if (EINTR == errno) {
- LOG_E("EINTR be caught");
- continue;
- }
- LOG_E("send fail");
- break;
- }
- }
- } while ((len_sent < len) && (_rtthread_time_left(t_end, HAL_UptimeMs()) > 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 = HAL_UptimeMs() + timeout_ms;
- len_recv = 0;
- err_code = 0;
- do {
- t_left = _rtthread_time_left(t_end, HAL_UptimeMs());
- 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) {
- LOG_E("connection is closed");
- err_code = -1;
- break;
- } else {
- if (EINTR == errno) {
- LOG_E("EINTR be caught");
- continue;
- }
- LOG_E("recv fail");
- err_code = -2;
- break;
- }
- } else if (0 == ret) {
- break;
- } else {
- LOG_E("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;
- }
|