sal_socket.c 44.3 KB
Newer Older
1
/*
dongly's avatar
dongly 已提交
2
 * Copyright (c) 2006-2022, RT-Thread Development Team
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8
 *
 * Change Logs:
 * Date           Author       Notes
 * 2018-05-23     ChenYong     First version
9
 * 2018-11-12     ChenYong     Add TLS support
10 11 12 13
 */

#include <rtthread.h>
#include <rthw.h>
14
#include <sys/time.h>
G
guo 已提交
15
#include <sys/ioctl.h>
16 17 18

#include <sal_socket.h>
#include <sal_netdb.h>
19 20 21
#ifdef SAL_USING_TLS
#include <sal_tls.h>
#endif
mysterywolf's avatar
mysterywolf 已提交
22
#include <sal_low_lvl.h>
23
#include <netdev.h>
24

25
#ifdef SAL_INTERNET_CHECK
26
#include <ipc/workqueue.h>
27
#endif
28

G
geniusgogo 已提交
29 30 31 32
#ifdef RT_USING_LWP
#include <lwp_sys_socket.h>
#endif

33
/* check system workqueue stack size */
mysterywolf's avatar
mysterywolf 已提交
34
#if defined(SAL_INTERNET_CHECK) && RT_SYSTEM_WORKQUEUE_STACKSIZE < 1536
35 36 37 38 39
#error "The system workqueue stack size must more than 1536 bytes"
#endif

#define DBG_TAG                        "sal.skt"
#define DBG_LVL                        DBG_INFO
40 41
#include <rtdbg.h>

42 43
#define SOCKET_TABLE_STEP_LEN          4

44 45 46 47 48 49 50
/* the socket table used to dynamic allocate sockets */
struct sal_socket_table
{
    uint32_t max_socket;
    struct sal_socket **sockets;
};

51 52 53 54
/* record the netdev and res table*/
struct sal_netdev_res_table
{
    struct addrinfo *res;
55
    struct netdev *netdev;
56 57
};

G
geniusgogo 已提交
58 59 60 61 62 63 64 65 66 67
struct ifconf
{
    int	ifc_len;            /* Size of buffer.  */
    union
    {
        char* ifcu_buf;
        struct sal_ifreq *ifcu_req;
    } ifc_ifcu;
};

68 69 70 71 72
#ifdef SAL_USING_TLS
/* The global TLS protocol options */
static struct sal_proto_tls *proto_tls;
#endif

73 74 75 76
/* The global socket table */
static struct sal_socket_table socket_table;
static struct rt_mutex sal_core_lock;
static rt_bool_t init_ok = RT_FALSE;
77
static struct sal_netdev_res_table sal_dev_res_tbl[SAL_SOCKETS_NUM];
78

79 80 81 82 83
#define IS_SOCKET_PROTO_TLS(sock)                (((sock)->protocol == PROTOCOL_TLS) || \
                                                 ((sock)->protocol == PROTOCOL_DTLS))
#define SAL_SOCKOPS_PROTO_TLS_VALID(sock, name)  (proto_tls && (proto_tls->ops->name) && IS_SOCKET_PROTO_TLS(sock))

#define SAL_SOCKOPT_PROTO_TLS_EXEC(sock, name, optval, optlen)                    \
84 85
do {                                                                              \
    if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, name)){                                 \
86 87 88 89
        return proto_tls->ops->name((sock)->user_data_tls, (optval), (optlen));   \
    }                                                                             \
}while(0)                                                                         \

90 91 92 93 94 95 96 97
#define SAL_SOCKET_OBJ_GET(sock, socket)                                          \
do {                                                                              \
    (sock) = sal_get_socket(socket);                                              \
    if ((sock) == RT_NULL) {                                                      \
        return -1;                                                                \
    }                                                                             \
}while(0)                                                                         \

98
#define SAL_NETDEV_IS_UP(netdev)                                                  \
99
do {                                                                              \
100
    if (!netdev_is_up(netdev)) {                                                  \
101 102 103 104 105 106 107 108 109 110 111 112 113
        return -1;                                                                \
    }                                                                             \
}while(0)                                                                         \

#define SAL_NETDEV_SOCKETOPS_VALID(netdev, pf, ops)                               \
do {                                                                              \
    (pf) = (struct sal_proto_family *) netdev->sal_user_data;                     \
    if ((pf)->skt_ops->ops == RT_NULL){                                           \
        return -1;                                                                \
    }                                                                             \
}while(0)                                                                         \

#define SAL_NETDEV_NETDBOPS_VALID(netdev, pf, ops)                                \
114
    ((netdev) && netdev_is_up(netdev) &&                                          \
115
    ((pf) = (struct sal_proto_family *) (netdev)->sal_user_data) != RT_NULL &&    \
116
    (pf)->netdb_ops->ops)                                                         \
117

118 119 120 121 122
#define SAL_NETDBOPS_VALID(netdev, pf, ops)                                \
    ((netdev) &&                                                                 \
    ((pf) = (struct sal_proto_family *) (netdev)->sal_user_data) != RT_NULL &&    \
    (pf)->netdb_ops->ops)                                                         \

123
/**
124
 * SAL (Socket Abstraction Layer) initialize.
125
 *
126
 * @return result  0: initialize success
127
 *                -1: initialize failed
128 129 130
 */
int sal_init(void)
{
131
    int cn;
132

133
    if (init_ok)
134 135 136 137 138
    {
        LOG_D("Socket Abstraction Layer is already initialized.");
        return 0;
    }

139 140 141 142 143 144 145 146 147
    /* init sal socket table */
    cn = SOCKET_TABLE_STEP_LEN < SAL_SOCKETS_NUM ? SOCKET_TABLE_STEP_LEN : SAL_SOCKETS_NUM;
    socket_table.max_socket = cn;
    socket_table.sockets = rt_calloc(1, cn * sizeof(struct sal_socket *));
    if (socket_table.sockets == RT_NULL)
    {
        LOG_E("No memory for socket table.\n");
        return -1;
    }
148

149 150
    /*init the dev_res table */
    rt_memset(sal_dev_res_tbl,  0, sizeof(sal_dev_res_tbl));
151

152
    /* create sal socket lock */
153
    rt_mutex_init(&sal_core_lock, "sal_lock", RT_IPC_FLAG_PRIO);
154 155 156 157 158 159 160 161

    LOG_I("Socket Abstraction Layer initialize success.");
    init_ok = RT_TRUE;

    return 0;
}
INIT_COMPONENT_EXPORT(sal_init);

