r487: fixing some compile issues with the IBM AIX compiler reoported on the ml -...
[Samba/gebeck_regimport.git] / source / lib / util_sock.c
blobb6bfdca5cf9fd5d574a7ba6d9a02a8d38ffba485
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,("getpeername 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 /****************************************************************************
56 Determine if a file descriptor is in fact a socket.
57 ****************************************************************************/
59 BOOL is_a_socket(int fd)
61 int v;
62 socklen_t l;
63 l = sizeof(int);
64 return(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0);
67 enum SOCK_OPT_TYPES {OPT_BOOL,OPT_INT,OPT_ON};
69 typedef struct smb_socket_option {
70 const char *name;
71 int level;
72 int option;
73 int value;
74 int opttype;
75 } smb_socket_option;
77 static const smb_socket_option socket_options[] = {
78 {"SO_KEEPALIVE", SOL_SOCKET, SO_KEEPALIVE, 0, OPT_BOOL},
79 {"SO_REUSEADDR", SOL_SOCKET, SO_REUSEADDR, 0, OPT_BOOL},
80 {"SO_BROADCAST", SOL_SOCKET, SO_BROADCAST, 0, OPT_BOOL},
81 #ifdef TCP_NODELAY
82 {"TCP_NODELAY", IPPROTO_TCP, TCP_NODELAY, 0, OPT_BOOL},
83 #endif
84 #ifdef IPTOS_LOWDELAY
85 {"IPTOS_LOWDELAY", IPPROTO_IP, IP_TOS, IPTOS_LOWDELAY, OPT_ON},
86 #endif
87 #ifdef IPTOS_THROUGHPUT
88 {"IPTOS_THROUGHPUT", IPPROTO_IP, IP_TOS, IPTOS_THROUGHPUT, OPT_ON},
89 #endif
90 #ifdef SO_REUSEPORT
91 {"SO_REUSEPORT", SOL_SOCKET, SO_REUSEPORT, 0, OPT_BOOL},
92 #endif
93 #ifdef SO_SNDBUF
94 {"SO_SNDBUF", SOL_SOCKET, SO_SNDBUF, 0, OPT_INT},
95 #endif
96 #ifdef SO_RCVBUF
97 {"SO_RCVBUF", SOL_SOCKET, SO_RCVBUF, 0, OPT_INT},
98 #endif
99 #ifdef SO_SNDLOWAT
100 {"SO_SNDLOWAT", SOL_SOCKET, SO_SNDLOWAT, 0, OPT_INT},
101 #endif
102 #ifdef SO_RCVLOWAT
103 {"SO_RCVLOWAT", SOL_SOCKET, SO_RCVLOWAT, 0, OPT_INT},
104 #endif
105 #ifdef SO_SNDTIMEO
106 {"SO_SNDTIMEO", SOL_SOCKET, SO_SNDTIMEO, 0, OPT_INT},
107 #endif
108 #ifdef SO_RCVTIMEO
109 {"SO_RCVTIMEO", SOL_SOCKET, SO_RCVTIMEO, 0, OPT_INT},
110 #endif
111 {NULL,0,0,0,0}};
113 /****************************************************************************
114 Print socket options.
115 ****************************************************************************/
117 static void print_socket_options(int s)
119 int value;
120 socklen_t vlen = 4;
121 const smb_socket_option *p = &socket_options[0];
123 /* wrapped in if statement to prevent streams leak in SCO Openserver 5.0 */
124 /* reported on samba-technical --jerry */
125 if ( DEBUGLEVEL >= 5 ) {
126 for (; p->name != NULL; p++) {
127 if (getsockopt(s, p->level, p->option, (void *)&value, &vlen) == -1) {
128 DEBUG(5,("Could not test socket option %s.\n", p->name));
129 } else {
130 DEBUG(5,("socket option %s = %d\n",p->name,value));
136 /****************************************************************************
137 Set user socket options.
138 ****************************************************************************/
140 void set_socket_options(int fd, const char *options)
142 fstring tok;
144 while (next_token(&options,tok," \t,", sizeof(tok))) {
145 int ret=0,i;
146 int value = 1;
147 char *p;
148 BOOL got_value = False;
150 if ((p = strchr_m(tok,'='))) {
151 *p = 0;
152 value = atoi(p+1);
153 got_value = True;
156 for (i=0;socket_options[i].name;i++)
157 if (strequal(socket_options[i].name,tok))
158 break;
160 if (!socket_options[i].name) {
161 DEBUG(0,("Unknown socket option %s\n",tok));
162 continue;
165 switch (socket_options[i].opttype) {
166 case OPT_BOOL:
167 case OPT_INT:
168 ret = setsockopt(fd,socket_options[i].level,
169 socket_options[i].option,(char *)&value,sizeof(int));
170 break;
172 case OPT_ON:
173 if (got_value)
174 DEBUG(0,("syntax error - %s does not take a value\n",tok));
177 int on = socket_options[i].value;
178 ret = setsockopt(fd,socket_options[i].level,
179 socket_options[i].option,(char *)&on,sizeof(int));
181 break;
184 if (ret != 0)
185 DEBUG(0,("Failed to set socket option %s (Error %s)\n",tok, strerror(errno) ));
188 print_socket_options(fd);
191 /****************************************************************************
192 Read from a socket.
193 ****************************************************************************/
195 ssize_t read_udp_socket(int fd,char *buf,size_t len)
197 ssize_t ret;
198 struct sockaddr_in sock;
199 socklen_t socklen = sizeof(sock);
201 memset((char *)&sock,'\0',socklen);
202 memset((char *)&lastip,'\0',sizeof(lastip));
203 ret = (ssize_t)sys_recvfrom(fd,buf,len,0,(struct sockaddr *)&sock,&socklen);
204 if (ret <= 0) {
205 DEBUG(2,("read socket failed. ERRNO=%s\n",strerror(errno)));
206 return(0);
209 lastip = sock.sin_addr;
210 lastport = ntohs(sock.sin_port);
212 DEBUG(10,("read_udp_socket: lastip %s lastport %d read: %lu\n",
213 inet_ntoa(lastip), lastport, (unsigned long)ret));
215 return(ret);
218 /****************************************************************************
219 Read data from a socket with a timout in msec.
220 mincount = if timeout, minimum to read before returning
221 maxcount = number to be read.
222 time_out = timeout in milliseconds
223 ****************************************************************************/
225 ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t maxcnt,unsigned int time_out)
227 fd_set fds;
228 int selrtn;
229 ssize_t readret;
230 size_t nread = 0;
231 struct timeval timeout;
233 /* just checking .... */
234 if (maxcnt <= 0)
235 return(0);
237 smb_read_error = 0;
239 /* Blocking read */
240 if (time_out <= 0) {
241 if (mincnt == 0) mincnt = maxcnt;
243 while (nread < mincnt) {
244 readret = sys_read(fd, buf + nread, maxcnt - nread);
246 if (readret == 0) {
247 DEBUG(5,("read_socket_with_timeout: blocking read. EOF from client.\n"));
248 smb_read_error = READ_EOF;
249 return -1;
252 if (readret == -1) {
253 DEBUG(0,("read_socket_with_timeout: read error = %s.\n", strerror(errno) ));
254 smb_read_error = READ_ERROR;
255 return -1;
257 nread += readret;
259 return((ssize_t)nread);
262 /* Most difficult - timeout read */
263 /* If this is ever called on a disk file and
264 mincnt is greater then the filesize then
265 system performance will suffer severely as
266 select always returns true on disk files */
268 /* Set initial timeout */
269 timeout.tv_sec = (time_t)(time_out / 1000);
270 timeout.tv_usec = (long)(1000 * (time_out % 1000));
272 for (nread=0; nread < mincnt; ) {
273 FD_ZERO(&fds);
274 FD_SET(fd,&fds);
276 selrtn = sys_select_intr(fd+1,&fds,NULL,NULL,&timeout);
278 /* Check if error */
279 if (selrtn == -1) {
280 /* something is wrong. Maybe the socket is dead? */
281 DEBUG(0,("read_socket_with_timeout: timeout read. select error = %s.\n", strerror(errno) ));
282 smb_read_error = READ_ERROR;
283 return -1;
286 /* Did we timeout ? */
287 if (selrtn == 0) {
288 DEBUG(10,("read_socket_with_timeout: timeout read. select timed out.\n"));
289 smb_read_error = READ_TIMEOUT;
290 return -1;
293 readret = sys_read(fd, buf+nread, maxcnt-nread);
295 if (readret == 0) {
296 /* we got EOF on the file descriptor */
297 DEBUG(5,("read_socket_with_timeout: timeout read. EOF from client.\n"));
298 smb_read_error = READ_EOF;
299 return -1;
302 if (readret == -1) {
303 /* the descriptor is probably dead */
304 DEBUG(0,("read_socket_with_timeout: timeout read. read error = %s.\n", strerror(errno) ));
305 smb_read_error = READ_ERROR;
306 return -1;
309 nread += readret;
312 /* Return the number we got */
313 return (ssize_t)nread;
316 /****************************************************************************
317 Read data from the client, reading exactly N bytes.
318 ****************************************************************************/
320 ssize_t read_data(int fd,char *buffer,size_t N)
322 ssize_t ret;
323 size_t total=0;
325 smb_read_error = 0;
327 while (total < N) {
328 ret = sys_read(fd,buffer + total,N - total);
330 if (ret == 0) {
331 DEBUG(10,("read_data: read of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
332 smb_read_error = READ_EOF;
333 return 0;
336 if (ret == -1) {
337 DEBUG(0,("read_data: read failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
338 smb_read_error = READ_ERROR;
339 return -1;
341 total += ret;
343 return (ssize_t)total;
346 /****************************************************************************
347 Read data from a socket, reading exactly N bytes.
348 ****************************************************************************/
350 static ssize_t read_socket_data(int fd,char *buffer,size_t N)
352 ssize_t ret;
353 size_t total=0;
355 smb_read_error = 0;
357 while (total < N) {
358 ret = sys_read(fd,buffer + total,N - total);
360 if (ret == 0) {
361 DEBUG(10,("read_socket_data: recv of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
362 smb_read_error = READ_EOF;
363 return 0;
366 if (ret == -1) {
367 DEBUG(0,("read_socket_data: recv failure for %d. Error = %s\n", (int)(N - total), strerror(errno) ));
368 smb_read_error = READ_ERROR;
369 return -1;
371 total += ret;
373 return (ssize_t)total;
376 /****************************************************************************
377 Write data to a fd.
378 ****************************************************************************/
380 ssize_t write_data(int fd,char *buffer,size_t N)
382 size_t total=0;
383 ssize_t ret;
385 while (total < N) {
386 ret = sys_write(fd,buffer + total,N - total);
388 if (ret == -1) {
389 DEBUG(0,("write_data: write failure. Error = %s\n", strerror(errno) ));
390 return -1;
392 if (ret == 0)
393 return total;
395 total += ret;
397 return (ssize_t)total;
400 /****************************************************************************
401 Write data to a socket - use send rather than write.
402 ****************************************************************************/
404 static ssize_t write_socket_data(int fd,char *buffer,size_t N)
406 size_t total=0;
407 ssize_t ret;
409 while (total < N) {
410 ret = sys_send(fd,buffer + total,N - total,0);
412 if (ret == -1) {
413 DEBUG(0,("write_socket_data: write failure. Error = %s\n", strerror(errno) ));
414 return -1;
416 if (ret == 0)
417 return total;
419 total += ret;
421 return (ssize_t)total;
424 /****************************************************************************
425 Write to a socket.
426 ****************************************************************************/
428 ssize_t write_socket(int fd,char *buf,size_t len)
430 ssize_t ret=0;
432 DEBUG(6,("write_socket(%d,%d)\n",fd,(int)len));
433 ret = write_socket_data(fd,buf,len);
435 DEBUG(6,("write_socket(%d,%d) wrote %d\n",fd,(int)len,(int)ret));
436 if(ret <= 0)
437 DEBUG(0,("write_socket: Error writing %d bytes to socket %d: ERRNO = %s\n",
438 (int)len, fd, strerror(errno) ));
440 return(ret);
443 /****************************************************************************
444 Send a keepalive packet (rfc1002).
445 ****************************************************************************/
447 BOOL send_keepalive(int client)
449 unsigned char buf[4];
451 buf[0] = SMBkeepalive;
452 buf[1] = buf[2] = buf[3] = 0;
454 return(write_socket_data(client,(char *)buf,4) == 4);
458 /****************************************************************************
459 Read 4 bytes of a smb packet and return the smb length of the packet.
460 Store the result in the buffer.
461 This version of the function will return a length of zero on receiving
462 a keepalive packet.
463 Timeout is in milliseconds.
464 ****************************************************************************/
466 static ssize_t read_smb_length_return_keepalive(int fd,char *inbuf,unsigned int timeout)
468 ssize_t len=0;
469 int msg_type;
470 BOOL ok = False;
472 while (!ok) {
473 if (timeout > 0)
474 ok = (read_socket_with_timeout(fd,inbuf,4,4,timeout) == 4);
475 else
476 ok = (read_socket_data(fd,inbuf,4) == 4);
478 if (!ok)
479 return(-1);
481 len = smb_len(inbuf);
482 msg_type = CVAL(inbuf,0);
484 if (msg_type == SMBkeepalive)
485 DEBUG(5,("Got keepalive packet\n"));
488 DEBUG(10,("got smb length of %lu\n",(unsigned long)len));
490 return(len);
493 /****************************************************************************
494 Read 4 bytes of a smb packet and return the smb length of the packet.
495 Store the result in the buffer. This version of the function will
496 never return a session keepalive (length of zero).
497 Timeout is in milliseconds.
498 ****************************************************************************/
500 ssize_t read_smb_length(int fd,char *inbuf,unsigned int timeout)
502 ssize_t len;
504 for(;;) {
505 len = read_smb_length_return_keepalive(fd, inbuf, timeout);
507 if(len < 0)
508 return len;
510 /* Ignore session keepalives. */
511 if(CVAL(inbuf,0) != SMBkeepalive)
512 break;
515 DEBUG(10,("read_smb_length: got smb length of %lu\n",
516 (unsigned long)len));
518 return len;
521 /****************************************************************************
522 Read an smb from a fd. Note that the buffer *MUST* be of size
523 BUFFER_SIZE+SAFETY_MARGIN.
524 The timeout is in milliseconds.
525 This function will return on receipt of a session keepalive packet.
526 Doesn't check the MAC on signed packets.
527 ****************************************************************************/
529 BOOL receive_smb_raw(int fd,char *buffer, unsigned int timeout)
531 ssize_t len,ret;
533 smb_read_error = 0;
535 memset(buffer,'\0',smb_size + 100);
537 len = read_smb_length_return_keepalive(fd,buffer,timeout);
538 if (len < 0) {
539 DEBUG(10,("receive_smb_raw: length < 0!\n"));
542 * Correct fix. smb_read_error may have already been
543 * set. Only set it here if not already set. Global
544 * variables still suck :-). JRA.
547 if (smb_read_error == 0)
548 smb_read_error = READ_ERROR;
549 return False;
553 * A WRITEX with CAP_LARGE_WRITEX can be 64k worth of data plus 65 bytes
554 * of header. Don't print the error if this fits.... JRA.
557 if (len > (BUFFER_SIZE + LARGE_WRITEX_HDR_SIZE)) {
558 DEBUG(0,("Invalid packet length! (%lu bytes).\n",(unsigned long)len));
559 if (len > BUFFER_SIZE + (SAFETY_MARGIN/2)) {
562 * Correct fix. smb_read_error may have already been
563 * set. Only set it here if not already set. Global
564 * variables still suck :-). JRA.
567 if (smb_read_error == 0)
568 smb_read_error = READ_ERROR;
569 return False;
573 if(len > 0) {
574 ret = read_socket_data(fd,buffer+4,len);
575 if (ret != len) {
576 if (smb_read_error == 0)
577 smb_read_error = READ_ERROR;
578 return False;
581 /* not all of samba3 properly checks for packet-termination of strings. This
582 ensures that we don't run off into empty space. */
583 SSVAL(buffer+4,len, 0);
586 return True;
589 /****************************************************************************
590 Wrapper for receive_smb_raw().
591 Checks the MAC on signed packets.
592 ****************************************************************************/
594 BOOL receive_smb(int fd,char *buffer, unsigned int timeout)
596 if (!receive_smb_raw(fd, buffer, timeout)) {
597 return False;
600 /* Check the incoming SMB signature. */
601 if (!srv_check_sign_mac(buffer, True)) {
602 DEBUG(0, ("receive_smb: SMB Signature verification failed on incoming packet!\n"));
603 if (smb_read_error == 0)
604 smb_read_error = READ_BAD_SIG;
605 return False;
608 return(True);
611 /****************************************************************************
612 Send an smb to a fd.
613 ****************************************************************************/
615 BOOL send_smb(int fd,char *buffer)
617 size_t len;
618 size_t nwritten=0;
619 ssize_t ret;
621 /* Sign the outgoing packet if required. */
622 srv_calculate_sign_mac(buffer);
624 len = smb_len(buffer) + 4;
626 while (nwritten < len) {
627 ret = write_socket(fd,buffer+nwritten,len - nwritten);
628 if (ret <= 0) {
629 DEBUG(0,("Error writing %d bytes to client. %d. (%s)\n",
630 (int)len,(int)ret, strerror(errno) ));
631 return False;
633 nwritten += ret;
636 return True;
639 /****************************************************************************
640 Open a socket of the specified type, port, and address for incoming data.
641 ****************************************************************************/
643 int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL rebind )
645 struct sockaddr_in sock;
646 int res;
648 memset( (char *)&sock, '\0', sizeof(sock) );
650 #ifdef HAVE_SOCK_SIN_LEN
651 sock.sin_len = sizeof(sock);
652 #endif
653 sock.sin_port = htons( port );
654 sock.sin_family = AF_INET;
655 sock.sin_addr.s_addr = socket_addr;
657 res = socket( AF_INET, type, 0 );
658 if( res == -1 ) {
659 if( DEBUGLVL(0) ) {
660 dbgtext( "open_socket_in(): socket() call failed: " );
661 dbgtext( "%s\n", strerror( errno ) );
663 return -1;
666 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
668 int val = rebind ? 1 : 0;
669 if( setsockopt(res,SOL_SOCKET,SO_REUSEADDR,(char *)&val,sizeof(val)) == -1 ) {
670 if( DEBUGLVL( dlevel ) ) {
671 dbgtext( "open_socket_in(): setsockopt: " );
672 dbgtext( "SO_REUSEADDR = %s ", val?"True":"False" );
673 dbgtext( "on port %d failed ", port );
674 dbgtext( "with error = %s\n", strerror(errno) );
677 #ifdef SO_REUSEPORT
678 if( setsockopt(res,SOL_SOCKET,SO_REUSEPORT,(char *)&val,sizeof(val)) == -1 ) {
679 if( DEBUGLVL( dlevel ) ) {
680 dbgtext( "open_socket_in(): setsockopt: ");
681 dbgtext( "SO_REUSEPORT = %s ", val?"True":"False" );
682 dbgtext( "on port %d failed ", port );
683 dbgtext( "with error = %s\n", strerror(errno) );
686 #endif /* SO_REUSEPORT */
689 /* now we've got a socket - we need to bind it */
690 if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) == -1 ) {
691 if( DEBUGLVL(dlevel) && (port == SMB_PORT1 || port == SMB_PORT2 || port == NMB_PORT) ) {
692 dbgtext( "bind failed on port %d ", port );
693 dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
694 dbgtext( "Error = %s\n", strerror(errno) );
696 close( res );
697 return( -1 );
700 DEBUG( 10, ( "bind succeeded on port %d\n", port ) );
702 return( res );
705 /****************************************************************************
706 Create an outgoing socket. timeout is in milliseconds.
707 **************************************************************************/
709 int open_socket_out(int type, struct in_addr *addr, int port ,int timeout)
711 struct sockaddr_in sock_out;
712 int res,ret;
713 int connect_loop = 10;
714 int increment = 10;
716 /* create a socket to write to */
717 res = socket(PF_INET, type, 0);
718 if (res == -1) {
719 DEBUG(0,("socket error (%s)\n", strerror(errno)));
720 return -1;
723 if (type != SOCK_STREAM)
724 return(res);
726 memset((char *)&sock_out,'\0',sizeof(sock_out));
727 putip((char *)&sock_out.sin_addr,(char *)addr);
729 sock_out.sin_port = htons( port );
730 sock_out.sin_family = PF_INET;
732 /* set it non-blocking */
733 set_blocking(res,False);
735 DEBUG(3,("Connecting to %s at port %d\n",inet_ntoa(*addr),port));
737 /* and connect it to the destination */
738 connect_again:
740 ret = connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out));
742 /* Some systems return EAGAIN when they mean EINPROGRESS */
743 if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
744 errno == EAGAIN) && (connect_loop < timeout) ) {
745 smb_msleep(connect_loop);
746 timeout -= connect_loop;
747 connect_loop += increment;
748 if (increment < 250) {
749 /* After 8 rounds we end up at a max of 255 msec */
750 increment *= 1.5;
752 goto connect_again;
755 if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY ||
756 errno == EAGAIN)) {
757 DEBUG(1,("timeout connecting to %s:%d\n",inet_ntoa(*addr),port));
758 close(res);
759 return -1;
762 #ifdef EISCONN
764 if (ret < 0 && errno == EISCONN) {
765 errno = 0;
766 ret = 0;
768 #endif
770 if (ret < 0) {
771 DEBUG(2,("error connecting to %s:%d (%s)\n",
772 inet_ntoa(*addr),port,strerror(errno)));
773 close(res);
774 return -1;
777 /* set it blocking again */
778 set_blocking(res,True);
780 return res;
783 /****************************************************************************
784 Open a connected UDP socket to host on port
785 **************************************************************************/
787 int open_udp_socket(const char *host, int port)
789 int type = SOCK_DGRAM;
790 struct sockaddr_in sock_out;
791 int res;
792 struct in_addr *addr;
794 addr = interpret_addr2(host);
796 res = socket(PF_INET, type, 0);
797 if (res == -1) {
798 return -1;
801 memset((char *)&sock_out,'\0',sizeof(sock_out));
802 putip((char *)&sock_out.sin_addr,(char *)addr);
803 sock_out.sin_port = htons(port);
804 sock_out.sin_family = PF_INET;
806 if (connect(res,(struct sockaddr *)&sock_out,sizeof(sock_out))) {
807 close(res);
808 return -1;
811 return res;
815 /* the following 3 client_*() functions are nasty ways of allowing
816 some generic functions to get info that really should be hidden in
817 particular modules */
818 static int client_fd = -1;
820 void client_setfd(int fd)
822 client_fd = fd;
825 char *client_name(void)
827 return get_peer_name(client_fd,False);
830 char *client_addr(void)
832 return get_peer_addr(client_fd);
835 char *client_socket_addr(void)
837 return get_socket_addr(client_fd);
840 struct in_addr *client_inaddr(struct sockaddr *sa)
842 struct sockaddr_in *sockin = (struct sockaddr_in *) (sa);
843 socklen_t length = sizeof(*sa);
845 if (getpeername(client_fd, sa, &length) < 0) {
846 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
847 return NULL;
850 return &sockin->sin_addr;
853 /*******************************************************************
854 Matchname - determine if host name matches IP address. Used to
855 confirm a hostname lookup to prevent spoof attacks.
856 ******************************************************************/
858 static BOOL matchname(char *remotehost,struct in_addr addr)
860 struct hostent *hp;
861 int i;
863 if ((hp = sys_gethostbyname(remotehost)) == 0) {
864 DEBUG(0,("sys_gethostbyname(%s): lookup failure.\n", remotehost));
865 return False;
869 * Make sure that gethostbyname() returns the "correct" host name.
870 * Unfortunately, gethostbyname("localhost") sometimes yields
871 * "localhost.domain". Since the latter host name comes from the
872 * local DNS, we just have to trust it (all bets are off if the local
873 * DNS is perverted). We always check the address list, though.
876 if (!strequal(remotehost, hp->h_name)
877 && !strequal(remotehost, "localhost")) {
878 DEBUG(0,("host name/name mismatch: %s != %s\n",
879 remotehost, hp->h_name));
880 return False;
883 /* Look up the host address in the address list we just got. */
884 for (i = 0; hp->h_addr_list[i]; i++) {
885 if (memcmp(hp->h_addr_list[i], (char *) & addr, sizeof(addr)) == 0)
886 return True;
890 * The host name does not map to the original host address. Perhaps
891 * someone has compromised a name server. More likely someone botched
892 * it, but that could be dangerous, too.
895 DEBUG(0,("host name/address mismatch: %s != %s\n",
896 inet_ntoa(addr), hp->h_name));
897 return False;
900 /*******************************************************************
901 Return the DNS name of the remote end of a socket.
902 ******************************************************************/
904 char *get_peer_name(int fd, BOOL force_lookup)
906 static pstring name_buf;
907 pstring tmp_name;
908 static fstring addr_buf;
909 struct hostent *hp;
910 struct in_addr addr;
911 char *p;
913 /* reverse lookups can be *very* expensive, and in many
914 situations won't work because many networks don't link dhcp
915 with dns. To avoid the delay we avoid the lookup if
916 possible */
917 if (!lp_hostname_lookups() && (force_lookup == False)) {
918 return get_peer_addr(fd);
921 p = get_peer_addr(fd);
923 /* it might be the same as the last one - save some DNS work */
924 if (strcmp(p, addr_buf) == 0)
925 return name_buf;
927 pstrcpy(name_buf,"UNKNOWN");
928 if (fd == -1)
929 return name_buf;
931 fstrcpy(addr_buf, p);
933 addr = *interpret_addr2(p);
935 /* Look up the remote host name. */
936 if ((hp = gethostbyaddr((char *)&addr.s_addr, sizeof(addr.s_addr), AF_INET)) == 0) {
937 DEBUG(1,("Gethostbyaddr failed for %s\n",p));
938 pstrcpy(name_buf, p);
939 } else {
940 pstrcpy(name_buf,(char *)hp->h_name);
941 if (!matchname(name_buf, addr)) {
942 DEBUG(0,("Matchname failed on %s %s\n",name_buf,p));
943 pstrcpy(name_buf,"UNKNOWN");
947 /* can't pass the same source and dest strings in when you
948 use --enable-developer or the clobber_region() call will
949 get you */
951 pstrcpy( tmp_name, name_buf );
952 alpha_strcpy(name_buf, tmp_name, "_-.", sizeof(name_buf));
953 if (strstr(name_buf,"..")) {
954 pstrcpy(name_buf, "UNKNOWN");
957 return name_buf;
960 /*******************************************************************
961 Return the IP addr of the remote end of a socket as a string.
962 ******************************************************************/
964 char *get_peer_addr(int fd)
966 struct sockaddr sa;
967 struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa);
968 socklen_t length = sizeof(sa);
969 static fstring addr_buf;
971 fstrcpy(addr_buf,"0.0.0.0");
973 if (fd == -1) {
974 return addr_buf;
977 if (getpeername(fd, &sa, &length) < 0) {
978 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno) ));
979 return addr_buf;
982 fstrcpy(addr_buf,(char *)inet_ntoa(sockin->sin_addr));
984 return addr_buf;
987 /*******************************************************************
988 Create protected unix domain socket.
990 Some unixes cannot set permissions on a ux-dom-sock, so we
991 have to make sure that the directory contains the protection
992 permissions instead.
993 ******************************************************************/
995 int create_pipe_sock(const char *socket_dir,
996 const char *socket_name,
997 mode_t dir_perms)
999 #ifdef HAVE_UNIXSOCKET
1000 struct sockaddr_un sunaddr;
1001 struct stat st;
1002 int sock;
1003 mode_t old_umask;
1004 pstring path;
1006 old_umask = umask(0);
1008 /* Create the socket directory or reuse the existing one */
1010 if (lstat(socket_dir, &st) == -1) {
1011 if (errno == ENOENT) {
1012 /* Create directory */
1013 if (mkdir(socket_dir, dir_perms) == -1) {
1014 DEBUG(0, ("error creating socket directory "
1015 "%s: %s\n", socket_dir,
1016 strerror(errno)));
1017 goto out_umask;
1019 } else {
1020 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1021 socket_dir, strerror(errno)));
1022 goto out_umask;
1024 } else {
1025 /* Check ownership and permission on existing directory */
1026 if (!S_ISDIR(st.st_mode)) {
1027 DEBUG(0, ("socket directory %s isn't a directory\n",
1028 socket_dir));
1029 goto out_umask;
1031 if ((st.st_uid != sec_initial_uid()) ||
1032 ((st.st_mode & 0777) != dir_perms)) {
1033 DEBUG(0, ("invalid permissions on socket directory "
1034 "%s\n", socket_dir));
1035 goto out_umask;
1039 /* Create the socket file */
1041 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1043 if (sock == -1) {
1044 perror("socket");
1045 goto out_umask;
1048 pstr_sprintf(path, "%s/%s", socket_dir, socket_name);
1050 unlink(path);
1051 memset(&sunaddr, 0, sizeof(sunaddr));
1052 sunaddr.sun_family = AF_UNIX;
1053 safe_strcpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path)-1);
1055 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1) {
1056 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path,
1057 strerror(errno)));
1058 goto out_close;
1061 if (listen(sock, 5) == -1) {
1062 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path,
1063 strerror(errno)));
1064 goto out_close;
1067 umask(old_umask);
1068 return sock;
1070 out_close:
1071 close(sock);
1073 out_umask:
1074 umask(old_umask);
1075 return -1;
1077 #else
1078 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1079 return -1;
1080 #endif /* HAVE_UNIXSOCKET */