mount.cifs: check access of credential files before opening
[Samba.git] / source / nsswitch / wb_common.c
blobbae54f236047a218121f32e6bd27c9a1a72306fa
1 /*
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 Library General Public
13 License as published by the Free Software Foundation; either
14 version 2 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 Library General Public
22 License along with this library; if not, write to the
23 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA.
27 #include "winbind_client.h"
29 BOOL winbind_env_set( void );
30 BOOL winbind_off( void );
31 BOOL winbind_on( void );
33 /* Global variables. These are effectively the client state information */
35 int winbindd_fd = -1; /* fd for winbindd socket */
36 static int is_privileged = 0;
38 /* Free a response structure */
40 void free_response(struct winbindd_response *response)
42 /* Free any allocated extra_data */
44 if (response)
45 SAFE_FREE(response->extra_data.data);
48 /* Initialise a request structure */
50 void init_request(struct winbindd_request *request, int request_type)
52 request->length = sizeof(struct winbindd_request);
54 request->cmd = (enum winbindd_cmd)request_type;
55 request->pid = getpid();
59 /* Initialise a response structure */
61 static void init_response(struct winbindd_response *response)
63 /* Initialise return value */
65 response->result = WINBINDD_ERROR;
68 /* Close established socket */
70 void close_sock(void)
72 if (winbindd_fd != -1) {
73 close(winbindd_fd);
74 winbindd_fd = -1;
78 #define CONNECT_TIMEOUT 30
80 /* Make sure socket handle isn't stdin, stdout or stderr */
81 #define RECURSION_LIMIT 3
83 static int make_nonstd_fd_internals(int fd, int limit /* Recursion limiter */)
85 int new_fd;
86 if (fd >= 0 && fd <= 2) {
87 #ifdef F_DUPFD
88 if ((new_fd = fcntl(fd, F_DUPFD, 3)) == -1) {
89 return -1;
91 /* Paranoia */
92 if (new_fd < 3) {
93 close(new_fd);
94 return -1;
96 close(fd);
97 return new_fd;
98 #else
99 if (limit <= 0)
100 return -1;
102 new_fd = dup(fd);
103 if (new_fd == -1)
104 return -1;
106 /* use the program stack to hold our list of FDs to close */
107 new_fd = make_nonstd_fd_internals(new_fd, limit - 1);
108 close(fd);
109 return new_fd;
110 #endif
112 return fd;
115 /****************************************************************************
116 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
117 else
118 if SYSV use O_NDELAY
119 if BSD use FNDELAY
120 Set close on exec also.
121 ****************************************************************************/
123 static int make_safe_fd(int fd)
125 int result, flags;
126 int new_fd = make_nonstd_fd_internals(fd, RECURSION_LIMIT);
127 if (new_fd == -1) {
128 close(fd);
129 return -1;
132 /* Socket should be nonblocking. */
133 #ifdef O_NONBLOCK
134 #define FLAG_TO_SET O_NONBLOCK
135 #else
136 #ifdef SYSV
137 #define FLAG_TO_SET O_NDELAY
138 #else /* BSD */
139 #define FLAG_TO_SET FNDELAY
140 #endif
141 #endif
143 if ((flags = fcntl(new_fd, F_GETFL)) == -1) {
144 close(new_fd);
145 return -1;
148 flags |= FLAG_TO_SET;
149 if (fcntl(new_fd, F_SETFL, flags) == -1) {
150 close(new_fd);
151 return -1;
154 #undef FLAG_TO_SET
156 /* Socket should be closed on exec() */
157 #ifdef FD_CLOEXEC
158 result = flags = fcntl(new_fd, F_GETFD, 0);
159 if (flags >= 0) {
160 flags |= FD_CLOEXEC;
161 result = fcntl( new_fd, F_SETFD, flags );
163 if (result < 0) {
164 close(new_fd);
165 return -1;
167 #endif
168 return new_fd;
171 /* Connect to winbindd socket */
173 static int winbind_named_pipe_sock(const char *dir)
175 struct sockaddr_un sunaddr;
176 struct stat st;
177 pstring path;
178 int fd;
179 int wait_time;
180 int slept;
182 /* Check permissions on unix socket directory */
184 if (lstat(dir, &st) == -1) {
185 errno = ENOENT;
186 return -1;
189 if (!S_ISDIR(st.st_mode) ||
190 (st.st_uid != 0 && st.st_uid != geteuid())) {
191 errno = ENOENT;
192 return -1;
195 /* Connect to socket */
197 strncpy(path, dir, sizeof(path) - 1);
198 path[sizeof(path) - 1] = '\0';
200 strncat(path, "/", sizeof(path) - 1 - strlen(path));
201 path[sizeof(path) - 1] = '\0';
203 strncat(path, WINBINDD_SOCKET_NAME, sizeof(path) - 1 - strlen(path));
204 path[sizeof(path) - 1] = '\0';
206 ZERO_STRUCT(sunaddr);
207 sunaddr.sun_family = AF_UNIX;
208 strncpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path) - 1);
210 /* If socket file doesn't exist, don't bother trying to connect
211 with retry. This is an attempt to make the system usable when
212 the winbindd daemon is not running. */
214 if (lstat(path, &st) == -1) {
215 errno = ENOENT;
216 return -1;
219 /* Check permissions on unix socket file */
221 if (!S_ISSOCK(st.st_mode) ||
222 (st.st_uid != 0 && st.st_uid != geteuid())) {
223 errno = ENOENT;
224 return -1;
227 /* Connect to socket */
229 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
230 return -1;
233 /* Set socket non-blocking and close on exec. */
235 if ((fd = make_safe_fd( fd)) == -1) {
236 return fd;
239 for (wait_time = 0; connect(fd, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1;
240 wait_time += slept) {
241 struct timeval tv;
242 fd_set w_fds;
243 int ret;
244 int connect_errno = 0;
245 socklen_t errnosize;
247 if (wait_time >= CONNECT_TIMEOUT)
248 goto error_out;
250 switch (errno) {
251 case EINPROGRESS:
252 FD_ZERO(&w_fds);
253 FD_SET(fd, &w_fds);
254 tv.tv_sec = CONNECT_TIMEOUT - wait_time;
255 tv.tv_usec = 0;
257 ret = select(fd + 1, NULL, &w_fds, NULL, &tv);
259 if (ret > 0) {
260 errnosize = sizeof(connect_errno);
262 ret = getsockopt(fd, SOL_SOCKET,
263 SO_ERROR, &connect_errno, &errnosize);
265 if (ret >= 0 && connect_errno == 0) {
266 /* Connect succeed */
267 goto out;
271 slept = CONNECT_TIMEOUT;
272 break;
273 case EAGAIN:
274 slept = rand() % 3 + 1;
275 sleep(slept);
276 break;
277 default:
278 goto error_out;
283 out:
285 return fd;
287 error_out:
289 close(fd);
290 return -1;
293 /* Connect to winbindd socket */
295 static int winbind_open_pipe_sock(int recursing, int need_priv)
297 #ifdef HAVE_UNIXSOCKET
298 static pid_t our_pid;
299 struct winbindd_request request;
300 struct winbindd_response response;
301 ZERO_STRUCT(request);
302 ZERO_STRUCT(response);
304 if (our_pid != getpid()) {
305 close_sock();
306 our_pid = getpid();
309 if ((need_priv != 0) && (is_privileged == 0)) {
310 close_sock();
313 if (winbindd_fd != -1) {
314 return winbindd_fd;
317 if (recursing) {
318 return -1;
321 if ((winbindd_fd = winbind_named_pipe_sock(WINBINDD_SOCKET_DIR)) == -1) {
322 return -1;
325 is_privileged = 0;
327 /* version-check the socket */
329 request.flags = WBFLAG_RECURSE;
330 if ((winbindd_request_response(WINBINDD_INTERFACE_VERSION, &request, &response) != NSS_STATUS_SUCCESS) || (response.data.interface_version != WINBIND_INTERFACE_VERSION)) {
331 close_sock();
332 return -1;
335 /* try and get priv pipe */
337 request.flags = WBFLAG_RECURSE;
338 if (winbindd_request_response(WINBINDD_PRIV_PIPE_DIR, &request, &response) == NSS_STATUS_SUCCESS) {
339 int fd;
340 if ((fd = winbind_named_pipe_sock((char *)response.extra_data.data)) != -1) {
341 close(winbindd_fd);
342 winbindd_fd = fd;
343 is_privileged = 1;
347 if ((need_priv != 0) && (is_privileged == 0)) {
348 return -1;
351 SAFE_FREE(response.extra_data.data);
353 return winbindd_fd;
354 #else
355 return -1;
356 #endif /* HAVE_UNIXSOCKET */
359 /* Write data to winbindd socket */
361 int write_sock(void *buffer, int count, int recursing, int need_priv)
363 int result, nwritten;
365 /* Open connection to winbind daemon */
367 restart:
369 if (winbind_open_pipe_sock(recursing, need_priv) == -1) {
370 errno = ENOENT;
371 return -1;
374 /* Write data to socket */
376 nwritten = 0;
378 while(nwritten < count) {
379 struct timeval tv;
380 fd_set r_fds;
382 /* Catch pipe close on other end by checking if a read()
383 call would not block by calling select(). */
385 FD_ZERO(&r_fds);
386 FD_SET(winbindd_fd, &r_fds);
387 ZERO_STRUCT(tv);
389 if (select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv) == -1) {
390 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)) {
398 /* Do the write */
400 result = write(winbindd_fd,
401 (char *)buffer + nwritten,
402 count - nwritten);
404 if ((result == -1) || (result == 0)) {
406 /* Write failed */
408 close_sock();
409 return -1;
412 nwritten += result;
414 } else {
416 /* Pipe has closed on remote end */
418 close_sock();
419 goto restart;
423 return nwritten;
426 /* Read data from winbindd socket */
428 static int read_sock(void *buffer, int count)
430 int nread = 0;
431 int total_time = 0, selret;
433 if (winbindd_fd == -1) {
434 return -1;
437 /* Read data from socket */
438 while(nread < count) {
439 struct timeval tv;
440 fd_set r_fds;
442 /* Catch pipe close on other end by checking if a read()
443 call would not block by calling select(). */
445 FD_ZERO(&r_fds);
446 FD_SET(winbindd_fd, &r_fds);
447 ZERO_STRUCT(tv);
448 /* Wait for 5 seconds for a reply. May need to parameterise this... */
449 tv.tv_sec = 5;
451 if ((selret = select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv)) == -1) {
452 close_sock();
453 return -1; /* Select error */
456 if (selret == 0) {
457 /* Not ready for read yet... */
458 if (total_time >= 30) {
459 /* Timeout */
460 close_sock();
461 return -1;
463 total_time += 5;
464 continue;
467 if (FD_ISSET(winbindd_fd, &r_fds)) {
469 /* Do the Read */
471 int result = read(winbindd_fd, (char *)buffer + nread,
472 count - 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 close_sock();
481 return -1;
484 nread += result;
489 return nread;
492 /* Read reply */
494 int read_reply(struct winbindd_response *response)
496 int result1, result2 = 0;
498 if (!response) {
499 return -1;
502 /* Read fixed length response */
504 if ((result1 = read_sock(response, sizeof(struct winbindd_response)))
505 == -1) {
507 return -1;
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))) {
525 return -1;
528 if ((result2 = read_sock(response->extra_data.data, extra_data_len))
529 == -1) {
530 free_response(response);
531 return -1;
535 /* Return total amount of data read */
537 return result1 + result2;
540 BOOL winbind_env_set( void )
542 char *env;
544 if ((env=getenv(WINBINDD_DONT_ENV)) != NULL) {
545 if(strcmp(env, "1") == 0) {
546 return True;
549 return False;
553 * send simple types of requests
556 NSS_STATUS winbindd_send_request(int req_type, int need_priv,
557 struct winbindd_request *request)
559 struct winbindd_request lrequest;
561 /* Check for our tricky environment variable */
563 if (winbind_env_set()) {
564 return NSS_STATUS_NOTFOUND;
567 if (!request) {
568 ZERO_STRUCT(lrequest);
569 request = &lrequest;
572 /* Fill in request and send down pipe */
574 init_request(request, req_type);
576 if (write_sock(request, sizeof(*request),
577 request->flags & WBFLAG_RECURSE, need_priv) == -1) {
578 /* Set ENOENT for consistency. Required by some apps */
579 errno = ENOENT;
581 return NSS_STATUS_UNAVAIL;
584 if ((request->extra_len != 0) &&
585 (write_sock(request->extra_data.data, request->extra_len,
586 request->flags & WBFLAG_RECURSE, need_priv) == -1)) {
587 /* Set ENOENT for consistency. Required by some apps */
588 errno = ENOENT;
590 return NSS_STATUS_UNAVAIL;
593 return NSS_STATUS_SUCCESS;
597 * Get results from winbindd request
600 NSS_STATUS winbindd_get_response(struct winbindd_response *response)
602 struct winbindd_response lresponse;
604 if (!response) {
605 ZERO_STRUCT(lresponse);
606 response = &lresponse;
609 init_response(response);
611 /* Wait for reply */
612 if (read_reply(response) == -1) {
613 /* Set ENOENT for consistency. Required by some apps */
614 errno = ENOENT;
616 return NSS_STATUS_UNAVAIL;
619 /* Throw away extra data if client didn't request it */
620 if (response == &lresponse) {
621 free_response(response);
624 /* Copy reply data from socket */
625 if (response->result != WINBINDD_OK) {
626 return NSS_STATUS_NOTFOUND;
629 return NSS_STATUS_SUCCESS;
632 /* Handle simple types of requests */
634 NSS_STATUS winbindd_request_response(int req_type,
635 struct winbindd_request *request,
636 struct winbindd_response *response)
638 NSS_STATUS status = NSS_STATUS_UNAVAIL;
639 int count = 0;
641 while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
642 status = winbindd_send_request(req_type, 0, request);
643 if (status != NSS_STATUS_SUCCESS)
644 return(status);
645 status = winbindd_get_response(response);
646 count += 1;
649 return status;
652 NSS_STATUS winbindd_priv_request_response(int req_type,
653 struct winbindd_request *request,
654 struct winbindd_response *response)
656 NSS_STATUS status = NSS_STATUS_UNAVAIL;
657 int count = 0;
659 while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
660 status = winbindd_send_request(req_type, 1, request);
661 if (status != NSS_STATUS_SUCCESS)
662 return(status);
663 status = winbindd_get_response(response);
664 count += 1;
667 return status;
670 /*************************************************************************
671 A couple of simple functions to disable winbindd lookups and re-
672 enable them
673 ************************************************************************/
675 /* Use putenv() instead of setenv() in these functions as not all
676 environments have the latter. */
678 BOOL winbind_off( void )
680 static char *s = CONST_DISCARD(char *, WINBINDD_DONT_ENV "=1");
682 return putenv(s) != -1;
685 BOOL winbind_on( void )
687 static char *s = CONST_DISCARD(char *, WINBINDD_DONT_ENV "=0");
689 return putenv(s) != -1;