Home | History | Annotate | Line # | Download | only in ypxfr
ypxfr.c revision 1.3
      1  1.3    lukem /*	$NetBSD: ypxfr.c,v 1.3 1997/03/22 03:32:40 lukem Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*
      4  1.1  thorpej  * Copyright (c) 1994 Mats O Jansson <moj (at) stacken.kth.se>
      5  1.1  thorpej  * All rights reserved.
      6  1.1  thorpej  *
      7  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
      8  1.1  thorpej  * modification, are permitted provided that the following conditions
      9  1.1  thorpej  * are met:
     10  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     11  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     12  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     15  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     16  1.1  thorpej  *    must display the following acknowledgement:
     17  1.1  thorpej  *	This product includes software developed by Mats O Jansson
     18  1.1  thorpej  * 4. The name of the author may not be used to endorse or promote products
     19  1.1  thorpej  *    derived from this software without specific prior written permission.
     20  1.1  thorpej  *
     21  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     22  1.1  thorpej  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     23  1.1  thorpej  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
     25  1.1  thorpej  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1  thorpej  * SUCH DAMAGE.
     32  1.1  thorpej  */
     33  1.1  thorpej 
     34  1.1  thorpej #include <sys/types.h>
     35  1.1  thorpej #include <sys/stat.h>
     36  1.1  thorpej #include <sys/socket.h>
     37  1.1  thorpej 
     38  1.1  thorpej #include <netinet/in.h>
     39  1.1  thorpej #include <arpa/inet.h>
     40  1.1  thorpej 
     41  1.1  thorpej #include <fcntl.h>
     42  1.1  thorpej #include <netdb.h>
     43  1.1  thorpej #include <string.h>
     44  1.1  thorpej #include <stdio.h>
     45  1.1  thorpej #include <stdlib.h>
     46  1.1  thorpej #include <unistd.h>
     47  1.1  thorpej 
     48  1.1  thorpej #include <rpc/rpc.h>
     49  1.1  thorpej #include <rpc/xdr.h>
     50  1.1  thorpej #include <rpcsvc/yp_prot.h>
     51  1.1  thorpej #include <rpcsvc/ypclnt.h>
     52  1.1  thorpej 
     53  1.1  thorpej #include "yplib_host.h"
     54  1.1  thorpej #include "yplog.h"
     55  1.1  thorpej #include "ypdb.h"
     56  1.1  thorpej #include "ypdef.h"
     57  1.1  thorpej 
     58  1.1  thorpej extern	char *__progname;		/* from crt0.o */
     59  1.1  thorpej extern	char *optarg;
     60  1.1  thorpej extern	int optind;
     61  1.1  thorpej 
     62  1.1  thorpej DBM	*db;
     63  1.1  thorpej 
     64  1.1  thorpej static	int ypxfr_foreach __P((int, char *, int, char *, int, int *));
     65  1.1  thorpej 
     66  1.1  thorpej int	get_local_ordernum __P((char *, char *, u_int *));
     67  1.1  thorpej int	get_remote_ordernum __P((CLIENT *, char *, char *, u_int, u_int *));
     68  1.1  thorpej void	get_map __P((CLIENT *, char *, char *, struct ypall_callback *));
     69  1.1  thorpej DBM	*create_db __P((char *, char *, char *));
     70  1.1  thorpej int	install_db __P((char *, char *, char *));
     71  1.1  thorpej int	unlink_db __P((char *, char *, char *));
     72  1.1  thorpej int	add_order __P((DBM *, u_int));
     73  1.1  thorpej int	add_master __P((CLIENT *, char *, char *, DBM *));
     74  1.1  thorpej int	add_interdomain __P((CLIENT *, char *, char *, DBM *));
     75  1.1  thorpej int	add_secure __P((CLIENT *, char *, char *, DBM *));
     76  1.1  thorpej int	send_clear __P((CLIENT *));
     77  1.1  thorpej int	send_reply __P((CLIENT *, int, int));
     78  1.1  thorpej 
     79  1.1  thorpej int
     80  1.1  thorpej main(argc,argv)
     81  1.1  thorpej 	int argc;
     82  1.1  thorpej 	char **argv;
     83  1.1  thorpej {
     84  1.1  thorpej 	int need_usage = 0, cflag = 0, fflag = 0, Cflag = 0;
     85  1.1  thorpej 	int ch;
     86  1.1  thorpej 	char *domain;
     87  1.1  thorpej 	char *host = NULL;
     88  1.1  thorpej 	char *srcdomain = NULL;
     89  1.1  thorpej 	char *tid = NULL;
     90  1.1  thorpej 	char *prog = NULL;
     91  1.1  thorpej 	char *ipadd = NULL;
     92  1.1  thorpej 	char *port = NULL;
     93  1.1  thorpej 	char *map = NULL;
     94  1.1  thorpej 	u_int ordernum, new_ordernum;
     95  1.1  thorpej 	struct ypall_callback callback;
     96  1.1  thorpej 	CLIENT *client;
     97  1.1  thorpej 	char mapname[] = "ypdbXXXXXX";
     98  1.1  thorpej 	int status, xfr_status;
     99  1.1  thorpej 
    100  1.1  thorpej 	status = YPPUSH_SUCC;
    101  1.1  thorpej 	client = NULL;
    102  1.1  thorpej 
    103  1.1  thorpej 	if (yp_get_default_domain(&domain))
    104  1.1  thorpej 		errx(1, "can't get YP domain name");
    105  1.1  thorpej 
    106  1.1  thorpej 	while ((ch = getopt(argc, argv, "cd:fh:s:C:")) != -1) {
    107  1.1  thorpej 		switch (ch) {
    108  1.1  thorpej 		case 'c':
    109  1.1  thorpej 			cflag = 1;
    110  1.1  thorpej 			break;
    111  1.1  thorpej 
    112  1.1  thorpej 		case 'd':
    113  1.1  thorpej 			domain = optarg;
    114  1.1  thorpej 			break;
    115  1.1  thorpej 
    116  1.1  thorpej 		case 'f':
    117  1.1  thorpej 			fflag = 1;
    118  1.1  thorpej 			break;
    119  1.1  thorpej 
    120  1.1  thorpej 		case 'h':
    121  1.1  thorpej 			host = optarg;
    122  1.1  thorpej 			break;
    123  1.1  thorpej 
    124  1.1  thorpej 		case 's':
    125  1.1  thorpej 			srcdomain = optarg;
    126  1.1  thorpej 			break;
    127  1.1  thorpej 
    128  1.1  thorpej 		case 'C':
    129  1.2    chuck 			if (optind + 3 >= argc) {
    130  1.2    chuck 				need_usage = 1;
    131  1.2    chuck 				optind = argc;
    132  1.2    chuck 				break;
    133  1.2    chuck 			}
    134  1.1  thorpej 			Cflag = 1;
    135  1.1  thorpej 			tid = optarg;
    136  1.1  thorpej 			prog = argv[optind++];
    137  1.1  thorpej 			ipadd = argv[optind++];
    138  1.1  thorpej 			port = argv[optind++];
    139  1.1  thorpej 			break;
    140  1.1  thorpej 
    141  1.1  thorpej 		default:
    142  1.1  thorpej 			need_usage = 1;
    143  1.1  thorpej 		}
    144  1.1  thorpej 	}
    145  1.1  thorpej 	argc -= optind; argv += optind;
    146  1.1  thorpej 
    147  1.1  thorpej 	if (argc != 1)
    148  1.1  thorpej 		need_usage = 1;
    149  1.1  thorpej 
    150  1.1  thorpej 	map = argv[0];
    151  1.1  thorpej 
    152  1.1  thorpej 	if (need_usage) {
    153  1.1  thorpej 		status = YPPUSH_BADARGS;
    154  1.1  thorpej 		fprintf(stderr, "usage: %s [-cf] [-d domain] [-h host] %s\n",
    155  1.1  thorpej 		   __progname, "[-s domain] [-C tid prog ipadd port] mapname");
    156  1.1  thorpej 		goto punt;
    157  1.1  thorpej 	}
    158  1.1  thorpej 
    159  1.1  thorpej 	ypopenlog();
    160  1.1  thorpej 
    161  1.1  thorpej 	yplog("ypxfr: Arguments:");
    162  1.1  thorpej 	yplog("YP clear to local: %s", (cflag) ? "no" : "yes");
    163  1.1  thorpej 	yplog("   Force transfer: %s", (fflag) ? "yes" : "no");
    164  1.1  thorpej 	yplog("           domain: %s", domain);
    165  1.1  thorpej 	yplog("             host: %s", host);
    166  1.1  thorpej 	yplog("    source domain: %s", srcdomain);
    167  1.1  thorpej 	yplog("          transid: %s", tid);
    168  1.1  thorpej 	yplog("             prog: %s", prog);
    169  1.1  thorpej 	yplog("             port: %s", port);
    170  1.1  thorpej 	yplog("            ipadd: %s", ipadd);
    171  1.1  thorpej 	yplog("              map: %s", map);
    172  1.1  thorpej 
    173  1.1  thorpej 	if (fflag != 0)
    174  1.1  thorpej 		ordernum = 0;
    175  1.1  thorpej 	else {
    176  1.1  thorpej 		status = get_local_ordernum(domain, map, &ordernum);
    177  1.1  thorpej 		if (status < 0)
    178  1.1  thorpej 			goto punt;
    179  1.1  thorpej 	}
    180  1.1  thorpej 
    181  1.1  thorpej         yplog("Get Master");
    182  1.1  thorpej 
    183  1.1  thorpej 	if (host == NULL) {
    184  1.1  thorpej 		if (srcdomain == NULL)
    185  1.1  thorpej 			status = yp_master(domain,map,&host);
    186  1.1  thorpej 	        else
    187  1.1  thorpej 			status = yp_master(srcdomain,map,&host);
    188  1.1  thorpej 
    189  1.1  thorpej 		if (status == 0)
    190  1.1  thorpej 			status = YPPUSH_SUCC;
    191  1.1  thorpej 		else {
    192  1.1  thorpej 			status = -status;
    193  1.1  thorpej 			goto punt;
    194  1.1  thorpej 		}
    195  1.1  thorpej 	}
    196  1.1  thorpej 
    197  1.1  thorpej         yplog("Connect host: %s", host);
    198  1.1  thorpej 
    199  1.1  thorpej 	client = yp_bind_host(host,YPPROG,YPVERS,0,1);
    200  1.1  thorpej 
    201  1.1  thorpej 	status = get_remote_ordernum(client,domain,map,
    202  1.1  thorpej 	    ordernum,&new_ordernum);
    203  1.1  thorpej 
    204  1.1  thorpej 
    205  1.1  thorpej 	if (status == YPPUSH_SUCC) {
    206  1.1  thorpej 		/* Create temporary db */
    207  1.1  thorpej 		mktemp(mapname);
    208  1.1  thorpej 		db = create_db(domain,map,mapname);
    209  1.1  thorpej 		if (db == NULL)
    210  1.1  thorpej 			status = YPPUSH_DBM;
    211  1.1  thorpej 
    212  1.1  thorpej 	  	/* Add ORDER */
    213  1.1  thorpej 		if (status > 0)
    214  1.1  thorpej 			status = add_order(db, new_ordernum);
    215  1.1  thorpej 
    216  1.1  thorpej 		/* Add MASTER */
    217  1.1  thorpej 		if (status > 0)
    218  1.1  thorpej 			status = add_master(client, domain, map, db);
    219  1.1  thorpej 
    220  1.1  thorpej 	        /* Add INTERDOMAIN */
    221  1.1  thorpej 		if (status > 0)
    222  1.1  thorpej 			status = add_interdomain(client, domain, map, db);
    223  1.1  thorpej 
    224  1.1  thorpej 	        /* Add SECURE */
    225  1.1  thorpej 		if (status > 0)
    226  1.1  thorpej 			status = add_secure(client, domain, map, db);
    227  1.1  thorpej 
    228  1.1  thorpej 		if (status > 0) {
    229  1.1  thorpej 			callback.foreach = (int(*)())ypxfr_foreach;
    230  1.1  thorpej 			get_map(client, domain, map, &callback);
    231  1.1  thorpej 		}
    232  1.1  thorpej 
    233  1.1  thorpej 		/* Close db */
    234  1.1  thorpej 		if (db != NULL)
    235  1.1  thorpej 			ypdb_close(db);
    236  1.1  thorpej 
    237  1.1  thorpej 		/* Rename db */
    238  1.1  thorpej 		if (status > 0)
    239  1.1  thorpej 			status = install_db(domain, map, mapname);
    240  1.1  thorpej 		else
    241  1.1  thorpej 			status = unlink_db(domain, map, mapname);
    242  1.1  thorpej 	}
    243  1.1  thorpej 
    244  1.1  thorpej  punt:
    245  1.1  thorpej 	xfr_status = status;
    246  1.1  thorpej 
    247  1.1  thorpej 	if (client != NULL)
    248  1.1  thorpej 		clnt_destroy(client);
    249  1.1  thorpej 
    250  1.1  thorpej 	/* YP_CLEAR */
    251  1.1  thorpej 	if (!cflag) {
    252  1.1  thorpej 		client = yp_bind_local(YPPROG, YPVERS);
    253  1.1  thorpej 		status = send_clear(client);
    254  1.1  thorpej 		clnt_destroy(client);
    255  1.1  thorpej 	}
    256  1.1  thorpej 
    257  1.1  thorpej 	if (Cflag > 0) {
    258  1.1  thorpej 		/* Send Response */
    259  1.1  thorpej 		client = yp_bind_host(ipadd, atoi(prog), 1, atoi(port), 0);
    260  1.1  thorpej 		status = send_reply(client, xfr_status, atoi(tid));
    261  1.1  thorpej 		clnt_destroy(client);
    262  1.1  thorpej 	}
    263  1.1  thorpej 
    264  1.1  thorpej 	exit (0);
    265  1.1  thorpej }
    266  1.1  thorpej 
    267  1.1  thorpej static int
    268  1.1  thorpej ypxfr_foreach(status, keystr, keylen, valstr, vallen, data)
    269  1.1  thorpej 	int status;
    270  1.1  thorpej 	char *keystr;
    271  1.1  thorpej 	int keylen;
    272  1.1  thorpej 	char *valstr;
    273  1.1  thorpej 	int vallen;
    274  1.1  thorpej 	int *data;
    275  1.1  thorpej {
    276  1.1  thorpej 	datum key, val;
    277  1.1  thorpej 
    278  1.1  thorpej 	if (status == YP_NOMORE)
    279  1.1  thorpej 		return (0);
    280  1.1  thorpej 
    281  1.1  thorpej 	keystr[keylen] = '\0';
    282  1.1  thorpej 	valstr[vallen] = '\0';
    283  1.1  thorpej 
    284  1.1  thorpej 	key.dptr = keystr;
    285  1.1  thorpej 	key.dsize = strlen(keystr);
    286  1.1  thorpej 
    287  1.1  thorpej 	val.dptr = valstr;
    288  1.1  thorpej 	val.dsize = strlen(valstr);
    289  1.1  thorpej 
    290  1.1  thorpej 	ypdb_store(db, key, val, YPDB_INSERT);
    291  1.1  thorpej 
    292  1.1  thorpej 	return (0);
    293  1.1  thorpej }
    294  1.1  thorpej 
    295  1.1  thorpej int
    296  1.1  thorpej get_local_ordernum(domain, map, lordernum)
    297  1.1  thorpej 	char *domain, *map;
    298  1.1  thorpej 	u_int *lordernum;
    299  1.1  thorpej {
    300  1.1  thorpej 	char map_path[1024];
    301  1.1  thorpej 	char order_key[] = YP_LAST_KEY;
    302  1.1  thorpej 	char order[MAX_LAST_LEN+1];
    303  1.1  thorpej 	struct stat finfo;
    304  1.1  thorpej 	DBM *db;
    305  1.1  thorpej 	datum k,v;
    306  1.1  thorpej 	int status;
    307  1.1  thorpej 
    308  1.1  thorpej 	status = YPPUSH_SUCC;
    309  1.1  thorpej 
    310  1.1  thorpej 	snprintf(map_path, sizeof(map_path), "%s/%s", YP_DB_PATH, domain);
    311  1.1  thorpej 	map_path[sizeof(map_path) - 1] = '\0';
    312  1.1  thorpej 
    313  1.1  thorpej 	/* Make sure we serve the domain. */
    314  1.1  thorpej 	if ((stat(map_path, &finfo)) != 0 ||
    315  1.1  thorpej 	    (S_ISDIR(finfo.st_mode) == 0)) {
    316  1.1  thorpej 		warnx("domain `%s' not found locally");
    317  1.1  thorpej 		status = YPPUSH_NODOM;
    318  1.1  thorpej 		goto out;
    319  1.1  thorpej 	}
    320  1.1  thorpej 
    321  1.1  thorpej 	/* Make sure we serve the map. */
    322  1.1  thorpej 	snprintf(map_path, sizeof(map_path), "%s/%s/%s%s",
    323  1.1  thorpej 	    YP_DB_PATH, domain, map, YPDB_SUFFIX);
    324  1.1  thorpej 	map_path[sizeof(map_path) - 1] = '\0';
    325  1.1  thorpej 	if (stat(map_path, &finfo) != 0) {
    326  1.1  thorpej 		status = YPPUSH_NOMAP;
    327  1.1  thorpej 		goto out;
    328  1.1  thorpej 	}
    329  1.1  thorpej 
    330  1.1  thorpej 	/* Open the map file. */
    331  1.1  thorpej 	snprintf(map_path, sizeof(map_path), "%s/%s/%s",
    332  1.1  thorpej 	    YP_DB_PATH, domain, map);
    333  1.1  thorpej 	map_path[sizeof(map_path) - 1] = '\0';
    334  1.1  thorpej 	db = ypdb_open(map_path, O_RDONLY, 0444);
    335  1.1  thorpej 	if (db == NULL) {
    336  1.1  thorpej 		status = YPPUSH_DBM;
    337  1.1  thorpej 		goto out;
    338  1.1  thorpej 	}
    339  1.1  thorpej 
    340  1.1  thorpej 	k.dptr = (char *)&order_key;
    341  1.1  thorpej 	k.dsize = YP_LAST_LEN;
    342  1.1  thorpej 
    343  1.1  thorpej 	v = ypdb_fetch(db, k);
    344  1.1  thorpej 	ypdb_close(db);
    345  1.1  thorpej 
    346  1.1  thorpej 	if (v.dptr == NULL)
    347  1.1  thorpej 		*lordernum = 0;
    348  1.1  thorpej 	else {
    349  1.1  thorpej 		strncpy(order, v.dptr, v.dsize);
    350  1.1  thorpej 		order[v.dsize] = '\0';
    351  1.1  thorpej 		*lordernum = (u_int)atoi((char *)&order);
    352  1.1  thorpej 	}
    353  1.1  thorpej 
    354  1.1  thorpej  out:
    355  1.1  thorpej 	if ((status == YPPUSH_NOMAP) || (status == YPPUSH_DBM)) {
    356  1.1  thorpej 		*lordernum = 0;
    357  1.1  thorpej 		status = YPPUSH_SUCC;
    358  1.1  thorpej 	}
    359  1.1  thorpej 
    360  1.1  thorpej 	return (status);
    361  1.1  thorpej }
    362  1.1  thorpej 
    363  1.1  thorpej int
    364  1.1  thorpej get_remote_ordernum(client, domain, map, lordernum, rordernum)
    365  1.1  thorpej 	CLIENT *client;
    366  1.1  thorpej 	char *domain, *map;
    367  1.1  thorpej 	u_int lordernum, *rordernum;
    368  1.1  thorpej {
    369  1.1  thorpej 	int status;
    370  1.1  thorpej 
    371  1.1  thorpej 	status = yp_order_host(client, domain, map, (int *)rordernum);
    372  1.1  thorpej 
    373  1.1  thorpej 	if (status == 0)
    374  1.1  thorpej 		if (*rordernum <= lordernum)
    375  1.1  thorpej 			status = YPPUSH_AGE;
    376  1.1  thorpej 		else
    377  1.1  thorpej 			status = YPPUSH_SUCC;
    378  1.1  thorpej 
    379  1.1  thorpej 	return status;
    380  1.1  thorpej }
    381  1.1  thorpej 
    382  1.1  thorpej void
    383  1.1  thorpej get_map(client, domain, map, incallback)
    384  1.1  thorpej 	CLIENT *client;
    385  1.1  thorpej 	char *domain, *map;
    386  1.1  thorpej 	struct ypall_callback *incallback;
    387  1.1  thorpej {
    388  1.1  thorpej 
    389  1.1  thorpej 	(void)yp_all_host(client, domain, map, incallback);
    390  1.1  thorpej }
    391  1.1  thorpej 
    392  1.1  thorpej DBM *
    393  1.1  thorpej create_db(domain, map, temp_map)
    394  1.1  thorpej 	char *domain, *map, *temp_map;
    395  1.1  thorpej {
    396  1.1  thorpej 	char db_temp[255];
    397  1.1  thorpej 	DBM *db;
    398  1.1  thorpej 
    399  1.1  thorpej 	snprintf(db_temp, sizeof(db_temp), "%s/%s/%s",
    400  1.1  thorpej 	    YP_DB_PATH, domain, temp_map);
    401  1.1  thorpej 	db_temp[sizeof(db_temp) - 1] = '\0';
    402  1.1  thorpej 
    403  1.3    lukem 	db = ypdb_open(db_temp, O_RDWR|O_CREAT|O_EXCL, 0444);
    404  1.1  thorpej 
    405  1.1  thorpej 	return db;
    406  1.1  thorpej }
    407  1.1  thorpej 
    408  1.1  thorpej int
    409  1.1  thorpej install_db(domain,map,temp_map)
    410  1.1  thorpej 	char *domain, *map, *temp_map;
    411  1.1  thorpej {
    412  1.1  thorpej 	char db_name[255], db_temp[255];
    413  1.1  thorpej 
    414  1.1  thorpej 	snprintf(db_name, sizeof(db_name), "%s/%s/%s%s",
    415  1.1  thorpej 	    YP_DB_PATH, domain, map, YPDB_SUFFIX);
    416  1.1  thorpej 	db_name[sizeof(db_name) - 1] = '\0';
    417  1.1  thorpej 
    418  1.1  thorpej 	snprintf(db_temp, sizeof(db_temp), "%s/%s/%s%s",
    419  1.1  thorpej 	    YP_DB_PATH, domain, temp_map, YPDB_SUFFIX);
    420  1.1  thorpej 	db_temp[sizeof(db_temp) - 1] = '\0';
    421  1.1  thorpej 
    422  1.1  thorpej 	if (rename(db_temp, db_name)) {
    423  1.1  thorpej 		warn("can't rename `%s' -> `%s'", db_temp, db_name);
    424  1.1  thorpej 		return YPPUSH_YPERR;
    425  1.1  thorpej 	}
    426  1.1  thorpej 
    427  1.1  thorpej 	return YPPUSH_SUCC;
    428  1.1  thorpej }
    429  1.1  thorpej 
    430  1.1  thorpej int
    431  1.1  thorpej unlink_db(domain, map, temp_map)
    432  1.1  thorpej 	char *domain, *map, *temp_map;
    433  1.1  thorpej {
    434  1.1  thorpej 	char db_temp[255];
    435  1.1  thorpej 
    436  1.1  thorpej 	snprintf(db_temp, sizeof(db_temp), "%s/%s/%s%s",
    437  1.1  thorpej 	    YP_DB_PATH, domain, temp_map, YPDB_SUFFIX);
    438  1.1  thorpej 	db_temp[sizeof(db_temp) - 1] = '\0';
    439  1.1  thorpej 
    440  1.1  thorpej 	if (unlink(db_temp)) {
    441  1.1  thorpej 		warn("can't unlink `%s'", db_temp);
    442  1.1  thorpej 		return YPPUSH_YPERR;
    443  1.1  thorpej 	}
    444  1.1  thorpej 
    445  1.1  thorpej 	return YPPUSH_SUCC;
    446  1.1  thorpej }
    447  1.1  thorpej 
    448  1.1  thorpej int
    449  1.1  thorpej add_order(db, ordernum)
    450  1.1  thorpej 	DBM *db;
    451  1.1  thorpej 	u_int ordernum;
    452  1.1  thorpej {
    453  1.1  thorpej 	char datestr[11];
    454  1.1  thorpej 	datum key, val;
    455  1.1  thorpej 	char keystr[] = YP_LAST_KEY;
    456  1.1  thorpej 	int status;
    457  1.1  thorpej 
    458  1.1  thorpej 	snprintf(datestr, sizeof(datestr), "%010d", ordernum);
    459  1.1  thorpej 	datestr[sizeof(datestr) - 1] = '\0';
    460  1.1  thorpej 
    461  1.1  thorpej 	key.dptr = keystr;
    462  1.1  thorpej 	key.dsize = strlen(keystr);
    463  1.1  thorpej 
    464  1.1  thorpej 	val.dptr = datestr;
    465  1.1  thorpej 	val.dsize = strlen(datestr);
    466  1.1  thorpej 
    467  1.1  thorpej 	status = ypdb_store(db, key, val, YPDB_INSERT);
    468  1.1  thorpej 	if(status >= 0)
    469  1.1  thorpej 		status = YPPUSH_SUCC;
    470  1.1  thorpej 	else
    471  1.1  thorpej 		status = YPPUSH_DBM;
    472  1.1  thorpej 
    473  1.1  thorpej 	return (status);
    474  1.1  thorpej }
    475  1.1  thorpej 
    476  1.1  thorpej int
    477  1.1  thorpej add_master(client, domain, map, db)
    478  1.1  thorpej 	CLIENT *client;
    479  1.1  thorpej 	char *domain, *map;
    480  1.1  thorpej 	DBM *db;
    481  1.1  thorpej {
    482  1.1  thorpej 	char keystr[] = YP_MASTER_KEY;
    483  1.1  thorpej 	char *master;
    484  1.1  thorpej 	int status;
    485  1.1  thorpej 	datum key,val;
    486  1.1  thorpej 
    487  1.1  thorpej 	master = NULL;
    488  1.1  thorpej 
    489  1.1  thorpej 	/* Get MASTER */
    490  1.1  thorpej 	status = yp_master_host(client, domain, map, &master);
    491  1.1  thorpej 
    492  1.1  thorpej 	if (master != NULL) {
    493  1.1  thorpej 		key.dptr = keystr;
    494  1.1  thorpej 		key.dsize = strlen(keystr);
    495  1.1  thorpej 
    496  1.1  thorpej 		val.dptr = master;
    497  1.1  thorpej 		val.dsize = strlen(master);
    498  1.1  thorpej 
    499  1.1  thorpej 		status = ypdb_store(db, key, val, YPDB_INSERT);
    500  1.1  thorpej 		if (status >= 0)
    501  1.1  thorpej 			status = YPPUSH_SUCC;
    502  1.1  thorpej 		else
    503  1.1  thorpej 			status = YPPUSH_DBM;
    504  1.1  thorpej 	}
    505  1.1  thorpej 
    506  1.1  thorpej 	return status;
    507  1.1  thorpej }
    508  1.1  thorpej 
    509  1.1  thorpej int
    510  1.1  thorpej add_interdomain(client, domain, map, db)
    511  1.1  thorpej 	CLIENT *client;
    512  1.1  thorpej 	char *domain, *map;
    513  1.1  thorpej 	DBM *db;
    514  1.1  thorpej {
    515  1.1  thorpej 	char keystr[] = YP_INTERDOMAIN_KEY;
    516  1.1  thorpej 	char *value;
    517  1.1  thorpej 	int vallen;
    518  1.1  thorpej 	int status;
    519  1.1  thorpej 	datum k, v;
    520  1.1  thorpej 
    521  1.1  thorpej 	/* Get INTERDOMAIN */
    522  1.1  thorpej 	k.dptr = keystr;
    523  1.1  thorpej 	k.dsize = strlen(keystr);
    524  1.1  thorpej 
    525  1.1  thorpej 	status = yp_match_host(client, domain, map,
    526  1.1  thorpej 	    k.dptr, k.dsize, &value, &vallen);
    527  1.1  thorpej 
    528  1.1  thorpej 	if (status == 0 && value) {
    529  1.1  thorpej 		v.dptr = value;
    530  1.1  thorpej 		v.dsize = vallen;
    531  1.1  thorpej 
    532  1.1  thorpej 		if (v.dptr != NULL) {
    533  1.1  thorpej 			status = ypdb_store(db, k, v, YPDB_INSERT);
    534  1.1  thorpej 			if (status >= 0)
    535  1.1  thorpej 				status = YPPUSH_SUCC;
    536  1.1  thorpej 			else
    537  1.1  thorpej 				status = YPPUSH_DBM;
    538  1.1  thorpej 		}
    539  1.1  thorpej 	}
    540  1.1  thorpej 
    541  1.1  thorpej 	return status;
    542  1.1  thorpej }
    543  1.1  thorpej 
    544  1.1  thorpej int
    545  1.1  thorpej add_secure(client, domain, map, db)
    546  1.1  thorpej 	CLIENT *client;
    547  1.1  thorpej 	char *domain, *map;
    548  1.1  thorpej 	DBM *db;
    549  1.1  thorpej {
    550  1.1  thorpej 	char keystr[] = YP_SECURE_KEY;
    551  1.1  thorpej 	char *value;
    552  1.1  thorpej 	int vallen;
    553  1.1  thorpej 	int status;
    554  1.1  thorpej 	datum k, v;
    555  1.1  thorpej 
    556  1.1  thorpej 	/* Get SECURE */
    557  1.1  thorpej 	k.dptr = keystr;
    558  1.1  thorpej 	k.dsize = strlen(keystr);
    559  1.1  thorpej 
    560  1.1  thorpej 	status = yp_match_host(client, domain, map,
    561  1.1  thorpej 	    k.dptr, k.dsize, &value, &vallen);
    562  1.1  thorpej 
    563  1.1  thorpej 	if (status > 0) {
    564  1.1  thorpej 		v.dptr = value;
    565  1.1  thorpej 		v.dsize = vallen;
    566  1.1  thorpej 
    567  1.1  thorpej 		if (v.dptr != NULL) {
    568  1.1  thorpej 			status = ypdb_store(db, k, v, YPDB_INSERT);
    569  1.1  thorpej 			if (status >= 0)
    570  1.1  thorpej 				status = YPPUSH_SUCC;
    571  1.1  thorpej 			else
    572  1.1  thorpej 				status = YPPUSH_DBM;
    573  1.1  thorpej 		}
    574  1.1  thorpej 	}
    575  1.1  thorpej 
    576  1.1  thorpej 	return status;
    577  1.1  thorpej }
    578  1.1  thorpej 
    579  1.1  thorpej int
    580  1.1  thorpej send_clear(client)
    581  1.1  thorpej 	CLIENT *client;
    582  1.1  thorpej {
    583  1.1  thorpej 	struct timeval tv;
    584  1.1  thorpej 	int r;
    585  1.1  thorpej 	int status;
    586  1.1  thorpej 
    587  1.1  thorpej 	status = YPPUSH_SUCC;
    588  1.1  thorpej 
    589  1.1  thorpej 	tv.tv_sec = 10;
    590  1.1  thorpej 	tv.tv_usec = 0;
    591  1.1  thorpej 
    592  1.1  thorpej 	/* Send CLEAR */
    593  1.1  thorpej 	r = clnt_call(client, YPPROC_CLEAR, xdr_void, 0, xdr_void, 0, tv);
    594  1.1  thorpej 	if (r != RPC_SUCCESS) {
    595  1.1  thorpej 		clnt_perror(client, "yp_clear: clnt_call");
    596  1.1  thorpej 		status = YPPUSH_RPC;
    597  1.1  thorpej 	}
    598  1.1  thorpej 
    599  1.1  thorpej 	return status;
    600  1.1  thorpej }
    601  1.1  thorpej 
    602  1.1  thorpej int
    603  1.1  thorpej send_reply(client, status, tid)
    604  1.1  thorpej 	CLIENT *client;
    605  1.1  thorpej 	int status, tid;
    606  1.1  thorpej {
    607  1.1  thorpej 	struct timeval tv;
    608  1.1  thorpej 	struct ypresp_xfr resp;
    609  1.1  thorpej 	int r;
    610  1.1  thorpej 
    611  1.1  thorpej 	tv.tv_sec = 10;
    612  1.1  thorpej 	tv.tv_usec = 0;
    613  1.1  thorpej 
    614  1.1  thorpej 	resp.transid = tid;
    615  1.1  thorpej 	resp.xfrstat = status;
    616  1.1  thorpej 
    617  1.1  thorpej 	/* Send XFRRESP */
    618  1.1  thorpej 	r = clnt_call(client, YPPUSHPROC_XFRRESP, xdr_ypresp_xfr, &resp,
    619  1.1  thorpej 	    xdr_void, 0, tv);
    620  1.1  thorpej 	if (r != RPC_SUCCESS) {
    621  1.1  thorpej 		clnt_perror(client, "yppushresp_xdr: clnt_call");
    622  1.1  thorpej 		status = YPPUSH_RPC;
    623  1.1  thorpej 	}
    624  1.1  thorpej 
    625  1.1  thorpej 	return status;
    626  1.1  thorpej }
    627