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 #include "winbind_client.h"
27 /* Global variables. These are effectively the client state information */
29 int winbindd_fd
= -1; /* fd for winbindd socket */
30 static int is_privileged
= 0;
32 /* Free a response structure */
34 void winbindd_free_response(struct winbindd_response
*response
)
36 /* Free any allocated extra_data */
39 SAFE_FREE(response
->extra_data
.data
);
42 /* Initialise a request structure */
44 void winbindd_init_request(struct winbindd_request
*request
, int request_type
)
46 request
->length
= sizeof(struct winbindd_request
);
48 request
->cmd
= (enum winbindd_cmd
)request_type
;
49 request
->pid
= getpid();
53 /* Initialise a response structure */
55 static void init_response(struct winbindd_response
*response
)
57 /* Initialise return value */
59 response
->result
= WINBINDD_ERROR
;
62 /* Close established socket */
64 void winbind_close_sock(void)
66 if (winbindd_fd
!= -1) {
72 #define CONNECT_TIMEOUT 30
74 /* Make sure socket handle isn't stdin, stdout or stderr */
75 #define RECURSION_LIMIT 3
77 static int make_nonstd_fd_internals(int fd
, int limit
/* Recursion limiter */)
80 if (fd
>= 0 && fd
<= 2) {
82 if ((new_fd
= fcntl(fd
, F_DUPFD
, 3)) == -1) {
100 /* use the program stack to hold our list of FDs to close */
101 new_fd
= make_nonstd_fd_internals(new_fd
, limit
- 1);
109 /****************************************************************************
110 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
114 Set close on exec also.
115 ****************************************************************************/
117 static int make_safe_fd(int fd
)
120 int new_fd
= make_nonstd_fd_internals(fd
, RECURSION_LIMIT
);
126 /* Socket should be nonblocking. */
128 #define FLAG_TO_SET O_NONBLOCK
131 #define FLAG_TO_SET O_NDELAY
133 #define FLAG_TO_SET FNDELAY
137 if ((flags
= fcntl(new_fd
, F_GETFL
)) == -1) {
142 flags
|= FLAG_TO_SET
;
143 if (fcntl(new_fd
, F_SETFL
, flags
) == -1) {
150 /* Socket should be closed on exec() */
152 result
= flags
= fcntl(new_fd
, F_GETFD
, 0);
155 result
= fcntl( new_fd
, F_SETFD
, flags
);
165 /* Connect to winbindd socket */
167 static int winbind_named_pipe_sock(const char *dir
)
169 struct sockaddr_un sunaddr
;
176 /* Check permissions on unix socket directory */
178 if (lstat(dir
, &st
) == -1) {
182 if (!S_ISDIR(st
.st_mode
) ||
183 (st
.st_uid
!= 0 && st
.st_uid
!= geteuid())) {
187 /* Connect to socket */
189 if (asprintf(&path
, "%s/%s", dir
, WINBINDD_SOCKET_NAME
) < 0) {
193 ZERO_STRUCT(sunaddr
);
194 sunaddr
.sun_family
= AF_UNIX
;
195 strncpy(sunaddr
.sun_path
, path
, sizeof(sunaddr
.sun_path
) - 1);
197 /* If socket file doesn't exist, don't bother trying to connect
198 with retry. This is an attempt to make the system usable when
199 the winbindd daemon is not running. */
201 if (lstat(path
, &st
) == -1) {
207 /* Check permissions on unix socket file */
209 if (!S_ISSOCK(st
.st_mode
) ||
210 (st
.st_uid
!= 0 && st
.st_uid
!= geteuid())) {
214 /* Connect to socket */
216 if ((fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1) {
220 /* Set socket non-blocking and close on exec. */
222 if ((fd
= make_safe_fd( fd
)) == -1) {
226 for (wait_time
= 0; connect(fd
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) == -1;
227 wait_time
+= slept
) {
231 int connect_errno
= 0;
234 if (wait_time
>= CONNECT_TIMEOUT
)
241 tv
.tv_sec
= CONNECT_TIMEOUT
- wait_time
;
244 ret
= select(fd
+ 1, NULL
, &w_fds
, NULL
, &tv
);
247 errnosize
= sizeof(connect_errno
);
249 ret
= getsockopt(fd
, SOL_SOCKET
,
250 SO_ERROR
, &connect_errno
, &errnosize
);
252 if (ret
>= 0 && connect_errno
== 0) {
253 /* Connect succeed */
258 slept
= CONNECT_TIMEOUT
;
261 slept
= rand() % 3 + 1;
280 static const char *winbindd_socket_dir(void)
282 #ifdef SOCKET_WRAPPER
285 env_dir
= getenv(WINBINDD_SOCKET_DIR_ENVVAR
);
291 return WINBINDD_SOCKET_DIR
;
294 /* Connect to winbindd socket */
296 static int winbind_open_pipe_sock(int recursing
, int need_priv
)
298 #ifdef HAVE_UNIXSOCKET
299 static pid_t our_pid
;
300 struct winbindd_request request
;
301 struct winbindd_response response
;
302 ZERO_STRUCT(request
);
303 ZERO_STRUCT(response
);
305 if (our_pid
!= getpid()) {
306 winbind_close_sock();
310 if ((need_priv
!= 0) && (is_privileged
== 0)) {
311 winbind_close_sock();
314 if (winbindd_fd
!= -1) {
322 if ((winbindd_fd
= winbind_named_pipe_sock(winbindd_socket_dir())) == -1) {
328 /* version-check the socket */
330 request
.wb_flags
= WBFLAG_RECURSE
;
331 if ((winbindd_request_response(WINBINDD_INTERFACE_VERSION
, &request
, &response
) != NSS_STATUS_SUCCESS
) || (response
.data
.interface_version
!= WINBIND_INTERFACE_VERSION
)) {
332 winbind_close_sock();
336 /* try and get priv pipe */
338 request
.wb_flags
= WBFLAG_RECURSE
;
339 if (winbindd_request_response(WINBINDD_PRIV_PIPE_DIR
, &request
, &response
) == NSS_STATUS_SUCCESS
) {
341 if ((fd
= winbind_named_pipe_sock((char *)response
.extra_data
.data
)) != -1) {
348 if ((need_priv
!= 0) && (is_privileged
== 0)) {
352 SAFE_FREE(response
.extra_data
.data
);
357 #endif /* HAVE_UNIXSOCKET */
360 /* Write data to winbindd socket */
362 int winbind_write_sock(void *buffer
, int count
, int recursing
, int need_priv
)
364 int result
, nwritten
;
366 /* Open connection to winbind daemon */
370 if (winbind_open_pipe_sock(recursing
, need_priv
) == -1) {
374 /* Write data to socket */
378 while(nwritten
< count
) {
382 /* Catch pipe close on other end by checking if a read()
383 call would not block by calling select(). */
386 FD_SET(winbindd_fd
, &r_fds
);
389 if (select(winbindd_fd
+ 1, &r_fds
, NULL
, NULL
, &tv
) == -1) {
390 winbind_close_sock();
391 return -1; /* Select error */
394 /* Write should be OK if fd not available for reading */
396 if (!FD_ISSET(winbindd_fd
, &r_fds
)) {
400 result
= write(winbindd_fd
,
401 (char *)buffer
+ nwritten
,
404 if ((result
== -1) || (result
== 0)) {
408 winbind_close_sock();
416 /* Pipe has closed on remote end */
418 winbind_close_sock();
426 /* Read data from winbindd socket */
428 int winbind_read_sock(void *buffer
, int count
)
431 int total_time
= 0, selret
;
433 if (winbindd_fd
== -1) {
437 /* Read data from socket */
438 while(nread
< count
) {
442 /* Catch pipe close on other end by checking if a read()
443 call would not block by calling select(). */
446 FD_SET(winbindd_fd
, &r_fds
);
448 /* Wait for 5 seconds for a reply. May need to parameterise this... */
451 if ((selret
= select(winbindd_fd
+ 1, &r_fds
, NULL
, NULL
, &tv
)) == -1) {
452 winbind_close_sock();
453 return -1; /* Select error */
457 /* Not ready for read yet... */
458 if (total_time
>= 30) {
460 winbind_close_sock();
467 if (FD_ISSET(winbindd_fd
, &r_fds
)) {
471 int result
= read(winbindd_fd
, (char *)buffer
+ nread
,
474 if ((result
== -1) || (result
== 0)) {
476 /* Read failed. I think the only useful thing we
477 can do here is just return -1 and fail since the
478 transaction has failed half way through. */
480 winbind_close_sock();
494 int winbindd_read_reply(struct winbindd_response
*response
)
496 int result1
, result2
= 0;
502 /* Read fixed length response */
504 result1
= winbind_read_sock(response
,
505 sizeof(struct winbindd_response
));
510 /* We actually send the pointer value of the extra_data field from
511 the server. This has no meaning in the client's address space
512 so we clear it out. */
514 response
->extra_data
.data
= NULL
;
516 /* Read variable length response */
518 if (response
->length
> sizeof(struct winbindd_response
)) {
519 int extra_data_len
= response
->length
-
520 sizeof(struct winbindd_response
);
522 /* Mallocate memory for extra data */
524 if (!(response
->extra_data
.data
= malloc(extra_data_len
))) {
528 result2
= winbind_read_sock(response
->extra_data
.data
,
531 winbindd_free_response(response
);
536 /* Return total amount of data read */
538 return result1
+ result2
;
542 * send simple types of requests
545 NSS_STATUS
winbindd_send_request(int req_type
, int need_priv
,
546 struct winbindd_request
*request
)
548 struct winbindd_request lrequest
;
550 /* Check for our tricky environment variable */
552 if (winbind_env_set()) {
553 return NSS_STATUS_NOTFOUND
;
557 ZERO_STRUCT(lrequest
);
561 /* Fill in request and send down pipe */
563 winbindd_init_request(request
, req_type
);
565 if (winbind_write_sock(request
, sizeof(*request
),
566 request
->wb_flags
& WBFLAG_RECURSE
,
568 return NSS_STATUS_UNAVAIL
;
571 if ((request
->extra_len
!= 0) &&
572 (winbind_write_sock(request
->extra_data
.data
,
574 request
->wb_flags
& WBFLAG_RECURSE
,
576 return NSS_STATUS_UNAVAIL
;
579 return NSS_STATUS_SUCCESS
;
583 * Get results from winbindd request
586 NSS_STATUS
winbindd_get_response(struct winbindd_response
*response
)
588 struct winbindd_response lresponse
;
591 ZERO_STRUCT(lresponse
);
592 response
= &lresponse
;
595 init_response(response
);
598 if (winbindd_read_reply(response
) == -1) {
599 return NSS_STATUS_UNAVAIL
;
602 /* Throw away extra data if client didn't request it */
603 if (response
== &lresponse
) {
604 winbindd_free_response(response
);
607 /* Copy reply data from socket */
608 if (response
->result
!= WINBINDD_OK
) {
609 return NSS_STATUS_NOTFOUND
;
612 return NSS_STATUS_SUCCESS
;
615 /* Handle simple types of requests */
617 NSS_STATUS
winbindd_request_response(int req_type
,
618 struct winbindd_request
*request
,
619 struct winbindd_response
*response
)
621 NSS_STATUS status
= NSS_STATUS_UNAVAIL
;
624 while ((status
== NSS_STATUS_UNAVAIL
) && (count
< 10)) {
625 status
= winbindd_send_request(req_type
, 0, request
);
626 if (status
!= NSS_STATUS_SUCCESS
)
628 status
= winbindd_get_response(response
);
635 NSS_STATUS
winbindd_priv_request_response(int req_type
,
636 struct winbindd_request
*request
,
637 struct winbindd_response
*response
)
639 NSS_STATUS status
= NSS_STATUS_UNAVAIL
;
642 while ((status
== NSS_STATUS_UNAVAIL
) && (count
< 10)) {
643 status
= winbindd_send_request(req_type
, 1, request
);
644 if (status
!= NSS_STATUS_SUCCESS
)
646 status
= winbindd_get_response(response
);
653 /*************************************************************************
654 ************************************************************************/
656 const char *nss_err_str(NSS_STATUS ret
)
659 case NSS_STATUS_TRYAGAIN
:
660 return "NSS_STATUS_TRYAGAIN";
661 case NSS_STATUS_SUCCESS
:
662 return "NSS_STATUS_SUCCESS";
663 case NSS_STATUS_NOTFOUND
:
664 return "NSS_STATUS_NOTFOUND";
665 case NSS_STATUS_UNAVAIL
:
666 return "NSS_STATUS_UNAVAIL";
667 #ifdef NSS_STATUS_RETURN
668 case NSS_STATUS_RETURN
:
669 return "NSS_STATUS_RETURN";
672 return "UNKNOWN RETURN CODE!!!!!!!";