r9998: starting content for maintainers file
[Samba.git] / source / lib / util_sock.c
blob6562dae952b4f05f90719349d351a410943cc870
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 Copyright (C) Jeremy Allison 1992-2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
25 /* the following 3 client_*() functions are nasty ways of allowing
26 some generic functions to get info that really should be hidden in
27 particular modules */
28 static int client_fd = -1;
29 /* What to print out on a client disconnect error. */
30 static char client_ip_string[16];
32 void client_setfd(int fd)
34 client_fd = fd;
35 safe_strcpy(client_ip_string, get_peer_addr(client_fd), sizeof(client_ip_string)-1);
38 static char *get_socket_addr(int fd)
40 struct sockaddr sa;
41 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
42 socklen_t length = sizeof(sa);
43 static fstring addr_buf;
45 fstrcpy(addr_buf,"0.0.0.0");
47 if (fd == -1) {
48 return addr_buf;
51 if (getsockname(fd, &sa, &length) < 0) {
52 DEBUG(0,("getsockname failed. Error was %s\n", strerror(errno) ));
53 return addr_buf;
56 fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
58 return addr_buf;
61 static int get_socket_port(int fd)
63 struct sockaddr sa;
64 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
65 socklen_t length = sizeof(sa);
67 if (fd == -1)
68 return -1;
70 if (getsockname(fd, &sa, &length) < 0) {
71 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
72 return -1;
75 return ntohs(sockin->sin_port);
78 char *client_name(void)
80 return get_peer_name(client_fd,False);
83 char *client_addr(void)
85 return get_peer_addr(client_fd);
88 char *client_socket_addr(void)
90 return get_socket_addr(client_fd);
93 int client_socket_port(void)
95 return get_socket_port(client_fd);
98 struct in_addr *client_inaddr(struct sockaddr *sa)
100 struct sockaddr_in *sockin = (struct sockaddr_in *) (sa);
101 socklen_t length = sizeof(*sa);
103 if (getpeername(client_fd, sa, &length) < 0) {
104 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
105 return NULL;
108 return &sockin->sin_addr;
111 /* the last IP received from */
112 struct in_addr lastip;
114 /* the last port received from */
115 int lastport=0;
117 int smb_read_error = 0;
119 /****************************************************************************
120 Determine if a file descriptor is in fact a socket.
121 ****************************************************************************/
123 BOOL is_a_socket(int fd)
125 int v;
126 socklen_t l;
127 l = sizeof(int);
128 return(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0);
131 enum SOCK_OPT_TYPES {OPT_BOOL,OPT_INT,OPT_ON};
133 typedef struct smb_socket_option {
134 const char *name;
135 int level;
136 int option;
137 int value;
138 int opttype;
139 } smb_socket_option;
141 static const smb_socket_option socket_options[] = {
142 {"SO_KEEPALIVE", SOL_SOCKET, SO_KEEPALIVE, 0, OPT_BOOL},
143 {"SO_REUSEADDR", SOL_SOCKET, SO_REUSEADDR, 0, OPT_BOOL},
144 {"SO_BROADCAST", SOL_SOCKET, SO_BROADCAST, 0, OPT_BOOL},
145 #ifdef TCP_NODELAY
146 {"TCP_NODELAY", IPPROTO_TCP, TCP_NODELAY, 0, OPT_BOOL},
147 #endif
148 #ifdef TCP_KEEPCNT
149 {"TCP_KEEPCNT", IPPROTO_TCP, TCP_KEEPCNT, 0, OPT_INT},
150 #endif
151 #ifdef TCP_KEEPIDLE
152 {"TCP_KEEPIDLE", IPPROTO_TCP, TCP_KEEPIDLE, 0, OPT_INT},
153 #endif
154 #ifdef TCP_KEEPINTVL
155 {"TCP_KEEPINTVL", IPPROTO_TCP, TCP_KEEPINTVL, 0, OPT_INT},
156 #endif
157 #ifdef IPTOS_LOWDELAY
158 {"IPTOS_LOWDELAY", IPPROTO_IP, IP_TOS, IPTOS_LOWDELAY, OPT_ON},
159 #endif
160 #ifdef IPTOS_THROUGHPUT
161 {"IPTOS_THROUGHPUT", IPPROTO_IP, IP_TOS, IPTOS_THROUGHPUT, OPT_ON},
162 #endif
163 #ifdef SO_REUSEPORT
164 {"SO_REUSEPORT", SOL_SOCKET, SO_REUSEPORT, 0, OPT_BOOL},
165 #endif
166 #ifdef SO_SNDBUF
167 {"SO_SNDBUF", SOL_SOCKET, SO_SNDBUF, 0, OPT_INT},
168 #endif
169 #ifdef SO_RCVBUF
170 {"SO_RCVBUF", SOL_SOCKET, SO_RCVBUF, 0, OPT_INT},
171 #endif
172 #ifdef SO_SNDLOWAT
173 {"SO_SNDLOWAT", SOL_SOCKET, SO_SNDLOWAT, 0, OPT_INT},
174 #endif
175 #ifdef SO_RCVLOWAT
176 {"SO_RCVLOWAT", SOL_SOCKET, SO_RCVLOWAT, 0, OPT_INT},
177 #endif
178 #ifdef SO_SNDTIMEO
179 {"SO_SNDTIMEO", SOL_SOCKET, SO_SNDTIMEO, 0, OPT_INT},
180 #endif
181 #ifdef SO_RCVTIMEO
182 {"SO_RCVTIMEO", SOL_SOCKET, SO_RCVTIMEO, 0, OPT_INT},
183 #endif
184 {NULL,0,0,0,0}};
186 /****************************************************************************
187 Print socket options.
188 ****************************************************************************/
190 static void print_socket_options(int s)
192 int value;
193 socklen_t vlen = 4;
194 const smb_socket_option *p = &socket_options[0];
196 /* wrapped in if statement to prevent streams leak in SCO Openserver 5.0 */
197 /* reported on samba-technical --jerry */
198 if ( DEBUGLEVEL >= 5 ) {
199 for (; p->name != NULL; p++) {
200 if (getsockopt(s, p->level, p->option, (void *)&value, &vlen) == -1) {
201 DEBUG(5,("Could not test socket option %s.\n", p->name));
202 } else {
203 DEBUG(5,("socket option %s = %d\n",p->name,value));
209 /****************************************************************************
210 Set user socket options.
211 ****************************************************************************/
213 void set_socket_options(int fd, const char *options)
215 fstring tok;
217 while (next_token(&options,tok," \t,", sizeof(tok))) {
218 int ret=0,i;
219 int value = 1;
220 char *p;
221 BOOL got_value = False;
223 if ((p = strchr_m(tok,'='))) {
224 *p = 0;
225 value = atoi(p+1);
226 got_value = True;
229 for (i=0;socket_options[i].name;i++)
230 if (strequal(socket_options[i].name,tok))
231 break;
233 if (!socket_options[i].name) {
234 DEBUG(0,("Unknown socket option %s\n",tok));
235 continue;
238 switch (socket_options[i].opttype) {
239 case OPT_BOOL:
240 case OPT_INT:
241 ret = setsockopt(fd,socket_options[i].level,
242 socket_options[i].option,(char *)&value,sizeof(int));
243 break;
245 case OPT_ON:
246 if (got_value)
247 DEBUG(0,("syntax error - %s does not take a value\n",tok));
250 int on = socket_options[i].value;
251 ret = setsockopt(fd,socket_options[i].level,
252 socket_options[i].option,(char *)&on,sizeof(int));
254 break;
257 if (ret != 0)
258 DEBUG(0,("Failed to set socket option %s (Error %s)\n",tok, strerror(errno) ));
261 print_socket_options(fd);
264 /****************************************************************************
265 Read from a socket.
266 ****************************************************************************/
268 ssize_t read_udp_socket(int fd,char *buf,size_t len)
270 ssize_t ret;
271 struct sockaddr_in sock;
272 socklen_t socklen = sizeof(sock);
274 memset((char *)&sock,'\0',socklen);
275 memset((char *)&lastip,'\0',sizeof(lastip));
276 ret = (ssize_t)sys_recvfrom(fd,buf,len,0,(struct sockaddr *)&sock,&socklen);
277 if (ret <= 0) {
278 DEBUG(2,("read socket failed. ERRNO=%s\n",strerror(errno)));
279 return(0);
282 lastip = sock.sin_addr;
283 lastport = ntohs(sock.sin_port);
285 DEBUG(10,("read_udp_socket: lastip %s lastport %d read: %lu\n",
286 inet_ntoa(lastip), lastport, (unsigned long)ret));
288 return(ret);
291 #if 0
293 Socket routines from HEAD - maybe re-enable in future. JRA.
295 /****************************************************************************
296 Work out if we've timed out.
297 ****************************************************************************/
299 static BOOL timeout_until(struct timeval *timeout, const struct timeval *endtime)
301 struct timeval now;
302 SMB_BIG_INT t_dif;
304 GetTimeOfDay(&now);
306 t_dif = usec_time_diff(endtime, &now);
307 if (t_dif <= 0) {
308 return False;
311 timeout->tv_sec = (t_dif / (SMB_BIG_INT)1000000);
312 timeout->tv_usec = (t_dif % (SMB_BIG_INT)1000000);
313 return True;
316 /****************************************************************************
317 Read data from the client, reading exactly N bytes, or until endtime timeout.
318 Use with a non-blocking socket if endtime != NULL.
319 ****************************************************************************/
321 ssize_t read_data_until(int fd,char *buffer,size_t N, const struct timeval *endtime)
323 ssize_t ret;
324 size_t total=0;
326 smb_read_error = 0;
328 while (total < N) {
330 if (endtime != NULL) {
331 fd_set r_fds;
332 struct timeval timeout;
333 int selrtn;
335 if (!timeout_until(&timeout, endtime)) {
336 DEBUG(10,("read_data_until: read timed out\n"));
337 smb_read_error = READ_TIMEOUT;
338 return -1;
341 FD_ZERO(&r_fds);
342 FD_SET(fd, &r_fds);
344 /* Select but ignore EINTR. */
345 selrtn = sys_select_intr(fd+1, &r_fds, NULL, NULL, &timeout);
346 if (selrtn == -1) {
347 /* something is wrong. Maybe the socket is dead? */
348 DEBUG(0,("read_data_until: select error = %s.\n", strerror(errno) ));
349 smb_read_error = READ_ERROR;
350 return -1;
353 /* Did we timeout ? */
354 if (selrtn == 0) {
355 DEBUG(10,("read_data_until: select timed out.\n"));
356 smb_read_error = READ_TIMEOUT;
357 return -1;
361 ret = sys_read(fd,buffer + total,N - total);
363 if (ret == 0) {
364 DEBUG(10,("read_data_until: read of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
365 smb_read_error = READ_EOF;
366 return 0;
369 if (ret == -1) {
370 if (errno == EAGAIN) {
371 /* Non-blocking socket with no data available. Try select again. */
372 continue;
374 DEBUG(0,("read_data_until: read failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
375 smb_read_error = READ_ERROR;
376 return -1;
378 total += ret;
380 return (ssize_t)total;
382 #endif
384 /****************************************************************************
385 Read data from a socket with a timout in msec.
386 mincount = if timeout, minimum to read before returning
387 maxcount = number to be read.
388 time_out = timeout in milliseconds
389 ****************************************************************************/
391 ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t maxcnt,unsigned int time_out)
393 fd_set fds;
394 int selrtn;
395 ssize_t readret;
396 size_t nread = 0;
397 struct timeval timeout;
399 /* just checking .... */
400 if (maxcnt <= 0)
401 return(0);
403 smb_read_error = 0;
405 /* Blocking read */
406 if (time_out == 0) {
407 if (mincnt == 0) {
408 mincnt = maxcnt;
411 while (nread < mincnt) {
412 readret = sys_read(fd, buf + nread, maxcnt - nread);
414 if (readret == 0) {
415 DEBUG(5,("read_socket_with_timeout: blocking read. EOF from client.\n"));
416 smb_read_error = READ_EOF;
417 return -1;
420 if (readret == -1) {
421 if (fd == client_fd) {
422 /* Try and give an error message saying what client failed. */
423 DEBUG(0,("read_socket_with_timeout: client %s read error = %s.\n",
424 client_ip_string, strerror(errno) ));
425 } else {
426 DEBUG(0,("read_socket_with_timeout: read error = %s.\n", strerror(errno) ));
428 smb_read_error = READ_ERROR;
429 return -1;
431 nread += readret;
433 return((ssize_t)nread);
436 /* Most difficult - timeout read */
437 /* If this is ever called on a disk file and
438 mincnt is greater then the filesize then
439 system performance will suffer severely as
440 select always returns true on disk files */
442 /* Set initial timeout */
443 timeout.tv_sec = (time_t)(time_out / 1000);
444 timeout.tv_usec = (long)(1000 * (time_out % 1000));
446 for (nread=0; nread < mincnt; ) {
447 FD_ZERO(&fds);
448 FD_SET(fd,&fds);
450 selrtn = sys_select_intr(fd+1,&fds,NULL,NULL,&timeout);
452 /* Check if error */
453 if (selrtn == -1) {
454 /* something is wrong. Maybe the socket is dead? */
455 if (fd == client_fd) {
456 /* Try and give an error message saying what client failed. */
457 DEBUG(0,("read_socket_with_timeout: timeout read for client %s. select error = %s.\n",
458 client_ip_string, strerror(errno) ));
459 } else {
460 DEBUG(0,("read_socket_with_timeout: timeout read. select error = %s.\n", strerror(errno) ));
462 smb_read_error = READ_ERROR;
463 return -1;
466 /* Did we timeout ? */
467 if (selrtn == 0) {
468 DEBUG(10,("read_socket_with_timeout: timeout read. select timed out.\n"));
469 smb_read_error = READ_TIMEOUT;
470 return -1;
473 readret = sys_read(fd, buf+nread, maxcnt-nread);
475 if (readret == 0) {
476 /* we got EOF on the file descriptor */
477 DEBUG(5,("read_socket_with_timeout: timeout read. EOF from client.\n"));
478 smb_read_error = READ_EOF;
479 return -1;
482 if (readret == -1) {
483 /* the descriptor is probably dead */
484 if (fd == client_fd) {
485 /* Try and give an error message saying what client failed. */
486 DEBUG(0,("read_socket_with_timeout: timeout read to client %s. read error = %s.\n",
487 client_ip_string, strerror(errno) ));
488 } else {
489 DEBUG(0,("read_socket_with_timeout: timeout read. read error = %s.\n", strerror(errno) ));
491 smb_read_error = READ_ERROR;
492 return -1;
495 nread += readret;
498 /* Return the number we got */
499 return (ssize_t)nread;
502 /****************************************************************************
503 Read data from the client, reading exactly N bytes.
504 ****************************************************************************/
506 ssize_t read_data(int fd,char *buffer,size_t N)
508 ssize_t ret;
509 size_t total=0;
511 smb_read_error = 0;
513 while (total < N) {
514 ret = sys_read(fd,buffer + total,N - total);
516 if (ret == 0) {
517 DEBUG(10,("read_data: read of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
518 smb_read_error = READ_EOF;
519 return 0;
522 if (ret == -1) {
523 if (fd == client_fd) {
524 /* Try and give an error message saying what client failed. */
525 DEBUG(0,("read_data: read failure for %d bytes to client %s. Error = %s\n",
526 (int)(N - total), client_ip_string, strerror(errno) ));
527 } else {
528 DEBUG(0,("read_data: read failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
530 smb_read_error = READ_ERROR;
531 return -1;
533 total += ret;
535 return (ssize_t)total;
538 /****************************************************************************
539 Write data to a fd.
540 ****************************************************************************/
542 ssize_t write_data(int fd, const char *buffer, size_t N)
544 size_t total=0;
545 ssize_t ret;
547 while (total < N) {
548 ret = sys_write(fd,buffer + total,N - total);
550 if (ret == -1) {
551 if (fd == client_fd) {
552 /* Try and give an error message saying what client failed. */
553 DEBUG(0,("write_data: write failure in writing to client %s. Error %s\n",
554 client_ip_string, strerror(errno) ));
555 } else {
556 DEBUG(0,("write_data: write failure. Error = %s\n", strerror(errno) ));
558 return -1;
561 if (ret == 0) {
562 return total;
565 total += ret;
567 return (ssize_t)total;
570 /****************************************************************************
571 Send a keepalive packet (rfc1002).
572 ****************************************************************************/
574 BOOL send_keepalive(int client)
576 unsigned char buf[4];
578 buf[0] = SMBkeepalive;
579 buf[1] = buf[2] = buf[3] = 0;
581 return(write_data(client,(char *)buf,4) == 4);
585 /****************************************************************************
586 Read 4 bytes of a smb packet and return the smb length of the packet.
587 Store the result in the buffer.
588 This version of the function will return a length of zero on receiving
589 a keepalive packet.
590 Timeout is in milliseconds.
591 ****************************************************************************/
593 static ssize_t read_smb_length_return_keepalive(int fd, char *inbuf, unsigned int timeout)
595 ssize_t len=0;
596 int msg_type;
597 BOOL ok = False;
599 while (!ok) {
600 if (timeout > 0)
601 ok = (read_socket_with_timeout(fd,inbuf,4,4,timeout) == 4);
602 else
603 ok = (read_data(fd,inbuf,4) == 4);
605 if (!ok)
606 return(-1);
608 len = smb_len(inbuf);
609 msg_type = CVAL(inbuf,0);
611 if (msg_type == SMBkeepalive)
612 DEBUG(5,("Got keepalive packet\n"));
615 DEBUG(10,("got smb length of %lu\n",(unsigned long)len));
617 return(len);
620 /****************************************************************************
621 Read 4 bytes of a smb packet and return the smb length of the packet.
622 Store the result in the buffer. This version of the function will
623 never return a session keepalive (length of zero).
624 Timeout is in milliseconds.
625 ****************************************************************************/
627 ssize_t read_smb_length(int fd, char *inbuf, unsigned int timeout)
629 ssize_t len;
631 for(;;) {
632 len = read_smb_length_return_keepalive(fd, inbuf, timeout);
634 if(len < 0)
635 return len;
637 /* Ignore session keepalives. */
638 if(CVAL(inbuf,0) != SMBkeepalive)
639 break;
642 DEBUG(10,("read_smb_length: got smb length of %lu\n",
643 (unsigned long)len));
645 return len;
648 /****************************************************************************
649 Read an smb from a fd. Note that the buffer *MUST* be of size
650 BUFFER_SIZE+SAFETY_MARGIN.
651 The timeout is in milliseconds.
652 This function will return on receipt of a session keepalive packet.
653 Doesn't check the MAC on signed packets.
654 ****************************************************************************/
656 BOOL receive_smb_raw(int fd, char *buffer, unsigned int timeout)
658 ssize_t len,ret;
660 smb_read_error = 0;
662 memset(buffer,'\0',smb_size + 100);
664 len = read_smb_length_return_keepalive(fd,buffer,timeout);
665 if (len < 0) {
666 DEBUG(10,("receive_smb_raw: length < 0!\n"));
669 * Correct fix. smb_read_error may have already been
670 * set. Only set it here if not already set. Global
671 * variables still suck :-). JRA.
674 if (smb_read_error == 0)
675 smb_read_error = READ_ERROR;
676 return False;
680 * A WRITEX with CAP_LARGE_WRITEX can be 64k worth of data plus 65 bytes
681 * of header. Don't print the error if this fits.... JRA.
684 if (len > (BUFFER_SIZE + LARGE_WRITEX_HDR_SIZE)) {
685 DEBUG(0,("Invalid packet length! (%lu bytes).\n",(unsigned long)len));
686 if (len > BUFFER_SIZE + (SAFETY_MARGIN/2)) {
689 * Correct fix. smb_read_error may have already been
690 * set. Only set it here if not already set. Global
691 * variables still suck :-). JRA.
694 if (smb_read_error == 0)
695 smb_read_error = READ_ERROR;
696 return False;
700 if(len > 0) {
701 if (timeout > 0) {
702 ret = read_socket_with_timeout(fd,buffer+4,len,len,timeout);
703 } else {
704 ret = read_data(fd,buffer+4,len);
707 if (ret != len) {
708 if (smb_read_error == 0)
709 smb_read_error = READ_ERROR;
710 return False;
713 /* not all of samba3 properly checks for packet-termination of strings. This
714 ensures that we don't run off into empty space. */
715 SSVAL(buffer+4,len, 0);
718 return True;
721 /****************************************************************************
722 Wrapper for receive_smb_raw().
723 Checks the MAC on signed packets.
724 ****************************************************************************/
726 BOOL receive_smb(int fd, char *buffer, unsigned int timeout)
728 if (!receive_smb_raw(fd, buffer, timeout)) {
729 return False;
732 /* Check the incoming SMB signature. */
733 if (!srv_check_sign_mac(buffer, True)) {
734 DEBUG(0, ("receive_smb: SMB Signature verification failed on incoming packet!\n"));
735 if (smb_read_error == 0)
736 smb_read_error = READ_BAD_SIG;
737 return False;
740 return(True);
743 /****************************************************************************
744 Send an smb to a fd.
745 ****************************************************************************/
747 BOOL send_smb(int fd, char *buffer)
749 size_t len;
750 size_t nwritten=0;
751 ssize_t ret;
753 /* Sign the outgoing packet if required. */
754 srv_calculate_sign_mac(buffer);
756 len = smb_len(buffer) + 4;
758 while (nwritten < len) {
759 ret = write_data(fd,buffer+nwritten,len - nwritten);
760 if (ret <= 0) {
761 DEBUG(0,("Error writing %d bytes to client. %d. (%s)\n",
762 (int)len,(int)ret, strerror(errno) ));
763 return False;
765 nwritten += ret;
768 return True;
771 /****************************************************************************
772 Open a socket of the specified type, port, and address for incoming data.
773 ****************************************************************************/
775 int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL rebind )
777 struct sockaddr_in sock;
778 int res;
780 memset( (char *)&sock, '\0', sizeof(sock) );
782 #ifdef HAVE_SOCK_SIN_LEN
783 sock.sin_len = sizeof(sock);
784 #endif
785 sock.sin_port = htons( port );
786 sock.sin_family = AF_INET;
787 sock.sin_addr.s_addr = socket_addr;
789 res = socket( AF_INET, type, 0 );
790 if( res == -1 ) {
791 if( DEBUGLVL(0) ) {
792 dbgtext( "open_socket_in(): socket() call failed: " );
793 dbgtext( "%s\n", strerror( errno ) );
795 return -1;
798 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
800 int val = rebind ? 1 : 0;
801 if( setsockopt(res,SOL_SOCKET,SO_REUSEADDR,(char *)&val,sizeof(val)) == -1 ) {
802 if( DEBUGLVL( dlevel ) ) {
803 dbgtext( "open_socket_in(): setsockopt: " );
804 dbgtext( "SO_REUSEADDR = %s ", val?"True":"False" );
805 dbgtext( "on port %d failed ", port );
806 dbgtext( "with error = %s\n", strerror(errno) );
809 #ifdef SO_REUSEPORT
810 if( setsockopt(res,SOL_SOCKET,SO_REUSEPORT,(char *)&val,sizeof(val)) == -1 ) {
811 if( DEBUGLVL( dlevel ) ) {
812 dbgtext( "open_socket_in(): setsockopt: ");
813 dbgtext( "SO_REUSEPORT = %s ", val?"True":"False" );
814 dbgtext( "on port %d failed ", port );
815 dbgtext( "with error = %s\n", strerror(errno) );
818 #endif /* SO_REUSEPORT */
821 /* now we've got a socket - we need to bind it */
822 if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) == -1 ) {
823 if( DEBUGLVL(dlevel) && (port == SMB_PORT1 || port == SMB_PORT2 || port == NMB_PORT) ) {
824 dbgtext( "bind failed on port %d ", port );
825 dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
826 dbgtext( "Error = %s\n", strerror(errno) );
828 close( res );
829 return( -1 );
832 DEBUG( 10, ( "bind succeeded on port %d\n", port ) );
834 return( res );
837 /****************************************************************************
838 Create an outgoing socket. timeout is in milliseconds.
839 **************************************************************************/
841 int open_socket_out(int type, struct in_addr *addr, int port ,int timeout)
843 struct sockaddr_in sock_out;
844 int res,ret;
845 int connect_loop = 10;
846 int increment = 10;
848 /* create a socket to write to */
849 res = socket(PF_INET, type, 0);
850 if (res == -1) {
851 DEBUG(0,("socket error (%s)\n", strerror(errno)));
852 return -1;
855 if (type != SOCK_STREAM)
856 return(res);
858 memset((char *)&sock_out,'\0',sizeof(sock_out));
859 putip((char *)&sock_out.sin_addr,(char *)addr);
861 sock_out.sin_port = htons( port );
862 sock_out.sin_family = PF_INET;
864 /* set it non-blocking */
865 set_blocking(res,False);
867 DEBUG(3,("Connecting to %s at port %d\n",inet_ntoa(*addr),port));
869 /* and connect it to the destination */
870 connect_again:
872 ret = connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out));
874 /* Some systems return EAGAIN when they mean EINPROGRESS */
875 if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
876 errno == EAGAIN) && (connect_loop < timeout) ) {
877 smb_msleep(connect_loop);
878 timeout -= connect_loop;
879 connect_loop += increment;
880 if (increment < 250) {
881 /* After 8 rounds we end up at a max of 255 msec */
882 increment *= 1.5;
884 goto connect_again;
887 if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
888 errno == EAGAIN)) {
889 DEBUG(1,("timeout connecting to %s:%d\n",inet_ntoa(*addr),port));
890 close(res);
891 return -1;
894 #ifdef EISCONN
896 if (ret < 0 && errno == EISCONN) {
897 errno = 0;
898 ret = 0;
900 #endif
902 if (ret < 0) {
903 DEBUG(2,("error connecting to %s:%d (%s)\n",
904 inet_ntoa(*addr),port,strerror(errno)));
905 close(res);
906 return -1;
909 /* set it blocking again */
910 set_blocking(res,True);
912 return res;
915 /****************************************************************************
916 Create an outgoing TCP socket to any of the addrs. This is for
917 simultaneous connects to port 445 and 139 of a host or even a variety
918 of DC's all of which are equivalent for our purposes.
919 **************************************************************************/
921 BOOL open_any_socket_out(struct sockaddr_in *addrs, int num_addrs,
922 int timeout, int *fd_index, int *fd)
924 int i, resulting_index, res;
925 int *sockets;
926 BOOL good_connect;
928 fd_set r_fds, wr_fds;
929 struct timeval tv;
930 int maxfd;
932 int connect_loop = 10000; /* 10 milliseconds */
934 timeout *= 1000; /* convert to microseconds */
936 sockets = SMB_MALLOC_ARRAY(int, num_addrs);
938 if (sockets == NULL)
939 return False;
941 resulting_index = -1;
943 for (i=0; i<num_addrs; i++)
944 sockets[i] = -1;
946 for (i=0; i<num_addrs; i++) {
947 sockets[i] = socket(PF_INET, SOCK_STREAM, 0);
948 if (sockets[i] < 0)
949 goto done;
950 set_blocking(sockets[i], False);
953 connect_again:
954 good_connect = False;
956 for (i=0; i<num_addrs; i++) {
958 if (sockets[i] == -1)
959 continue;
961 if (connect(sockets[i], (struct sockaddr *)&(addrs[i]),
962 sizeof(*addrs)) == 0) {
963 /* Rather unlikely as we are non-blocking, but it
964 * might actually happen. */
965 resulting_index = i;
966 goto done;
969 if (errno == EINPROGRESS || errno == EALREADY ||
970 errno == EAGAIN) {
971 /* These are the error messages that something is
972 progressing. */
973 good_connect = True;
974 } else if (errno != 0) {
975 /* There was a direct error */
976 close(sockets[i]);
977 sockets[i] = -1;
981 if (!good_connect) {
982 /* All of the connect's resulted in real error conditions */
983 goto done;
986 /* Lets see if any of the connect attempts succeeded */
988 maxfd = 0;
989 FD_ZERO(&wr_fds);
990 FD_ZERO(&r_fds);
992 for (i=0; i<num_addrs; i++) {
993 if (sockets[i] == -1)
994 continue;
995 FD_SET(sockets[i], &wr_fds);
996 FD_SET(sockets[i], &r_fds);
997 if (sockets[i]>maxfd)
998 maxfd = sockets[i];
1001 tv.tv_sec = 0;
1002 tv.tv_usec = connect_loop;
1004 res = sys_select(maxfd+1, &r_fds, &wr_fds, NULL, &tv);
1006 if (res < 0)
1007 goto done;
1009 if (res == 0)
1010 goto next_round;
1012 for (i=0; i<num_addrs; i++) {
1014 if (sockets[i] == -1)
1015 continue;
1017 /* Stevens, Network Programming says that if there's a
1018 * successful connect, the socket is only writable. Upon an
1019 * error, it's both readable and writable. */
1021 if (FD_ISSET(sockets[i], &r_fds) &&
1022 FD_ISSET(sockets[i], &wr_fds)) {
1023 /* readable and writable, so it's an error */
1024 close(sockets[i]);
1025 sockets[i] = -1;
1026 continue;
1029 if (!FD_ISSET(sockets[i], &r_fds) &&
1030 FD_ISSET(sockets[i], &wr_fds)) {
1031 /* Only writable, so it's connected */
1032 resulting_index = i;
1033 goto done;
1037 next_round:
1039 timeout -= connect_loop;
1040 if (timeout <= 0)
1041 goto done;
1042 connect_loop *= 1.5;
1043 if (connect_loop > timeout)
1044 connect_loop = timeout;
1045 goto connect_again;
1047 done:
1048 for (i=0; i<num_addrs; i++) {
1049 if (i == resulting_index)
1050 continue;
1051 if (sockets[i] >= 0)
1052 close(sockets[i]);
1055 if (resulting_index >= 0) {
1056 *fd_index = resulting_index;
1057 *fd = sockets[*fd_index];
1058 set_blocking(*fd, True);
1061 free(sockets);
1063 return (resulting_index >= 0);
1065 /****************************************************************************
1066 Open a connected UDP socket to host on port
1067 **************************************************************************/
1069 int open_udp_socket(const char *host, int port)
1071 int type = SOCK_DGRAM;
1072 struct sockaddr_in sock_out;
1073 int res;
1074 struct in_addr *addr;
1076 addr = interpret_addr2(host);
1078 res = socket(PF_INET, type, 0);
1079 if (res == -1) {
1080 return -1;
1083 memset((char *)&sock_out,'\0',sizeof(sock_out));
1084 putip((char *)&sock_out.sin_addr,(char *)addr);
1085 sock_out.sin_port = htons(port);
1086 sock_out.sin_family = PF_INET;
1088 if (connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out))) {
1089 close(res);
1090 return -1;
1093 return res;
1097 /*******************************************************************
1098 Matchname - determine if host name matches IP address. Used to
1099 confirm a hostname lookup to prevent spoof attacks.
1100 ******************************************************************/
1102 static BOOL matchname(char *remotehost,struct in_addr addr)
1104 struct hostent *hp;
1105 int i;
1107 if ((hp = sys_gethostbyname(remotehost)) == 0) {
1108 DEBUG(0,("sys_gethostbyname(%s): lookup failure.\n", remotehost));
1109 return False;
1113 * Make sure that gethostbyname() returns the "correct" host name.
1114 * Unfortunately, gethostbyname("localhost") sometimes yields
1115 * "localhost.domain". Since the latter host name comes from the
1116 * local DNS, we just have to trust it (all bets are off if the local
1117 * DNS is perverted). We always check the address list, though.
1120 if (!strequal(remotehost, hp->h_name)
1121 && !strequal(remotehost, "localhost")) {
1122 DEBUG(0,("host name/name mismatch: %s != %s\n",
1123 remotehost, hp->h_name));
1124 return False;
1127 /* Look up the host address in the address list we just got. */
1128 for (i = 0; hp->h_addr_list[i]; i++) {
1129 if (memcmp(hp->h_addr_list[i], (char *) & addr, sizeof(addr)) == 0)
1130 return True;
1134 * The host name does not map to the original host address. Perhaps
1135 * someone has compromised a name server. More likely someone botched
1136 * it, but that could be dangerous, too.
1139 DEBUG(0,("host name/address mismatch: %s != %s\n",
1140 inet_ntoa(addr), hp->h_name));
1141 return False;
1144 /*******************************************************************
1145 Return the DNS name of the remote end of a socket.
1146 ******************************************************************/
1148 char *get_peer_name(int fd, BOOL force_lookup)
1150 static pstring name_buf;
1151 pstring tmp_name;
1152 static fstring addr_buf;
1153 struct hostent *hp;
1154 struct in_addr addr;
1155 char *p;
1157 /* reverse lookups can be *very* expensive, and in many
1158 situations won't work because many networks don't link dhcp
1159 with dns. To avoid the delay we avoid the lookup if
1160 possible */
1161 if (!lp_hostname_lookups() && (force_lookup == False)) {
1162 return get_peer_addr(fd);
1165 p = get_peer_addr(fd);
1167 /* it might be the same as the last one - save some DNS work */
1168 if (strcmp(p, addr_buf) == 0)
1169 return name_buf;
1171 pstrcpy(name_buf,"UNKNOWN");
1172 if (fd == -1)
1173 return name_buf;
1175 fstrcpy(addr_buf, p);
1177 addr = *interpret_addr2(p);
1179 /* Look up the remote host name. */
1180 if ((hp = gethostbyaddr((char *)&addr.s_addr, sizeof(addr.s_addr), AF_INET)) == 0) {
1181 DEBUG(1,("Gethostbyaddr failed for %s\n",p));
1182 pstrcpy(name_buf, p);
1183 } else {
1184 pstrcpy(name_buf,(char *)hp->h_name);
1185 if (!matchname(name_buf, addr)) {
1186 DEBUG(0,("Matchname failed on %s %s\n",name_buf,p));
1187 pstrcpy(name_buf,"UNKNOWN");
1191 /* can't pass the same source and dest strings in when you
1192 use --enable-developer or the clobber_region() call will
1193 get you */
1195 pstrcpy( tmp_name, name_buf );
1196 alpha_strcpy(name_buf, tmp_name, "_-.", sizeof(name_buf));
1197 if (strstr(name_buf,"..")) {
1198 pstrcpy(name_buf, "UNKNOWN");
1201 return name_buf;
1204 /*******************************************************************
1205 Return the IP addr of the remote end of a socket as a string.
1206 ******************************************************************/
1208 char *get_peer_addr(int fd)
1210 struct sockaddr sa;
1211 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
1212 socklen_t length = sizeof(sa);
1213 static fstring addr_buf;
1215 fstrcpy(addr_buf,"0.0.0.0");
1217 if (fd == -1) {
1218 return addr_buf;
1221 if (getpeername(fd, &sa, &length) < 0) {
1222 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
1223 return addr_buf;
1226 fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
1228 return addr_buf;
1231 /*******************************************************************
1232 Create protected unix domain socket.
1234 Some unixes cannot set permissions on a ux-dom-sock, so we
1235 have to make sure that the directory contains the protection
1236 permissions instead.
1237 ******************************************************************/
1239 int create_pipe_sock(const char *socket_dir,
1240 const char *socket_name,
1241 mode_t dir_perms)
1243 #ifdef HAVE_UNIXSOCKET
1244 struct sockaddr_un sunaddr;
1245 struct stat st;
1246 int sock;
1247 mode_t old_umask;
1248 pstring path;
1250 old_umask = umask(0);
1252 /* Create the socket directory or reuse the existing one */
1254 if (lstat(socket_dir, &st) == -1) {
1255 if (errno == ENOENT) {
1256 /* Create directory */
1257 if (mkdir(socket_dir, dir_perms) == -1) {
1258 DEBUG(0, ("error creating socket directory "
1259 "%s: %s\n", socket_dir,
1260 strerror(errno)));
1261 goto out_umask;
1263 } else {
1264 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1265 socket_dir, strerror(errno)));
1266 goto out_umask;
1268 } else {
1269 /* Check ownership and permission on existing directory */
1270 if (!S_ISDIR(st.st_mode)) {
1271 DEBUG(0, ("socket directory %s isn't a directory\n",
1272 socket_dir));
1273 goto out_umask;
1275 if ((st.st_uid != sec_initial_uid()) ||
1276 ((st.st_mode & 0777) != dir_perms)) {
1277 DEBUG(0, ("invalid permissions on socket directory "
1278 "%s\n", socket_dir));
1279 goto out_umask;
1283 /* Create the socket file */
1285 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1287 if (sock == -1) {
1288 perror("socket");
1289 goto out_umask;
1292 pstr_sprintf(path, "%s/%s", socket_dir, socket_name);
1294 unlink(path);
1295 memset(&sunaddr, 0, sizeof(sunaddr));
1296 sunaddr.sun_family = AF_UNIX;
1297 safe_strcpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path)-1);
1299 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1) {
1300 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path,
1301 strerror(errno)));
1302 goto out_close;
1305 if (listen(sock, 5) == -1) {
1306 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path,
1307 strerror(errno)));
1308 goto out_close;
1311 umask(old_umask);
1312 return sock;
1314 out_close:
1315 close(sock);
1317 out_umask:
1318 umask(old_umask);
1319 return -1;
1321 #else
1322 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1323 return -1;
1324 #endif /* HAVE_UNIXSOCKET */