162
#ifdef SAL_INTERNET_CHECK
163 164
/* check SAL network interface device internet status */
static void check_netdev_internet_up_work(struct rt_work *work, void *work_data)
165
{
166 167
#define SAL_INTERNET_VERSION   0x00
#define SAL_INTERNET_BUFF_LEN  12
168
#define SAL_INTERNET_TIMEOUT   (2)
169

170 171
#define SAL_INTERNET_HOST      "link.rt-thread.org"
#define SAL_INTERNET_PORT      8101
172

173 174
#define SAL_INTERNET_MONTH_LEN 4
#define SAL_INTERNET_DATE_LEN  16
175

dongly's avatar
dongly 已提交
176 177
    unsigned int index;
    int sockfd = -1, result = 0;
178 179 180 181 182 183
    struct sockaddr_in server_addr;
    struct hostent *host;
    struct timeval timeout;
    struct netdev *netdev = (struct netdev *)work_data;
    socklen_t addr_len = sizeof(struct sockaddr_in);
    char send_data[SAL_INTERNET_BUFF_LEN], recv_data = 0;
184

185
    const char month[][SAL_INTERNET_MONTH_LEN] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
186
    char date[SAL_INTERNET_DATE_LEN];
dongly's avatar
dongly 已提交
187
    unsigned int moth_num = 0;
188 189 190 191 192

    struct sal_proto_family *pf = (struct sal_proto_family *) netdev->sal_user_data;
    const struct sal_socket_ops *skt_ops;

    if (work)
193
    {
194
        rt_free(work);
195 196
    }

197 198
    /* get network interface socket operations */
    if (pf == RT_NULL || pf->skt_ops == RT_NULL)
199
    {
200 201
        result = -RT_ERROR;
        goto __exit;
202 203
    }

204 205 206 207 208 209
    host = (struct hostent *) pf->netdb_ops->gethostbyname(SAL_INTERNET_HOST);
    if (host == RT_NULL)
    {
        result = -RT_ERROR;
        goto __exit;
    }
210

H
HubretXie 已提交
211
    skt_ops = pf->skt_ops;
212
    if ((sockfd = skt_ops->socket(AF_INET, SOCK_DGRAM, 0)) < 0)
213 214 215 216
    {
        result = -RT_ERROR;
        goto __exit;
    }
217

218 219 220 221
    server_addr.sin_family = AF_INET;
    server_addr.sin_port = htons(SAL_INTERNET_PORT);
    server_addr.sin_addr = *((struct in_addr *)host->h_addr);
    rt_memset(&(server_addr.sin_zero), 0, sizeof(server_addr.sin_zero));
222

223 224
    timeout.tv_sec = SAL_INTERNET_TIMEOUT;
    timeout.tv_usec = 0;
225

226 227 228
    /* set receive and send timeout */
    skt_ops->setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, (void *) &timeout, sizeof(timeout));
    skt_ops->setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, (void *) &timeout, sizeof(timeout));
229

230 231 232
    /* get build moth value*/
    rt_memset(date, 0x00, SAL_INTERNET_DATE_LEN);
    rt_snprintf(date, SAL_INTERNET_DATE_LEN, "%s", __DATE__);
233

234
    for (index = 0; index < sizeof(month) / SAL_INTERNET_MONTH_LEN; index++)
235
    {
236
        if (rt_memcmp(date, month[index], SAL_INTERNET_MONTH_LEN - 1) == 0)
237
        {
238 239
            moth_num = index + 1;
            break;
240 241 242
        }
    }

243 244 245 246 247 248 249 250 251 252 253 254 255
    /* not find build month */
    if (moth_num == 0 || moth_num > sizeof(month) / SAL_INTERNET_MONTH_LEN)
    {
        result = -RT_ERROR;
        goto __exit;
    }

    rt_memset(send_data, 0x00, SAL_INTERNET_BUFF_LEN);
    send_data[0] = SAL_INTERNET_VERSION;
    for (index = 0; index < netdev->hwaddr_len; index++)
    {
        send_data[index + 1] = netdev->hwaddr[index] + moth_num;
    }
256 257 258
    send_data[9] = RT_VERSION_MAJOR;
    send_data[10] = RT_VERSION_MINOR;
    send_data[11] = RT_VERSION_PATCH;
259 260

    skt_ops->sendto(sockfd, send_data, SAL_INTERNET_BUFF_LEN, 0,
261
                    (struct sockaddr *)&server_addr, sizeof(struct sockaddr));
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

    result = skt_ops->recvfrom(sockfd, &recv_data, sizeof(recv_data), 0, (struct sockaddr *)&server_addr, &addr_len);
    if (result < 0)
    {
        goto __exit;
    }

    if (recv_data == RT_FALSE)
    {
        result = -RT_ERROR;
        goto __exit;
    }

__exit:
    if (result > 0)
    {
        LOG_D("Set network interface device(%s) internet status up.", netdev->name);
279
        netdev_low_level_set_internet_status(netdev, RT_TRUE);
280 281 282 283
    }
    else
    {
        LOG_D("Set network interface device(%s) internet status down.", netdev->name);
284
        netdev_low_level_set_internet_status(netdev, RT_FALSE);
285 286 287 288 289 290
    }

    if (sockfd >= 0)
    {
        skt_ops->closesocket(sockfd);
    }
291
}
292
#endif /* SAL_INTERNET_CHECK */
293 294

/**
295
 * This function will check SAL network interface device internet status.
296
 *
297
 * @param netdev the network interface device to check
298
 */
299
int sal_check_netdev_internet_up(struct netdev *netdev)
300
{
301 302 303
    RT_ASSERT(netdev);

#ifdef SAL_INTERNET_CHECK
304
    /* workqueue for network connect */
305
    struct rt_work *net_work = RT_NULL;
306 307


308
    net_work = (struct rt_work *)rt_calloc(1, sizeof(struct rt_work));
309
    if (net_work == RT_NULL)
310
    {
311 312
        LOG_W("No memory for network interface device(%s) delay work.", netdev->name);
        return -1;
313 314
    }

315 316
    rt_work_init(net_work, check_netdev_internet_up_work, (void *)netdev);
    rt_work_submit(net_work, RT_TICK_PER_SECOND);
317
#endif /* SAL_INTERNET_CHECK */
318
    return 0;
319 320 321
}

