Fix distribution of manpages
[vlc/vlc-acra.git] / src / network / rootbind.c
blobdfdf6241f993c5d796a2241615d0f461c843646b
1 /*****************************************************************************
2 * rootbind.c: bind to reserved ports through the root wrapper
3 *****************************************************************************
4 * Copyright © 2005-2008 Rémi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #if HAVE_CONFIG_H
22 # include <config.h>
23 #endif
25 #if !defined (WIN32) && !defined (SYS_BEOS)
26 # define ENABLE_ROOTWRAP 1
27 #endif
29 #include <stddef.h>
30 struct sockaddr;
31 int rootwrap_bind (int, int, int, const struct sockaddr *, size_t);
33 #include <errno.h>
35 #ifdef ENABLE_ROOTWRAP
37 #include <string.h>
38 #include <stdlib.h>
40 #include <sys/types.h>
41 #include <unistd.h>
42 #include <sys/socket.h>
43 #include <sys/uio.h>
44 #include <sys/un.h>
45 #include <netinet/in.h>
46 #include <pthread.h>
48 /**
49 * Receive a file descriptor from another process
51 static int recv_fd (int p)
53 struct msghdr hdr;
54 struct iovec iov;
55 struct cmsghdr *cmsg;
56 int val, fd;
57 char buf[CMSG_SPACE (sizeof (fd))];
59 hdr.msg_name = NULL;
60 hdr.msg_namelen = 0;
61 hdr.msg_iov = &iov;
62 hdr.msg_iovlen = 1;
63 hdr.msg_control = buf;
64 hdr.msg_controllen = sizeof (buf);
66 iov.iov_base = &val;
67 iov.iov_len = sizeof (val);
69 if (recvmsg (p, &hdr, 0) != sizeof (val))
70 return -1;
72 for (cmsg = CMSG_FIRSTHDR (&hdr); cmsg != NULL;
73 cmsg = CMSG_NXTHDR (&hdr, cmsg))
75 if ((cmsg->cmsg_level == SOL_SOCKET)
76 && (cmsg->cmsg_type = SCM_RIGHTS)
77 && (cmsg->cmsg_len >= CMSG_LEN (sizeof (fd))))
79 memcpy (&fd, CMSG_DATA (cmsg), sizeof (fd));
80 return fd;
84 errno = val;
85 return -1;
88 /**
89 * Tries to obtain a bound TCP socket from the root process
91 int rootwrap_bind (int family, int socktype, int protocol,
92 const struct sockaddr *addr, size_t alen)
94 /* can't use libvlc */
95 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
96 struct sockaddr_storage ss;
97 int fd, sock = -1;
99 const char *sockenv = getenv ("VLC_ROOTWRAP_SOCK");
100 if (sockenv != NULL)
101 sock = atoi (sockenv);
102 if (sock == -1)
104 errno = EACCES;
105 return -1;
108 switch (family)
110 case AF_INET:
111 if (alen < sizeof (struct sockaddr_in))
113 errno = EINVAL;
114 return -1;
116 break;
118 #ifdef AF_INET6
119 case AF_INET6:
120 if (alen < sizeof (struct sockaddr_in6))
122 errno = EINVAL;
123 return -1;
125 break;
126 #endif
128 default:
129 errno = EAFNOSUPPORT;
130 return -1;
133 if (family != addr->sa_family)
135 errno = EAFNOSUPPORT;
136 return -1;
139 /* Only TCP is implemented at the moment */
140 if ((socktype != SOCK_STREAM)
141 || (protocol && (protocol != IPPROTO_TCP)))
143 errno = EACCES;
144 return -1;
147 memset (&ss, 0, sizeof (ss));
148 memcpy (&ss, addr, (alen > sizeof (ss)) ? sizeof (ss) : alen);
150 pthread_mutex_lock (&mutex);
151 if (send (sock, &ss, sizeof (ss), 0) != sizeof (ss))
152 return -1;
154 fd = recv_fd (sock);
155 pthread_mutex_unlock (&mutex);
156 return fd;
159 #else
160 int rootwrap_bind (int family, int socktype, int protocol,
161 const struct sockaddr *addr, size_t alen)
163 (void)family;
164 (void)socktype;
165 (void)protocol;
166 (void)addr;
167 (void)alen;
168 errno = EACCES;
169 return -1;
172 #endif /* ENABLE_ROOTWRAP */