2017-03-31 16:58:14 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* net/usrsock/usrsock.h
|
|
|
|
*
|
2021-11-15 07:53:26 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you 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
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
2021-11-15 07:53:26 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
2021-11-15 07:53:26 +01:00
|
|
|
* 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.
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __NET_USRSOCK_USRSOCK_H
|
|
|
|
#define __NET_USRSOCK_USRSOCK_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_USRSOCK
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2018-08-26 23:03:32 +02:00
|
|
|
#include <sys/uio.h>
|
2017-03-31 16:58:14 +02:00
|
|
|
#include <queue.h>
|
2020-02-01 08:17:32 +01:00
|
|
|
|
|
|
|
#include <nuttx/semaphore.h>
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
#include "devif/devif.h"
|
|
|
|
#include "socket/socket.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef ARRAY_SIZE
|
|
|
|
# define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Internal socket type/domain for marking usrsock sockets */
|
|
|
|
|
|
|
|
#define SOCK_USRSOCK_TYPE 0x7f
|
|
|
|
#define PF_USRSOCK_DOMAIN 0x7f
|
|
|
|
|
|
|
|
/* Internal event flags */
|
|
|
|
|
2017-07-31 15:38:24 +02:00
|
|
|
#define USRSOCK_EVENT_CONNECT_READY (1 << 0)
|
|
|
|
#define USRSOCK_EVENT_REQ_COMPLETE (1 << 15)
|
|
|
|
#define USRSOCK_EVENT_INTERNAL_MASK (USRSOCK_EVENT_CONNECT_READY | \
|
|
|
|
USRSOCK_EVENT_REQ_COMPLETE)
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Type Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
struct usrsockdev_s;
|
|
|
|
|
|
|
|
enum usrsock_conn_state_e
|
|
|
|
{
|
|
|
|
USRSOCK_CONN_STATE_UNINITIALIZED = 0,
|
|
|
|
USRSOCK_CONN_STATE_ABORTED,
|
|
|
|
USRSOCK_CONN_STATE_READY,
|
|
|
|
USRSOCK_CONN_STATE_CONNECTING,
|
|
|
|
};
|
|
|
|
|
2019-12-31 16:26:14 +01:00
|
|
|
struct usrsock_poll_s
|
|
|
|
{
|
|
|
|
FAR struct socket *psock; /* Needed to handle loss of connection */
|
|
|
|
struct pollfd *fds; /* Needed to handle poll events */
|
|
|
|
FAR struct devif_callback_s *cb; /* Needed to teardown the poll */
|
|
|
|
};
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
struct usrsock_conn_s
|
|
|
|
{
|
2019-09-01 16:47:01 +02:00
|
|
|
/* Common prologue of all connection structures. */
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
dq_entry_t node; /* Supports a doubly linked list */
|
2019-09-01 16:47:01 +02:00
|
|
|
|
|
|
|
/* This is a list of usrsock callbacks. Each callback represents a thread
|
|
|
|
* that is stalled, waiting for a specific event.
|
|
|
|
*/
|
|
|
|
|
|
|
|
FAR struct devif_callback_s *list; /* Usersock callbacks */
|
net/devif/devif_callback.c: corrected the connection event list to work as FIFO instead of LIFO.
In case of enabled packet forwarding mode, packets were forwarded in a reverse order
because of LIFO behavior of the connection event list.
The issue exposed only during high network traffic. Thus the event list started to grow
that resulted in changing the order of packets inside of groups of several packets
like the following: 3, 2, 1, 6, 5, 4, 8, 7 etc.
Remarks concerning the connection event list implementation:
* Now the queue (list) is FIFO as it should be.
* The list is singly linked.
* The list has a head pointer (inside of outer net_driver_s structure),
and a tail pointer is added into outer net_driver_s structure.
* The list item is devif_callback_s structure.
It still has two pointers to two different list chains (*nxtconn and *nxtdev).
* As before the first argument (*dev) of the list functions can be NULL,
while the other argument (*list) is effective (not NULL).
* An extra (*tail) argument is added to devif_callback_alloc()
and devif_conn_callback_free() functions.
* devif_callback_alloc() time complexity is O(1) (i.e. O(n) to fill the whole list).
* devif_callback_free() time complexity is O(n) (i.e. O(n^2) to empty the whole list).
* devif_conn_event() time complexity is O(n).
2021-08-29 22:57:26 +02:00
|
|
|
FAR struct devif_callback_s *list_tail;
|
2019-09-01 16:47:01 +02:00
|
|
|
|
|
|
|
/* usrsock-specific content follows */
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
uint8_t crefs; /* Reference counts on this instance */
|
|
|
|
|
|
|
|
enum usrsock_conn_state_e state; /* State of kernel<->daemon link for conn */
|
|
|
|
bool connected; /* Socket has been connected */
|
|
|
|
int8_t type; /* Socket type (SOCK_STREAM, etc) */
|
|
|
|
int16_t usockid; /* Connection number used for kernel<->daemon */
|
|
|
|
uint16_t flags; /* Socket state flags */
|
|
|
|
struct usrsockdev_s *dev; /* Device node used for this conn */
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2020-12-13 14:58:02 +01:00
|
|
|
sem_t sem; /* Request semaphore (only one outstanding request) */
|
2022-01-04 08:53:22 +01:00
|
|
|
uint64_t xid; /* Expected message exchange id */
|
2020-12-13 14:58:02 +01:00
|
|
|
bool inprogress; /* Request was received but daemon is still processing */
|
|
|
|
uint16_t valuelen; /* Length of value from daemon */
|
2017-03-31 16:58:14 +02:00
|
|
|
uint16_t valuelen_nontrunc; /* Actual length of value at daemon */
|
2020-12-13 14:58:02 +01:00
|
|
|
int result; /* Result for request */
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
FAR struct iovec *iov; /* Data request input buffers */
|
|
|
|
int iovcnt; /* Number of input buffers */
|
|
|
|
size_t total; /* Total length of buffers */
|
|
|
|
size_t pos; /* Writer position on input buffer */
|
|
|
|
} datain;
|
|
|
|
} resp;
|
2019-12-31 16:26:14 +01:00
|
|
|
|
|
|
|
/* The following is a list of poll structures of threads waiting for
|
|
|
|
* socket events.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct usrsock_poll_s pollinfo[CONFIG_NET_USRSOCK_NPOLLWAITERS];
|
2017-03-31 16:58:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct usrsock_reqstate_s
|
|
|
|
{
|
|
|
|
FAR struct usrsock_conn_s *conn; /* Reference to connection structure */
|
|
|
|
FAR struct devif_callback_s *cb; /* Reference to callback instance */
|
|
|
|
sem_t recvsem; /* Semaphore signals recv completion */
|
|
|
|
int result; /* OK on success, otherwise a negated errno. */
|
|
|
|
bool completed;
|
2019-03-19 16:23:08 +01:00
|
|
|
bool unlock; /* True: unlock is required */
|
2017-03-31 16:58:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct usrsock_data_reqstate_s
|
|
|
|
{
|
|
|
|
struct usrsock_reqstate_s reqstate;
|
|
|
|
uint16_t valuelen;
|
|
|
|
uint16_t valuelen_nontrunc;
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
# define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
# define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2017-07-31 17:33:59 +02:00
|
|
|
EXTERN const struct sock_intf_s g_usrsock_sockif;
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_initialize()
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the User Socket connection structures. Called once and only
|
|
|
|
* from the networking layer.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void usrsock_initialize(void);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_alloc()
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Allocate a new, uninitialized usrsock connection structure. This is
|
|
|
|
* normally something done by the implementation of the socket() API
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR struct usrsock_conn_s *usrsock_alloc(void);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_free()
|
|
|
|
*
|
|
|
|
* Description:
|
2020-12-13 14:58:02 +01:00
|
|
|
* Free a usrsock connection structure that is no longer in use. This
|
|
|
|
* should be done by the implementation of close().
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void usrsock_free(FAR struct usrsock_conn_s *conn);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_nextconn()
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Traverse the list of allocated usrsock connections
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called from usrsock device logic.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR struct usrsock_conn_s *usrsock_nextconn(FAR struct usrsock_conn_s *conn);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_active()
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a connection structure that is the appropriate
|
|
|
|
* connection for usrsock
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR struct usrsock_conn_s *usrsock_active(int16_t usockid);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_setup_request_callback()
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_setup_request_callback(FAR struct usrsock_conn_s *conn,
|
|
|
|
FAR struct usrsock_reqstate_s *pstate,
|
|
|
|
FAR devif_callback_event_t event,
|
|
|
|
uint16_t flags);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_setup_data_request_callback()
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_setup_data_request_callback(FAR struct usrsock_conn_s *conn,
|
2020-12-13 14:58:02 +01:00
|
|
|
FAR struct usrsock_data_reqstate_s *pstate,
|
|
|
|
FAR devif_callback_event_t event,
|
|
|
|
uint16_t flags);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_teardown_request_callback()
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-13 14:58:02 +01:00
|
|
|
void usrsock_teardown_request_callback(
|
|
|
|
FAR struct usrsock_reqstate_s *pstate);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_teardown_data_request_callback()
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define usrsock_teardown_data_request_callback(datastate) \
|
|
|
|
usrsock_teardown_request_callback(&(datastate)->reqstate)
|
|
|
|
|
2018-08-26 23:01:53 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_setup_datain
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void usrsock_setup_datain(FAR struct usrsock_conn_s *conn,
|
|
|
|
FAR struct iovec *iov, unsigned int iovcnt);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_teardown_datain
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define usrsock_teardown_datain(conn) usrsock_setup_datain(conn, NULL, 0)
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_event
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Handler for received connection events
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_event(FAR struct usrsock_conn_s *conn, uint16_t events);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsockdev_do_request
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsockdev_do_request(FAR struct usrsock_conn_s *conn,
|
|
|
|
FAR struct iovec *iov, unsigned int iovcnt);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsockdev_register
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Register /dev/usrsock
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void usrsockdev_register(void);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_socket
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* socket() creates an endpoint for communication and returns a socket
|
|
|
|
* structure.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* domain (see sys/socket.h)
|
|
|
|
* type (see sys/socket.h)
|
|
|
|
* protocol (see sys/socket.h)
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A pointer to a user allocated socket structure to be
|
|
|
|
* initialized.
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; negative error-code on error
|
|
|
|
*
|
|
|
|
* EACCES
|
|
|
|
* Permission to create a socket of the specified type and/or protocol
|
|
|
|
* is denied.
|
|
|
|
* EAFNOSUPPORT
|
|
|
|
* The implementation does not support the specified address family.
|
|
|
|
* EINVAL
|
|
|
|
* Unknown protocol, or protocol family not available.
|
|
|
|
* EMFILE
|
|
|
|
* Process file table overflow.
|
|
|
|
* ENFILE
|
|
|
|
* The system limit on the total number of open files has been reached.
|
|
|
|
* ENOBUFS or ENOMEM
|
|
|
|
* Insufficient memory is available. The socket cannot be created until
|
|
|
|
* sufficient resources are freed.
|
|
|
|
* EPROTONOSUPPORT
|
|
|
|
* The protocol type or the specified protocol is not supported within
|
|
|
|
* this domain.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-13 14:58:02 +01:00
|
|
|
int usrsock_socket(int domain, int type, int protocol,
|
|
|
|
FAR struct socket *psock);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_close
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Performs the close operation on a usrsock connection instance
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* conn usrsock connection instance
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; -1 on error with errno set appropriately.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_close(FAR struct usrsock_conn_s *conn);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_bind
|
|
|
|
*
|
|
|
|
* Description:
|
2020-12-13 14:58:02 +01:00
|
|
|
* usrsock_bind() gives the socket 'psock' the local address 'addr'. 'addr'
|
2017-03-31 16:58:14 +02:00
|
|
|
* is 'addrlen' bytes long. Traditionally, this is called "assigning a name
|
|
|
|
* to a socket." When a socket is created with socket, it exists in a name
|
|
|
|
* space (address family) but has no name assigned.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A reference to the socket structure of the socket to be bound
|
2017-03-31 16:58:14 +02:00
|
|
|
* addr Socket local address
|
|
|
|
* addrlen Length of 'addr'
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; -1 on error with errno set appropriately
|
|
|
|
*
|
|
|
|
* EACCES
|
|
|
|
* The address is protected, and the user is not the superuser.
|
|
|
|
* EADDRINUSE
|
|
|
|
* The given address is already in use.
|
|
|
|
* EINVAL
|
|
|
|
* The socket is already bound to an address.
|
|
|
|
* ENOTSOCK
|
|
|
|
* psock is a descriptor for a file, not a socket.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-07-31 17:33:59 +02:00
|
|
|
int usrsock_bind(FAR struct socket *psock,
|
2017-03-31 16:58:14 +02:00
|
|
|
FAR const struct sockaddr *addr,
|
|
|
|
socklen_t addrlen);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_connect
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Perform a usrsock connection
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A reference to the socket structure of the socket
|
2017-03-31 16:58:14 +02:00
|
|
|
* addr The address of the remote server to connect to
|
|
|
|
* addrlen Length of address buffer
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_connect(FAR struct socket *psock,
|
|
|
|
FAR const struct sockaddr *addr, socklen_t addrlen);
|
|
|
|
|
2018-08-26 23:15:48 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_listen
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* To accept connections, a socket is first created with psock_socket(), a
|
|
|
|
* willingness to accept incoming connections and a queue limit for
|
|
|
|
* incoming connections are specified with psock_listen(), and then the
|
|
|
|
* connections are accepted with psock_accept(). For the case of AFINET
|
|
|
|
* and AFINET6 sockets, psock_listen() calls this function. The
|
|
|
|
* psock_listen() call applies only to sockets of type SOCK_STREAM or
|
|
|
|
* SOCK_SEQPACKET.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* psock Reference to an internal, bound socket structure.
|
|
|
|
* backlog The maximum length the queue of pending connections may grow.
|
|
|
|
* If a connection request arrives with the queue full, the client
|
|
|
|
* may receive an error with an indication of ECONNREFUSED or,
|
|
|
|
* if the underlying protocol supports retransmission, the request
|
|
|
|
* may be ignored so that retries succeed.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* On success, zero is returned. On error, a negated errno value is
|
2020-12-13 14:58:02 +01:00
|
|
|
* returned. See listen() for a description of the appropriate error
|
|
|
|
* value.
|
2018-08-26 23:15:48 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_listen(FAR struct socket *psock, int backlog);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_accept
|
|
|
|
*
|
|
|
|
* Description:
|
2020-12-13 14:58:02 +01:00
|
|
|
* The usrsock_accept function is used with connection-based socket
|
2018-08-26 23:15:48 +02:00
|
|
|
* types (SOCK_STREAM, SOCK_SEQPACKET and SOCK_RDM). It extracts the first
|
|
|
|
* connection request on the queue of pending connections, creates a new
|
2020-12-13 14:58:02 +01:00
|
|
|
* connected socket with mostly the same properties as 'psock', and
|
2018-08-26 23:15:48 +02:00
|
|
|
* allocates a new socket descriptor for the socket, which is returned. The
|
|
|
|
* newly created socket is no longer in the listening state. The original
|
2020-12-13 14:58:02 +01:00
|
|
|
* socket 'psock' is unaffected by this call. Per file descriptor flags
|
|
|
|
* are not inherited across an usrsock_accept.
|
2018-08-26 23:15:48 +02:00
|
|
|
*
|
2020-12-13 14:58:02 +01:00
|
|
|
* The 'psock' argument is a socket descriptor that has been created with
|
2018-08-26 23:15:48 +02:00
|
|
|
* socket(), bound to a local address with bind(), and is listening for
|
|
|
|
* connections after a call to listen().
|
|
|
|
*
|
|
|
|
* On return, the 'addr' structure is filled in with the address of the
|
|
|
|
* connecting entity. The 'addrlen' argument initially contains the size
|
|
|
|
* of the structure pointed to by 'addr'; on return it will contain the
|
|
|
|
* actual length of the address returned.
|
|
|
|
*
|
|
|
|
* If no pending connections are present on the queue, and the socket is
|
2020-12-13 14:58:02 +01:00
|
|
|
* not marked as non-blocking, usrsock_accept blocks the caller until a
|
2018-08-26 23:15:48 +02:00
|
|
|
* connection is present. If the socket is marked non-blocking and no
|
2020-12-13 14:58:02 +01:00
|
|
|
* pending connections are present on the queue, usrsock_accept returns
|
2018-08-26 23:15:48 +02:00
|
|
|
* EAGAIN.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* psock Reference to the listening socket structure
|
|
|
|
* addr Receives the address of the connecting client
|
2020-12-13 14:58:02 +01:00
|
|
|
* addrlen Input: allocated size of 'addr'
|
|
|
|
* Return: returned size of 'addr'
|
2018-08-26 23:15:48 +02:00
|
|
|
* newsock Location to return the accepted socket information.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Returns 0 (OK) on success. On failure, it returns a negated errno
|
2020-12-13 14:58:02 +01:00
|
|
|
* value. See accept() for a description of the appropriate error value.
|
2018-08-26 23:15:48 +02:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* The network is locked.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_accept(FAR struct socket *psock, FAR struct sockaddr *addr,
|
|
|
|
FAR socklen_t *addrlen, FAR struct socket *newsock);
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_poll
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The standard poll() operation redirects operations on socket descriptors
|
|
|
|
* to this function.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* psock - An instance of the internal socket structure.
|
|
|
|
* fds - The structure describing the events to be monitored.
|
|
|
|
* setup - true: Setup up the poll; false: Teardown the poll
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0: Success; Negated errno on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-13 14:58:02 +01:00
|
|
|
int usrsock_poll(FAR struct socket *psock, FAR struct pollfd *fds,
|
|
|
|
bool setup);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2020-12-01 07:55:16 +01:00
|
|
|
* Name: usrsock_sendmsg
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2020-12-01 07:55:16 +01:00
|
|
|
* If sendmsg() is used on a connection-mode (SOCK_STREAM, SOCK_SEQPACKET)
|
|
|
|
* socket, the parameters 'msg_name' and 'msg_namelen' are ignored (and the
|
|
|
|
* error EISCONN may be returned when they are not NULL and 0), and the
|
|
|
|
* error ENOTCONN is returned when the socket was not actually connected.
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A reference to the socket structure of the socket
|
2020-12-01 07:55:16 +01:00
|
|
|
* msg Message to send
|
2017-07-31 17:33:59 +02:00
|
|
|
* flags Send flags (ignored)
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2020-12-13 14:58:02 +01:00
|
|
|
* On success, returns the number of characters sent. On any failure, a
|
|
|
|
* negated errno value is returned.
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-01 07:55:16 +01:00
|
|
|
ssize_t usrsock_sendmsg(FAR struct socket *psock, FAR struct msghdr *msg,
|
|
|
|
int flags);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2020-12-01 07:55:16 +01:00
|
|
|
* Name: usrsock_recvmsg
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2020-12-01 07:55:16 +01:00
|
|
|
* recvmsg() receives messages from a socket, and may be used to receive
|
2017-03-31 16:58:14 +02:00
|
|
|
* data on a socket whether or not it is connection-oriented.
|
|
|
|
*
|
|
|
|
* If from is not NULL, and the underlying protocol provides the source
|
|
|
|
* address, this source address is filled in. The argument fromlen
|
|
|
|
* initialized to the size of the buffer associated with from, and modified
|
|
|
|
* on return to indicate the actual size of the address stored there.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-12-01 07:55:16 +01:00
|
|
|
* psock A pointer to a NuttX-specific, internal socket structure
|
|
|
|
* msg Buffer to receive the message
|
2017-07-31 17:33:59 +02:00
|
|
|
* flags Receive flags (ignored)
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
2020-12-13 14:58:02 +01:00
|
|
|
* Returned Value:
|
|
|
|
* On success, returns the number of characters received. If no data is
|
|
|
|
* available to be received and the peer has performed an orderly shutdown,
|
|
|
|
* recvfrom() will return 0. Otherwise, on any failure, a negated errno
|
|
|
|
* value is returned.
|
|
|
|
*
|
2017-03-31 16:58:14 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-01 07:55:16 +01:00
|
|
|
ssize_t usrsock_recvmsg(FAR struct socket *psock, FAR struct msghdr *msg,
|
|
|
|
int flags);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_getsockopt
|
|
|
|
*
|
|
|
|
* Description:
|
2020-12-13 14:58:02 +01:00
|
|
|
* getsockopt() retrieve the value for the option specified by the
|
|
|
|
* 'option' argument at the protocol level specified by the 'level'
|
|
|
|
* argument. If the size of the option value is greater than 'value_len',
|
|
|
|
* the value stored in the object pointed to by the 'value' argument will
|
|
|
|
* be silently truncated. Otherwise, the length pointed to by the
|
|
|
|
* 'value_len' argument will be modified to indicate the actual length
|
|
|
|
* of the 'value'.
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* The 'level' argument specifies the protocol level of the option. To
|
|
|
|
* retrieve options at the socket level, specify the level argument as
|
|
|
|
* SOL_SOCKET.
|
|
|
|
*
|
|
|
|
* See <sys/socket.h> a complete list of values for the 'option' argument.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* conn usrsock socket connection structure
|
|
|
|
* level Protocol level to set the option
|
|
|
|
* option identifies the option to get
|
|
|
|
* value Points to the argument value
|
|
|
|
* value_len The length of the argument value
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-13 14:58:02 +01:00
|
|
|
int usrsock_getsockopt(FAR struct usrsock_conn_s *conn, int level,
|
|
|
|
int option, FAR void *value,
|
|
|
|
FAR socklen_t *value_len);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_setsockopt
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* psock_setsockopt() sets the option specified by the 'option' argument,
|
|
|
|
* at the protocol level specified by the 'level' argument, to the value
|
2020-12-13 14:58:02 +01:00
|
|
|
* pointed to by the 'value' argument for the usrsock connection.
|
2017-03-31 16:58:14 +02:00
|
|
|
*
|
|
|
|
* The 'level' argument specifies the protocol level of the option. To set
|
|
|
|
* options at the socket level, specify the level argument as SOL_SOCKET.
|
|
|
|
*
|
|
|
|
* See <sys/socket.h> a complete list of values for the 'option' argument.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* conn usrsock socket connection structure
|
|
|
|
* level Protocol level to set the option
|
|
|
|
* option identifies the option to set
|
|
|
|
* value Points to the argument value
|
|
|
|
* value_len The length of the argument value
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-13 14:58:02 +01:00
|
|
|
int usrsock_setsockopt(FAR struct usrsock_conn_s *conn, int level,
|
|
|
|
int option, FAR const void *value,
|
|
|
|
FAR socklen_t value_len);
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_getsockname
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The getsockname() function retrieves the locally-bound name of the
|
|
|
|
* specified socket, stores this address in the sockaddr structure pointed
|
|
|
|
* to by the 'addr' argument, and stores the length of this address in the
|
|
|
|
* object pointed to by the 'addrlen' argument.
|
|
|
|
*
|
|
|
|
* If the actual length of the address is greater than the length of the
|
|
|
|
* supplied sockaddr structure, the stored address will be truncated.
|
|
|
|
*
|
|
|
|
* If the socket has not been bound to a local name, the value stored in
|
|
|
|
* the object pointed to by address is unspecified.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A reference to the socket structure of the socket
|
2017-03-31 16:58:14 +02:00
|
|
|
* addr sockaddr structure to receive data [out]
|
|
|
|
* addrlen Length of sockaddr structure [in/out]
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-07-31 17:33:59 +02:00
|
|
|
int usrsock_getsockname(FAR struct socket *psock,
|
2017-03-31 16:58:14 +02:00
|
|
|
FAR struct sockaddr *addr, FAR socklen_t *addrlen);
|
|
|
|
|
2018-08-26 23:15:48 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_getpeername
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The getpeername() function retrieves the remote-connected name of the
|
|
|
|
* specified socket, stores this address in the sockaddr structure pointed
|
|
|
|
* to by the 'addr' argument, and stores the length of this address in the
|
|
|
|
* object pointed to by the 'addrlen' argument.
|
|
|
|
*
|
|
|
|
* If the actual length of the address is greater than the length of the
|
|
|
|
* supplied sockaddr structure, the stored address will be truncated.
|
|
|
|
*
|
|
|
|
* If the socket has not been bound to a local name, the value stored in
|
|
|
|
* the object pointed to by address is unspecified.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A reference to the socket structure of the socket
|
2018-08-26 23:15:48 +02:00
|
|
|
* addr sockaddr structure to receive data [out]
|
|
|
|
* addrlen Length of sockaddr structure [in/out]
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int usrsock_getpeername(FAR struct socket *psock,
|
|
|
|
FAR struct sockaddr *addr, FAR socklen_t *addrlen);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: usrsock_ioctl
|
|
|
|
*
|
|
|
|
* Description:
|
2020-12-13 14:58:02 +01:00
|
|
|
* The usrsock_ioctl() function performs network device specific
|
|
|
|
* operations.
|
2018-08-26 23:15:48 +02:00
|
|
|
*
|
|
|
|
* Parameters:
|
2020-12-13 14:58:02 +01:00
|
|
|
* psock A reference to the socket structure of the socket
|
2018-08-26 23:15:48 +02:00
|
|
|
* cmd The ioctl command
|
|
|
|
* arg The argument of the ioctl cmd
|
2020-12-13 14:58:02 +01:00
|
|
|
* arglen The length of 'arg'
|
2018-08-26 23:15:48 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-12-13 14:58:02 +01:00
|
|
|
int usrsock_ioctl(FAR struct socket *psock, int cmd, FAR void *arg,
|
|
|
|
size_t arglen);
|
2018-08-26 23:15:48 +02:00
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_NET_USRSOCK */
|
|
|
|
#endif /* __NET_USRSOCK_USRSOCK_H */
|