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_addr(int fd
, char *addr
, size_t addrlen
)
34 return get_peer_addr(fd
,addr
,addrlen
);
38 /* Not currently used. JRA. */
39 int client_socket_port(int fd
)
41 return get_socket_port(fd
);
45 /****************************************************************************
46 Determine if a file descriptor is in fact a socket.
47 ****************************************************************************/
49 bool is_a_socket(int fd
)
54 return(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&v
, &l
) == 0);
57 /****************************************************************************
59 ****************************************************************************/
61 ssize_t
read_udp_v4_socket(int fd
,
64 struct sockaddr_storage
*psa
)
67 socklen_t socklen
= sizeof(*psa
);
68 struct sockaddr_in
*si
= (struct sockaddr_in
*)psa
;
70 memset((char *)psa
,'\0',socklen
);
72 ret
= (ssize_t
)sys_recvfrom(fd
,buf
,len
,0,
73 (struct sockaddr
*)psa
,&socklen
);
75 /* Don't print a low debug error for a non-blocking socket. */
76 if (errno
== EAGAIN
) {
77 DEBUG(10,("read_udp_v4_socket: returned EAGAIN\n"));
79 DEBUG(2,("read_udp_v4_socket: failed. errno=%s\n",
85 if (psa
->ss_family
!= AF_INET
) {
86 DEBUG(2,("read_udp_v4_socket: invalid address family %d "
87 "(not IPv4)\n", (int)psa
->ss_family
));
91 DEBUG(10,("read_udp_v4_socket: ip %s port %d read: %lu\n",
92 inet_ntoa(si
->sin_addr
),
99 /****************************************************************************
100 Read data from a file descriptor with a timout in msec.
101 mincount = if timeout, minimum to read before returning
102 maxcount = number to be read.
103 time_out = timeout in milliseconds
104 NB. This can be called with a non-socket fd, don't change
105 sys_read() to sys_recv() or other socket call.
106 ****************************************************************************/
108 NTSTATUS
read_fd_with_timeout(int fd
, char *buf
,
109 size_t mincnt
, size_t maxcnt
,
110 unsigned int time_out
,
117 /* just checking .... */
127 while (nread
< mincnt
) {
128 readret
= sys_read(fd
, buf
+ nread
, maxcnt
- nread
);
131 DEBUG(5,("read_fd_with_timeout: "
132 "blocking read. EOF from client.\n"));
133 return NT_STATUS_END_OF_FILE
;
137 return map_nt_error_from_unix(errno
);
144 /* Most difficult - timeout read */
145 /* If this is ever called on a disk file and
146 mincnt is greater then the filesize then
147 system performance will suffer severely as
148 select always returns true on disk files */
150 for (nread
=0; nread
< mincnt
; ) {
153 pollrtn
= poll_intr_one_fd(fd
, POLLIN
|POLLHUP
, time_out
,
158 return map_nt_error_from_unix(errno
);
161 /* Did we timeout ? */
162 if ((pollrtn
== 0) ||
163 ((revents
& (POLLIN
|POLLHUP
|POLLERR
)) == 0)) {
164 DEBUG(10,("read_fd_with_timeout: timeout read. "
165 "select timed out.\n"));
166 return NT_STATUS_IO_TIMEOUT
;
169 readret
= sys_read(fd
, buf
+nread
, maxcnt
-nread
);
172 /* we got EOF on the file descriptor */
173 DEBUG(5,("read_fd_with_timeout: timeout read. "
174 "EOF from client.\n"));
175 return NT_STATUS_END_OF_FILE
;
179 return map_nt_error_from_unix(errno
);
186 /* Return the number we got */
193 /****************************************************************************
194 Read data from an fd, reading exactly N bytes.
195 NB. This can be called with a non-socket fd, don't add dependencies
197 ****************************************************************************/
199 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
)
201 return read_fd_with_timeout(fd
, buffer
, N
, N
, 0, NULL
);
204 /****************************************************************************
205 Write all data from an iov array
206 NB. This can be called with a non-socket fd, don't add dependencies
208 ****************************************************************************/
210 ssize_t
write_data_iov(int fd
, const struct iovec
*orig_iov
, int iovcnt
)
216 struct iovec
*iov_copy
, *iov
;
219 for (i
=0; i
<iovcnt
; i
++) {
220 to_send
+= orig_iov
[i
].iov_len
;
223 thistime
= sys_writev(fd
, orig_iov
, iovcnt
);
224 if ((thistime
<= 0) || (thistime
== to_send
)) {
230 * We could not send everything in one call. Make a copy of iov that
231 * we can mess with. We keep a copy of the array start in iov_copy for
232 * the TALLOC_FREE, because we're going to modify iov later on,
233 * discarding elements.
236 iov_copy
= (struct iovec
*)talloc_memdup(
237 talloc_tos(), orig_iov
, sizeof(struct iovec
) * iovcnt
);
239 if (iov_copy
== NULL
) {
245 while (sent
< to_send
) {
247 * We have to discard "thistime" bytes from the beginning
248 * iov array, "thistime" contains the number of bytes sent
251 while (thistime
> 0) {
252 if (thistime
< iov
[0].iov_len
) {
254 (char *)iov
[0].iov_base
+ thistime
;
255 iov
[0].iov_base
= (void *)new_base
;
256 iov
[0].iov_len
-= thistime
;
259 thistime
-= iov
[0].iov_len
;
264 thistime
= sys_writev(fd
, iov
, iovcnt
);
271 TALLOC_FREE(iov_copy
);
275 /****************************************************************************
277 NB. This can be called with a non-socket fd, don't add dependencies
279 ****************************************************************************/
281 ssize_t
write_data(int fd
, const char *buffer
, size_t N
)
285 iov
.iov_base
= discard_const_p(void, buffer
);
287 return write_data_iov(fd
, &iov
, 1);
290 /****************************************************************************
291 Send a keepalive packet (rfc1002).
292 ****************************************************************************/
294 bool send_keepalive(int client
)
296 unsigned char buf
[4];
298 buf
[0] = NBSSkeepalive
;
299 buf
[1] = buf
[2] = buf
[3] = 0;
301 return(write_data(client
,(char *)buf
,4) == 4);
304 /****************************************************************************
305 Read 4 bytes of a smb packet and return the smb length of the packet.
306 Store the result in the buffer.
307 This version of the function will return a length of zero on receiving
309 Timeout is in milliseconds.
310 ****************************************************************************/
312 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
313 unsigned int timeout
,
319 status
= read_fd_with_timeout(fd
, inbuf
, 4, 4, timeout
, NULL
);
321 if (!NT_STATUS_IS_OK(status
)) {
325 *len
= smb_len(inbuf
);
326 msg_type
= CVAL(inbuf
,0);
328 if (msg_type
== NBSSkeepalive
) {
329 DEBUG(5,("Got keepalive packet\n"));
332 DEBUG(10,("got smb length of %lu\n",(unsigned long)(*len
)));
337 /****************************************************************************
338 Read an smb from a fd.
339 The timeout is in milliseconds.
340 This function will return on receipt of a session keepalive packet.
341 maxlen is the max number of bytes to return, not including the 4 byte
342 length. If zero it means buflen limit.
343 Doesn't check the MAC on signed packets.
344 ****************************************************************************/
346 NTSTATUS
receive_smb_raw(int fd
, char *buffer
, size_t buflen
, unsigned int timeout
,
347 size_t maxlen
, size_t *p_len
)
352 status
= read_smb_length_return_keepalive(fd
,buffer
,timeout
,&len
);
354 if (!NT_STATUS_IS_OK(status
)) {
355 DEBUG(0, ("read_fd_with_timeout failed, read "
356 "error = %s.\n", nt_errstr(status
)));
361 DEBUG(0,("Invalid packet length! (%lu bytes).\n",
362 (unsigned long)len
));
363 return NT_STATUS_INVALID_PARAMETER
;
368 len
= MIN(len
,maxlen
);
371 status
= read_fd_with_timeout(
372 fd
, buffer
+4, len
, len
, timeout
, &len
);
374 if (!NT_STATUS_IS_OK(status
)) {
375 DEBUG(0, ("read_fd_with_timeout failed, read error = "
376 "%s.\n", nt_errstr(status
)));
380 /* not all of samba3 properly checks for packet-termination
381 * of strings. This ensures that we don't run off into
383 SSVAL(buffer
+4,len
, 0);
390 /****************************************************************************
391 Open a socket of the specified type, port, and address for incoming data.
392 ****************************************************************************/
394 int open_socket_in(int type
,
397 const struct sockaddr_storage
*psock
,
400 struct sockaddr_storage sock
;
402 socklen_t slen
= sizeof(struct sockaddr_in
);
406 #if defined(HAVE_IPV6)
407 if (sock
.ss_family
== AF_INET6
) {
408 ((struct sockaddr_in6
*)&sock
)->sin6_port
= htons(port
);
409 slen
= sizeof(struct sockaddr_in6
);
412 if (sock
.ss_family
== AF_INET
) {
413 ((struct sockaddr_in
*)&sock
)->sin_port
= htons(port
);
416 res
= socket(sock
.ss_family
, type
, 0 );
419 dbgtext( "open_socket_in(): socket() call failed: " );
420 dbgtext( "%s\n", strerror( errno
) );
425 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
427 int val
= rebind
? 1 : 0;
428 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEADDR
,
429 (char *)&val
,sizeof(val
)) == -1 ) {
430 if( DEBUGLVL( dlevel
) ) {
431 dbgtext( "open_socket_in(): setsockopt: " );
432 dbgtext( "SO_REUSEADDR = %s ",
433 val
?"true":"false" );
434 dbgtext( "on port %d failed ", port
);
435 dbgtext( "with error = %s\n", strerror(errno
) );
439 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEPORT
,
440 (char *)&val
,sizeof(val
)) == -1 ) {
441 if( DEBUGLVL( dlevel
) ) {
442 dbgtext( "open_socket_in(): setsockopt: ");
443 dbgtext( "SO_REUSEPORT = %s ",
445 dbgtext( "on port %d failed ", port
);
446 dbgtext( "with error = %s\n", strerror(errno
));
449 #endif /* SO_REUSEPORT */
454 * As IPV6_V6ONLY is the default on some systems,
455 * we better try to be consistent and always use it.
457 * This also avoids using IPv4 via AF_INET6 sockets
458 * and makes sure %I never resolves to a '::ffff:192.168.0.1'
461 if (sock
.ss_family
== AF_INET6
) {
465 ret
= setsockopt(res
, IPPROTO_IPV6
, IPV6_V6ONLY
,
466 (const void *)&val
, sizeof(val
));
469 dbgtext("open_socket_in(): IPV6_ONLY failed: ");
470 dbgtext("%s\n", strerror(errno
));
478 /* now we've got a socket - we need to bind it */
479 if (bind(res
, (struct sockaddr
*)&sock
, slen
) == -1 ) {
480 if( DEBUGLVL(dlevel
) && (port
== NMB_PORT
||
481 port
== NBT_SMB_PORT
||
482 port
== TCP_SMB_PORT
) ) {
483 char addr
[INET6_ADDRSTRLEN
];
484 print_sockaddr(addr
, sizeof(addr
),
486 dbgtext( "bind failed on port %d ", port
);
487 dbgtext( "socket_addr = %s.\n", addr
);
488 dbgtext( "Error = %s\n", strerror(errno
));
494 DEBUG( 10, ( "bind succeeded on port %d\n", port
) );
498 struct open_socket_out_state
{
500 struct tevent_context
*ev
;
501 struct sockaddr_storage ss
;
507 static void open_socket_out_connected(struct tevent_req
*subreq
);
509 static int open_socket_out_state_destructor(struct open_socket_out_state
*s
)
517 /****************************************************************************
518 Create an outgoing socket. timeout is in milliseconds.
519 **************************************************************************/
521 struct tevent_req
*open_socket_out_send(TALLOC_CTX
*mem_ctx
,
522 struct tevent_context
*ev
,
523 const struct sockaddr_storage
*pss
,
527 char addr
[INET6_ADDRSTRLEN
];
528 struct tevent_req
*result
, *subreq
;
529 struct open_socket_out_state
*state
;
532 result
= tevent_req_create(mem_ctx
, &state
,
533 struct open_socket_out_state
);
534 if (result
== NULL
) {
540 state
->wait_usec
= 10000;
543 state
->fd
= socket(state
->ss
.ss_family
, SOCK_STREAM
, 0);
544 if (state
->fd
== -1) {
545 status
= map_nt_error_from_unix(errno
);
548 talloc_set_destructor(state
, open_socket_out_state_destructor
);
550 if (!tevent_req_set_endtime(
551 result
, ev
, timeval_current_ofs_msec(timeout
))) {
555 #if defined(HAVE_IPV6)
556 if (pss
->ss_family
== AF_INET6
) {
557 struct sockaddr_in6
*psa6
;
558 psa6
= (struct sockaddr_in6
*)&state
->ss
;
559 psa6
->sin6_port
= htons(port
);
560 if (psa6
->sin6_scope_id
== 0
561 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
562 setup_linklocal_scope_id(
563 (struct sockaddr
*)&(state
->ss
));
565 state
->salen
= sizeof(struct sockaddr_in6
);
568 if (pss
->ss_family
== AF_INET
) {
569 struct sockaddr_in
*psa
;
570 psa
= (struct sockaddr_in
*)&state
->ss
;
571 psa
->sin_port
= htons(port
);
572 state
->salen
= sizeof(struct sockaddr_in
);
575 if (pss
->ss_family
== AF_UNIX
) {
576 state
->salen
= sizeof(struct sockaddr_un
);
579 print_sockaddr(addr
, sizeof(addr
), &state
->ss
);
580 DEBUG(3,("Connecting to %s at port %u\n", addr
, (unsigned int)port
));
582 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
583 (struct sockaddr
*)&state
->ss
,
584 state
->salen
, NULL
, NULL
, NULL
);
586 || !tevent_req_set_endtime(
588 timeval_current_ofs(0, state
->wait_usec
))) {
591 tevent_req_set_callback(subreq
, open_socket_out_connected
, result
);
595 tevent_req_nterror(result
, status
);
596 return tevent_req_post(result
, ev
);
602 static void open_socket_out_connected(struct tevent_req
*subreq
)
604 struct tevent_req
*req
=
605 tevent_req_callback_data(subreq
, struct tevent_req
);
606 struct open_socket_out_state
*state
=
607 tevent_req_data(req
, struct open_socket_out_state
);
611 ret
= async_connect_recv(subreq
, &sys_errno
);
614 tevent_req_done(req
);
620 (sys_errno
== ETIMEDOUT
) ||
622 (sys_errno
== EINPROGRESS
) ||
623 (sys_errno
== EALREADY
) ||
624 (sys_errno
== EAGAIN
)) {
630 if (state
->wait_usec
< 250000) {
631 state
->wait_usec
*= 1.5;
634 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
635 (struct sockaddr
*)&state
->ss
,
636 state
->salen
, NULL
, NULL
, NULL
);
637 if (tevent_req_nomem(subreq
, req
)) {
640 if (!tevent_req_set_endtime(
642 timeval_current_ofs_usec(state
->wait_usec
))) {
643 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
646 tevent_req_set_callback(subreq
, open_socket_out_connected
, req
);
651 if (sys_errno
== EISCONN
) {
652 tevent_req_done(req
);
658 tevent_req_nterror(req
, map_nt_error_from_unix(sys_errno
));
661 NTSTATUS
open_socket_out_recv(struct tevent_req
*req
, int *pfd
)
663 struct open_socket_out_state
*state
=
664 tevent_req_data(req
, struct open_socket_out_state
);
667 if (tevent_req_is_nterror(req
, &status
)) {
676 * @brief open a socket
678 * @param pss a struct sockaddr_storage defining the address to connect to
679 * @param port to connect to
680 * @param timeout in MILLISECONDS
681 * @param pfd file descriptor returned
683 * @return NTSTATUS code
685 NTSTATUS
open_socket_out(const struct sockaddr_storage
*pss
, uint16_t port
,
686 int timeout
, int *pfd
)
688 TALLOC_CTX
*frame
= talloc_stackframe();
689 struct tevent_context
*ev
;
690 struct tevent_req
*req
;
691 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
693 ev
= samba_tevent_context_init(frame
);
698 req
= open_socket_out_send(frame
, ev
, pss
, port
, timeout
);
702 if (!tevent_req_poll(req
, ev
)) {
703 status
= NT_STATUS_INTERNAL_ERROR
;
706 status
= open_socket_out_recv(req
, pfd
);
712 struct open_socket_out_defer_state
{
713 struct tevent_context
*ev
;
714 struct sockaddr_storage ss
;
720 static void open_socket_out_defer_waited(struct tevent_req
*subreq
);
721 static void open_socket_out_defer_connected(struct tevent_req
*subreq
);
723 struct tevent_req
*open_socket_out_defer_send(TALLOC_CTX
*mem_ctx
,
724 struct tevent_context
*ev
,
725 struct timeval wait_time
,
726 const struct sockaddr_storage
*pss
,
730 struct tevent_req
*req
, *subreq
;
731 struct open_socket_out_defer_state
*state
;
733 req
= tevent_req_create(mem_ctx
, &state
,
734 struct open_socket_out_defer_state
);
741 state
->timeout
= timeout
;
743 subreq
= tevent_wakeup_send(
745 timeval_current_ofs(wait_time
.tv_sec
, wait_time
.tv_usec
));
746 if (subreq
== NULL
) {
749 tevent_req_set_callback(subreq
, open_socket_out_defer_waited
, req
);
756 static void open_socket_out_defer_waited(struct tevent_req
*subreq
)
758 struct tevent_req
*req
= tevent_req_callback_data(
759 subreq
, struct tevent_req
);
760 struct open_socket_out_defer_state
*state
= tevent_req_data(
761 req
, struct open_socket_out_defer_state
);
764 ret
= tevent_wakeup_recv(subreq
);
767 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
771 subreq
= open_socket_out_send(state
, state
->ev
, &state
->ss
,
772 state
->port
, state
->timeout
);
773 if (tevent_req_nomem(subreq
, req
)) {
776 tevent_req_set_callback(subreq
, open_socket_out_defer_connected
, req
);
779 static void open_socket_out_defer_connected(struct tevent_req
*subreq
)
781 struct tevent_req
*req
= tevent_req_callback_data(
782 subreq
, struct tevent_req
);
783 struct open_socket_out_defer_state
*state
= tevent_req_data(
784 req
, struct open_socket_out_defer_state
);
787 status
= open_socket_out_recv(subreq
, &state
->fd
);
789 if (!NT_STATUS_IS_OK(status
)) {
790 tevent_req_nterror(req
, status
);
793 tevent_req_done(req
);
796 NTSTATUS
open_socket_out_defer_recv(struct tevent_req
*req
, int *pfd
)
798 struct open_socket_out_defer_state
*state
= tevent_req_data(
799 req
, struct open_socket_out_defer_state
);
802 if (tevent_req_is_nterror(req
, &status
)) {
810 /****************************************************************************
811 Open a connected UDP socket to host on port
812 **************************************************************************/
814 int open_udp_socket(const char *host
, int port
)
816 struct sockaddr_storage ss
;
820 if (!interpret_string_addr(&ss
, host
, 0)) {
821 DEBUG(10,("open_udp_socket: can't resolve name %s\n",
826 res
= socket(ss
.ss_family
, SOCK_DGRAM
, 0);
831 #if defined(HAVE_IPV6)
832 if (ss
.ss_family
== AF_INET6
) {
833 struct sockaddr_in6
*psa6
;
834 psa6
= (struct sockaddr_in6
*)&ss
;
835 psa6
->sin6_port
= htons(port
);
836 if (psa6
->sin6_scope_id
== 0
837 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
838 setup_linklocal_scope_id(
839 (struct sockaddr
*)&ss
);
841 salen
= sizeof(struct sockaddr_in6
);
844 if (ss
.ss_family
== AF_INET
) {
845 struct sockaddr_in
*psa
;
846 psa
= (struct sockaddr_in
*)&ss
;
847 psa
->sin_port
= htons(port
);
848 salen
= sizeof(struct sockaddr_in
);
850 DEBUG(1, ("unknown socket family %d", ss
.ss_family
));
855 if (connect(res
, (struct sockaddr
*)&ss
, salen
)) {
863 /*******************************************************************
864 Return the IP addr of the remote end of a socket as a string.
865 Optionally return the struct sockaddr_storage.
866 ******************************************************************/
868 static const char *get_peer_addr_internal(int fd
,
871 struct sockaddr
*pss
,
874 struct sockaddr_storage ss
;
875 socklen_t length
= sizeof(ss
);
877 strlcpy(addr_buf
,"0.0.0.0",addr_buf_len
);
884 pss
= (struct sockaddr
*)&ss
;
888 if (getpeername(fd
, (struct sockaddr
*)pss
, plength
) < 0) {
889 int level
= (errno
== ENOTCONN
) ? 2 : 0;
890 DEBUG(level
, ("getpeername failed. Error was %s\n",
895 print_sockaddr_len(addr_buf
,
902 /*******************************************************************
903 Matchname - determine if host name matches IP address. Used to
904 confirm a hostname lookup to prevent spoof attacks.
905 ******************************************************************/
907 static bool matchname(const char *remotehost
,
908 const struct sockaddr
*pss
,
911 struct addrinfo
*res
= NULL
;
912 struct addrinfo
*ailist
= NULL
;
913 char addr_buf
[INET6_ADDRSTRLEN
];
914 bool ret
= interpret_string_addr_internal(&ailist
,
916 AI_ADDRCONFIG
|AI_CANONNAME
);
918 if (!ret
|| ailist
== NULL
) {
919 DEBUG(3,("matchname: getaddrinfo failed for "
922 gai_strerror(ret
) ));
927 * Make sure that getaddrinfo() returns the "correct" host name.
930 if (ailist
->ai_canonname
== NULL
||
931 (!strequal(remotehost
, ailist
->ai_canonname
) &&
932 !strequal(remotehost
, "localhost"))) {
933 DEBUG(0,("matchname: host name/name mismatch: %s != %s\n",
935 ailist
->ai_canonname
?
936 ailist
->ai_canonname
: "(NULL)"));
937 freeaddrinfo(ailist
);
941 /* Look up the host address in the address list we just got. */
942 for (res
= ailist
; res
; res
= res
->ai_next
) {
946 if (sockaddr_equal((const struct sockaddr
*)res
->ai_addr
,
947 (const struct sockaddr
*)pss
)) {
948 freeaddrinfo(ailist
);
954 * The host name does not map to the original host address. Perhaps
955 * someone has compromised a name server. More likely someone botched
956 * it, but that could be dangerous, too.
959 DEBUG(0,("matchname: host name/address mismatch: %s != %s\n",
960 print_sockaddr_len(addr_buf
,
964 ailist
->ai_canonname
? ailist
->ai_canonname
: "(NULL)"));
967 freeaddrinfo(ailist
);
972 /*******************************************************************
973 Deal with the singleton cache.
974 ******************************************************************/
976 struct name_addr_pair
{
977 struct sockaddr_storage ss
;
981 /*******************************************************************
982 Lookup a name/addr pair. Returns memory allocated from memcache.
983 ******************************************************************/
985 static bool lookup_nc(struct name_addr_pair
*nc
)
991 if (!memcache_lookup(
992 NULL
, SINGLETON_CACHE
,
993 data_blob_string_const_null("get_peer_name"),
998 memcpy(&nc
->ss
, tmp
.data
, sizeof(nc
->ss
));
999 nc
->name
= (const char *)tmp
.data
+ sizeof(nc
->ss
);
1003 /*******************************************************************
1004 Save a name/addr pair.
1005 ******************************************************************/
1007 static void store_nc(const struct name_addr_pair
*nc
)
1010 size_t namelen
= strlen(nc
->name
);
1012 tmp
= data_blob(NULL
, sizeof(nc
->ss
) + namelen
+ 1);
1016 memcpy(tmp
.data
, &nc
->ss
, sizeof(nc
->ss
));
1017 memcpy(tmp
.data
+sizeof(nc
->ss
), nc
->name
, namelen
+1);
1019 memcache_add(NULL
, SINGLETON_CACHE
,
1020 data_blob_string_const_null("get_peer_name"),
1022 data_blob_free(&tmp
);
1025 /*******************************************************************
1026 Return the IP addr of the remote end of a socket as a string.
1027 ******************************************************************/
1029 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
)
1031 return get_peer_addr_internal(fd
, addr
, addr_len
, NULL
, NULL
);
1034 int get_remote_hostname(const struct tsocket_address
*remote_address
,
1036 TALLOC_CTX
*mem_ctx
)
1038 char name_buf
[MAX_DNS_NAME_LENGTH
];
1039 char tmp_name
[MAX_DNS_NAME_LENGTH
];
1040 struct name_addr_pair nc
;
1041 struct sockaddr_storage ss
;
1045 if (!lp_hostname_lookups()) {
1046 nc
.name
= tsocket_address_inet_addr_string(remote_address
,
1048 if (nc
.name
== NULL
) {
1052 len
= tsocket_address_bsd_sockaddr(remote_address
,
1053 (struct sockaddr
*) &nc
.ss
,
1054 sizeof(struct sockaddr_storage
));
1062 if (nc
.name
== NULL
) {
1063 *name
= talloc_strdup(mem_ctx
, "UNKNOWN");
1065 *name
= talloc_strdup(mem_ctx
, nc
.name
);
1074 len
= tsocket_address_bsd_sockaddr(remote_address
,
1075 (struct sockaddr
*) &ss
,
1076 sizeof(struct sockaddr_storage
));
1081 /* it might be the same as the last one - save some DNS work */
1082 if (sockaddr_equal((struct sockaddr
*)&ss
, (struct sockaddr
*)&nc
.ss
)) {
1083 if (nc
.name
== NULL
) {
1084 *name
= talloc_strdup(mem_ctx
, "UNKNOWN");
1086 *name
= talloc_strdup(mem_ctx
, nc
.name
);
1091 /* Look up the remote host name. */
1092 rc
= sys_getnameinfo((struct sockaddr
*) &ss
,
1102 p
= tsocket_address_inet_addr_string(remote_address
, mem_ctx
);
1107 DEBUG(1,("getnameinfo failed for %s with error %s\n",
1110 strlcpy(name_buf
, p
, sizeof(name_buf
));
1114 if (!matchname(name_buf
, (struct sockaddr
*)&ss
, len
)) {
1115 DEBUG(0,("matchname failed on %s\n", name_buf
));
1116 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1120 strlcpy(tmp_name
, name_buf
, sizeof(tmp_name
));
1121 alpha_strcpy(name_buf
, tmp_name
, "_-.", sizeof(name_buf
));
1122 if (strstr(name_buf
,"..")) {
1123 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1132 if (nc
.name
== NULL
) {
1133 *name
= talloc_strdup(mem_ctx
, "UNKOWN");
1135 *name
= talloc_strdup(mem_ctx
, nc
.name
);
1141 /*******************************************************************
1142 Create protected unix domain socket.
1144 Some unixes cannot set permissions on a ux-dom-sock, so we
1145 have to make sure that the directory contains the protection
1146 permissions instead.
1147 ******************************************************************/
1149 int create_pipe_sock(const char *socket_dir
,
1150 const char *socket_name
,
1153 #ifdef HAVE_UNIXSOCKET
1154 struct sockaddr_un sunaddr
;
1160 old_umask
= umask(0);
1162 ok
= directory_create_or_exist_strict(socket_dir
,
1169 /* Create the socket file */
1170 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1173 DEBUG(0, ("create_pipe_sock: socket error %s\n",
1178 if (asprintf(&path
, "%s/%s", socket_dir
, socket_name
) == -1) {
1183 memset(&sunaddr
, 0, sizeof(sunaddr
));
1184 sunaddr
.sun_family
= AF_UNIX
;
1185 strlcpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
));
1187 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1) {
1188 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path
,
1207 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1209 #endif /* HAVE_UNIXSOCKET */
1212 /****************************************************************************
1213 Get my own canonical name, including domain.
1214 ****************************************************************************/
1216 const char *get_mydnsfullname(void)
1218 struct addrinfo
*res
= NULL
;
1219 char my_hostname
[HOST_NAME_MAX
];
1223 if (memcache_lookup(NULL
, SINGLETON_CACHE
,
1224 data_blob_string_const_null("get_mydnsfullname"),
1226 SMB_ASSERT(tmp
.length
> 0);
1227 return (const char *)tmp
.data
;
1230 /* get my host name */
1231 if (gethostname(my_hostname
, sizeof(my_hostname
)) == -1) {
1232 DEBUG(0,("get_mydnsfullname: gethostname failed\n"));
1236 /* Ensure null termination. */
1237 my_hostname
[sizeof(my_hostname
)-1] = '\0';
1239 ret
= interpret_string_addr_internal(&res
,
1241 AI_ADDRCONFIG
|AI_CANONNAME
);
1243 if (!ret
|| res
== NULL
) {
1244 DEBUG(3,("get_mydnsfullname: getaddrinfo failed for "
1247 gai_strerror(ret
) ));
1252 * Make sure that getaddrinfo() returns the "correct" host name.
1255 if (res
->ai_canonname
== NULL
) {
1256 DEBUG(3,("get_mydnsfullname: failed to get "
1257 "canonical name for %s\n",
1263 /* This copies the data, so we must do a lookup
1264 * afterwards to find the value to return.
1267 memcache_add(NULL
, SINGLETON_CACHE
,
1268 data_blob_string_const_null("get_mydnsfullname"),
1269 data_blob_string_const_null(res
->ai_canonname
));
1271 if (!memcache_lookup(NULL
, SINGLETON_CACHE
,
1272 data_blob_string_const_null("get_mydnsfullname"),
1274 tmp
= data_blob_talloc(talloc_tos(), res
->ai_canonname
,
1275 strlen(res
->ai_canonname
) + 1);
1280 return (const char *)tmp
.data
;
1283 /************************************************************
1284 Is this my ip address ?
1285 ************************************************************/
1287 static bool is_my_ipaddr(const char *ipaddr_str
)
1289 struct sockaddr_storage ss
;
1290 struct iface_struct
*nics
;
1293 if (!interpret_string_addr(&ss
, ipaddr_str
, AI_NUMERICHOST
)) {
1297 if (is_zero_addr(&ss
)) {
1301 if (ismyaddr((struct sockaddr
*)&ss
) ||
1302 is_loopback_addr((struct sockaddr
*)&ss
)) {
1306 n
= get_interfaces(talloc_tos(), &nics
);
1307 for (i
=0; i
<n
; i
++) {
1308 if (sockaddr_equal((struct sockaddr
*)&nics
[i
].ip
, (struct sockaddr
*)&ss
)) {
1317 /************************************************************
1319 ************************************************************/
1321 bool is_myname_or_ipaddr(const char *s
)
1323 TALLOC_CTX
*ctx
= talloc_tos();
1325 const char *dnsname
;
1326 char *servername
= NULL
;
1332 /* Santize the string from '\\name' */
1333 name
= talloc_strdup(ctx
, s
);
1338 servername
= strrchr_m(name
, '\\' );
1345 /* Optimize for the common case */
1346 if (strequal(servername
, lp_netbios_name())) {
1350 /* Check for an alias */
1351 if (is_myname(servername
)) {
1355 /* Check for loopback */
1356 if (strequal(servername
, "127.0.0.1") ||
1357 strequal(servername
, "::1")) {
1361 if (strequal(servername
, "localhost")) {
1365 /* Maybe it's my dns name */
1366 dnsname
= get_mydnsfullname();
1367 if (dnsname
&& strequal(servername
, dnsname
)) {
1371 /* Maybe its an IP address? */
1372 if (is_ipaddress(servername
)) {
1373 return is_my_ipaddr(servername
);
1376 /* Handle possible CNAME records - convert to an IP addr. list. */
1378 /* Use DNS to resolve the name, check all addresses. */
1379 struct addrinfo
*p
= NULL
;
1380 struct addrinfo
*res
= NULL
;
1382 if (!interpret_string_addr_internal(&res
,
1388 for (p
= res
; p
; p
= p
->ai_next
) {
1389 char addr
[INET6_ADDRSTRLEN
];
1390 struct sockaddr_storage ss
;
1393 memcpy(&ss
, p
->ai_addr
, p
->ai_addrlen
);
1394 print_sockaddr(addr
,
1397 if (is_my_ipaddr(addr
)) {
1409 struct getaddrinfo_state
{
1411 const char *service
;
1412 const struct addrinfo
*hints
;
1413 struct addrinfo
*res
;
1417 static void getaddrinfo_do(void *private_data
);
1418 static void getaddrinfo_done(struct tevent_req
*subreq
);
1420 struct tevent_req
*getaddrinfo_send(TALLOC_CTX
*mem_ctx
,
1421 struct tevent_context
*ev
,
1422 struct fncall_context
*ctx
,
1424 const char *service
,
1425 const struct addrinfo
*hints
)
1427 struct tevent_req
*req
, *subreq
;
1428 struct getaddrinfo_state
*state
;
1430 req
= tevent_req_create(mem_ctx
, &state
, struct getaddrinfo_state
);
1436 state
->service
= service
;
1437 state
->hints
= hints
;
1439 subreq
= fncall_send(state
, ev
, ctx
, getaddrinfo_do
, state
);
1440 if (tevent_req_nomem(subreq
, req
)) {
1441 return tevent_req_post(req
, ev
);
1443 tevent_req_set_callback(subreq
, getaddrinfo_done
, req
);
1447 static void getaddrinfo_do(void *private_data
)
1449 struct getaddrinfo_state
*state
=
1450 (struct getaddrinfo_state
*)private_data
;
1452 state
->ret
= getaddrinfo(state
->node
, state
->service
, state
->hints
,
1456 static void getaddrinfo_done(struct tevent_req
*subreq
)
1458 struct tevent_req
*req
= tevent_req_callback_data(
1459 subreq
, struct tevent_req
);
1462 ret
= fncall_recv(subreq
, &err
);
1463 TALLOC_FREE(subreq
);
1465 tevent_req_error(req
, err
);
1468 tevent_req_done(req
);
1471 int getaddrinfo_recv(struct tevent_req
*req
, struct addrinfo
**res
)
1473 struct getaddrinfo_state
*state
= tevent_req_data(
1474 req
, struct getaddrinfo_state
);
1477 if (tevent_req_is_unix_error(req
, &err
)) {
1485 if (state
->ret
== 0) {
1491 int poll_one_fd(int fd
, int events
, int timeout
, int *revents
)
1497 pfd
.events
= events
;
1499 ret
= poll(&pfd
, 1, timeout
);
1502 * Assign whatever poll did, even in the ret<=0 case.
1504 *revents
= pfd
.revents
;
1509 int poll_intr_one_fd(int fd
, int events
, int timeout
, int *revents
)
1515 pfd
.events
= events
;
1517 ret
= sys_poll_intr(&pfd
, 1, timeout
);
1522 *revents
= pfd
.revents
;