source: roaraudio/libroar/socket.c @ 3785:0d4047505c68

Last change on this file since 3785:0d4047505c68 was 3785:0d4047505c68, checked in by phi, 14 years ago

only support +abstract in case of AF_UNIX support

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