1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
27 #include <arpa/inet.h>
30 #include <sys/types.h>
33 #include <sys/ioctl.h>
38 #include "socket-util.h"
42 int socket_address_listen(
43 const SocketAddress *a,
46 SocketAddressBindIPv6Only only,
47 const char *bind_to_device,
50 mode_t directory_mode,
54 _cleanup_close_ int fd = -1;
59 r = socket_address_verify(a);
63 if (socket_address_family(a) == AF_INET6 && !socket_ipv6_is_supported())
67 r = label_socket_set(label);
72 fd = socket(socket_address_family(a), a->type | flags, a->protocol);
73 r = fd < 0 ? -errno : 0;
81 if (socket_address_family(a) == AF_INET6 && only != SOCKET_ADDRESS_DEFAULT) {
82 int flag = only == SOCKET_ADDRESS_IPV6_ONLY;
84 if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &flag, sizeof(flag)) < 0)
88 if (socket_address_family(a) == AF_INET || socket_address_family(a) == AF_INET6) {
90 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, bind_to_device, strlen(bind_to_device)+1) < 0)
95 if (setsockopt(fd, IPPROTO_IP, IP_FREEBIND, &one, sizeof(one)) < 0)
96 log_warning("IP_FREEBIND failed: %m");
101 if (setsockopt(fd, IPPROTO_IP, IP_TRANSPARENT, &one, sizeof(one)) < 0)
102 log_warning("IP_TRANSPARENT failed: %m");
107 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0)
110 if (socket_address_family(a) == AF_UNIX && a->sockaddr.un.sun_path[0] != 0) {
114 mkdir_parents_label(a->sockaddr.un.sun_path, directory_mode);
116 /* Enforce the right access mode for the socket */
117 old_mask = umask(~ socket_mode);
119 /* Include the original umask in our mask */
120 umask(~socket_mode | old_mask);
122 r = label_bind(fd, &a->sockaddr.sa, a->size);
124 if (r < 0 && errno == EADDRINUSE) {
125 /* Unlink and try again */
126 unlink(a->sockaddr.un.sun_path);
127 r = bind(fd, &a->sockaddr.sa, a->size);
132 r = bind(fd, &a->sockaddr.sa, a->size);
137 if (socket_address_can_accept(a))
138 if (listen(fd, backlog) < 0)