1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| /*
| * Copyright (c) 2016 Cyril Hrubis <chrubis@suse.cz>
| *
| * 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, see <http://www.gnu.org/licenses/>.
| */
|
| #ifndef TST_SAFE_NET_H__
| #define TST_SAFE_NET_H__
|
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| #include <arpa/inet.h>
| #include <sys/un.h>
|
| #include "safe_net_fn.h"
|
| #define TST_GETSOCKPORT(sockfd) \
| tst_getsockport(__FILE__, __LINE__, sockfd)
|
| #define SAFE_SOCKET(domain, type, protocol) \
| safe_socket(__FILE__, __LINE__, NULL, domain, type, protocol)
|
| #define SAFE_GETSOCKOPT(fd, level, optname, optval, optlen) \
| safe_getsockopt(__FILE__, __LINE__, fd, level, optname, optval, optlen)
|
| #define SAFE_SETSOCKOPT(fd, level, optname, optval, optlen) \
| safe_setsockopt(__FILE__, __LINE__, fd, level, optname, optval, optlen)
|
| #define SAFE_SETSOCKOPT_INT(fd, l, n, val) \
| do { \
| int v = val; \
| safe_setsockopt(__FILE__, __LINE__, fd, l, n, &v, sizeof(v)); \
| } while (0)
|
| #define SAFE_SEND(strict, sockfd, buf, len, flags) \
| safe_send(__FILE__, __LINE__, strict, sockfd, buf, len, flags)
|
| #define SAFE_SENDTO(strict, fd, buf, len, flags, dest_addr, addrlen) \
| safe_sendto(__FILE__, __LINE__, strict, fd, buf, len, flags, \
| dest_addr, addrlen)
|
| #define SAFE_SENDMSG(msg_len, fd, msg, flags) \
| safe_sendmsg(__FILE__, __LINE__, msg_len, fd, msg, flags)
|
| #define SAFE_RECVMSG(msg_len, fd, msg, flags) \
| safe_recvmsg(__FILE__, __LINE__, msg_len, fd, msg, flags)
|
| #define SAFE_BIND(socket, address, address_len) \
| safe_bind(__FILE__, __LINE__, NULL, socket, address, \
| address_len)
|
| #define SAFE_LISTEN(socket, backlog) \
| safe_listen(__FILE__, __LINE__, NULL, socket, backlog)
|
| #define SAFE_CONNECT(sockfd, addr, addrlen) \
| safe_connect(__FILE__, __LINE__, NULL, sockfd, addr, addrlen)
|
| #define SAFE_GETSOCKNAME(sockfd, addr, addrlen) \
| safe_getsockname(__FILE__, __LINE__, NULL, sockfd, addr, \
| addrlen)
|
| #define SAFE_GETHOSTNAME(name, size) \
| safe_gethostname(__FILE__, __LINE__, name, size)
|
| #endif /* TST_SAFE_NET_H__ */
|
|