/**
322
 * This function will register TLS protocol to the global TLS protocol.
323
 *
324
 * @param pt TLS protocol object
325
 *
326
 * @return 0: TLS protocol object register success
327
 */
328 329
#ifdef SAL_USING_TLS
int sal_proto_tls_register(const struct sal_proto_tls *pt)
330
{
331 332
    RT_ASSERT(pt);
    proto_tls = (struct sal_proto_tls *) pt;
333

334
    return 0;
335
}
336
#endif
337 338 339

/**
 * This function will get sal socket object by sal socket descriptor.
340 341 342
 *
 * @param socket sal socket index
 *
343
 * @return sal socket object of the current sal socket index
344 345 346 347 348
 */
struct sal_socket *sal_get_socket(int socket)
{
    struct sal_socket_table *st = &socket_table;

C
caixf 已提交
349 350
    socket = socket - SAL_SOCKET_OFFSET;

351 352 353 354 355 356
    if (socket < 0 || socket >= (int) st->max_socket)
    {
        return RT_NULL;
    }

    /* check socket structure valid or not */
357
    RT_ASSERT(st->sockets[socket]->magic == SAL_SOCKET_MAGIC);
358 359 360 361 362

    return st->sockets[socket];
}

/**
363
 * This function will lock sal socket.
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
 *
 * @note please don't invoke it on ISR.
 */
static void sal_lock(void)
{
    rt_err_t result;

    result = rt_mutex_take(&sal_core_lock, RT_WAITING_FOREVER);
    if (result != RT_EOK)
    {
        RT_ASSERT(0);
    }
}

/**
379
 * This function will lock sal socket.
380 381 382 383 384 385 386 387
 *
 * @note please don't invoke it on ISR.
 */
static void sal_unlock(void)
{
    rt_mutex_release(&sal_core_lock);
}

388 389 390 391 392 393 394
/**
 * This function will clean the netdev.
 *
 * @note please don't invoke it on ISR.
 */
int sal_netdev_cleanup(struct netdev *netdev)
{
还_没_想_好's avatar
还_没_想_好 已提交
395 396
    uint32_t idx = 0;
    int find_dev;
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412

    do
    {
        find_dev = 0;
        sal_lock();
        for (idx = 0; idx < socket_table.max_socket; idx++)
        {
            if (socket_table.sockets[idx] && socket_table.sockets[idx]->netdev == netdev)
            {
                find_dev = 1;
                break;
            }
        }
        sal_unlock();
        if (find_dev)
        {
413
            rt_thread_mdelay(100);
414
        }
415 416
    }
    while (find_dev);
417 418 419 420

    return 0;
}

421
/**
422
 * This function will initialize sal socket object and set socket options
423 424 425 426
 *
 * @param family    protocol family
 * @param type      socket type
 * @param protocol  transfer Protocol
427
 * @param res       sal socket object address
428 429 430 431
 *
 * @return  0 : socket initialize success
 *         -1 : input the wrong family
 *         -2 : input the wrong socket type
432
 *         -3 : get network interface failed
433 434 435
 */
static int socket_init(int family, int type, int protocol, struct sal_socket **res)
{
436

437
    struct sal_socket *sock;
438
    struct sal_proto_family *pf;
439 440
    struct netdev *netdv_def = netdev_default;
    struct netdev *netdev = RT_NULL;
441
    rt_bool_t flag = RT_FALSE;
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457

    if (family < 0 || family > AF_MAX)
    {
        return -1;
    }

    if (type < 0 || type > SOCK_MAX)
    {
        return -2;
    }

    sock = *res;
    sock->domain = family;
    sock->type = type;
    sock->protocol = protocol;

458
    if (netdv_def && netdev_is_up(netdv_def))
459
    {
460 461 462
        /* check default network interface device protocol family */
        pf = (struct sal_proto_family *) netdv_def->sal_user_data;
        if (pf != RT_NULL && pf->skt_ops && (pf->family == family || pf->sec_family == family))
463
        {
464
            sock->netdev = netdv_def;
465
            flag = RT_TRUE;
466 467
        }
    }
468

469
    if (flag == RT_FALSE)
470
    {
471 472 473 474 475 476 477 478 479
        /* get network interface device by protocol family */
        netdev = netdev_get_by_family(family);
        if (netdev == RT_NULL)
        {
            LOG_E("not find network interface device by protocol family(%d).", family);
            return -3;
        }

        sock->netdev = netdev;
480 481 482 483 484 485 486 487 488 489 490 491
    }

    return 0;
}

static int socket_alloc(struct sal_socket_table *st, int f_socket)
{
    int idx;

    /* find an empty socket entry */
    for (idx = f_socket; idx < (int) st->max_socket; idx++)
    {
492
        if (st->sockets[idx] == RT_NULL)
493
        {
494
            break;
495
        }
496 497 498 499 500 501 502 503
    }

    /* allocate a larger sockte container */
    if (idx == (int) st->max_socket &&  st->max_socket < SAL_SOCKETS_NUM)
    {
        int cnt, index;
        struct sal_socket **sockets;

504 505
        /* increase the number of socket with 4 step length */
        cnt = st->max_socket + SOCKET_TABLE_STEP_LEN;
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
        cnt = cnt > SAL_SOCKETS_NUM ? SAL_SOCKETS_NUM : cnt;

        sockets = rt_realloc(st->sockets, cnt * sizeof(struct sal_socket *));
        if (sockets == RT_NULL)
            goto __result; /* return st->max_socket */

        /* clean the new allocated fds */
        for (index = st->max_socket; index < cnt; index++)
        {
            sockets[index] = RT_NULL;
        }

        st->sockets = sockets;
        st->max_socket = cnt;
    }

    /* allocate  'struct sal_socket' */
    if (idx < (int) st->max_socket && st->sockets[idx] == RT_NULL)
    {
525
        st->sockets[idx] = rt_calloc(1, sizeof(struct sal_socket));
526 527 528 529 530 531 532 533 534 535
        if (st->sockets[idx] == RT_NULL)
        {
            idx = st->max_socket;
        }
    }

__result:
    return idx;
}

