r4348: syncing up for 3.0.11pre1
[Samba.git] / source / lib / util_sock.c
blob58bc5ed6fe469c3ac9d98adef221046d7adc6146
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Tim Potter 2000-2001
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.
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.
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.
22 #include "includes.h"
24 /* the last IP received from */
25 struct in_addr lastip;
27 /* the last port received from */
28 int lastport=0;
30 int smb_read_error = 0;
32 static char *get_socket_addr(int fd)
34 struct sockaddr sa;
35 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
36 socklen_t length = sizeof(sa);
37 static fstring addr_buf;
39 fstrcpy(addr_buf,"0.0.0.0");
41 if (fd == -1) {
42 return addr_buf;
45 if (getsockname(fd, &sa, &length) < 0) {
46 DEBUG(0,("getsockname failed. Error was %s\n", strerror(errno) ));
47 return addr_buf;
50 fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
52 return addr_buf;
55 static int get_socket_port(int fd)
57 struct sockaddr sa;
58 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
59 socklen_t length = sizeof(sa);
61 if (fd == -1)
62 return -1;
64 if (getsockname(fd, &sa, &length) < 0) {
65 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
66 return -1;
69 return ntohs(sockin->sin_port);
72 /****************************************************************************
73 Determine if a file descriptor is in fact a socket.
74 ****************************************************************************/
76 BOOL is_a_socket(int fd)
78 int v;
79 socklen_t l;
80 l = sizeof(int);
81 return(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0);
84 enum SOCK_OPT_TYPES {OPT_BOOL,OPT_INT,OPT_ON};
86 typedef struct smb_socket_option {
87 const char *name;
88 int level;
89 int option;
90 int value;
91 int opttype;
92 } smb_socket_option;
94 static const smb_socket_option socket_options[] = {
95 {"SO_KEEPALIVE", SOL_SOCKET, SO_KEEPALIVE, 0, OPT_BOOL},
96 {"SO_REUSEADDR", SOL_SOCKET, SO_REUSEADDR, 0, OPT_BOOL},
97 {"SO_BROADCAST", SOL_SOCKET, SO_BROADCAST, 0, OPT_BOOL},
98 #ifdef TCP_NODELAY
99 {"TCP_NODELAY", IPPROTO_TCP, TCP_NODELAY, 0, OPT_BOOL},
100 #endif
101 #ifdef IPTOS_LOWDELAY
102 {"IPTOS_LOWDELAY", IPPROTO_IP, IP_TOS, IPTOS_LOWDELAY, OPT_ON},
103 #endif
104 #ifdef IPTOS_THROUGHPUT
105 {"IPTOS_THROUGHPUT", IPPROTO_IP, IP_TOS, IPTOS_THROUGHPUT, OPT_ON},
106 #endif
107 #ifdef SO_REUSEPORT
108 {"SO_REUSEPORT", SOL_SOCKET, SO_REUSEPORT, 0, OPT_BOOL},
109 #endif
110 #ifdef SO_SNDBUF
111 {"SO_SNDBUF", SOL_SOCKET, SO_SNDBUF, 0, OPT_INT},
112 #endif
113 #ifdef SO_RCVBUF
114 {"SO_RCVBUF", SOL_SOCKET, SO_RCVBUF, 0, OPT_INT},
115 #endif
116 #ifdef SO_SNDLOWAT
117 {"SO_SNDLOWAT", SOL_SOCKET, SO_SNDLOWAT, 0, OPT_INT},
118 #endif
119 #ifdef SO_RCVLOWAT
120 {"SO_RCVLOWAT", SOL_SOCKET, SO_RCVLOWAT, 0, OPT_INT},
121 #endif
122 #ifdef SO_SNDTIMEO
123 {"SO_SNDTIMEO", SOL_SOCKET, SO_SNDTIMEO, 0, OPT_INT},
124 #endif
125 #ifdef SO_RCVTIMEO
126 {"SO_RCVTIMEO", SOL_SOCKET, SO_RCVTIMEO, 0, OPT_INT},
127 #endif
128 {NULL,0,0,0,0}};
130 /****************************************************************************
131 Print socket options.
132 ****************************************************************************/
134 static void print_socket_options(int s)
136 int value;
137 socklen_t vlen = 4;
138 const smb_socket_option *p = &socket_options[0];
140 /* wrapped in if statement to prevent streams leak in SCO Openserver 5.0 */
141 /* reported on samba-technical --jerry */
142 if ( DEBUGLEVEL >= 5 ) {
143 for (; p->name != NULL; p++) {
144 if (getsockopt(s, p->level, p->option, (void *)&value, &vlen) == -1) {
145 DEBUG(5,("Could not test socket option %s.\n", p->name));
146 } else {
147 DEBUG(5,("socket option %s = %d\n",p->name,value));
153 /****************************************************************************
154 Set user socket options.
155 ****************************************************************************/
157 void set_socket_options(int fd, const char *options)
159 fstring tok;
161 while (next_token(&options,tok," \t,", sizeof(tok))) {
162 int ret=0,i;
163 int value = 1;
164 char *p;
165 BOOL got_value = False;
167 if ((p = strchr_m(tok,'='))) {
168 *p = 0;
169 value = atoi(p+1);
170 got_value = True;
173 for (i=0;socket_options[i].name;i++)
174 if (strequal(socket_options[i].name,tok))
175 break;
177 if (!socket_options[i].name) {
178 DEBUG(0,("Unknown socket option %s\n",tok));
179 continue;
182 switch (socket_options[i].opttype) {
183 case OPT_BOOL:
184 case OPT_INT:
185 ret = setsockopt(fd,socket_options[i].level,
186 socket_options[i].option,(char *)&value,sizeof(int));
187 break;
189 case OPT_ON:
190 if (got_value)
191 DEBUG(0,("syntax error - %s does not take a value\n",tok));
194 int on = socket_options[i].value;
195 ret = setsockopt(fd,socket_options[i].level,
196 socket_options[i].option,(char *)&on,sizeof(int));
198 break;
201 if (ret != 0)
202 DEBUG(0,("Failed to set socket option %s (Error %s)\n",tok, strerror(errno) ));
205 print_socket_options(fd);
208 /****************************************************************************
209 Read from a socket.
210 ****************************************************************************/
212 ssize_t read_udp_socket(int fd,char *buf,size_t len)
214 ssize_t ret;
215 struct sockaddr_in sock;
216 socklen_t socklen = sizeof(sock);
218 memset((char *)&sock,'\0',socklen);
219 memset((char *)&lastip,'\0',sizeof(lastip));
220 ret = (ssize_t)sys_recvfrom(fd,buf,len,0,(struct sockaddr *)&sock,&socklen);
221 if (ret <= 0) {
222 DEBUG(2,("read socket failed. ERRNO=%s\n",strerror(errno)));
223 return(0);
226 lastip = sock.sin_addr;
227 lastport = ntohs(sock.sin_port);
229 DEBUG(10,("read_udp_socket: lastip %s lastport %d read: %lu\n",
230 inet_ntoa(lastip), lastport, (unsigned long)ret));
232 return(ret);
235 /****************************************************************************
236 Read data from a socket with a timout in msec.
237 mincount = if timeout, minimum to read before returning
238 maxcount = number to be read.
239 time_out = timeout in milliseconds
240 ****************************************************************************/
242 ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t maxcnt,unsigned int time_out)
244 fd_set fds;
245 int selrtn;
246 ssize_t readret;
247 size_t nread = 0;
248 struct timeval timeout;
250 /* just checking .... */
251 if (maxcnt <= 0)
252 return(0);
254 smb_read_error = 0;
256 /* Blocking read */
257 if (time_out <= 0) {
258 if (mincnt == 0) mincnt = maxcnt;
260 while (nread < mincnt) {
261 readret = sys_read(fd, buf + nread, maxcnt - nread);
263 if (readret == 0) {
264 DEBUG(5,("read_socket_with_timeout: blocking read. EOF from client.\n"));
265 smb_read_error = READ_EOF;
266 return -1;
269 if (readret == -1) {
270 DEBUG(0,("read_socket_with_timeout: read error = %s.\n", strerror(errno) ));
271 smb_read_error = READ_ERROR;
272 return -1;
274 nread += readret;
276 return((ssize_t)nread);
279 /* Most difficult - timeout read */
280 /* If this is ever called on a disk file and
281 mincnt is greater then the filesize then
282 system performance will suffer severely as
283 select always returns true on disk files */
285 /* Set initial timeout */
286 timeout.tv_sec = (time_t)(time_out / 1000);
287 timeout.tv_usec = (long)(1000 * (time_out % 1000));
289 for (nread=0; nread < mincnt; ) {
290 FD_ZERO(&fds);
291 FD_SET(fd,&fds);
293 selrtn = sys_select_intr(fd+1,&fds,NULL,NULL,&timeout);
295 /* Check if error */
296 if (selrtn == -1) {
297 /* something is wrong. Maybe the socket is dead? */
298 DEBUG(0,("read_socket_with_timeout: timeout read. select error = %s.\n", strerror(errno) ));
299 smb_read_error = READ_ERROR;
300 return -1;
303 /* Did we timeout ? */
304 if (selrtn == 0) {
305 DEBUG(10,("read_socket_with_timeout: timeout read. select timed out.\n"));
306 smb_read_error = READ_TIMEOUT;
307 return -1;
310 readret = sys_read(fd, buf+nread, maxcnt-nread);
312 if (readret == 0) {
313 /* we got EOF on the file descriptor */
314 DEBUG(5,("read_socket_with_timeout: timeout read. EOF from client.\n"));
315 smb_read_error = READ_EOF;
316 return -1;
319 if (readret == -1) {
320 /* the descriptor is probably dead */
321 DEBUG(0,("read_socket_with_timeout: timeout read. read error = %s.\n", strerror(errno) ));
322 smb_read_error = READ_ERROR;
323 return -1;
326 nread += readret;
329 /* Return the number we got */
330 return (ssize_t)nread;
333 /****************************************************************************
334 Read data from the client, reading exactly N bytes.
335 ****************************************************************************/
337 ssize_t read_data(int fd,char *buffer,size_t N)
339 ssize_t ret;
340 size_t total=0;
342 smb_read_error = 0;
344 while (total < N) {
345 ret = sys_read(fd,buffer + total,N - total);
347 if (ret == 0) {
348 DEBUG(10,("read_data: read of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
349 smb_read_error = READ_EOF;
350 return 0;
353 if (ret == -1) {
354 DEBUG(0,("read_data: read failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
355 smb_read_error = READ_ERROR;
356 return -1;
358 total += ret;
360 return (ssize_t)total;
363 /****************************************************************************
364 Read data from a socket, reading exactly N bytes.
365 ****************************************************************************/
367 static ssize_t read_socket_data(int fd,char *buffer,size_t N)
369 ssize_t ret;
370 size_t total=0;
372 smb_read_error = 0;
374 while (total < N) {
375 ret = sys_read(fd,buffer + total,N - total);
377 if (ret == 0) {
378 DEBUG(10,("read_socket_data: recv of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
379 smb_read_error = READ_EOF;
380 return 0;
383 if (ret == -1) {
384 DEBUG(0,("read_socket_data: recv failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
385 smb_read_error = READ_ERROR;
386 return -1;
388 total += ret;
390 return (ssize_t)total;
393 /****************************************************************************
394 Write data to a fd.
395 ****************************************************************************/
397 ssize_t write_data(int fd,char *buffer,size_t N)
399 size_t total=0;
400 ssize_t ret;
402 while (total < N) {
403 ret = sys_write(fd,buffer + total,N - total);
405 if (ret == -1) {
406 DEBUG(0,("write_data: write failure. Error = %s\n", strerror(errno) ));
407 return -1;
409 if (ret == 0)
410 return total;
412 total += ret;
414 return (ssize_t)total;
417 /****************************************************************************
418 Write data to a socket - use send rather than write.
419 ****************************************************************************/
421 static ssize_t write_socket_data(int fd,char *buffer,size_t N)
423 size_t total=0;
424 ssize_t ret;
426 while (total < N) {
427 ret = sys_send(fd,buffer + total,N - total,0);
429 if (ret == -1) {
430 DEBUG(0,("write_socket_data: write failure. Error = %s\n", strerror(errno) ));
431 return -1;
433 if (ret == 0)
434 return total;
436 total += ret;
438 return (ssize_t)total;
441 /****************************************************************************
442 Write to a socket.
443 ****************************************************************************/
445 ssize_t write_socket(int fd,char *buf,size_t len)
447 ssize_t ret=0;
449 DEBUG(6,("write_socket(%d,%d)\n",fd,(int)len));
450 ret = write_socket_data(fd,buf,len);
452 DEBUG(6,("write_socket(%d,%d) wrote %d\n",fd,(int)len,(int)ret));
453 if(ret <= 0)
454 DEBUG(0,("write_socket: Error writing %d bytes to socket %d: ERRNO = %s\n",
455 (int)len, fd, strerror(errno) ));
457 return(ret);
460 /****************************************************************************
461 Send a keepalive packet (rfc1002).
462 ****************************************************************************/
464 BOOL send_keepalive(int client)
466 unsigned char buf[4];
468 buf[0] = SMBkeepalive;
469 buf[1] = buf[2] = buf[3] = 0;
471 return(write_socket_data(client,(char *)buf,4) == 4);
475 /****************************************************************************
476 Read 4 bytes of a smb packet and return the smb length of the packet.
477 Store the result in the buffer.
478 This version of the function will return a length of zero on receiving
479 a keepalive packet.
480 Timeout is in milliseconds.
481 ****************************************************************************/
483 static ssize_t read_smb_length_return_keepalive(int fd,char *inbuf,unsigned int timeout)
485 ssize_t len=0;
486 int msg_type;
487 BOOL ok = False;
489 while (!ok) {
490 if (timeout > 0)
491 ok = (read_socket_with_timeout(fd,inbuf,4,4,timeout) == 4);
492 else
493 ok = (read_socket_data(fd,inbuf,4) == 4);
495 if (!ok)
496 return(-1);
498 len = smb_len(inbuf);
499 msg_type = CVAL(inbuf,0);
501 if (msg_type == SMBkeepalive)
502 DEBUG(5,("Got keepalive packet\n"));
505 DEBUG(10,("got smb length of %lu\n",(unsigned long)len));
507 return(len);
510 /****************************************************************************
511 Read 4 bytes of a smb packet and return the smb length of the packet.
512 Store the result in the buffer. This version of the function will
513 never return a session keepalive (length of zero).
514 Timeout is in milliseconds.
515 ****************************************************************************/
517 ssize_t read_smb_length(int fd,char *inbuf,unsigned int timeout)
519 ssize_t len;
521 for(;;) {
522 len = read_smb_length_return_keepalive(fd, inbuf, timeout);
524 if(len < 0)
525 return len;
527 /* Ignore session keepalives. */
528 if(CVAL(inbuf,0) != SMBkeepalive)
529 break;
532 DEBUG(10,("read_smb_length: got smb length of %lu\n",
533 (unsigned long)len));
535 return len;
538 /****************************************************************************
539 Read an smb from a fd. Note that the buffer *MUST* be of size
540 BUFFER_SIZE+SAFETY_MARGIN.
541 The timeout is in milliseconds.
542 This function will return on receipt of a session keepalive packet.
543 Doesn't check the MAC on signed packets.
544 ****************************************************************************/
546 BOOL receive_smb_raw(int fd,char *buffer, unsigned int timeout)
548 ssize_t len,ret;
550 smb_read_error = 0;
552 memset(buffer,'\0',smb_size + 100);
554 len = read_smb_length_return_keepalive(fd,buffer,timeout);
555 if (len < 0) {
556 DEBUG(10,("receive_smb_raw: length < 0!\n"));
559 * Correct fix. smb_read_error may have already been
560 * set. Only set it here if not already set. Global
561 * variables still suck :-). JRA.
564 if (smb_read_error == 0)
565 smb_read_error = READ_ERROR;
566 return False;
570 * A WRITEX with CAP_LARGE_WRITEX can be 64k worth of data plus 65 bytes
571 * of header. Don't print the error if this fits.... JRA.
574 if (len > (BUFFER_SIZE + LARGE_WRITEX_HDR_SIZE)) {
575 DEBUG(0,("Invalid packet length! (%lu bytes).\n",(unsigned long)len));
576 if (len > BUFFER_SIZE + (SAFETY_MARGIN/2)) {
579 * Correct fix. smb_read_error may have already been
580 * set. Only set it here if not already set. Global
581 * variables still suck :-). JRA.
584 if (smb_read_error == 0)
585 smb_read_error = READ_ERROR;
586 return False;
590 if(len > 0) {
591 ret = read_socket_data(fd,buffer+4,len);
592 if (ret != len) {
593 if (smb_read_error == 0)
594 smb_read_error = READ_ERROR;
595 return False;
598 /* not all of samba3 properly checks for packet-termination of strings. This
599 ensures that we don't run off into empty space. */
600 SSVAL(buffer+4,len, 0);
603 return True;
606 /****************************************************************************
607 Wrapper for receive_smb_raw().
608 Checks the MAC on signed packets.
609 ****************************************************************************/
611 BOOL receive_smb(int fd,char *buffer, unsigned int timeout)
613 if (!receive_smb_raw(fd, buffer, timeout)) {
614 return False;
617 /* Check the incoming SMB signature. */
618 if (!srv_check_sign_mac(buffer, True)) {
619 DEBUG(0, ("receive_smb: SMB Signature verification failed on incoming packet!\n"));
620 if (smb_read_error == 0)
621 smb_read_error = READ_BAD_SIG;
622 return False;
625 return(True);
628 /****************************************************************************
629 Send an smb to a fd.
630 ****************************************************************************/
632 BOOL send_smb(int fd,char *buffer)
634 size_t len;
635 size_t nwritten=0;
636 ssize_t ret;
638 /* Sign the outgoing packet if required. */
639 srv_calculate_sign_mac(buffer);
641 len = smb_len(buffer) + 4;
643 while (nwritten < len) {
644 ret = write_socket(fd,buffer+nwritten,len - nwritten);
645 if (ret <= 0) {
646 DEBUG(0,("Error writing %d bytes to client. %d. (%s)\n",
647 (int)len,(int)ret, strerror(errno) ));
648 return False;
650 nwritten += ret;
653 return True;
656 /****************************************************************************
657 Open a socket of the specified type, port, and address for incoming data.
658 ****************************************************************************/
660 int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL rebind )
662 struct sockaddr_in sock;
663 int res;
665 memset( (char *)&sock, '\0', sizeof(sock) );
667 #ifdef HAVE_SOCK_SIN_LEN
668 sock.sin_len = sizeof(sock);
669 #endif
670 sock.sin_port = htons( port );
671 sock.sin_family = AF_INET;
672 sock.sin_addr.s_addr = socket_addr;
674 res = socket( AF_INET, type, 0 );
675 if( res == -1 ) {
676 if( DEBUGLVL(0) ) {
677 dbgtext( "open_socket_in(): socket() call failed: " );
678 dbgtext( "%s\n", strerror( errno ) );
680 return -1;
683 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
685 int val = rebind ? 1 : 0;
686 if( setsockopt(res,SOL_SOCKET,SO_REUSEADDR,(char *)&val,sizeof(val)) == -1 ) {
687 if( DEBUGLVL( dlevel ) ) {
688 dbgtext( "open_socket_in(): setsockopt: " );
689 dbgtext( "SO_REUSEADDR = %s ", val?"True":"False" );
690 dbgtext( "on port %d failed ", port );
691 dbgtext( "with error = %s\n", strerror(errno) );
694 #ifdef SO_REUSEPORT
695 if( setsockopt(res,SOL_SOCKET,SO_REUSEPORT,(char *)&val,sizeof(val)) == -1 ) {
696 if( DEBUGLVL( dlevel ) ) {
697 dbgtext( "open_socket_in(): setsockopt: ");
698 dbgtext( "SO_REUSEPORT = %s ", val?"True":"False" );
699 dbgtext( "on port %d failed ", port );
700 dbgtext( "with error = %s\n", strerror(errno) );
703 #endif /* SO_REUSEPORT */
706 /* now we've got a socket - we need to bind it */
707 if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) == -1 ) {
708 if( DEBUGLVL(dlevel) && (port == SMB_PORT1 || port == SMB_PORT2 || port == NMB_PORT) ) {
709 dbgtext( "bind failed on port %d ", port );
710 dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
711 dbgtext( "Error = %s\n", strerror(errno) );
713 close( res );
714 return( -1 );
717 DEBUG( 10, ( "bind succeeded on port %d\n", port ) );
719 return( res );
722 /****************************************************************************
723 Create an outgoing socket. timeout is in milliseconds.
724 **************************************************************************/
726 int open_socket_out(int type, struct in_addr *addr, int port ,int timeout)
728 struct sockaddr_in sock_out;
729 int res,ret;
730 int connect_loop = 10;
731 int increment = 10;
733 /* create a socket to write to */
734 res = socket(PF_INET, type, 0);
735 if (res == -1) {
736 DEBUG(0,("socket error (%s)\n", strerror(errno)));
737 return -1;
740 if (type != SOCK_STREAM)
741 return(res);
743 memset((char *)&sock_out,'\0',sizeof(sock_out));
744 putip((char *)&sock_out.sin_addr,(char *)addr);
746 sock_out.sin_port = htons( port );
747 sock_out.sin_family = PF_INET;
749 /* set it non-blocking */
750 set_blocking(res,False);
752 DEBUG(3,("Connecting to %s at port %d\n",inet_ntoa(*addr),port));
754 /* and connect it to the destination */
755 connect_again:
757 ret = connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out));
759 /* Some systems return EAGAIN when they mean EINPROGRESS */
760 if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
761 errno == EAGAIN) && (connect_loop < timeout) ) {
762 smb_msleep(connect_loop);
763 timeout -= connect_loop;
764 connect_loop += increment;
765 if (increment < 250) {
766 /* After 8 rounds we end up at a max of 255 msec */
767 increment *= 1.5;
769 goto connect_again;
772 if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
773 errno == EAGAIN)) {
774 DEBUG(1,("timeout connecting to %s:%d\n",inet_ntoa(*addr),port));
775 close(res);
776 return -1;
779 #ifdef EISCONN
781 if (ret < 0 && errno == EISCONN) {
782 errno = 0;
783 ret = 0;
785 #endif
787 if (ret < 0) {
788 DEBUG(2,("error connecting to %s:%d (%s)\n",
789 inet_ntoa(*addr),port,strerror(errno)));
790 close(res);
791 return -1;
794 /* set it blocking again */
795 set_blocking(res,True);
797 return res;
800 /****************************************************************************
801 Create an outgoing TCP socket to any of the addrs. This is for
802 simultaneous connects to port 445 and 139 of a host or even a variety
803 of DC's all of which are equivalent for our purposes.
804 **************************************************************************/
806 BOOL open_any_socket_out(struct sockaddr_in *addrs, int num_addrs,
807 int timeout, int *fd_index, int *fd)
809 int i, resulting_index, res;
810 int *sockets;
811 BOOL good_connect;
813 fd_set r_fds, wr_fds;
814 struct timeval tv;
815 int maxfd;
817 int connect_loop = 10000; /* 10 milliseconds */
819 timeout *= 1000; /* convert to microseconds */
821 sockets = SMB_MALLOC_ARRAY(int, num_addrs);
823 if (sockets == NULL)
824 return False;
826 resulting_index = -1;
828 for (i=0; i<num_addrs; i++)
829 sockets[i] = -1;
831 for (i=0; i<num_addrs; i++) {
832 sockets[i] = socket(PF_INET, SOCK_STREAM, 0);
833 if (sockets[i] < 0)
834 goto done;
835 set_blocking(sockets[i], False);
838 connect_again:
839 good_connect = False;
841 for (i=0; i<num_addrs; i++) {
843 if (sockets[i] == -1)
844 continue;
846 if (connect(sockets[i], (struct sockaddr *)&(addrs[i]),
847 sizeof(*addrs)) == 0) {
848 /* Rather unlikely as we are non-blocking, but it
849 * might actually happen. */
850 resulting_index = i;
851 goto done;
854 if (errno == EINPROGRESS || errno == EALREADY ||
855 errno == EAGAIN) {
856 /* These are the error messages that something is
857 progressing. */
858 good_connect = True;
859 } else if (errno != 0) {
860 /* There was a direct error */
861 close(sockets[i]);
862 sockets[i] = -1;
866 if (!good_connect) {
867 /* All of the connect's resulted in real error conditions */
868 goto done;
871 /* Lets see if any of the connect attempts succeeded */
873 maxfd = 0;
874 FD_ZERO(&wr_fds);
875 FD_ZERO(&r_fds);
877 for (i=0; i<num_addrs; i++) {
878 if (sockets[i] == -1)
879 continue;
880 FD_SET(sockets[i], &wr_fds);
881 FD_SET(sockets[i], &r_fds);
882 if (sockets[i]>maxfd)
883 maxfd = sockets[i];
886 tv.tv_sec = 0;
887 tv.tv_usec = connect_loop;
889 res = sys_select(maxfd+1, &r_fds, &wr_fds, NULL, &tv);
891 if (res < 0)
892 goto done;
894 if (res == 0)
895 goto next_round;
897 for (i=0; i<num_addrs; i++) {
899 if (sockets[i] == -1)
900 continue;
902 /* Stevens, Network Programming says that if there's a
903 * successful connect, the socket is only writable. Upon an
904 * error, it's both readable and writable. */
906 if (FD_ISSET(sockets[i], &r_fds) &&
907 FD_ISSET(sockets[i], &wr_fds)) {
908 /* readable and writable, so it's an error */
909 close(sockets[i]);
910 sockets[i] = -1;
911 continue;
914 if (!FD_ISSET(sockets[i], &r_fds) &&
915 FD_ISSET(sockets[i], &wr_fds)) {
916 /* Only writable, so it's connected */
917 resulting_index = i;
918 goto done;
922 next_round:
924 timeout -= connect_loop;
925 if (timeout <= 0)
926 goto done;
927 connect_loop *= 1.5;
928 if (connect_loop > timeout)
929 connect_loop = timeout;
930 goto connect_again;
932 done:
933 for (i=0; i<num_addrs; i++) {
934 if (i == resulting_index)
935 continue;
936 if (sockets[i] >= 0)
937 close(sockets[i]);
940 if (resulting_index >= 0) {
941 *fd_index = resulting_index;
942 *fd = sockets[*fd_index];
943 set_blocking(*fd, True);
946 free(sockets);
948 return (resulting_index >= 0);
950 /****************************************************************************
951 Open a connected UDP socket to host on port
952 **************************************************************************/
954 int open_udp_socket(const char *host, int port)
956 int type = SOCK_DGRAM;
957 struct sockaddr_in sock_out;
958 int res;
959 struct in_addr *addr;
961 addr = interpret_addr2(host);
963 res = socket(PF_INET, type, 0);
964 if (res == -1) {
965 return -1;
968 memset((char *)&sock_out,'\0',sizeof(sock_out));
969 putip((char *)&sock_out.sin_addr,(char *)addr);
970 sock_out.sin_port = htons(port);
971 sock_out.sin_family = PF_INET;
973 if (connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out))) {
974 close(res);
975 return -1;
978 return res;
982 /* the following 3 client_*() functions are nasty ways of allowing
983 some generic functions to get info that really should be hidden in
984 particular modules */
985 static int client_fd = -1;
987 void client_setfd(int fd)
989 client_fd = fd;
992 char *client_name(void)
994 return get_peer_name(client_fd,False);
997 char *client_addr(void)
999 return get_peer_addr(client_fd);
1002 char *client_socket_addr(void)
1004 return get_socket_addr(client_fd);
1007 int client_socket_port(void)
1009 return get_socket_port(client_fd);
1012 struct in_addr *client_inaddr(struct sockaddr *sa)
1014 struct sockaddr_in *sockin = (struct sockaddr_in *) (sa);
1015 socklen_t length = sizeof(*sa);
1017 if (getpeername(client_fd, sa, &length) < 0) {
1018 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
1019 return NULL;
1022 return &sockin->sin_addr;
1025 /*******************************************************************
1026 Matchname - determine if host name matches IP address. Used to
1027 confirm a hostname lookup to prevent spoof attacks.
1028 ******************************************************************/
1030 static BOOL matchname(char *remotehost,struct in_addr addr)
1032 struct hostent *hp;
1033 int i;
1035 if ((hp = sys_gethostbyname(remotehost)) == 0) {
1036 DEBUG(0,("sys_gethostbyname(%s): lookup failure.\n", remotehost));
1037 return False;
1041 * Make sure that gethostbyname() returns the "correct" host name.
1042 * Unfortunately, gethostbyname("localhost") sometimes yields
1043 * "localhost.domain". Since the latter host name comes from the
1044 * local DNS, we just have to trust it (all bets are off if the local
1045 * DNS is perverted). We always check the address list, though.
1048 if (!strequal(remotehost, hp->h_name)
1049 && !strequal(remotehost, "localhost")) {
1050 DEBUG(0,("host name/name mismatch: %s != %s\n",
1051 remotehost, hp->h_name));
1052 return False;
1055 /* Look up the host address in the address list we just got. */
1056 for (i = 0; hp->h_addr_list[i]; i++) {
1057 if (memcmp(hp->h_addr_list[i], (char *) & addr, sizeof(addr)) == 0)
1058 return True;
1062 * The host name does not map to the original host address. Perhaps
1063 * someone has compromised a name server. More likely someone botched
1064 * it, but that could be dangerous, too.
1067 DEBUG(0,("host name/address mismatch: %s != %s\n",
1068 inet_ntoa(addr), hp->h_name));
1069 return False;
1072 /*******************************************************************
1073 Return the DNS name of the remote end of a socket.
1074 ******************************************************************/
1076 char *get_peer_name(int fd, BOOL force_lookup)
1078 static pstring name_buf;
1079 pstring tmp_name;
1080 static fstring addr_buf;
1081 struct hostent *hp;
1082 struct in_addr addr;
1083 char *p;
1085 /* reverse lookups can be *very* expensive, and in many
1086 situations won't work because many networks don't link dhcp
1087 with dns. To avoid the delay we avoid the lookup if
1088 possible */
1089 if (!lp_hostname_lookups() && (force_lookup == False)) {
1090 return get_peer_addr(fd);
1093 p = get_peer_addr(fd);
1095 /* it might be the same as the last one - save some DNS work */
1096 if (strcmp(p, addr_buf) == 0)
1097 return name_buf;
1099 pstrcpy(name_buf,"UNKNOWN");
1100 if (fd == -1)
1101 return name_buf;
1103 fstrcpy(addr_buf, p);
1105 addr = *interpret_addr2(p);
1107 /* Look up the remote host name. */
1108 if ((hp = gethostbyaddr((char *)&addr.s_addr, sizeof(addr.s_addr), AF_INET)) == 0) {
1109 DEBUG(1,("Gethostbyaddr failed for %s\n",p));
1110 pstrcpy(name_buf, p);
1111 } else {
1112 pstrcpy(name_buf,(char *)hp->h_name);
1113 if (!matchname(name_buf, addr)) {
1114 DEBUG(0,("Matchname failed on %s %s\n",name_buf,p));
1115 pstrcpy(name_buf,"UNKNOWN");
1119 /* can't pass the same source and dest strings in when you
1120 use --enable-developer or the clobber_region() call will
1121 get you */
1123 pstrcpy( tmp_name, name_buf );
1124 alpha_strcpy(name_buf, tmp_name, "_-.", sizeof(name_buf));
1125 if (strstr(name_buf,"..")) {
1126 pstrcpy(name_buf, "UNKNOWN");
1129 return name_buf;
1132 /*******************************************************************
1133 Return the IP addr of the remote end of a socket as a string.
1134 ******************************************************************/
1136 char *get_peer_addr(int fd)
1138 struct sockaddr sa;
1139 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
1140 socklen_t length = sizeof(sa);
1141 static fstring addr_buf;
1143 fstrcpy(addr_buf,"0.0.0.0");
1145 if (fd == -1) {
1146 return addr_buf;
1149 if (getpeername(fd, &sa, &length) < 0) {
1150 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
1151 return addr_buf;
1154 fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
1156 return addr_buf;
1159 /*******************************************************************
1160 Create protected unix domain socket.
1162 Some unixes cannot set permissions on a ux-dom-sock, so we
1163 have to make sure that the directory contains the protection
1164 permissions instead.
1165 ******************************************************************/
1167 int create_pipe_sock(const char *socket_dir,
1168 const char *socket_name,
1169 mode_t dir_perms)
1171 #ifdef HAVE_UNIXSOCKET
1172 struct sockaddr_un sunaddr;
1173 struct stat st;
1174 int sock;
1175 mode_t old_umask;
1176 pstring path;
1178 old_umask = umask(0);
1180 /* Create the socket directory or reuse the existing one */
1182 if (lstat(socket_dir, &st) == -1) {
1183 if (errno == ENOENT) {
1184 /* Create directory */
1185 if (mkdir(socket_dir, dir_perms) == -1) {
1186 DEBUG(0, ("error creating socket directory "
1187 "%s: %s\n", socket_dir,
1188 strerror(errno)));
1189 goto out_umask;
1191 } else {
1192 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1193 socket_dir, strerror(errno)));
1194 goto out_umask;
1196 } else {
1197 /* Check ownership and permission on existing directory */
1198 if (!S_ISDIR(st.st_mode)) {
1199 DEBUG(0, ("socket directory %s isn't a directory\n",
1200 socket_dir));
1201 goto out_umask;
1203 if ((st.st_uid != sec_initial_uid()) ||
1204 ((st.st_mode & 0777) != dir_perms)) {
1205 DEBUG(0, ("invalid permissions on socket directory "
1206 "%s\n", socket_dir));
1207 goto out_umask;
1211 /* Create the socket file */
1213 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1215 if (sock == -1) {
1216 perror("socket");
1217 goto out_umask;
1220 pstr_sprintf(path, "%s/%s", socket_dir, socket_name);
1222 unlink(path);
1223 memset(&sunaddr, 0, sizeof(sunaddr));
1224 sunaddr.sun_family = AF_UNIX;
1225 safe_strcpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path)-1);
1227 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1) {
1228 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path,
1229 strerror(errno)));
1230 goto out_close;
1233 if (listen(sock, 5) == -1) {
1234 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path,
1235 strerror(errno)));
1236 goto out_close;
1239 umask(old_umask);
1240 return sock;
1242 out_close:
1243 close(sock);
1245 out_umask:
1246 umask(old_umask);
1247 return -1;
1249 #else
1250 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1251 return -1;
1252 #endif /* HAVE_UNIXSOCKET */