]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/yppush/yppush_main.c
Xr make_dev(9) from devfs(5).
[FreeBSD/FreeBSD.git] / usr.sbin / yppush / yppush_main.c
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright (c) 1995
5  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Bill Paul.
18  * 4. Neither the name of the author nor the names of any co-contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #include <errno.h>
39 #include <signal.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <strings.h>
44 #include <time.h>
45 #include <unistd.h>
46 #include <sys/socket.h>
47 #include <sys/fcntl.h>
48 #include <sys/wait.h>
49 #include <sys/param.h>
50 #include <rpc/rpc.h>
51 #include <rpc/clnt.h>
52 #include <rpc/pmap_clnt.h>
53 #include <rpcsvc/yp.h>
54 #include <rpcsvc/ypclnt.h>
55 #include "ypxfr_extern.h"
56 #include "yppush_extern.h"
57
58 char *progname = "yppush";
59 int debug = 1;
60 int _rpcpmstart = 0;
61 char *yp_dir = _PATH_YP;
62
63 static char *yppush_mapname = NULL;     /* Map to transfer. */
64 static char *yppush_domain = NULL;      /* Domain in which map resides. */
65 static char *yppush_master = NULL;      /* Master NIS server for said domain. */
66 static int skip_master = 0;             /* Do not attempt to push map to master. */
67 static int verbose = 0;         /* Toggle verbose mode. */
68 static unsigned long yppush_transid = 0;
69 static int yppush_timeout = 80; /* Default timeout. */
70 static int yppush_jobs = 1;             /* Number of allowed concurrent jobs. */
71 static int yppush_running_jobs = 0;     /* Number of currently running jobs. */
72
73 /* Structure for holding information about a running job. */
74 struct jobs {
75         unsigned long tid;
76         int port;
77         ypxfrstat stat;
78         unsigned long prognum;
79         char *server;
80         char *map;
81         int polled;
82         struct jobs *next;
83 };
84
85 static struct jobs *yppush_joblist;     /* Linked list of running jobs. */
86 static int yppush_svc_run(int);
87
88 /*
89  * Local error messages.
90  */
91 static const char *
92 yppusherr_string(int err)
93 {
94         switch (err) {
95         case YPPUSH_TIMEDOUT:
96                 return("transfer or callback timed out");
97         case YPPUSH_YPSERV:
98                 return("failed to contact ypserv");
99         case YPPUSH_NOHOST:
100                 return("no such host");
101         case YPPUSH_PMAP:
102                 return("portmapper failure");
103         default:
104                 return("unknown error code");
105         }
106 }
107
108 /*
109  * Report state of a job.
110  */
111 static int
112 yppush_show_status(ypxfrstat status, unsigned long tid)
113 {
114         struct jobs *job;
115
116         job = yppush_joblist;
117
118         while (job != NULL) {
119                 if (job->tid == tid)
120                         break;
121                 job = job->next;
122         }
123
124         if (job == NULL) {
125                 yp_error("warning: received callback with invalid transaction ID: %lu",
126                          tid);
127                 return (0);
128         }
129
130         if (job->polled) {
131                 yp_error("warning: received callback with duplicate transaction ID: %lu",
132                          tid);
133                 return (0);
134         }
135
136         if (verbose > 1) {
137                 yp_error("checking return status: transaction ID: %lu",
138                                                                 job->tid);
139         }
140
141         if (status != YPXFR_SUCC || verbose) {
142                 yp_error("transfer of map %s to server %s %s",
143                         job->map, job->server, status == YPXFR_SUCC ?
144                         "succeeded" : "failed");
145                 yp_error("status returned by ypxfr: %s", status > YPXFR_AGE ?
146                         yppusherr_string(status) :
147                         ypxfrerr_string(status));
148         }
149
150         job->polled = 1;
151
152         svc_unregister(job->prognum, 1);
153
154         yppush_running_jobs--;
155         return(0);
156 }
157
158 /* Exit routine. */
159 static void
160 yppush_exit(int now)
161 {
162         struct jobs *jptr;
163         int still_pending = 1;
164
165         /* Let all the information trickle in. */
166         while (!now && still_pending) {
167                 jptr = yppush_joblist;
168                 still_pending = 0;
169                 while (jptr) {
170                         if (jptr->polled == 0) {
171                                 still_pending++;
172                                 if (verbose > 1)
173                                         yp_error("%s has not responded",
174                                                   jptr->server);
175                         } else {
176                                 if (verbose > 1)
177                                         yp_error("%s has responded",
178                                                   jptr->server);
179                         }
180                         jptr = jptr->next;
181                 }
182                 if (still_pending) {
183                         if (verbose > 1)
184                                 yp_error("%d transfer%sstill pending",
185                                         still_pending,
186                                         still_pending > 1 ? "s " : " ");
187                         if (yppush_svc_run (YPPUSH_RESPONSE_TIMEOUT) == 0) {
188                                 yp_error("timed out");
189                                 now = 1;
190                         }
191                 } else {
192                         if (verbose)
193                                 yp_error("all transfers complete");
194                         break;
195                 }
196         }
197
198
199         /* All stats collected and reported -- kill all the stragglers. */
200         jptr = yppush_joblist;
201         while (jptr) {
202                 if (!jptr->polled)
203                         yp_error("warning: exiting with transfer \
204 to %s (transid = %lu) still pending", jptr->server, jptr->tid);
205                 svc_unregister(jptr->prognum, 1);
206                 jptr = jptr->next;
207         }
208
209         exit(0);
210 }
211
212 /*
213  * Handler for 'normal' signals.
214  */
215
216 static void
217 handler(int sig)
218 {
219         yppush_exit (1);
220         return;
221 }
222
223 /*
224  * Dispatch loop for callback RPC services.
225  * Return value:
226  *   -1 error
227  *    0 timeout
228  *   >0 request serviced
229  */
230 static int
231 yppush_svc_run(int timeout_secs)
232 {
233         int rc;
234         fd_set readfds;
235         struct timeval timeout;
236
237         timeout.tv_usec = 0;
238         timeout.tv_sec = timeout_secs;
239
240 retry:
241         readfds = svc_fdset;
242         rc = select(svc_maxfd + 1, &readfds, NULL, NULL, &timeout);
243         switch (rc) {
244         case -1:
245                 if (errno == EINTR)
246                         goto retry;
247                 yp_error("select failed: %s", strerror(errno));
248                 break;
249         case 0:
250                 yp_error("select() timed out");
251                 break;
252         default:
253                 svc_getreqset(&readfds);
254                 break;
255         }
256         return rc;
257 }
258
259 /*
260  * RPC service routines for callbacks.
261  */
262 void *
263 yppushproc_null_1_svc(void *argp, struct svc_req *rqstp)
264 {
265         static char * result;
266         /* Do nothing -- RPC conventions call for all a null proc. */
267         return((void *) &result);
268 }
269
270 void *
271 yppushproc_xfrresp_1_svc(yppushresp_xfr *argp, struct svc_req *rqstp)
272 {
273         static char * result;
274         yppush_show_status(argp->status, argp->transid);
275         return((void *) &result);
276 }
277
278 /*
279  * Transmit a YPPROC_XFR request to ypserv.
280  */
281 static int
282 yppush_send_xfr(struct jobs *job)
283 {
284         ypreq_xfr req;
285 /*      ypresp_xfr *resp; */
286         DBT key, data;
287         CLIENT *clnt;
288         struct rpc_err err;
289         struct timeval timeout;
290
291         timeout.tv_usec = 0;
292         timeout.tv_sec = 0;
293
294         /*
295          * The ypreq_xfr structure has a member of type map_parms,
296          * which seems to require the order number of the map.
297          * It isn't actually used at the other end (at least the
298          * FreeBSD ypserv doesn't use it) but we fill it in here
299          * for the sake of completeness.
300          */
301         key.data = "YP_LAST_MODIFIED";
302         key.size = sizeof ("YP_LAST_MODIFIED") - 1;
303
304         if (yp_get_record(yppush_domain, yppush_mapname, &key, &data,
305                           1) != YP_TRUE) {
306                 yp_error("failed to read order number from %s: %s: %s",
307                           yppush_mapname, yperr_string(yp_errno),
308                           strerror(errno));
309                 return(1);
310         }
311
312         /* Fill in the request arguments */
313         req.map_parms.ordernum = atoi(data.data);
314         req.map_parms.domain = yppush_domain;
315         req.map_parms.peer = yppush_master;
316         req.map_parms.map = job->map;
317         req.transid = job->tid;
318         req.prog = job->prognum;
319         req.port = job->port;
320
321         /* Get a handle to the remote ypserv. */
322         if ((clnt = clnt_create(job->server, YPPROG, YPVERS, "udp")) == NULL) {
323                 yp_error("%s: %s",job->server,clnt_spcreateerror("couldn't \
324 create udp handle to NIS server"));
325                 switch (rpc_createerr.cf_stat) {
326                         case RPC_UNKNOWNHOST:
327                                 job->stat = YPPUSH_NOHOST;
328                                 break;
329                         case RPC_PMAPFAILURE:
330                                 job->stat = YPPUSH_PMAP;
331                                 break;
332                         default:
333                                 job->stat = YPPUSH_RPC;
334                                 break;
335                         }
336                 return(1);
337         }
338
339         /*
340          * Reduce timeout to nothing since we may not
341          * get a response from ypserv and we don't want to block.
342          */
343         if (clnt_control(clnt, CLSET_TIMEOUT, (char *)&timeout) == FALSE)
344                 yp_error("failed to set timeout on ypproc_xfr call");
345
346         /* Invoke the ypproc_xfr service. */
347         if (ypproc_xfr_2(&req, clnt) == NULL) {
348                 clnt_geterr(clnt, &err);
349                 if (err.re_status != RPC_SUCCESS &&
350                     err.re_status != RPC_TIMEDOUT) {
351                         yp_error("%s: %s", job->server, clnt_sperror(clnt,
352                                                         "yp_xfr failed"));
353                         job->stat = YPPUSH_YPSERV;
354                         clnt_destroy(clnt);
355                         return(1);
356                 }
357         }
358
359         clnt_destroy(clnt);
360
361         return(0);
362 }
363
364 /*
365  * Main driver function. Register the callback service, add the transfer
366  * request to the internal list, send the YPPROC_XFR request to ypserv
367  * do other magic things.
368  */
369 static int
370 yp_push(char *server, char *map, unsigned long tid)
371 {
372         unsigned long prognum;
373         int sock = RPC_ANYSOCK;
374         SVCXPRT *xprt;
375         struct jobs *job;
376
377         /* Register the job in our linked list of jobs. */
378
379         /* First allocate job structure */
380         if ((job = (struct jobs *)malloc(sizeof (struct jobs))) == NULL) {
381                 yp_error("malloc failed");
382                 yppush_exit (1);
383         }
384
385         /*
386          * Register the callback service on the first free transient
387          * program number.
388          */
389         xprt = svcudp_create(sock);
390         for (prognum = 0x40000000; prognum < 0x5FFFFFFF; prognum++) {
391                 if (svc_register(xprt, prognum, 1,
392                     yppush_xfrrespprog_1, IPPROTO_UDP) == TRUE)
393                         break;
394         }
395         if (prognum == 0x5FFFFFFF) {
396                 yp_error ("can't register yppush_xfrrespprog_1");
397                 yppush_exit (1);
398         }
399
400         /* Initialize the info for this job. */
401         job->stat = 0;
402         job->tid = tid;
403         job->port = xprt->xp_port;
404         job->server = strdup(server);
405         job->map = strdup(map);
406         job->prognum = prognum;
407         job->polled = 0;
408         job->next = yppush_joblist;
409         yppush_joblist = job;
410
411         if (verbose) {
412                 yp_error("initiating transfer: %s -> %s (transid = %lu)",
413                         yppush_mapname, server, tid);
414         }
415
416         /*
417          * Send the XFR request to ypserv. We don't have to wait for
418          * a response here since we handle them asynchronously.
419          */
420
421         if (yppush_send_xfr(job)){
422                 /* Transfer request blew up. */
423                 yppush_show_status(job->stat ? job->stat :
424                         YPPUSH_YPSERV,job->tid);
425         } else {
426                 if (verbose > 1)
427                         yp_error("%s has been called", server);
428         }
429
430         return(0);
431 }
432
433 /*
434  * Called for each entry in the ypservers map from yp_get_map(), which
435  * is our private yp_all() routine.
436  */
437 static int
438 yppush_foreach(int status, char *key, int keylen, char *val, int vallen,
439     char *data)
440 {
441         char server[YPMAXRECORD + 2];
442
443         if (status != YP_TRUE)
444                 return (status);
445
446         snprintf(server, sizeof(server), "%.*s", vallen, val);
447         if (skip_master && strcasecmp(server, yppush_master) == 0)
448                 return (0);
449
450         /*
451          * Restrict the number of concurrent jobs: if yppush_jobs number
452          * of jobs have already been dispatched and are still pending,
453          * wait for one of them to finish so we can reuse its slot.
454          */
455         while (yppush_running_jobs >= yppush_jobs && (yppush_svc_run (yppush_timeout) > 0))
456                 ;
457
458         /* Cleared for takeoff: set everything in motion. */
459         if (yp_push(server, yppush_mapname, yppush_transid))
460                 return(yp_errno);
461
462         /* Bump the job counter and transaction ID. */
463         yppush_running_jobs++;
464         yppush_transid++;
465         return (0);
466 }
467
468 static void
469 usage()
470 {
471         fprintf (stderr, "%s\n%s\n",
472         "usage: yppush [-d domain] [-t timeout] [-j #parallel jobs] [-h host]",
473         "              [-p path] mapname");
474         exit(1);
475 }
476
477 /*
478  * Entry point. (About time!)
479  */
480 int
481 main(int argc, char *argv[])
482 {
483         int ch;
484         DBT key, data;
485         char myname[MAXHOSTNAMELEN];
486         struct hostlist {
487                 char *name;
488                 struct hostlist *next;
489         };
490         struct hostlist *yppush_hostlist = NULL;
491         struct hostlist *tmp;
492
493         while ((ch = getopt(argc, argv, "d:j:p:h:t:v")) != -1) {
494                 switch (ch) {
495                 case 'd':
496                         yppush_domain = optarg;
497                         break;
498                 case 'j':
499                         yppush_jobs = atoi(optarg);
500                         if (yppush_jobs <= 0)
501                                 yppush_jobs = 1;
502                         break;
503                 case 'p':
504                         yp_dir = optarg;
505                         break;
506                 case 'h': /* we can handle multiple hosts */
507                         if ((tmp = (struct hostlist *)malloc(sizeof(struct hostlist))) == NULL) {
508                                 yp_error("malloc failed");
509                                 yppush_exit(1);
510                         }
511                         tmp->name = strdup(optarg);
512                         tmp->next = yppush_hostlist;
513                         yppush_hostlist = tmp;
514                         break;
515                 case 't':
516                         yppush_timeout = atoi(optarg);
517                         break;
518                 case 'v':
519                         verbose++;
520                         break;
521                 default:
522                         usage();
523                         break;
524                 }
525         }
526
527         argc -= optind;
528         argv += optind;
529
530         yppush_mapname = argv[0];
531
532         if (yppush_mapname == NULL) {
533         /* "No guts, no glory." */
534                 usage();
535         }
536
537         /*
538          * If no domain was specified, try to find the default
539          * domain. If we can't find that, we're doomed and must bail.
540          */
541         if (yppush_domain == NULL) {
542                 char *yppush_check_domain;
543                 if (!yp_get_default_domain(&yppush_check_domain) &&
544                         !_yp_check(&yppush_check_domain)) {
545                         yp_error("no domain specified and NIS not running");
546                         usage();
547                 } else
548                         yp_get_default_domain(&yppush_domain);
549         }
550
551         /* Check to see that we are the master for this map. */
552
553         if (gethostname ((char *)&myname, sizeof(myname))) {
554                 yp_error("failed to get name of local host: %s",
555                         strerror(errno));
556                 yppush_exit(1);
557         }
558
559         key.data = "YP_MASTER_NAME";
560         key.size = sizeof("YP_MASTER_NAME") - 1;
561
562         if (yp_get_record(yppush_domain, yppush_mapname,
563                           &key, &data, 1) != YP_TRUE) {
564                 yp_error("couldn't open %s map: %s", yppush_mapname,
565                          strerror(errno));
566                 yppush_exit(1);
567         }
568
569         if (strncasecmp(myname, data.data, data.size) == 0) {
570                 /* I am master server, and no explicit host list was
571                    specified: do not push map to myself -- this will
572                    fail with YPPUSH_AGE anyway. */
573                 if (yppush_hostlist == NULL)
574                         skip_master = 1;
575         } else {
576                 yp_error("warning: this host is not the master for %s",
577                                                         yppush_mapname);
578 #ifdef NITPICKY
579                 yppush_exit(1);
580 #endif
581         }
582
583         yppush_master = malloc(data.size + 1);
584         strncpy(yppush_master, data.data, data.size);
585         yppush_master[data.size] = '\0';
586
587         /* Install some handy handlers. */
588         signal(SIGTERM, handler);
589         signal(SIGINT, handler);
590
591         /* set initial transaction ID */
592         yppush_transid = time((time_t *)NULL);
593
594         if (yppush_hostlist) {
595         /*
596          * Host list was specified on the command line:
597          * kick off the transfers by hand.
598          */
599                 tmp = yppush_hostlist;
600                 while (tmp) {
601                         yppush_foreach(YP_TRUE, NULL, 0, tmp->name,
602                             strlen(tmp->name), NULL);
603                         tmp = tmp->next;
604                 }
605         } else {
606         /*
607          * Do a yp_all() on the ypservers map and initiate a ypxfr
608          * for each one.
609          */
610                 ypxfr_get_map("ypservers", yppush_domain,
611                               "localhost", yppush_foreach);
612         }
613
614         if (verbose > 1)
615                 yp_error("all jobs dispatched");
616
617         /* All done -- normal exit. */
618         yppush_exit(0);
619
620         /* Just in case. */
621         exit(0);
622 }