536 537 538 539 540 541 542 543 544
static void socket_free(struct sal_socket_table *st, int idx)
{
    struct sal_socket *sock;

    sock = st->sockets[idx];
    st->sockets[idx] = RT_NULL;
    rt_free(sock);
}

545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
static int socket_new(void)
{
    struct sal_socket *sock;
    struct sal_socket_table *st = &socket_table;
    int idx;

    sal_lock();

    /* find an empty sal socket entry */
    idx = socket_alloc(st, 0);

    /* can't find an empty sal socket entry */
    if (idx == (int) st->max_socket)
    {
        idx = -(1 + SAL_SOCKET_OFFSET);
        goto __result;
    }

    sock = st->sockets[idx];
    sock->socket = idx + SAL_SOCKET_OFFSET;
    sock->magic = SAL_SOCKET_MAGIC;
566
    sock->netdev = RT_NULL;
567 568 569 570
    sock->user_data = RT_NULL;
#ifdef SAL_USING_TLS
    sock->user_data_tls = RT_NULL;
#endif
571 572 573 574 575 576

__result:
    sal_unlock();
    return idx + SAL_SOCKET_OFFSET;
}

577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
static void socket_delete(int socket)
{
    struct sal_socket *sock;
    struct sal_socket_table *st = &socket_table;
    int idx;

    idx = socket - SAL_SOCKET_OFFSET;
    if (idx < 0 || idx >= (int) st->max_socket)
    {
        return;
    }
    sal_lock();
    sock = sal_get_socket(socket);
    RT_ASSERT(sock != RT_NULL);
    sock->magic = 0;
    sock->netdev = RT_NULL;
    socket_free(st, idx);
    sal_unlock();
}

597 598 599 600
int sal_accept(int socket, struct sockaddr *addr, socklen_t *addrlen)
{
    int new_socket;
    struct sal_socket *sock;
601
    struct sal_proto_family *pf;
602

603 604
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
605

606
    /* check the network interface is up status */
607 608
    SAL_NETDEV_IS_UP(sock->netdev);

609 610
    /* check the network interface socket operations */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, accept);
611

G
guo 已提交
612
    new_socket = pf->skt_ops->accept((int)(size_t)sock->user_data, addr, addrlen);
613 614 615
    if (new_socket != -1)
    {
        int retval;
616
        int new_sal_socket;
617 618 619
        struct sal_socket *new_sock;

        /* allocate a new socket structure and registered socket options */
620
        new_sal_socket = socket_new();
621 622
        new_sock = sal_get_socket(new_sal_socket);
        if (new_sock == RT_NULL)
623
        {
624
            pf->skt_ops->closesocket(new_socket);
625 626 627 628 629 630
            return -1;
        }

        retval = socket_init(sock->domain, sock->type, sock->protocol, &new_sock);
        if (retval < 0)
        {
631
            pf->skt_ops->closesocket(new_socket);
632
            rt_memset(new_sock, 0x00, sizeof(struct sal_socket));
633 634
            /* socket init failed, delete socket */
            socket_delete(new_sal_socket);
635 636 637
            LOG_E("New socket registered failed, return error %d.", retval);
            return -1;
        }
638

N
NightIsDark 已提交
639 640
        /* new socket create by accept should have the same netdev with server*/
        new_sock->netdev = sock->netdev;
641
        /* socket structure user_data used to store the acquired new socket */
G
guo 已提交
642
        new_sock->user_data = (void *)(size_t)new_socket;
643

644
        return new_sal_socket;
645 646 647 648 649
    }

    return -1;
}

650 651 652 653 654
static void sal_sockaddr_to_ipaddr(const struct sockaddr *name, ip_addr_t *local_ipaddr)
{
    const struct sockaddr_in *svr_addr = (const struct sockaddr_in *) name;

#if NETDEV_IPV4 && NETDEV_IPV6
655 656
    local_ipaddr->u_addr.ip4.addr = svr_addr->sin_addr.s_addr;
    local_ipaddr->type = IPADDR_TYPE_V4;
657
#elif NETDEV_IPV4
658
    local_ipaddr->addr = svr_addr->sin_addr.s_addr;
659
#elif NETDEV_IPV6
660 661
#error "not only support IPV6"
#endif /* NETDEV_IPV4 && NETDEV_IPV6*/
662
}
663

664 665 666
int sal_bind(int socket, const struct sockaddr *name, socklen_t namelen)
{
    struct sal_socket *sock;
667
    struct sal_proto_family *pf;
668
    ip_addr_t input_ipaddr;
669

670 671 672 673 674 675
    RT_ASSERT(name);

    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);

    /* bind network interface by ip address */
676
    sal_sockaddr_to_ipaddr(name, &input_ipaddr);
677 678

    /* check input ipaddr is default netdev ipaddr */
679
    if (!ip_addr_isany_val(input_ipaddr))
680
    {
681 682
        struct sal_proto_family *input_pf = RT_NULL, *local_pf = RT_NULL;
        struct netdev *new_netdev = RT_NULL;
683

684 685 686 687 688
        new_netdev = netdev_get_by_ipaddr(&input_ipaddr);
        if (new_netdev == RT_NULL)
        {
            return -1;
        }
689

690 691 692
        /* get input and local ip address proto_family */
        SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, local_pf, bind);
        SAL_NETDEV_SOCKETOPS_VALID(new_netdev, input_pf, bind);
693

694 695
        /* check the network interface protocol family type */
        if (input_pf->family != local_pf->family)
696
        {
697 698 699 700 701 702 703 704 705 706 707
            int new_socket = -1;

            /* protocol family is different, close old socket and create new socket by input ip address */
            local_pf->skt_ops->closesocket(socket);

            new_socket = input_pf->skt_ops->socket(input_pf->family, sock->type, sock->protocol);
            if (new_socket < 0)
            {
                return -1;
            }
            sock->netdev = new_netdev;
G
guo 已提交
708
            sock->user_data = (void *)(size_t)new_socket;
709
        }
710
    }
711

712
    /* check and get protocol families by the network interface device */
713
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, bind);
G
guo 已提交
714
    return pf->skt_ops->bind((int)(size_t)sock->user_data, name, namelen);
715 716 717 718 719
}

int sal_shutdown(int socket, int how)
{
    struct sal_socket *sock;
720 721
    struct sal_proto_family *pf;
    int error = 0;
722

723 724
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
725

L
luhuadong 已提交
726
    /* shutdown operation not need to check network interface status */
727 728
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, shutdown);
729

