source: roaraudio/libroar/socket.c @ 5137:d2aa7e38d3b2

Last change on this file since 5137:d2aa7e38d3b2 was 5137:d2aa7e38d3b2, checked in by phi, 13 years ago

added some debugging lions

File size: 29.5 KB
RevLine 
[0]1//socket.c:
2
[690]3/*
[4708]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
[690]5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[690]23 *
24 *  NOTE for everyone want's to change something and send patches:
25 *  read README and HACKING! There a addition information on
26 *  the license of this document you need to read before you send
27 *  any patches.
28 *
29 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
30 *  or libpulse*:
31 *  The libs libroaresd, libroararts and libroarpulse link this lib
32 *  and are therefore GPL. Because of this it may be illigal to use
33 *  them with any software that uses libesd, libartsc or libpulse*.
34 */
35
[5109]36#define _LIBROAR_NOATTR_TO_STATIC /* ignore warnings for TO_STATIC functions */
[0]37#include "libroar.h"
38
[81]39#define MODE_LISTEN  ROAR_SOCKET_MODE_LISTEN
40#define MODE_CONNECT ROAR_SOCKET_MODE_CONNECT
[0]41
[1761]42#ifdef ROAR_TARGET_WIN32
43void roar_socket_win32_init (void) {
44 static int inited = 0;
45 WSADATA wsadata;
46
47 if ( !inited ) {
48  WSAStartup(MAKEWORD(1,1) , &wsadata);
49  inited++;
50 }
51}
52#else
53#define roar_socket_win32_init()
54#endif
55
[0]56int roar_socket_new_tcp (void) {
[1359]57#ifdef ROAR_HAVE_IPV4
58 int fh;
[3788]59#if defined(TCP_NODELAY) && !defined(ROAR_TARGET_WIN32)
[1154]60 int t   = 1;
61#endif
[0]62
[1761]63 roar_socket_win32_init();
64
[3835]65 fh = socket(AF_INET, SOCK_STREAM, 0);
[0]66
[5113]67 roar_socket_set_tos(fh);
[3788]68#if defined(TCP_NODELAY) && !defined(ROAR_TARGET_WIN32)
[1154]69 setsockopt(fh, IPPROTO_TCP, TCP_NODELAY, &t, sizeof(int));
70#endif
[234]71
[0]72 return fh;
[1359]73#else
74 return -1;
75#endif
[0]76}
77
[374]78int roar_socket_new_udp (void) {
[1359]79#ifdef ROAR_HAVE_IPV4
[374]80 int fh;
81
[1761]82 roar_socket_win32_init();
83
[3835]84 fh = socket(AF_INET, SOCK_DGRAM, 0);
[374]85
[5113]86 roar_socket_set_tos(fh);
[374]87
88 return fh;
[1359]89#else
90 return -1;
91#endif
[374]92}
93
[509]94int roar_socket_new_tcp6 (void) {
[1084]95#ifdef ROAR_HAVE_IPV6
[509]96 int fh;
97
[1761]98 roar_socket_win32_init();
99
[3835]100 fh = socket(AF_INET6, SOCK_STREAM, 0);
[509]101
[5113]102 roar_socket_set_tos(fh);
[509]103
104 return fh;
105#else
106 return -1;
107#endif
108}
109
110int roar_socket_new_udp6 (void) {
[1084]111#ifdef ROAR_HAVE_IPV6
[509]112 int fh;
113
[1761]114 roar_socket_win32_init();
115
[3835]116 fh = socket(AF_INET6, SOCK_DGRAM, 0);
[509]117
[5113]118 roar_socket_set_tos(fh);
[509]119
120 return fh;
121#else
122 return -1;
123#endif
124}
125
[0]126int roar_socket_new_unix (void) {
[1443]127#ifdef ROAR_HAVE_UNIX
[0]128 int fh;
[752]129/*
[442]130#ifdef SO_PEERCRED
131 int opt = 1;
132#endif
[752]133*/
[0]134
135 fh = socket(AF_UNIX, SOCK_STREAM, 0);
136
[752]137/*
[442]138#ifdef SO_PEERCRED
[752]139// setsockopt(fh, SOL_SOCKET, SO_PASSCRED, &opt, sizeof(int));
[442]140#endif
[752]141*/
[442]142
[0]143 return fh;
[1443]144#else
145 return -1;
146#endif
[0]147}
148
[873]149int roar_socket_decnet_set_timeout (int fh, time_t sec, int usec) {
150#ifdef ROAR_HAVE_LIBDNET
151 struct timeval timeout = {sec, usec};
152
153 return setsockopt(fh, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout));
154#else
155 return -1;
156#endif
157}
158
[968]159int roar_socket_recvbuf(int fh, int len) {
[1443]160#ifdef ROAR_HAVE_BSDSOCKETS
[968]161 if ( len < 256 ) len = 256;
162
[4939]163 return setsockopt(fh, SOL_SOCKET, SO_RCVBUF, (void *)&len, sizeof(len));
[1443]164#else
165 return -1;
166#endif
[968]167}
168
[5113]169int roar_socket_set_tos(int fh) {
170#ifndef ROAR_TARGET_WIN32
171 int opt = IPTOS_LOWDELAY;
172 int ret;
173
174 roar_err_clear_errno();
175 ret = setsockopt(fh, IPPROTO_IP, IP_TOS, &opt, sizeof(int));
176 if ( ret < 0 )
177  roar_err_from_errno();
178
179 return ret;
180#else
181 return -1;
182#endif
183}
184
[508]185int roar_socket_new_decnet_seqpacket (void) {
186#ifdef ROAR_HAVE_LIBDNET
187 int fh;
188
189 fh = socket(AF_DECnet, SOCK_SEQPACKET, DNPROTO_NSP);
190
[873]191 roar_socket_decnet_set_timeout(fh, 300, 0);
192
[508]193 return fh;
194#else
195 return -1;
196#endif
197}
198
199
200int roar_socket_new_decnet_stream (void) {
201#ifdef ROAR_HAVE_LIBDNET
202 int fh;
203
204 fh = socket(AF_DECnet, SOCK_STREAM, DNPROTO_NSP);
205
[873]206 roar_socket_decnet_set_timeout(fh, 300, 0);
207
[508]208 return fh;
209#else
210 return -1;
211#endif
212}
213
[528]214int roar_socket_new_ipxspx (void) {
215 return -1;
216}
[508]217
[530]218int roar_socket_new_ipx    (void) {
219#ifdef ROAR_HAVE_IPX
220 return socket(AF_IPX, SOCK_DGRAM, AF_IPX);
221#else
222 return -1;
223#endif
224}
225
226
[0]227int roar_socket_nonblock(int fh, int state) {
[4554]228#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER) && defined(ROAR_HAVE_FCNTL)
[0]229 int flags;
230
231 if ( (flags = fcntl(fh, F_GETFL, 0)) == -1 ) {
232  ROAR_ERR("roar_socket_nonblock(fh=%i, state=%i): Can not read flags: %s", fh, state, strerror(errno));
233  ROAR_DBG("roar_socket_nonblock(fh=%i, state=%i) = -1", fh, state);
234  return -1;
235 }
236
[1119]237 if ( !(flags & O_NONBLOCK) && state == ROAR_SOCKET_BLOCK )
238  return 0;
239
[0]240 flags |= O_NONBLOCK;
241
242 if ( state == ROAR_SOCKET_BLOCK )
243  flags -= O_NONBLOCK;
244
245 if ( fcntl(fh, F_SETFL, flags) == -1 ) {
246  ROAR_ERR("roar_socket_nonblock(fh=%i, state=%i): Can not set flags: %s", fh, state, strerror(errno));
247  ROAR_DBG("roar_socket_nonblock(fh=%i, state=%i) = -1", fh, state);
248  return -1;
249 }
250
251 ROAR_DBG("roar_socket_nonblock(fh=%i, state=%i) = 0", fh, state);
252 return 0;
[1085]253#else
254 ROAR_WARN("roar_socket_nonblock(*): no nonblocking IO support on win32, use a real OS");
255 return -1;
256#endif
[0]257}
258
[375]259int roar_socket_dup_udp_local_end (int fh) {
[4554]260#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER) && defined(ROAR_HAVE_FCNTL)
[376]261 int                  n              = -1;
262 int                  flags          = -1;
263 struct sockaddr_in   socket_addr;
264 socklen_t            len            = sizeof(struct sockaddr_in);
265
266 if ( (flags = fcntl(fh, F_GETFL, 0)) == -1 ) {
267  ROAR_WARN("roar_socket_dup_udp_local_end(fh=%i): Can not read flags: %s", fh, strerror(errno));
268 }
269
270 if ( getsockname(fh, (struct sockaddr *)&socket_addr, &len) == -1 ) {
271  return -1;
272 }
273
274 if ( socket_addr.sin_family != AF_INET ) {
275  return -1;
276 }
277
278 n = roar_socket_new_udp();
279
280 if ( n == -1 )
281  return -1;
282
283//  if ( mode_func(fh, (struct sockaddr *)&socket_addr, sizeof(struct sockaddr_in)) == -1 ) {
284 if ( bind(n, (struct sockaddr *)&socket_addr, len) == -1 ) {
285  close(n);
286  return -1;
287 }
288
289 if ( flags != -1 ) {
290  if ( fcntl(fh, F_SETFL, flags) == -1 ) {
291   ROAR_WARN("roar_socket_dup_udp_local_end(fh=%i): Can not set flags: %s", fh, strerror(errno));
292   return -1;
293  }
294 }
295
296
297 return n;
[1085]298#else
299 ROAR_WARN("roar_socket_dup_udp_local_end(*): this function is not supported on win32, use a real OS");
300 return -1;
301#endif
[375]302}
303
[753]304
305#define _SCMR_CONTROLLEN (sizeof(struct cmsghdr) + sizeof(int))
306int roar_socket_send_fh (int sock, int fh, char * mes, size_t len) {
[4554]307#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER) && !defined(ROAR_OS_SUNOS) && !defined(ROAR_TARGET_OPENVMS)
[753]308 struct iovec     iov[1];
309 struct msghdr    msg;
310 char             cmptr_buf[_SCMR_CONTROLLEN];
311 struct cmsghdr * cmptr = (struct cmsghdr *) cmptr_buf;
[754]312 char             localmes[1] = {0};
[753]313
[759]314 ROAR_DBG("roar_socket_send_fh(sock=%i, fh=%i, mes=%p, len=%u) = ?", sock, fh, mes, len);
315
[754]316 if ( sock < 0 || fh < 0 )
[753]317  return -1;
318
[754]319 if ( len == 0 ) {
320  len = 1;
321  mes = localmes;
322 }
323
324 memset(cmptr, 0, _SCMR_CONTROLLEN);
325
[753]326 iov[0].iov_base = mes;
327 iov[0].iov_len  = len;
328 msg.msg_iov     = iov;
329 msg.msg_iovlen  = 1;
330 msg.msg_name    = NULL;
331 msg.msg_namelen = 0;
332
333 cmptr->cmsg_level        = SOL_SOCKET;
334 cmptr->cmsg_type         = SCM_RIGHTS;
335 cmptr->cmsg_len          = _SCMR_CONTROLLEN;
336 msg.msg_control          = (caddr_t) cmptr;
337 msg.msg_controllen       = _SCMR_CONTROLLEN;
338 *(int *)CMSG_DATA(cmptr) = fh;
339
340 return sendmsg(sock, &msg, 0);
[1085]341#else
342 ROAR_ERR("roar_socket_send_fh(*): There is no UNIX Domain Socket support in win32, download a real OS.");
343 return -1;
344#endif
[753]345}
346
347int roar_socket_recv_fh (int sock,         char * mes, size_t * len) {
[4554]348#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER) && !defined(ROAR_OS_SUNOS) && !defined(ROAR_TARGET_OPENVMS)
[753]349 struct iovec     iov[1];
350 struct msghdr    msg;
351 char             cmptr_buf[_SCMR_CONTROLLEN];
352 struct cmsghdr * cmptr = (struct cmsghdr *) cmptr_buf;
[754]353 char             localmes[1];
354 size_t           locallen[1] = {1};
[753]355
[4256]356 ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = ?", sock, mes, len);
357
358 if ( sock < 0 ) {
359  ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = -1 // invalid socket", sock, mes, len);
[753]360  return -1;
[4256]361 }
[753]362
[754]363 if ( len == NULL ) {
364  len = locallen;
365  mes = localmes;
366 }
367
[753]368 iov[0].iov_base = mes;
369 iov[0].iov_len  = *len;
370 msg.msg_iov     = iov;
371 msg.msg_iovlen  = 1;
372 msg.msg_name    = NULL;
373 msg.msg_namelen = 0;
374
375 msg.msg_control    = (caddr_t) cmptr;
376 msg.msg_controllen = _SCMR_CONTROLLEN;
377
[4256]378 if ( (*len = recvmsg(sock, &msg, 0)) == -1 ) {
379  ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = -1 // can not read from socket", sock, mes, len);
[753]380  return -1;
[4256]381 }
[753]382
[4257]383 if ( msg.msg_controllen  < _SCMR_CONTROLLEN ||
384      cmptr->cmsg_len    != _SCMR_CONTROLLEN  ) {
[4256]385  ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = -1 // control len is wrong", sock, mes, len);
[753]386  return -1;
[4256]387 }
[753]388
[4256]389 ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = %i", sock, mes, len, *(int *)CMSG_DATA(cmptr));
[753]390 return *(int *)CMSG_DATA(cmptr);
[1085]391#else
392 ROAR_ERR("roar_socket_recv_fh(*): There is no UNIX Domain Socket support in win32, download a real OS.");
393 return -1;
394#endif
[753]395}
396
[0]397int roar_socket_listen  (int type, char * host, int port) {
398 return roar_socket_open(MODE_LISTEN, type, host, port);
399}
400
401int roar_socket_connect (char * host, int port) {
[2]402 char * proxy_type = getenv("ROAR_PROXY");
403
[4692]404 ROAR_DBG("roar_socket_connect(host='%s', port=%i) = ?", host, port);
405
[2]406 if ( proxy_type == NULL || strcmp(proxy_type, "") == 0 ) {
407  return roar_socket_open(MODE_CONNECT, ROAR_SOCKET_TYPE_UNKNOWN, host, port);
408 } else {
[1087]409#ifdef ROAR_SUPPORT_PROXY
[2]410  return roar_socket_open_proxy(MODE_CONNECT, ROAR_SOCKET_TYPE_UNKNOWN, host, port, proxy_type);
[1087]411#else
412  ROAR_ERR("roar_socket_connect(host='%s', port=%i): no support for proxy code (proxy_type=%s)", host, port, proxy_type);
413  return -1;
414#endif
[2]415 }
[0]416}
417
[508]418
419int roar_socket_listen_decnet (char * object, int num) {
420#ifdef ROAR_HAVE_LIBDNET
421 int fh = roar_socket_new_decnet_stream();
422 struct sockaddr_dn bind_sockaddr;
423
424 if ( fh == -1 )
425  return -1;
426
427 if ( !*object )
428  object = NULL;
429
430 if ( (object && num) || (!*object && !num) ) {
431  ROAR_WARN("roar_socket_listen_decnet(object='%s', num=%i): illegal address!", object, num);
432  close(fh);
433  return -1;
434 }
435
436 memset((void*)&bind_sockaddr, 0, sizeof(struct sockaddr_dn));
437
438 bind_sockaddr.sdn_family    = AF_DECnet;
439 bind_sockaddr.sdn_flags     = 0;
440 bind_sockaddr.sdn_objnum    = num;
441
442 if ( num ) {
443  bind_sockaddr.sdn_objnamel = 0;
444 } else {
[4073]445  bind_sockaddr.sdn_objnamel  = ROAR_HOST2LE16(strlen(object));
[1068]446  if ( bind_sockaddr.sdn_objnamel > DN_MAXOBJL )
447   bind_sockaddr.sdn_objnamel = DN_MAXOBJL;
448  strncpy((char*)bind_sockaddr.sdn_objname, object, DN_MAXOBJL);
[508]449 }
450
451 if ( bind(fh, (struct sockaddr *) &bind_sockaddr, sizeof(bind_sockaddr)) == -1 ) {
452  close(fh);
453  return -1;
454 }
455
456 if ( listen(fh, 8) == -1 ) {
457  close(fh);
458  return -1;
459 }
460
461 return fh;
462#else
463 return -1;
464#endif
465}
466
[5121]467const char * roar_socket_get_local_nodename(void) {
[521]468#ifdef ROAR_HAVE_LIBDNET
469 static char node[16] = {0};
470 struct dn_naddr      *binaddr;
471 struct nodeent       *dp;
472
473 if ( !node[0] ) {
474  if ( (binaddr=getnodeadd()) == NULL)
475   return NULL;
476
[3835]477  if ( (dp=getnodebyaddr((char*)binaddr->a_addr, binaddr->a_len, AF_DECnet)) == NULL )
[521]478   return NULL;
479
480  strncpy(node, dp->n_name, 15);
481  node[15] = 0;
482 }
483
484 return node;
485#else
486 return NULL;
487#endif
488}
489
[0]490int roar_socket_open (int mode, int type, char * host, int port) {
491// int type = ROAR_SOCKET_TYPE_INET;
492 int fh;
[531]493#ifdef ROAR_HAVE_IPX
494#define _NEED_OBJ
495 int ret;
496#endif
[3788]497#ifdef ROAR_HAVE_IPX
498 unsigned int ipx_port;
499#endif
[3643]500#ifdef ROAR_HAVE_UNIX
501 int abstract = 0;
502#endif
[1476]503#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6) || defined(ROAR_HAVE_UNIX) || defined(ROAR_HAVE_IPX)
[512]504 union {
[1359]505  struct sockaddr     sa;
[1361]506#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
[512]507  struct sockaddr_in  in;
[1359]508#endif
[1090]509#ifdef ROAR_HAVE_UNIX
[512]510  struct sockaddr_un  un;
[1090]511#endif
[890]512#ifdef ROAR_HAVE_IPV6
[514]513  struct sockaddr_in6 in6;
[890]514#endif
[531]515#ifdef ROAR_HAVE_IPX
516  struct sockaddr_ipx ipx;
517#endif
[512]518 } socket_addr;
[4759]519 socklen_t addrlen;
[1476]520#endif
[1359]521#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
[0]522 struct hostent     * he;
[1359]523#endif
[0]524 //unsigned int host_div = 0;
[3788]525#ifdef ROAR_TARGET_WIN32
526 int PASCAL (*mode_func)(SOCKET,const struct sockaddr*,int) = connect; // default is to connect
527#else
[0]528 int (*mode_func)(int sockfd, const struct sockaddr *serv_addr, socklen_t addrlen) = connect; // default is to connect
[3788]529#endif
[501]530#ifdef ROAR_HAVE_LIBDNET
[531]531#define _NEED_OBJ
532#endif
533#ifdef _NEED_OBJ
[501]534 char obj[80];
535 char * del;
536#endif
[4759]537 int af_guessed = 0;
538#ifdef ROAR_HAVE_GETADDRINFO
539 struct addrinfo hints, *res = NULL;
540 char port_as_string[32];
541#endif
[5098]542#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
543 int is_numerical = 1;
544 const char * numptr;
545#endif
[0]546
[4692]547 ROAR_DBG("roar_socket_open(mode=%i, type=%i, host='%s', port=%i) = ?", mode, type, host, port);
548
[0]549 if ( mode == MODE_LISTEN )
550  mode_func = bind;
551
552 if ( type == ROAR_SOCKET_TYPE_UNKNOWN ) {
[4759]553  af_guessed = 1;
[0]554  type = ROAR_SOCKET_TYPE_INET;
[69]555  if ( *host == '/' ) {
[0]556   type = ROAR_SOCKET_TYPE_UNIX;
[69]557  } else if ( strcmp(host, "+fork") == 0 ) {
558   type = ROAR_SOCKET_TYPE_FORK;
[3643]559  } else if ( strcmp(host, "+abstract") == 0 ) {
560   type = ROAR_SOCKET_TYPE_UNIX;
[3785]561#ifdef ROAR_HAVE_UNIX
[3643]562   abstract = 1;
[3785]563#endif
[501]564  } else if ( strstr(host, "::") != NULL ) {
565   type = ROAR_SOCKET_TYPE_DECNET;
[531]566  } else if ( host[strlen(host)-1] == ')' ) {
567   type = ROAR_SOCKET_TYPE_IPX;
[69]568  }
[0]569 }
570
571
[4692]572 ROAR_DBG("roar_socket_open(mode=%i, type=%i, host='%s', port=%i) = ?", mode, type, host, port);
573
[0]574 ROAR_DBG("roar_socket_open(*): type=%s, host='%s', port=%i",
[3956]575             type == ROAR_SOCKET_TYPE_UNIX ? "UNIX" : "???", host, port);
[0]576
[501]577 if ( type == ROAR_SOCKET_TYPE_DECNET ) {
578#ifdef ROAR_HAVE_LIBDNET
[508]579   ROAR_DBG("roar_socket_open(*): hostname for DECnet: host(%p)=%s", host, host);
[501]580   del = strstr(host, "::");
[508]581   ROAR_DBG("roar_socket_open(*): hostname for DECnet: del(%p)=%s", del, del);
582
583   if ( del == NULL ) {
584    ROAR_WARN("roar_socket_open(*): invalid hostname for DECnet: %s", host);
585    return -1;
586   }
587
[501]588   *del = 0;
589
590   if ( *(del+2) == '#' ) { // assume we have node::#num
591    port = atoi(del+2);
592   }
593
594   if ( port ) {
[1067]595    snprintf(obj, 7, "%i", port); // no need for snprintf() as dec(port) is smaller than obj[]
[501]596   } else {
597    *obj = 0;
598    strncat(obj, del+2, 79);
599   }
600
[5137]601  ROAR_DBG("roar_socket_open(*): obj='%s', port=%i", obj, port);
602
[508]603  if ( mode == MODE_LISTEN ) {
604   fh = roar_socket_listen_decnet(obj, port);
605   *del = ':';
606   return fh;
607//   return -1; // listen sockets on DECnet are not supportet at the moment
608  } else {
609   // There is nothing wrong in this case to use dnet_conn() so we do.
[5137]610   ROAR_DBG("roar_socket_open(*): CALL dnet_conn('%s', '%s', SOCK_STREAM, 0 ,0 ,0 , 0)", host, obj);
[501]611   fh = dnet_conn(host, obj, SOCK_STREAM, 0 ,0 ,0 , 0);
[5137]612   ROAR_DBG("roar_socket_open(*): RET %i", fh);
[501]613   *del = ':';
614   return fh;
[533]615  }
[501]616#else
[533]617  return -1; // no decnet support
[501]618#endif
619 }
620
[1359]621#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
[512]622 memset(&socket_addr,    0, sizeof(socket_addr));
[60]623 memset(&he,             0, sizeof(he));               // FIXME: we have a valid pointer in here????
[1359]624#endif
[0]625
626
[520]627 if ( type == ROAR_SOCKET_TYPE_INET || type == ROAR_SOCKET_TYPE_INET6 ) {
[1359]628#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
[0]629
[3956]630  ROAR_DBG("roar_socket_open(*): type=INET|INET6, host='%s', port=%i", host, port);
[2039]631
[1768]632  roar_socket_win32_init(); // we need to do this early as gethostbyname() requires this.
633
[3956]634  ROAR_DBG("roar_socket_open(*): type=INET|INET6, host='%s', port=%i", host, port);
635
[5098]636  if ( !!strcmp(host, "0.0.0.0") ) {
637   for (numptr = host; is_numerical && *numptr != 0; numptr++)
638    if ( ! ((*numptr >= '0' && *numptr <= '9') || *numptr == '.')  )
639     is_numerical = 0;
640
641   if ( is_numerical ) {
642    ROAR_WARN("roar_socket_open(*): Hostname \"%s\" is numerical. Do not use IP addresses directly. Use Hostnames.", host);
643   }
644  }
645
[4759]646#ifdef ROAR_HAVE_GETADDRINFO
647  memset(&hints, 0, sizeof(hints));
648  hints.ai_socktype = SOCK_STREAM;
649  if ( af_guessed ) {
650   hints.ai_family   = AF_UNSPEC;
651  } else {
652   hints.ai_family   = type == ROAR_SOCKET_TYPE_INET ? AF_INET : AF_INET6;
653  }
654
655  snprintf(port_as_string, sizeof(port_as_string), "%i", port);
656
657  if ( getaddrinfo(host, port_as_string, &hints, &res) != 0 )
658   return -1;
659
660  if ( af_guessed ) {
661   type = res->ai_family == AF_INET ? ROAR_SOCKET_TYPE_INET : ROAR_SOCKET_TYPE_INET6;
662  }
663
664  if ( type == ROAR_SOCKET_TYPE_INET ) {
665   fh = roar_socket_new_tcp();
666  } else {
667   fh = roar_socket_new_tcp6();
668  }
669
670  memcpy(&(socket_addr.sa), res->ai_addr, res->ai_addrlen);
671  addrlen = res->ai_addrlen;
672
673  if ( res != NULL )
674   freeaddrinfo(res);
675#else
[0]676  if ( (he = gethostbyname(host)) == NULL ) {
677   ROAR_ERR("roar_socket_open(*): Can\'t resolve host name '%s'",
678                     host);
679   return -1;
680  }
681
[4692]682   ROAR_DBG("roar_socket_open(*): he=%p", he);
683
[4759]684   memcpy((struct in_addr *)&(socket_addr.in.sin_addr), he->h_addr, sizeof(struct in_addr));
[0]685
[520]686   /* set the connect information */
687   socket_addr.in.sin_family = AF_INET;
688   socket_addr.in.sin_port   = ROAR_HOST2NET16(port);
689
[2039]690  fh = roar_socket_new_tcp();
[4759]691  addrlen = sizeof(struct sockaddr_in);
692#endif
[2039]693
[4692]694  ROAR_DBG("roar_socket_open(*): fh=%i", fh);
695
[2039]696  if ( fh == -1 ) {
697   ROAR_ERR("roar_socket_open(*): Can\'t create TCP socket: %s", strerror(errno));
698   return -1;
699  }
700
701  ROAR_DBG("roar_socket_open(*) = ?");
[0]702
[4692]703  ROAR_DBG("roar_socket_open(*): fh=%i", fh);
704
[4759]705   if ( mode_func(fh, (struct sockaddr *)&socket_addr.sa, addrlen) == -1 ) {
[520]706    ROAR_DBG("roar_socket_open(*): Can not connect/bind: %s", strerror(errno));
707    close(fh);
708    return -1;
709   }
[4692]710
711  ROAR_DBG("roar_socket_open(*): fh=%i", fh);
712
[0]713  // hey! we have a socket...
[2040]714  ROAR_DBG("roar_socket_open(*) = ? // we have a socket :)");
[1359]715#else
[4692]716  ROAR_DBG("roar_socket_open(*) = -1 // no IPv4 or IPv6 support");
[1359]717  return -1;
718#endif
[69]719 } else if ( type == ROAR_SOCKET_TYPE_UNIX ) {
[1090]720#ifdef ROAR_HAVE_UNIX
[512]721  socket_addr.un.sun_family = AF_UNIX;
[3643]722
723  if ( abstract ) {
724   memset(socket_addr.un.sun_path, 0, sizeof(socket_addr.un.sun_path));
725   snprintf(socket_addr.un.sun_path+1, sizeof(socket_addr.un.sun_path)-1, "RoarAudio/UNIX/Abstract/%i", abstract);
726  } else {
727   strncpy(socket_addr.un.sun_path, host, sizeof(socket_addr.un.sun_path) - 1);
728  }
[60]729
[0]730  fh = roar_socket_new_unix();
[60]731
[512]732  if ( mode_func(fh, (struct sockaddr *)&socket_addr.un, sizeof(struct sockaddr_un)) == -1 ) {
[60]733   ROAR_DBG("roar_socket_open(*): Can not connect/bind: %s", strerror(errno));
734   close(fh);
735   return -1;
736  }
[1090]737#else
738  ROAR_ERR("roar_socket_open(*): There is no UNIX Domain Socket support in win32, download a real OS.");
739  return -1;
740#endif
[531]741 } else if ( type == ROAR_SOCKET_TYPE_IPX ) {
[534]742#ifdef ROAR_HAVE_IPX
[531]743  socket_addr.ipx.sipx_family = AF_IPX;
744
745  obj[0] = 0;
746
[3788]747  if ( (ret = sscanf(host, "%8x.%12s(%x)", &socket_addr.ipx.sipx_network, obj, &ipx_port)) < 2 ) {
[531]748   return -1;
[3788]749   socket_addr.ipx.sipx_port = ipx_port;
[531]750  } else if ( ret == 2 ) {
751   socket_addr.ipx.sipx_port = port; // Network Byte Order?
752  }
753
754  memset(socket_addr.ipx.sipx_node, 0, IPX_NODE_LEN);
755  ret = strlen(obj);
756
757  if ( ret % 2 )  // needs to be even at the moment
758   return -1;
759
760  fh = roar_socket_new_ipx();
761
762  close(fh);
763  return -1;
[534]764#else
765  return -1;
766#endif
[69]767 } else if ( type == ROAR_SOCKET_TYPE_FORK ) {
768  return roar_socket_open_fork(mode, host, port);
[75]769 } else if ( type == ROAR_SOCKET_TYPE_FILE ) {
770  return roar_socket_open_file(mode, host, port);
[69]771 } else {
772  return -1;
[0]773 }
774
[1476]775 if ( mode == MODE_LISTEN ) {
[2040]776#if defined(ROAR_HAVE_BSDSOCKETS) || defined(ROAR_TARGET_WIN32)
[0]777  if ( listen(fh, ROAR_SOCKET_QUEUE_LEN) == -1 ) {
778   close(fh);
779   return -1;
780  }
[1476]781#else
782  return -1;
783#endif
784 }
[0]785
786 return fh;
787}
788
[69]789int roar_socket_open_fork  (int mode, char * host, int port) {
[1440]790#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[3628]791 char * daemonimage;
[69]792 int socks[2];
793 int r;
794 char fhstr[8];
795
796 if ( mode == MODE_LISTEN )
797  return -1;
798
[3628]799 // TODO: FIXME: we should move this into the config structure.
800 daemonimage = getenv("ROAR_DAEMONIMAGE");
801
802 if ( daemonimage == NULL || *daemonimage == 0 )
803  daemonimage = "roard";
804
[69]805 if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
806  return -1;
807 }
808
809 r = fork();
810
811 if ( r == -1 ) { // error!
812  ROAR_ERR("roar_socket_open_fork(*): Can not fork: %s", strerror(errno));
813  close(socks[0]);
814  close(socks[1]);
815  return -1;
816 } else if ( r == 0 ) { // we are the child
817  close(socks[0]);
818
[70]819  close(ROAR_STDIN ); // we do not want roard to have any standard input
820  close(ROAR_STDOUT); // STDOUT is also not needed, so we close it,
821                      // but STDERR we keep open for error messages.
822
[69]823  snprintf(fhstr, 7, "%i", socks[1]);
824
[3628]825  execlp(daemonimage, daemonimage, "--no-listen", "--client-fh", fhstr, (char*)NULL);
[69]826
827  // we are still alive?
828  ROAR_ERR("roar_socket_open_fork(*): alive after exec(), that's bad!");
829  _exit(1);
830 } else { // we are the parent
831  close(socks[1]);
832  return socks[0];
833 }
834
835 return -1;
[1093]836#else
837 ROAR_ERR("roar_socket_open_fork(*): There is no UNIX Domain Socket support in win32, download a real OS.");
838 return -1;
839#endif
[69]840}
841
[75]842int roar_socket_open_file  (int mode, char * host, int port) {
[1476]843#ifdef ROAR_HAVE_IO_POSIX
[75]844 int fh;
845
846 if ( mode == MODE_LISTEN )
847  return -1;
848
849 if ( (fh = open(host, O_RDONLY, 0644)) == -1 ) {
850  ROAR_ERR("roar_socket_open_file(*): Can not open file %s: %s", host, strerror(errno));
851 }
852
853 return fh;
[1476]854#else
855 return -1;
856#endif
[75]857}
858
[2]859// --- [ PROXY CODE ] ---
860
[3901]861#ifndef ROAR_HAVE_IO_POSIX
862#ifdef  ROAR_SUPPORT_PROXY
863#undef  ROAR_SUPPORT_PROXY
864#endif
865#endif
866
[2]867// generic proxy code:
868
[1087]869#ifdef ROAR_SUPPORT_PROXY
[2]870int roar_socket_open_proxy (int mode, int type, char * host, int port, char * proxy_type) {
[829]871 int    proxy_port = -1;
[2]872 char   proxy_host[ROAR_SOCKET_MAX_HOSTNAMELEN];
[829]873 char * proxy_addr = NULL;
[2]874 int    i;
[829]875 int    fh = -1;
[835]876 char * user = NULL, * pw = NULL, * opts = NULL;
[836]877 char * sep;
[838]878 int    no_fh = 0;
[1008]879 char   proxy_addr_buf[1024];
[835]880 static struct passwd * passwd;
[834]881 int (* code)(int mode, int fh, char * host, int port, char * user, char * pw, char * opts) = NULL;
[2]882
[835]883 if ( passwd == NULL ) {
884  passwd = getpwuid(getuid());
885 }
886
[3897]887// TODO: fix this in a good way
888#ifndef ROAR_TARGET_MICROCONTROLLER
[835]889 if ( passwd != NULL )
890  user = passwd->pw_name;
[3897]891#endif
[835]892
893 if ( user == NULL )
894  user = getenv("USER");
895
[2]896 // TODO: change this so we support listen() proxys (ssh -R)
897 if ( mode != MODE_CONNECT )
898  return -1;
899
[829]900 if ( !strncmp(proxy_type, "socks", 5) ) {
[2]901  proxy_addr = getenv("socks_proxy");
902
903  proxy_port = 9050; // TOR's default port
[832]904 } else if ( !strcmp(proxy_type, "http") || !strcmp(proxy_type, "https") ) {
[830]905  proxy_port = 8080;
[2]906
[832]907  if ( (proxy_addr = getenv("http_proxy")) == NULL )
908   proxy_addr = getenv("https_proxy");
909
[2]910  if ( proxy_addr == NULL )
911   return -1;
912
[830]913  if ( !strncmp(proxy_addr, "http://", 7) )
914   proxy_addr += 7;
[838]915 } else if ( !strncmp(proxy_type, "ssh", 3) ) {
916  proxy_port = 22;
917  proxy_addr = getenv("ssh_proxy");
918  no_fh      = 1;
[830]919 }
[2]920
[1008]921 proxy_addr_buf[1023] = 0;
922 strncpy(proxy_addr_buf, proxy_addr, 1023);
923 proxy_addr = proxy_addr_buf;
924
[837]925 if ( (sep = strstr(proxy_type, "/")) != NULL )
926  opts = sep+1;
927
[830]928 if ( proxy_addr == NULL )
929  return -1;
[2]930
[836]931 if ( (sep = strstr(proxy_addr, "@")) != NULL ) {
932  *sep = 0;
933  user = proxy_addr;
934  proxy_addr = sep+1;
935
936  if ( (sep = strstr(user, ":")) != NULL ) {
937   *sep = 0;
938   pw = sep+1;
939  }
940 }
941
[1008]942 ROAR_DBG("roar_socket_open_proxy(*): proxy_type='%s', opts='%s', user='%s', pw=(not shown), proxy_addr='%s'", proxy_type, opts, user, proxy_addr);
943
[4028]944 for (i = 0; proxy_addr[i] != 0 && proxy_addr[i] != ':' && i < (ROAR_SOCKET_MAX_HOSTNAMELEN - 1); i++)
[830]945  proxy_host[i] = proxy_addr[i];
946 proxy_host[i] = 0;
[2]947
[830]948 if ( i == 0 ) // no hostname found
949  return -1;
950
951 if ( proxy_addr[i] == ':' )
952  proxy_port = atoi(&proxy_addr[i+1]);
953
[838]954 if ( ! no_fh ) {
955  if ( (fh = roar_socket_open(mode, type, proxy_host, proxy_port)) == -1) {
956   return -1;
957  }
[829]958 }
[2]959
[829]960 if ( !strcmp(proxy_type, "socks4a") ) { // for TOR, the only supported type at the moment
[833]961  code = roar_socket_open_socks4a;
962 } else if ( !strcmp(proxy_type, "socks4d") ) { // DECnet
963  code = roar_socket_open_socks4d;
964 } else if ( !strcmp(proxy_type, "socks4") ) { // good old SOCKS4
965  code = roar_socket_open_socks4;
966 } else if ( !strcmp(proxy_type, "http") ) { // HTTP CONNECT
967  code = roar_socket_open_http;
[839]968 } else if ( !strncmp(proxy_type, "ssh", 3) ) { // SSH...
[1063]969#ifdef ROAR_HAVE_BIN_SSH
[839]970  code = roar_socket_open_ssh;
[1063]971#else
972  ROAR_ERR("roar_socket_open_proxy(*): No SSH support compiled in");
973#endif
[833]974 } else {
975  return -1; // unknown type
976 }
[2]977
[833]978 if ( code != NULL ) {
[838]979  if ( no_fh ) {
980   fh = code(mode, fh, host, port, user, pw, opts);
981  } else {
982   if ( code(mode, fh, host, port, user, pw, opts) == -1 ) {
983    close(fh);
984    return -1;
985   }
[829]986  }
987
988  return fh;
[833]989 }
[829]990
[833]991 close(fh);
992 return -1;
[2]993}
994
995// protocoll dependet proxy code:
996
[834]997int roar_socket_open_socks4 (int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
[3897]998#ifndef ROAR_TARGET_MICROCONTROLLER
[829]999 struct hostent     * he;
1000
1001 if ( (he = gethostbyname(host)) == NULL ) {
1002  ROAR_ERR("roar_socket_open_socks4(*): Can\'t resolve host name '%s'", host);
1003  return -1;
1004 }
1005
[834]1006 return roar_socket_open_socks4x(mode, fh, he->h_addr, port, NULL, 0, user);
[3897]1007#else
1008 return -1;
1009#endif
[829]1010}
1011
[834]1012int roar_socket_open_socks4a(int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
1013 return roar_socket_open_socks4x(mode, fh, "\0\0\0\1", port, host, strlen(host)+1, user);
[829]1014}
1015
[834]1016int roar_socket_open_socks4d(int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
[829]1017 size_t len = strlen(host)+1;
1018 char * dp;
1019
1020 if ( port == 0 ) {
1021  if ( (dp = strstr(host, "::")) == NULL )
1022   return -1;
1023
1024  len--;
1025  *dp = 0;
1026  memmove(dp+1, dp+2, len - (dp-host) - 1);
1027 }
1028
[834]1029 return roar_socket_open_socks4x(mode, fh, "\0\2\0\0", port, host, len, user);
[829]1030}
1031
[834]1032int roar_socket_open_socks4x(int mode, int fh, char host[4], int port, char * app, size_t app_len, char * user) {
[2]1033 char buf[9];
[835]1034 int len;
[2]1035
1036 buf[0] = 0x04;
1037 buf[1] = mode == MODE_CONNECT ? 0x01 : 0x02;
1038 *((uint16_t*)&buf[2]) = htons(port);
[829]1039 memcpy(buf+4, host, 4);
[835]1040
1041 if ( user == NULL ) {
1042  buf[8] = 0x00;
1043  len = 9;
1044 } else {
1045  len = 8;
1046 }
[2]1047
[835]1048 if ( write(fh, buf, len) != len )
[2]1049  return -1;
1050
[835]1051 if ( user != NULL ) {
1052  len = strlen(user) + 1;
1053  if ( write(fh, user, len) != len )
1054   return -1;
1055 }
1056
[829]1057 if ( app_len > 0 )
1058  if ( write(fh, app, app_len) != app_len )
1059   return -1;
[2]1060
1061 if ( read(fh, buf, 8) != 8 )
1062  return -1;
1063
1064 if ( buf[1] != 0x5a )
1065  return -1;
1066
1067 return 0;
1068}
1069
[834]1070int roar_socket_open_http   (int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
[831]1071 char buf[1024];
1072 int len;
1073
1074 if ( port == 0 || host == NULL )
1075  return -1;
1076
1077 if ( *host == '/' ) // AF_UNIX
1078  return -1;
1079
1080 if ( (len = snprintf(buf, 1024, "CONNECT %s:%i HTTP/1.0\r\nUser-Agent: libroar\r\n\r\n", host, port)) == -1 )
1081  return -1;
1082
1083 if ( write(fh, buf, len) != len )
1084  return -1;
1085
1086 while ( (len = read(fh, buf, 1024)) ) {
1087  if ( len == 1024 ) { // overlong lion
1088   return -1;
1089  } else if ( len == 2 && buf[0] == '\r' && buf[1] == '\n' ) {
1090   break;
1091  } else if ( len == 1 && (buf[0] == '\r' || buf[0] == '\n') ) { // bad proxy or devel trying to debug ;)
1092   break;
1093  } else if ( len >= 4 && buf[len-4] == '\r' && buf[len-3] == '\n' && buf[len-2] == '\r' && buf[len-1] == '\n' ) {
1094   break;
1095  }
1096 }
1097
1098 return 0;
[830]1099}
1100
[839]1101
[1063]1102#ifdef ROAR_HAVE_BIN_SSH
[839]1103int roar_socket_open_ssh    (int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
1104 char * proxy_addr = getenv("ssh_proxy");
1105 char * sep;
1106 char   cmd[1024] = {0}, rcmd[1024] = {0};
1107 int    proxy_port = 22;
[840]1108 int    use_socat = 0;
[839]1109 int r;
1110 int socks[2];
1111
1112 if ( host == NULL )
1113  return -1;
1114
1115 if ( *host == '/' )
[840]1116  use_socat = 1;
[839]1117
1118 if ( mode == MODE_LISTEN )
1119  return -1;
1120
1121 if ( proxy_addr == NULL )
1122  return -1;
1123
[840]1124 if ( opts != NULL ) {
1125  if ( !strcmp(opts, "socat") ) {
1126   use_socat = 1;
1127  } else if ( !strcmp(opts, "netcat") ) {
1128   use_socat = 0;
1129  } else {
1130   return -1;
1131  }
1132 }
1133
[1008]1134 ROAR_DBG("roar_socket_open_ssh(*): proxy_addr='%s'", proxy_addr);
1135
[839]1136 if ( (sep = strstr(proxy_addr, "@")) != NULL )
1137  proxy_addr = sep+1;
1138
1139 if ( (sep = strstr(proxy_addr, ":")) != NULL ) {
1140  *sep = 0;
1141  proxy_port = atoi(sep+1);
1142 }
1143
1144
1145 if ( !strcmp(host, "+fork") ) {
[1068]1146  strncpy(rcmd, "roard --no-listen --client-fh 0", 32);
[839]1147 } else {
[840]1148  if ( use_socat ) {
1149   if ( *host == '/' ) {
1150    snprintf(rcmd, 1023, "socat stdio unix-connect:\"%s\"", host);
1151   } else {
1152    snprintf(rcmd, 1023, "socat stdio tcp:\"%s\":%i", host, port);
1153   }
1154  } else {
1155   snprintf(rcmd, 1023, "$(which netcat nc 2> /dev/null | grep -v \" \" | head -n 1) \"%s\" %i", host, port);
1156  }
1157
[839]1158  rcmd[1023] = 0;
1159 }
1160
[1008]1161 ROAR_DBG("roar_socket_open_ssh(*): proxy_port=%i, user='%s', proxy_addr='%s'", proxy_port, user, proxy_addr);
[1033]1162 ROAR_DBG("roar_socket_open_ssh(*): rcmd: %s", rcmd);
[1063]1163 snprintf(cmd, 1023, ROAR_HAVE_BIN_SSH " -p %i -l '%s' '%s' '%s'", proxy_port, user, proxy_addr, rcmd);
[839]1164 cmd[1023] = 0;
1165
1166
[3897]1167// TODO: get this more portable!
1168#ifdef AF_UNIX
[839]1169 if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
1170  return -1;
1171 }
[3897]1172#else
1173 return -1;
1174#endif
[839]1175
1176 r = fork();
1177
1178 if ( r == -1 ) { // error!
1179  ROAR_ERR("roar_socket_open_ssh(*): Can not fork: %s", strerror(errno));
1180  close(socks[0]);
1181  close(socks[1]);
1182  return -1;
1183 } else if ( r == 0 ) { // we are the child
1184  close(socks[0]);
1185
1186  close(ROAR_STDIN ); // we do not want roard to have any standard input
1187  close(ROAR_STDOUT); // STDOUT is also not needed, so we close it,
1188                      // but STDERR we keep open for error messages.
1189
1190  dup2(socks[1], 0);
1191  dup2(socks[1], 1);
1192
[1652]1193  execlp("sh", "sh", "-c", cmd, (char*)NULL);
[839]1194
1195  // we are still alive?
1196  ROAR_ERR("roar_socket_open_ssh(*): alive after exec(), that's bad!");
1197  _exit(1);
1198 } else { // we are the parent
1199  close(socks[1]);
1200  return socks[0];
1201 }
1202 return -1;
1203}
[1063]1204#endif
[839]1205
[1087]1206#endif // ROAR_SUPPORT_PROXY
1207
[0]1208//ll
Note: See TracBrowser for help on using the repository browser.