Janitor for tpot...bugzilla #1098, msleep already exists on aix
[tprouty/samba.git] / source / lib / util_sock.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4    Copyright (C) Andrew Tridgell 1992-1998
5    Copyright (C) Tim Potter      2000-2001
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 /* the last IP received from */
25 struct in_addr lastip;
26
27 /* the last port received from */
28 int lastport=0;
29
30 int smb_read_error = 0;
31
32 static char *get_socket_addr(int fd)
33 {
34         struct sockaddr sa;
35         struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
36         int     length = sizeof(sa);
37         static fstring addr_buf;
38
39         fstrcpy(addr_buf,"0.0.0.0");
40
41         if (fd == -1) {
42                 return addr_buf;
43         }
44         
45         if (getsockname(fd, &sa, &length) < 0) {
46                 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
47                 return addr_buf;
48         }
49         
50         fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
51         
52         return addr_buf;
53 }
54
55 /****************************************************************************
56  Determine if a file descriptor is in fact a socket.
57 ****************************************************************************/
58
59 BOOL is_a_socket(int fd)
60 {
61         int v,l;
62         l = sizeof(int);
63         return(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0);
64 }
65
66 enum SOCK_OPT_TYPES {OPT_BOOL,OPT_INT,OPT_ON};
67
68 typedef struct smb_socket_option {
69         const char *name;
70         int level;
71         int option;
72         int value;
73         int opttype;
74 } smb_socket_option;
75
76 static const smb_socket_option socket_options[] = {
77   {"SO_KEEPALIVE",      SOL_SOCKET,    SO_KEEPALIVE,    0,                 OPT_BOOL},
78   {"SO_REUSEADDR",      SOL_SOCKET,    SO_REUSEADDR,    0,                 OPT_BOOL},
79   {"SO_BROADCAST",      SOL_SOCKET,    SO_BROADCAST,    0,                 OPT_BOOL},
80 #ifdef TCP_NODELAY
81   {"TCP_NODELAY",       IPPROTO_TCP,   TCP_NODELAY,     0,                 OPT_BOOL},
82 #endif
83 #ifdef IPTOS_LOWDELAY
84   {"IPTOS_LOWDELAY",    IPPROTO_IP,    IP_TOS,          IPTOS_LOWDELAY,    OPT_ON},
85 #endif
86 #ifdef IPTOS_THROUGHPUT
87   {"IPTOS_THROUGHPUT",  IPPROTO_IP,    IP_TOS,          IPTOS_THROUGHPUT,  OPT_ON},
88 #endif
89 #ifdef SO_REUSEPORT
90   {"SO_REUSEPORT",      SOL_SOCKET,    SO_REUSEPORT,    0,                 OPT_BOOL},
91 #endif
92 #ifdef SO_SNDBUF
93   {"SO_SNDBUF",         SOL_SOCKET,    SO_SNDBUF,       0,                 OPT_INT},
94 #endif
95 #ifdef SO_RCVBUF
96   {"SO_RCVBUF",         SOL_SOCKET,    SO_RCVBUF,       0,                 OPT_INT},
97 #endif
98 #ifdef SO_SNDLOWAT
99   {"SO_SNDLOWAT",       SOL_SOCKET,    SO_SNDLOWAT,     0,                 OPT_INT},
100 #endif
101 #ifdef SO_RCVLOWAT
102   {"SO_RCVLOWAT",       SOL_SOCKET,    SO_RCVLOWAT,     0,                 OPT_INT},
103 #endif
104 #ifdef SO_SNDTIMEO
105   {"SO_SNDTIMEO",       SOL_SOCKET,    SO_SNDTIMEO,     0,                 OPT_INT},
106 #endif
107 #ifdef SO_RCVTIMEO
108   {"SO_RCVTIMEO",       SOL_SOCKET,    SO_RCVTIMEO,     0,                 OPT_INT},
109 #endif
110   {NULL,0,0,0,0}};
111
112 /****************************************************************************
113  Print socket options.
114 ****************************************************************************/
115
116 static void print_socket_options(int s)
117 {
118         int value, vlen = 4;
119         const smb_socket_option *p = &socket_options[0];
120
121         /* wrapped in if statement to prevent streams leak in SCO Openserver 5.0 */
122         /* reported on samba-technical  --jerry */
123         if ( DEBUGLEVEL >= 5 ) {
124         for (; p->name != NULL; p++) {
125                 if (getsockopt(s, p->level, p->option, (void *)&value, &vlen) == -1) {
126                         DEBUG(5,("Could not test socket option %s.\n", p->name));
127                 } else {
128                         DEBUG(5,("socket option %s = %d\n",p->name,value));
129                         }
130                 }
131         }
132  }
133
134 /****************************************************************************
135  Set user socket options.
136 ****************************************************************************/
137
138 void set_socket_options(int fd, const char *options)
139 {
140         fstring tok;
141
142         while (next_token(&options,tok," \t,", sizeof(tok))) {
143                 int ret=0,i;
144                 int value = 1;
145                 char *p;
146                 BOOL got_value = False;
147
148                 if ((p = strchr_m(tok,'='))) {
149                         *p = 0;
150                         value = atoi(p+1);
151                         got_value = True;
152                 }
153
154                 for (i=0;socket_options[i].name;i++)
155                         if (strequal(socket_options[i].name,tok))
156                                 break;
157
158                 if (!socket_options[i].name) {
159                         DEBUG(0,("Unknown socket option %s\n",tok));
160                         continue;
161                 }
162
163                 switch (socket_options[i].opttype) {
164                 case OPT_BOOL:
165                 case OPT_INT:
166                         ret = setsockopt(fd,socket_options[i].level,
167                                                 socket_options[i].option,(char *)&value,sizeof(int));
168                         break;
169
170                 case OPT_ON:
171                         if (got_value)
172                                 DEBUG(0,("syntax error - %s does not take a value\n",tok));
173
174                         {
175                                 int on = socket_options[i].value;
176                                 ret = setsockopt(fd,socket_options[i].level,
177                                                         socket_options[i].option,(char *)&on,sizeof(int));
178                         }
179                         break;    
180                 }
181       
182                 if (ret != 0)
183                         DEBUG(0,("Failed to set socket option %s (Error %s)\n",tok, strerror(errno) ));
184         }
185
186         print_socket_options(fd);
187 }
188
189 /****************************************************************************
190  Read from a socket.
191 ****************************************************************************/
192
193 ssize_t read_udp_socket(int fd,char *buf,size_t len)
194 {
195         ssize_t ret;
196         struct sockaddr_in sock;
197         socklen_t socklen = sizeof(sock);
198
199         memset((char *)&sock,'\0',socklen);
200         memset((char *)&lastip,'\0',sizeof(lastip));
201         ret = (ssize_t)sys_recvfrom(fd,buf,len,0,(struct sockaddr *)&sock,&socklen);
202         if (ret <= 0) {
203                 DEBUG(2,("read socket failed. ERRNO=%s\n",strerror(errno)));
204                 return(0);
205         }
206
207         lastip = sock.sin_addr;
208         lastport = ntohs(sock.sin_port);
209
210         DEBUG(10,("read_udp_socket: lastip %s lastport %d read: %lu\n",
211                         inet_ntoa(lastip), lastport, (unsigned long)ret));
212
213         return(ret);
214 }
215
216 /****************************************************************************
217  Read data from a socket with a timout in msec.
218  mincount = if timeout, minimum to read before returning
219  maxcount = number to be read.
220  time_out = timeout in milliseconds
221 ****************************************************************************/
222
223 ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t maxcnt,unsigned int time_out)
224 {
225         fd_set fds;
226         int selrtn;
227         ssize_t readret;
228         size_t nread = 0;
229         struct timeval timeout;
230         
231         /* just checking .... */
232         if (maxcnt <= 0)
233                 return(0);
234         
235         smb_read_error = 0;
236         
237         /* Blocking read */
238         if (time_out <= 0) {
239                 if (mincnt == 0) mincnt = maxcnt;
240                 
241                 while (nread < mincnt) {
242                         readret = sys_read(fd, buf + nread, maxcnt - nread);
243                         
244                         if (readret == 0) {
245                                 DEBUG(5,("read_socket_with_timeout: blocking read. EOF from client.\n"));
246                                 smb_read_error = READ_EOF;
247                                 return -1;
248                         }
249                         
250                         if (readret == -1) {
251                                 DEBUG(0,("read_socket_with_timeout: read error = %s.\n", strerror(errno) ));
252                                 smb_read_error = READ_ERROR;
253                                 return -1;
254                         }
255                         nread += readret;
256                 }
257                 return((ssize_t)nread);
258         }
259         
260         /* Most difficult - timeout read */
261         /* If this is ever called on a disk file and 
262            mincnt is greater then the filesize then
263            system performance will suffer severely as 
264            select always returns true on disk files */
265         
266         /* Set initial timeout */
267         timeout.tv_sec = (time_t)(time_out / 1000);
268         timeout.tv_usec = (long)(1000 * (time_out % 1000));
269         
270         for (nread=0; nread < mincnt; ) {      
271                 FD_ZERO(&fds);
272                 FD_SET(fd,&fds);
273                 
274                 selrtn = sys_select_intr(fd+1,&fds,NULL,NULL,&timeout);
275                 
276                 /* Check if error */
277                 if (selrtn == -1) {
278                         /* something is wrong. Maybe the socket is dead? */
279                         DEBUG(0,("read_socket_with_timeout: timeout read. select error = %s.\n", strerror(errno) ));
280                         smb_read_error = READ_ERROR;
281                         return -1;
282                 }
283                 
284                 /* Did we timeout ? */
285                 if (selrtn == 0) {
286                         DEBUG(10,("read_socket_with_timeout: timeout read. select timed out.\n"));
287                         smb_read_error = READ_TIMEOUT;
288                         return -1;
289                 }
290                 
291                 readret = sys_read(fd, buf+nread, maxcnt-nread);
292                 
293                 if (readret == 0) {
294                         /* we got EOF on the file descriptor */
295                         DEBUG(5,("read_socket_with_timeout: timeout read. EOF from client.\n"));
296                         smb_read_error = READ_EOF;
297                         return -1;
298                 }
299                 
300                 if (readret == -1) {
301                         /* the descriptor is probably dead */
302                         DEBUG(0,("read_socket_with_timeout: timeout read. read error = %s.\n", strerror(errno) ));
303                         smb_read_error = READ_ERROR;
304                         return -1;
305                 }
306                 
307                 nread += readret;
308         }
309         
310         /* Return the number we got */
311         return (ssize_t)nread;
312 }
313
314 /****************************************************************************
315  Read data from the client, reading exactly N bytes. 
316 ****************************************************************************/
317
318 ssize_t read_data(int fd,char *buffer,size_t N)
319 {
320         ssize_t ret;
321         size_t total=0;  
322  
323         smb_read_error = 0;
324
325         while (total < N) {
326                 ret = sys_read(fd,buffer + total,N - total);
327
328                 if (ret == 0) {
329                         DEBUG(10,("read_data: read of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
330                         smb_read_error = READ_EOF;
331                         return 0;
332                 }
333
334                 if (ret == -1) {
335                         DEBUG(0,("read_data: read failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
336                         smb_read_error = READ_ERROR;
337                         return -1;
338                 }
339                 total += ret;
340         }
341         return (ssize_t)total;
342 }
343
344 /****************************************************************************
345  Read data from a socket, reading exactly N bytes. 
346 ****************************************************************************/
347
348 static ssize_t read_socket_data(int fd,char *buffer,size_t N)
349 {
350         ssize_t ret;
351         size_t total=0;  
352  
353         smb_read_error = 0;
354
355         while (total < N) {
356                 ret = sys_read(fd,buffer + total,N - total);
357
358                 if (ret == 0) {
359                         DEBUG(10,("read_socket_data: recv of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
360                         smb_read_error = READ_EOF;
361                         return 0;
362                 }
363
364                 if (ret == -1) {
365                         DEBUG(0,("read_socket_data: recv failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
366                         smb_read_error = READ_ERROR;
367                         return -1;
368                 }
369                 total += ret;
370         }
371         return (ssize_t)total;
372 }
373
374 /****************************************************************************
375  Write data to a fd.
376 ****************************************************************************/
377
378 ssize_t write_data(int fd,char *buffer,size_t N)
379 {
380         size_t total=0;
381         ssize_t ret;
382
383         while (total < N) {
384                 ret = sys_write(fd,buffer + total,N - total);
385
386                 if (ret == -1) {
387                         DEBUG(0,("write_data: write failure. Error = %s\n", strerror(errno) ));
388                         return -1;
389                 }
390                 if (ret == 0)
391                         return total;
392
393                 total += ret;
394         }
395         return (ssize_t)total;
396 }
397
398 /****************************************************************************
399  Write data to a socket - use send rather than write.
400 ****************************************************************************/
401
402 static ssize_t write_socket_data(int fd,char *buffer,size_t N)
403 {
404         size_t total=0;
405         ssize_t ret;
406
407         while (total < N) {
408                 ret = sys_send(fd,buffer + total,N - total,0);
409
410                 if (ret == -1) {
411                         DEBUG(0,("write_socket_data: write failure. Error = %s\n", strerror(errno) ));
412                         return -1;
413                 }
414                 if (ret == 0)
415                         return total;
416
417                 total += ret;
418         }
419         return (ssize_t)total;
420 }
421
422 /****************************************************************************
423  Write to a socket.
424 ****************************************************************************/
425
426 ssize_t write_socket(int fd,char *buf,size_t len)
427 {
428         ssize_t ret=0;
429
430         DEBUG(6,("write_socket(%d,%d)\n",fd,(int)len));
431         ret = write_socket_data(fd,buf,len);
432       
433         DEBUG(6,("write_socket(%d,%d) wrote %d\n",fd,(int)len,(int)ret));
434         if(ret <= 0)
435                 DEBUG(0,("write_socket: Error writing %d bytes to socket %d: ERRNO = %s\n", 
436                         (int)len, fd, strerror(errno) ));
437
438         return(ret);
439 }
440
441 /****************************************************************************
442  Send a keepalive packet (rfc1002).
443 ****************************************************************************/
444
445 BOOL send_keepalive(int client)
446 {
447         unsigned char buf[4];
448
449         buf[0] = SMBkeepalive;
450         buf[1] = buf[2] = buf[3] = 0;
451
452         return(write_socket_data(client,(char *)buf,4) == 4);
453 }
454
455
456 /****************************************************************************
457  Read 4 bytes of a smb packet and return the smb length of the packet.
458  Store the result in the buffer.
459  This version of the function will return a length of zero on receiving
460  a keepalive packet.
461  Timeout is in milliseconds.
462 ****************************************************************************/
463
464 static ssize_t read_smb_length_return_keepalive(int fd,char *inbuf,unsigned int timeout)
465 {
466         ssize_t len=0;
467         int msg_type;
468         BOOL ok = False;
469
470         while (!ok) {
471                 if (timeout > 0)
472                         ok = (read_socket_with_timeout(fd,inbuf,4,4,timeout) == 4);
473                 else 
474                         ok = (read_socket_data(fd,inbuf,4) == 4);
475
476                 if (!ok)
477                         return(-1);
478
479                 len = smb_len(inbuf);
480                 msg_type = CVAL(inbuf,0);
481
482                 if (msg_type == SMBkeepalive) 
483                         DEBUG(5,("Got keepalive packet\n"));
484         }
485
486         DEBUG(10,("got smb length of %lu\n",(unsigned long)len));
487
488         return(len);
489 }
490
491 /****************************************************************************
492  Read 4 bytes of a smb packet and return the smb length of the packet.
493  Store the result in the buffer. This version of the function will
494  never return a session keepalive (length of zero).
495  Timeout is in milliseconds.
496 ****************************************************************************/
497
498 ssize_t read_smb_length(int fd,char *inbuf,unsigned int timeout)
499 {
500         ssize_t len;
501
502         for(;;) {
503                 len = read_smb_length_return_keepalive(fd, inbuf, timeout);
504
505                 if(len < 0)
506                         return len;
507
508                 /* Ignore session keepalives. */
509                 if(CVAL(inbuf,0) != SMBkeepalive)
510                         break;
511         }
512
513         DEBUG(10,("read_smb_length: got smb length of %lu\n",
514                   (unsigned long)len));
515
516         return len;
517 }
518
519 /****************************************************************************
520  Read an smb from a fd. Note that the buffer *MUST* be of size
521  BUFFER_SIZE+SAFETY_MARGIN.
522  The timeout is in milliseconds. 
523  This function will return on receipt of a session keepalive packet.
524  Doesn't check the MAC on signed packets.
525 ****************************************************************************/
526
527 BOOL receive_smb_raw(int fd,char *buffer, unsigned int timeout)
528 {
529         ssize_t len,ret;
530
531         smb_read_error = 0;
532
533         memset(buffer,'\0',smb_size + 100);
534
535         len = read_smb_length_return_keepalive(fd,buffer,timeout);
536         if (len < 0) {
537                 DEBUG(10,("receive_smb_raw: length < 0!\n"));
538
539                 /*
540                  * Correct fix. smb_read_error may have already been
541                  * set. Only set it here if not already set. Global
542                  * variables still suck :-). JRA.
543                  */
544
545                 if (smb_read_error == 0)
546                         smb_read_error = READ_ERROR;
547                 return False;
548         }
549
550         /*
551          * A WRITEX with CAP_LARGE_WRITEX can be 64k worth of data plus 65 bytes
552          * of header. Don't print the error if this fits.... JRA.
553          */
554
555         if (len > (BUFFER_SIZE + LARGE_WRITEX_HDR_SIZE)) {
556                 DEBUG(0,("Invalid packet length! (%lu bytes).\n",(unsigned long)len));
557                 if (len > BUFFER_SIZE + (SAFETY_MARGIN/2)) {
558
559                         /*
560                          * Correct fix. smb_read_error may have already been
561                          * set. Only set it here if not already set. Global
562                          * variables still suck :-). JRA.
563                          */
564
565                         if (smb_read_error == 0)
566                                 smb_read_error = READ_ERROR;
567                         return False;
568                 }
569         }
570
571         if(len > 0) {
572                 ret = read_socket_data(fd,buffer+4,len);
573                 if (ret != len) {
574                         if (smb_read_error == 0)
575                                 smb_read_error = READ_ERROR;
576                         return False;
577                 }
578                 
579                 /* not all of samba3 properly checks for packet-termination of strings. This
580                    ensures that we don't run off into empty space. */
581                 SSVAL(buffer+4,len, 0);
582         }
583
584         return True;
585 }
586
587 /****************************************************************************
588  Wrapper for receive_smb_raw().
589  Checks the MAC on signed packets.
590 ****************************************************************************/
591
592 BOOL receive_smb(int fd,char *buffer, unsigned int timeout)
593 {
594         if (!receive_smb_raw(fd, buffer, timeout)) {
595                 return False;
596         }
597
598         /* Check the incoming SMB signature. */
599         if (!srv_check_sign_mac(buffer)) {
600                 DEBUG(0, ("receive_smb: SMB Signature verification failed on incoming packet!\n"));
601                 if (smb_read_error == 0)
602                         smb_read_error = READ_BAD_SIG;
603                 return False;
604         };
605
606         return(True);
607 }
608
609 /****************************************************************************
610  Send an smb to a fd.
611 ****************************************************************************/
612
613 BOOL send_smb(int fd,char *buffer)
614 {
615         size_t len;
616         size_t nwritten=0;
617         ssize_t ret;
618
619         /* Sign the outgoing packet if required. */
620         srv_calculate_sign_mac(buffer);
621
622         len = smb_len(buffer) + 4;
623
624         while (nwritten < len) {
625                 ret = write_socket(fd,buffer+nwritten,len - nwritten);
626                 if (ret <= 0) {
627                         DEBUG(0,("Error writing %d bytes to client. %d. (%s)\n",
628                                 (int)len,(int)ret, strerror(errno) ));
629                         return False;
630                 }
631                 nwritten += ret;
632         }
633
634         return True;
635 }
636
637 /****************************************************************************
638  Open a socket of the specified type, port, and address for incoming data.
639 ****************************************************************************/
640
641 int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL rebind )
642 {
643         struct sockaddr_in sock;
644         int res;
645
646         memset( (char *)&sock, '\0', sizeof(sock) );
647
648 #ifdef HAVE_SOCK_SIN_LEN
649         sock.sin_len         = sizeof(sock);
650 #endif
651         sock.sin_port        = htons( port );
652         sock.sin_family      = AF_INET;
653         sock.sin_addr.s_addr = socket_addr;
654
655         res = socket( AF_INET, type, 0 );
656         if( res == -1 ) {
657                 if( DEBUGLVL(0) ) {
658                         dbgtext( "open_socket_in(): socket() call failed: " );
659                         dbgtext( "%s\n", strerror( errno ) );
660                 }
661                 return -1;
662         }
663
664         /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
665         {
666                 int val = rebind ? 1 : 0;
667                 if( setsockopt(res,SOL_SOCKET,SO_REUSEADDR,(char *)&val,sizeof(val)) == -1 ) {
668                         if( DEBUGLVL( dlevel ) ) {
669                                 dbgtext( "open_socket_in(): setsockopt: " );
670                                 dbgtext( "SO_REUSEADDR = %s ", val?"True":"False" );
671                                 dbgtext( "on port %d failed ", port );
672                                 dbgtext( "with error = %s\n", strerror(errno) );
673                         }
674                 }
675 #ifdef SO_REUSEPORT
676                 if( setsockopt(res,SOL_SOCKET,SO_REUSEPORT,(char *)&val,sizeof(val)) == -1 ) {
677                         if( DEBUGLVL( dlevel ) ) {
678                                 dbgtext( "open_socket_in(): setsockopt: ");
679                                 dbgtext( "SO_REUSEPORT = %s ", val?"True":"False" );
680                                 dbgtext( "on port %d failed ", port );
681                                 dbgtext( "with error = %s\n", strerror(errno) );
682                         }
683                 }
684 #endif /* SO_REUSEPORT */
685         }
686
687         /* now we've got a socket - we need to bind it */
688         if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) == -1 ) {
689                 if( DEBUGLVL(dlevel) && (port == SMB_PORT1 || port == SMB_PORT2 || port == NMB_PORT) ) {
690                         dbgtext( "bind failed on port %d ", port );
691                         dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
692                         dbgtext( "Error = %s\n", strerror(errno) );
693                 }
694                 close( res ); 
695                 return( -1 ); 
696         }
697
698         DEBUG( 10, ( "bind succeeded on port %d\n", port ) );
699
700         return( res );
701  }
702
703 /****************************************************************************
704  Create an outgoing socket. timeout is in milliseconds.
705 **************************************************************************/
706
707 int open_socket_out(int type, struct in_addr *addr, int port ,int timeout)
708 {
709         struct sockaddr_in sock_out;
710         int res,ret;
711         int connect_loop = 10;
712         int increment = 10;
713
714         /* create a socket to write to */
715         res = socket(PF_INET, type, 0);
716         if (res == -1) {
717                 DEBUG(0,("socket error\n"));
718                 return -1;
719         }
720
721         if (type != SOCK_STREAM)
722                 return(res);
723   
724         memset((char *)&sock_out,'\0',sizeof(sock_out));
725         putip((char *)&sock_out.sin_addr,(char *)addr);
726   
727         sock_out.sin_port = htons( port );
728         sock_out.sin_family = PF_INET;
729
730         /* set it non-blocking */
731         set_blocking(res,False);
732
733         DEBUG(3,("Connecting to %s at port %d\n",inet_ntoa(*addr),port));
734   
735         /* and connect it to the destination */
736   connect_again:
737
738         ret = connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out));
739
740         /* Some systems return EAGAIN when they mean EINPROGRESS */
741         if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
742                         errno == EAGAIN) && (connect_loop < timeout) ) {
743                 smb_msleep(connect_loop);
744                 connect_loop += increment;
745                 if (increment < 250) {
746                         /* After 8 rounds we end up at a max of 255 msec */
747                         increment *= 1.5;
748                 }
749                 goto connect_again;
750         }
751
752         if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
753                         errno == EAGAIN)) {
754                 DEBUG(1,("timeout connecting to %s:%d\n",inet_ntoa(*addr),port));
755                 close(res);
756                 return -1;
757         }
758
759 #ifdef EISCONN
760
761         if (ret < 0 && errno == EISCONN) {
762                 errno = 0;
763                 ret = 0;
764         }
765 #endif
766
767         if (ret < 0) {
768                 DEBUG(2,("error connecting to %s:%d (%s)\n",
769                                 inet_ntoa(*addr),port,strerror(errno)));
770                 close(res);
771                 return -1;
772         }
773
774         /* set it blocking again */
775         set_blocking(res,True);
776
777         return res;
778 }
779
780 /****************************************************************************
781  Open a connected UDP socket to host on port
782 **************************************************************************/
783
784 int open_udp_socket(const char *host, int port)
785 {
786         int type = SOCK_DGRAM;
787         struct sockaddr_in sock_out;
788         int res;
789         struct in_addr *addr;
790
791         addr = interpret_addr2(host);
792
793         res = socket(PF_INET, type, 0);
794         if (res == -1) {
795                 return -1;
796         }
797
798         memset((char *)&sock_out,'\0',sizeof(sock_out));
799         putip((char *)&sock_out.sin_addr,(char *)addr);
800         sock_out.sin_port = htons(port);
801         sock_out.sin_family = PF_INET;
802
803         if (connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out))) {
804                 close(res);
805                 return -1;
806         }
807
808         return res;
809 }
810
811
812 /* the following 3 client_*() functions are nasty ways of allowing
813    some generic functions to get info that really should be hidden in
814    particular modules */
815 static int client_fd = -1;
816
817 void client_setfd(int fd)
818 {
819         client_fd = fd;
820 }
821
822 char *client_name(void)
823 {
824         return get_peer_name(client_fd,False);
825 }
826
827 char *client_addr(void)
828 {
829         return get_peer_addr(client_fd);
830 }
831
832 char *client_socket_addr(void)
833 {
834         return get_socket_addr(client_fd);
835 }
836
837 struct in_addr *client_inaddr(struct sockaddr *sa)
838 {
839         struct sockaddr_in *sockin = (struct sockaddr_in *) (sa);
840         int     length = sizeof(*sa);
841         
842         if (getpeername(client_fd, sa, &length) < 0) {
843                 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
844                 return NULL;
845         }
846         
847         return &sockin->sin_addr;
848 }
849
850 /*******************************************************************
851  Matchname - determine if host name matches IP address. Used to
852  confirm a hostname lookup to prevent spoof attacks.
853 ******************************************************************/
854
855 static BOOL matchname(char *remotehost,struct in_addr  addr)
856 {
857         struct hostent *hp;
858         int     i;
859         
860         if ((hp = sys_gethostbyname(remotehost)) == 0) {
861                 DEBUG(0,("sys_gethostbyname(%s): lookup failure.\n", remotehost));
862                 return False;
863         } 
864
865         /*
866          * Make sure that gethostbyname() returns the "correct" host name.
867          * Unfortunately, gethostbyname("localhost") sometimes yields
868          * "localhost.domain". Since the latter host name comes from the
869          * local DNS, we just have to trust it (all bets are off if the local
870          * DNS is perverted). We always check the address list, though.
871          */
872         
873         if (!strequal(remotehost, hp->h_name)
874             && !strequal(remotehost, "localhost")) {
875                 DEBUG(0,("host name/name mismatch: %s != %s\n",
876                          remotehost, hp->h_name));
877                 return False;
878         }
879         
880         /* Look up the host address in the address list we just got. */
881         for (i = 0; hp->h_addr_list[i]; i++) {
882                 if (memcmp(hp->h_addr_list[i], (char *) & addr, sizeof(addr)) == 0)
883                         return True;
884         }
885         
886         /*
887          * The host name does not map to the original host address. Perhaps
888          * someone has compromised a name server. More likely someone botched
889          * it, but that could be dangerous, too.
890          */
891         
892         DEBUG(0,("host name/address mismatch: %s != %s\n",
893                  inet_ntoa(addr), hp->h_name));
894         return False;
895 }
896
897 /*******************************************************************
898  Return the DNS name of the remote end of a socket.
899 ******************************************************************/
900
901 char *get_peer_name(int fd, BOOL force_lookup)
902 {
903         static pstring name_buf;
904         pstring tmp_name;
905         static fstring addr_buf;
906         struct hostent *hp;
907         struct in_addr addr;
908         char *p;
909
910         /* reverse lookups can be *very* expensive, and in many
911            situations won't work because many networks don't link dhcp
912            with dns. To avoid the delay we avoid the lookup if
913            possible */
914         if (!lp_hostname_lookups() && (force_lookup == False)) {
915                 return get_peer_addr(fd);
916         }
917         
918         p = get_peer_addr(fd);
919
920         /* it might be the same as the last one - save some DNS work */
921         if (strcmp(p, addr_buf) == 0) 
922                 return name_buf;
923
924         pstrcpy(name_buf,"UNKNOWN");
925         if (fd == -1) 
926                 return name_buf;
927
928         fstrcpy(addr_buf, p);
929
930         addr = *interpret_addr2(p);
931         
932         /* Look up the remote host name. */
933         if ((hp = gethostbyaddr((char *)&addr.s_addr, sizeof(addr.s_addr), AF_INET)) == 0) {
934                 DEBUG(1,("Gethostbyaddr failed for %s\n",p));
935                 pstrcpy(name_buf, p);
936         } else {
937                 pstrcpy(name_buf,(char *)hp->h_name);
938                 if (!matchname(name_buf, addr)) {
939                         DEBUG(0,("Matchname failed on %s %s\n",name_buf,p));
940                         pstrcpy(name_buf,"UNKNOWN");
941                 }
942         }
943
944         /* can't pass the same source and dest strings in when you 
945            use --enable-developer or the clobber_region() call will 
946            get you */
947         
948         pstrcpy( tmp_name, name_buf );
949         alpha_strcpy(name_buf, tmp_name, "_-.", sizeof(name_buf));
950         if (strstr(name_buf,"..")) {
951                 pstrcpy(name_buf, "UNKNOWN");
952         }
953
954         return name_buf;
955 }
956
957 /*******************************************************************
958  Return the IP addr of the remote end of a socket as a string.
959  ******************************************************************/
960
961 char *get_peer_addr(int fd)
962 {
963         struct sockaddr sa;
964         struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
965         int     length = sizeof(sa);
966         static fstring addr_buf;
967
968         fstrcpy(addr_buf,"0.0.0.0");
969
970         if (fd == -1) {
971                 return addr_buf;
972         }
973         
974         if (getpeername(fd, &sa, &length) < 0) {
975                 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
976                 return addr_buf;
977         }
978         
979         fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
980         
981         return addr_buf;
982 }
983
984 /*******************************************************************
985  Create protected unix domain socket.
986
987  Some unixes cannot set permissions on a ux-dom-sock, so we
988  have to make sure that the directory contains the protection
989  permissions instead.
990  ******************************************************************/
991
992 int create_pipe_sock(const char *socket_dir,
993                      const char *socket_name,
994                      mode_t dir_perms)
995 {
996 #ifdef HAVE_UNIXSOCKET
997         struct sockaddr_un sunaddr;
998         struct stat st;
999         int sock;
1000         mode_t old_umask;
1001         pstring path;
1002         
1003         old_umask = umask(0);
1004         
1005         /* Create the socket directory or reuse the existing one */
1006         
1007         if (lstat(socket_dir, &st) == -1) {
1008                 if (errno == ENOENT) {
1009                         /* Create directory */
1010                         if (mkdir(socket_dir, dir_perms) == -1) {
1011                                 DEBUG(0, ("error creating socket directory "
1012                                         "%s: %s\n", socket_dir, 
1013                                         strerror(errno)));
1014                                 goto out_umask;
1015                         }
1016                 } else {
1017                         DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1018                                 socket_dir, strerror(errno)));
1019                         goto out_umask;
1020                 }
1021         } else {
1022                 /* Check ownership and permission on existing directory */
1023                 if (!S_ISDIR(st.st_mode)) {
1024                         DEBUG(0, ("socket directory %s isn't a directory\n",
1025                                 socket_dir));
1026                         goto out_umask;
1027                 }
1028                 if ((st.st_uid != sec_initial_uid()) || 
1029                                 ((st.st_mode & 0777) != dir_perms)) {
1030                         DEBUG(0, ("invalid permissions on socket directory "
1031                                 "%s\n", socket_dir));
1032                         goto out_umask;
1033                 }
1034         }
1035         
1036         /* Create the socket file */
1037         
1038         sock = socket(AF_UNIX, SOCK_STREAM, 0);
1039         
1040         if (sock == -1) {
1041                 perror("socket");
1042                 goto out_umask;
1043         }
1044         
1045         pstr_sprintf(path, "%s/%s", socket_dir, socket_name);
1046         
1047         unlink(path);
1048         memset(&sunaddr, 0, sizeof(sunaddr));
1049         sunaddr.sun_family = AF_UNIX;
1050         safe_strcpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path)-1);
1051         
1052         if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1) {
1053                 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path,
1054                         strerror(errno)));
1055                 goto out_close;
1056         }
1057         
1058         if (listen(sock, 5) == -1) {
1059                 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path,
1060                         strerror(errno)));
1061                 goto out_close;
1062         }
1063         
1064         umask(old_umask);
1065         return sock;
1066
1067 out_close:
1068         close(sock);
1069
1070 out_umask:
1071         umask(old_umask);
1072         return -1;
1073
1074 #else
1075         DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1076         return -1;
1077 #endif /* HAVE_UNIXSOCKET */
1078 }