source: roaraudio/libroar/socket.c @ 5184:ad300180eb6f

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

updated error handling

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