2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
31 * Allows for gathering of registrations from an earlier dumped file.
33 * Copyright (c) 1990 by Sun Microsystems, Inc.
37 * @(#)warmstart.c 1.7 93/07/05 SMI
38 * $FreeBSD: src/usr.sbin/rpcbind/warmstart.c,v 1.4 2007/11/07 10:53:39 kevlo Exp $
40 #include <sys/types.h>
44 #include <rpc/rpcb_prot.h>
47 #include <netinet/in.h>
48 #include <rpc/pmap_prot.h>
56 * XXX this code is unsafe and is not used. It should be made safe.
60 /* These files keep the pmap_list and rpcb_list in XDR format */
61 #define RPCBFILE "/tmp/rpcbind.file"
63 #define PMAPFILE "/tmp/portmap.file"
66 static bool_t
write_struct(char *, xdrproc_t
, void *);
67 static bool_t
read_struct(char *, xdrproc_t
, void *);
70 write_struct(char *filename
, xdrproc_t structproc
, void *list
)
77 fp
= fopen(filename
, "w");
81 for (i
= 0; i
< 10; i
++)
83 fp
= fopen(filename
, "w");
86 "cannot open file = %s for writing", filename
);
87 syslog(LOG_ERR
, "cannot save any registration");
92 xdrstdio_create(&xdrs
, fp
, XDR_ENCODE
);
94 if (structproc(&xdrs
, list
) == FALSE
) {
95 syslog(LOG_ERR
, "rpcbind: xdr_%s: failed", filename
);
105 read_struct(char *filename
, xdrproc_t structproc
, void *list
)
111 if (stat(filename
, &sbuf
) != 0) {
113 "rpcbind: cannot stat file = %s for reading\n", filename
);
116 if ((sbuf
.st_uid
!= 0) || (sbuf
.st_mode
& S_IRWXG
) ||
117 (sbuf
.st_mode
& S_IRWXO
)) {
119 "rpcbind: invalid permissions on file = %s for reading\n",
123 fp
= fopen(filename
, "r");
126 "rpcbind: cannot open file = %s for reading\n", filename
);
129 xdrstdio_create(&xdrs
, fp
, XDR_DECODE
);
131 if (structproc(&xdrs
, list
) == FALSE
) {
132 fprintf(stderr
, "rpcbind: xdr_%s: failed\n", filename
);
140 error
: fprintf(stderr
, "rpcbind: will start from scratch\n");
145 write_warmstart(void)
147 write_struct(RPCBFILE
, (xdrproc_t
)xdr_rpcblist_ptr
, &list_rbl
);
149 write_struct(PMAPFILE
, (xdrproc_t
)xdr_pmaplist_ptr
, &list_pml
);
157 rpcblist_ptr tmp_rpcbl
= NULL
;
159 struct pmaplist
*tmp_pmapl
= NULL
;
163 ok1
= read_struct(RPCBFILE
, (xdrproc_t
)xdr_rpcblist_ptr
, &tmp_rpcbl
);
167 ok2
= read_struct(PMAPFILE
, (xdrproc_t
)xdr_pmaplist_ptr
, &tmp_pmapl
);
170 xdr_free((xdrproc_t
) xdr_rpcblist_ptr
, (char *)&tmp_rpcbl
);
173 xdr_free((xdrproc_t
) xdr_rpcblist_ptr
, (char *)&list_rbl
);
174 list_rbl
= tmp_rpcbl
;
176 xdr_free((xdrproc_t
) xdr_pmaplist_ptr
, (char *)&list_pml
);
177 list_pml
= tmp_pmapl
;