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 "interfaces.h"
29 /****************************************************************************
30 Get a port number in host byte order from a sockaddr_storage.
31 ****************************************************************************/
33 uint16_t get_sockaddr_port(const struct sockaddr_storage
*pss
)
37 if (pss
->ss_family
!= AF_INET
) {
38 #if defined(HAVE_IPV6)
40 const struct sockaddr_in6
*sa6
=
41 (const struct sockaddr_in6
*)pss
;
42 port
= ntohs(sa6
->sin6_port
);
45 const struct sockaddr_in
*sa
=
46 (const struct sockaddr_in
*)pss
;
47 port
= ntohs(sa
->sin_port
);
52 /****************************************************************************
53 Print out an IPv4 or IPv6 address from a struct sockaddr_storage.
54 ****************************************************************************/
56 static char *print_sockaddr_len(char *dest
,
58 const struct sockaddr
*psa
,
64 (void)sys_getnameinfo(psa
,
72 /****************************************************************************
73 Print out an IPv4 or IPv6 address from a struct sockaddr_storage.
74 ****************************************************************************/
76 char *print_sockaddr(char *dest
,
78 const struct sockaddr_storage
*psa
)
80 return print_sockaddr_len(dest
, destlen
, (struct sockaddr
*)psa
,
81 sizeof(struct sockaddr_storage
));
84 /****************************************************************************
85 Print out a canonical IPv4 or IPv6 address from a struct sockaddr_storage.
86 ****************************************************************************/
88 char *print_canonical_sockaddr(TALLOC_CTX
*ctx
,
89 const struct sockaddr_storage
*pss
)
91 char addr
[INET6_ADDRSTRLEN
];
95 /* Linux getnameinfo() man pages says port is unitialized if
96 service name is NULL. */
98 ret
= sys_getnameinfo((const struct sockaddr
*)pss
,
99 sizeof(struct sockaddr_storage
),
107 if (pss
->ss_family
!= AF_INET
) {
108 #if defined(HAVE_IPV6)
109 dest
= talloc_asprintf(ctx
, "[%s]", addr
);
114 dest
= talloc_asprintf(ctx
, "%s", addr
);
120 /****************************************************************************
121 Return the string of an IP address (IPv4 or IPv6).
122 ****************************************************************************/
124 static const char *get_socket_addr(int fd
, char *addr_buf
, size_t addr_len
)
126 struct sockaddr_storage sa
;
127 socklen_t length
= sizeof(sa
);
129 /* Ok, returning a hard coded IPv4 address
130 * is bogus, but it's just as bogus as a
131 * zero IPv6 address. No good choice here.
134 strlcpy(addr_buf
, "0.0.0.0", addr_len
);
140 if (getsockname(fd
, (struct sockaddr
*)&sa
, &length
) < 0) {
141 DEBUG(0,("getsockname failed. Error was %s\n",
146 return print_sockaddr_len(addr_buf
, addr_len
, (struct sockaddr
*)&sa
, length
);
149 /****************************************************************************
150 Return the port number we've bound to on a socket.
151 ****************************************************************************/
153 int get_socket_port(int fd
)
155 struct sockaddr_storage sa
;
156 socklen_t length
= sizeof(sa
);
162 if (getsockname(fd
, (struct sockaddr
*)&sa
, &length
) < 0) {
163 int level
= (errno
== ENOTCONN
) ? 2 : 0;
164 DEBUG(level
, ("getsockname failed. Error was %s\n",
169 #if defined(HAVE_IPV6)
170 if (sa
.ss_family
== AF_INET6
) {
171 return ntohs(((struct sockaddr_in6
*)&sa
)->sin6_port
);
174 if (sa
.ss_family
== AF_INET
) {
175 return ntohs(((struct sockaddr_in
*)&sa
)->sin_port
);
180 const char *client_name(int fd
)
182 return get_peer_name(fd
,false);
185 const char *client_addr(int fd
, char *addr
, size_t addrlen
)
187 return get_peer_addr(fd
,addr
,addrlen
);
190 const char *client_socket_addr(int fd
, char *addr
, size_t addr_len
)
192 return get_socket_addr(fd
, addr
, addr_len
);
196 /* Not currently used. JRA. */
197 int client_socket_port(int fd
)
199 return get_socket_port(fd
);
203 /****************************************************************************
204 Accessor functions to make thread-safe code easier later...
205 ****************************************************************************/
207 void set_smb_read_error(enum smb_read_errors
*pre
,
208 enum smb_read_errors newerr
)
215 void cond_set_smb_read_error(enum smb_read_errors
*pre
,
216 enum smb_read_errors newerr
)
218 if (pre
&& *pre
== SMB_READ_OK
) {
223 /****************************************************************************
224 Determine if a file descriptor is in fact a socket.
225 ****************************************************************************/
227 bool is_a_socket(int fd
)
232 return(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&v
, &l
) == 0);
235 enum SOCK_OPT_TYPES
{OPT_BOOL
,OPT_INT
,OPT_ON
};
237 typedef struct smb_socket_option
{
245 static const smb_socket_option socket_options
[] = {
246 {"SO_KEEPALIVE", SOL_SOCKET
, SO_KEEPALIVE
, 0, OPT_BOOL
},
247 {"SO_REUSEADDR", SOL_SOCKET
, SO_REUSEADDR
, 0, OPT_BOOL
},
248 {"SO_BROADCAST", SOL_SOCKET
, SO_BROADCAST
, 0, OPT_BOOL
},
250 {"TCP_NODELAY", IPPROTO_TCP
, TCP_NODELAY
, 0, OPT_BOOL
},
253 {"TCP_KEEPCNT", IPPROTO_TCP
, TCP_KEEPCNT
, 0, OPT_INT
},
256 {"TCP_KEEPIDLE", IPPROTO_TCP
, TCP_KEEPIDLE
, 0, OPT_INT
},
259 {"TCP_KEEPINTVL", IPPROTO_TCP
, TCP_KEEPINTVL
, 0, OPT_INT
},
261 #ifdef IPTOS_LOWDELAY
262 {"IPTOS_LOWDELAY", IPPROTO_IP
, IP_TOS
, IPTOS_LOWDELAY
, OPT_ON
},
264 #ifdef IPTOS_THROUGHPUT
265 {"IPTOS_THROUGHPUT", IPPROTO_IP
, IP_TOS
, IPTOS_THROUGHPUT
, OPT_ON
},
268 {"SO_REUSEPORT", SOL_SOCKET
, SO_REUSEPORT
, 0, OPT_BOOL
},
271 {"SO_SNDBUF", SOL_SOCKET
, SO_SNDBUF
, 0, OPT_INT
},
274 {"SO_RCVBUF", SOL_SOCKET
, SO_RCVBUF
, 0, OPT_INT
},
277 {"SO_SNDLOWAT", SOL_SOCKET
, SO_SNDLOWAT
, 0, OPT_INT
},
280 {"SO_RCVLOWAT", SOL_SOCKET
, SO_RCVLOWAT
, 0, OPT_INT
},
283 {"SO_SNDTIMEO", SOL_SOCKET
, SO_SNDTIMEO
, 0, OPT_INT
},
286 {"SO_RCVTIMEO", SOL_SOCKET
, SO_RCVTIMEO
, 0, OPT_INT
},
289 {"TCP_FASTACK", IPPROTO_TCP
, TCP_FASTACK
, 0, OPT_INT
},
292 {"TCP_QUICKACK", IPPROTO_TCP
, TCP_QUICKACK
, 0, OPT_BOOL
},
294 #ifdef TCP_KEEPALIVE_THRESHOLD
295 {"TCP_KEEPALIVE_THRESHOLD", IPPROTO_TCP
, TCP_KEEPALIVE_THRESHOLD
, 0, OPT_INT
},
297 #ifdef TCP_KEEPALIVE_ABORT_THRESHOLD
298 {"TCP_KEEPALIVE_ABORT_THRESHOLD", IPPROTO_TCP
, TCP_KEEPALIVE_ABORT_THRESHOLD
, 0, OPT_INT
},
302 /****************************************************************************
303 Print socket options.
304 ****************************************************************************/
306 static void print_socket_options(int s
)
310 const smb_socket_option
*p
= &socket_options
[0];
312 /* wrapped in if statement to prevent streams
313 * leak in SCO Openserver 5.0 */
314 /* reported on samba-technical --jerry */
315 if ( DEBUGLEVEL
>= 5 ) {
316 DEBUG(5,("Socket options:\n"));
317 for (; p
->name
!= NULL
; p
++) {
318 if (getsockopt(s
, p
->level
, p
->option
,
319 (void *)&value
, &vlen
) == -1) {
320 DEBUGADD(5,("\tCould not test socket option %s.\n",
323 DEBUGADD(5,("\t%s = %d\n",
330 /****************************************************************************
331 Set user socket options.
332 ****************************************************************************/
334 void set_socket_options(int fd
, const char *options
)
336 TALLOC_CTX
*ctx
= talloc_stackframe();
339 while (next_token_talloc(ctx
, &options
, &tok
," \t,")) {
343 bool got_value
= false;
345 if ((p
= strchr_m(tok
,'='))) {
351 for (i
=0;socket_options
[i
].name
;i
++)
352 if (strequal(socket_options
[i
].name
,tok
))
355 if (!socket_options
[i
].name
) {
356 DEBUG(0,("Unknown socket option %s\n",tok
));
360 switch (socket_options
[i
].opttype
) {
363 ret
= setsockopt(fd
,socket_options
[i
].level
,
364 socket_options
[i
].option
,
365 (char *)&value
,sizeof(int));
370 DEBUG(0,("syntax error - %s "
371 "does not take a value\n",tok
));
374 int on
= socket_options
[i
].value
;
375 ret
= setsockopt(fd
,socket_options
[i
].level
,
376 socket_options
[i
].option
,
377 (char *)&on
,sizeof(int));
383 /* be aware that some systems like Solaris return
384 * EINVAL to a setsockopt() call when the client
385 * sent a RST previously - no need to worry */
386 DEBUG(2,("Failed to set socket option %s (Error %s)\n",
387 tok
, strerror(errno
) ));
392 print_socket_options(fd
);
395 /****************************************************************************
397 ****************************************************************************/
399 ssize_t
read_udp_v4_socket(int fd
,
402 struct sockaddr_storage
*psa
)
405 socklen_t socklen
= sizeof(*psa
);
406 struct sockaddr_in
*si
= (struct sockaddr_in
*)psa
;
408 memset((char *)psa
,'\0',socklen
);
410 ret
= (ssize_t
)sys_recvfrom(fd
,buf
,len
,0,
411 (struct sockaddr
*)psa
,&socklen
);
413 /* Don't print a low debug error for a non-blocking socket. */
414 if (errno
== EAGAIN
) {
415 DEBUG(10,("read_udp_v4_socket: returned EAGAIN\n"));
417 DEBUG(2,("read_udp_v4_socket: failed. errno=%s\n",
423 if (psa
->ss_family
!= AF_INET
) {
424 DEBUG(2,("read_udp_v4_socket: invalid address family %d "
425 "(not IPv4)\n", (int)psa
->ss_family
));
429 DEBUG(10,("read_udp_v4_socket: ip %s port %d read: %lu\n",
430 inet_ntoa(si
->sin_addr
),
432 (unsigned long)ret
));
437 /****************************************************************************
438 Read data from a file descriptor with a timout in msec.
439 mincount = if timeout, minimum to read before returning
440 maxcount = number to be read.
441 time_out = timeout in milliseconds
442 NB. This can be called with a non-socket fd, don't change
443 sys_read() to sys_recv() or other socket call.
444 ****************************************************************************/
446 NTSTATUS
read_fd_with_timeout(int fd
, char *buf
,
447 size_t mincnt
, size_t maxcnt
,
448 unsigned int time_out
,
455 /* just checking .... */
465 while (nread
< mincnt
) {
466 readret
= sys_read(fd
, buf
+ nread
, maxcnt
- nread
);
469 DEBUG(5,("read_fd_with_timeout: "
470 "blocking read. EOF from client.\n"));
471 return NT_STATUS_END_OF_FILE
;
475 return map_nt_error_from_unix(errno
);
482 /* Most difficult - timeout read */
483 /* If this is ever called on a disk file and
484 mincnt is greater then the filesize then
485 system performance will suffer severely as
486 select always returns true on disk files */
488 for (nread
=0; nread
< mincnt
; ) {
491 pollrtn
= poll_intr_one_fd(fd
, POLLIN
|POLLHUP
, time_out
,
496 return map_nt_error_from_unix(errno
);
499 /* Did we timeout ? */
500 if ((pollrtn
== 0) ||
501 ((revents
& (POLLIN
|POLLHUP
|POLLERR
)) == 0)) {
502 DEBUG(10,("read_fd_with_timeout: timeout read. "
503 "select timed out.\n"));
504 return NT_STATUS_IO_TIMEOUT
;
507 readret
= sys_read(fd
, buf
+nread
, maxcnt
-nread
);
510 /* we got EOF on the file descriptor */
511 DEBUG(5,("read_fd_with_timeout: timeout read. "
512 "EOF from client.\n"));
513 return NT_STATUS_END_OF_FILE
;
517 return map_nt_error_from_unix(errno
);
524 /* Return the number we got */
531 /****************************************************************************
532 Read data from an fd, reading exactly N bytes.
533 NB. This can be called with a non-socket fd, don't add dependencies
535 ****************************************************************************/
537 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
)
539 return read_fd_with_timeout(fd
, buffer
, N
, N
, 0, NULL
);
542 /****************************************************************************
543 Write all data from an iov array
544 NB. This can be called with a non-socket fd, don't add dependencies
546 ****************************************************************************/
548 ssize_t
write_data_iov(int fd
, const struct iovec
*orig_iov
, int iovcnt
)
554 struct iovec
*iov_copy
, *iov
;
557 for (i
=0; i
<iovcnt
; i
++) {
558 to_send
+= orig_iov
[i
].iov_len
;
561 thistime
= sys_writev(fd
, orig_iov
, iovcnt
);
562 if ((thistime
<= 0) || (thistime
== to_send
)) {
568 * We could not send everything in one call. Make a copy of iov that
569 * we can mess with. We keep a copy of the array start in iov_copy for
570 * the TALLOC_FREE, because we're going to modify iov later on,
571 * discarding elements.
574 iov_copy
= (struct iovec
*)TALLOC_MEMDUP(
575 talloc_tos(), orig_iov
, sizeof(struct iovec
) * iovcnt
);
577 if (iov_copy
== NULL
) {
583 while (sent
< to_send
) {
585 * We have to discard "thistime" bytes from the beginning
586 * iov array, "thistime" contains the number of bytes sent
589 while (thistime
> 0) {
590 if (thistime
< iov
[0].iov_len
) {
592 (char *)iov
[0].iov_base
+ thistime
;
593 iov
[0].iov_base
= (void *)new_base
;
594 iov
[0].iov_len
-= thistime
;
597 thistime
-= iov
[0].iov_len
;
602 thistime
= sys_writev(fd
, iov
, iovcnt
);
609 TALLOC_FREE(iov_copy
);
613 /****************************************************************************
615 NB. This can be called with a non-socket fd, don't add dependencies
617 ****************************************************************************/
619 ssize_t
write_data(int fd
, const char *buffer
, size_t N
)
623 iov
.iov_base
= CONST_DISCARD(void *, buffer
);
625 return write_data_iov(fd
, &iov
, 1);
628 /****************************************************************************
629 Send a keepalive packet (rfc1002).
630 ****************************************************************************/
632 bool send_keepalive(int client
)
634 unsigned char buf
[4];
636 buf
[0] = SMBkeepalive
;
637 buf
[1] = buf
[2] = buf
[3] = 0;
639 return(write_data(client
,(char *)buf
,4) == 4);
642 /****************************************************************************
643 Read 4 bytes of a smb packet and return the smb length of the packet.
644 Store the result in the buffer.
645 This version of the function will return a length of zero on receiving
647 Timeout is in milliseconds.
648 ****************************************************************************/
650 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
651 unsigned int timeout
,
657 status
= read_fd_with_timeout(fd
, inbuf
, 4, 4, timeout
, NULL
);
659 if (!NT_STATUS_IS_OK(status
)) {
663 *len
= smb_len(inbuf
);
664 msg_type
= CVAL(inbuf
,0);
666 if (msg_type
== SMBkeepalive
) {
667 DEBUG(5,("Got keepalive packet\n"));
670 DEBUG(10,("got smb length of %lu\n",(unsigned long)(*len
)));
675 /****************************************************************************
676 Read an smb from a fd.
677 The timeout is in milliseconds.
678 This function will return on receipt of a session keepalive packet.
679 maxlen is the max number of bytes to return, not including the 4 byte
680 length. If zero it means buflen limit.
681 Doesn't check the MAC on signed packets.
682 ****************************************************************************/
684 NTSTATUS
receive_smb_raw(int fd
, char *buffer
, size_t buflen
, unsigned int timeout
,
685 size_t maxlen
, size_t *p_len
)
690 status
= read_smb_length_return_keepalive(fd
,buffer
,timeout
,&len
);
692 if (!NT_STATUS_IS_OK(status
)) {
693 DEBUG(0, ("read_fd_with_timeout failed, read "
694 "error = %s.\n", nt_errstr(status
)));
699 DEBUG(0,("Invalid packet length! (%lu bytes).\n",
700 (unsigned long)len
));
701 return NT_STATUS_INVALID_PARAMETER
;
706 len
= MIN(len
,maxlen
);
709 status
= read_fd_with_timeout(
710 fd
, buffer
+4, len
, len
, timeout
, &len
);
712 if (!NT_STATUS_IS_OK(status
)) {
713 DEBUG(0, ("read_fd_with_timeout failed, read error = "
714 "%s.\n", nt_errstr(status
)));
718 /* not all of samba3 properly checks for packet-termination
719 * of strings. This ensures that we don't run off into
721 SSVAL(buffer
+4,len
, 0);
728 /****************************************************************************
729 Open a socket of the specified type, port, and address for incoming data.
730 ****************************************************************************/
732 int open_socket_in(int type
,
735 const struct sockaddr_storage
*psock
,
738 struct sockaddr_storage sock
;
740 socklen_t slen
= sizeof(struct sockaddr_in
);
744 #if defined(HAVE_IPV6)
745 if (sock
.ss_family
== AF_INET6
) {
746 ((struct sockaddr_in6
*)&sock
)->sin6_port
= htons(port
);
747 slen
= sizeof(struct sockaddr_in6
);
750 if (sock
.ss_family
== AF_INET
) {
751 ((struct sockaddr_in
*)&sock
)->sin_port
= htons(port
);
754 res
= socket(sock
.ss_family
, type
, 0 );
757 dbgtext( "open_socket_in(): socket() call failed: " );
758 dbgtext( "%s\n", strerror( errno
) );
763 /* This block sets/clears the SO_REUSEADDR and possibly SO_REUSEPORT. */
765 int val
= rebind
? 1 : 0;
766 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEADDR
,
767 (char *)&val
,sizeof(val
)) == -1 ) {
768 if( DEBUGLVL( dlevel
) ) {
769 dbgtext( "open_socket_in(): setsockopt: " );
770 dbgtext( "SO_REUSEADDR = %s ",
771 val
?"true":"false" );
772 dbgtext( "on port %d failed ", port
);
773 dbgtext( "with error = %s\n", strerror(errno
) );
777 if( setsockopt(res
,SOL_SOCKET
,SO_REUSEPORT
,
778 (char *)&val
,sizeof(val
)) == -1 ) {
779 if( DEBUGLVL( dlevel
) ) {
780 dbgtext( "open_socket_in(): setsockopt: ");
781 dbgtext( "SO_REUSEPORT = %s ",
783 dbgtext( "on port %d failed ", port
);
784 dbgtext( "with error = %s\n", strerror(errno
));
787 #endif /* SO_REUSEPORT */
790 /* now we've got a socket - we need to bind it */
791 if (bind(res
, (struct sockaddr
*)&sock
, slen
) == -1 ) {
792 if( DEBUGLVL(dlevel
) && (port
== SMB_PORT1
||
793 port
== SMB_PORT2
|| port
== NMB_PORT
) ) {
794 char addr
[INET6_ADDRSTRLEN
];
795 print_sockaddr(addr
, sizeof(addr
),
797 dbgtext( "bind failed on port %d ", port
);
798 dbgtext( "socket_addr = %s.\n", addr
);
799 dbgtext( "Error = %s\n", strerror(errno
));
805 DEBUG( 10, ( "bind succeeded on port %d\n", port
) );
809 struct open_socket_out_state
{
811 struct event_context
*ev
;
812 struct sockaddr_storage ss
;
818 static void open_socket_out_connected(struct tevent_req
*subreq
);
820 static int open_socket_out_state_destructor(struct open_socket_out_state
*s
)
828 /****************************************************************************
829 Create an outgoing socket. timeout is in milliseconds.
830 **************************************************************************/
832 struct tevent_req
*open_socket_out_send(TALLOC_CTX
*mem_ctx
,
833 struct event_context
*ev
,
834 const struct sockaddr_storage
*pss
,
838 char addr
[INET6_ADDRSTRLEN
];
839 struct tevent_req
*result
, *subreq
;
840 struct open_socket_out_state
*state
;
843 result
= tevent_req_create(mem_ctx
, &state
,
844 struct open_socket_out_state
);
845 if (result
== NULL
) {
851 state
->wait_nsec
= 10000;
854 state
->fd
= socket(state
->ss
.ss_family
, SOCK_STREAM
, 0);
855 if (state
->fd
== -1) {
856 status
= map_nt_error_from_unix(errno
);
859 talloc_set_destructor(state
, open_socket_out_state_destructor
);
861 if (!tevent_req_set_endtime(
862 result
, ev
, timeval_current_ofs(0, timeout
*1000))) {
866 #if defined(HAVE_IPV6)
867 if (pss
->ss_family
== AF_INET6
) {
868 struct sockaddr_in6
*psa6
;
869 psa6
= (struct sockaddr_in6
*)&state
->ss
;
870 psa6
->sin6_port
= htons(port
);
871 if (psa6
->sin6_scope_id
== 0
872 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
873 setup_linklocal_scope_id(
874 (struct sockaddr
*)&(state
->ss
));
876 state
->salen
= sizeof(struct sockaddr_in6
);
879 if (pss
->ss_family
== AF_INET
) {
880 struct sockaddr_in
*psa
;
881 psa
= (struct sockaddr_in
*)&state
->ss
;
882 psa
->sin_port
= htons(port
);
883 state
->salen
= sizeof(struct sockaddr_in
);
886 if (pss
->ss_family
== AF_UNIX
) {
887 state
->salen
= sizeof(struct sockaddr_un
);
890 print_sockaddr(addr
, sizeof(addr
), &state
->ss
);
891 DEBUG(3,("Connecting to %s at port %u\n", addr
, (unsigned int)port
));
893 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
894 (struct sockaddr
*)&state
->ss
,
897 || !tevent_req_set_endtime(
899 timeval_current_ofs(0, state
->wait_nsec
))) {
902 tevent_req_set_callback(subreq
, open_socket_out_connected
, result
);
906 tevent_req_nterror(result
, status
);
907 return tevent_req_post(result
, ev
);
913 static void open_socket_out_connected(struct tevent_req
*subreq
)
915 struct tevent_req
*req
=
916 tevent_req_callback_data(subreq
, struct tevent_req
);
917 struct open_socket_out_state
*state
=
918 tevent_req_data(req
, struct open_socket_out_state
);
922 ret
= async_connect_recv(subreq
, &sys_errno
);
925 tevent_req_done(req
);
931 (sys_errno
== ETIMEDOUT
) ||
933 (sys_errno
== EINPROGRESS
) ||
934 (sys_errno
== EALREADY
) ||
935 (sys_errno
== EAGAIN
)) {
941 if (state
->wait_nsec
< 250000) {
942 state
->wait_nsec
*= 1.5;
945 subreq
= async_connect_send(state
, state
->ev
, state
->fd
,
946 (struct sockaddr
*)&state
->ss
,
948 if (tevent_req_nomem(subreq
, req
)) {
951 if (!tevent_req_set_endtime(
953 timeval_current_ofs(0, state
->wait_nsec
))) {
954 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
957 tevent_req_set_callback(subreq
, open_socket_out_connected
, req
);
962 if (sys_errno
== EISCONN
) {
963 tevent_req_done(req
);
969 tevent_req_nterror(req
, map_nt_error_from_unix(sys_errno
));
972 NTSTATUS
open_socket_out_recv(struct tevent_req
*req
, int *pfd
)
974 struct open_socket_out_state
*state
=
975 tevent_req_data(req
, struct open_socket_out_state
);
978 if (tevent_req_is_nterror(req
, &status
)) {
986 NTSTATUS
open_socket_out(const struct sockaddr_storage
*pss
, uint16_t port
,
987 int timeout
, int *pfd
)
989 TALLOC_CTX
*frame
= talloc_stackframe();
990 struct event_context
*ev
;
991 struct tevent_req
*req
;
992 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
994 ev
= event_context_init(frame
);
999 req
= open_socket_out_send(frame
, ev
, pss
, port
, timeout
);
1003 if (!tevent_req_poll(req
, ev
)) {
1004 status
= NT_STATUS_INTERNAL_ERROR
;
1007 status
= open_socket_out_recv(req
, pfd
);
1013 struct open_socket_out_defer_state
{
1014 struct event_context
*ev
;
1015 struct sockaddr_storage ss
;
1021 static void open_socket_out_defer_waited(struct tevent_req
*subreq
);
1022 static void open_socket_out_defer_connected(struct tevent_req
*subreq
);
1024 struct tevent_req
*open_socket_out_defer_send(TALLOC_CTX
*mem_ctx
,
1025 struct event_context
*ev
,
1026 struct timeval wait_time
,
1027 const struct sockaddr_storage
*pss
,
1031 struct tevent_req
*req
, *subreq
;
1032 struct open_socket_out_defer_state
*state
;
1034 req
= tevent_req_create(mem_ctx
, &state
,
1035 struct open_socket_out_defer_state
);
1042 state
->timeout
= timeout
;
1044 subreq
= tevent_wakeup_send(
1046 timeval_current_ofs(wait_time
.tv_sec
, wait_time
.tv_usec
));
1047 if (subreq
== NULL
) {
1050 tevent_req_set_callback(subreq
, open_socket_out_defer_waited
, req
);
1057 static void open_socket_out_defer_waited(struct tevent_req
*subreq
)
1059 struct tevent_req
*req
= tevent_req_callback_data(
1060 subreq
, struct tevent_req
);
1061 struct open_socket_out_defer_state
*state
= tevent_req_data(
1062 req
, struct open_socket_out_defer_state
);
1065 ret
= tevent_wakeup_recv(subreq
);
1066 TALLOC_FREE(subreq
);
1068 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
1072 subreq
= open_socket_out_send(state
, state
->ev
, &state
->ss
,
1073 state
->port
, state
->timeout
);
1074 if (tevent_req_nomem(subreq
, req
)) {
1077 tevent_req_set_callback(subreq
, open_socket_out_defer_connected
, req
);
1080 static void open_socket_out_defer_connected(struct tevent_req
*subreq
)
1082 struct tevent_req
*req
= tevent_req_callback_data(
1083 subreq
, struct tevent_req
);
1084 struct open_socket_out_defer_state
*state
= tevent_req_data(
1085 req
, struct open_socket_out_defer_state
);
1088 status
= open_socket_out_recv(subreq
, &state
->fd
);
1089 TALLOC_FREE(subreq
);
1090 if (!NT_STATUS_IS_OK(status
)) {
1091 tevent_req_nterror(req
, status
);
1094 tevent_req_done(req
);
1097 NTSTATUS
open_socket_out_defer_recv(struct tevent_req
*req
, int *pfd
)
1099 struct open_socket_out_defer_state
*state
= tevent_req_data(
1100 req
, struct open_socket_out_defer_state
);
1103 if (tevent_req_is_nterror(req
, &status
)) {
1108 return NT_STATUS_OK
;
1111 /****************************************************************************
1112 Open a connected UDP socket to host on port
1113 **************************************************************************/
1115 int open_udp_socket(const char *host
, int port
)
1117 struct sockaddr_storage ss
;
1120 if (!interpret_string_addr(&ss
, host
, 0)) {
1121 DEBUG(10,("open_udp_socket: can't resolve name %s\n",
1126 res
= socket(ss
.ss_family
, SOCK_DGRAM
, 0);
1131 #if defined(HAVE_IPV6)
1132 if (ss
.ss_family
== AF_INET6
) {
1133 struct sockaddr_in6
*psa6
;
1134 psa6
= (struct sockaddr_in6
*)&ss
;
1135 psa6
->sin6_port
= htons(port
);
1136 if (psa6
->sin6_scope_id
== 0
1137 && IN6_IS_ADDR_LINKLOCAL(&psa6
->sin6_addr
)) {
1138 setup_linklocal_scope_id(
1139 (struct sockaddr
*)&ss
);
1143 if (ss
.ss_family
== AF_INET
) {
1144 struct sockaddr_in
*psa
;
1145 psa
= (struct sockaddr_in
*)&ss
;
1146 psa
->sin_port
= htons(port
);
1149 if (sys_connect(res
,(struct sockaddr
*)&ss
)) {
1157 /*******************************************************************
1158 Return the IP addr of the remote end of a socket as a string.
1159 Optionally return the struct sockaddr_storage.
1160 ******************************************************************/
1162 static const char *get_peer_addr_internal(int fd
,
1164 size_t addr_buf_len
,
1165 struct sockaddr
*pss
,
1168 struct sockaddr_storage ss
;
1169 socklen_t length
= sizeof(ss
);
1171 strlcpy(addr_buf
,"0.0.0.0",addr_buf_len
);
1178 pss
= (struct sockaddr
*)&ss
;
1182 if (getpeername(fd
, (struct sockaddr
*)pss
, plength
) < 0) {
1183 int level
= (errno
== ENOTCONN
) ? 2 : 0;
1184 DEBUG(level
, ("getpeername failed. Error was %s\n",
1189 print_sockaddr_len(addr_buf
,
1196 /*******************************************************************
1197 Matchname - determine if host name matches IP address. Used to
1198 confirm a hostname lookup to prevent spoof attacks.
1199 ******************************************************************/
1201 static bool matchname(const char *remotehost
,
1202 const struct sockaddr
*pss
,
1205 struct addrinfo
*res
= NULL
;
1206 struct addrinfo
*ailist
= NULL
;
1207 char addr_buf
[INET6_ADDRSTRLEN
];
1208 bool ret
= interpret_string_addr_internal(&ailist
,
1210 AI_ADDRCONFIG
|AI_CANONNAME
);
1212 if (!ret
|| ailist
== NULL
) {
1213 DEBUG(3,("matchname: getaddrinfo failed for "
1216 gai_strerror(ret
) ));
1221 * Make sure that getaddrinfo() returns the "correct" host name.
1224 if (ailist
->ai_canonname
== NULL
||
1225 (!strequal(remotehost
, ailist
->ai_canonname
) &&
1226 !strequal(remotehost
, "localhost"))) {
1227 DEBUG(0,("matchname: host name/name mismatch: %s != %s\n",
1229 ailist
->ai_canonname
?
1230 ailist
->ai_canonname
: "(NULL)"));
1231 freeaddrinfo(ailist
);
1235 /* Look up the host address in the address list we just got. */
1236 for (res
= ailist
; res
; res
= res
->ai_next
) {
1237 if (!res
->ai_addr
) {
1240 if (sockaddr_equal((const struct sockaddr
*)res
->ai_addr
,
1241 (struct sockaddr
*)pss
)) {
1242 freeaddrinfo(ailist
);
1248 * The host name does not map to the original host address. Perhaps
1249 * someone has compromised a name server. More likely someone botched
1250 * it, but that could be dangerous, too.
1253 DEBUG(0,("matchname: host name/address mismatch: %s != %s\n",
1254 print_sockaddr_len(addr_buf
,
1258 ailist
->ai_canonname
? ailist
->ai_canonname
: "(NULL)"));
1261 freeaddrinfo(ailist
);
1266 /*******************************************************************
1267 Deal with the singleton cache.
1268 ******************************************************************/
1270 struct name_addr_pair
{
1271 struct sockaddr_storage ss
;
1275 /*******************************************************************
1276 Lookup a name/addr pair. Returns memory allocated from memcache.
1277 ******************************************************************/
1279 static bool lookup_nc(struct name_addr_pair
*nc
)
1285 if (!memcache_lookup(
1286 NULL
, SINGLETON_CACHE
,
1287 data_blob_string_const_null("get_peer_name"),
1292 memcpy(&nc
->ss
, tmp
.data
, sizeof(nc
->ss
));
1293 nc
->name
= (const char *)tmp
.data
+ sizeof(nc
->ss
);
1297 /*******************************************************************
1298 Save a name/addr pair.
1299 ******************************************************************/
1301 static void store_nc(const struct name_addr_pair
*nc
)
1304 size_t namelen
= strlen(nc
->name
);
1306 tmp
= data_blob(NULL
, sizeof(nc
->ss
) + namelen
+ 1);
1310 memcpy(tmp
.data
, &nc
->ss
, sizeof(nc
->ss
));
1311 memcpy(tmp
.data
+sizeof(nc
->ss
), nc
->name
, namelen
+1);
1313 memcache_add(NULL
, SINGLETON_CACHE
,
1314 data_blob_string_const_null("get_peer_name"),
1316 data_blob_free(&tmp
);
1319 /*******************************************************************
1320 Return the DNS name of the remote end of a socket.
1321 ******************************************************************/
1323 const char *get_peer_name(int fd
, bool force_lookup
)
1325 struct name_addr_pair nc
;
1326 char addr_buf
[INET6_ADDRSTRLEN
];
1327 struct sockaddr_storage ss
;
1328 socklen_t length
= sizeof(ss
);
1331 char name_buf
[MAX_DNS_NAME_LENGTH
];
1332 char tmp_name
[MAX_DNS_NAME_LENGTH
];
1334 /* reverse lookups can be *very* expensive, and in many
1335 situations won't work because many networks don't link dhcp
1336 with dns. To avoid the delay we avoid the lookup if
1338 if (!lp_hostname_lookups() && (force_lookup
== false)) {
1339 length
= sizeof(nc
.ss
);
1340 nc
.name
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
),
1341 (struct sockaddr
*)&nc
.ss
, &length
);
1344 return nc
.name
? nc
.name
: "UNKNOWN";
1349 memset(&ss
, '\0', sizeof(ss
));
1350 p
= get_peer_addr_internal(fd
, addr_buf
, sizeof(addr_buf
), (struct sockaddr
*)&ss
, &length
);
1352 /* it might be the same as the last one - save some DNS work */
1353 if (sockaddr_equal((struct sockaddr
*)&ss
, (struct sockaddr
*)&nc
.ss
)) {
1354 return nc
.name
? nc
.name
: "UNKNOWN";
1357 /* Not the same. We need to lookup. */
1362 /* Look up the remote host name. */
1363 ret
= sys_getnameinfo((struct sockaddr
*)&ss
,
1372 DEBUG(1,("get_peer_name: getnameinfo failed "
1373 "for %s with error %s\n",
1375 gai_strerror(ret
)));
1376 strlcpy(name_buf
, p
, sizeof(name_buf
));
1378 if (!matchname(name_buf
, (struct sockaddr
*)&ss
, length
)) {
1379 DEBUG(0,("Matchname failed on %s %s\n",name_buf
,p
));
1380 strlcpy(name_buf
,"UNKNOWN",sizeof(name_buf
));
1384 strlcpy(tmp_name
, name_buf
, sizeof(tmp_name
));
1385 alpha_strcpy(name_buf
, tmp_name
, "_-.", sizeof(name_buf
));
1386 if (strstr(name_buf
,"..")) {
1387 strlcpy(name_buf
, "UNKNOWN", sizeof(name_buf
));
1395 return nc
.name
? nc
.name
: "UNKNOWN";
1398 /*******************************************************************
1399 Return the IP addr of the remote end of a socket as a string.
1400 ******************************************************************/
1402 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
)
1404 return get_peer_addr_internal(fd
, addr
, addr_len
, NULL
, NULL
);
1407 /*******************************************************************
1408 Create protected unix domain socket.
1410 Some unixes cannot set permissions on a ux-dom-sock, so we
1411 have to make sure that the directory contains the protection
1412 permissions instead.
1413 ******************************************************************/
1415 int create_pipe_sock(const char *socket_dir
,
1416 const char *socket_name
,
1419 #ifdef HAVE_UNIXSOCKET
1420 struct sockaddr_un sunaddr
;
1426 old_umask
= umask(0);
1428 /* Create the socket directory or reuse the existing one */
1430 if (lstat(socket_dir
, &st
) == -1) {
1431 if (errno
== ENOENT
) {
1432 /* Create directory */
1433 if (mkdir(socket_dir
, dir_perms
) == -1) {
1434 DEBUG(0, ("error creating socket directory "
1435 "%s: %s\n", socket_dir
,
1440 DEBUG(0, ("lstat failed on socket directory %s: %s\n",
1441 socket_dir
, strerror(errno
)));
1445 /* Check ownership and permission on existing directory */
1446 if (!S_ISDIR(st
.st_mode
)) {
1447 DEBUG(0, ("socket directory %s isn't a directory\n",
1451 if ((st
.st_uid
!= sec_initial_uid()) ||
1452 ((st
.st_mode
& 0777) != dir_perms
)) {
1453 DEBUG(0, ("invalid permissions on socket directory "
1454 "%s\n", socket_dir
));
1459 /* Create the socket file */
1461 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1464 DEBUG(0, ("create_pipe_sock: socket error %s\n",
1469 if (asprintf(&path
, "%s/%s", socket_dir
, socket_name
) == -1) {
1474 memset(&sunaddr
, 0, sizeof(sunaddr
));
1475 sunaddr
.sun_family
= AF_UNIX
;
1476 strlcpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
));
1478 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1) {
1479 DEBUG(0, ("bind failed on pipe socket %s: %s\n", path
,
1484 if (listen(sock
, 5) == -1) {
1485 DEBUG(0, ("listen failed on pipe socket %s: %s\n", path
,
1505 DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
1507 #endif /* HAVE_UNIXSOCKET */
1510 /****************************************************************************
1511 Get my own canonical name, including domain.
1512 ****************************************************************************/
1514 const char *get_mydnsfullname(void)
1516 struct addrinfo
*res
= NULL
;
1517 char my_hostname
[HOST_NAME_MAX
];
1521 if (memcache_lookup(NULL
, SINGLETON_CACHE
,
1522 data_blob_string_const_null("get_mydnsfullname"),
1524 SMB_ASSERT(tmp
.length
> 0);
1525 return (const char *)tmp
.data
;
1528 /* get my host name */
1529 if (gethostname(my_hostname
, sizeof(my_hostname
)) == -1) {
1530 DEBUG(0,("get_mydnsfullname: gethostname failed\n"));
1534 /* Ensure null termination. */
1535 my_hostname
[sizeof(my_hostname
)-1] = '\0';
1537 ret
= interpret_string_addr_internal(&res
,
1539 AI_ADDRCONFIG
|AI_CANONNAME
);
1541 if (!ret
|| res
== NULL
) {
1542 DEBUG(3,("get_mydnsfullname: getaddrinfo failed for "
1545 gai_strerror(ret
) ));
1550 * Make sure that getaddrinfo() returns the "correct" host name.
1553 if (res
->ai_canonname
== NULL
) {
1554 DEBUG(3,("get_mydnsfullname: failed to get "
1555 "canonical name for %s\n",
1561 /* This copies the data, so we must do a lookup
1562 * afterwards to find the value to return.
1565 memcache_add(NULL
, SINGLETON_CACHE
,
1566 data_blob_string_const_null("get_mydnsfullname"),
1567 data_blob_string_const_null(res
->ai_canonname
));
1569 if (!memcache_lookup(NULL
, SINGLETON_CACHE
,
1570 data_blob_string_const_null("get_mydnsfullname"),
1572 tmp
= data_blob_talloc(talloc_tos(), res
->ai_canonname
,
1573 strlen(res
->ai_canonname
) + 1);
1578 return (const char *)tmp
.data
;
1581 /************************************************************
1582 Is this my ip address ?
1583 ************************************************************/
1585 static bool is_my_ipaddr(const char *ipaddr_str
)
1587 struct sockaddr_storage ss
;
1588 struct iface_struct
*nics
;
1591 if (!interpret_string_addr(&ss
, ipaddr_str
, AI_NUMERICHOST
)) {
1595 if (ismyaddr((struct sockaddr
*)&ss
)) {
1599 if (is_zero_addr(&ss
) ||
1600 is_loopback_addr((struct sockaddr
*)&ss
)) {
1604 n
= get_interfaces(talloc_tos(), &nics
);
1605 for (i
=0; i
<n
; i
++) {
1606 if (sockaddr_equal((struct sockaddr
*)&nics
[i
].ip
, (struct sockaddr
*)&ss
)) {
1615 /************************************************************
1617 ************************************************************/
1619 bool is_myname_or_ipaddr(const char *s
)
1621 TALLOC_CTX
*ctx
= talloc_tos();
1623 const char *dnsname
;
1624 char *servername
= NULL
;
1630 /* Santize the string from '\\name' */
1631 name
= talloc_strdup(ctx
, s
);
1636 servername
= strrchr_m(name
, '\\' );
1643 /* Optimize for the common case */
1644 if (strequal(servername
, global_myname())) {
1648 /* Check for an alias */
1649 if (is_myname(servername
)) {
1653 /* Check for loopback */
1654 if (strequal(servername
, "127.0.0.1") ||
1655 strequal(servername
, "::1")) {
1659 if (strequal(servername
, "localhost")) {
1663 /* Maybe it's my dns name */
1664 dnsname
= get_mydnsfullname();
1665 if (dnsname
&& strequal(servername
, dnsname
)) {
1669 /* Maybe its an IP address? */
1670 if (is_ipaddress(servername
)) {
1671 return is_my_ipaddr(servername
);
1674 /* Handle possible CNAME records - convert to an IP addr. list. */
1676 /* Use DNS to resolve the name, check all addresses. */
1677 struct addrinfo
*p
= NULL
;
1678 struct addrinfo
*res
= NULL
;
1680 if (!interpret_string_addr_internal(&res
,
1686 for (p
= res
; p
; p
= p
->ai_next
) {
1687 char addr
[INET6_ADDRSTRLEN
];
1688 struct sockaddr_storage ss
;
1691 memcpy(&ss
, p
->ai_addr
, p
->ai_addrlen
);
1692 print_sockaddr(addr
,
1695 if (is_my_ipaddr(addr
)) {
1707 struct getaddrinfo_state
{
1709 const char *service
;
1710 const struct addrinfo
*hints
;
1711 struct addrinfo
*res
;
1715 static void getaddrinfo_do(void *private_data
);
1716 static void getaddrinfo_done(struct tevent_req
*subreq
);
1718 struct tevent_req
*getaddrinfo_send(TALLOC_CTX
*mem_ctx
,
1719 struct tevent_context
*ev
,
1720 struct fncall_context
*ctx
,
1722 const char *service
,
1723 const struct addrinfo
*hints
)
1725 struct tevent_req
*req
, *subreq
;
1726 struct getaddrinfo_state
*state
;
1728 req
= tevent_req_create(mem_ctx
, &state
, struct getaddrinfo_state
);
1734 state
->service
= service
;
1735 state
->hints
= hints
;
1737 subreq
= fncall_send(state
, ev
, ctx
, getaddrinfo_do
, state
);
1738 if (tevent_req_nomem(subreq
, req
)) {
1739 return tevent_req_post(req
, ev
);
1741 tevent_req_set_callback(subreq
, getaddrinfo_done
, req
);
1745 static void getaddrinfo_do(void *private_data
)
1747 struct getaddrinfo_state
*state
=
1748 (struct getaddrinfo_state
*)private_data
;
1750 state
->ret
= getaddrinfo(state
->node
, state
->service
, state
->hints
,
1754 static void getaddrinfo_done(struct tevent_req
*subreq
)
1756 struct tevent_req
*req
= tevent_req_callback_data(
1757 subreq
, struct tevent_req
);
1760 ret
= fncall_recv(subreq
, &err
);
1761 TALLOC_FREE(subreq
);
1763 tevent_req_error(req
, err
);
1766 tevent_req_done(req
);
1769 int getaddrinfo_recv(struct tevent_req
*req
, struct addrinfo
**res
)
1771 struct getaddrinfo_state
*state
= tevent_req_data(
1772 req
, struct getaddrinfo_state
);
1775 if (tevent_req_is_unix_error(req
, &err
)) {
1783 if (state
->ret
== 0) {
1789 int poll_one_fd(int fd
, int events
, int timeout
, int *revents
)
1795 fds
= TALLOC_ZERO_ARRAY(talloc_tos(), struct pollfd
, 2);
1801 fds
[0].events
= events
;
1803 ret
= sys_poll(fds
, 1, timeout
);
1806 * Assign whatever poll did, even in the ret<=0 case.
1808 *revents
= fds
[0].revents
;
1809 saved_errno
= errno
;
1811 errno
= saved_errno
;
1816 int poll_intr_one_fd(int fd
, int events
, int timeout
, int *revents
)
1822 pfd
.events
= events
;
1824 ret
= sys_poll_intr(&pfd
, 1, timeout
);
1829 *revents
= pfd
.revents
;