source: roaraudio/libroar/socket.c @ 4554:713ba72295c3

Last change on this file since 4554:713ba72295c3 was 4554:713ba72295c3, checked in by phi, 14 years ago

start porting to OpenVMS

File size: 27.4 KB
Line 
1//socket.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
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#if defined(TCP_NODELAY) && !defined(ROAR_TARGET_WIN32)
62 int t   = 1;
63#endif
64
65 roar_socket_win32_init();
66
67 fh = socket(AF_INET, SOCK_STREAM, 0);
68
69#ifndef ROAR_TARGET_WIN32
70 setsockopt(fh, IPPROTO_IP, IP_TOS, &opt, sizeof(int));
71#endif
72#if defined(TCP_NODELAY) && !defined(ROAR_TARGET_WIN32)
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(AF_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(AF_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(AF_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) && defined(ROAR_HAVE_FCNTL)
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) && defined(ROAR_HAVE_FCNTL)
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) && !defined(ROAR_TARGET_OPENVMS)
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) && !defined(ROAR_TARGET_OPENVMS)
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 ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = ?", sock, mes, len);
352
353 if ( sock < 0 ) {
354  ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = -1 // invalid socket", sock, mes, len);
355  return -1;
356 }
357
358 if ( len == NULL ) {
359  len = locallen;
360  mes = localmes;
361 }
362
363 iov[0].iov_base = mes;
364 iov[0].iov_len  = *len;
365 msg.msg_iov     = iov;
366 msg.msg_iovlen  = 1;
367 msg.msg_name    = NULL;
368 msg.msg_namelen = 0;
369
370 msg.msg_control    = (caddr_t) cmptr;
371 msg.msg_controllen = _SCMR_CONTROLLEN;
372
373 if ( (*len = recvmsg(sock, &msg, 0)) == -1 ) {
374  ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = -1 // can not read from socket", sock, mes, len);
375  return -1;
376 }
377
378 if ( msg.msg_controllen  < _SCMR_CONTROLLEN ||
379      cmptr->cmsg_len    != _SCMR_CONTROLLEN  ) {
380  ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = -1 // control len is wrong", sock, mes, len);
381  return -1;
382 }
383
384 ROAR_DBG("roar_socket_recv_fh(sock=%i, mes=%p, len=%p) = %i", sock, mes, len, *(int *)CMSG_DATA(cmptr));
385 return *(int *)CMSG_DATA(cmptr);
386#else
387 ROAR_ERR("roar_socket_recv_fh(*): There is no UNIX Domain Socket support in win32, download a real OS.");
388 return -1;
389#endif
390}
391
392int roar_socket_listen  (int type, char * host, int port) {
393 return roar_socket_open(MODE_LISTEN, type, host, port);
394}
395
396int roar_socket_connect (char * host, int port) {
397 char * proxy_type = getenv("ROAR_PROXY");
398
399 if ( proxy_type == NULL || strcmp(proxy_type, "") == 0 ) {
400  return roar_socket_open(MODE_CONNECT, ROAR_SOCKET_TYPE_UNKNOWN, host, port);
401 } else {
402#ifdef ROAR_SUPPORT_PROXY
403  return roar_socket_open_proxy(MODE_CONNECT, ROAR_SOCKET_TYPE_UNKNOWN, host, port, proxy_type);
404#else
405  ROAR_ERR("roar_socket_connect(host='%s', port=%i): no support for proxy code (proxy_type=%s)", host, port, proxy_type);
406  return -1;
407#endif
408 }
409}
410
411
412int roar_socket_listen_decnet (char * object, int num) {
413#ifdef ROAR_HAVE_LIBDNET
414 int fh = roar_socket_new_decnet_stream();
415 struct sockaddr_dn bind_sockaddr;
416
417 if ( fh == -1 )
418  return -1;
419
420 if ( !*object )
421  object = NULL;
422
423 if ( (object && num) || (!*object && !num) ) {
424  ROAR_WARN("roar_socket_listen_decnet(object='%s', num=%i): illegal address!", object, num);
425  close(fh);
426  return -1;
427 }
428
429 memset((void*)&bind_sockaddr, 0, sizeof(struct sockaddr_dn));
430
431 bind_sockaddr.sdn_family    = AF_DECnet;
432 bind_sockaddr.sdn_flags     = 0;
433 bind_sockaddr.sdn_objnum    = num;
434
435 if ( num ) {
436  bind_sockaddr.sdn_objnamel = 0;
437 } else {
438  bind_sockaddr.sdn_objnamel  = ROAR_HOST2LE16(strlen(object));
439  if ( bind_sockaddr.sdn_objnamel > DN_MAXOBJL )
440   bind_sockaddr.sdn_objnamel = DN_MAXOBJL;
441  strncpy((char*)bind_sockaddr.sdn_objname, object, DN_MAXOBJL);
442 }
443
444 if ( bind(fh, (struct sockaddr *) &bind_sockaddr, sizeof(bind_sockaddr)) == -1 ) {
445  close(fh);
446  return -1;
447 }
448
449 if ( listen(fh, 8) == -1 ) {
450  close(fh);
451  return -1;
452 }
453
454 return fh;
455#else
456 return -1;
457#endif
458}
459
460char * roar_socket_get_local_nodename(void) {
461#ifdef ROAR_HAVE_LIBDNET
462 static char node[16] = {0};
463 struct dn_naddr      *binaddr;
464 struct nodeent       *dp;
465
466 if ( !node[0] ) {
467  if ( (binaddr=getnodeadd()) == NULL)
468   return NULL;
469
470  if ( (dp=getnodebyaddr((char*)binaddr->a_addr, binaddr->a_len, AF_DECnet)) == NULL )
471   return NULL;
472
473  strncpy(node, dp->n_name, 15);
474  node[15] = 0;
475 }
476
477 return node;
478#else
479 return NULL;
480#endif
481}
482
483int roar_socket_open (int mode, int type, char * host, int port) {
484// int type = ROAR_SOCKET_TYPE_INET;
485 int fh;
486#ifdef ROAR_HAVE_IPX
487#define _NEED_OBJ
488 int ret;
489#endif
490#ifdef ROAR_HAVE_IPX
491 unsigned int ipx_port;
492#endif
493#ifdef ROAR_HAVE_UNIX
494 int abstract = 0;
495#endif
496#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6) || defined(ROAR_HAVE_UNIX) || defined(ROAR_HAVE_IPX)
497 union {
498  struct sockaddr     sa;
499#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
500  struct sockaddr_in  in;
501#endif
502#ifdef ROAR_HAVE_UNIX
503  struct sockaddr_un  un;
504#endif
505#ifdef ROAR_HAVE_IPV6
506  struct sockaddr_in6 in6;
507#endif
508#ifdef ROAR_HAVE_IPX
509  struct sockaddr_ipx ipx;
510#endif
511 } socket_addr;
512#endif
513#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
514 struct hostent     * he;
515#endif
516 //unsigned int host_div = 0;
517#ifdef ROAR_TARGET_WIN32
518 int PASCAL (*mode_func)(SOCKET,const struct sockaddr*,int) = connect; // default is to connect
519#else
520 int (*mode_func)(int sockfd, const struct sockaddr *serv_addr, socklen_t addrlen) = connect; // default is to connect
521#endif
522#ifdef ROAR_HAVE_LIBDNET
523#define _NEED_OBJ
524#endif
525#ifdef _NEED_OBJ
526 char obj[80];
527 char * del;
528#endif
529
530 if ( mode == MODE_LISTEN )
531  mode_func = bind;
532
533 if ( type == ROAR_SOCKET_TYPE_UNKNOWN ) {
534  type = ROAR_SOCKET_TYPE_INET;
535  if ( *host == '/' ) {
536   type = ROAR_SOCKET_TYPE_UNIX;
537  } else if ( strcmp(host, "+fork") == 0 ) {
538   type = ROAR_SOCKET_TYPE_FORK;
539  } else if ( strcmp(host, "+abstract") == 0 ) {
540   type = ROAR_SOCKET_TYPE_UNIX;
541#ifdef ROAR_HAVE_UNIX
542   abstract = 1;
543#endif
544  } else if ( strstr(host, "::") != NULL ) {
545   type = ROAR_SOCKET_TYPE_DECNET;
546  } else if ( host[strlen(host)-1] == ')' ) {
547   type = ROAR_SOCKET_TYPE_IPX;
548  }
549 }
550
551
552 ROAR_DBG("roar_socket_open(*): type=%s, host='%s', port=%i",
553             type == ROAR_SOCKET_TYPE_UNIX ? "UNIX" : "???", host, port);
554
555 if ( type == ROAR_SOCKET_TYPE_DECNET ) {
556#ifdef ROAR_HAVE_LIBDNET
557   ROAR_DBG("roar_socket_open(*): hostname for DECnet: host(%p)=%s", host, host);
558   del = strstr(host, "::");
559   ROAR_DBG("roar_socket_open(*): hostname for DECnet: del(%p)=%s", del, del);
560
561   if ( del == NULL ) {
562    ROAR_WARN("roar_socket_open(*): invalid hostname for DECnet: %s", host);
563    return -1;
564   }
565
566   *del = 0;
567
568   if ( *(del+2) == '#' ) { // assume we have node::#num
569    port = atoi(del+2);
570   }
571
572   if ( port ) {
573    snprintf(obj, 7, "%i", port); // no need for snprintf() as dec(port) is smaller than obj[]
574   } else {
575    *obj = 0;
576    strncat(obj, del+2, 79);
577   }
578
579  if ( mode == MODE_LISTEN ) {
580   fh = roar_socket_listen_decnet(obj, port);
581   *del = ':';
582   return fh;
583//   return -1; // listen sockets on DECnet are not supportet at the moment
584  } else {
585   // There is nothing wrong in this case to use dnet_conn() so we do.
586   fh = dnet_conn(host, obj, SOCK_STREAM, 0 ,0 ,0 , 0);
587   *del = ':';
588   return fh;
589  }
590#else
591  return -1; // no decnet support
592#endif
593 }
594
595#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
596 memset(&socket_addr,    0, sizeof(socket_addr));
597 memset(&he,             0, sizeof(he));               // FIXME: we have a valid pointer in here????
598#endif
599
600
601 if ( type == ROAR_SOCKET_TYPE_INET || type == ROAR_SOCKET_TYPE_INET6 ) {
602#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_IPV6)
603
604  ROAR_DBG("roar_socket_open(*): type=INET|INET6, host='%s', port=%i", host, port);
605
606  roar_socket_win32_init(); // we need to do this early as gethostbyname() requires this.
607
608  ROAR_DBG("roar_socket_open(*): type=INET|INET6, host='%s', port=%i", host, port);
609
610  if ( (he = gethostbyname(host)) == NULL ) {
611   ROAR_ERR("roar_socket_open(*): Can\'t resolve host name '%s'",
612                     host);
613   return -1;
614  }
615
616   memcpy((struct in_addr *)&socket_addr.in.sin_addr, he->h_addr, sizeof(struct in_addr));
617
618   /* set the connect information */
619   socket_addr.in.sin_family = AF_INET;
620   socket_addr.in.sin_port   = ROAR_HOST2NET16(port);
621
622  fh = roar_socket_new_tcp();
623
624  if ( fh == -1 ) {
625   ROAR_ERR("roar_socket_open(*): Can\'t create TCP socket: %s", strerror(errno));
626   return -1;
627  }
628
629  ROAR_DBG("roar_socket_open(*) = ?");
630
631   if ( mode_func(fh, (struct sockaddr *)&socket_addr.in, sizeof(struct sockaddr_in)) == -1 ) {
632    ROAR_DBG("roar_socket_open(*): Can not connect/bind: %s", strerror(errno));
633    close(fh);
634    return -1;
635   }
636  // hey! we have a socket...
637  ROAR_DBG("roar_socket_open(*) = ? // we have a socket :)");
638#else
639  return -1;
640#endif
641 } else if ( type == ROAR_SOCKET_TYPE_UNIX ) {
642#ifdef ROAR_HAVE_UNIX
643  socket_addr.un.sun_family = AF_UNIX;
644
645  if ( abstract ) {
646   memset(socket_addr.un.sun_path, 0, sizeof(socket_addr.un.sun_path));
647   snprintf(socket_addr.un.sun_path+1, sizeof(socket_addr.un.sun_path)-1, "RoarAudio/UNIX/Abstract/%i", abstract);
648  } else {
649   strncpy(socket_addr.un.sun_path, host, sizeof(socket_addr.un.sun_path) - 1);
650  }
651
652  fh = roar_socket_new_unix();
653
654  if ( mode_func(fh, (struct sockaddr *)&socket_addr.un, sizeof(struct sockaddr_un)) == -1 ) {
655   ROAR_DBG("roar_socket_open(*): Can not connect/bind: %s", strerror(errno));
656   close(fh);
657   return -1;
658  }
659#else
660  ROAR_ERR("roar_socket_open(*): There is no UNIX Domain Socket support in win32, download a real OS.");
661  return -1;
662#endif
663 } else if ( type == ROAR_SOCKET_TYPE_IPX ) {
664#ifdef ROAR_HAVE_IPX
665  socket_addr.ipx.sipx_family = AF_IPX;
666
667  obj[0] = 0;
668
669  if ( (ret = sscanf(host, "%8x.%12s(%x)", &socket_addr.ipx.sipx_network, obj, &ipx_port)) < 2 ) {
670   return -1;
671   socket_addr.ipx.sipx_port = ipx_port;
672  } else if ( ret == 2 ) {
673   socket_addr.ipx.sipx_port = port; // Network Byte Order?
674  }
675
676  memset(socket_addr.ipx.sipx_node, 0, IPX_NODE_LEN);
677  ret = strlen(obj);
678
679  if ( ret % 2 )  // needs to be even at the moment
680   return -1;
681
682  fh = roar_socket_new_ipx();
683
684  close(fh);
685  return -1;
686#else
687  return -1;
688#endif
689 } else if ( type == ROAR_SOCKET_TYPE_FORK ) {
690  return roar_socket_open_fork(mode, host, port);
691 } else if ( type == ROAR_SOCKET_TYPE_FILE ) {
692  return roar_socket_open_file(mode, host, port);
693 } else {
694  return -1;
695 }
696
697 if ( mode == MODE_LISTEN ) {
698#if defined(ROAR_HAVE_BSDSOCKETS) || defined(ROAR_TARGET_WIN32)
699  if ( listen(fh, ROAR_SOCKET_QUEUE_LEN) == -1 ) {
700   close(fh);
701   return -1;
702  }
703#else
704  return -1;
705#endif
706 }
707
708 return fh;
709}
710
711int roar_socket_open_fork  (int mode, char * host, int port) {
712#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
713 char * daemonimage;
714 int socks[2];
715 int r;
716 char fhstr[8];
717
718 if ( mode == MODE_LISTEN )
719  return -1;
720
721 // TODO: FIXME: we should move this into the config structure.
722 daemonimage = getenv("ROAR_DAEMONIMAGE");
723
724 if ( daemonimage == NULL || *daemonimage == 0 )
725  daemonimage = "roard";
726
727 if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
728  return -1;
729 }
730
731 r = fork();
732
733 if ( r == -1 ) { // error!
734  ROAR_ERR("roar_socket_open_fork(*): Can not fork: %s", strerror(errno));
735  close(socks[0]);
736  close(socks[1]);
737  return -1;
738 } else if ( r == 0 ) { // we are the child
739  close(socks[0]);
740
741  close(ROAR_STDIN ); // we do not want roard to have any standard input
742  close(ROAR_STDOUT); // STDOUT is also not needed, so we close it,
743                      // but STDERR we keep open for error messages.
744
745  snprintf(fhstr, 7, "%i", socks[1]);
746
747  execlp(daemonimage, daemonimage, "--no-listen", "--client-fh", fhstr, (char*)NULL);
748
749  // we are still alive?
750  ROAR_ERR("roar_socket_open_fork(*): alive after exec(), that's bad!");
751  _exit(1);
752 } else { // we are the parent
753  close(socks[1]);
754  return socks[0];
755 }
756
757 return -1;
758#else
759 ROAR_ERR("roar_socket_open_fork(*): There is no UNIX Domain Socket support in win32, download a real OS.");
760 return -1;
761#endif
762}
763
764int roar_socket_open_file  (int mode, char * host, int port) {
765#ifdef ROAR_HAVE_IO_POSIX
766 int fh;
767
768 if ( mode == MODE_LISTEN )
769  return -1;
770
771 if ( (fh = open(host, O_RDONLY, 0644)) == -1 ) {
772  ROAR_ERR("roar_socket_open_file(*): Can not open file %s: %s", host, strerror(errno));
773 }
774
775 return fh;
776#else
777 return -1;
778#endif
779}
780
781// --- [ PROXY CODE ] ---
782
783#ifndef ROAR_HAVE_IO_POSIX
784#ifdef  ROAR_SUPPORT_PROXY
785#undef  ROAR_SUPPORT_PROXY
786#endif
787#endif
788
789// generic proxy code:
790
791#ifdef ROAR_SUPPORT_PROXY
792int roar_socket_open_proxy (int mode, int type, char * host, int port, char * proxy_type) {
793 int    proxy_port = -1;
794 char   proxy_host[ROAR_SOCKET_MAX_HOSTNAMELEN];
795 char * proxy_addr = NULL;
796 int    i;
797 int    fh = -1;
798 char * user = NULL, * pw = NULL, * opts = NULL;
799 char * sep;
800 int    no_fh = 0;
801 char   proxy_addr_buf[1024];
802 static struct passwd * passwd;
803 int (* code)(int mode, int fh, char * host, int port, char * user, char * pw, char * opts) = NULL;
804
805 if ( passwd == NULL ) {
806  passwd = getpwuid(getuid());
807 }
808
809// TODO: fix this in a good way
810#ifndef ROAR_TARGET_MICROCONTROLLER
811 if ( passwd != NULL )
812  user = passwd->pw_name;
813#endif
814
815 if ( user == NULL )
816  user = getenv("USER");
817
818 // TODO: change this so we support listen() proxys (ssh -R)
819 if ( mode != MODE_CONNECT )
820  return -1;
821
822 if ( !strncmp(proxy_type, "socks", 5) ) {
823  proxy_addr = getenv("socks_proxy");
824
825  proxy_port = 9050; // TOR's default port
826 } else if ( !strcmp(proxy_type, "http") || !strcmp(proxy_type, "https") ) {
827  proxy_port = 8080;
828
829  if ( (proxy_addr = getenv("http_proxy")) == NULL )
830   proxy_addr = getenv("https_proxy");
831
832  if ( proxy_addr == NULL )
833   return -1;
834
835  if ( !strncmp(proxy_addr, "http://", 7) )
836   proxy_addr += 7;
837 } else if ( !strncmp(proxy_type, "ssh", 3) ) {
838  proxy_port = 22;
839  proxy_addr = getenv("ssh_proxy");
840  no_fh      = 1;
841 }
842
843 proxy_addr_buf[1023] = 0;
844 strncpy(proxy_addr_buf, proxy_addr, 1023);
845 proxy_addr = proxy_addr_buf;
846
847 if ( (sep = strstr(proxy_type, "/")) != NULL )
848  opts = sep+1;
849
850 if ( proxy_addr == NULL )
851  return -1;
852
853 if ( (sep = strstr(proxy_addr, "@")) != NULL ) {
854  *sep = 0;
855  user = proxy_addr;
856  proxy_addr = sep+1;
857
858  if ( (sep = strstr(user, ":")) != NULL ) {
859   *sep = 0;
860   pw = sep+1;
861  }
862 }
863
864 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);
865
866 for (i = 0; proxy_addr[i] != 0 && proxy_addr[i] != ':' && i < (ROAR_SOCKET_MAX_HOSTNAMELEN - 1); i++)
867  proxy_host[i] = proxy_addr[i];
868 proxy_host[i] = 0;
869
870 if ( i == 0 ) // no hostname found
871  return -1;
872
873 if ( proxy_addr[i] == ':' )
874  proxy_port = atoi(&proxy_addr[i+1]);
875
876 if ( ! no_fh ) {
877  if ( (fh = roar_socket_open(mode, type, proxy_host, proxy_port)) == -1) {
878   return -1;
879  }
880 }
881
882 if ( !strcmp(proxy_type, "socks4a") ) { // for TOR, the only supported type at the moment
883  code = roar_socket_open_socks4a;
884 } else if ( !strcmp(proxy_type, "socks4d") ) { // DECnet
885  code = roar_socket_open_socks4d;
886 } else if ( !strcmp(proxy_type, "socks4") ) { // good old SOCKS4
887  code = roar_socket_open_socks4;
888 } else if ( !strcmp(proxy_type, "http") ) { // HTTP CONNECT
889  code = roar_socket_open_http;
890 } else if ( !strncmp(proxy_type, "ssh", 3) ) { // SSH...
891#ifdef ROAR_HAVE_BIN_SSH
892  code = roar_socket_open_ssh;
893#else
894  ROAR_ERR("roar_socket_open_proxy(*): No SSH support compiled in");
895#endif
896 } else {
897  return -1; // unknown type
898 }
899
900 if ( code != NULL ) {
901  if ( no_fh ) {
902   fh = code(mode, fh, host, port, user, pw, opts);
903  } else {
904   if ( code(mode, fh, host, port, user, pw, opts) == -1 ) {
905    close(fh);
906    return -1;
907   }
908  }
909
910  return fh;
911 }
912
913 close(fh);
914 return -1;
915}
916
917// protocoll dependet proxy code:
918
919int roar_socket_open_socks4 (int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
920#ifndef ROAR_TARGET_MICROCONTROLLER
921 struct hostent     * he;
922
923 if ( (he = gethostbyname(host)) == NULL ) {
924  ROAR_ERR("roar_socket_open_socks4(*): Can\'t resolve host name '%s'", host);
925  return -1;
926 }
927
928 return roar_socket_open_socks4x(mode, fh, he->h_addr, port, NULL, 0, user);
929#else
930 return -1;
931#endif
932}
933
934int roar_socket_open_socks4a(int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
935 return roar_socket_open_socks4x(mode, fh, "\0\0\0\1", port, host, strlen(host)+1, user);
936}
937
938int roar_socket_open_socks4d(int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
939 size_t len = strlen(host)+1;
940 char * dp;
941
942 if ( port == 0 ) {
943  if ( (dp = strstr(host, "::")) == NULL )
944   return -1;
945
946  len--;
947  *dp = 0;
948  memmove(dp+1, dp+2, len - (dp-host) - 1);
949 }
950
951 return roar_socket_open_socks4x(mode, fh, "\0\2\0\0", port, host, len, user);
952}
953
954int roar_socket_open_socks4x(int mode, int fh, char host[4], int port, char * app, size_t app_len, char * user) {
955 char buf[9];
956 int len;
957
958 buf[0] = 0x04;
959 buf[1] = mode == MODE_CONNECT ? 0x01 : 0x02;
960 *((uint16_t*)&buf[2]) = htons(port);
961 memcpy(buf+4, host, 4);
962
963 if ( user == NULL ) {
964  buf[8] = 0x00;
965  len = 9;
966 } else {
967  len = 8;
968 }
969
970 if ( write(fh, buf, len) != len )
971  return -1;
972
973 if ( user != NULL ) {
974  len = strlen(user) + 1;
975  if ( write(fh, user, len) != len )
976   return -1;
977 }
978
979 if ( app_len > 0 )
980  if ( write(fh, app, app_len) != app_len )
981   return -1;
982
983 if ( read(fh, buf, 8) != 8 )
984  return -1;
985
986 if ( buf[1] != 0x5a )
987  return -1;
988
989 return 0;
990}
991
992int roar_socket_open_http   (int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
993 char buf[1024];
994 int len;
995
996 if ( port == 0 || host == NULL )
997  return -1;
998
999 if ( *host == '/' ) // AF_UNIX
1000  return -1;
1001
1002 if ( (len = snprintf(buf, 1024, "CONNECT %s:%i HTTP/1.0\r\nUser-Agent: libroar\r\n\r\n", host, port)) == -1 )
1003  return -1;
1004
1005 if ( write(fh, buf, len) != len )
1006  return -1;
1007
1008 while ( (len = read(fh, buf, 1024)) ) {
1009  if ( len == 1024 ) { // overlong lion
1010   return -1;
1011  } else if ( len == 2 && buf[0] == '\r' && buf[1] == '\n' ) {
1012   break;
1013  } else if ( len == 1 && (buf[0] == '\r' || buf[0] == '\n') ) { // bad proxy or devel trying to debug ;)
1014   break;
1015  } else if ( len >= 4 && buf[len-4] == '\r' && buf[len-3] == '\n' && buf[len-2] == '\r' && buf[len-1] == '\n' ) {
1016   break;
1017  }
1018 }
1019
1020 return 0;
1021}
1022
1023
1024#ifdef ROAR_HAVE_BIN_SSH
1025int roar_socket_open_ssh    (int mode, int fh, char * host, int port, char * user, char * pw, char * opts) {
1026 char * proxy_addr = getenv("ssh_proxy");
1027 char * sep;
1028 char   cmd[1024] = {0}, rcmd[1024] = {0};
1029 int    proxy_port = 22;
1030 int    use_socat = 0;
1031 int r;
1032 int socks[2];
1033
1034 if ( host == NULL )
1035  return -1;
1036
1037 if ( *host == '/' )
1038  use_socat = 1;
1039
1040 if ( mode == MODE_LISTEN )
1041  return -1;
1042
1043 if ( proxy_addr == NULL )
1044  return -1;
1045
1046 if ( opts != NULL ) {
1047  if ( !strcmp(opts, "socat") ) {
1048   use_socat = 1;
1049  } else if ( !strcmp(opts, "netcat") ) {
1050   use_socat = 0;
1051  } else {
1052   return -1;
1053  }
1054 }
1055
1056 ROAR_DBG("roar_socket_open_ssh(*): proxy_addr='%s'", proxy_addr);
1057
1058 if ( (sep = strstr(proxy_addr, "@")) != NULL )
1059  proxy_addr = sep+1;
1060
1061 if ( (sep = strstr(proxy_addr, ":")) != NULL ) {
1062  *sep = 0;
1063  proxy_port = atoi(sep+1);
1064 }
1065
1066
1067 if ( !strcmp(host, "+fork") ) {
1068  strncpy(rcmd, "roard --no-listen --client-fh 0", 32);
1069 } else {
1070  if ( use_socat ) {
1071   if ( *host == '/' ) {
1072    snprintf(rcmd, 1023, "socat stdio unix-connect:\"%s\"", host);
1073   } else {
1074    snprintf(rcmd, 1023, "socat stdio tcp:\"%s\":%i", host, port);
1075   }
1076  } else {
1077   snprintf(rcmd, 1023, "$(which netcat nc 2> /dev/null | grep -v \" \" | head -n 1) \"%s\" %i", host, port);
1078  }
1079
1080  rcmd[1023] = 0;
1081 }
1082
1083 ROAR_DBG("roar_socket_open_ssh(*): proxy_port=%i, user='%s', proxy_addr='%s'", proxy_port, user, proxy_addr);
1084 ROAR_DBG("roar_socket_open_ssh(*): rcmd: %s", rcmd);
1085 snprintf(cmd, 1023, ROAR_HAVE_BIN_SSH " -p %i -l '%s' '%s' '%s'", proxy_port, user, proxy_addr, rcmd);
1086 cmd[1023] = 0;
1087
1088
1089// TODO: get this more portable!
1090#ifdef AF_UNIX
1091 if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
1092  return -1;
1093 }
1094#else
1095 return -1;
1096#endif
1097
1098 r = fork();
1099
1100 if ( r == -1 ) { // error!
1101  ROAR_ERR("roar_socket_open_ssh(*): Can not fork: %s", strerror(errno));
1102  close(socks[0]);
1103  close(socks[1]);
1104  return -1;
1105 } else if ( r == 0 ) { // we are the child
1106  close(socks[0]);
1107
1108  close(ROAR_STDIN ); // we do not want roard to have any standard input
1109  close(ROAR_STDOUT); // STDOUT is also not needed, so we close it,
1110                      // but STDERR we keep open for error messages.
1111
1112  dup2(socks[1], 0);
1113  dup2(socks[1], 1);
1114
1115  execlp("sh", "sh", "-c", cmd, (char*)NULL);
1116
1117  // we are still alive?
1118  ROAR_ERR("roar_socket_open_ssh(*): alive after exec(), that's bad!");
1119  _exit(1);
1120 } else { // we are the parent
1121  close(socks[1]);
1122  return socks[0];
1123 }
1124 return -1;
1125}
1126#endif
1127
1128#endif // ROAR_SUPPORT_PROXY
1129
1130//ll
Note: See TracBrowser for help on using the repository browser.