2018-07-17 20:29:33 +08:00
|
|
|
/*
|
|
|
|
* File : sal.h
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2018-05-17 ChenYong First version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SAL_H__
|
|
|
|
#define SAL_H__
|
|
|
|
|
|
|
|
#include <rtdevice.h>
|
|
|
|
|
2018-08-27 19:50:37 +08:00
|
|
|
#ifdef SAL_USING_POSIX
|
|
|
|
#include <dfs_file.h>
|
|
|
|
#endif
|
|
|
|
|
2018-08-25 21:04:11 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-07-17 20:29:33 +08:00
|
|
|
#if !defined(socklen_t) && !defined(SOCKLEN_T_DEFINED)
|
|
|
|
typedef uint32_t socklen_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* sal socket magic word */
|
|
|
|
#define SAL_SOCKET_MAGIC 0x5A10
|
|
|
|
|
|
|
|
/* The maximum number of sockets structure */
|
2018-08-27 19:50:37 +08:00
|
|
|
#ifndef SAL_SOCKETS_NUM
|
2018-07-17 20:29:33 +08:00
|
|
|
#define SAL_SOCKETS_NUM DFS_FD_MAX
|
2018-08-27 19:50:37 +08:00
|
|
|
#endif
|
2018-07-17 20:29:33 +08:00
|
|
|
|
|
|
|
/* The maximum number of protocol families */
|
|
|
|
#ifndef SAL_PROTO_FAMILIES_NUM
|
|
|
|
#define SAL_PROTO_FAMILIES_NUM 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* sal socket offset */
|
|
|
|
#ifndef SAL_SOCKET_OFFSET
|
|
|
|
#define SAL_SOCKET_OFFSET 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct proto_ops
|
|
|
|
{
|
|
|
|
int (*socket) (int domain, int type, int protocol);
|
|
|
|
int (*closesocket)(int s);
|
|
|
|
int (*bind) (int s, const struct sockaddr *name, socklen_t namelen);
|
|
|
|
int (*listen) (int s, int backlog);
|
|
|
|
int (*connect) (int s, const struct sockaddr *name, socklen_t namelen);
|
|
|
|
int (*accept) (int s, struct sockaddr *addr, socklen_t *addrlen);
|
|
|
|
int (*sendto) (int s, const void *data, size_t size, int flags, const struct sockaddr *to, socklen_t tolen);
|
|
|
|
int (*recvfrom) (int s, void *mem, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen);
|
|
|
|
int (*getsockopt) (int s, int level, int optname, void *optval, socklen_t *optlen);
|
|
|
|
int (*setsockopt) (int s, int level, int optname, const void *optval, socklen_t optlen);
|
|
|
|
int (*shutdown) (int s, int how);
|
|
|
|
int (*getpeername)(int s, struct sockaddr *name, socklen_t *namelen);
|
|
|
|
int (*getsockname)(int s, struct sockaddr *name, socklen_t *namelen);
|
|
|
|
int (*ioctlsocket)(int s, long cmd, void *arg);
|
2018-08-27 19:50:37 +08:00
|
|
|
#ifdef SAL_USING_POSIX
|
2018-07-17 20:29:33 +08:00
|
|
|
int (*poll) (struct dfs_fd *file, struct rt_pollreq *req);
|
2018-08-27 19:50:37 +08:00
|
|
|
#endif
|
2018-07-17 20:29:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sal_socket
|
|
|
|
{
|
|
|
|
uint32_t magic; /* sal socket magic word */
|
|
|
|
|
|
|
|
int socket; /* sal socket descriptor */
|
|
|
|
int domain;
|
|
|
|
int type;
|
|
|
|
int protocol;
|
|
|
|
|
|
|
|
const struct proto_ops *ops; /* socket options */
|
|
|
|
void *user_data; /* specific sal socket data */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct proto_family
|
|
|
|
{
|
2018-08-24 20:39:10 +08:00
|
|
|
char name[RT_NAME_MAX];
|
|
|
|
int family; /* primary protocol families type */
|
|
|
|
int sec_family; /* secondary protocol families type */
|
2018-07-17 20:29:33 +08:00
|
|
|
int (*create)(struct sal_socket *sal_socket, int type, int protocol); /* register socket options */
|
|
|
|
|
|
|
|
struct hostent* (*gethostbyname) (const char *name);
|
|
|
|
int (*gethostbyname_r)(const char *name, struct hostent *ret, char *buf, size_t buflen, struct hostent **result, int *h_errnop);
|
|
|
|
void (*freeaddrinfo) (struct addrinfo *ai);
|
|
|
|
int (*getaddrinfo) (const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res);
|
|
|
|
};
|
|
|
|
|
2018-08-24 20:39:10 +08:00
|
|
|
/* SAL(Socket Abstraction Layer) initialize */
|
2018-07-17 20:29:33 +08:00
|
|
|
int sal_init(void);
|
|
|
|
|
|
|
|
struct sal_socket *sal_get_socket(int sock);
|
|
|
|
|
2018-08-24 20:39:10 +08:00
|
|
|
/* protocol family register and unregister operate */
|
|
|
|
int sal_proto_family_register(const struct proto_family *pf);
|
|
|
|
int sal_proto_family_unregister(const struct proto_family *pf);
|
|
|
|
struct proto_family *sal_proto_family_find(const char *name);
|
|
|
|
|
2018-08-25 21:04:11 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-17 20:29:33 +08:00
|
|
|
#endif /* SAL_H__ */
|