nrfxlib API 2.8.99
Loading...
Searching...
No Matches
nrf_socket.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
15#ifndef NRF_SOCKET_H__
16#define NRF_SOCKET_H__
17
18#include <stdint.h>
19#include <stddef.h>
20#include <stdbool.h>
21
22#ifdef __cplusplus
23 #ifdef __GNUC__
24 /* GNU C++ compiler supports restrict as __restrict__ */
25 #define restrict __restrict__
26 #else
27 /* Other C++ compilers may not support restrict */
28 #define restrict
29 #endif
30#endif
31
32/* ssize_t is not part of the C library, but is defined by POSIX in <sys/types.h> */
33#ifdef __has_include
34 #if __has_include(<sys/types.h>)
35 #include <sys/types.h>
36 #else
37 /* <sys/types.h> missing, define ssize_t here */
38 typedef int32_t ssize_t;
39 #endif
40#else
41 /* __has_include() not supported, rely on build-system macro */
42 #ifdef NRF_MODEM_HAS_SYS_TYPES
43 #include <sys/types.h>
44 #else
45 typedef int32_t ssize_t;
46 #endif
47#endif
48
49#ifdef __cplusplus
50extern "C" {
51#endif
52
57#define NRF_MODEM_MAX_SOCKET_COUNT 8
58
65#define NRF_HTONS(x) ((uint16_t) ((((x) & 0xff00) >> 8) | (((x) & 0x00ff) << 8)))
66
68#define NRF_HTONL(x) ((uint32_t) ((((x) & 0xff000000) >> 24) | \
69 (((x) & 0x00ff0000) >> 8) | \
70 (((x) & 0x0000ff00) << 8) | \
71 (((x) & 0x000000ff) << 24)))
72
74#define NRF_NTOHS(x) NRF_HTONS(x)
75
77#define NRF_NTOHL(x) NRF_HTONL(x)
78
80#define nrf_htons(x) NRF_HTONS(x)
81
83#define nrf_htonl(x) NRF_HTONL(x)
84
86#define nrf_ntohs(x) NRF_NTOHS(x)
87
89#define nrf_ntohl(x) NRF_NTOHL(x)
90
92#define NRF_INET_ADDRSTRLEN 16
93
95#define NRF_INET6_ADDRSTRLEN 46
96
110#define NRF_AF_UNSPEC 0
112#define NRF_AF_INET 1
114#define NRF_AF_INET6 2
116#define NRF_AF_PACKET 3
124#define NRF_SOCK_STREAM 1
126#define NRF_SOCK_DGRAM 2
128#define NRF_SOCK_RAW 3
138#define NRF_IPPROTO_IP 0
140#define NRF_IPPROTO_TCP 6
142#define NRF_IPPROTO_UDP 17
144#define NRF_IPPROTO_IPV6 41
146#define NRF_IPPROTO_RAW 255
148#define NRF_IPPROTO_ALL 512
149
151#define NRF_SPROTO_TLS1v2 258
153#define NRF_SPROTO_DTLS1v2 273
154
157 /* nrf_socket_api_enumerators */
158
168#define NRF_SOCKET_TLS_MAX_MESSAGE_SIZE 2048
169
173#define NRF_SOCKET_TLS_MAX_SEC_TAG_LIST_SIZE 7
174
179#define NRF_SO_SEC_TAG_LIST 1
180
186#define NRF_SO_SEC_HOSTNAME 2
187
193#define NRF_SO_SEC_CIPHERSUITE_LIST 3
194
200#define NRF_SO_SEC_CIPHERSUITE_USED 4
201
206#define NRF_SO_SEC_PEER_VERIFY 5
207
212#define NRF_SO_SEC_ROLE 6
213
218#define NRF_SO_SEC_SESSION_CACHE 12
219
224#define NRF_SO_SEC_SESSION_CACHE_PURGE 13
225
230#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEO 14
231
238#define NRF_SO_SEC_DTLS_CID 15
239
246#define NRF_SO_SEC_DTLS_CID_STATUS 16
247
256#define NRF_SO_SEC_DTLS_CONN_SAVE 17
257
263#define NRF_SO_SEC_DTLS_CONN_LOAD 18
264
271#define NRF_SO_SEC_HANDSHAKE_STATUS 19
281#define NRF_SO_REUSEADDR 2
283#define NRF_SO_ERROR 4
285#define NRF_SO_RCVTIMEO 20
287#define NRF_SO_SNDTIMEO 21
291#define NRF_SO_SILENCE_ALL 30
293#define NRF_SO_IP_ECHO_REPLY 31
295#define NRF_SO_IPV6_ECHO_REPLY 32
297#define NRF_SO_EXCEPTIONAL_DATA 33
299#define NRF_SO_KEEPOPEN 34
301#define NRF_SO_BINDTOPDN 40
305#define NRF_SO_TCP_SRV_SESSTIMEO 55
307#define NRF_SO_POLLCB 60
311#define NRF_SO_RAI 61
323#define NRF_SO_IPV6_DELAYED_ADDR_REFRESH 62
331#define NRF_SOL_SOCKET 1
332#define NRF_SOL_SECURE 282
341#define NRF_MSG_PEEK 0x02
343#define NRF_MSG_DONTWAIT 0x40
345#define NRF_MSG_WAITALL 0x100
350#define NRF_MSG_WAITACK 0x200
360#define NRF_F_GETFL 3
362#define NRF_F_SETFL 4
372#define NRF_O_NONBLOCK 0x01
387#define NRF_RAI_NO_DATA 1
392#define NRF_RAI_LAST 2
397#define NRF_RAI_ONE_RESP 3
401#define NRF_RAI_ONGOING 4
405#define NRF_RAI_WAIT_MORE 5
416#define NRF_SO_SEC_PEER_VERIFY_NONE 0
418#define NRF_SO_SEC_PEER_VERIFY_OPTIONAL 1
420#define NRF_SO_SEC_PEER_VERIFY_REQUIRED 2
431#define NRF_SO_SEC_ROLE_CLIENT 0
433#define NRF_SO_SEC_ROLE_SERVER 1
445#define NRF_SO_SEC_SESSION_CACHE_DISABLED 0
447#define NRF_SO_SEC_SESSION_CACHE_ENABLED 1
459#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_NONE 0
461#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_1S 1
463#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_3S 3
465#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_7S 7
467#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_15S 15
469#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_31S 31
471#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_63S 63
473#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_123S 123
482#define NRF_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 0xC024
483#define NRF_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA 0xC00A
484#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 0xC023
485#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0xC009
486#define NRF_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA 0xC014
487#define NRF_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 0xC027
488#define NRF_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA 0xC013
489#define NRF_TLS_PSK_WITH_AES_256_CBC_SHA 0x008D
490#define NRF_TLS_PSK_WITH_AES_128_CBC_SHA256 0x00AE
491#define NRF_TLS_PSK_WITH_AES_128_CBC_SHA 0x008C
492#define NRF_TLS_PSK_WITH_AES_128_CCM_8 0xC0A8
493#define NRF_TLS_EMPTY_RENEGOTIATIONINFO_SCSV 0x00FF
499#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0xC02B
500#define NRF_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 0xC030
501#define NRF_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 0xC02F
515#define NRF_SO_SEC_DTLS_CID_DISABLED 0
520#define NRF_SO_SEC_DTLS_CID_SUPPORTED 1
525#define NRF_SO_SEC_DTLS_CID_ENABLED 2
539#define NRF_SO_SEC_DTLS_CID_STATUS_DISABLED 0
543#define NRF_SO_SEC_DTLS_CID_STATUS_DOWNLINK 1
547#define NRF_SO_SEC_DTLS_CID_STATUS_UPLINK 2
551#define NRF_SO_SEC_DTLS_CID_STATUS_BIDIRECTIONAL 3
561#define NRF_SO_SEC_HANDSHAKE_STATUS_FULL 0
563#define NRF_SO_SEC_HANDSHAKE_STATUS_CACHED 1
579#define NRF_SEC_TAG_TLS_DECRYPT_BASE 2147483648
580#define NRF_SEC_TAG_TLS_DECRYPT_0 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 0)
581#define NRF_SEC_TAG_TLS_DECRYPT_1 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 1)
582#define NRF_SEC_TAG_TLS_DECRYPT_2 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 2)
583#define NRF_SEC_TAG_TLS_DECRYPT_3 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 3)
584#define NRF_SEC_TAG_TLS_DECRYPT_4 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 4)
585#define NRF_SEC_TAG_TLS_DECRYPT_5 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 5)
586#define NRF_SEC_TAG_TLS_DECRYPT_6 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 6)
587#define NRF_SEC_TAG_TLS_DECRYPT_7 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 7)
588#define NRF_SEC_TAG_TLS_DECRYPT_8 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 8)
589#define NRF_SEC_TAG_TLS_DECRYPT_9 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 9)
590#define NRF_SEC_TAG_TLS_DECRYPT_10 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 10)
591#define NRF_SEC_TAG_TLS_DECRYPT_11 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 11)
592#define NRF_SEC_TAG_TLS_DECRYPT_12 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 12)
593#define NRF_SEC_TAG_TLS_DECRYPT_13 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 13)
594#define NRF_SEC_TAG_TLS_DECRYPT_14 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 14)
595#define NRF_SEC_TAG_TLS_DECRYPT_15 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 15)
596#define NRF_SEC_TAG_TLS_DECRYPT_16 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 16)
597#define NRF_SEC_TAG_TLS_DECRYPT_17 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 17)
598#define NRF_SEC_TAG_TLS_DECRYPT_18 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 18)
599#define NRF_SEC_TAG_TLS_DECRYPT_19 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 19)
612 uint32_t tv_sec;
614 uint32_t tv_usec;
615};
626typedef uint16_t nrf_in_port_t;
627
633typedef unsigned short int nrf_sa_family_t;
634
639 uint8_t s6_addr[16];
640};
641
645typedef uint32_t nrf_in_addr_t;
646
653
657extern const struct nrf_in6_addr nrf_in6addr_any;
658
662extern const struct nrf_in_addr nrf_inaddr_any;
663
679
693
694typedef uint32_t nrf_socklen_t;
695typedef uint32_t nrf_nfds_t;
696
708
709/* Flags for getaddrinfo() hints. */
710
712#define NRF_AI_CANONNAME 0x2
714#define NRF_AI_NUMERICSERV 0x400
722#define NRF_AI_PDNSERV 0x1000
723
743
746 /* Pointer to next struct */
749 char *ifa_name;
751 uint32_t ifa_flags;
761 void *ifa_data;
762};
763
779typedef uint32_t nrf_sec_tag_t;
780
798int nrf_socket(int family, int type, int protocol);
799
810int nrf_close(int fildes);
811
829int nrf_fcntl(int fd, int cmd, int flags);
830
844int nrf_connect(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len);
845
859ssize_t nrf_send(int socket, const void *buffer, size_t length, int flags);
860
874ssize_t nrf_sendto(int socket, const void *message, size_t length, int flags,
875 const struct nrf_sockaddr *dest_addr, nrf_socklen_t dest_len);
876
888ssize_t nrf_recv(int socket, void *buffer, size_t length, int flags);
889
901ssize_t nrf_recvfrom(int socket, void *restrict buffer, size_t length, int flags,
902 struct nrf_sockaddr *restrict address, nrf_socklen_t *restrict address_len);
903
917 int fd;
919 short events;
921 short revents;
922};
923
925#define NRF_POLLIN 0x1
927#define NRF_POLLOUT 0x4
929#define NRF_POLLERR 0x8
931#define NRF_POLLHUP 0x10
933#define NRF_POLLNVAL 0x20
934
936typedef void (*nrf_modem_pollcb_t)(struct nrf_pollfd *pollfd);
937
949
967int nrf_poll(struct nrf_pollfd fds[], nrf_nfds_t nfds, int timeout);
968
986int nrf_setsockopt(int socket, int level, int option_name,
987 const void *option_value, nrf_socklen_t option_len);
988
999int nrf_getsockopt(int socket, int level, int option_name,
1000 void *restrict option_value, nrf_socklen_t *restrict option_len);
1001
1012int nrf_bind(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len);
1013
1024int nrf_listen(int sock, int backlog);
1025
1037int nrf_accept(int socket, struct nrf_sockaddr *restrict address,
1038 nrf_socklen_t *restrict address_len);
1039
1056int nrf_inet_pton(int af, const char *restrict src, void *restrict dst);
1057
1065const char *nrf_inet_ntop(int af, const void *restrict src, char *restrict dst, nrf_socklen_t size);
1066
1083int nrf_getaddrinfo(const char *restrict nodename,
1084 const char *restrict servname,
1085 const struct nrf_addrinfo *restrict hints,
1086 struct nrf_addrinfo **restrict res);
1087
1096
1112int nrf_getifaddrs(struct nrf_ifaddrs **ifa);
1113
1123
1150int nrf_setdnsaddr(int family, const void *in_addr, nrf_socklen_t in_size);
1151
1154#ifdef __cplusplus
1155}
1156#endif
1157
1158#endif /* NRF_SOCKET_H__ */
uint32_t nrf_in_addr_t
IPv4 address.
Definition nrf_socket.h:645
void nrf_freeifaddrs(struct nrf_ifaddrs *ifa)
Free address information returned by nrf_getifaddrs().
uint16_t nrf_in_port_t
Socket port type.
Definition nrf_socket.h:626
const char * nrf_inet_ntop(int af, const void *restrict src, char *restrict dst, nrf_socklen_t size)
Convert IPv4 and IPv6 addresses between binary and text form.
const struct nrf_in6_addr nrf_in6addr_any
Global IPv6 any-address.
void nrf_freeaddrinfo(struct nrf_addrinfo *ai)
Free address information returned by nrf_getaddrinfo().
uint32_t nrf_nfds_t
Definition nrf_socket.h:695
unsigned short int nrf_sa_family_t
Socket families.
Definition nrf_socket.h:633
int nrf_setdnsaddr(int family, const void *in_addr, nrf_socklen_t in_size)
Set a secondary DNS address.
int nrf_getifaddrs(struct nrf_ifaddrs **ifa)
Get interface address information.
int nrf_inet_pton(int af, const char *restrict src, void *restrict dst)
Convert IPv4 and IPv6 addresses between binary and text form.
uint32_t nrf_socklen_t
Definition nrf_socket.h:694
const struct nrf_in_addr nrf_inaddr_any
Global IPv4 any-address.
int nrf_getaddrinfo(const char *restrict nodename, const char *restrict servname, const struct nrf_addrinfo *restrict hints, struct nrf_addrinfo **restrict res)
Get address information.
void(* nrf_modem_pollcb_t)(struct nrf_pollfd *pollfd)
Definition nrf_socket.h:936
int nrf_getsockopt(int socket, int level, int option_name, void *restrict option_value, nrf_socklen_t *restrict option_len)
Get the socket options.
int nrf_close(int fildes)
Close a network socket.
int nrf_poll(struct nrf_pollfd fds[], nrf_nfds_t nfds, int timeout)
Poll multiple sockets for events.
ssize_t nrf_recvfrom(int socket, void *restrict buffer, size_t length, int flags, struct nrf_sockaddr *restrict address, nrf_socklen_t *restrict address_len)
Receive a message from a socket.
int nrf_accept(int socket, struct nrf_sockaddr *restrict address, nrf_socklen_t *restrict address_len)
Accept a new connection a socket.
int nrf_setsockopt(int socket, int level, int option_name, const void *option_value, nrf_socklen_t option_len)
Set the socket options.
int nrf_connect(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len)
Connect a socket.
ssize_t nrf_recv(int socket, void *buffer, size_t length, int flags)
Receive a message from a connected socket.
int nrf_socket(int family, int type, int protocol)
Create a network socket.
ssize_t nrf_send(int socket, const void *buffer, size_t length, int flags)
Send a message on a connected socket.
int nrf_listen(int sock, int backlog)
Listen for socket connections and limit the queue of incoming connections.
int nrf_fcntl(int fd, int cmd, int flags)
Function for controlling file descriptor options.
ssize_t nrf_sendto(int socket, const void *message, size_t length, int flags, const struct nrf_sockaddr *dest_addr, nrf_socklen_t dest_len)
Send a message on a socket.
int nrf_bind(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len)
Bind a name to a socket.
uint32_t nrf_sec_tag_t
Security tags used on the TLS socket.
Definition nrf_socket.h:779
int32_t ssize_t
Definition nrf_socket.h:45
struct nrf_sockaddr * ai_addr
Definition nrf_socket.h:737
int ai_flags
Definition nrf_socket.h:727
int ai_socktype
Definition nrf_socket.h:731
int ai_family
Definition nrf_socket.h:729
struct nrf_addrinfo * ai_next
Definition nrf_socket.h:741
char * ai_canonname
Definition nrf_socket.h:739
nrf_socklen_t ai_addrlen
Definition nrf_socket.h:735
int ai_protocol
Definition nrf_socket.h:733
Address information.
Definition nrf_socket.h:725
struct nrf_sockaddr * ifa_addr
Definition nrf_socket.h:753
char * ifa_name
Definition nrf_socket.h:749
void * ifa_data
Definition nrf_socket.h:761
struct nrf_sockaddr * ifa_netmask
Definition nrf_socket.h:755
struct nrf_sockaddr * ifa_dstaddr
Definition nrf_socket.h:759
struct nrf_sockaddr * ifa_broadaddr
Definition nrf_socket.h:757
uint32_t ifa_flags
Definition nrf_socket.h:751
struct nrf_ifaddrs * ifa_next
Definition nrf_socket.h:747
Interface address information.
Definition nrf_socket.h:745
uint8_t s6_addr[16]
Definition nrf_socket.h:639
IPv6 address.
Definition nrf_socket.h:638
nrf_in_addr_t s_addr
Definition nrf_socket.h:651
IPv4 address structure.
Definition nrf_socket.h:650
short events
Definition nrf_socket.h:943
bool oneshot
Definition nrf_socket.h:947
nrf_modem_pollcb_t callback
Definition nrf_socket.h:941
Definition nrf_socket.h:939
short revents
Definition nrf_socket.h:921
short events
Definition nrf_socket.h:919
int fd
Definition nrf_socket.h:917
This structure is used to describe which events to poll for a given socket.
Definition nrf_socket.h:915
uint8_t sin6_scope_id
Definition nrf_socket.h:677
struct nrf_in6_addr sin6_addr
Definition nrf_socket.h:675
nrf_sa_family_t sin6_family
Definition nrf_socket.h:671
nrf_in_port_t sin6_port
Definition nrf_socket.h:673
Address record for IPv6 addresses.
Definition nrf_socket.h:669
nrf_sa_family_t sin_family
Definition nrf_socket.h:687
struct nrf_in_addr sin_addr
Definition nrf_socket.h:691
nrf_in_port_t sin_port
Definition nrf_socket.h:689
Address record for IPv4 addresses.
Definition nrf_socket.h:685
char sa_data[]
Definition nrf_socket.h:706
nrf_sa_family_t sa_family
Definition nrf_socket.h:704
Generic socket address.
Definition nrf_socket.h:702
uint32_t tv_sec
Definition nrf_socket.h:612
uint32_t tv_usec
Definition nrf_socket.h:614
Structure specifying time interval.
Definition nrf_socket.h:610