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/>.
23 #include "system/filesys.h"
25 #include "../lib/async_req/async_sock.h"
26 #include "../lib/util/select.h"
27 #include "lib/socket/interfaces.h"
28 #include "../lib/util/tevent_unix.h"
29 #include "../lib/util/tevent_ntstatus.h"
30 #include "../lib/tsocket/tsocket.h"
32 const char *client_name(int fd
)
34 return get_peer_name(fd
,false);
37 const char *client_addr(int fd
, char *addr
, size_t addrlen
)
39 return get_peer_addr(fd
,addr
,addrlen
);
43 /* Not currently used. JRA. */
44 int client_socket_port(int fd
)
46 return get_socket_port(fd
);
50 /****************************************************************************
51 Determine if a file descriptor is in fact a socket.
52 ****************************************************************************/
54 bool is_a_socket(int fd
)
59 return(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&v
, &l
) == 0);
62 /****************************************************************************
64 ****************************************************************************/
66 ssize_t
read_udp_v4_socket(int fd
,
69 struct sockaddr_storage
*psa
)
72 socklen_t socklen
= sizeof(*psa
);
73 struct sockaddr_in
*si
= (struct sockaddr_in
*)psa
;
75 memset((char *)psa
,'\0',socklen
);
77 ret
= (ssize_t
)sys_recvfrom(fd
,buf
,len
,0,
78 (struct sockaddr
*)psa
,&socklen
);
80 /* Don't print a low debug error for a non-blocking socket. */
81 if (errno
== EAGAIN
) {
82 DEBUG(10,("read_udp_v4_socket: returned EAGAIN\n"));
84 DEBUG(2,("read_udp_v4_socket: failed. errno=%s\n",
90 if (psa
->ss_family
!= AF_INET
) {
91 DEBUG(2,("read_udp_v4_socket: invalid address family %d "
92 "(not IPv4)\n", (int)psa
->ss_family
));
96 DEBUG(10,("read_udp_v4_socket: ip %s port %d read: %lu\n",
97 inet_ntoa(si
->sin_addr
),
104 /****************************************************************************
105 Read data from a file descriptor with a timout in msec.
106 mincount = if timeout, minimum to read before returning
107 maxcount = number to be read.
108 time_out = timeout in milliseconds
109 NB. This can be called with a non-socket fd, don't change
110 sys_read() to sys_recv() or other socket call.
111 ****************************************************************************/
113 NTSTATUS
read_fd_with_timeout(int fd
, char *buf
,
114 size_t mincnt
, size_t maxcnt
,
115 unsigned int time_out
,
122 /* just checking .... */
132 while (nread
< mincnt
) {
133 readret
= sys_read(fd
, buf
+ nread
, maxcnt
- nread
);
136 DEBUG(5,("read_fd_with_timeout: "
137 "blocking read. EOF from client.\n"));
138 return NT_STATUS_END_OF_FILE
;
142 return map_nt_error_from_unix(errno
);
149 /* Most difficult - timeout read */
150 /* If this is ever called on a disk file and
151 mincnt is greater then the filesize then
152 system performance will suffer severely as
153 select always returns true on disk files */
155 for (nread
=0; nread
< mincnt
; ) {
158 pollrtn
= poll_intr_one_fd(fd
, POLLIN
|POLLHUP
, time_out
,
163 return map_nt_error_from_unix(errno
);
166 /* Did we timeout ? */
167 if ((pollrtn
== 0) ||
168 ((revents
& (POLLIN
|POLLHUP
|POLLERR
)) == 0)) {
169 DEBUG(10,("read_fd_with_timeout: timeout read. "
170 "select timed out.\n"));
171 return NT_STATUS_IO_TIMEOUT
;
174 readret
= sys_read(fd
, buf
+nread
, maxcnt
-nread
);
177 /* we got EOF on the file descriptor */
178 DEBUG(5,("read_fd_with_timeout: timeout read. "
179 "EOF from client.\n"));
180 return NT_STATUS_END_OF_FILE
;
184 return map_nt_error_from_unix(errno
);
191 /* Return the number we got */
198 /****************************************************************************
199 Read data from an fd, reading exactly N bytes.
200 NB. This can be called with a non-socket fd, don't add dependencies
202 ****************************************************************************/
204 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
)
206 return read_fd_with_timeout(fd
, buffer
, N
, N
, 0, NULL
);
209 /****************************************************************************
210 Write all data from an iov array
211 NB. This can be called with a non-socket fd, don't add dependencies
213 ****************************************************************************/
215 ssize_t
write_data_iov(int fd
, const struct iovec
*orig_iov
, int iovcnt
)
221 struct iovec
*iov_copy
, *iov
;
224 for (i
=0; i
<iovcnt
; i
++) {
225 to_send
+= orig_iov
[i
].iov_len
;
228 thistime
= sys_writev(fd
, orig_iov
, iovcnt
);
229 if ((thistime
<= 0) || (thistime
== to_send
)) {
235 * We could not send everything in one call. Make a copy of iov that
236 * we can mess with. We keep a copy of the array start in iov_copy for
237 * the TALLOC_FREE, because we're going to modify iov later on,
238 * discarding elements.
241 iov_copy
= (struct iovec
*)talloc_memdup(
242 talloc_tos(), orig_iov
, sizeof(struct iovec
) * iovcnt
);
244 if (iov_copy
== NULL
) {
250 while (sent
< to_send
) {
252 * We have to discard "thistime" bytes from the beginning
253 * iov array, "thistime" contains the number of bytes sent
256 while (thistime
> 0) {
257 if (thistime
< iov
[0].iov_len
) {
259 (char *)iov
[0].iov_base
+ thistime
;
260 iov
[0].iov_base
= (void *)new_base
;
261 iov
[0].iov_len
-= thistime
;
264 thistime
-= iov
[0].iov_len
;
269 thistime
= sys_writev(fd
, iov
, iovcnt
);
276 TALLOC_FREE(iov_copy
);
280 /****************************************************************************
282 NB. This can be called with a non-socket fd, don't add dependencies
284 ****************************************************************************/
286 ssize_t
write_data(int fd
, const char *buffer
, size_t N
)
290 iov
.iov_base
= discard_const_p(void, buffer
);
292 return write_data_iov(fd
, &iov
, 1);
295 /****************************************************************************
296 Send a keepalive packet (rfc1002).
297 ****************************************************************************/
299 bool send_keepalive(int client
)
301 unsigned char buf
[4];
303 buf
[0] = NBSSkeepalive
;
304 buf
[1] = buf
[2] = buf
[3] = 0;
306 return(write_data(client
,(char *)buf
,4) == 4);
309 /****************************************************************************
310 Read 4 bytes of a smb packet and return the smb length of the packet.
311 Store the result in the buffer.
312 This version of the function will return a length of zero on receiving
314 Timeout is in milliseconds.
315 ****************************************************************************/
317 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
318 unsigned int timeout
,
324 status
= read_fd_with_timeout(fd
, inbuf
, 4, 4, timeout
, NULL
);
326 if (!NT_STATUS_IS_OK(status
)) {
330 *len
= smb_len(inbuf
);
331 msg_type
= CVAL(inbuf
,0);
333 if (msg_type
== NBSSkeepalive
) {
334 DEBUG(5,("Got keepalive packet\n"));
337 DEBUG(10,("got smb length of %lu\n",(unsigned long)(*len
)));
342 /****************************************************************************
343 Read an smb from a fd.
344 The timeout is in milliseconds.
345 This function will return on receipt of a session keepalive packet.
346 maxlen is the max number of bytes to return, not including the 4 byte
347 length. If zero it means buflen limit.
348 Doesn't check the MAC on signed packets.
349 ****************************************************************************/
351 NTSTATUS
receive_smb_raw(int fd
, char *buffer
, size_t buflen
, unsigned int timeout
,
352 size_t maxlen
, size_t *p_len
)
357 status
= read_smb_length_return_keepalive(fd
,buffer
,timeout
,&len
);
359 if (!NT_STATUS_IS_OK(status
)) {
360 DEBUG(0, ("read_fd_with_timeout failed, read "
361 "error = %s.\n", nt_errstr(status
)));
366 DEBUG(0,("Invalid packet length! (%lu bytes).\n",
367 (unsigned long)len
));
368 return NT_STATUS_INVALID_PARAMETER
;
373 len
= MIN(len
,maxlen
);
376 status
= read_fd_with_timeout(
377 fd
, buffer
+4, len
, len
, timeout
, &len
);
379 if (!NT_STATUS_IS_OK(status
)) {
380 DEBUG(0, ("read_fd_with_timeout failed, read error = "
381 "%s.\n", nt_errstr(status
)));
385 /* not all of samba3 properly checks for packet-termination
386 * of strings. This ensures that we don't run off into
388 SSVAL(buffer
+4,len
, 0);
395 /****************************************************************************
396 Open a socket of the specified type, port, and address for incoming data.
397 ****************************************************************************/
399 int open_socket_in(int type
,
402 const struct sockaddr_storage
*psock
,
405 struct sockaddr_storage sock
;
407 socklen_t slen
= sizeof(struct sockaddr_in
);
411 #if defined(HAVE_IPV6)
412 if (sock
.ss_family
== AF_INET6
) {
413 ((struct sockaddr_in6
*)&sock
)->sin6_port
= htons(port
);
414 slen
= sizeof(struct sockaddr_in6
);
417 if (sock
.ss_family
== AF_INET
) {
418 ((struct sockaddr_in
*)&sock
)->sin_port
= htons(port
);
421 res
= socket(sock
.ss_family
, type
, 0 );
424 dbgtext( "open_socket_in(): socket() call failed: " );
425 dbgtext( "%s\n", strerror( errno
) );
430 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
432 int val
= rebind
? 1 : 0;
433 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEADDR
,
434 (char *)&val
,sizeof(val
)) == -1 ) {
435 if( DEBUGLVL( dlevel
) ) {
436 dbgtext( "open_socket_in(): setsockopt: " );
437 dbgtext( "SO_REUSEADDR = %s ",
438 val
?"true":"false" );
439 dbgtext( "on port %d failed ", port
);
440 dbgtext( "with error = %s\n", strerror(errno
) );
444 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEPORT
,
445 (char *)&val
,sizeof(val
)) == -1 ) {
446 if( DEBUGLVL( dlevel
) ) {
447 dbgtext( "open_socket_in(): setsockopt: ");
448 dbgtext( "SO_REUSEPORT = %s ",
450 dbgtext( "on port %d failed ", port
);
451 dbgtext( "with error = %s\n", strerror(errno
));
454 #endif /* SO_REUSEPORT */
459 * As IPV6_V6ONLY is the default on some systems,
460 * we better try to be consistent and always use it.
462 * This also avoids using IPv4 via AF_INET6 sockets
463 * and makes sure %I never resolves to a '::ffff:192.168.0.1'
466 if (sock
.ss_family
== AF_INET6
) {
470 ret
= setsockopt(res
, IPPROTO_IPV6
, IPV6_V6ONLY
,
471 (const void *)&val
, sizeof(val
));
474 dbgtext("open_socket_in(): IPV6_ONLY failed: ");
475 dbgtext("%s\n", strerror(errno
));
483 /* now we've got a socket - we need to bind it */
484 if (bind(res
, (struct sockaddr
*)&sock
, slen
) == -1 ) {
485 if( DEBUGLVL(dlevel
) && (port
== NMB_PORT
||
486 port
== NBT_SMB_PORT
||
487 port
== TCP_SMB_PORT
) ) {
488 char addr
[INET6_ADDRSTRLEN
];
489 print_sockaddr(addr
, sizeof(addr
),
491 dbgtext( "bind failed on port %d ", port
);
492 dbgtext( "socket_addr = %s.\n", addr
);
493 dbgtext( "Error = %s\n", strerror(errno
));
499 DEBUG( 10, ( "bind succeeded on port %d\n", port
) );
503 struct open_socket_out_state
{
505 struct event_context
*ev
;
506 struct sockaddr_storage ss
;
512 static void open_socket_out_connected(struct tevent_req
*subreq
);
514 static int open_socket_out_state_destructor(struct open_socket_out_state
*s
)
522 /****************************************************************************
523 Create an outgoing socket. timeout is in milliseconds.
524 **************************************************************************/
526 struct tevent_req
*open_socket_out_send(TALLOC_CTX
*mem_ctx
,
527 struct event_context
*ev
,
528 const struct sockaddr_storage
*pss
,
532 char addr
[INET6_ADDRSTRLEN
];
533 struct tevent_req
*result
, *subreq
;
534 struct open_socket_out_state
*state
;
537 result
= tevent_req_create(mem_ctx
, &state
,
538 struct open_socket_out_state
);
539 if (result
== NULL
) {
545 state
->wait_usec
= 10000;
548 state
->fd
= socket(state
->ss
.ss_family
, SOCK_STREAM
, 0);
549 if (state
->fd
== -1) {
550 status
= map_nt_error_from_unix(errno
);
553 talloc_set_destructor(state
, open_socket_out_state_destructor
);
555 if (!tevent_req_set_endtime(
556 result
, ev
, timeval_current_ofs_msec(timeout
))) {
560 #if defined(HAVE_IPV6)
561 if (pss
->ss_family
== AF_INET6
) {
562 struct sockaddr_in6
*psa6
;
563 psa6
= (struct sockaddr_in6
*)&state
->ss
;
564 psa6
->sin6_port
= htons(port
);
565 if (psa6
->sin6_scope_id
== 0
566 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
567 setup_linklocal_scope_id(
568 (struct sockaddr
*)&(state
->ss
));
570 state
->salen
= sizeof(struct sockaddr_in6
);
573 if (pss
->ss_family
== AF_INET
) {
574 struct sockaddr_in
*psa
;
575 psa
= (struct sockaddr_in
*)&state
->ss
;
576 psa
->sin_port
= htons(port
);
577 state
->salen
= sizeof(struct sockaddr_in
);
580 if (pss
->ss_family
== AF_UNIX
) {
581 state
->salen
= sizeof(struct sockaddr_un
);
584 print_sockaddr(addr
, sizeof(addr
), &state
->ss
);
585 DEBUG(3,("Connecting to %s at port %u\n", addr
, (unsigned int)port
));
587 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
588 (struct sockaddr
*)&state
->ss
,
591 || !tevent_req_set_endtime(
593 timeval_current_ofs(0, state
->wait_usec
))) {
596 tevent_req_set_callback(subreq
, open_socket_out_connected
, result
);
600 tevent_req_nterror(result
, status
);
601 return tevent_req_post(result
, ev
);
607 static void open_socket_out_connected(struct tevent_req
*subreq
)
609 struct tevent_req
*req
=
610 tevent_req_callback_data(subreq
, struct tevent_req
);
611 struct open_socket_out_state
*state
=
612 tevent_req_data(req
, struct open_socket_out_state
);
616 ret
= async_connect_recv(subreq
, &sys_errno
);
619 tevent_req_done(req
);
625 (sys_errno
== ETIMEDOUT
) ||
627 (sys_errno
== EINPROGRESS
) ||
628 (sys_errno
== EALREADY
) ||
629 (sys_errno
== EAGAIN
)) {
635 if (state
->wait_usec
< 250000) {
636 state
->wait_usec
*= 1.5;
639 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
640 (struct sockaddr
*)&state
->ss
,
642 if (tevent_req_nomem(subreq
, req
)) {
645 if (!tevent_req_set_endtime(
647 timeval_current_ofs_usec(state
->wait_usec
))) {
648 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
651 tevent_req_set_callback(subreq
, open_socket_out_connected
, req
);
656 if (sys_errno
== EISCONN
) {
657 tevent_req_done(req
);
663 tevent_req_nterror(req
, map_nt_error_from_unix(sys_errno
));
666 NTSTATUS
open_socket_out_recv(struct tevent_req
*req
, int *pfd
)
668 struct open_socket_out_state
*state
=
669 tevent_req_data(req
, struct open_socket_out_state
);
672 if (tevent_req_is_nterror(req
, &status
)) {
681 * @brief open a socket
683 * @param pss a struct sockaddr_storage defining the address to connect to
684 * @param port to connect to
685 * @param timeout in MILLISECONDS
686 * @param pfd file descriptor returned
688 * @return NTSTATUS code
690 NTSTATUS
open_socket_out(const struct sockaddr_storage
*pss
, uint16_t port
,
691 int timeout
, int *pfd
)
693 TALLOC_CTX
*frame
= talloc_stackframe();
694 struct event_context
*ev
;
695 struct tevent_req
*req
;
696 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
698 ev
= event_context_init(frame
);
703 req
= open_socket_out_send(frame
, ev
, pss
, port
, timeout
);
707 if (!tevent_req_poll(req
, ev
)) {
708 status
= NT_STATUS_INTERNAL_ERROR
;
711 status
= open_socket_out_recv(req
, pfd
);
717 struct open_socket_out_defer_state
{
718 struct event_context
*ev
;
719 struct sockaddr_storage ss
;
725 static void open_socket_out_defer_waited(struct tevent_req
*subreq
);
726 static void open_socket_out_defer_connected(struct tevent_req
*subreq
);
728 struct tevent_req
*open_socket_out_defer_send(TALLOC_CTX
*mem_ctx
,
729 struct event_context
*ev
,
730 struct timeval wait_time
,
731 const struct sockaddr_storage
*pss
,
735 struct tevent_req
*req
, *subreq
;
736 struct open_socket_out_defer_state
*state
;
738 req
= tevent_req_create(mem_ctx
, &state
,
739 struct open_socket_out_defer_state
);
746 state
->timeout
= timeout
;
748 subreq
= tevent_wakeup_send(
750 timeval_current_ofs(wait_time
.tv_sec
, wait_time
.tv_usec
));
751 if (subreq
== NULL
) {
754 tevent_req_set_callback(subreq
, open_socket_out_defer_waited
, req
);
761 static void open_socket_out_defer_waited(struct tevent_req
*subreq
)
763 struct tevent_req
*req
= tevent_req_callback_data(
764 subreq
, struct tevent_req
);
765 struct open_socket_out_defer_state
*state
= tevent_req_data(
766 req
, struct open_socket_out_defer_state
);
769 ret
= tevent_wakeup_recv(subreq
);
772 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
776 subreq
= open_socket_out_send(state
, state
->ev
, &state
->ss
,
777 state
->port
, state
->timeout
);
778 if (tevent_req_nomem(subreq
, req
)) {
781 tevent_req_set_callback(subreq
, open_socket_out_defer_connected
, req
);
784 static void open_socket_out_defer_connected(struct tevent_req
*subreq
)
786 struct tevent_req
*req
= tevent_req_callback_data(
787 subreq
, struct tevent_req
);
788 struct open_socket_out_defer_state
*state
= tevent_req_data(
789 req
, struct open_socket_out_defer_state
);
792 status
= open_socket_out_recv(subreq
, &state
->fd
);
794 if (!NT_STATUS_IS_OK(status
)) {
795 tevent_req_nterror(req
, status
);
798 tevent_req_done(req
);
801 NTSTATUS
open_socket_out_defer_recv(struct tevent_req
*req
, int *pfd
)
803 struct open_socket_out_defer_state
*state
= tevent_req_data(
804 req
, struct open_socket_out_defer_state
);
807 if (tevent_req_is_nterror(req
, &status
)) {
815 /****************************************************************************
816 Open a connected UDP socket to host on port
817 **************************************************************************/
819 int open_udp_socket(const char *host
, int port
)
821 struct sockaddr_storage ss
;
824 if (!interpret_string_addr(&ss
, host
, 0)) {
825 DEBUG(10,("open_udp_socket: can't resolve name %s\n",
830 res
= socket(ss
.ss_family
, SOCK_DGRAM
, 0);
835 #if defined(HAVE_IPV6)
836 if (ss
.ss_family
== AF_INET6
) {
837 struct sockaddr_in6
*psa6
;
838 psa6
= (struct sockaddr_in6
*)&ss
;
839 psa6
->sin6_port
= htons(port
);
840 if (psa6
->sin6_scope_id
== 0
841 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
842 setup_linklocal_scope_id(
843 (struct sockaddr
*)&ss
);
847 if (ss
.ss_family
== AF_INET
) {
848 struct sockaddr_in
*psa
;
849 psa
= (struct sockaddr_in
*)&ss
;
850 psa
->sin_port
= htons(port
);
853 if (sys_connect(res
,(struct sockaddr
*)&ss
)) {
861 /*******************************************************************
862 Return the IP addr of the remote end of a socket as a string.
863 Optionally return the struct sockaddr_storage.
864 ******************************************************************/
866 static const char *get_peer_addr_internal(int fd
,
869 struct sockaddr
*pss
,
872 struct sockaddr_storage ss
;
873 socklen_t length
= sizeof(ss
);
875 strlcpy(addr_buf
,"0.0.0.0",addr_buf_len
);
882 pss
= (struct sockaddr
*)&ss
;
886 if (getpeername(fd
, (struct sockaddr
*)pss
, plength
) < 0) {
887 int level
= (errno
== ENOTCONN
) ? 2 : 0;
888 DEBUG(level
, ("getpeername failed. Error was %s\n",
893 print_sockaddr_len(addr_buf
,
900 /*******************************************************************
901 Matchname - determine if host name matches IP address. Used to
902 confirm a hostname lookup to prevent spoof attacks.
903 ******************************************************************/
905 static bool matchname(const char *remotehost
,
906 const struct sockaddr
*pss
,
909 struct addrinfo
*res
= NULL
;
910 struct addrinfo
*ailist
= NULL
;
911 char addr_buf
[INET6_ADDRSTRLEN
];
912 bool ret
= interpret_string_addr_internal(&ailist
,
914 AI_ADDRCONFIG
|AI_CANONNAME
);
916 if (!ret
|| ailist
== NULL
) {
917 DEBUG(3,("matchname: getaddrinfo failed for "
920 gai_strerror(ret
) ));
925 * Make sure that getaddrinfo() returns the "correct" host name.
928 if (ailist
->ai_canonname
== NULL
||
929 (!strequal(remotehost
, ailist
->ai_canonname
) &&
930 !strequal(remotehost
, "localhost"))) {
931 DEBUG(0,("matchname: host name/name mismatch: %s != %s\n",
933 ailist
->ai_canonname
?
934 ailist
->ai_canonname
: "(NULL)"));
935 freeaddrinfo(ailist
);
939 /* Look up the host address in the address list we just got. */
940 for (res
= ailist
; res
; res
= res
->ai_next
) {
944 if (sockaddr_equal((const struct sockaddr
*)res
->ai_addr
,
945 (const struct sockaddr
*)pss
)) {
946 freeaddrinfo(ailist
);
952 * The host name does not map to the original host address. Perhaps
953 * someone has compromised a name server. More likely someone botched
954 * it, but that could be dangerous, too.
957 DEBUG(0,("matchname: host name/address mismatch: %s != %s\n",
958 print_sockaddr_len(addr_buf
,
962 ailist
->ai_canonname
? ailist
->ai_canonname
: "(NULL)"));
965 freeaddrinfo(ailist
);
970 /*******************************************************************
971 Deal with the singleton cache.
972 ******************************************************************/
974 struct name_addr_pair
{
975 struct sockaddr_storage ss
;
979 /*******************************************************************
980 Lookup a name/addr pair. Returns memory allocated from memcache.
981 ******************************************************************/
983 static bool lookup_nc(struct name_addr_pair
*nc
)
989 if (!memcache_lookup(
990 NULL
, SINGLETON_CACHE
,
991 data_blob_string_const_null("get_peer_name"),
996 memcpy(&nc
->ss
, tmp
.data
, sizeof(nc
->ss
));
997 nc
->name
= (const char *)tmp
.data
+ sizeof(nc
->ss
);
1001 /*******************************************************************
1002 Save a name/addr pair.
1003 ******************************************************************/
1005 static void store_nc(const struct name_addr_pair
*nc
)
1008 size_t namelen
= strlen(nc
->name
);
1010 tmp
= data_blob(NULL
, sizeof(nc
->ss
) + namelen
+ 1);
1014 memcpy(tmp
.data
, &nc
->ss
, sizeof(nc
->ss
));
1015 memcpy(tmp
.data
+sizeof(nc
->ss
), nc
->name
, namelen
+1);
1017 memcache_add(NULL
, SINGLETON_CACHE
,
1018 data_blob_string_const_null("get_peer_name"),
1020 data_blob_free(&tmp
);
1023 /*******************************************************************
1024 Return the DNS name of the remote end of a socket.
1025 ******************************************************************/
1027 const char *get_peer_name(int fd
, bool force_lookup
)
1029 struct name_addr_pair nc
;
1030 char addr_buf
[INET6_ADDRSTRLEN
];
1031 struct sockaddr_storage ss
;
1032 socklen_t length
= sizeof(ss
);
1035 char name_buf
[MAX_DNS_NAME_LENGTH
];
1036 char tmp_name
[MAX_DNS_NAME_LENGTH
];
1038 /* reverse lookups can be *very* expensive, and in many
1039 situations won't work because many networks don't link dhcp
1040 with dns. To avoid the delay we avoid the lookup if
1042 if (!lp_hostname_lookups() && (force_lookup
== false)) {
1043 length
= sizeof(nc
.ss
);
1044 nc
.name
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
),
1045 (struct sockaddr
*)&nc
.ss
, &length
);
1048 return nc
.name
? nc
.name
: "UNKNOWN";
1053 memset(&ss
, '\0', sizeof(ss
));
1054 p
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
), (struct sockaddr
*)&ss
, &length
);
1056 /* it might be the same as the last one - save some DNS work */
1057 if (sockaddr_equal((struct sockaddr
*)&ss
, (struct sockaddr
*)&nc
.ss
)) {
1058 return nc
.name
? nc
.name
: "UNKNOWN";
1061 /* Not the same. We need to lookup. */
1066 /* Look up the remote host name. */
1067 ret
= sys_getnameinfo((struct sockaddr
*)&ss
,
1076 DEBUG(1,("get_peer_name: getnameinfo failed "
1077 "for %s with error %s\n",
1079 gai_strerror(ret
)));
1080 strlcpy(name_buf
, p
, sizeof(name_buf
));
1082 if (!matchname(name_buf
, (struct sockaddr
*)&ss
, length
)) {
1083 DEBUG(0,("Matchname failed on %s %s\n",name_buf
,p
));
1084 strlcpy(name_buf
,"UNKNOWN",sizeof(name_buf
));
1088 strlcpy(tmp_name
, name_buf
, sizeof(tmp_name
));
1089 alpha_strcpy(name_buf
, tmp_name
, "_-.", sizeof(name_buf
));
1090 if (strstr(name_buf
,"..")) {
1091 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1099 return nc
.name
? nc
.name
: "UNKNOWN";
1102 /*******************************************************************
1103 Return the IP addr of the remote end of a socket as a string.
1104 ******************************************************************/
1106 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
)
1108 return get_peer_addr_internal(fd
, addr
, addr_len
, NULL
, NULL
);
1111 int get_remote_hostname(const struct tsocket_address
*remote_address
,
1113 TALLOC_CTX
*mem_ctx
)
1115 char name_buf
[MAX_DNS_NAME_LENGTH
];
1116 char tmp_name
[MAX_DNS_NAME_LENGTH
];
1117 struct name_addr_pair nc
;
1118 struct sockaddr_storage ss
;
1122 if (!lp_hostname_lookups()) {
1123 nc
.name
= tsocket_address_inet_addr_string(remote_address
,
1125 if (nc
.name
== NULL
) {
1129 len
= tsocket_address_bsd_sockaddr(remote_address
,
1130 (struct sockaddr
*) &nc
.ss
,
1131 sizeof(struct sockaddr_storage
));
1139 if (nc
.name
== NULL
) {
1140 *name
= talloc_strdup(mem_ctx
, "UNKNOWN");
1142 *name
= talloc_strdup(mem_ctx
, nc
.name
);
1151 len
= tsocket_address_bsd_sockaddr(remote_address
,
1152 (struct sockaddr
*) &ss
,
1153 sizeof(struct sockaddr_storage
));
1158 /* it might be the same as the last one - save some DNS work */
1159 if (sockaddr_equal((struct sockaddr
*)&ss
, (struct sockaddr
*)&nc
.ss
)) {
1160 if (nc
.name
== NULL
) {
1161 *name
= talloc_strdup(mem_ctx
, "UNKNOWN");
1163 *name
= talloc_strdup(mem_ctx
, nc
.name
);
1168 /* Look up the remote host name. */
1169 rc
= sys_getnameinfo((struct sockaddr
*) &ss
,
1179 p
= tsocket_address_inet_addr_string(remote_address
, mem_ctx
);
1184 DEBUG(1,("getnameinfo failed for %s with error %s\n",
1187 strlcpy(name_buf
, p
, sizeof(name_buf
));
1191 if (!matchname(name_buf
, (struct sockaddr
*)&ss
, len
)) {
1192 DEBUG(0,("matchname failed on %s\n", name_buf
));
1193 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1197 strlcpy(tmp_name
, name_buf
, sizeof(tmp_name
));
1198 alpha_strcpy(name_buf
, tmp_name
, "_-.", sizeof(name_buf
));
1199 if (strstr(name_buf
,"..")) {
1200 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1209 if (nc
.name
== NULL
) {
1210 *name
= talloc_strdup(mem_ctx
, "UNKOWN");
1212 *name
= talloc_strdup(mem_ctx
, nc
.name
);
1218 /*******************************************************************
1219 Create protected unix domain socket.
1221 Some unixes cannot set permissions on a ux-dom-sock, so we
1222 have to make sure that the directory contains the protection
1223 permissions instead.
1224 ******************************************************************/
1226 int create_pipe_sock(const char *socket_dir
,
1227 const char *socket_name
,
1230 #ifdef HAVE_UNIXSOCKET
1231 struct sockaddr_un sunaddr
;
1237 old_umask
= umask(0);
1239 /* Create the socket directory or reuse the existing one */
1241 if (lstat(socket_dir
, &st
) == -1) {
1242 if (errno
== ENOENT
) {
1243 /* Create directory */
1244 if (mkdir(socket_dir
, dir_perms
) == -1) {
1245 DEBUG(0, ("error creating socket directory "
1246 "%s: %s\n", socket_dir
,
1251 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1252 socket_dir
, strerror(errno
)));
1256 /* Check ownership and permission on existing directory */
1257 if (!S_ISDIR(st
.st_mode
)) {
1258 DEBUG(0, ("socket directory '%s' isn't a directory\n",
1262 if (st
.st_uid
!= sec_initial_uid()) {
1263 DEBUG(0, ("invalid ownership on directory "
1264 "'%s'\n", socket_dir
));
1268 if ((st
.st_mode
& 0777) != dir_perms
) {
1269 DEBUG(0, ("invalid permissions on directory "
1270 "'%s': has 0%o should be 0%o\n", socket_dir
,
1271 (st
.st_mode
& 0777), dir_perms
));
1277 /* Create the socket file */
1279 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1282 DEBUG(0, ("create_pipe_sock: socket error %s\n",
1287 if (asprintf(&path
, "%s/%s", socket_dir
, socket_name
) == -1) {
1292 memset(&sunaddr
, 0, sizeof(sunaddr
));
1293 sunaddr
.sun_family
= AF_UNIX
;
1294 strlcpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
));
1296 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1) {
1297 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path
,
1317 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1319 #endif /* HAVE_UNIXSOCKET */
1322 /****************************************************************************
1323 Get my own canonical name, including domain.
1324 ****************************************************************************/
1326 const char *get_mydnsfullname(void)
1328 struct addrinfo
*res
= NULL
;
1329 char my_hostname
[HOST_NAME_MAX
];
1333 if (memcache_lookup(NULL
, SINGLETON_CACHE
,
1334 data_blob_string_const_null("get_mydnsfullname"),
1336 SMB_ASSERT(tmp
.length
> 0);
1337 return (const char *)tmp
.data
;
1340 /* get my host name */
1341 if (gethostname(my_hostname
, sizeof(my_hostname
)) == -1) {
1342 DEBUG(0,("get_mydnsfullname: gethostname failed\n"));
1346 /* Ensure null termination. */
1347 my_hostname
[sizeof(my_hostname
)-1] = '\0';
1349 ret
= interpret_string_addr_internal(&res
,
1351 AI_ADDRCONFIG
|AI_CANONNAME
);
1353 if (!ret
|| res
== NULL
) {
1354 DEBUG(3,("get_mydnsfullname: getaddrinfo failed for "
1357 gai_strerror(ret
) ));
1362 * Make sure that getaddrinfo() returns the "correct" host name.
1365 if (res
->ai_canonname
== NULL
) {
1366 DEBUG(3,("get_mydnsfullname: failed to get "
1367 "canonical name for %s\n",
1373 /* This copies the data, so we must do a lookup
1374 * afterwards to find the value to return.
1377 memcache_add(NULL
, SINGLETON_CACHE
,
1378 data_blob_string_const_null("get_mydnsfullname"),
1379 data_blob_string_const_null(res
->ai_canonname
));
1381 if (!memcache_lookup(NULL
, SINGLETON_CACHE
,
1382 data_blob_string_const_null("get_mydnsfullname"),
1384 tmp
= data_blob_talloc(talloc_tos(), res
->ai_canonname
,
1385 strlen(res
->ai_canonname
) + 1);
1390 return (const char *)tmp
.data
;
1393 /************************************************************
1394 Is this my ip address ?
1395 ************************************************************/
1397 static bool is_my_ipaddr(const char *ipaddr_str
)
1399 struct sockaddr_storage ss
;
1400 struct iface_struct
*nics
;
1403 if (!interpret_string_addr(&ss
, ipaddr_str
, AI_NUMERICHOST
)) {
1407 if (is_zero_addr(&ss
)) {
1411 if (ismyaddr((struct sockaddr
*)&ss
) ||
1412 is_loopback_addr((struct sockaddr
*)&ss
)) {
1416 n
= get_interfaces(talloc_tos(), &nics
);
1417 for (i
=0; i
<n
; i
++) {
1418 if (sockaddr_equal((struct sockaddr
*)&nics
[i
].ip
, (struct sockaddr
*)&ss
)) {
1427 /************************************************************
1429 ************************************************************/
1431 bool is_myname_or_ipaddr(const char *s
)
1433 TALLOC_CTX
*ctx
= talloc_tos();
1435 const char *dnsname
;
1436 char *servername
= NULL
;
1442 /* Santize the string from '\\name' */
1443 name
= talloc_strdup(ctx
, s
);
1448 servername
= strrchr_m(name
, '\\' );
1455 /* Optimize for the common case */
1456 if (strequal(servername
, lp_netbios_name())) {
1460 /* Check for an alias */
1461 if (is_myname(servername
)) {
1465 /* Check for loopback */
1466 if (strequal(servername
, "127.0.0.1") ||
1467 strequal(servername
, "::1")) {
1471 if (strequal(servername
, "localhost")) {
1475 /* Maybe it's my dns name */
1476 dnsname
= get_mydnsfullname();
1477 if (dnsname
&& strequal(servername
, dnsname
)) {
1481 /* Maybe its an IP address? */
1482 if (is_ipaddress(servername
)) {
1483 return is_my_ipaddr(servername
);
1486 /* Handle possible CNAME records - convert to an IP addr. list. */
1488 /* Use DNS to resolve the name, check all addresses. */
1489 struct addrinfo
*p
= NULL
;
1490 struct addrinfo
*res
= NULL
;
1492 if (!interpret_string_addr_internal(&res
,
1498 for (p
= res
; p
; p
= p
->ai_next
) {
1499 char addr
[INET6_ADDRSTRLEN
];
1500 struct sockaddr_storage ss
;
1503 memcpy(&ss
, p
->ai_addr
, p
->ai_addrlen
);
1504 print_sockaddr(addr
,
1507 if (is_my_ipaddr(addr
)) {
1519 struct getaddrinfo_state
{
1521 const char *service
;
1522 const struct addrinfo
*hints
;
1523 struct addrinfo
*res
;
1527 static void getaddrinfo_do(void *private_data
);
1528 static void getaddrinfo_done(struct tevent_req
*subreq
);
1530 struct tevent_req
*getaddrinfo_send(TALLOC_CTX
*mem_ctx
,
1531 struct tevent_context
*ev
,
1532 struct fncall_context
*ctx
,
1534 const char *service
,
1535 const struct addrinfo
*hints
)
1537 struct tevent_req
*req
, *subreq
;
1538 struct getaddrinfo_state
*state
;
1540 req
= tevent_req_create(mem_ctx
, &state
, struct getaddrinfo_state
);
1546 state
->service
= service
;
1547 state
->hints
= hints
;
1549 subreq
= fncall_send(state
, ev
, ctx
, getaddrinfo_do
, state
);
1550 if (tevent_req_nomem(subreq
, req
)) {
1551 return tevent_req_post(req
, ev
);
1553 tevent_req_set_callback(subreq
, getaddrinfo_done
, req
);
1557 static void getaddrinfo_do(void *private_data
)
1559 struct getaddrinfo_state
*state
=
1560 (struct getaddrinfo_state
*)private_data
;
1562 state
->ret
= getaddrinfo(state
->node
, state
->service
, state
->hints
,
1566 static void getaddrinfo_done(struct tevent_req
*subreq
)
1568 struct tevent_req
*req
= tevent_req_callback_data(
1569 subreq
, struct tevent_req
);
1572 ret
= fncall_recv(subreq
, &err
);
1573 TALLOC_FREE(subreq
);
1575 tevent_req_error(req
, err
);
1578 tevent_req_done(req
);
1581 int getaddrinfo_recv(struct tevent_req
*req
, struct addrinfo
**res
)
1583 struct getaddrinfo_state
*state
= tevent_req_data(
1584 req
, struct getaddrinfo_state
);
1587 if (tevent_req_is_unix_error(req
, &err
)) {
1595 if (state
->ret
== 0) {
1601 int poll_one_fd(int fd
, int events
, int timeout
, int *revents
)
1607 fds
= talloc_zero_array(talloc_tos(), struct pollfd
, 1);
1613 fds
[0].events
= events
;
1615 ret
= poll(fds
, 1, timeout
);
1618 * Assign whatever poll did, even in the ret<=0 case.
1620 *revents
= fds
[0].revents
;
1621 saved_errno
= errno
;
1623 errno
= saved_errno
;
1628 int poll_intr_one_fd(int fd
, int events
, int timeout
, int *revents
)
1634 pfd
.events
= events
;
1636 ret
= sys_poll_intr(&pfd
, 1, timeout
);
1641 *revents
= pfd
.revents
;