G
guo 已提交
730
    if (pf->skt_ops->shutdown((int)(size_t)sock->user_data, how) == 0)
731
    {
732 733 734 735 736 737 738 739 740
#ifdef SAL_USING_TLS
        if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, closesocket))
        {
            if (proto_tls->ops->closesocket(sock->user_data_tls) < 0)
            {
                return -1;
            }
        }
#endif
741 742 743 744 745
        error = 0;
    }
    else
    {
        error = -1;
746 747
    }

748 749

    return error;
750 751 752 753 754
}

int sal_getpeername(int socket, struct sockaddr *name, socklen_t *namelen)
{
    struct sal_socket *sock;
755
    struct sal_proto_family *pf;
756

757 758
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
759

760 761
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, getpeername);
762

G
guo 已提交
763
    return pf->skt_ops->getpeername((int)(size_t)sock->user_data, name, namelen);
764 765 766 767 768
}

int sal_getsockname(int socket, struct sockaddr *name, socklen_t *namelen)
{
    struct sal_socket *sock;
769
    struct sal_proto_family *pf;
770

771 772
    /* get socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
773

774 775
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, getsockname);
776

G
guo 已提交
777
    return pf->skt_ops->getsockname((int)(size_t)sock->user_data, name, namelen);
778 779 780 781 782
}

int sal_getsockopt(int socket, int level, int optname, void *optval, socklen_t *optlen)
{
    struct sal_socket *sock;
783
    struct sal_proto_family *pf;
784

785 786
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
787

788 789
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, getsockopt);
790

G
guo 已提交
791
    return pf->skt_ops->getsockopt((int)(size_t)sock->user_data, level, optname, optval, optlen);
792 793 794 795 796
}

int sal_setsockopt(int socket, int level, int optname, const void *optval, socklen_t optlen)
{
    struct sal_socket *sock;
797
    struct sal_proto_family *pf;
798

799 800
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
801

802 803
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, setsockopt);
804

805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
#ifdef SAL_USING_TLS
    if (level == SOL_TLS)
    {
        switch (optname)
        {
        case TLS_CRET_LIST:
            SAL_SOCKOPT_PROTO_TLS_EXEC(sock, set_cret_list, optval, optlen);
            break;

        case TLS_CIPHERSUITE_LIST:
            SAL_SOCKOPT_PROTO_TLS_EXEC(sock, set_ciphersurite, optval, optlen);
            break;

        case TLS_PEER_VERIFY:
            SAL_SOCKOPT_PROTO_TLS_EXEC(sock, set_peer_verify, optval, optlen);
            break;

        case TLS_DTLS_ROLE:
            SAL_SOCKOPT_PROTO_TLS_EXEC(sock, set_dtls_role, optval, optlen);
            break;

        default:
            return -1;
        }

        return 0;
    }
    else
    {
834
        return pf->skt_ops->setsockopt((int) sock->user_data, level, optname, optval, optlen);
835 836
    }
#else
G
guo 已提交
837
    return pf->skt_ops->setsockopt((int)(size_t)sock->user_data, level, optname, optval, optlen);
838
#endif /* SAL_USING_TLS */
839 840 841 842 843
}

int sal_connect(int socket, const struct sockaddr *name, socklen_t namelen)
{
    struct sal_socket *sock;
844
    struct sal_proto_family *pf;
845
    int ret;
846

847 848
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
849

850 851
    /* check the network interface is up status */
    SAL_NETDEV_IS_UP(sock->netdev);
852 853
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, connect);
854

G
guo 已提交
855
    ret = pf->skt_ops->connect((int)(size_t)sock->user_data, name, namelen);
856 857 858 859 860 861 862
#ifdef SAL_USING_TLS
    if (ret >= 0 && SAL_SOCKOPS_PROTO_TLS_VALID(sock, connect))
    {
        if (proto_tls->ops->connect(sock->user_data_tls) < 0)
        {
            return -1;
        }
863

864 865 866 867 868
        return ret;
    }
#endif

    return ret;
869 870 871 872 873
}

int sal_listen(int socket, int backlog)
{
    struct sal_socket *sock;
874
    struct sal_proto_family *pf;
875

876 877
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
878

879 880
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, listen);
881

G
guo 已提交
882
    return pf->skt_ops->listen((int)(size_t)sock->user_data, backlog);
883 884 885
}

int sal_recvfrom(int socket, void *mem, size_t len, int flags,
886
                 struct sockaddr *from, socklen_t *fromlen)
887 888
{
    struct sal_socket *sock;
889
    struct sal_proto_family *pf;
890

891 892
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
893

894 895
    /* check the network interface is up status  */
    SAL_NETDEV_IS_UP(sock->netdev);
896 897
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, recvfrom);
898

899 900 901 902
#ifdef SAL_USING_TLS
    if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, recv))
    {
        int ret;
903

904 905 906
        if ((ret = proto_tls->ops->recv(sock->user_data_tls, mem, len)) < 0)
        {
            return -1;
907
        }
908 909 910 911
        return ret;
    }
    else
    {
G
guo 已提交
912
        return pf->skt_ops->recvfrom((int)(size_t)sock->user_data, mem, len, flags, from, fromlen);
913 914
    }
#else
G
guo 已提交
915
    return pf->skt_ops->recvfrom((int)(size_t)sock->user_data, mem, len, flags, from, fromlen);
916
#endif
917 918 919
}

int sal_sendto(int socket, const void *dataptr, size_t size, int flags,
920
               const struct sockaddr *to, socklen_t tolen)
921 922
{
    struct sal_socket *sock;
923
    struct sal_proto_family *pf;
924

925 926
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
927

928 929
    /* check the network interface is up status  */
    SAL_NETDEV_IS_UP(sock->netdev);
930 931
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, sendto);
932

933 934 935 936
#ifdef SAL_USING_TLS
    if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, send))
    {
        int ret;
937

938 939 940
        if ((ret = proto_tls->ops->send(sock->user_data_tls, dataptr, size)) < 0)
        {
            return -1;
941
        }
942 943 944 945
        return ret;
    }
    else
    {
946
        return pf->skt_ops->sendto((int) sock->user_data, dataptr, size, flags, to, tolen);
947 948
    }
