Update copyright notices with scripts/update-copyrights
[glibc.git] / nis / nis_callback.c
blob958c49f122a9a1af7badbf610499cac3b1d6abcd
1 /* Copyright (C) 1997-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1997.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <libintl.h>
24 #include <rpc/rpc.h>
25 #include <rpc/pmap_clnt.h>
26 #include <string.h>
27 #include <memory.h>
28 #include <syslog.h>
29 #include <sys/poll.h>
30 #include <sys/socket.h>
31 #include <netinet/in.h>
32 #include <arpa/inet.h>
33 #include <rpc/key_prot.h>
34 #include <rpcsvc/nis.h>
35 #include <rpcsvc/nis_callback.h>
36 #include <bits/libc-lock.h>
38 #include "nis_xdr.h"
39 #include "nis_intern.h"
41 /* Sorry, we are not able to make this threadsafe. Stupid. But some
42 functions doesn't send us a nis_result obj, so we don't have a
43 cookie. Maybe we could use keys for threads ? Have to learn more
44 about pthreads -- kukuk@vt.uni-paderborn.de */
46 static nis_cb *data;
48 __libc_lock_define_initialized (static, callback)
51 #if 0
52 static char *
53 __nis_getpkey(const char *sname)
55 char buf[(strlen (sname) + 1) * 2 + 40];
56 char pkey[HEXKEYBYTES + 1];
57 char *cp, *domain;
58 nis_result *res;
59 unsigned int len = 0;
61 domain = strchr (sname, '.');
62 if (domain == NULL)
63 return NULL;
65 /* Remove prefixing dot */
66 ++domain;
68 cp = stpcpy (buf, "[cname=");
69 cp = stpcpy (cp, sname);
70 cp = stpcpy (cp, ",auth_type=DES],cred.org_dir.");
71 cp = stpcpy (cp, domain);
73 res = nis_list (buf, USE_DGRAM|NO_AUTHINFO|FOLLOW_LINKS|FOLLOW_PATH,
74 NULL, NULL);
76 if (res == NULL)
77 return NULL;
79 if (NIS_RES_STATUS (res) != NIS_SUCCESS)
81 nis_freeresult (res);
82 return NULL;
85 len = ENTRY_LEN(NIS_RES_OBJECT(res), 3);
86 strncpy (pkey, ENTRY_VAL(NIS_RES_OBJECT(res), 3), len);
87 pkey[len] = '\0';
88 cp = strchr (pkey, ':');
89 if (cp != NULL)
90 *cp = '\0';
92 nis_freeresult (res);
94 return strdup (pkey);
96 #endif
98 static void
99 cb_prog_1 (struct svc_req *rqstp, SVCXPRT *transp)
101 union
103 cback_data cbproc_receive_1_arg;
104 nis_error cbproc_error_1_arg;
106 argument;
107 char *result;
108 xdrproc_t xdr_argument, xdr_result;
109 bool_t bool_result;
111 switch (rqstp->rq_proc)
113 case NULLPROC:
114 svc_sendreply (transp, (xdrproc_t) xdr_void, (char *) NULL);
115 return;
117 case CBPROC_RECEIVE:
119 unsigned int i;
121 xdr_argument = (xdrproc_t) xdr_cback_data;
122 xdr_result = (xdrproc_t) xdr_bool;
123 memset (&argument, 0, sizeof (argument));
124 if (!svc_getargs (transp, xdr_argument, (caddr_t) & argument))
126 svcerr_decode (transp);
127 return;
129 bool_result = FALSE;
130 for (i = 0; i < argument.cbproc_receive_1_arg.entries.entries_len; ++i)
132 #define cbproc_entry(a) argument.cbproc_receive_1_arg.entries.entries_val[a]
133 char name[strlen (cbproc_entry(i)->zo_name) +
134 strlen (cbproc_entry(i)->zo_domain) + 3];
135 char *cp;
137 cp = stpcpy (name, cbproc_entry(i)->zo_name);
138 *cp++ = '.';
139 cp = stpcpy (cp, cbproc_entry(i)->zo_domain);
141 if ((data->callback) (name, cbproc_entry(i), data->userdata))
143 bool_result = TRUE;
144 data->nomore = 1;
145 data->result = NIS_SUCCESS;
146 break;
149 result = (char *) &bool_result;
151 break;
152 case CBPROC_FINISH:
153 xdr_argument = (xdrproc_t) xdr_void;
154 xdr_result = (xdrproc_t) xdr_void;
155 memset (&argument, 0, sizeof (argument));
156 if (!svc_getargs (transp, xdr_argument, (caddr_t) & argument))
158 svcerr_decode (transp);
159 return;
161 data->nomore = 1;
162 data->result = NIS_SUCCESS;
163 bool_result = TRUE; /* to make gcc happy, not necessary */
164 result = (char *) &bool_result;
165 break;
166 case CBPROC_ERROR:
167 xdr_argument = (xdrproc_t) _xdr_nis_error;
168 xdr_result = (xdrproc_t) xdr_void;
169 memset (&argument, 0, sizeof (argument));
170 if (!svc_getargs (transp, xdr_argument, (caddr_t) & argument))
172 svcerr_decode (transp);
173 return;
175 data->nomore = 1;
176 data->result = argument.cbproc_error_1_arg;
177 bool_result = TRUE; /* to make gcc happy, not necessary */
178 result = (char *) &bool_result;
179 break;
180 default:
181 svcerr_noproc (transp);
182 return;
184 if (result != NULL && !svc_sendreply (transp, xdr_result, result))
185 svcerr_systemerr (transp);
186 if (!svc_freeargs (transp, xdr_argument, (caddr_t) & argument))
188 fputs (_ ("unable to free arguments"), stderr);
189 exit (1);
191 return;
194 static nis_error
195 internal_nis_do_callback (struct dir_binding *bptr, netobj *cookie,
196 struct nis_cb *cb)
198 struct timeval TIMEOUT = {25, 0};
199 bool_t cb_is_running;
201 data = cb;
203 for (;;)
205 struct pollfd my_pollfd[svc_max_pollfd];
206 int i;
208 if (svc_max_pollfd == 0 && svc_pollfd == NULL)
209 return NIS_CBERROR;
211 for (i = 0; i < svc_max_pollfd; ++i)
213 my_pollfd[i].fd = svc_pollfd[i].fd;
214 my_pollfd[i].events = svc_pollfd[i].events;
215 my_pollfd[i].revents = 0;
218 switch (i = TEMP_FAILURE_RETRY (__poll (my_pollfd, svc_max_pollfd,
219 25*1000)))
221 case -1:
222 return NIS_CBERROR;
223 case 0:
224 /* See if callback 'thread' in the server is still alive. */
225 cb_is_running = FALSE;
226 if (clnt_call (bptr->clnt, NIS_CALLBACK, (xdrproc_t) xdr_netobj,
227 (caddr_t) cookie, (xdrproc_t) xdr_bool,
228 (caddr_t) &cb_is_running, TIMEOUT) != RPC_SUCCESS)
229 cb_is_running = FALSE;
231 if (cb_is_running == FALSE)
233 syslog (LOG_ERR, "NIS+: callback timed out");
234 return NIS_CBERROR;
236 break;
237 default:
238 svc_getreq_poll (my_pollfd, i);
239 if (data->nomore)
240 return data->result;
245 nis_error
246 __nis_do_callback (struct dir_binding *bptr, netobj *cookie,
247 struct nis_cb *cb)
249 nis_error result;
251 __libc_lock_lock (callback);
253 result = internal_nis_do_callback (bptr, cookie, cb);
255 __libc_lock_unlock (callback);
257 return result;
260 struct nis_cb *
261 __nis_create_callback (int (*callback) (const_nis_name, const nis_object *,
262 const void *),
263 const void *userdata, unsigned int flags)
265 struct nis_cb *cb;
266 int sock = RPC_ANYSOCK;
267 struct sockaddr_in sin;
268 socklen_t len = sizeof (struct sockaddr_in);
269 unsigned short port;
270 int nomsg = 0;
272 cb = (struct nis_cb *) calloc (1,
273 sizeof (struct nis_cb) + sizeof (nis_server));
274 if (__builtin_expect (cb == NULL, 0))
275 goto failed;
276 cb->serv = (nis_server *) (cb + 1);
277 cb->serv->name = strdup (nis_local_principal ());
278 if (__builtin_expect (cb->serv->name == NULL, 0))
279 goto failed;
280 cb->serv->ep.ep_val = (endpoint *) calloc (2, sizeof (endpoint));
281 if (__builtin_expect (cb->serv->ep.ep_val == NULL, 0))
282 goto failed;
283 cb->serv->ep.ep_len = 1;
284 cb->serv->ep.ep_val[0].family = strdup ("inet");
285 if (__builtin_expect (cb->serv->ep.ep_val[0].family == NULL, 0))
286 goto failed;
287 cb->callback = callback;
288 cb->userdata = userdata;
290 if ((flags & NO_AUTHINFO) || !key_secretkey_is_set ())
292 cb->serv->key_type = NIS_PK_NONE;
293 cb->serv->pkey.n_bytes = NULL;
294 cb->serv->pkey.n_len = 0;
296 else
298 #if 0
299 if ((cb->serv->pkey.n_bytes = __nis_getpkey (cb->serv->name)) == NULL)
301 cb->serv->pkey.n_len = 0;
302 cb->serv->key_type = NIS_PK_NONE;
304 else
306 cb->serv->key_type = NIS_PK_DH;
307 cb->serv->pkey.n_len = strlen(cb->serv->pkey.n_bytes);
309 #else
310 cb->serv->pkey.n_len =0;
311 cb->serv->pkey.n_bytes = NULL;
312 cb->serv->key_type = NIS_PK_NONE;
313 #endif
316 cb->serv->ep.ep_val[0].proto = strdup ((flags & USE_DGRAM) ? "udp" : "tcp");
317 if (__builtin_expect (cb->serv->ep.ep_val[0].proto == NULL, 0))
318 goto failed;
319 cb->xprt = ((flags & USE_DGRAM)
320 ? svcudp_bufcreate (sock, 100, 8192)
321 : svctcp_create (sock, 100, 8192));
322 if (cb->xprt == NULL)
324 nomsg = 1;
325 goto failed;
327 cb->sock = cb->xprt->xp_sock;
328 if (!svc_register (cb->xprt, CB_PROG, CB_VERS, cb_prog_1, 0))
330 xprt_unregister (cb->xprt);
331 svc_destroy (cb->xprt);
332 xdr_free ((xdrproc_t) _xdr_nis_server, (char *) cb->serv);
333 free (cb);
334 syslog (LOG_ERR, "NIS+: failed to register callback dispatcher");
335 return NULL;
338 if (getsockname (cb->sock, (struct sockaddr *) &sin, &len) == -1)
340 xprt_unregister (cb->xprt);
341 svc_destroy (cb->xprt);
342 xdr_free ((xdrproc_t) _xdr_nis_server, (char *) cb->serv);
343 free (cb);
344 syslog (LOG_ERR, "NIS+: failed to read local socket info");
345 return NULL;
347 port = ntohs (sin.sin_port);
348 get_myaddress (&sin);
350 if (asprintf (&cb->serv->ep.ep_val[0].uaddr, "%s.%d.%d",
351 inet_ntoa (sin.sin_addr), (port & 0xFF00) >> 8, port & 0x00FF)
352 < 0)
353 goto failed;
355 return cb;
357 failed:
358 if (cb)
360 if (cb->xprt)
361 svc_destroy (cb->xprt);
362 xdr_free ((xdrproc_t) _xdr_nis_server, (char *) cb->serv);
363 free (cb);
365 if (!nomsg)
366 syslog (LOG_ERR, "NIS+: out of memory allocating callback");
367 return NULL;
370 nis_error
371 __nis_destroy_callback (struct nis_cb *cb)
373 xprt_unregister (cb->xprt);
374 svc_destroy (cb->xprt);
375 close (cb->sock);
376 xdr_free ((xdrproc_t) _xdr_nis_server, (char *) cb->serv);
377 free (cb);
379 return NIS_SUCCESS;