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 it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
25 #define _XPG4_2 /* ancillary data on Solaris */
27 #if !defined (_WIN32) && !defined (__OS2__)
28 # define ENABLE_ROOTWRAP 1
33 int rootwrap_bind (int, int, int, const struct sockaddr
*, size_t);
37 #ifdef ENABLE_ROOTWRAP
42 #include <sys/types.h>
44 #include <sys/socket.h>
47 #include <netinet/in.h>
50 /* Required yet non-standard cmsg functions */
52 # define CMSG_ALIGN(len) (((len) + sizeof(intptr_t)-1) & ~(sizeof(intptr_t)-1))
55 # define CMSG_SPACE(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(len))
58 # define CMSG_LEN(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
60 #if !defined(MSG_NOSIGNAL)
61 /* If the other end of the pipe hangs up and MSG_NOSIGNAL is missing, the
62 * process will get a (likely fatal) SIGPIPE signal. Then again, the other end
63 * can screw us up in various ways already (e.g. not answer to deadlock). */
64 # define MSG_NOSIGNAL 0
67 #if defined(__OS2__) && !defined(ALIGN)
68 /* CMSG_NXTHDR requires this */
69 # define ALIGN(p) _ALIGN(p)
73 * Receive a file descriptor from another process
75 static int recv_fd (int p
)
81 char buf
[CMSG_SPACE (sizeof (fd
))];
87 hdr
.msg_control
= buf
;
88 hdr
.msg_controllen
= sizeof (buf
);
91 iov
.iov_len
= sizeof (val
);
93 if (recvmsg (p
, &hdr
, 0) != sizeof (val
))
96 for (cmsg
= CMSG_FIRSTHDR (&hdr
); cmsg
!= NULL
;
97 cmsg
= CMSG_NXTHDR (&hdr
, cmsg
))
99 if ((cmsg
->cmsg_level
== SOL_SOCKET
)
100 && (cmsg
->cmsg_type
== SCM_RIGHTS
)
101 && (cmsg
->cmsg_len
>= CMSG_LEN (sizeof (fd
))))
103 memcpy (&fd
, CMSG_DATA (cmsg
), sizeof (fd
));
113 * Tries to obtain a bound TCP socket from the root process
115 int rootwrap_bind (int family
, int socktype
, int protocol
,
116 const struct sockaddr
*addr
, size_t alen
)
118 /* can't use libvlc */
119 static pthread_mutex_t mutex
= PTHREAD_MUTEX_INITIALIZER
;
120 struct sockaddr_storage ss
;
123 const char *sockenv
= getenv ("VLC_ROOTWRAP_SOCK");
125 sock
= atoi (sockenv
);
135 if (alen
< sizeof (struct sockaddr_in
))
144 if (alen
< sizeof (struct sockaddr_in6
))
153 errno
= EAFNOSUPPORT
;
157 if (family
!= addr
->sa_family
)
159 errno
= EAFNOSUPPORT
;
163 /* Only TCP is implemented at the moment */
164 if ((socktype
!= SOCK_STREAM
)
165 || (protocol
&& (protocol
!= IPPROTO_TCP
)))
171 memset (&ss
, 0, sizeof (ss
));
172 memcpy (&ss
, addr
, (alen
> sizeof (ss
)) ? sizeof (ss
) : alen
);
174 pthread_mutex_lock (&mutex
);
175 if (send (sock
, &ss
, sizeof (ss
), MSG_NOSIGNAL
) != sizeof (ss
))
177 pthread_mutex_unlock (&mutex
);
182 pthread_mutex_unlock (&mutex
);
187 int rootwrap_bind (int family
, int socktype
, int protocol
,
188 const struct sockaddr
*addr
, size_t alen
)
199 #endif /* ENABLE_ROOTWRAP */