#else
G
guo 已提交
949
    return pf->skt_ops->sendto((int)(size_t)sock->user_data, dataptr, size, flags, to, tolen);
950
#endif
951 952 953 954 955 956 957
}

int sal_socket(int domain, int type, int protocol)
{
    int retval;
    int socket, proto_socket;
    struct sal_socket *sock;
958
    struct sal_proto_family *pf;
959 960 961 962 963 964 965

    /* allocate a new socket and registered socket options */
    socket = socket_new();
    if (socket < 0)
    {
        return -1;
    }
966 967

    /* get sal socket object by socket descriptor */
968
    sock = sal_get_socket(socket);
969 970
    if (sock == RT_NULL)
    {
971
        socket_delete(socket);
972 973
        return -1;
    }
974

975
    /* Initialize sal socket object */
976 977 978 979
    retval = socket_init(domain, type, protocol, &sock);
    if (retval < 0)
    {
        LOG_E("SAL socket protocol family input failed, return error %d.", retval);
980
        socket_delete(socket);
981 982 983
        return -1;
    }

984 985
    /* valid the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, socket);
986

987
    proto_socket = pf->skt_ops->socket(domain, type, protocol);
988 989
    if (proto_socket >= 0)
    {
990 991 992
#ifdef SAL_USING_TLS
        if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, socket))
        {
993
            sock->user_data_tls = proto_tls->ops->socket(socket);
994 995
            if (sock->user_data_tls == RT_NULL)
            {
996
                socket_delete(socket);
997 998 999 1000
                return -1;
            }
        }
#endif
G
guo 已提交
1001
        sock->user_data = (void *)(size_t)proto_socket;
1002 1003
        return sock->socket;
    }
1004
    socket_delete(socket);
1005 1006 1007 1008 1009 1010
    return -1;
}

int sal_closesocket(int socket)
{
    struct sal_socket *sock;
1011 1012
    struct sal_proto_family *pf;
    int error = 0;
1013

1014 1015
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
1016

L
luhuadong 已提交
1017
    /* clsoesocket operation not need to vaild network interface status */
1018
    /* valid the network interface socket opreation */
C
caixf 已提交
1019
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, closesocket);
1020

G
guo 已提交
1021
    if (pf->skt_ops->closesocket((int)(size_t)sock->user_data) == 0)
1022
    {
1023 1024 1025 1026 1027 1028 1029 1030 1031
#ifdef SAL_USING_TLS
        if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, closesocket))
        {
            if (proto_tls->ops->closesocket(sock->user_data_tls) < 0)
            {
                return -1;
            }
        }
#endif
1032 1033 1034 1035 1036
        error = 0;
    }
    else
    {
        error = -1;
1037 1038
    }

1039 1040
    /* delete socket */
    socket_delete(socket);
1041 1042

    return error;
1043 1044
}

G
geniusgogo 已提交
1045 1046 1047 1048 1049 1050
#define ARPHRD_ETHER    1      /* Ethernet 10/100Mbps. */
#define ARPHRD_LOOPBACK 772    /* Loopback device.  */
#define IFF_UP	0x1
#define IFF_RUNNING 0x40
#define IFF_NOARP 0x80

1051 1052
int sal_ioctlsocket(int socket, long cmd, void *arg)
{
G
geniusgogo 已提交
1053 1054 1055
    rt_slist_t *node  = RT_NULL;
    struct netdev *netdev = RT_NULL;
    struct netdev *cur_netdev_list = netdev_list;
1056
    struct sal_socket *sock;
1057
    struct sal_proto_family *pf;
G
guo 已提交
1058 1059 1060
    struct sockaddr_in *addr_in = RT_NULL;
    struct sockaddr *addr = RT_NULL;
    ip_addr_t input_ipaddr;
1061 1062
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
1063

1064 1065
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, ioctlsocket);
1066

G
guo 已提交
1067 1068 1069 1070 1071 1072 1073
    struct sal_ifreq *ifr = (struct sal_ifreq *)arg;

    if((sock->domain == AF_INET)&&(sock->netdev)&&(ifr != RT_NULL))
    {
        switch (cmd)
        {
        case SIOCGIFADDR:
G
geniusgogo 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
            if (!strcmp(ifr->ifr_ifrn.ifrn_name, sock->netdev->name))
            {
                addr_in = (struct sockaddr_in *)&(ifr->ifr_ifru.ifru_addr);
            #if NETDEV_IPV4 && NETDEV_IPV6
                addr_in->sin_addr.s_addr = sock->netdev->ip_addr.u_addr.ip4.addr;
            #elif NETDEV_IPV4
                addr_in->sin_addr.s_addr = sock->netdev->ip_addr.addr;
            #elif NETDEV_IPV6
            #error "not only support IPV6"
            #endif /* NETDEV_IPV4 && NETDEV_IPV6*/
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        addr_in = (struct sockaddr_in *)&(ifr->ifr_ifru.ifru_addr);
1100 1101 1102 1103 1104 1105 1106 1107
                    #if NETDEV_IPV4 && NETDEV_IPV6
                        addr_in->sin_addr.s_addr = sock->netdev->ip_addr.u_addr.ip4.addr;
                    #elif NETDEV_IPV4
                        addr_in->sin_addr.s_addr = sock->netdev->ip_addr.addr;
                    #elif NETDEV_IPV6
                    #error "Do not only support IPV6"
                    #endif /* NETDEV_IPV4 && NETDEV_IPV6 */

G
geniusgogo 已提交
1108 1109 1110 1111 1112
                        return 0;
                    }
                }
                return -1;
            }
G
guo 已提交
1113 1114

        case SIOCSIFADDR:
G
geniusgogo 已提交
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
            if (!strcmp(ifr->ifr_ifrn.ifrn_name, sock->netdev->name))
            {
                addr = (struct sockaddr *)&(ifr->ifr_ifru.ifru_addr);
                sal_sockaddr_to_ipaddr(addr, &input_ipaddr);
                netdev_set_ipaddr(sock->netdev, &input_ipaddr);
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        addr = (struct sockaddr *)&(ifr->ifr_ifru.ifru_addr);
                        sal_sockaddr_to_ipaddr(addr, &input_ipaddr);
                        netdev_set_ipaddr(netdev, &input_ipaddr);
                        return 0;
                    }
                }
                return -1;
            }
G
guo 已提交
1143 1144

        case SIOCGIFNETMASK:
