r21397: revert accidential commit
[Samba/gebeck_regimport.git] / source3 / nsswitch / wb_common.c
blob05d2a660e73b27b59f92047056ed8457deee5ea0
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 */
37 /* Free a response structure */
39 void free_response(struct winbindd_response *response)
41 /* Free any allocated extra_data */
43 if (response)
44 SAFE_FREE(response->extra_data.data);
47 /* Initialise a request structure */
49 void init_request(struct winbindd_request *request, int request_type)
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 void close_sock(void)
71 if (winbindd_fd != -1) {
72 close(winbindd_fd);
73 winbindd_fd = -1;
77 #define CONNECT_TIMEOUT 30
79 /* Make sure socket handle isn't stdin, stdout or stderr */
80 #define RECURSION_LIMIT 3
82 static int make_nonstd_fd_internals(int fd, int limit /* Recursion limiter */)
84 int new_fd;
85 if (fd >= 0 && fd <= 2) {
86 #ifdef F_DUPFD
87 if ((new_fd = fcntl(fd, F_DUPFD, 3)) == -1) {
88 return -1;
90 /* Paranoia */
91 if (new_fd < 3) {
92 close(new_fd);
93 return -1;
95 close(fd);
96 return new_fd;
97 #else
98 if (limit <= 0)
99 return -1;
101 new_fd = dup(fd);
102 if (new_fd == -1)
103 return -1;
105 /* use the program stack to hold our list of FDs to close */
106 new_fd = make_nonstd_fd_internals(new_fd, limit - 1);
107 close(fd);
108 return new_fd;
109 #endif
111 return fd;
114 /****************************************************************************
115 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
116 else
117 if SYSV use O_NDELAY
118 if BSD use FNDELAY
119 Set close on exec also.
120 ****************************************************************************/
122 static int make_safe_fd(int fd)
124 int result, flags;
125 int new_fd = make_nonstd_fd_internals(fd, RECURSION_LIMIT);
126 if (new_fd == -1) {
127 close(fd);
128 return -1;
131 /* Socket should be nonblocking. */
132 #ifdef O_NONBLOCK
133 #define FLAG_TO_SET O_NONBLOCK
134 #else
135 #ifdef SYSV
136 #define FLAG_TO_SET O_NDELAY
137 #else /* BSD */
138 #define FLAG_TO_SET FNDELAY
139 #endif
140 #endif
142 if ((flags = fcntl(new_fd, F_GETFL)) == -1) {
143 close(new_fd);
144 return -1;
147 flags |= FLAG_TO_SET;
148 if (fcntl(new_fd, F_SETFL, flags) == -1) {
149 close(new_fd);
150 return -1;
153 #undef FLAG_TO_SET
155 /* Socket should be closed on exec() */
156 #ifdef FD_CLOEXEC
157 result = flags = fcntl(new_fd, F_GETFD, 0);
158 if (flags >= 0) {
159 flags |= FD_CLOEXEC;
160 result = fcntl( new_fd, F_SETFD, flags );
162 if (result < 0) {
163 close(new_fd);
164 return -1;
166 #endif
167 return new_fd;
170 /* Connect to winbindd socket */
172 static int winbind_named_pipe_sock(const char *dir)
174 struct sockaddr_un sunaddr;
175 struct stat st;
176 pstring path;
177 int fd;
178 int wait_time;
179 int slept;
181 /* Check permissions on unix socket directory */
183 if (lstat(dir, &st) == -1) {
184 return -1;
187 if (!S_ISDIR(st.st_mode) ||
188 (st.st_uid != 0 && st.st_uid != geteuid())) {
189 return -1;
192 /* Connect to socket */
194 strncpy(path, dir, sizeof(path) - 1);
195 path[sizeof(path) - 1] = '\0';
197 strncat(path, "/", sizeof(path) - 1 - strlen(path));
198 path[sizeof(path) - 1] = '\0';
200 strncat(path, WINBINDD_SOCKET_NAME, sizeof(path) - 1 - strlen(path));
201 path[sizeof(path) - 1] = '\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) {
212 return -1;
215 /* Check permissions on unix socket file */
217 if (!S_ISSOCK(st.st_mode) ||
218 (st.st_uid != 0 && st.st_uid != geteuid())) {
219 return -1;
222 /* Connect to socket */
224 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
225 return -1;
228 /* Set socket non-blocking and close on exec. */
230 if ((fd = make_safe_fd( fd)) == -1) {
231 return fd;
234 for (wait_time = 0; connect(fd, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1;
235 wait_time += slept) {
236 struct timeval tv;
237 fd_set w_fds;
238 int ret;
239 int connect_errno = 0;
240 socklen_t errnosize;
242 if (wait_time >= CONNECT_TIMEOUT)
243 goto error_out;
245 switch (errno) {
246 case EINPROGRESS:
247 FD_ZERO(&w_fds);
248 FD_SET(fd, &w_fds);
249 tv.tv_sec = CONNECT_TIMEOUT - wait_time;
250 tv.tv_usec = 0;
252 ret = select(fd + 1, NULL, &w_fds, NULL, &tv);
254 if (ret > 0) {
255 errnosize = sizeof(connect_errno);
257 ret = getsockopt(fd, SOL_SOCKET,
258 SO_ERROR, &connect_errno, &errnosize);
260 if (ret >= 0 && connect_errno == 0) {
261 /* Connect succeed */
262 goto out;
266 slept = CONNECT_TIMEOUT;
267 break;
268 case EAGAIN:
269 slept = rand() % 3 + 1;
270 sleep(slept);
271 break;
272 default:
273 goto error_out;
278 out:
280 return fd;
282 error_out:
284 close(fd);
285 return -1;
288 /* Connect to winbindd socket */
290 static int winbind_open_pipe_sock(int recursing)
292 #ifdef HAVE_UNIXSOCKET
293 static pid_t our_pid;
294 struct winbindd_request request;
295 struct winbindd_response response;
296 ZERO_STRUCT(request);
297 ZERO_STRUCT(response);
299 if (our_pid != getpid()) {
300 close_sock();
301 our_pid = getpid();
304 if (winbindd_fd != -1) {
305 return winbindd_fd;
308 if (recursing) {
309 return -1;
312 if ((winbindd_fd = winbind_named_pipe_sock(WINBINDD_SOCKET_DIR)) == -1) {
313 return -1;
316 /* version-check the socket */
318 request.flags = WBFLAG_RECURSE;
319 if ((winbindd_request_response(WINBINDD_INTERFACE_VERSION, &request, &response) != NSS_STATUS_SUCCESS) || (response.data.interface_version != WINBIND_INTERFACE_VERSION)) {
320 close_sock();
321 return -1;
324 /* try and get priv pipe */
326 request.flags = WBFLAG_RECURSE;
327 if (winbindd_request_response(WINBINDD_PRIV_PIPE_DIR, &request, &response) == NSS_STATUS_SUCCESS) {
328 int fd;
329 if ((fd = winbind_named_pipe_sock((char *)response.extra_data.data)) != -1) {
330 close(winbindd_fd);
331 winbindd_fd = fd;
335 SAFE_FREE(response.extra_data.data);
337 return winbindd_fd;
338 #else
339 return -1;
340 #endif /* HAVE_UNIXSOCKET */
343 /* Write data to winbindd socket */
345 int write_sock(void *buffer, int count, int recursing)
347 int result, nwritten;
349 /* Open connection to winbind daemon */
351 restart:
353 if (winbind_open_pipe_sock(recursing) == -1) {
354 return -1;
357 /* Write data to socket */
359 nwritten = 0;
361 while(nwritten < count) {
362 struct timeval tv;
363 fd_set r_fds;
365 /* Catch pipe close on other end by checking if a read()
366 call would not block by calling select(). */
368 FD_ZERO(&r_fds);
369 FD_SET(winbindd_fd, &r_fds);
370 ZERO_STRUCT(tv);
372 if (select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv) == -1) {
373 close_sock();
374 return -1; /* Select error */
377 /* Write should be OK if fd not available for reading */
379 if (!FD_ISSET(winbindd_fd, &r_fds)) {
381 /* Do the write */
383 result = write(winbindd_fd,
384 (char *)buffer + nwritten,
385 count - nwritten);
387 if ((result == -1) || (result == 0)) {
389 /* Write failed */
391 close_sock();
392 return -1;
395 nwritten += result;
397 } else {
399 /* Pipe has closed on remote end */
401 close_sock();
402 goto restart;
406 return nwritten;
409 /* Read data from winbindd socket */
411 static int read_sock(void *buffer, int count)
413 int result = 0, nread = 0;
414 int total_time = 0, selret;
416 if (winbindd_fd == -1) {
417 return -1;
420 /* Read data from socket */
421 while(nread < count) {
422 struct timeval tv;
423 fd_set r_fds;
425 /* Catch pipe close on other end by checking if a read()
426 call would not block by calling select(). */
428 FD_ZERO(&r_fds);
429 FD_SET(winbindd_fd, &r_fds);
430 ZERO_STRUCT(tv);
431 /* Wait for 5 seconds for a reply. May need to parameterise this... */
432 tv.tv_sec = 5;
434 if ((selret = select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv)) == -1) {
435 close_sock();
436 return -1; /* Select error */
439 if (selret == 0) {
440 /* Not ready for read yet... */
441 if (total_time >= 30) {
442 /* Timeout */
443 close_sock();
444 return -1;
446 total_time += 5;
447 continue;
450 if (FD_ISSET(winbindd_fd, &r_fds)) {
452 /* Do the Read */
454 result = read(winbindd_fd, (char *)buffer + nread,
455 count - nread);
457 if ((result == -1) || (result == 0)) {
459 /* Read failed. I think the only useful thing we
460 can do here is just return -1 and fail since the
461 transaction has failed half way through. */
463 close_sock();
464 return -1;
467 nread += result;
472 return result;
475 /* Read reply */
477 int read_reply(struct winbindd_response *response)
479 int result1, result2 = 0;
481 if (!response) {
482 return -1;
485 /* Read fixed length response */
487 if ((result1 = read_sock(response, sizeof(struct winbindd_response)))
488 == -1) {
490 return -1;
493 /* We actually send the pointer value of the extra_data field from
494 the server. This has no meaning in the client's address space
495 so we clear it out. */
497 response->extra_data.data = NULL;
499 /* Read variable length response */
501 if (response->length > sizeof(struct winbindd_response)) {
502 int extra_data_len = response->length -
503 sizeof(struct winbindd_response);
505 /* Mallocate memory for extra data */
507 if (!(response->extra_data.data = malloc(extra_data_len))) {
508 return -1;
511 if ((result2 = read_sock(response->extra_data.data, extra_data_len))
512 == -1) {
513 free_response(response);
514 return -1;
518 /* Return total amount of data read */
520 return result1 + result2;
523 BOOL winbind_env_set( void )
525 char *env;
527 if ((env=getenv(WINBINDD_DONT_ENV)) != NULL) {
528 if(strcmp(env, "1") == 0) {
529 return True;
532 return False;
536 * send simple types of requests
539 NSS_STATUS winbindd_send_request(int req_type, struct winbindd_request *request)
541 struct winbindd_request lrequest;
543 /* Check for our tricky environment variable */
545 if (winbind_env_set()) {
546 return NSS_STATUS_NOTFOUND;
549 if (!request) {
550 ZERO_STRUCT(lrequest);
551 request = &lrequest;
554 /* Fill in request and send down pipe */
556 init_request(request, req_type);
558 if (write_sock(request, sizeof(*request), request->flags & WBFLAG_RECURSE) == -1) {
559 return NSS_STATUS_UNAVAIL;
562 if ((request->extra_len != 0) &&
563 (write_sock(request->extra_data.data, request->extra_len, request->flags & WBFLAG_RECURSE) == -1)) {
564 return NSS_STATUS_UNAVAIL;
567 return NSS_STATUS_SUCCESS;
571 * Get results from winbindd request
574 NSS_STATUS winbindd_get_response(struct winbindd_response *response)
576 struct winbindd_response lresponse;
578 if (!response) {
579 ZERO_STRUCT(lresponse);
580 response = &lresponse;
583 init_response(response);
585 /* Wait for reply */
586 if (read_reply(response) == -1) {
587 return NSS_STATUS_UNAVAIL;
590 /* Throw away extra data if client didn't request it */
591 if (response == &lresponse) {
592 free_response(response);
595 /* Copy reply data from socket */
596 if (response->result != WINBINDD_OK) {
597 return NSS_STATUS_NOTFOUND;
600 return NSS_STATUS_SUCCESS;
603 /* Handle simple types of requests */
605 NSS_STATUS winbindd_request_response(int req_type,
606 struct winbindd_request *request,
607 struct winbindd_response *response)
609 NSS_STATUS status = NSS_STATUS_UNAVAIL;
610 int count = 0;
612 while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
613 status = winbindd_send_request(req_type, request);
614 if (status != NSS_STATUS_SUCCESS)
615 return(status);
616 status = winbindd_get_response(response);
617 count += 1;
620 return status;
623 /*************************************************************************
624 A couple of simple functions to disable winbindd lookups and re-
625 enable them
626 ************************************************************************/
628 /* Use putenv() instead of setenv() in these functions as not all
629 environments have the latter. */
631 BOOL winbind_off( void )
633 static char *s = CONST_DISCARD(char *, WINBINDD_DONT_ENV "=1");
635 return putenv(s) != -1;
638 BOOL winbind_on( void )
640 static char *s = CONST_DISCARD(char *, WINBINDD_DONT_ENV "=0");
642 return putenv(s) != -1;