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-2007
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 3 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, see <http://www.gnu.org/licenses/>.
24 /*******************************************************************
25 Map a text hostname or IP address (IPv4 or IPv6) into a
26 struct sockaddr_storage.
27 ******************************************************************/
29 bool interpret_string_addr(struct sockaddr_storage
*pss
,
33 struct addrinfo
*res
= NULL
;
34 #if defined(HAVE_IPV6)
35 char addr
[INET6_ADDRSTRLEN
];
36 unsigned int scope_id
= 0;
38 if (strchr_m(str
, ':')) {
39 char *p
= strchr_m(str
, '%');
42 * Cope with link-local.
43 * This is IP:v6:addr%ifname.
46 if (p
&& (p
> str
) && ((scope_id
= if_nametoindex(p
+1)) != 0)) {
48 MIN(PTR_DIFF(p
,str
)+1,
57 if (!interpret_string_addr_internal(&res
, str
, flags
|AI_ADDRCONFIG
)) {
63 /* Copy the first sockaddr. */
64 memcpy(pss
, res
->ai_addr
, res
->ai_addrlen
);
66 #if defined(HAVE_IPV6)
67 if (pss
->ss_family
== AF_INET6
&& scope_id
) {
68 struct sockaddr_in6
*ps6
= (struct sockaddr_in6
*)pss
;
69 if (IN6_IS_ADDR_LINKLOCAL(&ps6
->sin6_addr
) &&
70 ps6
->sin6_scope_id
== 0) {
71 ps6
->sin6_scope_id
= scope_id
;
80 /*******************************************************************
81 Set an address to INADDR_ANY.
82 ******************************************************************/
84 void zero_sockaddr(struct sockaddr_storage
*pss
)
86 memset(pss
, '\0', sizeof(*pss
));
87 /* Ensure we're at least a valid sockaddr-storage. */
88 pss
->ss_family
= AF_INET
;
91 /****************************************************************************
92 Get a port number in host byte order from a sockaddr_storage.
93 ****************************************************************************/
95 uint16_t get_sockaddr_port(const struct sockaddr_storage
*pss
)
99 if (pss
->ss_family
!= AF_INET
) {
100 #if defined(HAVE_IPV6)
102 const struct sockaddr_in6
*sa6
=
103 (const struct sockaddr_in6
*)pss
;
104 port
= ntohs(sa6
->sin6_port
);
107 const struct sockaddr_in
*sa
=
108 (const struct sockaddr_in
*)pss
;
109 port
= ntohs(sa
->sin_port
);
114 /****************************************************************************
115 Print out an IPv4 or IPv6 address from a struct sockaddr_storage.
116 ****************************************************************************/
118 static char *print_sockaddr_len(char *dest
,
120 const struct sockaddr
*psa
,
126 (void)sys_getnameinfo(psa
,
134 /****************************************************************************
135 Print out an IPv4 or IPv6 address from a struct sockaddr_storage.
136 ****************************************************************************/
138 char *print_sockaddr(char *dest
,
140 const struct sockaddr_storage
*psa
)
142 return print_sockaddr_len(dest
, destlen
, (struct sockaddr
*)psa
,
143 sizeof(struct sockaddr_storage
));
146 /****************************************************************************
147 Print out a canonical IPv4 or IPv6 address from a struct sockaddr_storage.
148 ****************************************************************************/
150 char *print_canonical_sockaddr(TALLOC_CTX
*ctx
,
151 const struct sockaddr_storage
*pss
)
153 char addr
[INET6_ADDRSTRLEN
];
157 /* Linux getnameinfo() man pages says port is unitialized if
158 service name is NULL. */
160 ret
= sys_getnameinfo((const struct sockaddr
*)pss
,
161 sizeof(struct sockaddr_storage
),
169 if (pss
->ss_family
!= AF_INET
) {
170 #if defined(HAVE_IPV6)
171 dest
= talloc_asprintf(ctx
, "[%s]", addr
);
176 dest
= talloc_asprintf(ctx
, "%s", addr
);
182 /****************************************************************************
183 Return the string of an IP address (IPv4 or IPv6).
184 ****************************************************************************/
186 static const char *get_socket_addr(int fd
, char *addr_buf
, size_t addr_len
)
188 struct sockaddr_storage sa
;
189 socklen_t length
= sizeof(sa
);
191 /* Ok, returning a hard coded IPv4 address
192 * is bogus, but it's just as bogus as a
193 * zero IPv6 address. No good choice here.
196 strlcpy(addr_buf
, "0.0.0.0", addr_len
);
202 if (getsockname(fd
, (struct sockaddr
*)&sa
, &length
) < 0) {
203 DEBUG(0,("getsockname failed. Error was %s\n",
208 return print_sockaddr_len(addr_buf
, addr_len
, (struct sockaddr
*)&sa
, length
);
212 /* Not currently used. JRA. */
213 /****************************************************************************
214 Return the port number we've bound to on a socket.
215 ****************************************************************************/
217 static int get_socket_port(int fd
)
219 struct sockaddr_storage sa
;
220 socklen_t length
= sizeof(sa
);
226 if (getsockname(fd
, (struct sockaddr
*)&sa
, &length
) < 0) {
227 DEBUG(0,("getpeername failed. Error was %s\n",
232 #if defined(HAVE_IPV6)
233 if (sa
.ss_family
== AF_INET6
) {
234 return ntohs(((struct sockaddr_in6
*)&sa
)->sin6_port
);
237 if (sa
.ss_family
== AF_INET
) {
238 return ntohs(((struct sockaddr_in
*)&sa
)->sin_port
);
244 const char *client_name(int fd
)
246 return get_peer_name(fd
,false);
249 const char *client_addr(int fd
, char *addr
, size_t addrlen
)
251 return get_peer_addr(fd
,addr
,addrlen
);
254 const char *client_socket_addr(int fd
, char *addr
, size_t addr_len
)
256 return get_socket_addr(fd
, addr
, addr_len
);
260 /* Not currently used. JRA. */
261 int client_socket_port(int fd
)
263 return get_socket_port(fd
);
267 /****************************************************************************
268 Accessor functions to make thread-safe code easier later...
269 ****************************************************************************/
271 void set_smb_read_error(enum smb_read_errors
*pre
,
272 enum smb_read_errors newerr
)
279 void cond_set_smb_read_error(enum smb_read_errors
*pre
,
280 enum smb_read_errors newerr
)
282 if (pre
&& *pre
== SMB_READ_OK
) {
287 /****************************************************************************
288 Determine if a file descriptor is in fact a socket.
289 ****************************************************************************/
291 bool is_a_socket(int fd
)
296 return(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&v
, &l
) == 0);
299 enum SOCK_OPT_TYPES
{OPT_BOOL
,OPT_INT
,OPT_ON
};
301 typedef struct smb_socket_option
{
309 static const smb_socket_option socket_options
[] = {
310 {"SO_KEEPALIVE", SOL_SOCKET
, SO_KEEPALIVE
, 0, OPT_BOOL
},
311 {"SO_REUSEADDR", SOL_SOCKET
, SO_REUSEADDR
, 0, OPT_BOOL
},
312 {"SO_BROADCAST", SOL_SOCKET
, SO_BROADCAST
, 0, OPT_BOOL
},
314 {"TCP_NODELAY", IPPROTO_TCP
, TCP_NODELAY
, 0, OPT_BOOL
},
317 {"TCP_KEEPCNT", IPPROTO_TCP
, TCP_KEEPCNT
, 0, OPT_INT
},
320 {"TCP_KEEPIDLE", IPPROTO_TCP
, TCP_KEEPIDLE
, 0, OPT_INT
},
323 {"TCP_KEEPINTVL", IPPROTO_TCP
, TCP_KEEPINTVL
, 0, OPT_INT
},
325 #ifdef IPTOS_LOWDELAY
326 {"IPTOS_LOWDELAY", IPPROTO_IP
, IP_TOS
, IPTOS_LOWDELAY
, OPT_ON
},
328 #ifdef IPTOS_THROUGHPUT
329 {"IPTOS_THROUGHPUT", IPPROTO_IP
, IP_TOS
, IPTOS_THROUGHPUT
, OPT_ON
},
332 {"SO_REUSEPORT", SOL_SOCKET
, SO_REUSEPORT
, 0, OPT_BOOL
},
335 {"SO_SNDBUF", SOL_SOCKET
, SO_SNDBUF
, 0, OPT_INT
},
338 {"SO_RCVBUF", SOL_SOCKET
, SO_RCVBUF
, 0, OPT_INT
},
341 {"SO_SNDLOWAT", SOL_SOCKET
, SO_SNDLOWAT
, 0, OPT_INT
},
344 {"SO_RCVLOWAT", SOL_SOCKET
, SO_RCVLOWAT
, 0, OPT_INT
},
347 {"SO_SNDTIMEO", SOL_SOCKET
, SO_SNDTIMEO
, 0, OPT_INT
},
350 {"SO_RCVTIMEO", SOL_SOCKET
, SO_RCVTIMEO
, 0, OPT_INT
},
353 {"TCP_FASTACK", IPPROTO_TCP
, TCP_FASTACK
, 0, OPT_INT
},
357 /****************************************************************************
358 Print socket options.
359 ****************************************************************************/
361 static void print_socket_options(int s
)
365 const smb_socket_option
*p
= &socket_options
[0];
367 /* wrapped in if statement to prevent streams
368 * leak in SCO Openserver 5.0 */
369 /* reported on samba-technical --jerry */
370 if ( DEBUGLEVEL
>= 5 ) {
371 DEBUG(5,("Socket options:\n"));
372 for (; p
->name
!= NULL
; p
++) {
373 if (getsockopt(s
, p
->level
, p
->option
,
374 (void *)&value
, &vlen
) == -1) {
375 DEBUGADD(5,("\tCould not test socket option %s.\n",
378 DEBUGADD(5,("\t%s = %d\n",
385 /****************************************************************************
386 Set user socket options.
387 ****************************************************************************/
389 void set_socket_options(int fd
, const char *options
)
391 TALLOC_CTX
*ctx
= talloc_stackframe();
394 while (next_token_talloc(ctx
, &options
, &tok
," \t,")) {
398 bool got_value
= false;
400 if ((p
= strchr_m(tok
,'='))) {
406 for (i
=0;socket_options
[i
].name
;i
++)
407 if (strequal(socket_options
[i
].name
,tok
))
410 if (!socket_options
[i
].name
) {
411 DEBUG(0,("Unknown socket option %s\n",tok
));
415 switch (socket_options
[i
].opttype
) {
418 ret
= setsockopt(fd
,socket_options
[i
].level
,
419 socket_options
[i
].option
,
420 (char *)&value
,sizeof(int));
425 DEBUG(0,("syntax error - %s "
426 "does not take a value\n",tok
));
429 int on
= socket_options
[i
].value
;
430 ret
= setsockopt(fd
,socket_options
[i
].level
,
431 socket_options
[i
].option
,
432 (char *)&on
,sizeof(int));
438 /* be aware that some systems like Solaris return
439 * EINVAL to a setsockopt() call when the client
440 * sent a RST previously - no need to worry */
441 DEBUG(2,("Failed to set socket option %s (Error %s)\n",
442 tok
, strerror(errno
) ));
447 print_socket_options(fd
);
450 /****************************************************************************
452 ****************************************************************************/
454 ssize_t
read_udp_v4_socket(int fd
,
457 struct sockaddr_storage
*psa
)
460 socklen_t socklen
= sizeof(*psa
);
461 struct sockaddr_in
*si
= (struct sockaddr_in
*)psa
;
463 memset((char *)psa
,'\0',socklen
);
465 ret
= (ssize_t
)sys_recvfrom(fd
,buf
,len
,0,
466 (struct sockaddr
*)psa
,&socklen
);
468 /* Don't print a low debug error for a non-blocking socket. */
469 if (errno
== EAGAIN
) {
470 DEBUG(10,("read_udp_v4_socket: returned EAGAIN\n"));
472 DEBUG(2,("read_udp_v4_socket: failed. errno=%s\n",
478 if (psa
->ss_family
!= AF_INET
) {
479 DEBUG(2,("read_udp_v4_socket: invalid address family %d "
480 "(not IPv4)\n", (int)psa
->ss_family
));
484 DEBUG(10,("read_udp_v4_socket: ip %s port %d read: %lu\n",
485 inet_ntoa(si
->sin_addr
),
487 (unsigned long)ret
));
492 /****************************************************************************
493 Read data from a socket with a timout in msec.
494 mincount = if timeout, minimum to read before returning
495 maxcount = number to be read.
496 time_out = timeout in milliseconds
497 ****************************************************************************/
499 NTSTATUS
read_socket_with_timeout(int fd
, char *buf
,
500 size_t mincnt
, size_t maxcnt
,
501 unsigned int time_out
,
508 struct timeval timeout
;
509 char addr
[INET6_ADDRSTRLEN
];
511 /* just checking .... */
521 while (nread
< mincnt
) {
522 readret
= sys_read(fd
, buf
+ nread
, maxcnt
- nread
);
525 DEBUG(5,("read_socket_with_timeout: "
526 "blocking read. EOF from client.\n"));
527 return NT_STATUS_END_OF_FILE
;
531 if (fd
== get_client_fd()) {
532 /* Try and give an error message
533 * saying what client failed. */
534 DEBUG(0,("read_socket_with_timeout: "
535 "client %s read error = %s.\n",
536 get_peer_addr(fd
,addr
,sizeof(addr
)),
539 DEBUG(0,("read_socket_with_timeout: "
540 "read error = %s.\n",
543 return map_nt_error_from_unix(errno
);
550 /* Most difficult - timeout read */
551 /* If this is ever called on a disk file and
552 mincnt is greater then the filesize then
553 system performance will suffer severely as
554 select always returns true on disk files */
556 /* Set initial timeout */
557 timeout
.tv_sec
= (time_t)(time_out
/ 1000);
558 timeout
.tv_usec
= (long)(1000 * (time_out
% 1000));
560 for (nread
=0; nread
< mincnt
; ) {
564 selrtn
= sys_select_intr(fd
+1,&fds
,NULL
,NULL
,&timeout
);
568 /* something is wrong. Maybe the socket is dead? */
569 if (fd
== get_client_fd()) {
570 /* Try and give an error message saying
571 * what client failed. */
572 DEBUG(0,("read_socket_with_timeout: timeout "
573 "read for client %s. select error = %s.\n",
574 get_peer_addr(fd
,addr
,sizeof(addr
)),
577 DEBUG(0,("read_socket_with_timeout: timeout "
578 "read. select error = %s.\n",
581 return map_nt_error_from_unix(errno
);
584 /* Did we timeout ? */
586 DEBUG(10,("read_socket_with_timeout: timeout read. "
587 "select timed out.\n"));
588 return NT_STATUS_IO_TIMEOUT
;
591 readret
= sys_read(fd
, buf
+nread
, maxcnt
-nread
);
594 /* we got EOF on the file descriptor */
595 DEBUG(5,("read_socket_with_timeout: timeout read. "
596 "EOF from client.\n"));
597 return NT_STATUS_END_OF_FILE
;
601 /* the descriptor is probably dead */
602 if (fd
== get_client_fd()) {
603 /* Try and give an error message
604 * saying what client failed. */
605 DEBUG(0,("read_socket_with_timeout: timeout "
606 "read to client %s. read error = %s.\n",
607 get_peer_addr(fd
,addr
,sizeof(addr
)),
610 DEBUG(0,("read_socket_with_timeout: timeout "
611 "read. read error = %s.\n",
614 return map_nt_error_from_unix(errno
);
621 /* Return the number we got */
628 /****************************************************************************
629 Read data from the client, reading exactly N bytes.
630 ****************************************************************************/
632 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
)
634 return read_socket_with_timeout(fd
, buffer
, N
, N
, 0, NULL
);
637 /****************************************************************************
638 Write all data from an iov array
639 ****************************************************************************/
641 ssize_t
write_data_iov(int fd
, const struct iovec
*orig_iov
, int iovcnt
)
647 struct iovec
*iov_copy
, *iov
;
650 for (i
=0; i
<iovcnt
; i
++) {
651 to_send
+= orig_iov
[i
].iov_len
;
654 thistime
= sys_writev(fd
, orig_iov
, iovcnt
);
655 if ((thistime
<= 0) || (thistime
== to_send
)) {
661 * We could not send everything in one call. Make a copy of iov that
662 * we can mess with. We keep a copy of the array start in iov_copy for
663 * the TALLOC_FREE, because we're going to modify iov later on,
664 * discarding elements.
667 iov_copy
= (struct iovec
*)TALLOC_MEMDUP(
668 talloc_tos(), orig_iov
, sizeof(struct iovec
) * iovcnt
);
670 if (iov_copy
== NULL
) {
676 while (sent
< to_send
) {
678 * We have to discard "thistime" bytes from the beginning
679 * iov array, "thistime" contains the number of bytes sent
682 while (thistime
> 0) {
683 if (thistime
< iov
[0].iov_len
) {
685 (char *)iov
[0].iov_base
+ thistime
;
686 iov
[0].iov_base
= new_base
;
687 iov
[0].iov_len
-= thistime
;
690 thistime
-= iov
[0].iov_len
;
695 thistime
= sys_writev(fd
, iov
, iovcnt
);
702 TALLOC_FREE(iov_copy
);
706 /****************************************************************************
708 ****************************************************************************/
710 ssize_t
write_data(int fd
, const char *buffer
, size_t N
)
715 iov
.iov_base
= CONST_DISCARD(char *, buffer
);
718 ret
= write_data_iov(fd
, &iov
, 1);
723 if (fd
== get_client_fd()) {
724 char addr
[INET6_ADDRSTRLEN
];
726 * Try and give an error message saying what client failed.
728 DEBUG(0, ("write_data: write failure in writing to client %s. "
729 "Error %s\n", get_peer_addr(fd
,addr
,sizeof(addr
)),
732 DEBUG(0,("write_data: write failure. Error = %s\n",
739 /****************************************************************************
740 Send a keepalive packet (rfc1002).
741 ****************************************************************************/
743 bool send_keepalive(int client
)
745 unsigned char buf
[4];
747 buf
[0] = SMBkeepalive
;
748 buf
[1] = buf
[2] = buf
[3] = 0;
750 return(write_data(client
,(char *)buf
,4) == 4);
753 /****************************************************************************
754 Read 4 bytes of a smb packet and return the smb length of the packet.
755 Store the result in the buffer.
756 This version of the function will return a length of zero on receiving
758 Timeout is in milliseconds.
759 ****************************************************************************/
761 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
762 unsigned int timeout
,
768 status
= read_socket_with_timeout(fd
, inbuf
, 4, 4, timeout
, NULL
);
770 if (!NT_STATUS_IS_OK(status
)) {
774 *len
= smb_len(inbuf
);
775 msg_type
= CVAL(inbuf
,0);
777 if (msg_type
== SMBkeepalive
) {
778 DEBUG(5,("Got keepalive packet\n"));
781 DEBUG(10,("got smb length of %lu\n",(unsigned long)(*len
)));
786 /****************************************************************************
787 Read 4 bytes of a smb packet and return the smb length of the packet.
788 Store the result in the buffer. This version of the function will
789 never return a session keepalive (length of zero).
790 Timeout is in milliseconds.
791 ****************************************************************************/
793 NTSTATUS
read_smb_length(int fd
, char *inbuf
, unsigned int timeout
,
796 uint8_t msgtype
= SMBkeepalive
;
798 while (msgtype
== SMBkeepalive
) {
801 status
= read_smb_length_return_keepalive(fd
, inbuf
, timeout
,
803 if (!NT_STATUS_IS_OK(status
)) {
807 msgtype
= CVAL(inbuf
, 0);
810 DEBUG(10,("read_smb_length: got smb length of %lu\n",
811 (unsigned long)len
));
816 /****************************************************************************
817 Read an smb from a fd.
818 The timeout is in milliseconds.
819 This function will return on receipt of a session keepalive packet.
820 maxlen is the max number of bytes to return, not including the 4 byte
821 length. If zero it means buflen limit.
822 Doesn't check the MAC on signed packets.
823 ****************************************************************************/
825 NTSTATUS
receive_smb_raw(int fd
, char *buffer
, size_t buflen
, unsigned int timeout
,
826 size_t maxlen
, size_t *p_len
)
831 status
= read_smb_length_return_keepalive(fd
,buffer
,timeout
,&len
);
833 if (!NT_STATUS_IS_OK(status
)) {
834 DEBUG(10, ("receive_smb_raw: %s!\n", nt_errstr(status
)));
839 DEBUG(0,("Invalid packet length! (%lu bytes).\n",
840 (unsigned long)len
));
841 return NT_STATUS_INVALID_PARAMETER
;
846 len
= MIN(len
,maxlen
);
849 status
= read_socket_with_timeout(
850 fd
, buffer
+4, len
, len
, timeout
, &len
);
852 if (!NT_STATUS_IS_OK(status
)) {
856 /* not all of samba3 properly checks for packet-termination
857 * of strings. This ensures that we don't run off into
859 SSVAL(buffer
+4,len
, 0);
866 /****************************************************************************
867 Open a socket of the specified type, port, and address for incoming data.
868 ****************************************************************************/
870 int open_socket_in(int type
,
873 const struct sockaddr_storage
*psock
,
876 struct sockaddr_storage sock
;
878 socklen_t slen
= sizeof(struct sockaddr_in
);
882 #if defined(HAVE_IPV6)
883 if (sock
.ss_family
== AF_INET6
) {
884 ((struct sockaddr_in6
*)&sock
)->sin6_port
= htons(port
);
885 slen
= sizeof(struct sockaddr_in6
);
888 if (sock
.ss_family
== AF_INET
) {
889 ((struct sockaddr_in
*)&sock
)->sin_port
= htons(port
);
892 res
= socket(sock
.ss_family
, type
, 0 );
895 dbgtext( "open_socket_in(): socket() call failed: " );
896 dbgtext( "%s\n", strerror( errno
) );
901 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
903 int val
= rebind
? 1 : 0;
904 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEADDR
,
905 (char *)&val
,sizeof(val
)) == -1 ) {
906 if( DEBUGLVL( dlevel
) ) {
907 dbgtext( "open_socket_in(): setsockopt: " );
908 dbgtext( "SO_REUSEADDR = %s ",
909 val
?"true":"false" );
910 dbgtext( "on port %d failed ", port
);
911 dbgtext( "with error = %s\n", strerror(errno
) );
915 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEPORT
,
916 (char *)&val
,sizeof(val
)) == -1 ) {
917 if( DEBUGLVL( dlevel
) ) {
918 dbgtext( "open_socket_in(): setsockopt: ");
919 dbgtext( "SO_REUSEPORT = %s ",
921 dbgtext( "on port %d failed ", port
);
922 dbgtext( "with error = %s\n", strerror(errno
));
925 #endif /* SO_REUSEPORT */
928 /* now we've got a socket - we need to bind it */
929 if (bind(res
, (struct sockaddr
*)&sock
, slen
) == -1 ) {
930 if( DEBUGLVL(dlevel
) && (port
== SMB_PORT1
||
931 port
== SMB_PORT2
|| port
== NMB_PORT
) ) {
932 char addr
[INET6_ADDRSTRLEN
];
933 print_sockaddr(addr
, sizeof(addr
),
935 dbgtext( "bind failed on port %d ", port
);
936 dbgtext( "socket_addr = %s.\n", addr
);
937 dbgtext( "Error = %s\n", strerror(errno
));
943 DEBUG( 10, ( "bind succeeded on port %d\n", port
) );
947 struct open_socket_out_state
{
949 struct event_context
*ev
;
950 struct sockaddr_storage ss
;
956 static void open_socket_out_connected(struct async_req
*subreq
);
958 static int open_socket_out_state_destructor(struct open_socket_out_state
*s
)
966 /****************************************************************************
967 Create an outgoing socket. timeout is in milliseconds.
968 **************************************************************************/
970 struct async_req
*open_socket_out_send(TALLOC_CTX
*mem_ctx
,
971 struct event_context
*ev
,
972 const struct sockaddr_storage
*pss
,
976 char addr
[INET6_ADDRSTRLEN
];
977 struct async_req
*result
, *subreq
;
978 struct open_socket_out_state
*state
;
981 result
= async_req_new(mem_ctx
);
982 if (result
== NULL
) {
985 state
= talloc(result
, struct open_socket_out_state
);
989 result
->private_data
= state
;
994 state
->wait_nsec
= 10000;
997 state
->fd
= socket(state
->ss
.ss_family
, SOCK_STREAM
, 0);
998 if (state
->fd
== -1) {
999 status
= map_nt_error_from_unix(errno
);
1002 talloc_set_destructor(state
, open_socket_out_state_destructor
);
1004 if (!async_req_set_timeout(result
, ev
, timeval_set(0, timeout
*1000))) {
1008 #if defined(HAVE_IPV6)
1009 if (pss
->ss_family
== AF_INET6
) {
1010 struct sockaddr_in6
*psa6
;
1011 psa6
= (struct sockaddr_in6
*)&state
->ss
;
1012 psa6
->sin6_port
= htons(port
);
1013 if (psa6
->sin6_scope_id
== 0
1014 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
1015 setup_linklocal_scope_id(
1016 (struct sockaddr
*)&(state
->ss
));
1018 state
->salen
= sizeof(struct sockaddr_in6
);
1021 if (pss
->ss_family
== AF_INET
) {
1022 struct sockaddr_in
*psa
;
1023 psa
= (struct sockaddr_in
*)&state
->ss
;
1024 psa
->sin_port
= htons(port
);
1025 state
->salen
= sizeof(struct sockaddr_in
);
1028 print_sockaddr(addr
, sizeof(addr
), &state
->ss
);
1029 DEBUG(3,("Connecting to %s at port %u\n", addr
, (unsigned int)port
));
1031 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
1032 (struct sockaddr
*)&state
->ss
,
1034 if ((subreq
== NULL
)
1035 || !async_req_set_timeout(subreq
, state
->ev
,
1036 timeval_set(0, state
->wait_nsec
))) {
1037 status
= NT_STATUS_NO_MEMORY
;
1040 subreq
->async
.fn
= open_socket_out_connected
;
1041 subreq
->async
.priv
= result
;
1045 if (!async_post_status(result
, ev
, status
)) {
1050 TALLOC_FREE(result
);
1054 static void open_socket_out_connected(struct async_req
*subreq
)
1056 struct async_req
*req
= talloc_get_type_abort(
1057 subreq
->async
.priv
, struct async_req
);
1058 struct open_socket_out_state
*state
= talloc_get_type_abort(
1059 req
->private_data
, struct open_socket_out_state
);
1063 status
= async_connect_recv(subreq
, &sys_errno
);
1064 TALLOC_FREE(subreq
);
1065 if (NT_STATUS_IS_OK(status
)) {
1066 async_req_done(req
);
1070 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)
1071 || (sys_errno
== EINPROGRESS
)
1072 || (sys_errno
== EALREADY
)
1073 || (sys_errno
== EAGAIN
)) {
1079 if (state
->wait_nsec
< 250000) {
1080 state
->wait_nsec
*= 1.5;
1083 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
1084 (struct sockaddr
*)&state
->ss
,
1086 if (async_req_nomem(subreq
, req
)) {
1089 if (!async_req_set_timeout(subreq
, state
->ev
,
1090 timeval_set(0, state
->wait_nsec
))) {
1091 async_req_error(req
, NT_STATUS_NO_MEMORY
);
1094 subreq
->async
.fn
= open_socket_out_connected
;
1095 subreq
->async
.priv
= req
;
1100 if (sys_errno
== EISCONN
) {
1101 async_req_done(req
);
1107 async_req_error(req
, map_nt_error_from_unix(sys_errno
));
1110 NTSTATUS
open_socket_out_recv(struct async_req
*req
, int *pfd
)
1112 struct open_socket_out_state
*state
= talloc_get_type_abort(
1113 req
->private_data
, struct open_socket_out_state
);
1116 if (async_req_is_error(req
, &status
)) {
1121 return NT_STATUS_OK
;
1124 NTSTATUS
open_socket_out(const struct sockaddr_storage
*pss
, uint16_t port
,
1125 int timeout
, int *pfd
)
1127 TALLOC_CTX
*frame
= talloc_stackframe();
1128 struct event_context
*ev
;
1129 struct async_req
*req
;
1130 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
1132 ev
= event_context_init(frame
);
1137 req
= open_socket_out_send(frame
, ev
, pss
, port
, timeout
);
1141 while (req
->state
< ASYNC_REQ_DONE
) {
1142 event_loop_once(ev
);
1145 status
= open_socket_out_recv(req
, pfd
);
1151 struct open_socket_out_defer_state
{
1152 struct event_context
*ev
;
1153 struct sockaddr_storage ss
;
1159 static void open_socket_out_defer_waited(struct async_req
*subreq
);
1160 static void open_socket_out_defer_connected(struct async_req
*subreq
);
1162 struct async_req
*open_socket_out_defer_send(TALLOC_CTX
*mem_ctx
,
1163 struct event_context
*ev
,
1164 struct timeval wait_time
,
1165 const struct sockaddr_storage
*pss
,
1169 struct async_req
*result
, *subreq
;
1170 struct open_socket_out_defer_state
*state
;
1173 result
= async_req_new(mem_ctx
);
1174 if (result
== NULL
) {
1177 state
= talloc(result
, struct open_socket_out_defer_state
);
1178 if (state
== NULL
) {
1181 result
->private_data
= state
;
1186 state
->timeout
= timeout
;
1188 subreq
= async_wait_send(state
, ev
, wait_time
);
1189 if (subreq
== NULL
) {
1190 status
= NT_STATUS_NO_MEMORY
;
1193 subreq
->async
.fn
= open_socket_out_defer_waited
;
1194 subreq
->async
.priv
= result
;
1198 if (!async_post_status(result
, ev
, status
)) {
1203 TALLOC_FREE(result
);
1207 static void open_socket_out_defer_waited(struct async_req
*subreq
)
1209 struct async_req
*req
= talloc_get_type_abort(
1210 subreq
->async
.priv
, struct async_req
);
1211 struct open_socket_out_defer_state
*state
= talloc_get_type_abort(
1212 req
->private_data
, struct open_socket_out_defer_state
);
1215 status
= async_wait_recv(subreq
);
1216 TALLOC_FREE(subreq
);
1217 if (!NT_STATUS_IS_OK(status
)) {
1218 async_req_error(req
, status
);
1222 subreq
= open_socket_out_send(state
, state
->ev
, &state
->ss
,
1223 state
->port
, state
->timeout
);
1224 if (async_req_nomem(subreq
, req
)) {
1227 subreq
->async
.fn
= open_socket_out_defer_connected
;
1228 subreq
->async
.priv
= req
;
1231 static void open_socket_out_defer_connected(struct async_req
*subreq
)
1233 struct async_req
*req
= talloc_get_type_abort(
1234 subreq
->async
.priv
, struct async_req
);
1235 struct open_socket_out_defer_state
*state
= talloc_get_type_abort(
1236 req
->private_data
, struct open_socket_out_defer_state
);
1239 status
= open_socket_out_recv(subreq
, &state
->fd
);
1240 TALLOC_FREE(subreq
);
1241 if (!NT_STATUS_IS_OK(status
)) {
1242 async_req_error(req
, status
);
1245 async_req_done(req
);
1248 NTSTATUS
open_socket_out_defer_recv(struct async_req
*req
, int *pfd
)
1250 struct open_socket_out_defer_state
*state
= talloc_get_type_abort(
1251 req
->private_data
, struct open_socket_out_defer_state
);
1254 if (async_req_is_error(req
, &status
)) {
1259 return NT_STATUS_OK
;
1262 /*******************************************************************
1263 Create an outgoing TCP socket to the first addr that connects.
1265 This is for simultaneous connection attempts to port 445 and 139 of a host
1266 or for simultatneous connection attempts to multiple DCs at once. We return
1267 a socket fd of the first successful connection.
1269 @param[in] addrs list of Internet addresses and ports to connect to
1270 @param[in] num_addrs number of address/port pairs in the addrs list
1271 @param[in] timeout time after which we stop waiting for a socket connection
1272 to succeed, given in milliseconds
1273 @param[out] fd_index the entry in addrs which we successfully connected to
1274 @param[out] fd fd of the open and connected socket
1275 @return true on a successful connection, false if all connection attempts
1276 failed or we timed out
1277 *******************************************************************/
1279 bool open_any_socket_out(struct sockaddr_storage
*addrs
, int num_addrs
,
1280 int timeout
, int *fd_index
, int *fd
)
1282 int i
, resulting_index
, res
;
1286 fd_set r_fds
, wr_fds
;
1290 int connect_loop
= 10000; /* 10 milliseconds */
1292 timeout
*= 1000; /* convert to microseconds */
1294 sockets
= SMB_MALLOC_ARRAY(int, num_addrs
);
1296 if (sockets
== NULL
)
1299 resulting_index
= -1;
1301 for (i
=0; i
<num_addrs
; i
++)
1304 for (i
=0; i
<num_addrs
; i
++) {
1305 sockets
[i
] = socket(addrs
[i
].ss_family
, SOCK_STREAM
, 0);
1308 set_blocking(sockets
[i
], false);
1312 good_connect
= false;
1314 for (i
=0; i
<num_addrs
; i
++) {
1315 const struct sockaddr
* a
=
1316 (const struct sockaddr
*)&(addrs
[i
]);
1318 if (sockets
[i
] == -1)
1321 if (sys_connect(sockets
[i
], a
) == 0) {
1322 /* Rather unlikely as we are non-blocking, but it
1323 * might actually happen. */
1324 resulting_index
= i
;
1328 if (errno
== EINPROGRESS
|| errno
== EALREADY
||
1332 errno
== EAGAIN
|| errno
== EINTR
) {
1333 /* These are the error messages that something is
1335 good_connect
= true;
1336 } else if (errno
!= 0) {
1337 /* There was a direct error */
1343 if (!good_connect
) {
1344 /* All of the connect's resulted in real error conditions */
1348 /* Lets see if any of the connect attempts succeeded */
1354 for (i
=0; i
<num_addrs
; i
++) {
1355 if (sockets
[i
] == -1)
1357 FD_SET(sockets
[i
], &wr_fds
);
1358 FD_SET(sockets
[i
], &r_fds
);
1359 if (sockets
[i
]>maxfd
)
1364 tv
.tv_usec
= connect_loop
;
1366 res
= sys_select_intr(maxfd
+1, &r_fds
, &wr_fds
, NULL
, &tv
);
1374 for (i
=0; i
<num_addrs
; i
++) {
1376 if (sockets
[i
] == -1)
1379 /* Stevens, Network Programming says that if there's a
1380 * successful connect, the socket is only writable. Upon an
1381 * error, it's both readable and writable. */
1383 if (FD_ISSET(sockets
[i
], &r_fds
) &&
1384 FD_ISSET(sockets
[i
], &wr_fds
)) {
1385 /* readable and writable, so it's an error */
1391 if (!FD_ISSET(sockets
[i
], &r_fds
) &&
1392 FD_ISSET(sockets
[i
], &wr_fds
)) {
1393 /* Only writable, so it's connected */
1394 resulting_index
= i
;
1401 timeout
-= connect_loop
;
1404 connect_loop
*= 1.5;
1405 if (connect_loop
> timeout
)
1406 connect_loop
= timeout
;
1410 for (i
=0; i
<num_addrs
; i
++) {
1411 if (i
== resulting_index
)
1413 if (sockets
[i
] >= 0)
1417 if (resulting_index
>= 0) {
1418 *fd_index
= resulting_index
;
1419 *fd
= sockets
[*fd_index
];
1420 set_blocking(*fd
, true);
1425 return (resulting_index
>= 0);
1427 /****************************************************************************
1428 Open a connected UDP socket to host on port
1429 **************************************************************************/
1431 int open_udp_socket(const char *host
, int port
)
1433 int type
= SOCK_DGRAM
;
1434 struct sockaddr_in sock_out
;
1436 struct in_addr addr
;
1438 addr
= interpret_addr2(host
);
1440 res
= socket(PF_INET
, type
, 0);
1445 memset((char *)&sock_out
,'\0',sizeof(sock_out
));
1446 putip((char *)&sock_out
.sin_addr
,(char *)&addr
);
1447 sock_out
.sin_port
= htons(port
);
1448 sock_out
.sin_family
= PF_INET
;
1450 if (sys_connect(res
,(struct sockaddr
*)&sock_out
)) {
1458 /*******************************************************************
1459 Return the IP addr of the remote end of a socket as a string.
1460 Optionally return the struct sockaddr_storage.
1461 ******************************************************************/
1463 static const char *get_peer_addr_internal(int fd
,
1465 size_t addr_buf_len
,
1466 struct sockaddr
*pss
,
1469 struct sockaddr_storage ss
;
1470 socklen_t length
= sizeof(ss
);
1472 strlcpy(addr_buf
,"0.0.0.0",addr_buf_len
);
1479 pss
= (struct sockaddr
*)&ss
;
1483 if (getpeername(fd
, (struct sockaddr
*)pss
, plength
) < 0) {
1484 DEBUG(0,("getpeername failed. Error was %s\n",
1489 print_sockaddr_len(addr_buf
,
1496 /*******************************************************************
1497 Matchname - determine if host name matches IP address. Used to
1498 confirm a hostname lookup to prevent spoof attacks.
1499 ******************************************************************/
1501 static bool matchname(const char *remotehost
,
1502 const struct sockaddr
*pss
,
1505 struct addrinfo
*res
= NULL
;
1506 struct addrinfo
*ailist
= NULL
;
1507 char addr_buf
[INET6_ADDRSTRLEN
];
1508 bool ret
= interpret_string_addr_internal(&ailist
,
1510 AI_ADDRCONFIG
|AI_CANONNAME
);
1512 if (!ret
|| ailist
== NULL
) {
1513 DEBUG(3,("matchname: getaddrinfo failed for "
1516 gai_strerror(ret
) ));
1521 * Make sure that getaddrinfo() returns the "correct" host name.
1524 if (ailist
->ai_canonname
== NULL
||
1525 (!strequal(remotehost
, ailist
->ai_canonname
) &&
1526 !strequal(remotehost
, "localhost"))) {
1527 DEBUG(0,("matchname: host name/name mismatch: %s != %s\n",
1529 ailist
->ai_canonname
?
1530 ailist
->ai_canonname
: "(NULL)"));
1531 freeaddrinfo(ailist
);
1535 /* Look up the host address in the address list we just got. */
1536 for (res
= ailist
; res
; res
= res
->ai_next
) {
1537 if (!res
->ai_addr
) {
1540 if (sockaddr_equal((const struct sockaddr
*)res
->ai_addr
,
1541 (struct sockaddr
*)pss
)) {
1542 freeaddrinfo(ailist
);
1548 * The host name does not map to the original host address. Perhaps
1549 * someone has compromised a name server. More likely someone botched
1550 * it, but that could be dangerous, too.
1553 DEBUG(0,("matchname: host name/address mismatch: %s != %s\n",
1554 print_sockaddr_len(addr_buf
,
1558 ailist
->ai_canonname
? ailist
->ai_canonname
: "(NULL)"));
1561 freeaddrinfo(ailist
);
1566 /*******************************************************************
1567 Deal with the singleton cache.
1568 ******************************************************************/
1570 struct name_addr_pair
{
1571 struct sockaddr_storage ss
;
1575 /*******************************************************************
1576 Lookup a name/addr pair. Returns memory allocated from memcache.
1577 ******************************************************************/
1579 static bool lookup_nc(struct name_addr_pair
*nc
)
1585 if (!memcache_lookup(
1586 NULL
, SINGLETON_CACHE
,
1587 data_blob_string_const_null("get_peer_name"),
1592 memcpy(&nc
->ss
, tmp
.data
, sizeof(nc
->ss
));
1593 nc
->name
= (const char *)tmp
.data
+ sizeof(nc
->ss
);
1597 /*******************************************************************
1598 Save a name/addr pair.
1599 ******************************************************************/
1601 static void store_nc(const struct name_addr_pair
*nc
)
1604 size_t namelen
= strlen(nc
->name
);
1606 tmp
= data_blob(NULL
, sizeof(nc
->ss
) + namelen
+ 1);
1610 memcpy(tmp
.data
, &nc
->ss
, sizeof(nc
->ss
));
1611 memcpy(tmp
.data
+sizeof(nc
->ss
), nc
->name
, namelen
+1);
1613 memcache_add(NULL
, SINGLETON_CACHE
,
1614 data_blob_string_const_null("get_peer_name"),
1616 data_blob_free(&tmp
);
1619 /*******************************************************************
1620 Return the DNS name of the remote end of a socket.
1621 ******************************************************************/
1623 const char *get_peer_name(int fd
, bool force_lookup
)
1625 struct name_addr_pair nc
;
1626 char addr_buf
[INET6_ADDRSTRLEN
];
1627 struct sockaddr_storage ss
;
1628 socklen_t length
= sizeof(ss
);
1631 char name_buf
[MAX_DNS_NAME_LENGTH
];
1632 char tmp_name
[MAX_DNS_NAME_LENGTH
];
1634 /* reverse lookups can be *very* expensive, and in many
1635 situations won't work because many networks don't link dhcp
1636 with dns. To avoid the delay we avoid the lookup if
1638 if (!lp_hostname_lookups() && (force_lookup
== false)) {
1639 length
= sizeof(nc
.ss
);
1640 nc
.name
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
),
1641 (struct sockaddr
*)&nc
.ss
, &length
);
1644 return nc
.name
? nc
.name
: "UNKNOWN";
1649 memset(&ss
, '\0', sizeof(ss
));
1650 p
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
), (struct sockaddr
*)&ss
, &length
);
1652 /* it might be the same as the last one - save some DNS work */
1653 if (sockaddr_equal((struct sockaddr
*)&ss
, (struct sockaddr
*)&nc
.ss
)) {
1654 return nc
.name
? nc
.name
: "UNKNOWN";
1657 /* Not the same. We need to lookup. */
1662 /* Look up the remote host name. */
1663 ret
= sys_getnameinfo((struct sockaddr
*)&ss
,
1672 DEBUG(1,("get_peer_name: getnameinfo failed "
1673 "for %s with error %s\n",
1675 gai_strerror(ret
)));
1676 strlcpy(name_buf
, p
, sizeof(name_buf
));
1678 if (!matchname(name_buf
, (struct sockaddr
*)&ss
, length
)) {
1679 DEBUG(0,("Matchname failed on %s %s\n",name_buf
,p
));
1680 strlcpy(name_buf
,"UNKNOWN",sizeof(name_buf
));
1684 /* can't pass the same source and dest strings in when you
1685 use --enable-developer or the clobber_region() call will
1688 strlcpy(tmp_name
, name_buf
, sizeof(tmp_name
));
1689 alpha_strcpy(name_buf
, tmp_name
, "_-.", sizeof(name_buf
));
1690 if (strstr(name_buf
,"..")) {
1691 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1699 return nc
.name
? nc
.name
: "UNKNOWN";
1702 /*******************************************************************
1703 Return the IP addr of the remote end of a socket as a string.
1704 ******************************************************************/
1706 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
)
1708 return get_peer_addr_internal(fd
, addr
, addr_len
, NULL
, NULL
);
1711 /*******************************************************************
1712 Create protected unix domain socket.
1714 Some unixes cannot set permissions on a ux-dom-sock, so we
1715 have to make sure that the directory contains the protection
1716 permissions instead.
1717 ******************************************************************/
1719 int create_pipe_sock(const char *socket_dir
,
1720 const char *socket_name
,
1723 #ifdef HAVE_UNIXSOCKET
1724 struct sockaddr_un sunaddr
;
1730 old_umask
= umask(0);
1732 /* Create the socket directory or reuse the existing one */
1734 if (lstat(socket_dir
, &st
) == -1) {
1735 if (errno
== ENOENT
) {
1736 /* Create directory */
1737 if (mkdir(socket_dir
, dir_perms
) == -1) {
1738 DEBUG(0, ("error creating socket directory "
1739 "%s: %s\n", socket_dir
,
1744 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1745 socket_dir
, strerror(errno
)));
1749 /* Check ownership and permission on existing directory */
1750 if (!S_ISDIR(st
.st_mode
)) {
1751 DEBUG(0, ("socket directory %s isn't a directory\n",
1755 if ((st
.st_uid
!= sec_initial_uid()) ||
1756 ((st
.st_mode
& 0777) != dir_perms
)) {
1757 DEBUG(0, ("invalid permissions on socket directory "
1758 "%s\n", socket_dir
));
1763 /* Create the socket file */
1765 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1768 DEBUG(0, ("create_pipe_sock: socket error %s\n",
1773 if (asprintf(&path
, "%s/%s", socket_dir
, socket_name
) == -1) {
1778 memset(&sunaddr
, 0, sizeof(sunaddr
));
1779 sunaddr
.sun_family
= AF_UNIX
;
1780 strlcpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
));
1782 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1) {
1783 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path
,
1788 if (listen(sock
, 5) == -1) {
1789 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path
,
1809 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1811 #endif /* HAVE_UNIXSOCKET */
1814 /****************************************************************************
1815 Get my own canonical name, including domain.
1816 ****************************************************************************/
1818 const char *get_mydnsfullname(void)
1820 struct addrinfo
*res
= NULL
;
1821 char my_hostname
[HOST_NAME_MAX
];
1825 if (memcache_lookup(NULL
, SINGLETON_CACHE
,
1826 data_blob_string_const_null("get_mydnsfullname"),
1828 SMB_ASSERT(tmp
.length
> 0);
1829 return (const char *)tmp
.data
;
1832 /* get my host name */
1833 if (gethostname(my_hostname
, sizeof(my_hostname
)) == -1) {
1834 DEBUG(0,("get_mydnsfullname: gethostname failed\n"));
1838 /* Ensure null termination. */
1839 my_hostname
[sizeof(my_hostname
)-1] = '\0';
1841 ret
= interpret_string_addr_internal(&res
,
1843 AI_ADDRCONFIG
|AI_CANONNAME
);
1845 if (!ret
|| res
== NULL
) {
1846 DEBUG(3,("get_mydnsfullname: getaddrinfo failed for "
1849 gai_strerror(ret
) ));
1854 * Make sure that getaddrinfo() returns the "correct" host name.
1857 if (res
->ai_canonname
== NULL
) {
1858 DEBUG(3,("get_mydnsfullname: failed to get "
1859 "canonical name for %s\n",
1865 /* This copies the data, so we must do a lookup
1866 * afterwards to find the value to return.
1869 memcache_add(NULL
, SINGLETON_CACHE
,
1870 data_blob_string_const_null("get_mydnsfullname"),
1871 data_blob_string_const_null(res
->ai_canonname
));
1873 if (!memcache_lookup(NULL
, SINGLETON_CACHE
,
1874 data_blob_string_const_null("get_mydnsfullname"),
1876 tmp
= data_blob_talloc(talloc_tos(), res
->ai_canonname
,
1877 strlen(res
->ai_canonname
) + 1);
1882 return (const char *)tmp
.data
;
1885 /************************************************************
1887 ************************************************************/
1889 bool is_myname_or_ipaddr(const char *s
)
1891 TALLOC_CTX
*ctx
= talloc_tos();
1893 const char *dnsname
;
1894 char *servername
= NULL
;
1900 /* Santize the string from '\\name' */
1901 name
= talloc_strdup(ctx
, s
);
1906 servername
= strrchr_m(name
, '\\' );
1913 /* Optimize for the common case */
1914 if (strequal(servername
, global_myname())) {
1918 /* Check for an alias */
1919 if (is_myname(servername
)) {
1923 /* Check for loopback */
1924 if (strequal(servername
, "127.0.0.1") ||
1925 strequal(servername
, "::1")) {
1929 if (strequal(servername
, "localhost")) {
1933 /* Maybe it's my dns name */
1934 dnsname
= get_mydnsfullname();
1935 if (dnsname
&& strequal(servername
, dnsname
)) {
1939 /* Handle possible CNAME records - convert to an IP addr. */
1940 if (!is_ipaddress(servername
)) {
1941 /* Use DNS to resolve the name, but only the first address */
1942 struct sockaddr_storage ss
;
1943 if (interpret_string_addr(&ss
, servername
,0)) {
1944 print_sockaddr(name
,
1951 /* Maybe its an IP address? */
1952 if (is_ipaddress(servername
)) {
1953 struct sockaddr_storage ss
;
1954 struct iface_struct
*nics
;
1957 if (!interpret_string_addr(&ss
, servername
, AI_NUMERICHOST
)) {
1961 if (is_zero_addr((struct sockaddr
*)&ss
) ||
1962 is_loopback_addr((struct sockaddr
*)&ss
)) {
1966 nics
= TALLOC_ARRAY(ctx
, struct iface_struct
,
1971 n
= get_interfaces(nics
, MAX_INTERFACES
);
1972 for (i
=0; i
<n
; i
++) {
1973 if (sockaddr_equal((struct sockaddr
*)&nics
[i
].ip
, (struct sockaddr
*)&ss
)) {