]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/socket-util.h
Merge pull request #2410 from dobyrch/master
[thirdparty/systemd.git] / src / basic / socket-util.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <netinet/ether.h>
25 #include <netinet/in.h>
26 #include <stdbool.h>
27 #include <stddef.h>
28 #include <sys/socket.h>
29 #include <sys/types.h>
30 #include <sys/un.h>
31 #include <linux/netlink.h>
32 #include <linux/if_packet.h>
33
34 #include "macro.h"
35 #include "util.h"
36
37 union sockaddr_union {
38 struct sockaddr sa;
39 struct sockaddr_in in;
40 struct sockaddr_in6 in6;
41 struct sockaddr_un un;
42 struct sockaddr_nl nl;
43 struct sockaddr_storage storage;
44 struct sockaddr_ll ll;
45 };
46
47 typedef struct SocketAddress {
48 union sockaddr_union sockaddr;
49
50 /* We store the size here explicitly due to the weird
51 * sockaddr_un semantics for abstract sockets */
52 socklen_t size;
53
54 /* Socket type, i.e. SOCK_STREAM, SOCK_DGRAM, ... */
55 int type;
56
57 /* Socket protocol, IPPROTO_xxx, usually 0, except for netlink */
58 int protocol;
59 } SocketAddress;
60
61 typedef enum SocketAddressBindIPv6Only {
62 SOCKET_ADDRESS_DEFAULT,
63 SOCKET_ADDRESS_BOTH,
64 SOCKET_ADDRESS_IPV6_ONLY,
65 _SOCKET_ADDRESS_BIND_IPV6_ONLY_MAX,
66 _SOCKET_ADDRESS_BIND_IPV6_ONLY_INVALID = -1
67 } SocketAddressBindIPv6Only;
68
69 #define socket_address_family(a) ((a)->sockaddr.sa.sa_family)
70
71 int socket_address_parse(SocketAddress *a, const char *s);
72 int socket_address_parse_and_warn(SocketAddress *a, const char *s);
73 int socket_address_parse_netlink(SocketAddress *a, const char *s);
74 int socket_address_print(const SocketAddress *a, char **p);
75 int socket_address_verify(const SocketAddress *a) _pure_;
76 int socket_address_unlink(SocketAddress *a);
77
78 bool socket_address_can_accept(const SocketAddress *a) _pure_;
79
80 int socket_address_listen(
81 const SocketAddress *a,
82 int flags,
83 int backlog,
84 SocketAddressBindIPv6Only only,
85 const char *bind_to_device,
86 bool reuse_port,
87 bool free_bind,
88 bool transparent,
89 mode_t directory_mode,
90 mode_t socket_mode,
91 const char *label);
92 int make_socket_fd(int log_level, const char* address, int type, int flags);
93
94 bool socket_address_is(const SocketAddress *a, const char *s, int type);
95 bool socket_address_is_netlink(const SocketAddress *a, const char *s);
96
97 bool socket_address_matches_fd(const SocketAddress *a, int fd);
98
99 bool socket_address_equal(const SocketAddress *a, const SocketAddress *b) _pure_;
100
101 const char* socket_address_get_path(const SocketAddress *a);
102
103 bool socket_ipv6_is_supported(void);
104
105 int sockaddr_port(const struct sockaddr *_sa) _pure_;
106
107 int sockaddr_pretty(const struct sockaddr *_sa, socklen_t salen, bool translate_ipv6, bool include_port, char **ret);
108 int getpeername_pretty(int fd, bool include_port, char **ret);
109 int getsockname_pretty(int fd, char **ret);
110
111 int socknameinfo_pretty(union sockaddr_union *sa, socklen_t salen, char **_ret);
112 int getnameinfo_pretty(int fd, char **ret);
113
114 const char* socket_address_bind_ipv6_only_to_string(SocketAddressBindIPv6Only b) _const_;
115 SocketAddressBindIPv6Only socket_address_bind_ipv6_only_from_string(const char *s) _pure_;
116
117 int netlink_family_to_string_alloc(int b, char **s);
118 int netlink_family_from_string(const char *s) _pure_;
119
120 bool sockaddr_equal(const union sockaddr_union *a, const union sockaddr_union *b);
121
122 int fd_inc_sndbuf(int fd, size_t n);
123 int fd_inc_rcvbuf(int fd, size_t n);
124
125 int ip_tos_to_string_alloc(int i, char **s);
126 int ip_tos_from_string(const char *s);
127
128 int getpeercred(int fd, struct ucred *ucred);
129 int getpeersec(int fd, char **ret);
130
131 int send_one_fd_sa(int transport_fd,
132 int fd,
133 const struct sockaddr *sa, socklen_t len,
134 int flags);
135 #define send_one_fd(transport_fd, fd, flags) send_one_fd_sa(transport_fd, fd, NULL, 0, flags)
136 int receive_one_fd(int transport_fd, int flags);
137
138 #define CMSG_FOREACH(cmsg, mh) \
139 for ((cmsg) = CMSG_FIRSTHDR(mh); (cmsg); (cmsg) = CMSG_NXTHDR((mh), (cmsg)))