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
11 This library is free software; you can redistribute it and/or
12 modify it under the terms of the GNU Lesser General Public
13 License as published by the Free Software Foundation; either
14 version 3 of the License, or (at your option) any later version.
16 This library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Library General Public License for more details.
21 You should have received a copy of the GNU Lesser General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #define UID_WRAPPER_NOT_REPLACE
28 #include "system/select.h"
29 #include "winbind_client.h"
31 /* Global variables. These are effectively the client state information */
33 int winbindd_fd
= -1; /* fd for winbindd socket */
34 static int is_privileged
= 0;
36 /* Free a response structure */
38 void winbindd_free_response(struct winbindd_response
*response
)
40 /* Free any allocated extra_data */
43 SAFE_FREE(response
->extra_data
.data
);
46 /* Initialise a request structure */
48 static void winbindd_init_request(struct winbindd_request
*request
,
51 request
->length
= sizeof(struct winbindd_request
);
53 request
->cmd
= (enum winbindd_cmd
)request_type
;
54 request
->pid
= getpid();
58 /* Initialise a response structure */
60 static void init_response(struct winbindd_response
*response
)
62 /* Initialise return value */
64 response
->result
= WINBINDD_ERROR
;
67 /* Close established socket */
69 #if HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR
70 __attribute__((destructor
))
72 static void winbind_close_sock(void)
74 if (winbindd_fd
!= -1) {
80 #define CONNECT_TIMEOUT 30
82 /* Make sure socket handle isn't stdin, stdout or stderr */
83 #define RECURSION_LIMIT 3
85 static int make_nonstd_fd_internals(int fd
, int limit
/* Recursion limiter */)
88 if (fd
>= 0 && fd
<= 2) {
90 if ((new_fd
= fcntl(fd
, F_DUPFD
, 3)) == -1) {
108 /* use the program stack to hold our list of FDs to close */
109 new_fd
= make_nonstd_fd_internals(new_fd
, limit
- 1);
117 /****************************************************************************
118 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
122 Set close on exec also.
123 ****************************************************************************/
125 static int make_safe_fd(int fd
)
128 int new_fd
= make_nonstd_fd_internals(fd
, RECURSION_LIMIT
);
134 /* Socket should be nonblocking. */
136 #define FLAG_TO_SET O_NONBLOCK
139 #define FLAG_TO_SET O_NDELAY
141 #define FLAG_TO_SET FNDELAY
145 if ((flags
= fcntl(new_fd
, F_GETFL
)) == -1) {
150 flags
|= FLAG_TO_SET
;
151 if (fcntl(new_fd
, F_SETFL
, flags
) == -1) {
158 /* Socket should be closed on exec() */
160 result
= flags
= fcntl(new_fd
, F_GETFD
, 0);
163 result
= fcntl( new_fd
, F_SETFD
, flags
);
173 /* Connect to winbindd socket */
175 static int winbind_named_pipe_sock(const char *dir
)
177 struct sockaddr_un sunaddr
;
184 /* Check permissions on unix socket directory */
186 if (lstat(dir
, &st
) == -1) {
191 if (!S_ISDIR(st
.st_mode
) ||
192 (st
.st_uid
!= 0 && st
.st_uid
!= geteuid())) {
197 /* Connect to socket */
199 if (asprintf(&path
, "%s/%s", dir
, WINBINDD_SOCKET_NAME
) < 0) {
203 ZERO_STRUCT(sunaddr
);
204 sunaddr
.sun_family
= AF_UNIX
;
205 strncpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
) - 1);
207 /* If socket file doesn't exist, don't bother trying to connect
208 with retry. This is an attempt to make the system usable when
209 the winbindd daemon is not running. */
211 if (lstat(path
, &st
) == -1) {
218 /* Check permissions on unix socket file */
220 if (!S_ISSOCK(st
.st_mode
) ||
221 (st
.st_uid
!= 0 && st
.st_uid
!= geteuid())) {
226 /* Connect to socket */
228 if ((fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1) {
232 /* Set socket non-blocking and close on exec. */
234 if ((fd
= make_safe_fd( fd
)) == -1) {
238 for (wait_time
= 0; connect(fd
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1;
239 wait_time
+= slept
) {
242 int connect_errno
= 0;
245 if (wait_time
>= CONNECT_TIMEOUT
)
251 pfd
.events
= POLLOUT
;
253 ret
= poll(&pfd
, 1, (CONNECT_TIMEOUT
- wait_time
) * 1000);
256 errnosize
= sizeof(connect_errno
);
258 ret
= getsockopt(fd
, SOL_SOCKET
,
259 SO_ERROR
, &connect_errno
, &errnosize
);
261 if (ret
>= 0 && connect_errno
== 0) {
262 /* Connect succeed */
267 slept
= CONNECT_TIMEOUT
;
270 slept
= rand() % 3 + 1;
289 static const char *winbindd_socket_dir(void)
291 #ifdef SOCKET_WRAPPER
294 env_dir
= getenv(WINBINDD_SOCKET_DIR_ENVVAR
);
300 return WINBINDD_SOCKET_DIR
;
303 /* Connect to winbindd socket */
305 static int winbind_open_pipe_sock(int recursing
, int need_priv
)
307 #ifdef HAVE_UNIXSOCKET
308 static pid_t our_pid
;
309 struct winbindd_request request
;
310 struct winbindd_response response
;
311 ZERO_STRUCT(request
);
312 ZERO_STRUCT(response
);
314 if (our_pid
!= getpid()) {
315 winbind_close_sock();
319 if ((need_priv
!= 0) && (is_privileged
== 0)) {
320 winbind_close_sock();
323 if (winbindd_fd
!= -1) {
331 if ((winbindd_fd
= winbind_named_pipe_sock(winbindd_socket_dir())) == -1) {
337 /* version-check the socket */
339 request
.wb_flags
= WBFLAG_RECURSE
;
340 if ((winbindd_request_response(WINBINDD_INTERFACE_VERSION
, &request
, &response
) != NSS_STATUS_SUCCESS
) || (response
.data
.interface_version
!= WINBIND_INTERFACE_VERSION
)) {
341 winbind_close_sock();
345 /* try and get priv pipe */
347 request
.wb_flags
= WBFLAG_RECURSE
;
348 if (winbindd_request_response(WINBINDD_PRIV_PIPE_DIR
, &request
, &response
) == NSS_STATUS_SUCCESS
) {
350 if ((fd
= winbind_named_pipe_sock((char *)response
.extra_data
.data
)) != -1) {
357 if ((need_priv
!= 0) && (is_privileged
== 0)) {
361 SAFE_FREE(response
.extra_data
.data
);
366 #endif /* HAVE_UNIXSOCKET */
369 /* Write data to winbindd socket */
371 static int winbind_write_sock(void *buffer
, int count
, int recursing
,
374 int fd
, result
, nwritten
;
376 /* Open connection to winbind daemon */
380 fd
= winbind_open_pipe_sock(recursing
, need_priv
);
386 /* Write data to socket */
390 while(nwritten
< count
) {
394 /* Catch pipe close on other end by checking if a read()
395 call would not block by calling poll(). */
398 pfd
.events
= POLLIN
|POLLOUT
|POLLHUP
;
400 ret
= poll(&pfd
, 1, -1);
402 winbind_close_sock();
403 return -1; /* poll error */
406 /* Write should be OK if fd not available for reading */
408 if ((ret
== 1) && (pfd
.revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
410 /* Pipe has closed on remote end */
412 winbind_close_sock();
418 result
= write(fd
, (char *)buffer
+ nwritten
,
421 if ((result
== -1) || (result
== 0)) {
425 winbind_close_sock();
435 /* Read data from winbindd socket */
437 static int winbind_read_sock(void *buffer
, int count
)
443 fd
= winbind_open_pipe_sock(false, false);
448 /* Read data from socket */
449 while(nread
< count
) {
453 /* Catch pipe close on other end by checking if a read()
454 call would not block by calling poll(). */
457 pfd
.events
= POLLIN
|POLLHUP
;
459 /* Wait for 5 seconds for a reply. May need to parameterise this... */
461 ret
= poll(&pfd
, 1, 5000);
463 winbind_close_sock();
464 return -1; /* poll error */
468 /* Not ready for read yet... */
469 if (total_time
>= 30) {
471 winbind_close_sock();
478 if ((ret
== 1) && (pfd
.revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
482 int result
= read(fd
, (char *)buffer
+ nread
,
485 if ((result
== -1) || (result
== 0)) {
487 /* Read failed. I think the only useful thing we
488 can do here is just return -1 and fail since the
489 transaction has failed half way through. */
491 winbind_close_sock();
505 static int winbindd_read_reply(struct winbindd_response
*response
)
507 int result1
, result2
= 0;
513 /* Read fixed length response */
515 result1
= winbind_read_sock(response
,
516 sizeof(struct winbindd_response
));
521 if (response
->length
< sizeof(struct winbindd_response
)) {
525 /* We actually send the pointer value of the extra_data field from
526 the server. This has no meaning in the client's address space
527 so we clear it out. */
529 response
->extra_data
.data
= NULL
;
531 /* Read variable length response */
533 if (response
->length
> sizeof(struct winbindd_response
)) {
534 int extra_data_len
= response
->length
-
535 sizeof(struct winbindd_response
);
537 /* Mallocate memory for extra data */
539 if (!(response
->extra_data
.data
= malloc(extra_data_len
))) {
543 result2
= winbind_read_sock(response
->extra_data
.data
,
546 winbindd_free_response(response
);
551 /* Return total amount of data read */
553 return result1
+ result2
;
557 * send simple types of requests
560 NSS_STATUS
winbindd_send_request(int req_type
, int need_priv
,
561 struct winbindd_request
*request
)
563 struct winbindd_request lrequest
;
565 /* Check for our tricky environment variable */
567 if (winbind_env_set()) {
568 return NSS_STATUS_NOTFOUND
;
572 ZERO_STRUCT(lrequest
);
576 /* Fill in request and send down pipe */
578 winbindd_init_request(request
, req_type
);
580 if (winbind_write_sock(request
, sizeof(*request
),
581 request
->wb_flags
& WBFLAG_RECURSE
,
584 /* Set ENOENT for consistency. Required by some apps */
587 return NSS_STATUS_UNAVAIL
;
590 if ((request
->extra_len
!= 0) &&
591 (winbind_write_sock(request
->extra_data
.data
,
593 request
->wb_flags
& WBFLAG_RECURSE
,
596 /* Set ENOENT for consistency. Required by some apps */
599 return NSS_STATUS_UNAVAIL
;
602 return NSS_STATUS_SUCCESS
;
606 * Get results from winbindd request
609 NSS_STATUS
winbindd_get_response(struct winbindd_response
*response
)
611 struct winbindd_response lresponse
;
614 ZERO_STRUCT(lresponse
);
615 response
= &lresponse
;
618 init_response(response
);
621 if (winbindd_read_reply(response
) == -1) {
622 /* Set ENOENT for consistency. Required by some apps */
625 return NSS_STATUS_UNAVAIL
;
628 /* Throw away extra data if client didn't request it */
629 if (response
== &lresponse
) {
630 winbindd_free_response(response
);
633 /* Copy reply data from socket */
634 if (response
->result
!= WINBINDD_OK
) {
635 return NSS_STATUS_NOTFOUND
;
638 return NSS_STATUS_SUCCESS
;
641 /* Handle simple types of requests */
643 NSS_STATUS
winbindd_request_response(int req_type
,
644 struct winbindd_request
*request
,
645 struct winbindd_response
*response
)
647 NSS_STATUS status
= NSS_STATUS_UNAVAIL
;
650 while ((status
== NSS_STATUS_UNAVAIL
) && (count
< 10)) {
651 status
= winbindd_send_request(req_type
, 0, request
);
652 if (status
!= NSS_STATUS_SUCCESS
)
654 status
= winbindd_get_response(response
);
661 NSS_STATUS
winbindd_priv_request_response(int req_type
,
662 struct winbindd_request
*request
,
663 struct winbindd_response
*response
)
665 NSS_STATUS status
= NSS_STATUS_UNAVAIL
;
668 while ((status
== NSS_STATUS_UNAVAIL
) && (count
< 10)) {
669 status
= winbindd_send_request(req_type
, 1, request
);
670 if (status
!= NSS_STATUS_SUCCESS
)
672 status
= winbindd_get_response(response
);