G
geniusgogo 已提交
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
            if (!strcmp(ifr->ifr_ifrn.ifrn_name, sock->netdev->name))
            {
                addr_in = (struct sockaddr_in *)&(ifr->ifr_ifru.ifru_netmask);
            #if NETDEV_IPV4 && NETDEV_IPV6
                addr_in->sin_addr.s_addr = sock->netdev->netmask.u_addr.ip4.addr;
            #elif NETDEV_IPV4
                addr_in->sin_addr.s_addr = sock->netdev->netmask.addr;
            #elif NETDEV_IPV6
            #error "not only support IPV6"
            #endif /* NETDEV_IPV4 && NETDEV_IPV6*/
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        addr_in = (struct sockaddr_in *)&(ifr->ifr_ifru.ifru_netmask);
                    #if NETDEV_IPV4 && NETDEV_IPV6
                        addr_in->sin_addr.s_addr = netdev->netmask.u_addr.ip4.addr;
                    #elif NETDEV_IPV4
                        addr_in->sin_addr.s_addr = netdev->netmask.addr;
                    #elif NETDEV_IPV6
                    #error "not only support IPV6"
                    #endif /* NETDEV_IPV4 && NETDEV_IPV6*/
                        return 0;
                    }
                }
                return -1;
            }
G
guo 已提交
1183 1184

        case SIOCSIFNETMASK:
G
geniusgogo 已提交
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
            if (!strcmp(ifr->ifr_ifrn.ifrn_name, sock->netdev->name))
            {
                addr = (struct sockaddr *)&(ifr->ifr_ifru.ifru_netmask);
                sal_sockaddr_to_ipaddr(addr, &input_ipaddr);
                netdev_set_netmask(sock->netdev, &input_ipaddr);
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        addr = (struct sockaddr *)&(ifr->ifr_ifru.ifru_netmask);
                        sal_sockaddr_to_ipaddr(addr, &input_ipaddr);
                        netdev_set_netmask(netdev, &input_ipaddr);
                        return 0;
                    }
                }
                return -1;
            }
G
guo 已提交
1213 1214

        case SIOCGIFHWADDR:
G
geniusgogo 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
            if (!strcmp(ifr->ifr_ifrn.ifrn_name,sock->netdev->name))
            {
                addr = (struct sockaddr *)&(ifr->ifr_ifru.ifru_hwaddr);
#ifdef RT_USING_LWP
                if (!strcmp("lo", sock->netdev->name))
                {
                    struct musl_ifreq * musl_ifreq_tmp = (struct musl_ifreq *)arg;
                    musl_ifreq_tmp->ifr_ifru.ifru_hwaddr.sa_family = ARPHRD_LOOPBACK;
                }
                else
                {
                    struct musl_ifreq * musl_ifreq_tmp = (struct musl_ifreq *)arg;
                    musl_ifreq_tmp->ifr_ifru.ifru_hwaddr.sa_family = ARPHRD_ETHER;
                }
#endif
                rt_memcpy(addr->sa_data, sock->netdev->hwaddr, sock->netdev->hwaddr_len);
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        addr = (struct sockaddr *)&(ifr->ifr_ifru.ifru_hwaddr);
#ifdef RT_USING_LWP
                        if (!strcmp("lo", netdev->name))
                        {
                            struct musl_ifreq * musl_ifreq_tmp = (struct musl_ifreq *)arg;
                            musl_ifreq_tmp->ifr_ifru.ifru_hwaddr.sa_family = ARPHRD_LOOPBACK;
                        }
                        else
                        {
                            struct musl_ifreq * musl_ifreq_tmp = (struct musl_ifreq *)arg;
                            musl_ifreq_tmp->ifr_ifru.ifru_hwaddr.sa_family = ARPHRD_ETHER;
                        }
#endif
                        rt_memcpy(addr->sa_data, netdev->hwaddr, netdev->hwaddr_len);
                        return 0;
                    }
                }
                return -1;
            }
G
guo 已提交
1265 1266

        case SIOCGIFMTU:
G
geniusgogo 已提交
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
            if (!strcmp(ifr->ifr_ifrn.ifrn_name, sock->netdev->name))
            {
                ifr->ifr_ifru.ifru_mtu = sock->netdev->mtu;
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        ifr->ifr_ifru.ifru_mtu = netdev->mtu;
                        return 0;
                    }
                }
                return -1;
            }
        case SIOCGIFFLAGS:
            if (!strcmp(ifr->ifr_ifrn.ifrn_name, sock->netdev->name))
            {
                uint16_t flags_tmp = 0;
                if (sock->netdev->flags & NETDEV_FLAG_UP)
                    flags_tmp = flags_tmp | IFF_UP;
                if (!(sock->netdev->flags & NETDEV_FLAG_ETHARP))
                    flags_tmp = flags_tmp | IFF_NOARP;
                flags_tmp = flags_tmp | IFF_RUNNING;
                ifr->ifr_ifru.ifru_flags = flags_tmp;
                return 0;
            }
            else
            {
                if (cur_netdev_list == RT_NULL)
                {
                    LOG_E("ifconfig: network interface device list error.\n");
                    return -1;
                }

                for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
                {
                    netdev = rt_list_entry(node, struct netdev, list);
                    if (!strcmp(ifr->ifr_ifrn.ifrn_name, netdev->name))
                    {
                        uint16_t flags_tmp = 0;
                        if (sock->netdev->flags & NETDEV_FLAG_UP)
                            flags_tmp = flags_tmp | IFF_UP;
                        if (!(sock->netdev->flags & NETDEV_FLAG_ETHARP))
                            flags_tmp = flags_tmp | IFF_NOARP;
                        ifr->ifr_ifru.ifru_flags = flags_tmp;
                        return 0;
                    }
                }
                return -1;
            }


        case SIOCSIFFLAGS:
            sock->netdev->flags = ifr->ifr_ifru.ifru_flags;
1331
            return 0;
