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 or with the express written consent of
8 * Sun Microsystems, Inc.
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
28 * Mountain View, California 94043
33 static char sccsid
[] = "@(#)update.c 1.2 91/03/11 Copyr 1986 Sun Micro";
35 static const char rcsid
[] =
40 * Copyright (C) 1986, 1989, Sun Microsystems, Inc.
44 * Administrative tool to add a new user to the publickey database
50 #include <rpc/key_prot.h>
52 #include <rpcsvc/yp_prot.h>
53 #include <rpcsvc/ypclnt.h>
59 #include <sys/resource.h>
61 #include "ypupdated_extern.h"
64 #define MAXMAPNAMELEN 256
66 #define YPOP_CHANGE 1 /* change, do not add */
67 #define YPOP_INSERT 2 /* add, do not change */
68 #define YPOP_DELETE 3 /* delete this entry */
69 #define YPOP_STORE 4 /* add, or change */
73 static char SHELL
[] = "/bin/sh";
74 static char YPDBPATH
[]="/var/yp"; /* This is defined but not used! */
75 static char PKMAP
[] = "publickey.byname";
76 static char UPDATEFILE
[] = "updaters";
77 static char PKFILE
[] = "/etc/publickey";
81 static int _openchild(char *, FILE **, FILE **);
84 * Determine if requester is allowed to update the given map,
85 * and update it if so. Returns the yp status, which is zero
86 * if there is no access violation.
89 mapupdate(char *requester
, char *mapname
, u_int op
, u_int keylen
, char *key
,
90 u_int datalen
, char *data
)
92 char updater
[MAXMAPNAMELEN
+ 40];
105 printf("%s %s\n", key
, data
);
107 (void)sprintf(updater
, "make -s -f %s/%s %s", YPDBPATH
, /* !!! */
108 UPDATEFILE
, mapname
);
109 pid
= _openchild(updater
, &childargs
, &childrslt
);
111 return (YPERR_YPERR
);
117 (void)fprintf(childargs
, "%s\n", requester
);
118 (void)fprintf(childargs
, "%u\n", op
);
119 (void)fprintf(childargs
, "%u\n", keylen
);
120 (void)fwrite(key
, (int)keylen
, 1, childargs
);
121 (void)fprintf(childargs
, "\n");
122 (void)fprintf(childargs
, "%u\n", datalen
);
123 (void)fwrite(data
, (int)datalen
, 1, childargs
);
124 (void)fprintf(childargs
, "\n");
125 (void)fclose(childargs
);
130 (void)fscanf(childrslt
, "%d", &yperrno
);
131 (void)fclose(childrslt
);
135 if (WEXITSTATUS(status
) != 0)
137 if (status
.w_retcode
!= 0)
139 return (YPERR_YPERR
);
144 * returns pid, or -1 for failure
147 _openchild(char *command
, FILE **fto
, FILE **ffrom
)
156 if (pipe(pdto
) < 0) {
159 if (pipe(pdfrom
) < 0) {
162 switch (pid
= fork()) {
168 * child: read from pdto[0], write into pdfrom[1]
173 (void)dup(pdfrom
[1]);
174 getrlimit(RLIMIT_NOFILE
, &rl
);
175 for (i
= rl
.rlim_max
- 1; i
>= 3; i
--) {
178 com
= malloc((unsigned) strlen(command
) + 6);
182 (void)sprintf(com
, "exec %s", command
);
183 execl(SHELL
, basename(SHELL
), "-c", com
, (char *)NULL
);
188 * parent: write into pdto[1], read from pdfrom[0]
190 *fto
= fdopen(pdto
[1], "w");
191 (void)close(pdto
[0]);
192 *ffrom
= fdopen(pdfrom
[0], "r");
193 (void)close(pdfrom
[1]);
199 * error cleanup and return
202 (void)close(pdfrom
[0]);
203 (void)close(pdfrom
[1]);
205 (void)close(pdto
[0]);
206 (void)close(pdto
[1]);
216 p
= strrchr(path
, '/');
226 static int match(char *, char *);
229 * Determine if requester is allowed to update the given map,
230 * and update it if so. Returns the status, which is zero
231 * if there is no access violation. This function updates
232 * the local file and then shuts up.
235 localupdate(char *name
, char *filename
, u_int op
, u_int keylen __unused
,
236 char *key
, u_int datalen __unused
, char *data
)
247 if (strcmp(name
, key
) != 0) {
250 if (strcmp(name
, "nobody") == 0) {
252 * Can't change "nobody"s key.
260 tmpname
= malloc(strlen(filename
) + 4);
261 if (tmpname
== NULL
) {
264 sprintf(tmpname
, "%s.tmp", filename
);
265 rf
= fopen(filename
, "r");
269 wf
= fopen(tmpname
, "w");
274 while (fgets(line
, sizeof (line
), rf
)) {
275 if (err
< 0 && match(line
, name
)) {
282 fprintf(wf
, "%s %s\n", key
, data
);
303 fprintf(wf
, "%s %s\n", key
, data
);
310 if (rename(tmpname
, filename
) < 0) {
314 if (unlink(tmpname
) < 0) {
322 match(char *line
, char *name
)
327 return (strncmp(line
, name
, len
) == 0 &&
328 (line
[len
] == ' ' || line
[len
] == '\t'));