Fix bug #7785 - atime limit.
[Samba.git] / nsswitch / wb_common.c
blobb7fafc38ceea43a8548f8397914ffc51736ee0ff
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 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 */
38 if (response)
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 #if HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR
65 __attribute__((destructor))
66 #endif
67 void winbind_close_sock(void)
69 if (winbindd_fd != -1) {
70 close(winbindd_fd);
71 winbindd_fd = -1;
75 #define CONNECT_TIMEOUT 30
77 /* Make sure socket handle isn't stdin, stdout or stderr */
78 #define RECURSION_LIMIT 3
80 static int make_nonstd_fd_internals(int fd, int limit /* Recursion limiter */)
82 int new_fd;
83 if (fd >= 0 && fd <= 2) {
84 #ifdef F_DUPFD
85 if ((new_fd = fcntl(fd, F_DUPFD, 3)) == -1) {
86 return -1;
88 /* Paranoia */
89 if (new_fd < 3) {
90 close(new_fd);
91 return -1;
93 close(fd);
94 return new_fd;
95 #else
96 if (limit <= 0)
97 return -1;
99 new_fd = dup(fd);
100 if (new_fd == -1)
101 return -1;
103 /* use the program stack to hold our list of FDs to close */
104 new_fd = make_nonstd_fd_internals(new_fd, limit - 1);
105 close(fd);
106 return new_fd;
107 #endif
109 return fd;
112 /****************************************************************************
113 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
114 else
115 if SYSV use O_NDELAY
116 if BSD use FNDELAY
117 Set close on exec also.
118 ****************************************************************************/
120 static int make_safe_fd(int fd)
122 int result, flags;
123 int new_fd = make_nonstd_fd_internals(fd, RECURSION_LIMIT);
124 if (new_fd == -1) {
125 close(fd);
126 return -1;
129 /* Socket should be nonblocking. */
130 #ifdef O_NONBLOCK
131 #define FLAG_TO_SET O_NONBLOCK
132 #else
133 #ifdef SYSV
134 #define FLAG_TO_SET O_NDELAY
135 #else /* BSD */
136 #define FLAG_TO_SET FNDELAY
137 #endif
138 #endif
140 if ((flags = fcntl(new_fd, F_GETFL)) == -1) {
141 close(new_fd);
142 return -1;
145 flags |= FLAG_TO_SET;
146 if (fcntl(new_fd, F_SETFL, flags) == -1) {
147 close(new_fd);
148 return -1;
151 #undef FLAG_TO_SET
153 /* Socket should be closed on exec() */
154 #ifdef FD_CLOEXEC
155 result = flags = fcntl(new_fd, F_GETFD, 0);
156 if (flags >= 0) {
157 flags |= FD_CLOEXEC;
158 result = fcntl( new_fd, F_SETFD, flags );
160 if (result < 0) {
161 close(new_fd);
162 return -1;
164 #endif
165 return new_fd;
168 /* Connect to winbindd socket */
170 static int winbind_named_pipe_sock(const char *dir)
172 struct sockaddr_un sunaddr;
173 struct stat st;
174 char *path = NULL;
175 int fd;
176 int wait_time;
177 int slept;
179 /* Check permissions on unix socket directory */
181 if (lstat(dir, &st) == -1) {
182 errno = ENOENT;
183 return -1;
186 if (!S_ISDIR(st.st_mode) ||
187 (st.st_uid != 0 && st.st_uid != geteuid())) {
188 errno = ENOENT;
189 return -1;
192 /* Connect to socket */
194 if (asprintf(&path, "%s/%s", dir, WINBINDD_SOCKET_NAME) < 0) {
195 return -1;
198 ZERO_STRUCT(sunaddr);
199 sunaddr.sun_family = AF_UNIX;
200 strncpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path) - 1);
202 /* If socket file doesn't exist, don't bother trying to connect
203 with retry. This is an attempt to make the system usable when
204 the winbindd daemon is not running. */
206 if (lstat(path, &st) == -1) {
207 errno = ENOENT;
208 SAFE_FREE(path);
209 return -1;
212 SAFE_FREE(path);
213 /* Check permissions on unix socket file */
215 if (!S_ISSOCK(st.st_mode) ||
216 (st.st_uid != 0 && st.st_uid != geteuid())) {
217 errno = ENOENT;
218 return -1;
221 /* Connect to socket */
223 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
224 return -1;
227 /* Set socket non-blocking and close on exec. */
229 if ((fd = make_safe_fd( fd)) == -1) {
230 return fd;
233 for (wait_time = 0; connect(fd, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1;
234 wait_time += slept) {
235 struct timeval tv;
236 fd_set w_fds;
237 int ret;
238 int connect_errno = 0;
239 socklen_t errnosize;
241 if (wait_time >= CONNECT_TIMEOUT)
242 goto error_out;
244 switch (errno) {
245 case EINPROGRESS:
246 FD_ZERO(&w_fds);
247 FD_SET(fd, &w_fds);
248 tv.tv_sec = CONNECT_TIMEOUT - wait_time;
249 tv.tv_usec = 0;
251 ret = select(fd + 1, NULL, &w_fds, NULL, &tv);
253 if (ret > 0) {
254 errnosize = sizeof(connect_errno);
256 ret = getsockopt(fd, SOL_SOCKET,
257 SO_ERROR, &connect_errno, &errnosize);
259 if (ret >= 0 && connect_errno == 0) {
260 /* Connect succeed */
261 goto out;
265 slept = CONNECT_TIMEOUT;
266 break;
267 case EAGAIN:
268 slept = rand() % 3 + 1;
269 sleep(slept);
270 break;
271 default:
272 goto error_out;
277 out:
279 return fd;
281 error_out:
283 close(fd);
284 return -1;
287 static const char *winbindd_socket_dir(void)
289 #ifdef SOCKET_WRAPPER
290 const char *env_dir;
292 env_dir = getenv(WINBINDD_SOCKET_DIR_ENVVAR);
293 if (env_dir) {
294 return env_dir;
296 #endif
298 return WINBINDD_SOCKET_DIR;
301 /* Connect to winbindd socket */
303 static int winbind_open_pipe_sock(int recursing, int need_priv)
305 #ifdef HAVE_UNIXSOCKET
306 static pid_t our_pid;
307 struct winbindd_request request;
308 struct winbindd_response response;
309 ZERO_STRUCT(request);
310 ZERO_STRUCT(response);
312 if (our_pid != getpid()) {
313 winbind_close_sock();
314 our_pid = getpid();
317 if ((need_priv != 0) && (is_privileged == 0)) {
318 winbind_close_sock();
321 if (winbindd_fd != -1) {
322 return winbindd_fd;
325 if (recursing) {
326 return -1;
329 if ((winbindd_fd = winbind_named_pipe_sock(winbindd_socket_dir())) == -1) {
330 return -1;
333 is_privileged = 0;
335 /* version-check the socket */
337 request.wb_flags = WBFLAG_RECURSE;
338 if ((winbindd_request_response(WINBINDD_INTERFACE_VERSION, &request, &response) != NSS_STATUS_SUCCESS) || (response.data.interface_version != WINBIND_INTERFACE_VERSION)) {
339 winbind_close_sock();
340 return -1;
343 /* try and get priv pipe */
345 request.wb_flags = WBFLAG_RECURSE;
346 if (winbindd_request_response(WINBINDD_PRIV_PIPE_DIR, &request, &response) == NSS_STATUS_SUCCESS) {
347 int fd;
348 if ((fd = winbind_named_pipe_sock((char *)response.extra_data.data)) != -1) {
349 close(winbindd_fd);
350 winbindd_fd = fd;
351 is_privileged = 1;
355 if ((need_priv != 0) && (is_privileged == 0)) {
356 return -1;
359 SAFE_FREE(response.extra_data.data);
361 return winbindd_fd;
362 #else
363 return -1;
364 #endif /* HAVE_UNIXSOCKET */
367 /* Write data to winbindd socket */
369 int winbind_write_sock(void *buffer, int count, int recursing, int need_priv)
371 int result, nwritten;
373 /* Open connection to winbind daemon */
375 restart:
377 if (winbind_open_pipe_sock(recursing, need_priv) == -1) {
378 errno = ENOENT;
379 return -1;
382 /* Write data to socket */
384 nwritten = 0;
386 while(nwritten < count) {
387 struct timeval tv;
388 fd_set r_fds;
390 /* Catch pipe close on other end by checking if a read()
391 call would not block by calling select(). */
393 FD_ZERO(&r_fds);
394 FD_SET(winbindd_fd, &r_fds);
395 ZERO_STRUCT(tv);
397 if (select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv) == -1) {
398 winbind_close_sock();
399 return -1; /* Select error */
402 /* Write should be OK if fd not available for reading */
404 if (!FD_ISSET(winbindd_fd, &r_fds)) {
406 /* Do the write */
408 result = write(winbindd_fd,
409 (char *)buffer + nwritten,
410 count - nwritten);
412 if ((result == -1) || (result == 0)) {
414 /* Write failed */
416 winbind_close_sock();
417 return -1;
420 nwritten += result;
422 } else {
424 /* Pipe has closed on remote end */
426 winbind_close_sock();
427 goto restart;
431 return nwritten;
434 /* Read data from winbindd socket */
436 int winbind_read_sock(void *buffer, int count)
438 int nread = 0;
439 int total_time = 0, selret;
441 if (winbindd_fd == -1) {
442 return -1;
445 /* Read data from socket */
446 while(nread < count) {
447 struct timeval tv;
448 fd_set r_fds;
450 /* Catch pipe close on other end by checking if a read()
451 call would not block by calling select(). */
453 FD_ZERO(&r_fds);
454 FD_SET(winbindd_fd, &r_fds);
455 ZERO_STRUCT(tv);
456 /* Wait for 5 seconds for a reply. May need to parameterise this... */
457 tv.tv_sec = 5;
459 if ((selret = select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv)) == -1) {
460 winbind_close_sock();
461 return -1; /* Select error */
464 if (selret == 0) {
465 /* Not ready for read yet... */
466 if (total_time >= 30) {
467 /* Timeout */
468 winbind_close_sock();
469 return -1;
471 total_time += 5;
472 continue;
475 if (FD_ISSET(winbindd_fd, &r_fds)) {
477 /* Do the Read */
479 int result = read(winbindd_fd, (char *)buffer + nread,
480 count - nread);
482 if ((result == -1) || (result == 0)) {
484 /* Read failed. I think the only useful thing we
485 can do here is just return -1 and fail since the
486 transaction has failed half way through. */
488 winbind_close_sock();
489 return -1;
492 nread += result;
497 return nread;
500 /* Read reply */
502 int winbindd_read_reply(struct winbindd_response *response)
504 int result1, result2 = 0;
506 if (!response) {
507 return -1;
510 /* Read fixed length response */
512 result1 = winbind_read_sock(response,
513 sizeof(struct winbindd_response));
514 if (result1 == -1) {
515 return -1;
518 /* We actually send the pointer value of the extra_data field from
519 the server. This has no meaning in the client's address space
520 so we clear it out. */
522 response->extra_data.data = NULL;
524 /* Read variable length response */
526 if (response->length > sizeof(struct winbindd_response)) {
527 int extra_data_len = response->length -
528 sizeof(struct winbindd_response);
530 /* Mallocate memory for extra data */
532 if (!(response->extra_data.data = malloc(extra_data_len))) {
533 return -1;
536 result2 = winbind_read_sock(response->extra_data.data,
537 extra_data_len);
538 if (result2 == -1) {
539 winbindd_free_response(response);
540 return -1;
544 /* Return total amount of data read */
546 return result1 + result2;
550 * send simple types of requests
553 NSS_STATUS winbindd_send_request(int req_type, int need_priv,
554 struct winbindd_request *request)
556 struct winbindd_request lrequest;
558 /* Check for our tricky environment variable */
560 if (winbind_env_set()) {
561 return NSS_STATUS_NOTFOUND;
564 if (!request) {
565 ZERO_STRUCT(lrequest);
566 request = &lrequest;
569 /* Fill in request and send down pipe */
571 winbindd_init_request(request, req_type);
573 if (winbind_write_sock(request, sizeof(*request),
574 request->wb_flags & WBFLAG_RECURSE,
575 need_priv) == -1)
577 /* Set ENOENT for consistency. Required by some apps */
578 errno = ENOENT;
580 return NSS_STATUS_UNAVAIL;
583 if ((request->extra_len != 0) &&
584 (winbind_write_sock(request->extra_data.data,
585 request->extra_len,
586 request->wb_flags & WBFLAG_RECURSE,
587 need_priv) == -1))
589 /* Set ENOENT for consistency. Required by some apps */
590 errno = ENOENT;
592 return NSS_STATUS_UNAVAIL;
595 return NSS_STATUS_SUCCESS;
599 * Get results from winbindd request
602 NSS_STATUS winbindd_get_response(struct winbindd_response *response)
604 struct winbindd_response lresponse;
606 if (!response) {
607 ZERO_STRUCT(lresponse);
608 response = &lresponse;
611 init_response(response);
613 /* Wait for reply */
614 if (winbindd_read_reply(response) == -1) {
615 /* Set ENOENT for consistency. Required by some apps */
616 errno = ENOENT;
618 return NSS_STATUS_UNAVAIL;
621 /* Throw away extra data if client didn't request it */
622 if (response == &lresponse) {
623 winbindd_free_response(response);
626 /* Copy reply data from socket */
627 if (response->result != WINBINDD_OK) {
628 return NSS_STATUS_NOTFOUND;
631 return NSS_STATUS_SUCCESS;
634 /* Handle simple types of requests */
636 NSS_STATUS winbindd_request_response(int req_type,
637 struct winbindd_request *request,
638 struct winbindd_response *response)
640 NSS_STATUS status = NSS_STATUS_UNAVAIL;
641 int count = 0;
643 while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
644 status = winbindd_send_request(req_type, 0, request);
645 if (status != NSS_STATUS_SUCCESS)
646 return(status);
647 status = winbindd_get_response(response);
648 count += 1;
651 return status;
654 NSS_STATUS winbindd_priv_request_response(int req_type,
655 struct winbindd_request *request,
656 struct winbindd_response *response)
658 NSS_STATUS status = NSS_STATUS_UNAVAIL;
659 int count = 0;
661 while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
662 status = winbindd_send_request(req_type, 1, request);
663 if (status != NSS_STATUS_SUCCESS)
664 return(status);
665 status = winbindd_get_response(response);
666 count += 1;
669 return status;
672 /*************************************************************************
673 ************************************************************************/
675 const char *nss_err_str(NSS_STATUS ret)
677 switch (ret) {
678 case NSS_STATUS_TRYAGAIN:
679 return "NSS_STATUS_TRYAGAIN";
680 case NSS_STATUS_SUCCESS:
681 return "NSS_STATUS_SUCCESS";
682 case NSS_STATUS_NOTFOUND:
683 return "NSS_STATUS_NOTFOUND";
684 case NSS_STATUS_UNAVAIL:
685 return "NSS_STATUS_UNAVAIL";
686 #ifdef NSS_STATUS_RETURN
687 case NSS_STATUS_RETURN:
688 return "NSS_STATUS_RETURN";
689 #endif
690 default:
691 return "UNKNOWN RETURN CODE!!!!!!!";