Mistake on this page? Email us
pal_network.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // Copyright 2016-2019 ARM Ltd.
3 //
4 // SPDX-License-Identifier: Apache-2.0
5 //
6 // Licensed under the Apache License, Version 2.0 (the "License");
7 // you may not use this file except in compliance with the License.
8 // You may obtain a copy of the License at
9 //
10 // http://www.apache.org/licenses/LICENSE-2.0
11 //
12 // Unless required by applicable law or agreed to in writing, software
13 // distributed under the License is distributed on an "AS IS" BASIS,
14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 // See the License for the specific language governing permissions and
16 // limitations under the License.
17 // ----------------------------------------------------------------------------
18 
19 #ifndef _PAL_SOCKET_H
20 #define _PAL_SOCKET_H
21 
22 #ifndef _PAL_H
23  #error "Please do not include this file directly, use pal.h instead"
24 #endif
25 
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
43 typedef uint32_t palSocketLength_t;
44 typedef void* palSocket_t;
46 #define PAL_NET_MAX_ADDR_SIZE 32 // check if we can make this more efficient
47 
48 typedef struct palSocketAddress {
49  unsigned short addressType;
53 typedef struct palNetInterfaceInfo{
54  char interfaceName[16]; //15 + ‘\0’
56  uint32_t addressSize;
58 
60 typedef enum {
63  PAL_AF_INET6 = 10,
65 
67 typedef enum {
71 
73 typedef enum {
74 #if PAL_NET_TCP_AND_TLS_SUPPORT
75  PAL_SOCK_STREAM = 1,
76  PAL_SOCK_STREAM_SERVER = 99,
77 #endif //PAL_NET_TCP_AND_TLS_SUPPORT
80 
82 typedef enum {
83  PAL_SO_REUSEADDR = 0x0004,
84 #if PAL_NET_TCP_AND_TLS_SUPPORT // Socket options below supported only if TCP is supported.
85  PAL_SO_KEEPALIVE = 0x0008,
86  PAL_SO_KEEPIDLE = 0x0009,
87  PAL_SO_KEEPINTVL = 0x0010,
88 #endif //PAL_NET_TCP_AND_TLS_SUPPORT
89  PAL_SO_SNDTIMEO = 0x1005,
90  PAL_SO_RCVTIMEO = 0x1006,
93 
95 typedef enum {
99 
100 #define PAL_NET_DEFAULT_INTERFACE 0xFFFFFFFF
101 
102 #define PAL_IPV4_ADDRESS_SIZE 4
103 #define PAL_IPV6_ADDRESS_SIZE 16
104 
107 
108 typedef void(*connectionStatusCallback) (palNetworkStatus_t status, void *client_arg);
109 
122 palStatus_t pal_registerNetworkInterface(void* networkInterfaceContext, uint32_t* interfaceIndex);
123 
128 palStatus_t pal_unregisterNetworkInterface(uint32_t interfaceIndex);
129 
137 palStatus_t pal_setSockAddrPort(palSocketAddress_t* address, uint16_t port);
138 
144 palStatus_t pal_setSockAddrIPV4Addr(palSocketAddress_t* address, palIpV4Addr_t ipV4Addr);
145 
151 palStatus_t pal_getSockAddrIPV4Addr(const palSocketAddress_t* address, palIpV4Addr_t ipV4Addr);
152 
158 palStatus_t pal_setSockAddrIPV6Addr(palSocketAddress_t* address, palIpV6Addr_t ipV6Addr);
159 
165 palStatus_t pal_getSockAddrIPV6Addr(const palSocketAddress_t* address, palIpV6Addr_t ipV6Addr);
166 
172 palStatus_t pal_getSockAddrPort(const palSocketAddress_t* address, uint16_t* port);
173 
181 palStatus_t pal_setSocketOptions(palSocket_t socket, int optionName, const void* optionValue, palSocketLength_t optionLength);
182 
191 palStatus_t pal_setSocketOptionsWithLevel(palSocket_t socket, palSocketOptionLevelName_t optionLevel, int optionName, const void* optionValue, palSocketLength_t optionLength);
192 
198 palStatus_t pal_isNonBlocking(palSocket_t socket, bool* isNonBlocking);
199 
206 palStatus_t pal_bind(palSocket_t socket, palSocketAddress_t* myAddress, palSocketLength_t addressLength);
207 
217 palStatus_t pal_receiveFrom(palSocket_t socket, void* buffer, size_t length, palSocketAddress_t* from, palSocketLength_t* fromLength, size_t* bytesReceived);
218 
228 palStatus_t pal_sendTo(palSocket_t socket, const void* buffer, size_t length, const palSocketAddress_t* to, palSocketLength_t toLength, size_t* bytesSent);
229 
235 palStatus_t pal_close(palSocket_t* socket);
236 
241 palStatus_t pal_getNumberOfNetInterfaces(uint32_t* numInterfaces);
242 
248 palStatus_t pal_getNetInterfaceInfo(uint32_t interfaceNum, palNetInterfaceInfo_t* interfaceInfo);
249 
256 palStatus_t pal_setConnectionStatusCallback(uint32_t interfaceNum, connectionStatusCallback callback, void *client_arg);
257 
258 #define PAL_NET_SOCKET_SELECT_MAX_SOCKETS 8
259 #define PAL_NET_SOCKET_SELECT_RX_BIT (1)
260 #define PAL_NET_SOCKET_SELECT_TX_BIT (2)
261 #define PAL_NET_SOCKET_SELECT_ERR_BIT (4)
262 
263 #define PAL_NET_SELECT_IS_RX(socketStatus, index) ((socketStatus[index] & PAL_NET_SOCKET_SELECT_RX_BIT) != 0)
264 #define PAL_NET_SELECT_IS_TX(socketStatus, index) ((socketStatus[index] & PAL_NET_SOCKET_SELECT_TX_BIT) != 0)
265 #define PAL_NET_SELECT_IS_ERR(socketStatus, index) ((socketStatus[index] & PAL_NET_SOCKET_SELECT_ERR_BIT) != 0)
270 typedef void(*palAsyncSocketCallback_t)(void*);
271 
272 #if PAL_NET_TCP_AND_TLS_SUPPORT // The functionality below is supported only if TCP is supported.
273 
274 #if PAL_NET_SERVER_SOCKET_API
275 
281 palStatus_t pal_listen(palSocket_t socket, int backlog);
282 
292 palStatus_t pal_accept(palSocket_t socket, palSocketAddress_t* address, palSocketLength_t* addressLen, palSocket_t* acceptedSocket, palAsyncSocketCallback_t callback, void* callbackArgument);
293 
294 #endif // PAL_NET_SERVER_SOCKET_API
295 
302 palStatus_t pal_connect(palSocket_t socket, const palSocketAddress_t* address, palSocketLength_t addressLen);
303 
311 palStatus_t pal_recv(palSocket_t socket, void* buf, size_t len, size_t* recievedDataSize);
312 
320 palStatus_t pal_send(palSocket_t socket, const void* buf, size_t len, size_t* sentDataSize);
321 
322 
323 #endif //PAL_NET_TCP_AND_TLS_SUPPORT
324 
334 palStatus_t pal_asynchronousSocket(palSocketDomain_t domain, palSocketType_t type, bool nonBlockingSocket, uint32_t interfaceNum, palAsyncSocketCallback_t callback, palSocket_t* socket);
335 
346 palStatus_t pal_asynchronousSocketWithArgument(palSocketDomain_t domain, palSocketType_t type, bool nonBlockingSocket, uint32_t interfaceNum, palAsyncSocketCallback_t callback,void* callbackArgument, palSocket_t* socket);
347 
348 
349 #if PAL_NET_DNS_SUPPORT
350 #if (PAL_DNS_API_VERSION == 0) || (PAL_DNS_API_VERSION == 1)
351 
358 palStatus_t pal_getAddressInfo(const char* hostname, palSocketAddress_t* address, palSocketLength_t* addressLength);
359 
360 #if (PAL_DNS_API_VERSION == 1)
361 
369 typedef void(*palGetAddressInfoAsyncCallback_t)(const char* hostname, palSocketAddress_t* address, palSocketLength_t* addressLength, palStatus_t status, void* callbackArgument);
370 
381 palStatus_t pal_getAddressInfoAsync(const char* hostname, palSocketAddress_t* address, palSocketLength_t* addressLength, palGetAddressInfoAsyncCallback_t callback, void* callbackArgument);
382 #endif
383 
384 #elif (PAL_DNS_API_VERSION == 2)
385 typedef int32_t palDNSQuery_t;
393 typedef void(*palGetAddressInfoAsyncCallback_t)(const char* hostname, palSocketAddress_t* address, palStatus_t status, void* callbackArgument);
394 
402 typedef struct pal_asyncAddressInfo
403 {
404  char* hostname;
405  palSocketAddress_t* address;
406  palGetAddressInfoAsyncCallback_t callback;
407  void* callbackArgument;
408  palDNSQuery_t *queryHandle;
409 } pal_asyncAddressInfo_t;
410 
420 palStatus_t pal_getAddressInfoAsync(const char* hostname,
421  palSocketAddress_t* address,
422  palGetAddressInfoAsyncCallback_t callback,
423  void* callbackArgument,
424  palDNSQuery_t* queryHandle);
425 
429 palStatus_t pal_cancelAddressInfoAsync(palDNSQuery_t queryHandle);
430 #else
431  #error "Please specify the platform PAL_DNS_API_VERSION 0, 1, or 2."
432 #endif // PAL_DNS_API_VERSION
433 #endif // PAL_NET_DNS_SUPPORT
434 
445 uint8_t pal_getRttEstimate();
446 
457 uint16_t pal_getStaggerEstimate(uint16_t data_amount);
458 
459 #ifdef __cplusplus
460 }
461 #endif
462 #endif //_PAL_SOCKET_H
palStatus_t pal_getSockAddrPort(const palSocketAddress_t *address, uint16_t *port)
Get a port from an address data structure.
palStatus_t pal_sendTo(palSocket_t socket, const void *buffer, size_t length, const palSocketAddress_t *to, palSocketLength_t toLength, size_t *bytesSent)
Send a payload to an address using a specific socket.
Definition: pal_network.h:96
palStatus_t pal_close(palSocket_t *socket)
Close a network socket.
palStatus_t pal_getSockAddrIPV6Addr(const palSocketAddress_t *address, palIpV6Addr_t ipV6Addr)
Get an IPv6 address from an address data structure.
Definition: pal_network.h:97
Definition: pal_network.h:61
palStatus_t pal_registerNetworkInterface(void *networkInterfaceContext, uint32_t *interfaceIndex)
Register a network interface for use with PAL sockets.
struct palNetInterfaceInfo palNetInterfaceInfo_t
uint32_t palSocketLength_t
The length of data.
Definition: pal_network.h:43
palStatus_t pal_getNetInterfaceInfo(uint32_t interfaceNum, palNetInterfaceInfo_t *interfaceInfo)
Get information regarding the socket at the interface index number given. This number is returned whe...
uint8_t palIpV4Addr_t[PAL_IPV4_ADDRESS_SIZE]
Definition: pal_network.h:105
Datagram socket.
Definition: pal_network.h:78
palStatus_t pal_asynchronousSocketWithArgument(palSocketDomain_t domain, palSocketType_t type, bool nonBlockingSocket, uint32_t interfaceNum, palAsyncSocketCallback_t callback, void *callbackArgument, palSocket_t *socket)
Get an asynchronous network socket that passes the provided callbackArgument to a specified callback ...
uint16_t pal_getStaggerEstimate(uint16_t data_amount)
This function returns the stagger estimate for registration in seconds.
palStatus_t pal_asynchronousSocket(palSocketDomain_t domain, palSocketType_t type, bool nonBlockingSocket, uint32_t interfaceNum, palAsyncSocketCallback_t callback, palSocket_t *socket)
Get an asynchronous network socket.
palSocketAddress_t address
Definition: pal_network.h:55
palStatus_t pal_isNonBlocking(palSocket_t socket, bool *isNonBlocking)
Check if a socket is non-blocking.
palStatus_t pal_setConnectionStatusCallback(uint32_t interfaceNum, connectionStatusCallback callback, void *client_arg)
Set listener for connection status events.
void * palSocket_t
PAL socket handle type.
Definition: pal_network.h:44
palStatus_t pal_setSocketOptions(palSocket_t socket, int optionName, const void *optionValue, palSocketLength_t optionLength)
Set the value for a socket option on a network socket.
palSocketOptionLevelName_t
Socket protocol level options supported by PAL.
Definition: pal_network.h:95
palStatus_t pal_setSockAddrIPV6Addr(palSocketAddress_t *address, palIpV6Addr_t ipV6Addr)
Set an IPv6 address to an address data structure and set the addressType as IPv6. ...
IP version 6.
Definition: pal_network.h:63
unsigned short addressType
Address family for the socket.
Definition: pal_network.h:49
palStatus_t pal_setSocketOptionsWithLevel(palSocket_t socket, palSocketOptionLevelName_t optionLevel, int optionName, const void *optionValue, palSocketLength_t optionLength)
Set the value for a socket option on a network socket.
palSocketType_t
Socket types supported by PAL.
Definition: pal_network.h:73
Definition: pal_network.h:53
palNetworkStatus_t
Network status event.
Definition: pal_network.h:67
palStatus_t pal_setSockAddrPort(palSocketAddress_t *address, uint16_t port)
Set a port to an address data structure.
Receive timeout.
Definition: pal_network.h:90
palSocketOptionName_t
Socket options supported by PAL.
Definition: pal_network.h:82
struct palSocketAddress palSocketAddress_t
Address data structure with enough room to support IPV4 and IPV6.
Allow local address reuse.
Definition: pal_network.h:83
uint32_t addressSize
Definition: pal_network.h:56
palStatus_t pal_bind(palSocket_t socket, palSocketAddress_t *myAddress, palSocketLength_t addressLength)
Bind a socket to a local address.
uint8_t palIpV6Addr_t[PAL_IPV6_ADDRESS_SIZE]
Definition: pal_network.h:106
uint8_t pal_getRttEstimate()
This function returns the round-trip estimate for packet in seconds.
palStatus_t pal_getSockAddrIPV4Addr(const palSocketAddress_t *address, palIpV4Addr_t ipV4Addr)
Get an IPv4 address from an address data structure.
#define PAL_IPV4_ADDRESS_SIZE
Definition: pal_network.h:102
#define PAL_IPV6_ADDRESS_SIZE
Definition: pal_network.h:103
palStatus_t pal_setSockAddrIPV4Addr(palSocketAddress_t *address, palIpV4Addr_t ipV4Addr)
Set an IPv4 address to an address data structure and set addressType as IPv4.
Definition: pal_network.h:69
void(* connectionStatusCallback)(palNetworkStatus_t status, void *client_arg)
Definition: pal_network.h:108
palStatus_t pal_getNumberOfNetInterfaces(uint32_t *numInterfaces)
Get the number of current network interfaces.
void(* palAsyncSocketCallback_t)(void *)
The type of the callback function passed when creating asynchronous sockets.
Definition: pal_network.h:270
#define PAL_NET_MAX_ADDR_SIZE
Definition: pal_network.h:46
Send timeout.
Definition: pal_network.h:89
char addressData[PAL_NET_MAX_ADDR_SIZE]
Address based on the protocol used.
Definition: pal_network.h:50
int32_t palStatus_t
Definition: pal_types.h:55
Internet IP Protocol.
Definition: pal_network.h:62
palStatus_t pal_receiveFrom(palSocket_t socket, void *buffer, size_t length, palSocketAddress_t *from, palSocketLength_t *fromLength, size_t *bytesReceived)
Receive a payload from a specific socket.
palSocketDomain_t
Network domains supported by PAL.
Definition: pal_network.h:60
palStatus_t pal_unregisterNetworkInterface(uint32_t interfaceIndex)
Unregister a network interface.
Definition: pal_network.h:48
Definition: pal_network.h:68
Hop limit for subsequent multicast datagrams to be set to any value from 0 to 255. This ability is used to control the scope of the multicasts.
Definition: pal_network.h:91