2 Unix SMB/CIFS implementation.
4 winbind client common code
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Andrew Tridgell 2000
8 Copyright (C) Andrew Bartlett 2002
9 Copyright (C) Matthew Newton 2015
12 This library is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Lesser General Public
14 License as published by the Free Software Foundation; either
15 version 3 of the License, or (at your option) any later version.
17 This library is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Library General Public License for more details.
22 You should have received a copy of the GNU Lesser General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "system/select.h"
28 #include "winbind_client.h"
32 struct winbindd_context
{
33 int winbindd_fd
; /* winbind file descriptor */
34 bool is_privileged
; /* using the privileged socket? */
35 pid_t our_pid
; /* calling process pid */
38 static struct winbindd_context wb_global_ctx
= {
44 /* Free a response structure */
46 void winbindd_free_response(struct winbindd_response
*response
)
48 /* Free any allocated extra_data */
51 SAFE_FREE(response
->extra_data
.data
);
54 /* Initialise a request structure */
56 static void winbindd_init_request(struct winbindd_request
*request
,
59 request
->length
= sizeof(struct winbindd_request
);
61 request
->cmd
= (enum winbindd_cmd
)request_type
;
62 request
->pid
= getpid();
66 /* Initialise a response structure */
68 static void init_response(struct winbindd_response
*response
)
70 /* Initialise return value */
72 response
->result
= WINBINDD_ERROR
;
75 /* Close established socket */
77 static void winbind_close_sock(struct winbindd_context
*ctx
)
83 if (ctx
->winbindd_fd
!= -1) {
84 close(ctx
->winbindd_fd
);
85 ctx
->winbindd_fd
= -1;
89 /* Destructor for global context to ensure fd is closed */
91 #if HAVE_DESTRUCTOR_ATTRIBUTE
92 __attribute__((destructor
))
94 static void winbind_destructor(void)
96 winbind_close_sock(&wb_global_ctx
);
99 #define CONNECT_TIMEOUT 30
101 /* Make sure socket handle isn't stdin, stdout or stderr */
102 #define RECURSION_LIMIT 3
104 static int make_nonstd_fd_internals(int fd
, int limit
/* Recursion limiter */)
107 if (fd
>= 0 && fd
<= 2) {
109 if ((new_fd
= fcntl(fd
, F_DUPFD
, 3)) == -1) {
127 /* use the program stack to hold our list of FDs to close */
128 new_fd
= make_nonstd_fd_internals(new_fd
, limit
- 1);
136 /****************************************************************************
137 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
141 Set close on exec also.
142 ****************************************************************************/
144 static int make_safe_fd(int fd
)
147 int new_fd
= make_nonstd_fd_internals(fd
, RECURSION_LIMIT
);
153 /* Socket should be nonblocking. */
155 #define FLAG_TO_SET O_NONBLOCK
158 #define FLAG_TO_SET O_NDELAY
160 #define FLAG_TO_SET FNDELAY
164 if ((flags
= fcntl(new_fd
, F_GETFL
)) == -1) {
169 flags
|= FLAG_TO_SET
;
170 if (fcntl(new_fd
, F_SETFL
, flags
) == -1) {
177 /* Socket should be closed on exec() */
179 result
= flags
= fcntl(new_fd
, F_GETFD
, 0);
182 result
= fcntl( new_fd
, F_SETFD
, flags
);
195 * @brief Check if we talk to the priviliged pipe which should be owned by root.
197 * This checks if we have uid_wrapper running and if this is the case it will
198 * allow one to connect to the winbind privileged pipe even it is not owned by root.
200 * @param[in] uid The uid to check if we can safely talk to the pipe.
202 * @return If we have access it returns true, else false.
204 static bool winbind_privileged_pipe_is_root(uid_t uid
)
210 if (uid_wrapper_enabled()) {
217 /* Connect to winbindd socket */
219 static int winbind_named_pipe_sock(const char *dir
)
221 struct sockaddr_un sunaddr
;
228 /* Check permissions on unix socket directory */
230 if (lstat(dir
, &st
) == -1) {
236 * This tells us that the pipe is owned by a privileged
237 * process, as we will be sending passwords to it.
239 if (!S_ISDIR(st
.st_mode
) ||
240 !winbind_privileged_pipe_is_root(st
.st_uid
)) {
245 /* Connect to socket */
247 sunaddr
= (struct sockaddr_un
) { .sun_family
= AF_UNIX
};
249 ret
= snprintf(sunaddr
.sun_path
, sizeof(sunaddr
.sun_path
),
250 "%s/%s", dir
, WINBINDD_SOCKET_NAME
);
251 if ((ret
== -1) || (ret
>= sizeof(sunaddr
.sun_path
))) {
252 errno
= ENAMETOOLONG
;
256 /* If socket file doesn't exist, don't bother trying to connect
257 with retry. This is an attempt to make the system usable when
258 the winbindd daemon is not running. */
260 if (lstat(sunaddr
.sun_path
, &st
) == -1) {
265 /* Check permissions on unix socket file */
268 * This tells us that the pipe is owned by a privileged
269 * process, as we will be sending passwords to it.
271 if (!S_ISSOCK(st
.st_mode
) ||
272 !winbind_privileged_pipe_is_root(st
.st_uid
)) {
277 /* Connect to socket */
279 if ((fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1) {
283 /* Set socket non-blocking and close on exec. */
285 if ((fd
= make_safe_fd( fd
)) == -1) {
289 for (wait_time
= 0; connect(fd
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1;
290 wait_time
+= slept
) {
292 int connect_errno
= 0;
295 if (wait_time
>= CONNECT_TIMEOUT
)
301 pfd
.events
= POLLOUT
;
303 ret
= poll(&pfd
, 1, (CONNECT_TIMEOUT
- wait_time
) * 1000);
306 errnosize
= sizeof(connect_errno
);
308 ret
= getsockopt(fd
, SOL_SOCKET
,
309 SO_ERROR
, &connect_errno
, &errnosize
);
311 if (ret
>= 0 && connect_errno
== 0) {
312 /* Connect succeed */
317 slept
= CONNECT_TIMEOUT
;
320 slept
= rand() % 3 + 1;
339 static const char *winbindd_socket_dir(void)
341 if (nss_wrapper_enabled()) {
344 env_dir
= getenv("SELFTEST_WINBINDD_SOCKET_DIR");
345 if (env_dir
!= NULL
) {
350 return WINBINDD_SOCKET_DIR
;
353 /* Connect to winbindd socket */
355 static int winbind_open_pipe_sock(struct winbindd_context
*ctx
,
356 int recursing
, int need_priv
)
358 #ifdef HAVE_UNIXSOCKET
359 struct winbindd_request request
;
360 struct winbindd_response response
;
362 ZERO_STRUCT(request
);
363 ZERO_STRUCT(response
);
369 if (ctx
->our_pid
!= getpid()) {
370 winbind_close_sock(ctx
);
371 ctx
->our_pid
= getpid();
374 if ((need_priv
!= 0) && (ctx
->is_privileged
== 0)) {
375 winbind_close_sock(ctx
);
378 if (ctx
->winbindd_fd
!= -1) {
379 return ctx
->winbindd_fd
;
386 ctx
->winbindd_fd
= winbind_named_pipe_sock(winbindd_socket_dir());
388 if (ctx
->winbindd_fd
== -1) {
392 ctx
->is_privileged
= 0;
394 /* version-check the socket */
396 request
.wb_flags
= WBFLAG_RECURSE
;
397 if ((winbindd_request_response(ctx
, WINBINDD_INTERFACE_VERSION
, &request
,
398 &response
) != NSS_STATUS_SUCCESS
) ||
399 (response
.data
.interface_version
!= WINBIND_INTERFACE_VERSION
)) {
400 winbind_close_sock(ctx
);
404 if (need_priv
== 0) {
405 return ctx
->winbindd_fd
;
408 /* try and get priv pipe */
410 request
.wb_flags
= WBFLAG_RECURSE
;
412 /* Note that response needs to be initialized to avoid
413 * crashing on clean up after WINBINDD_PRIV_PIPE_DIR call failed
414 * as interface version (from the first request) returned as a fstring,
415 * thus response.extra_data.data will not be NULL even though
416 * winbindd response did not write over it due to a failure */
417 ZERO_STRUCT(response
);
418 if (winbindd_request_response(ctx
, WINBINDD_PRIV_PIPE_DIR
, &request
,
419 &response
) == NSS_STATUS_SUCCESS
) {
421 fd
= winbind_named_pipe_sock((char *)response
.extra_data
.data
);
423 close(ctx
->winbindd_fd
);
424 ctx
->winbindd_fd
= fd
;
425 ctx
->is_privileged
= 1;
428 SAFE_FREE(response
.extra_data
.data
);
431 if (ctx
->is_privileged
== 0) {
435 return ctx
->winbindd_fd
;
438 #endif /* HAVE_UNIXSOCKET */
441 /* Write data to winbindd socket */
443 static int winbind_write_sock(struct winbindd_context
*ctx
, void *buffer
,
444 int count
, int recursing
, int need_priv
)
446 int fd
, result
, nwritten
;
448 /* Open connection to winbind daemon */
452 fd
= winbind_open_pipe_sock(ctx
, recursing
, need_priv
);
458 /* Write data to socket */
462 while(nwritten
< count
) {
466 /* Catch pipe close on other end by checking if a read()
467 call would not block by calling poll(). */
470 pfd
.events
= POLLIN
|POLLOUT
|POLLHUP
;
472 ret
= poll(&pfd
, 1, -1);
474 winbind_close_sock(ctx
);
475 return -1; /* poll error */
478 /* Write should be OK if fd not available for reading */
480 if ((ret
== 1) && (pfd
.revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
482 /* Pipe has closed on remote end */
484 winbind_close_sock(ctx
);
490 result
= write(fd
, (char *)buffer
+ nwritten
,
493 if ((result
== -1) || (result
== 0)) {
497 winbind_close_sock(ctx
);
507 /* Read data from winbindd socket */
509 static int winbind_read_sock(struct winbindd_context
*ctx
,
510 void *buffer
, int count
)
516 fd
= winbind_open_pipe_sock(ctx
, false, false);
521 /* Read data from socket */
522 while(nread
< count
) {
526 /* Catch pipe close on other end by checking if a read()
527 call would not block by calling poll(). */
530 pfd
.events
= POLLIN
|POLLHUP
;
532 /* Wait for 5 seconds for a reply. May need to parameterise this... */
534 ret
= poll(&pfd
, 1, 5000);
536 winbind_close_sock(ctx
);
537 return -1; /* poll error */
541 /* Not ready for read yet... */
542 if (total_time
>= 300) {
544 winbind_close_sock(ctx
);
551 if ((ret
== 1) && (pfd
.revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
555 int result
= read(fd
, (char *)buffer
+ nread
,
558 if ((result
== -1) || (result
== 0)) {
560 /* Read failed. I think the only useful thing we
561 can do here is just return -1 and fail since the
562 transaction has failed half way through. */
564 winbind_close_sock(ctx
);
578 static int winbindd_read_reply(struct winbindd_context
*ctx
,
579 struct winbindd_response
*response
)
581 int result1
, result2
= 0;
587 /* Read fixed length response */
589 result1
= winbind_read_sock(ctx
, response
,
590 sizeof(struct winbindd_response
));
592 /* We actually send the pointer value of the extra_data field from
593 the server. This has no meaning in the client's address space
594 so we clear it out. */
596 response
->extra_data
.data
= NULL
;
602 if (response
->length
< sizeof(struct winbindd_response
)) {
606 /* Read variable length response */
608 if (response
->length
> sizeof(struct winbindd_response
)) {
609 int extra_data_len
= response
->length
-
610 sizeof(struct winbindd_response
);
612 /* Mallocate memory for extra data */
614 if (!(response
->extra_data
.data
= malloc(extra_data_len
))) {
618 result2
= winbind_read_sock(ctx
, response
->extra_data
.data
,
621 winbindd_free_response(response
);
626 /* Return total amount of data read */
628 return result1
+ result2
;
632 * send simple types of requests
635 NSS_STATUS
winbindd_send_request(struct winbindd_context
*ctx
,
636 int req_type
, int need_priv
,
637 struct winbindd_request
*request
)
639 struct winbindd_request lrequest
;
641 /* Check for our tricky environment variable */
643 if (winbind_env_set()) {
644 return NSS_STATUS_NOTFOUND
;
648 ZERO_STRUCT(lrequest
);
652 /* Fill in request and send down pipe */
654 winbindd_init_request(request
, req_type
);
656 if (winbind_write_sock(ctx
, request
, sizeof(*request
),
657 request
->wb_flags
& WBFLAG_RECURSE
,
660 /* Set ENOENT for consistency. Required by some apps */
663 return NSS_STATUS_UNAVAIL
;
666 if ((request
->extra_len
!= 0) &&
667 (winbind_write_sock(ctx
, request
->extra_data
.data
,
669 request
->wb_flags
& WBFLAG_RECURSE
,
672 /* Set ENOENT for consistency. Required by some apps */
675 return NSS_STATUS_UNAVAIL
;
678 return NSS_STATUS_SUCCESS
;
682 * Get results from winbindd request
685 NSS_STATUS
winbindd_get_response(struct winbindd_context
*ctx
,
686 struct winbindd_response
*response
)
688 struct winbindd_response lresponse
;
691 ZERO_STRUCT(lresponse
);
692 response
= &lresponse
;
695 init_response(response
);
698 if (winbindd_read_reply(ctx
, response
) == -1) {
699 /* Set ENOENT for consistency. Required by some apps */
702 return NSS_STATUS_UNAVAIL
;
705 /* Throw away extra data if client didn't request it */
706 if (response
== &lresponse
) {
707 winbindd_free_response(response
);
710 /* Copy reply data from socket */
711 if (response
->result
!= WINBINDD_OK
) {
712 return NSS_STATUS_NOTFOUND
;
715 return NSS_STATUS_SUCCESS
;
718 /* Handle simple types of requests */
720 NSS_STATUS
winbindd_request_response(struct winbindd_context
*ctx
,
722 struct winbindd_request
*request
,
723 struct winbindd_response
*response
)
725 NSS_STATUS status
= NSS_STATUS_UNAVAIL
;
728 ctx
= &wb_global_ctx
;
731 status
= winbindd_send_request(ctx
, req_type
, 0, request
);
732 if (status
!= NSS_STATUS_SUCCESS
)
734 status
= winbindd_get_response(ctx
, response
);
739 NSS_STATUS
winbindd_priv_request_response(struct winbindd_context
*ctx
,
741 struct winbindd_request
*request
,
742 struct winbindd_response
*response
)
744 NSS_STATUS status
= NSS_STATUS_UNAVAIL
;
747 ctx
= &wb_global_ctx
;
750 status
= winbindd_send_request(ctx
, req_type
, 1, request
);
751 if (status
!= NSS_STATUS_SUCCESS
)
753 status
= winbindd_get_response(ctx
, response
);
758 /* Create and free winbindd context */
760 struct winbindd_context
*winbindd_ctx_create(void)
762 struct winbindd_context
*ctx
;
764 ctx
= calloc(1, sizeof(struct winbindd_context
));
770 ctx
->winbindd_fd
= -1;
775 void winbindd_ctx_free(struct winbindd_context
*ctx
)
777 winbind_close_sock(ctx
);