nrfxlib API 3.3.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
187#define NRF_SO_SEC_TAG_LIST 1
188
200#define NRF_SO_SEC_HOSTNAME 2
201
214#define NRF_SO_SEC_CIPHERSUITE_LIST 3
215
223#define NRF_SO_SEC_CIPHERSUITE_USED 4
224
236#define NRF_SO_SEC_PEER_VERIFY 5
237
245#define NRF_SO_SEC_ROLE 6
246
256#define NRF_SO_SEC_SESSION_CACHE 12
257
263#define NRF_SO_SEC_SESSION_CACHE_PURGE 13
264
272#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEO 14
273
289#define NRF_SO_SEC_DTLS_CID 15
290
304#define NRF_SO_SEC_DTLS_CID_STATUS 16
305
344#define NRF_SO_SEC_DTLS_CONN_SAVE 17
345
364#define NRF_SO_SEC_DTLS_CONN_LOAD 18
365
377#define NRF_SO_SEC_HANDSHAKE_STATUS 19
378
390#define NRF_SO_SEC_DTLS_FRAG_EXT 20
409#define NRF_SO_REUSEADDR 2
410
423#define NRF_SO_ERROR 4
424
443#define NRF_SO_RCVTIMEO 20
444
460#define NRF_SO_SNDTIMEO 21
461
469#define NRF_SO_SILENCE_ALL 30
470
478#define NRF_SO_IP_ECHO_REPLY 31
479
487#define NRF_SO_IPV6_ECHO_REPLY 32
504#define NRF_SO_EXCEPTIONAL_DATA 33
542#define NRF_SO_KEEPOPEN 34
543
551#define NRF_SO_BINDTOPDN 40
552
564#define NRF_SO_TCP_SRV_SESSTIMEO 55
565
584#define NRF_SO_POLLCB 60
585
591#define NRF_SO_RAI 61
592
611#define NRF_SO_IPV6_DELAYED_ADDR_REFRESH 62
612
630#define NRF_SO_SENDCB 63
655
657typedef void (*nrf_modem_sendcb_t)(const struct nrf_modem_sendcb_params *params);
658
671#define NRF_SOL_SOCKET 1
672#define NRF_SOL_SECURE 282
692#define NRF_MSG_PEEK 0x02
693
703#define NRF_MSG_DONTWAIT 0x40
704
722#define NRF_MSG_WAITALL 0x100
723
750#define NRF_MSG_WAITACK 0x200
760#define NRF_F_GETFL 3
762#define NRF_F_SETFL 4
772#define NRF_O_NONBLOCK 0x01
790#define NRF_RAI_NO_DATA 1
798#define NRF_RAI_LAST 2
807#define NRF_RAI_ONE_RESP 3
814#define NRF_RAI_ONGOING 4
821#define NRF_RAI_WAIT_MORE 5
832#define NRF_SO_SEC_PEER_VERIFY_NONE 0
834#define NRF_SO_SEC_PEER_VERIFY_OPTIONAL 1
836#define NRF_SO_SEC_PEER_VERIFY_REQUIRED 2
850#define NRF_SO_SEC_ROLE_CLIENT 0
852#define NRF_SO_SEC_ROLE_SERVER 1
863#define NRF_SO_SEC_SESSION_CACHE_DISABLED 0
865#define NRF_SO_SEC_SESSION_CACHE_ENABLED 1
878#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_NONE 0
880#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_1S 1
882#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_3S 3
884#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_7S 7
886#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_15S 15
888#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_31S 31
890#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_63S 63
892#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_123S 123
901#define NRF_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 0xC024
902#define NRF_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA 0xC00A
903#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 0xC023
904#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0xC009
905#define NRF_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA 0xC014
906#define NRF_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 0xC027
907#define NRF_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA 0xC013
908#define NRF_TLS_PSK_WITH_AES_256_CBC_SHA 0x008D
909#define NRF_TLS_PSK_WITH_AES_128_CBC_SHA256 0x00AE
910#define NRF_TLS_PSK_WITH_AES_128_CBC_SHA 0x008C
911#define NRF_TLS_PSK_WITH_AES_128_CCM_8 0xC0A8
912#define NRF_TLS_EMPTY_RENEGOTIATIONINFO_SCSV 0x00FF
913#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0xC02B
914#define NRF_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 0xC030
915#define NRF_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 0xC02F
930#define NRF_SO_SEC_DTLS_CID_DISABLED 0
935#define NRF_SO_SEC_DTLS_CID_SUPPORTED 1
940#define NRF_SO_SEC_DTLS_CID_ENABLED 2
955#define NRF_SO_SEC_DTLS_CID_STATUS_DISABLED 0
959#define NRF_SO_SEC_DTLS_CID_STATUS_DOWNLINK 1
963#define NRF_SO_SEC_DTLS_CID_STATUS_UPLINK 2
968#define NRF_SO_SEC_DTLS_CID_STATUS_BIDIRECTIONAL 3
985#define NRF_SO_SEC_HANDSHAKE_STATUS_FULL 0
991#define NRF_SO_SEC_HANDSHAKE_STATUS_CACHED 1
1005#define NRF_SO_SEC_DTLS_FRAG_EXT_DISABLED 0
1006
1013#define NRF_SO_SEC_DTLS_FRAG_EXT_512_ENABLED 1
1014
1021#define NRF_SO_SEC_DTLS_FRAG_EXT_1024_ENABLED 2
1039#define NRF_SEC_TAG_TLS_DECRYPT_BASE 2147483648
1040#define NRF_SEC_TAG_TLS_DECRYPT_0 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 0)
1041#define NRF_SEC_TAG_TLS_DECRYPT_1 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 1)
1042#define NRF_SEC_TAG_TLS_DECRYPT_2 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 2)
1043#define NRF_SEC_TAG_TLS_DECRYPT_3 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 3)
1044#define NRF_SEC_TAG_TLS_DECRYPT_4 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 4)
1045#define NRF_SEC_TAG_TLS_DECRYPT_5 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 5)
1046#define NRF_SEC_TAG_TLS_DECRYPT_6 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 6)
1047#define NRF_SEC_TAG_TLS_DECRYPT_7 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 7)
1048#define NRF_SEC_TAG_TLS_DECRYPT_8 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 8)
1049#define NRF_SEC_TAG_TLS_DECRYPT_9 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 9)
1050#define NRF_SEC_TAG_TLS_DECRYPT_10 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 10)
1051#define NRF_SEC_TAG_TLS_DECRYPT_11 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 11)
1052#define NRF_SEC_TAG_TLS_DECRYPT_12 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 12)
1053#define NRF_SEC_TAG_TLS_DECRYPT_13 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 13)
1054#define NRF_SEC_TAG_TLS_DECRYPT_14 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 14)
1055#define NRF_SEC_TAG_TLS_DECRYPT_15 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 15)
1056#define NRF_SEC_TAG_TLS_DECRYPT_16 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 16)
1057#define NRF_SEC_TAG_TLS_DECRYPT_17 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 17)
1058#define NRF_SEC_TAG_TLS_DECRYPT_18 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 18)
1059#define NRF_SEC_TAG_TLS_DECRYPT_19 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 19)
1068#define NRF_SEC_TAG_TLS_INVALID 0xFFFFFFFF
1081 uint32_t tv_sec;
1083 uint32_t tv_usec;
1084};
1095typedef uint16_t nrf_in_port_t;
1096
1102typedef unsigned short int nrf_sa_family_t;
1103
1108 uint8_t s6_addr[16];
1109};
1110
1114typedef uint32_t nrf_in_addr_t;
1115
1122
1126extern const struct nrf_in6_addr nrf_in6addr_any;
1127
1131extern const struct nrf_in_addr nrf_inaddr_any;
1132
1148
1162
1163typedef uint32_t nrf_socklen_t;
1164typedef uint32_t nrf_nfds_t;
1165
1177
1178/* Flags for getaddrinfo() hints. */
1179
1181#define NRF_AI_CANONNAME 0x2
1183#define NRF_AI_NUMERICSERV 0x400
1191#define NRF_AI_PDNSERV 0x1000
1192
1214
1219 /* Pointer to next struct */
1224 uint32_t ifa_flags;
1235};
1236
1252typedef uint32_t nrf_sec_tag_t;
1253
1270int nrf_socket(int family, int type, int protocol);
1271
1281int nrf_close(int fildes);
1282
1299int nrf_fcntl(int fd, int cmd, int flags);
1300
1313int nrf_connect(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len);
1314
1331ssize_t nrf_send(int socket, const void *buffer, size_t length, int flags);
1332
1349ssize_t nrf_sendto(int socket, const void *message, size_t length, int flags,
1350 const struct nrf_sockaddr *dest_addr, nrf_socklen_t dest_len);
1351
1362ssize_t nrf_recv(int socket, void *buffer, size_t length, int flags);
1363
1374ssize_t nrf_recvfrom(int socket, void *restrict buffer, size_t length, int flags,
1375 struct nrf_sockaddr *restrict address, nrf_socklen_t *restrict address_len);
1376
1390 int fd;
1392 short events;
1394 short revents;
1395};
1396
1398#define NRF_POLLIN 0x1
1400#define NRF_POLLOUT 0x4
1402#define NRF_POLLERR 0x8
1404#define NRF_POLLHUP 0x10
1406#define NRF_POLLNVAL 0x20
1407
1409typedef void (*nrf_modem_pollcb_t)(struct nrf_pollfd *pollfd);
1410
1422
1439int nrf_poll(struct nrf_pollfd fds[], nrf_nfds_t nfds, int timeout);
1440
1457int nrf_setsockopt(int socket, int level, int option_name,
1458 const void *option_value, nrf_socklen_t option_len);
1459
1469int nrf_getsockopt(int socket, int level, int option_name,
1470 void *restrict option_value, nrf_socklen_t *restrict option_len);
1471
1481int nrf_bind(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len);
1482
1492int nrf_listen(int sock, int backlog);
1493
1504int nrf_accept(int socket, struct nrf_sockaddr *restrict address,
1505 nrf_socklen_t *restrict address_len);
1506
1522int nrf_inet_pton(int af, const char *restrict src, void *restrict dst);
1523
1530const char *nrf_inet_ntop(int af, const void *restrict src, char *restrict dst, nrf_socklen_t size);
1531
1547int nrf_getaddrinfo(const char *restrict nodename,
1548 const char *restrict servname,
1549 const struct nrf_addrinfo *restrict hints,
1550 struct nrf_addrinfo **restrict res);
1551
1560
1575int nrf_getifaddrs(struct nrf_ifaddrs **ifa);
1576
1585
1608int nrf_setdnsaddr(int family, const void *in_addr, nrf_socklen_t in_size);
1609
1625
1635
1638#ifdef __cplusplus
1639}
1640#endif
1641
1642#endif /* NRF_SOCKET_H__ */
uint32_t nrf_in_addr_t
IPv4 address.
Definition nrf_socket.h:1114
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:1095
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.
int nrf_socket_data_enabled_set(bool enabled)
Enable or disable data traffic through the socket interface.
void nrf_freeaddrinfo(struct nrf_addrinfo *ai)
Free address information returned by nrf_getaddrinfo().
uint32_t nrf_nfds_t
Definition nrf_socket.h:1164
unsigned short int nrf_sa_family_t
Socket families.
Definition nrf_socket.h:1102
int nrf_setdnsaddr(int family, const void *in_addr, nrf_socklen_t in_size)
Set or unset a fallback DNS address.
bool nrf_socket_data_enabled_get(void)
Get the current data enabled state.
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:1163
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:1409
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.
void(* nrf_modem_sendcb_t)(const struct nrf_modem_sendcb_params *params)
Definition nrf_socket.h:657
uint32_t nrf_sec_tag_t
Security tags used on the TLS socket.
Definition nrf_socket.h:1252
int32_t ssize_t
Definition nrf_socket.h:45
struct nrf_sockaddr * ai_addr
Definition nrf_socket.h:1208
int ai_flags
Definition nrf_socket.h:1198
int ai_socktype
Definition nrf_socket.h:1202
int ai_family
Definition nrf_socket.h:1200
struct nrf_addrinfo * ai_next
Definition nrf_socket.h:1212
char * ai_canonname
Definition nrf_socket.h:1210
nrf_socklen_t ai_addrlen
Definition nrf_socket.h:1206
int ai_protocol
Definition nrf_socket.h:1204
Address information.
Definition nrf_socket.h:1196
struct nrf_sockaddr * ifa_addr
Definition nrf_socket.h:1226
char * ifa_name
Definition nrf_socket.h:1222
void * ifa_data
Definition nrf_socket.h:1234
struct nrf_sockaddr * ifa_netmask
Definition nrf_socket.h:1228
struct nrf_sockaddr * ifa_dstaddr
Definition nrf_socket.h:1232
struct nrf_sockaddr * ifa_broadaddr
Definition nrf_socket.h:1230
uint32_t ifa_flags
Definition nrf_socket.h:1224
struct nrf_ifaddrs * ifa_next
Definition nrf_socket.h:1220
Interface address information.
Definition nrf_socket.h:1218
uint8_t s6_addr[16]
Definition nrf_socket.h:1108
IPv6 address.
Definition nrf_socket.h:1107
nrf_in_addr_t s_addr
Definition nrf_socket.h:1120
IPv4 address structure.
Definition nrf_socket.h:1119
short events
Definition nrf_socket.h:1416
bool oneshot
Definition nrf_socket.h:1420
nrf_modem_pollcb_t callback
Definition nrf_socket.h:1414
Definition nrf_socket.h:1412
int status
Definition nrf_socket.h:651
size_t bytes_sent
Definition nrf_socket.h:653
int fd
Definition nrf_socket.h:643
This structure is used to describe the parameters to a send callback function.
Definition nrf_socket.h:641
nrf_modem_sendcb_t callback
Definition nrf_socket.h:662
Definition nrf_socket.h:660
short revents
Definition nrf_socket.h:1394
short events
Definition nrf_socket.h:1392
int fd
Definition nrf_socket.h:1390
This structure is used to describe which events to poll for a given socket.
Definition nrf_socket.h:1388
uint8_t sin6_scope_id
Definition nrf_socket.h:1146
struct nrf_in6_addr sin6_addr
Definition nrf_socket.h:1144
nrf_sa_family_t sin6_family
Definition nrf_socket.h:1140
nrf_in_port_t sin6_port
Definition nrf_socket.h:1142
Address record for IPv6 addresses.
Definition nrf_socket.h:1138
nrf_sa_family_t sin_family
Definition nrf_socket.h:1156
struct nrf_in_addr sin_addr
Definition nrf_socket.h:1160
nrf_in_port_t sin_port
Definition nrf_socket.h:1158
Address record for IPv4 addresses.
Definition nrf_socket.h:1154
char sa_data[]
Definition nrf_socket.h:1175
nrf_sa_family_t sa_family
Definition nrf_socket.h:1173
Generic socket address.
Definition nrf_socket.h:1171
uint32_t tv_sec
Definition nrf_socket.h:1081
uint32_t tv_usec
Definition nrf_socket.h:1083
Structure specifying time interval.
Definition nrf_socket.h:1079