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 Get a port number in host byte order from a sockaddr_storage.
26 ****************************************************************************/
28 uint16_t get_sockaddr_port(const struct sockaddr_storage
*pss
)
32 if (pss
->ss_family
!= AF_INET
) {
33 #if defined(HAVE_IPV6)
35 const struct sockaddr_in6
*sa6
=
36 (const struct sockaddr_in6
*)pss
;
37 port
= ntohs(sa6
->sin6_port
);
40 const struct sockaddr_in
*sa
=
41 (const struct sockaddr_in
*)pss
;
42 port
= ntohs(sa
->sin_port
);
47 /****************************************************************************
48 Print out an IPv4 or IPv6 address from a struct sockaddr_storage.
49 ****************************************************************************/
51 static char *print_sockaddr_len(char *dest
,
53 const struct sockaddr
*psa
,
59 (void)sys_getnameinfo(psa
,
67 /****************************************************************************
68 Print out an IPv4 or IPv6 address from a struct sockaddr_storage.
69 ****************************************************************************/
71 char *print_sockaddr(char *dest
,
73 const struct sockaddr_storage
*psa
)
75 return print_sockaddr_len(dest
, destlen
, (struct sockaddr
*)psa
,
76 sizeof(struct sockaddr_storage
));
79 /****************************************************************************
80 Print out a canonical IPv4 or IPv6 address from a struct sockaddr_storage.
81 ****************************************************************************/
83 char *print_canonical_sockaddr(TALLOC_CTX
*ctx
,
84 const struct sockaddr_storage
*pss
)
86 char addr
[INET6_ADDRSTRLEN
];
90 /* Linux getnameinfo() man pages says port is unitialized if
91 service name is NULL. */
93 ret
= sys_getnameinfo((const struct sockaddr
*)pss
,
94 sizeof(struct sockaddr_storage
),
102 if (pss
->ss_family
!= AF_INET
) {
103 #if defined(HAVE_IPV6)
104 dest
= talloc_asprintf(ctx
, "[%s]", addr
);
109 dest
= talloc_asprintf(ctx
, "%s", addr
);
115 /****************************************************************************
116 Return the string of an IP address (IPv4 or IPv6).
117 ****************************************************************************/
119 static const char *get_socket_addr(int fd
, char *addr_buf
, size_t addr_len
)
121 struct sockaddr_storage sa
;
122 socklen_t length
= sizeof(sa
);
124 /* Ok, returning a hard coded IPv4 address
125 * is bogus, but it's just as bogus as a
126 * zero IPv6 address. No good choice here.
129 strlcpy(addr_buf
, "0.0.0.0", addr_len
);
135 if (getsockname(fd
, (struct sockaddr
*)&sa
, &length
) < 0) {
136 DEBUG(0,("getsockname failed. Error was %s\n",
141 return print_sockaddr_len(addr_buf
, addr_len
, (struct sockaddr
*)&sa
, length
);
144 /****************************************************************************
145 Return the port number we've bound to on a socket.
146 ****************************************************************************/
148 int get_socket_port(int fd
)
150 struct sockaddr_storage sa
;
151 socklen_t length
= sizeof(sa
);
157 if (getsockname(fd
, (struct sockaddr
*)&sa
, &length
) < 0) {
158 DEBUG(0,("getpeername failed. Error was %s\n",
163 #if defined(HAVE_IPV6)
164 if (sa
.ss_family
== AF_INET6
) {
165 return ntohs(((struct sockaddr_in6
*)&sa
)->sin6_port
);
168 if (sa
.ss_family
== AF_INET
) {
169 return ntohs(((struct sockaddr_in
*)&sa
)->sin_port
);
174 const char *client_name(int fd
)
176 return get_peer_name(fd
,false);
179 const char *client_addr(int fd
, char *addr
, size_t addrlen
)
181 return get_peer_addr(fd
,addr
,addrlen
);
184 const char *client_socket_addr(int fd
, char *addr
, size_t addr_len
)
186 return get_socket_addr(fd
, addr
, addr_len
);
190 /* Not currently used. JRA. */
191 int client_socket_port(int fd
)
193 return get_socket_port(fd
);
197 /****************************************************************************
198 Accessor functions to make thread-safe code easier later...
199 ****************************************************************************/
201 void set_smb_read_error(enum smb_read_errors
*pre
,
202 enum smb_read_errors newerr
)
209 void cond_set_smb_read_error(enum smb_read_errors
*pre
,
210 enum smb_read_errors newerr
)
212 if (pre
&& *pre
== SMB_READ_OK
) {
217 /****************************************************************************
218 Determine if a file descriptor is in fact a socket.
219 ****************************************************************************/
221 bool is_a_socket(int fd
)
226 return(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&v
, &l
) == 0);
229 enum SOCK_OPT_TYPES
{OPT_BOOL
,OPT_INT
,OPT_ON
};
231 typedef struct smb_socket_option
{
239 static const smb_socket_option socket_options
[] = {
240 {"SO_KEEPALIVE", SOL_SOCKET
, SO_KEEPALIVE
, 0, OPT_BOOL
},
241 {"SO_REUSEADDR", SOL_SOCKET
, SO_REUSEADDR
, 0, OPT_BOOL
},
242 {"SO_BROADCAST", SOL_SOCKET
, SO_BROADCAST
, 0, OPT_BOOL
},
244 {"TCP_NODELAY", IPPROTO_TCP
, TCP_NODELAY
, 0, OPT_BOOL
},
247 {"TCP_KEEPCNT", IPPROTO_TCP
, TCP_KEEPCNT
, 0, OPT_INT
},
250 {"TCP_KEEPIDLE", IPPROTO_TCP
, TCP_KEEPIDLE
, 0, OPT_INT
},
253 {"TCP_KEEPINTVL", IPPROTO_TCP
, TCP_KEEPINTVL
, 0, OPT_INT
},
255 #ifdef IPTOS_LOWDELAY
256 {"IPTOS_LOWDELAY", IPPROTO_IP
, IP_TOS
, IPTOS_LOWDELAY
, OPT_ON
},
258 #ifdef IPTOS_THROUGHPUT
259 {"IPTOS_THROUGHPUT", IPPROTO_IP
, IP_TOS
, IPTOS_THROUGHPUT
, OPT_ON
},
262 {"SO_REUSEPORT", SOL_SOCKET
, SO_REUSEPORT
, 0, OPT_BOOL
},
265 {"SO_SNDBUF", SOL_SOCKET
, SO_SNDBUF
, 0, OPT_INT
},
268 {"SO_RCVBUF", SOL_SOCKET
, SO_RCVBUF
, 0, OPT_INT
},
271 {"SO_SNDLOWAT", SOL_SOCKET
, SO_SNDLOWAT
, 0, OPT_INT
},
274 {"SO_RCVLOWAT", SOL_SOCKET
, SO_RCVLOWAT
, 0, OPT_INT
},
277 {"SO_SNDTIMEO", SOL_SOCKET
, SO_SNDTIMEO
, 0, OPT_INT
},
280 {"SO_RCVTIMEO", SOL_SOCKET
, SO_RCVTIMEO
, 0, OPT_INT
},
283 {"TCP_FASTACK", IPPROTO_TCP
, TCP_FASTACK
, 0, OPT_INT
},
286 {"TCP_QUICKACK", IPPROTO_TCP
, TCP_QUICKACK
, 0, OPT_BOOL
},
290 /****************************************************************************
291 Print socket options.
292 ****************************************************************************/
294 static void print_socket_options(int s
)
298 const smb_socket_option
*p
= &socket_options
[0];
300 /* wrapped in if statement to prevent streams
301 * leak in SCO Openserver 5.0 */
302 /* reported on samba-technical --jerry */
303 if ( DEBUGLEVEL
>= 5 ) {
304 DEBUG(5,("Socket options:\n"));
305 for (; p
->name
!= NULL
; p
++) {
306 if (getsockopt(s
, p
->level
, p
->option
,
307 (void *)&value
, &vlen
) == -1) {
308 DEBUGADD(5,("\tCould not test socket option %s.\n",
311 DEBUGADD(5,("\t%s = %d\n",
318 /****************************************************************************
319 Set user socket options.
320 ****************************************************************************/
322 void set_socket_options(int fd
, const char *options
)
324 TALLOC_CTX
*ctx
= talloc_stackframe();
327 while (next_token_talloc(ctx
, &options
, &tok
," \t,")) {
331 bool got_value
= false;
333 if ((p
= strchr_m(tok
,'='))) {
339 for (i
=0;socket_options
[i
].name
;i
++)
340 if (strequal(socket_options
[i
].name
,tok
))
343 if (!socket_options
[i
].name
) {
344 DEBUG(0,("Unknown socket option %s\n",tok
));
348 switch (socket_options
[i
].opttype
) {
351 ret
= setsockopt(fd
,socket_options
[i
].level
,
352 socket_options
[i
].option
,
353 (char *)&value
,sizeof(int));
358 DEBUG(0,("syntax error - %s "
359 "does not take a value\n",tok
));
362 int on
= socket_options
[i
].value
;
363 ret
= setsockopt(fd
,socket_options
[i
].level
,
364 socket_options
[i
].option
,
365 (char *)&on
,sizeof(int));
371 /* be aware that some systems like Solaris return
372 * EINVAL to a setsockopt() call when the client
373 * sent a RST previously - no need to worry */
374 DEBUG(2,("Failed to set socket option %s (Error %s)\n",
375 tok
, strerror(errno
) ));
380 print_socket_options(fd
);
383 /****************************************************************************
385 ****************************************************************************/
387 ssize_t
read_udp_v4_socket(int fd
,
390 struct sockaddr_storage
*psa
)
393 socklen_t socklen
= sizeof(*psa
);
394 struct sockaddr_in
*si
= (struct sockaddr_in
*)psa
;
396 memset((char *)psa
,'\0',socklen
);
398 ret
= (ssize_t
)sys_recvfrom(fd
,buf
,len
,0,
399 (struct sockaddr
*)psa
,&socklen
);
401 /* Don't print a low debug error for a non-blocking socket. */
402 if (errno
== EAGAIN
) {
403 DEBUG(10,("read_udp_v4_socket: returned EAGAIN\n"));
405 DEBUG(2,("read_udp_v4_socket: failed. errno=%s\n",
411 if (psa
->ss_family
!= AF_INET
) {
412 DEBUG(2,("read_udp_v4_socket: invalid address family %d "
413 "(not IPv4)\n", (int)psa
->ss_family
));
417 DEBUG(10,("read_udp_v4_socket: ip %s port %d read: %lu\n",
418 inet_ntoa(si
->sin_addr
),
420 (unsigned long)ret
));
425 /****************************************************************************
426 Read data from a file descriptor with a timout in msec.
427 mincount = if timeout, minimum to read before returning
428 maxcount = number to be read.
429 time_out = timeout in milliseconds
430 NB. This can be called with a non-socket fd, don't change
431 sys_read() to sys_recv() or other socket call.
432 ****************************************************************************/
434 NTSTATUS
read_fd_with_timeout(int fd
, char *buf
,
435 size_t mincnt
, size_t maxcnt
,
436 unsigned int time_out
,
443 struct timeval timeout
;
444 char addr
[INET6_ADDRSTRLEN
];
447 /* just checking .... */
457 while (nread
< mincnt
) {
458 readret
= sys_read(fd
, buf
+ nread
, maxcnt
- nread
);
461 DEBUG(5,("read_fd_with_timeout: "
462 "blocking read. EOF from client.\n"));
463 return NT_STATUS_END_OF_FILE
;
468 if (fd
== get_client_fd()) {
469 /* Try and give an error message
470 * saying what client failed. */
471 DEBUG(0,("read_fd_with_timeout: "
472 "client %s read error = %s.\n",
473 get_peer_addr(fd
,addr
,sizeof(addr
)),
474 strerror(save_errno
) ));
476 DEBUG(0,("read_fd_with_timeout: "
477 "read error = %s.\n",
478 strerror(save_errno
) ));
480 return map_nt_error_from_unix(save_errno
);
487 /* Most difficult - timeout read */
488 /* If this is ever called on a disk file and
489 mincnt is greater then the filesize then
490 system performance will suffer severely as
491 select always returns true on disk files */
493 /* Set initial timeout */
494 timeout
.tv_sec
= (time_t)(time_out
/ 1000);
495 timeout
.tv_usec
= (long)(1000 * (time_out
% 1000));
497 for (nread
=0; nread
< mincnt
; ) {
498 if (fd
< 0 || fd
>= FD_SETSIZE
) {
500 return map_nt_error_from_unix(EBADF
);
506 selrtn
= sys_select_intr(fd
+1,&fds
,NULL
,NULL
,&timeout
);
511 /* something is wrong. Maybe the socket is dead? */
512 if (fd
== get_client_fd()) {
513 /* Try and give an error message saying
514 * what client failed. */
515 DEBUG(0,("read_fd_with_timeout: timeout "
516 "read for client %s. select error = %s.\n",
517 get_peer_addr(fd
,addr
,sizeof(addr
)),
518 strerror(save_errno
) ));
520 DEBUG(0,("read_fd_with_timeout: timeout "
521 "read. select error = %s.\n",
522 strerror(save_errno
) ));
524 return map_nt_error_from_unix(save_errno
);
527 /* Did we timeout ? */
529 DEBUG(10,("read_fd_with_timeout: timeout read. "
530 "select timed out.\n"));
531 return NT_STATUS_IO_TIMEOUT
;
534 readret
= sys_read(fd
, buf
+nread
, maxcnt
-nread
);
537 /* we got EOF on the file descriptor */
538 DEBUG(5,("read_fd_with_timeout: timeout read. "
539 "EOF from client.\n"));
540 return NT_STATUS_END_OF_FILE
;
545 /* the descriptor is probably dead */
546 if (fd
== get_client_fd()) {
547 /* Try and give an error message
548 * saying what client failed. */
549 DEBUG(0,("read_fd_with_timeout: timeout "
550 "read to client %s. read error = %s.\n",
551 get_peer_addr(fd
,addr
,sizeof(addr
)),
552 strerror(save_errno
) ));
554 DEBUG(0,("read_fd_with_timeout: timeout "
555 "read. read error = %s.\n",
556 strerror(save_errno
) ));
558 return map_nt_error_from_unix(errno
);
565 /* Return the number we got */
572 /****************************************************************************
573 Read data from an fd, reading exactly N bytes.
574 NB. This can be called with a non-socket fd, don't add dependencies
576 ****************************************************************************/
578 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
)
580 return read_fd_with_timeout(fd
, buffer
, N
, N
, 0, NULL
);
583 /****************************************************************************
584 Write all data from an iov array
585 NB. This can be called with a non-socket fd, don't add dependencies
587 ****************************************************************************/
589 ssize_t
write_data_iov(int fd
, const struct iovec
*orig_iov
, int iovcnt
)
595 struct iovec
*iov_copy
, *iov
;
598 for (i
=0; i
<iovcnt
; i
++) {
599 to_send
+= orig_iov
[i
].iov_len
;
602 thistime
= sys_writev(fd
, orig_iov
, iovcnt
);
603 if ((thistime
<= 0) || (thistime
== to_send
)) {
609 * We could not send everything in one call. Make a copy of iov that
610 * we can mess with. We keep a copy of the array start in iov_copy for
611 * the TALLOC_FREE, because we're going to modify iov later on,
612 * discarding elements.
615 iov_copy
= (struct iovec
*)TALLOC_MEMDUP(
616 talloc_tos(), orig_iov
, sizeof(struct iovec
) * iovcnt
);
618 if (iov_copy
== NULL
) {
624 while (sent
< to_send
) {
626 * We have to discard "thistime" bytes from the beginning
627 * iov array, "thistime" contains the number of bytes sent
630 while (thistime
> 0) {
631 if (thistime
< iov
[0].iov_len
) {
633 (char *)iov
[0].iov_base
+ thistime
;
634 iov
[0].iov_base
= (void *)new_base
;
635 iov
[0].iov_len
-= thistime
;
638 thistime
-= iov
[0].iov_len
;
643 thistime
= sys_writev(fd
, iov
, iovcnt
);
650 TALLOC_FREE(iov_copy
);
654 /****************************************************************************
656 NB. This can be called with a non-socket fd, don't add dependencies
658 ****************************************************************************/
660 ssize_t
write_data(int fd
, const char *buffer
, size_t N
)
665 iov
.iov_base
= CONST_DISCARD(void *, buffer
);
668 ret
= write_data_iov(fd
, &iov
, 1);
673 if (fd
== get_client_fd()) {
674 char addr
[INET6_ADDRSTRLEN
];
676 * Try and give an error message saying what client failed.
678 DEBUG(0, ("write_data: write failure in writing to client %s. "
679 "Error %s\n", get_peer_addr(fd
,addr
,sizeof(addr
)),
682 DEBUG(0,("write_data: write failure. Error = %s\n",
689 /****************************************************************************
690 Send a keepalive packet (rfc1002).
691 ****************************************************************************/
693 bool send_keepalive(int client
)
695 unsigned char buf
[4];
697 buf
[0] = SMBkeepalive
;
698 buf
[1] = buf
[2] = buf
[3] = 0;
700 return(write_data(client
,(char *)buf
,4) == 4);
703 /****************************************************************************
704 Read 4 bytes of a smb packet and return the smb length of the packet.
705 Store the result in the buffer.
706 This version of the function will return a length of zero on receiving
708 Timeout is in milliseconds.
709 ****************************************************************************/
711 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
712 unsigned int timeout
,
718 status
= read_fd_with_timeout(fd
, inbuf
, 4, 4, timeout
, NULL
);
720 if (!NT_STATUS_IS_OK(status
)) {
724 *len
= smb_len(inbuf
);
725 msg_type
= CVAL(inbuf
,0);
727 if (msg_type
== SMBkeepalive
) {
728 DEBUG(5,("Got keepalive packet\n"));
731 DEBUG(10,("got smb length of %lu\n",(unsigned long)(*len
)));
736 /****************************************************************************
737 Read 4 bytes of a smb packet and return the smb length of the packet.
738 Store the result in the buffer. This version of the function will
739 never return a session keepalive (length of zero).
740 Timeout is in milliseconds.
741 ****************************************************************************/
743 NTSTATUS
read_smb_length(int fd
, char *inbuf
, unsigned int timeout
,
746 uint8_t msgtype
= SMBkeepalive
;
748 while (msgtype
== SMBkeepalive
) {
751 status
= read_smb_length_return_keepalive(fd
, inbuf
, timeout
,
753 if (!NT_STATUS_IS_OK(status
)) {
757 msgtype
= CVAL(inbuf
, 0);
760 DEBUG(10,("read_smb_length: got smb length of %lu\n",
761 (unsigned long)len
));
766 /****************************************************************************
767 Read an smb from a fd.
768 The timeout is in milliseconds.
769 This function will return on receipt of a session keepalive packet.
770 maxlen is the max number of bytes to return, not including the 4 byte
771 length. If zero it means buflen limit.
772 Doesn't check the MAC on signed packets.
773 ****************************************************************************/
775 NTSTATUS
receive_smb_raw(int fd
, char *buffer
, size_t buflen
, unsigned int timeout
,
776 size_t maxlen
, size_t *p_len
)
781 status
= read_smb_length_return_keepalive(fd
,buffer
,timeout
,&len
);
783 if (!NT_STATUS_IS_OK(status
)) {
784 DEBUG(10, ("receive_smb_raw: %s!\n", nt_errstr(status
)));
789 DEBUG(0,("Invalid packet length! (%lu bytes).\n",
790 (unsigned long)len
));
791 return NT_STATUS_INVALID_PARAMETER
;
796 len
= MIN(len
,maxlen
);
799 status
= read_fd_with_timeout(
800 fd
, buffer
+4, len
, len
, timeout
, &len
);
802 if (!NT_STATUS_IS_OK(status
)) {
806 /* not all of samba3 properly checks for packet-termination
807 * of strings. This ensures that we don't run off into
809 SSVAL(buffer
+4,len
, 0);
816 /****************************************************************************
817 Open a socket of the specified type, port, and address for incoming data.
818 ****************************************************************************/
820 int open_socket_in(int type
,
823 const struct sockaddr_storage
*psock
,
826 struct sockaddr_storage sock
;
828 socklen_t slen
= sizeof(struct sockaddr_in
);
832 #if defined(HAVE_IPV6)
833 if (sock
.ss_family
== AF_INET6
) {
834 ((struct sockaddr_in6
*)&sock
)->sin6_port
= htons(port
);
835 slen
= sizeof(struct sockaddr_in6
);
838 if (sock
.ss_family
== AF_INET
) {
839 ((struct sockaddr_in
*)&sock
)->sin_port
= htons(port
);
842 res
= socket(sock
.ss_family
, type
, 0 );
845 dbgtext( "open_socket_in(): socket() call failed: " );
846 dbgtext( "%s\n", strerror( errno
) );
851 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
853 int val
= rebind
? 1 : 0;
854 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEADDR
,
855 (char *)&val
,sizeof(val
)) == -1 ) {
856 if( DEBUGLVL( dlevel
) ) {
857 dbgtext( "open_socket_in(): setsockopt: " );
858 dbgtext( "SO_REUSEADDR = %s ",
859 val
?"true":"false" );
860 dbgtext( "on port %d failed ", port
);
861 dbgtext( "with error = %s\n", strerror(errno
) );
865 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEPORT
,
866 (char *)&val
,sizeof(val
)) == -1 ) {
867 if( DEBUGLVL( dlevel
) ) {
868 dbgtext( "open_socket_in(): setsockopt: ");
869 dbgtext( "SO_REUSEPORT = %s ",
871 dbgtext( "on port %d failed ", port
);
872 dbgtext( "with error = %s\n", strerror(errno
));
875 #endif /* SO_REUSEPORT */
878 /* now we've got a socket - we need to bind it */
879 if (bind(res
, (struct sockaddr
*)&sock
, slen
) == -1 ) {
880 if( DEBUGLVL(dlevel
) && (port
== SMB_PORT1
||
881 port
== SMB_PORT2
|| port
== NMB_PORT
) ) {
882 char addr
[INET6_ADDRSTRLEN
];
883 print_sockaddr(addr
, sizeof(addr
),
885 dbgtext( "bind failed on port %d ", port
);
886 dbgtext( "socket_addr = %s.\n", addr
);
887 dbgtext( "Error = %s\n", strerror(errno
));
893 DEBUG( 10, ( "bind succeeded on port %d\n", port
) );
897 struct open_socket_out_state
{
899 struct event_context
*ev
;
900 struct sockaddr_storage ss
;
906 static void open_socket_out_connected(struct tevent_req
*subreq
);
908 static int open_socket_out_state_destructor(struct open_socket_out_state
*s
)
916 /****************************************************************************
917 Create an outgoing socket. timeout is in milliseconds.
918 **************************************************************************/
920 struct tevent_req
*open_socket_out_send(TALLOC_CTX
*mem_ctx
,
921 struct event_context
*ev
,
922 const struct sockaddr_storage
*pss
,
926 char addr
[INET6_ADDRSTRLEN
];
927 struct tevent_req
*result
, *subreq
;
928 struct open_socket_out_state
*state
;
931 result
= tevent_req_create(mem_ctx
, &state
,
932 struct open_socket_out_state
);
933 if (result
== NULL
) {
939 state
->wait_nsec
= 10000;
942 state
->fd
= socket(state
->ss
.ss_family
, SOCK_STREAM
, 0);
943 if (state
->fd
== -1) {
944 status
= map_nt_error_from_unix(errno
);
947 talloc_set_destructor(state
, open_socket_out_state_destructor
);
949 if (!tevent_req_set_endtime(
950 result
, ev
, timeval_current_ofs(0, timeout
*1000))) {
954 #if defined(HAVE_IPV6)
955 if (pss
->ss_family
== AF_INET6
) {
956 struct sockaddr_in6
*psa6
;
957 psa6
= (struct sockaddr_in6
*)&state
->ss
;
958 psa6
->sin6_port
= htons(port
);
959 if (psa6
->sin6_scope_id
== 0
960 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
961 setup_linklocal_scope_id(
962 (struct sockaddr
*)&(state
->ss
));
964 state
->salen
= sizeof(struct sockaddr_in6
);
967 if (pss
->ss_family
== AF_INET
) {
968 struct sockaddr_in
*psa
;
969 psa
= (struct sockaddr_in
*)&state
->ss
;
970 psa
->sin_port
= htons(port
);
971 state
->salen
= sizeof(struct sockaddr_in
);
974 if (pss
->ss_family
== AF_UNIX
) {
975 state
->salen
= sizeof(struct sockaddr_un
);
978 print_sockaddr(addr
, sizeof(addr
), &state
->ss
);
979 DEBUG(3,("Connecting to %s at port %u\n", addr
, (unsigned int)port
));
981 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
982 (struct sockaddr
*)&state
->ss
,
985 || !tevent_req_set_endtime(
987 timeval_current_ofs(0, state
->wait_nsec
))) {
990 tevent_req_set_callback(subreq
, open_socket_out_connected
, result
);
994 tevent_req_nterror(result
, status
);
995 return tevent_req_post(result
, ev
);
1001 static void open_socket_out_connected(struct tevent_req
*subreq
)
1003 struct tevent_req
*req
=
1004 tevent_req_callback_data(subreq
, struct tevent_req
);
1005 struct open_socket_out_state
*state
=
1006 tevent_req_data(req
, struct open_socket_out_state
);
1010 ret
= async_connect_recv(subreq
, &sys_errno
);
1011 TALLOC_FREE(subreq
);
1013 tevent_req_done(req
);
1019 (sys_errno
== ETIMEDOUT
) ||
1021 (sys_errno
== EINPROGRESS
) ||
1022 (sys_errno
== EALREADY
) ||
1023 (sys_errno
== EAGAIN
)) {
1029 if (state
->wait_nsec
< 250000) {
1030 state
->wait_nsec
*= 1.5;
1033 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
1034 (struct sockaddr
*)&state
->ss
,
1036 if (tevent_req_nomem(subreq
, req
)) {
1039 if (!tevent_req_set_endtime(
1041 timeval_current_ofs(0, state
->wait_nsec
))) {
1042 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
1045 tevent_req_set_callback(subreq
, open_socket_out_connected
, req
);
1050 if (sys_errno
== EISCONN
) {
1051 tevent_req_done(req
);
1057 tevent_req_nterror(req
, map_nt_error_from_unix(sys_errno
));
1060 NTSTATUS
open_socket_out_recv(struct tevent_req
*req
, int *pfd
)
1062 struct open_socket_out_state
*state
=
1063 tevent_req_data(req
, struct open_socket_out_state
);
1066 if (tevent_req_is_nterror(req
, &status
)) {
1071 return NT_STATUS_OK
;
1074 NTSTATUS
open_socket_out(const struct sockaddr_storage
*pss
, uint16_t port
,
1075 int timeout
, int *pfd
)
1077 TALLOC_CTX
*frame
= talloc_stackframe();
1078 struct event_context
*ev
;
1079 struct tevent_req
*req
;
1080 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
1082 ev
= event_context_init(frame
);
1087 req
= open_socket_out_send(frame
, ev
, pss
, port
, timeout
);
1091 if (!tevent_req_poll(req
, ev
)) {
1092 status
= NT_STATUS_INTERNAL_ERROR
;
1095 status
= open_socket_out_recv(req
, pfd
);
1101 struct open_socket_out_defer_state
{
1102 struct event_context
*ev
;
1103 struct sockaddr_storage ss
;
1109 static void open_socket_out_defer_waited(struct tevent_req
*subreq
);
1110 static void open_socket_out_defer_connected(struct tevent_req
*subreq
);
1112 struct tevent_req
*open_socket_out_defer_send(TALLOC_CTX
*mem_ctx
,
1113 struct event_context
*ev
,
1114 struct timeval wait_time
,
1115 const struct sockaddr_storage
*pss
,
1119 struct tevent_req
*req
, *subreq
;
1120 struct open_socket_out_defer_state
*state
;
1122 req
= tevent_req_create(mem_ctx
, &state
,
1123 struct open_socket_out_defer_state
);
1130 state
->timeout
= timeout
;
1132 subreq
= tevent_wakeup_send(
1134 timeval_current_ofs(wait_time
.tv_sec
, wait_time
.tv_usec
));
1135 if (subreq
== NULL
) {
1138 tevent_req_set_callback(subreq
, open_socket_out_defer_waited
, req
);
1145 static void open_socket_out_defer_waited(struct tevent_req
*subreq
)
1147 struct tevent_req
*req
= tevent_req_callback_data(
1148 subreq
, struct tevent_req
);
1149 struct open_socket_out_defer_state
*state
= tevent_req_data(
1150 req
, struct open_socket_out_defer_state
);
1153 ret
= tevent_wakeup_recv(subreq
);
1154 TALLOC_FREE(subreq
);
1156 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
1160 subreq
= open_socket_out_send(state
, state
->ev
, &state
->ss
,
1161 state
->port
, state
->timeout
);
1162 if (tevent_req_nomem(subreq
, req
)) {
1165 tevent_req_set_callback(subreq
, open_socket_out_defer_connected
, req
);
1168 static void open_socket_out_defer_connected(struct tevent_req
*subreq
)
1170 struct tevent_req
*req
= tevent_req_callback_data(
1171 subreq
, struct tevent_req
);
1172 struct open_socket_out_defer_state
*state
= tevent_req_data(
1173 req
, struct open_socket_out_defer_state
);
1176 status
= open_socket_out_recv(subreq
, &state
->fd
);
1177 TALLOC_FREE(subreq
);
1178 if (!NT_STATUS_IS_OK(status
)) {
1179 tevent_req_nterror(req
, status
);
1182 tevent_req_done(req
);
1185 NTSTATUS
open_socket_out_defer_recv(struct tevent_req
*req
, int *pfd
)
1187 struct open_socket_out_defer_state
*state
= tevent_req_data(
1188 req
, struct open_socket_out_defer_state
);
1191 if (tevent_req_is_nterror(req
, &status
)) {
1196 return NT_STATUS_OK
;
1199 /*******************************************************************
1200 Create an outgoing TCP socket to the first addr that connects.
1202 This is for simultaneous connection attempts to port 445 and 139 of a host
1203 or for simultatneous connection attempts to multiple DCs at once. We return
1204 a socket fd of the first successful connection.
1206 @param[in] addrs list of Internet addresses and ports to connect to
1207 @param[in] num_addrs number of address/port pairs in the addrs list
1208 @param[in] timeout time after which we stop waiting for a socket connection
1209 to succeed, given in milliseconds
1210 @param[out] fd_index the entry in addrs which we successfully connected to
1211 @param[out] fd fd of the open and connected socket
1212 @return true on a successful connection, false if all connection attempts
1213 failed or we timed out
1214 *******************************************************************/
1216 bool open_any_socket_out(struct sockaddr_storage
*addrs
, int num_addrs
,
1217 int timeout
, int *fd_index
, int *fd
)
1219 int i
, resulting_index
, res
;
1223 fd_set r_fds
, wr_fds
;
1227 int connect_loop
= 10000; /* 10 milliseconds */
1229 timeout
*= 1000; /* convert to microseconds */
1231 sockets
= SMB_MALLOC_ARRAY(int, num_addrs
);
1233 if (sockets
== NULL
)
1236 resulting_index
= -1;
1238 for (i
=0; i
<num_addrs
; i
++)
1241 for (i
=0; i
<num_addrs
; i
++) {
1242 sockets
[i
] = socket(addrs
[i
].ss_family
, SOCK_STREAM
, 0);
1243 if (sockets
[i
] < 0 || sockets
[i
] >= FD_SETSIZE
)
1245 set_blocking(sockets
[i
], false);
1249 good_connect
= false;
1251 for (i
=0; i
<num_addrs
; i
++) {
1252 const struct sockaddr
* a
=
1253 (const struct sockaddr
*)&(addrs
[i
]);
1255 if (sockets
[i
] == -1)
1258 if (sys_connect(sockets
[i
], a
) == 0) {
1259 /* Rather unlikely as we are non-blocking, but it
1260 * might actually happen. */
1261 resulting_index
= i
;
1265 if (errno
== EINPROGRESS
|| errno
== EALREADY
||
1269 errno
== EAGAIN
|| errno
== EINTR
) {
1270 /* These are the error messages that something is
1272 good_connect
= true;
1273 } else if (errno
!= 0) {
1274 /* There was a direct error */
1280 if (!good_connect
) {
1281 /* All of the connect's resulted in real error conditions */
1285 /* Lets see if any of the connect attempts succeeded */
1291 for (i
=0; i
<num_addrs
; i
++) {
1292 if (sockets
[i
] < 0 || sockets
[i
] >= FD_SETSIZE
) {
1293 /* This cannot happen - ignore if so. */
1296 FD_SET(sockets
[i
], &wr_fds
);
1297 FD_SET(sockets
[i
], &r_fds
);
1298 if (sockets
[i
]>maxfd
)
1303 tv
.tv_usec
= connect_loop
;
1305 res
= sys_select_intr(maxfd
+1, &r_fds
, &wr_fds
, NULL
, &tv
);
1313 for (i
=0; i
<num_addrs
; i
++) {
1315 if (sockets
[i
] < 0 || sockets
[i
] >= FD_SETSIZE
) {
1316 /* This cannot happen - ignore if so. */
1320 /* Stevens, Network Programming says that if there's a
1321 * successful connect, the socket is only writable. Upon an
1322 * error, it's both readable and writable. */
1324 if (FD_ISSET(sockets
[i
], &r_fds
) &&
1325 FD_ISSET(sockets
[i
], &wr_fds
)) {
1326 /* readable and writable, so it's an error */
1332 if (!FD_ISSET(sockets
[i
], &r_fds
) &&
1333 FD_ISSET(sockets
[i
], &wr_fds
)) {
1334 /* Only writable, so it's connected */
1335 resulting_index
= i
;
1342 timeout
-= connect_loop
;
1345 connect_loop
*= 1.5;
1346 if (connect_loop
> timeout
)
1347 connect_loop
= timeout
;
1351 for (i
=0; i
<num_addrs
; i
++) {
1352 if (i
== resulting_index
)
1354 if (sockets
[i
] >= 0)
1358 if (resulting_index
>= 0) {
1359 *fd_index
= resulting_index
;
1360 *fd
= sockets
[*fd_index
];
1361 set_blocking(*fd
, true);
1366 return (resulting_index
>= 0);
1368 /****************************************************************************
1369 Open a connected UDP socket to host on port
1370 **************************************************************************/
1372 int open_udp_socket(const char *host
, int port
)
1374 struct sockaddr_storage ss
;
1377 if (!interpret_string_addr(&ss
, host
, 0)) {
1378 DEBUG(10,("open_udp_socket: can't resolve name %s\n",
1383 res
= socket(ss
.ss_family
, SOCK_DGRAM
, 0);
1388 #if defined(HAVE_IPV6)
1389 if (ss
.ss_family
== AF_INET6
) {
1390 struct sockaddr_in6
*psa6
;
1391 psa6
= (struct sockaddr_in6
*)&ss
;
1392 psa6
->sin6_port
= htons(port
);
1393 if (psa6
->sin6_scope_id
== 0
1394 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
1395 setup_linklocal_scope_id(
1396 (struct sockaddr
*)&ss
);
1400 if (ss
.ss_family
== AF_INET
) {
1401 struct sockaddr_in
*psa
;
1402 psa
= (struct sockaddr_in
*)&ss
;
1403 psa
->sin_port
= htons(port
);
1406 if (sys_connect(res
,(struct sockaddr
*)&ss
)) {
1414 /*******************************************************************
1415 Return the IP addr of the remote end of a socket as a string.
1416 Optionally return the struct sockaddr_storage.
1417 ******************************************************************/
1419 static const char *get_peer_addr_internal(int fd
,
1421 size_t addr_buf_len
,
1422 struct sockaddr
*pss
,
1425 struct sockaddr_storage ss
;
1426 socklen_t length
= sizeof(ss
);
1428 strlcpy(addr_buf
,"0.0.0.0",addr_buf_len
);
1435 pss
= (struct sockaddr
*)&ss
;
1439 if (getpeername(fd
, (struct sockaddr
*)pss
, plength
) < 0) {
1440 DEBUG(0,("getpeername failed. Error was %s\n",
1445 print_sockaddr_len(addr_buf
,
1452 /*******************************************************************
1453 Matchname - determine if host name matches IP address. Used to
1454 confirm a hostname lookup to prevent spoof attacks.
1455 ******************************************************************/
1457 static bool matchname(const char *remotehost
,
1458 const struct sockaddr
*pss
,
1461 struct addrinfo
*res
= NULL
;
1462 struct addrinfo
*ailist
= NULL
;
1463 char addr_buf
[INET6_ADDRSTRLEN
];
1464 bool ret
= interpret_string_addr_internal(&ailist
,
1466 AI_ADDRCONFIG
|AI_CANONNAME
);
1468 if (!ret
|| ailist
== NULL
) {
1469 DEBUG(3,("matchname: getaddrinfo failed for "
1472 gai_strerror(ret
) ));
1477 * Make sure that getaddrinfo() returns the "correct" host name.
1480 if (ailist
->ai_canonname
== NULL
||
1481 (!strequal(remotehost
, ailist
->ai_canonname
) &&
1482 !strequal(remotehost
, "localhost"))) {
1483 DEBUG(0,("matchname: host name/name mismatch: %s != %s\n",
1485 ailist
->ai_canonname
?
1486 ailist
->ai_canonname
: "(NULL)"));
1487 freeaddrinfo(ailist
);
1491 /* Look up the host address in the address list we just got. */
1492 for (res
= ailist
; res
; res
= res
->ai_next
) {
1493 if (!res
->ai_addr
) {
1496 if (sockaddr_equal((const struct sockaddr
*)res
->ai_addr
,
1497 (struct sockaddr
*)pss
)) {
1498 freeaddrinfo(ailist
);
1504 * The host name does not map to the original host address. Perhaps
1505 * someone has compromised a name server. More likely someone botched
1506 * it, but that could be dangerous, too.
1509 DEBUG(0,("matchname: host name/address mismatch: %s != %s\n",
1510 print_sockaddr_len(addr_buf
,
1514 ailist
->ai_canonname
? ailist
->ai_canonname
: "(NULL)"));
1517 freeaddrinfo(ailist
);
1522 /*******************************************************************
1523 Deal with the singleton cache.
1524 ******************************************************************/
1526 struct name_addr_pair
{
1527 struct sockaddr_storage ss
;
1531 /*******************************************************************
1532 Lookup a name/addr pair. Returns memory allocated from memcache.
1533 ******************************************************************/
1535 static bool lookup_nc(struct name_addr_pair
*nc
)
1541 if (!memcache_lookup(
1542 NULL
, SINGLETON_CACHE
,
1543 data_blob_string_const_null("get_peer_name"),
1548 memcpy(&nc
->ss
, tmp
.data
, sizeof(nc
->ss
));
1549 nc
->name
= (const char *)tmp
.data
+ sizeof(nc
->ss
);
1553 /*******************************************************************
1554 Save a name/addr pair.
1555 ******************************************************************/
1557 static void store_nc(const struct name_addr_pair
*nc
)
1560 size_t namelen
= strlen(nc
->name
);
1562 tmp
= data_blob(NULL
, sizeof(nc
->ss
) + namelen
+ 1);
1566 memcpy(tmp
.data
, &nc
->ss
, sizeof(nc
->ss
));
1567 memcpy(tmp
.data
+sizeof(nc
->ss
), nc
->name
, namelen
+1);
1569 memcache_add(NULL
, SINGLETON_CACHE
,
1570 data_blob_string_const_null("get_peer_name"),
1572 data_blob_free(&tmp
);
1575 /*******************************************************************
1576 Return the DNS name of the remote end of a socket.
1577 ******************************************************************/
1579 const char *get_peer_name(int fd
, bool force_lookup
)
1581 struct name_addr_pair nc
;
1582 char addr_buf
[INET6_ADDRSTRLEN
];
1583 struct sockaddr_storage ss
;
1584 socklen_t length
= sizeof(ss
);
1587 char name_buf
[MAX_DNS_NAME_LENGTH
];
1588 char tmp_name
[MAX_DNS_NAME_LENGTH
];
1590 /* reverse lookups can be *very* expensive, and in many
1591 situations won't work because many networks don't link dhcp
1592 with dns. To avoid the delay we avoid the lookup if
1594 if (!lp_hostname_lookups() && (force_lookup
== false)) {
1595 length
= sizeof(nc
.ss
);
1596 nc
.name
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
),
1597 (struct sockaddr
*)&nc
.ss
, &length
);
1600 return nc
.name
? nc
.name
: "UNKNOWN";
1605 memset(&ss
, '\0', sizeof(ss
));
1606 p
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
), (struct sockaddr
*)&ss
, &length
);
1608 /* it might be the same as the last one - save some DNS work */
1609 if (sockaddr_equal((struct sockaddr
*)&ss
, (struct sockaddr
*)&nc
.ss
)) {
1610 return nc
.name
? nc
.name
: "UNKNOWN";
1613 /* Not the same. We need to lookup. */
1618 /* Look up the remote host name. */
1619 ret
= sys_getnameinfo((struct sockaddr
*)&ss
,
1628 DEBUG(1,("get_peer_name: getnameinfo failed "
1629 "for %s with error %s\n",
1631 gai_strerror(ret
)));
1632 strlcpy(name_buf
, p
, sizeof(name_buf
));
1634 if (!matchname(name_buf
, (struct sockaddr
*)&ss
, length
)) {
1635 DEBUG(0,("Matchname failed on %s %s\n",name_buf
,p
));
1636 strlcpy(name_buf
,"UNKNOWN",sizeof(name_buf
));
1640 /* can't pass the same source and dest strings in when you
1641 use --enable-developer or the clobber_region() call will
1644 strlcpy(tmp_name
, name_buf
, sizeof(tmp_name
));
1645 alpha_strcpy(name_buf
, tmp_name
, "_-.", sizeof(name_buf
));
1646 if (strstr(name_buf
,"..")) {
1647 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1655 return nc
.name
? nc
.name
: "UNKNOWN";
1658 /*******************************************************************
1659 Return the IP addr of the remote end of a socket as a string.
1660 ******************************************************************/
1662 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
)
1664 return get_peer_addr_internal(fd
, addr
, addr_len
, NULL
, NULL
);
1667 /*******************************************************************
1668 Create protected unix domain socket.
1670 Some unixes cannot set permissions on a ux-dom-sock, so we
1671 have to make sure that the directory contains the protection
1672 permissions instead.
1673 ******************************************************************/
1675 int create_pipe_sock(const char *socket_dir
,
1676 const char *socket_name
,
1679 #ifdef HAVE_UNIXSOCKET
1680 struct sockaddr_un sunaddr
;
1686 old_umask
= umask(0);
1688 /* Create the socket directory or reuse the existing one */
1690 if (lstat(socket_dir
, &st
) == -1) {
1691 if (errno
== ENOENT
) {
1692 /* Create directory */
1693 if (mkdir(socket_dir
, dir_perms
) == -1) {
1694 DEBUG(0, ("error creating socket directory "
1695 "%s: %s\n", socket_dir
,
1700 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1701 socket_dir
, strerror(errno
)));
1705 /* Check ownership and permission on existing directory */
1706 if (!S_ISDIR(st
.st_mode
)) {
1707 DEBUG(0, ("socket directory %s isn't a directory\n",
1711 if ((st
.st_uid
!= sec_initial_uid()) ||
1712 ((st
.st_mode
& 0777) != dir_perms
)) {
1713 DEBUG(0, ("invalid permissions on socket directory "
1714 "%s\n", socket_dir
));
1719 /* Create the socket file */
1721 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1724 DEBUG(0, ("create_pipe_sock: socket error %s\n",
1729 if (asprintf(&path
, "%s/%s", socket_dir
, socket_name
) == -1) {
1734 memset(&sunaddr
, 0, sizeof(sunaddr
));
1735 sunaddr
.sun_family
= AF_UNIX
;
1736 strlcpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
));
1738 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1) {
1739 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path
,
1744 if (listen(sock
, 5) == -1) {
1745 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path
,
1765 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1767 #endif /* HAVE_UNIXSOCKET */
1770 /****************************************************************************
1771 Get my own canonical name, including domain.
1772 ****************************************************************************/
1774 const char *get_mydnsfullname(void)
1776 struct addrinfo
*res
= NULL
;
1777 char my_hostname
[HOST_NAME_MAX
];
1781 if (memcache_lookup(NULL
, SINGLETON_CACHE
,
1782 data_blob_string_const_null("get_mydnsfullname"),
1784 SMB_ASSERT(tmp
.length
> 0);
1785 return (const char *)tmp
.data
;
1788 /* get my host name */
1789 if (gethostname(my_hostname
, sizeof(my_hostname
)) == -1) {
1790 DEBUG(0,("get_mydnsfullname: gethostname failed\n"));
1794 /* Ensure null termination. */
1795 my_hostname
[sizeof(my_hostname
)-1] = '\0';
1797 ret
= interpret_string_addr_internal(&res
,
1799 AI_ADDRCONFIG
|AI_CANONNAME
);
1801 if (!ret
|| res
== NULL
) {
1802 DEBUG(3,("get_mydnsfullname: getaddrinfo failed for "
1805 gai_strerror(ret
) ));
1810 * Make sure that getaddrinfo() returns the "correct" host name.
1813 if (res
->ai_canonname
== NULL
) {
1814 DEBUG(3,("get_mydnsfullname: failed to get "
1815 "canonical name for %s\n",
1821 /* This copies the data, so we must do a lookup
1822 * afterwards to find the value to return.
1825 memcache_add(NULL
, SINGLETON_CACHE
,
1826 data_blob_string_const_null("get_mydnsfullname"),
1827 data_blob_string_const_null(res
->ai_canonname
));
1829 if (!memcache_lookup(NULL
, SINGLETON_CACHE
,
1830 data_blob_string_const_null("get_mydnsfullname"),
1832 tmp
= data_blob_talloc(talloc_tos(), res
->ai_canonname
,
1833 strlen(res
->ai_canonname
) + 1);
1838 return (const char *)tmp
.data
;
1841 /************************************************************
1842 Is this my ip address ?
1843 ************************************************************/
1845 static bool is_my_ipaddr(const char *ipaddr_str
)
1847 struct sockaddr_storage ss
;
1848 struct iface_struct
*nics
;
1851 if (!interpret_string_addr(&ss
, ipaddr_str
, AI_NUMERICHOST
)) {
1855 if (ismyaddr((struct sockaddr
*)&ss
)) {
1859 if (is_zero_addr((struct sockaddr
*)&ss
) ||
1860 is_loopback_addr((struct sockaddr
*)&ss
)) {
1864 n
= get_interfaces(talloc_tos(), &nics
);
1865 for (i
=0; i
<n
; i
++) {
1866 if (sockaddr_equal((struct sockaddr
*)&nics
[i
].ip
, (struct sockaddr
*)&ss
)) {
1875 /************************************************************
1877 ************************************************************/
1879 bool is_myname_or_ipaddr(const char *s
)
1881 TALLOC_CTX
*ctx
= talloc_tos();
1883 const char *dnsname
;
1884 char *servername
= NULL
;
1890 /* Santize the string from '\\name' */
1891 name
= talloc_strdup(ctx
, s
);
1896 servername
= strrchr_m(name
, '\\' );
1903 /* Optimize for the common case */
1904 if (strequal(servername
, global_myname())) {
1908 /* Check for an alias */
1909 if (is_myname(servername
)) {
1913 /* Check for loopback */
1914 if (strequal(servername
, "127.0.0.1") ||
1915 strequal(servername
, "::1")) {
1919 if (strequal(servername
, "localhost")) {
1923 /* Maybe it's my dns name */
1924 dnsname
= get_mydnsfullname();
1925 if (dnsname
&& strequal(servername
, dnsname
)) {
1929 /* Handle possible CNAME records - convert to an IP addr. list. */
1930 if (!is_ipaddress(servername
)) {
1931 /* Use DNS to resolve the name, check all addresses. */
1932 struct addrinfo
*p
= NULL
;
1933 struct addrinfo
*res
= NULL
;
1935 if (!interpret_string_addr_internal(&res
,
1941 for (p
= res
; p
; p
= p
->ai_next
) {
1942 char addr
[INET6_ADDRSTRLEN
];
1943 struct sockaddr_storage ss
;
1946 memcpy(&ss
, p
->ai_addr
, p
->ai_addrlen
);
1947 print_sockaddr(addr
,
1950 if (is_my_ipaddr(addr
)) {
1958 /* Maybe its an IP address? */
1959 if (is_ipaddress(servername
)) {
1960 return is_my_ipaddr(servername
);
1967 struct getaddrinfo_state
{
1969 const char *service
;
1970 const struct addrinfo
*hints
;
1971 struct addrinfo
*res
;
1975 static void getaddrinfo_do(void *private_data
);
1976 static void getaddrinfo_done(struct tevent_req
*subreq
);
1978 struct tevent_req
*getaddrinfo_send(TALLOC_CTX
*mem_ctx
,
1979 struct tevent_context
*ev
,
1980 struct fncall_context
*ctx
,
1982 const char *service
,
1983 const struct addrinfo
*hints
)
1985 struct tevent_req
*req
, *subreq
;
1986 struct getaddrinfo_state
*state
;
1988 req
= tevent_req_create(mem_ctx
, &state
, struct getaddrinfo_state
);
1994 state
->service
= service
;
1995 state
->hints
= hints
;
1997 subreq
= fncall_send(state
, ev
, ctx
, getaddrinfo_do
, state
);
1998 if (tevent_req_nomem(subreq
, req
)) {
1999 return tevent_req_post(req
, ev
);
2001 tevent_req_set_callback(subreq
, getaddrinfo_done
, req
);
2005 static void getaddrinfo_do(void *private_data
)
2007 struct getaddrinfo_state
*state
=
2008 (struct getaddrinfo_state
*)private_data
;
2010 state
->ret
= getaddrinfo(state
->node
, state
->service
, state
->hints
,
2014 static void getaddrinfo_done(struct tevent_req
*subreq
)
2016 struct tevent_req
*req
= tevent_req_callback_data(
2017 subreq
, struct tevent_req
);
2020 ret
= fncall_recv(subreq
, &err
);
2021 TALLOC_FREE(subreq
);
2023 tevent_req_error(req
, err
);
2026 tevent_req_done(req
);
2029 int getaddrinfo_recv(struct tevent_req
*req
, struct addrinfo
**res
)
2031 struct getaddrinfo_state
*state
= tevent_req_data(
2032 req
, struct getaddrinfo_state
);
2035 if (tevent_req_is_unix_error(req
, &err
)) {
2043 if (state
->ret
== 0) {