chiark / gitweb /
build-sys: add a makefile target to run all tests through valgrind
[elogind.git] / src / shared / 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 <sys/socket.h>
25 #include <netinet/in.h>
26 #include <sys/un.h>
27 #include <net/if.h>
28 #include <asm/types.h>
29 #include <linux/netlink.h>
30
31 #include "macro.h"
32 #include "util.h"
33
34 union sockaddr_union {
35         struct sockaddr sa;
36         struct sockaddr_in in4;
37         struct sockaddr_in6 in6;
38         struct sockaddr_un un;
39         struct sockaddr_nl nl;
40         struct sockaddr_storage storage;
41 };
42
43 typedef struct SocketAddress {
44         union sockaddr_union sockaddr;
45
46         /* We store the size here explicitly due to the weird
47          * sockaddr_un semantics for abstract sockets */
48         socklen_t size;
49
50         /* Socket type, i.e. SOCK_STREAM, SOCK_DGRAM, ... */
51         int type;
52
53         /* Socket protocol, IPPROTO_xxx, usually 0, except for netlink */
54         int protocol;
55 } SocketAddress;
56
57 typedef enum SocketAddressBindIPv6Only {
58         SOCKET_ADDRESS_DEFAULT,
59         SOCKET_ADDRESS_BOTH,
60         SOCKET_ADDRESS_IPV6_ONLY,
61         _SOCKET_ADDRESS_BIND_IPV6_ONLY_MAX,
62         _SOCKET_ADDRESS_BIND_IPV6_ONLY_INVALID = -1
63 } SocketAddressBindIPv6Only;
64
65 #define socket_address_family(a) ((a)->sockaddr.sa.sa_family)
66
67 int socket_address_parse(SocketAddress *a, const char *s);
68 int socket_address_parse_netlink(SocketAddress *a, const char *s);
69 int socket_address_print(const SocketAddress *a, char **p);
70 int socket_address_verify(const SocketAddress *a) _pure_;
71
72 bool socket_address_can_accept(const SocketAddress *a) _pure_;
73
74 int socket_address_listen(
75                 const SocketAddress *a,
76                 int backlog,
77                 SocketAddressBindIPv6Only only,
78                 const char *bind_to_device,
79                 bool free_bind,
80                 bool transparent,
81                 mode_t directory_mode,
82                 mode_t socket_mode,
83                 const char *label,
84                 int *ret);
85
86 bool socket_address_is(const SocketAddress *a, const char *s, int type);
87 bool socket_address_is_netlink(const SocketAddress *a, const char *s);
88
89 bool socket_address_matches_fd(const SocketAddress *a, int fd);
90
91 int make_socket_fd(const char* address, int flags);
92
93 bool socket_address_equal(const SocketAddress *a, const SocketAddress *b) _pure_;
94
95 const char* socket_address_get_path(const SocketAddress *a);
96
97 const char* socket_address_bind_ipv6_only_to_string(SocketAddressBindIPv6Only b) _const_;
98 SocketAddressBindIPv6Only socket_address_bind_ipv6_only_from_string(const char *s) _pure_;
99
100 int netlink_family_to_string_alloc(int b, char **s);
101 int netlink_family_from_string(const char *s);
102
103 bool socket_ipv6_is_supported(void);