source: roaraudio/libroar/socket.c @ 5714:d9d16e63c248

Last change on this file since 5714:d9d16e63c248 was 5714:d9d16e63c248, checked in by phi, 12 years ago

avoid segfault in case host argument is NULL

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