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.
24 /* the last IP received from */
25 struct in_addr lastip
;
27 /* the last port received from */
30 int smb_read_error
= 0;
32 static char *get_socket_addr(int fd
)
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");
45 if (getsockname(fd
, &sa
, &length
) < 0) {
46 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno
) ));
50 fstrcpy(addr_buf
,(char *)inet_ntoa(sockin
->sin_addr
));
55 /****************************************************************************
56 Determine if a file descriptor is in fact a socket.
57 ****************************************************************************/
59 BOOL
is_a_socket(int fd
)
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
{
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
},
82 {"TCP_NODELAY", IPPROTO_TCP
, TCP_NODELAY
, 0, OPT_BOOL
},
85 {"IPTOS_LOWDELAY", IPPROTO_IP
, IP_TOS
, IPTOS_LOWDELAY
, OPT_ON
},
87 #ifdef IPTOS_THROUGHPUT
88 {"IPTOS_THROUGHPUT", IPPROTO_IP
, IP_TOS
, IPTOS_THROUGHPUT
, OPT_ON
},
91 {"SO_REUSEPORT", SOL_SOCKET
, SO_REUSEPORT
, 0, OPT_BOOL
},
94 {"SO_SNDBUF", SOL_SOCKET
, SO_SNDBUF
, 0, OPT_INT
},
97 {"SO_RCVBUF", SOL_SOCKET
, SO_RCVBUF
, 0, OPT_INT
},
100 {"SO_SNDLOWAT", SOL_SOCKET
, SO_SNDLOWAT
, 0, OPT_INT
},
103 {"SO_RCVLOWAT", SOL_SOCKET
, SO_RCVLOWAT
, 0, OPT_INT
},
106 {"SO_SNDTIMEO", SOL_SOCKET
, SO_SNDTIMEO
, 0, OPT_INT
},
109 {"SO_RCVTIMEO", SOL_SOCKET
, SO_RCVTIMEO
, 0, OPT_INT
},
113 /****************************************************************************
114 Print socket options.
115 ****************************************************************************/
117 static void print_socket_options(int s
)
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
));
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
)
144 while (next_token(&options
,tok
," \t,", sizeof(tok
))) {
148 BOOL got_value
= False
;
150 if ((p
= strchr_m(tok
,'='))) {
156 for (i
=0;socket_options
[i
].name
;i
++)
157 if (strequal(socket_options
[i
].name
,tok
))
160 if (!socket_options
[i
].name
) {
161 DEBUG(0,("Unknown socket option %s\n",tok
));
165 switch (socket_options
[i
].opttype
) {
168 ret
= setsockopt(fd
,socket_options
[i
].level
,
169 socket_options
[i
].option
,(char *)&value
,sizeof(int));
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));
185 DEBUG(0,("Failed to set socket option %s (Error %s)\n",tok
, strerror(errno
) ));
188 print_socket_options(fd
);
191 /****************************************************************************
193 ****************************************************************************/
195 ssize_t
read_udp_socket(int fd
,char *buf
,size_t len
)
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
);
205 DEBUG(2,("read socket failed. ERRNO=%s\n",strerror(errno
)));
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
));
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
)
231 struct timeval timeout
;
233 /* just checking .... */
241 if (mincnt
== 0) mincnt
= maxcnt
;
243 while (nread
< mincnt
) {
244 readret
= sys_read(fd
, buf
+ nread
, maxcnt
- nread
);
247 DEBUG(5,("read_socket_with_timeout: blocking read. EOF from client.\n"));
248 smb_read_error
= READ_EOF
;
253 DEBUG(0,("read_socket_with_timeout: read error = %s.\n", strerror(errno
) ));
254 smb_read_error
= READ_ERROR
;
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
; ) {
276 selrtn
= sys_select_intr(fd
+1,&fds
,NULL
,NULL
,&timeout
);
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
;
286 /* Did we timeout ? */
288 DEBUG(10,("read_socket_with_timeout: timeout read. select timed out.\n"));
289 smb_read_error
= READ_TIMEOUT
;
293 readret
= sys_read(fd
, buf
+nread
, maxcnt
-nread
);
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
;
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
;
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
)
328 ret
= sys_read(fd
,buffer
+ total
,N
- total
);
331 DEBUG(10,("read_data: read of %d returned 0. Error = %s\n", (int)(N
- total
), strerror(errno
) ));
332 smb_read_error
= READ_EOF
;
337 DEBUG(0,("read_data: read failure for %d. Error = %s\n", (int)(N
- total
), strerror(errno
) ));
338 smb_read_error
= READ_ERROR
;
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
)
358 ret
= sys_read(fd
,buffer
+ total
,N
- total
);
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
;
367 DEBUG(0,("read_socket_data: recv failure for %d. Error = %s\n", (int)(N
- total
), strerror(errno
) ));
368 smb_read_error
= READ_ERROR
;
373 return (ssize_t
)total
;
376 /****************************************************************************
378 ****************************************************************************/
380 ssize_t
write_data(int fd
,char *buffer
,size_t N
)
386 ret
= sys_write(fd
,buffer
+ total
,N
- total
);
389 DEBUG(0,("write_data: write failure. Error = %s\n", strerror(errno
) ));
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
)
410 ret
= sys_send(fd
,buffer
+ total
,N
- total
,0);
413 DEBUG(0,("write_socket_data: write failure. Error = %s\n", strerror(errno
) ));
421 return (ssize_t
)total
;
424 /****************************************************************************
426 ****************************************************************************/
428 ssize_t
write_socket(int fd
,char *buf
,size_t len
)
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
));
437 DEBUG(0,("write_socket: Error writing %d bytes to socket %d: ERRNO = %s\n",
438 (int)len
, fd
, strerror(errno
) ));
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
463 Timeout is in milliseconds.
464 ****************************************************************************/
466 static ssize_t
read_smb_length_return_keepalive(int fd
,char *inbuf
,unsigned int timeout
)
474 ok
= (read_socket_with_timeout(fd
,inbuf
,4,4,timeout
) == 4);
476 ok
= (read_socket_data(fd
,inbuf
,4) == 4);
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
));
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
)
505 len
= read_smb_length_return_keepalive(fd
, inbuf
, timeout
);
510 /* Ignore session keepalives. */
511 if(CVAL(inbuf
,0) != SMBkeepalive
)
515 DEBUG(10,("read_smb_length: got smb length of %lu\n",
516 (unsigned long)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
)
535 memset(buffer
,'\0',smb_size
+ 100);
537 len
= read_smb_length_return_keepalive(fd
,buffer
,timeout
);
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
;
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
;
574 ret
= read_socket_data(fd
,buffer
+4,len
);
576 if (smb_read_error
== 0)
577 smb_read_error
= READ_ERROR
;
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);
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
)) {
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
;
611 /****************************************************************************
613 ****************************************************************************/
615 BOOL
send_smb(int fd
,char *buffer
)
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
);
629 DEBUG(0,("Error writing %d bytes to client. %d. (%s)\n",
630 (int)len
,(int)ret
, strerror(errno
) ));
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
;
648 memset( (char *)&sock
, '\0', sizeof(sock
) );
650 #ifdef HAVE_SOCK_SIN_LEN
651 sock
.sin_len
= sizeof(sock
);
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 );
660 dbgtext( "open_socket_in(): socket() call failed: " );
661 dbgtext( "%s\n", strerror( errno
) );
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
) );
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
) );
700 DEBUG( 10, ( "bind succeeded on port %d\n", port
) );
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
;
713 int connect_loop
= 10;
716 /* create a socket to write to */
717 res
= socket(PF_INET
, type
, 0);
719 DEBUG(0,("socket error (%s)\n", strerror(errno
)));
723 if (type
!= SOCK_STREAM
)
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 */
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 */
755 if (ret
< 0 && (errno
== EINPROGRESS
|| errno
== EALREADY
||
757 DEBUG(1,("timeout connecting to %s:%d\n",inet_ntoa(*addr
),port
));
764 if (ret
< 0 && errno
== EISCONN
) {
771 DEBUG(2,("error connecting to %s:%d (%s)\n",
772 inet_ntoa(*addr
),port
,strerror(errno
)));
777 /* set it blocking again */
778 set_blocking(res
,True
);
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
;
792 struct in_addr
*addr
;
794 addr
= interpret_addr2(host
);
796 res
= socket(PF_INET
, type
, 0);
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
))) {
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
)
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
) ));
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
)
863 if ((hp
= sys_gethostbyname(remotehost
)) == 0) {
864 DEBUG(0,("sys_gethostbyname(%s): lookup failure.\n", remotehost
));
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
));
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)
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
));
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
;
908 static fstring addr_buf
;
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
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)
927 pstrcpy(name_buf
,"UNKNOWN");
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
);
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
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");
960 /*******************************************************************
961 Return the IP addr of the remote end of a socket as a string.
962 ******************************************************************/
964 char *get_peer_addr(int fd
)
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");
977 if (getpeername(fd
, &sa
, &length
) < 0) {
978 DEBUG(0,("getpeername failed. Error was %s\n", strerror(errno
) ));
982 fstrcpy(addr_buf
,(char *)inet_ntoa(sockin
->sin_addr
));
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
993 ******************************************************************/
995 int create_pipe_sock(const char *socket_dir
,
996 const char *socket_name
,
999 #ifdef HAVE_UNIXSOCKET
1000 struct sockaddr_un sunaddr
;
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
,
1020 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1021 socket_dir
, strerror(errno
)));
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",
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
));
1039 /* Create the socket file */
1041 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1048 pstr_sprintf(path
, "%s/%s", socket_dir
, socket_name
);
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
,
1061 if (listen(sock
, 5) == -1) {
1062 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path
,
1078 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1080 #endif /* HAVE_UNIXSOCKET */