G
geniusgogo 已提交
1332 1333 1334 1335 1336
        case SIOCGIFCONF:
        {
            struct ifconf *ifconf_tmp;
            ifconf_tmp = (struct ifconf *)arg;
            int count_size = 0;
G
guo 已提交
1337

G
geniusgogo 已提交
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
            for (node = &(cur_netdev_list->list); node; node = rt_slist_next(node))
            {
                struct sal_ifreq sal_ifreq_temp;
                count_size++;
                netdev = rt_list_entry(node, struct netdev, list);
                rt_strcpy(sal_ifreq_temp.ifr_ifrn.ifrn_name, netdev->name);
                rt_memcpy(ifconf_tmp->ifc_ifcu.ifcu_buf, &sal_ifreq_temp, sizeof(struct sal_ifreq));
                ifconf_tmp->ifc_ifcu.ifcu_buf += sizeof(struct sal_ifreq);
            }
            ifconf_tmp->ifc_len = sizeof(struct sal_ifreq) * count_size;
            ifconf_tmp->ifc_ifcu.ifcu_buf =  ifconf_tmp->ifc_ifcu.ifcu_buf - sizeof(struct sal_ifreq) * count_size;
            return 0;
        }
G
guo 已提交
1351 1352 1353 1354 1355
        default:
            break;
        }
    }
    return pf->skt_ops->ioctlsocket((int)(size_t)sock->user_data, cmd, arg);
1356 1357
}

1358
#ifdef SAL_USING_POSIX
1359
int sal_poll(struct dfs_file *file, struct rt_pollreq *req)
1360 1361
{
    struct sal_socket *sock;
1362
    struct sal_proto_family *pf;
G
guo 已提交
1363
    int socket = (int)(size_t)file->vnode->data;
1364

1365 1366
    /* get the socket object by socket descriptor */
    SAL_SOCKET_OBJ_GET(sock, socket);
1367

1368 1369
    /* check the network interface is up status  */
    SAL_NETDEV_IS_UP(sock->netdev);
1370 1371
    /* check the network interface socket opreation */
    SAL_NETDEV_SOCKETOPS_VALID(sock->netdev, pf, poll);
1372

1373
    return pf->skt_ops->poll(file, req);
1374
}
1375
#endif
1376 1377 1378

struct hostent *sal_gethostbyname(const char *name)
{
1379 1380
    struct netdev *netdev = netdev_default;
    struct sal_proto_family *pf;
1381

1382
    if (SAL_NETDEV_NETDBOPS_VALID(netdev, pf, gethostbyname))
1383
    {
1384 1385 1386 1387
        return pf->netdb_ops->gethostbyname(name);
    }
    else
    {
1388 1389
        /* get the first network interface device with up status */
        netdev = netdev_get_first_by_flags(NETDEV_FLAG_UP);
1390
        if (SAL_NETDEV_NETDBOPS_VALID(netdev, pf, gethostbyname))
1391
        {
1392
            return pf->netdb_ops->gethostbyname(name);
1393 1394 1395 1396 1397 1398 1399
        }
    }

    return RT_NULL;
}

int sal_gethostbyname_r(const char *name, struct hostent *ret, char *buf,
1400
                        size_t buflen, struct hostent **result, int *h_errnop)
1401
{
1402 1403
    struct netdev *netdev = netdev_default;
    struct sal_proto_family *pf;
1404

1405
    if (SAL_NETDEV_NETDBOPS_VALID(netdev, pf, gethostbyname_r))
1406
    {
1407 1408 1409 1410
        return pf->netdb_ops->gethostbyname_r(name, ret, buf, buflen, result, h_errnop);
    }
    else
    {
1411 1412
        /* get the first network interface device with up status */
        netdev = netdev_get_first_by_flags(NETDEV_FLAG_UP);
1413
        if (SAL_NETDEV_NETDBOPS_VALID(netdev, pf, gethostbyname_r))
1414
        {
1415
            return pf->netdb_ops->gethostbyname_r(name, ret, buf, buflen, result, h_errnop);
1416 1417 1418 1419 1420 1421 1422
        }
    }

    return -1;
}

int sal_getaddrinfo(const char *nodename,
1423 1424 1425
                    const char *servname,
                    const struct addrinfo *hints,
                    struct addrinfo **res)
1426
{
1427 1428
    struct netdev *netdev = netdev_default;
    struct sal_proto_family *pf;
1429 1430
    int     ret = 0;
    rt_uint32_t i = 0;
1431

1432
    if (SAL_NETDEV_NETDBOPS_VALID(netdev, pf, getaddrinfo))
1433
    {
1434
        ret = pf->netdb_ops->getaddrinfo(nodename, servname, hints, res);
1435 1436 1437
    }
    else
    {
1438 1439
        /* get the first network interface device with up status */
        netdev = netdev_get_first_by_flags(NETDEV_FLAG_UP);
1440
        if (SAL_NETDEV_NETDBOPS_VALID(netdev, pf, getaddrinfo))
1441
        {
1442 1443 1444 1445 1446
            ret = pf->netdb_ops->getaddrinfo(nodename, servname, hints, res);
        }
        else
        {
            ret = -1;
1447 1448 1449
        }
    }

1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
    if(ret == RT_EOK)
    {
        /*record the netdev and res*/
        for(i = 0; i < SAL_SOCKETS_NUM; i++)
        {
            if(sal_dev_res_tbl[i].res == RT_NULL)
            {
                sal_dev_res_tbl[i].res = *res;
                sal_dev_res_tbl[i].netdev = netdev;
                break;
            }
        }

        RT_ASSERT((i < SAL_SOCKETS_NUM));
1464

1465 1466 1467
    }

    return ret;
1468
}
1469 1470 1471

void sal_freeaddrinfo(struct addrinfo *ai)
{
1472 1473 1474
    struct netdev *netdev = RT_NULL;
    struct sal_proto_family *pf = RT_NULL;
    rt_uint32_t  i = 0;
1475

1476 1477
    /*when use the multi netdev, it must free the ai use the getaddrinfo netdev */
    for(i = 0; i < SAL_SOCKETS_NUM; i++)
1478
    {
1479
        if(sal_dev_res_tbl[i].res == ai)
1480
        {
1481 1482 1483 1484
            netdev = sal_dev_res_tbl[i].netdev;
            sal_dev_res_tbl[i].res = RT_NULL;
            sal_dev_res_tbl[i].netdev = RT_NULL;
            break;
1485 1486
        }
    }
1487 1488 1489 1490 1491 1492
    RT_ASSERT((i < SAL_SOCKETS_NUM));

    if (SAL_NETDBOPS_VALID(netdev, pf, freeaddrinfo))
    {
        pf->netdb_ops->freeaddrinfo(ai);
    }
1493
}