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,
92 
93 #define PAL_NET_DEFAULT_INTERFACE 0xFFFFFFFF
94 
95 #define PAL_IPV4_ADDRESS_SIZE 4
96 #define PAL_IPV6_ADDRESS_SIZE 16
97 
100 
101 typedef void(*connectionStatusCallback) (palNetworkStatus_t status, void *client_arg);
102 
115 palStatus_t pal_registerNetworkInterface(void* networkInterfaceContext, uint32_t* interfaceIndex);
116 
121 palStatus_t pal_unregisterNetworkInterface(uint32_t interfaceIndex);
122 
130 palStatus_t pal_setSockAddrPort(palSocketAddress_t* address, uint16_t port);
131 
137 palStatus_t pal_setSockAddrIPV4Addr(palSocketAddress_t* address, palIpV4Addr_t ipV4Addr);
138 
144 palStatus_t pal_getSockAddrIPV4Addr(const palSocketAddress_t* address, palIpV4Addr_t ipV4Addr);
145 
151 palStatus_t pal_setSockAddrIPV6Addr(palSocketAddress_t* address, palIpV6Addr_t ipV6Addr);
152 
158 palStatus_t pal_getSockAddrIPV6Addr(const palSocketAddress_t* address, palIpV6Addr_t ipV6Addr);
159 
165 palStatus_t pal_getSockAddrPort(const palSocketAddress_t* address, uint16_t* port);
166 
174 palStatus_t pal_setSocketOptions(palSocket_t socket, int optionName, const void* optionValue, palSocketLength_t optionLength);
175 
181 palStatus_t pal_isNonBlocking(palSocket_t socket, bool* isNonBlocking);
182 
189 palStatus_t pal_bind(palSocket_t socket, palSocketAddress_t* myAddress, palSocketLength_t addressLength);
190 
200 palStatus_t pal_receiveFrom(palSocket_t socket, void* buffer, size_t length, palSocketAddress_t* from, palSocketLength_t* fromLength, size_t* bytesReceived);
201 
211 palStatus_t pal_sendTo(palSocket_t socket, const void* buffer, size_t length, const palSocketAddress_t* to, palSocketLength_t toLength, size_t* bytesSent);
212 
218 palStatus_t pal_close(palSocket_t* socket);
219 
224 palStatus_t pal_getNumberOfNetInterfaces(uint32_t* numInterfaces);
225 
231 palStatus_t pal_getNetInterfaceInfo(uint32_t interfaceNum, palNetInterfaceInfo_t* interfaceInfo);
232 
239 palStatus_t pal_setConnectionStatusCallback(uint32_t interfaceNum, connectionStatusCallback callback, void *client_arg);
240 
241 #define PAL_NET_SOCKET_SELECT_MAX_SOCKETS 8
242 #define PAL_NET_SOCKET_SELECT_RX_BIT (1)
243 #define PAL_NET_SOCKET_SELECT_TX_BIT (2)
244 #define PAL_NET_SOCKET_SELECT_ERR_BIT (4)
245 
246 #define PAL_NET_SELECT_IS_RX(socketStatus, index) ((socketStatus[index] & PAL_NET_SOCKET_SELECT_RX_BIT) != 0)
247 #define PAL_NET_SELECT_IS_TX(socketStatus, index) ((socketStatus[index] & PAL_NET_SOCKET_SELECT_TX_BIT) != 0)
248 #define PAL_NET_SELECT_IS_ERR(socketStatus, index) ((socketStatus[index] & PAL_NET_SOCKET_SELECT_ERR_BIT) != 0)
253 typedef void(*palAsyncSocketCallback_t)(void*);
254 
255 #if PAL_NET_TCP_AND_TLS_SUPPORT // The functionality below is supported only if TCP is supported.
256 
257 #if PAL_NET_SERVER_SOCKET_API
258 
264 palStatus_t pal_listen(palSocket_t socket, int backlog);
265 
275 palStatus_t pal_accept(palSocket_t socket, palSocketAddress_t* address, palSocketLength_t* addressLen, palSocket_t* acceptedSocket, palAsyncSocketCallback_t callback, void* callbackArgument);
276 
277 #endif // PAL_NET_SERVER_SOCKET_API
278 
285 palStatus_t pal_connect(palSocket_t socket, const palSocketAddress_t* address, palSocketLength_t addressLen);
286 
294 palStatus_t pal_recv(palSocket_t socket, void* buf, size_t len, size_t* recievedDataSize);
295 
303 palStatus_t pal_send(palSocket_t socket, const void* buf, size_t len, size_t* sentDataSize);
304 
305 
306 #endif //PAL_NET_TCP_AND_TLS_SUPPORT
307 
317 palStatus_t pal_asynchronousSocket(palSocketDomain_t domain, palSocketType_t type, bool nonBlockingSocket, uint32_t interfaceNum, palAsyncSocketCallback_t callback, palSocket_t* socket);
318 
329 palStatus_t pal_asynchronousSocketWithArgument(palSocketDomain_t domain, palSocketType_t type, bool nonBlockingSocket, uint32_t interfaceNum, palAsyncSocketCallback_t callback,void* callbackArgument, palSocket_t* socket);
330 
331 
332 #if PAL_NET_DNS_SUPPORT
333 #if (PAL_DNS_API_VERSION == 0) || (PAL_DNS_API_VERSION == 1)
334 
341 palStatus_t pal_getAddressInfo(const char* hostname, palSocketAddress_t* address, palSocketLength_t* addressLength);
342 
343 #if (PAL_DNS_API_VERSION == 1)
344 
352 typedef void(*palGetAddressInfoAsyncCallback_t)(const char* hostname, palSocketAddress_t* address, palSocketLength_t* addressLength, palStatus_t status, void* callbackArgument);
353 
364 palStatus_t pal_getAddressInfoAsync(const char* hostname, palSocketAddress_t* address, palSocketLength_t* addressLength, palGetAddressInfoAsyncCallback_t callback, void* callbackArgument);
365 #endif
366 
367 #elif (PAL_DNS_API_VERSION == 2)
368 typedef int32_t palDNSQuery_t;
376 typedef void(*palGetAddressInfoAsyncCallback_t)(const char* hostname, palSocketAddress_t* address, palStatus_t status, void* callbackArgument);
377 
385 typedef struct pal_asyncAddressInfo
386 {
387  char* hostname;
388  palSocketAddress_t* address;
389  palGetAddressInfoAsyncCallback_t callback;
390  void* callbackArgument;
391  palDNSQuery_t *queryHandle;
392 } pal_asyncAddressInfo_t;
393 
403 palStatus_t pal_getAddressInfoAsync(const char* hostname,
404  palSocketAddress_t* address,
405  palGetAddressInfoAsyncCallback_t callback,
406  void* callbackArgument,
407  palDNSQuery_t* queryHandle);
408 
412 palStatus_t pal_cancelAddressInfoAsync(palDNSQuery_t queryHandle);
413 #else
414  #error "Please specify the platform PAL_DNS_API_VERSION 0, 1, or 2."
415 #endif // PAL_DNS_API_VERSION
416 #endif // PAL_NET_DNS_SUPPORT
417 
418 #ifdef __cplusplus
419 }
420 #endif
421 #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.
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: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:98
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 ...
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.
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
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:99
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:95
#define PAL_IPV6_ADDRESS_SIZE
Definition: pal_network.h:96
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:101
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:253
#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:49
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