2 * Copyright (c) 1995, 1996
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * ypupdate server implementation
34 * Written by Bill Paul <wpaul@ctr.columbia.edu>
35 * Center for Telecommunications Research
36 * Columbia University, New York City
38 * $FreeBSD: src/usr.sbin/rpc.ypupdated/ypupdated_server.c,v 1.7 2003/05/03 21:06:40 obrien Exp $
39 * $DragonFly: src/usr.sbin/rpc.ypupdated/ypupdated_server.c,v 1.3 2005/11/25 00:32:49 swildner Exp $
44 #include <rpc/key_prot.h>
45 #include <sys/param.h>
46 #include <sys/cdefs.h>
47 #include <rpcsvc/yp.h>
48 #include "ypupdate_prot.h"
49 #include "ypupdated_extern.h"
50 #include "yp_extern.h"
51 #include "ypxfr_extern.h"
57 * Try to avoid spoofing: if a client chooses to use a very large
58 * window and then tries a bunch of randomly chosen encrypted timestamps,
59 * there's a chance he might stumble onto a valid combination.
60 * We therefore reject any RPCs with a window size larger than a preset
64 #define WINDOW (60*60)
68 yp_checkauth(struct svc_req
*svcreq
)
70 struct authdes_cred
*des_cred
;
72 switch (svcreq
->rq_cred
.oa_flavor
) {
74 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
75 if (des_cred
->adc_fullname
.window
> WINDOW
) {
76 yp_error("warning: client-specified window size \
77 was too large -- possible spoof attempt");
84 yp_error("warning: client didn't use DES authentication");
88 yp_error("client used unknown auth flavor");
89 return(AUTH_REJECTEDCRED
);
95 ypu_change_1_svc(struct ypupdate_args
*args
, struct svc_req
*svcreq
)
97 struct authdes_cred
*des_cred
;
100 enum auth_stat astat
;
104 astat
= yp_checkauth(svcreq
);
106 if (astat
!= AUTH_OK
) {
107 svcerr_auth(svcreq
->rq_xprt
, astat
);
111 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
112 netname
= des_cred
->adc_fullname
.name
;
114 res
= localupdate(netname
, "/etc/publickey", YPOP_CHANGE
,
115 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
116 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
121 res
= ypmap_update(netname
, args
->mapname
, YPOP_CHANGE
,
122 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
123 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
129 ypu_insert_1_svc(struct ypupdate_args
*args
, struct svc_req
*svcreq
)
131 struct authdes_cred
*des_cred
;
134 enum auth_stat astat
;
138 astat
= yp_checkauth(svcreq
);
140 if (astat
!= AUTH_OK
) {
141 svcerr_auth(svcreq
->rq_xprt
, astat
);
145 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
146 netname
= des_cred
->adc_fullname
.name
;
148 res
= localupdate(netname
, "/etc/publickey", YPOP_INSERT
,
149 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
150 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
155 res
= ypmap_update(netname
, args
->mapname
, YPOP_INSERT
,
156 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
157 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
163 ypu_delete_1_svc(struct ypdelete_args
*args
, struct svc_req
*svcreq
)
165 struct authdes_cred
*des_cred
;
168 enum auth_stat astat
;
172 astat
= yp_checkauth(svcreq
);
174 if (astat
!= AUTH_OK
) {
175 svcerr_auth(svcreq
->rq_xprt
, astat
);
179 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
180 netname
= des_cred
->adc_fullname
.name
;
182 res
= localupdate(netname
, "/etc/publickey", YPOP_DELETE
,
183 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
189 res
= ypmap_update(netname
, args
->mapname
, YPOP_DELETE
,
190 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
197 ypu_store_1_svc(struct ypupdate_args
*args
, struct svc_req
*svcreq
)
199 struct authdes_cred
*des_cred
;
202 enum auth_stat astat
;
206 astat
= yp_checkauth(svcreq
);
208 if (astat
!= AUTH_OK
) {
209 svcerr_auth(svcreq
->rq_xprt
, astat
);
213 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
214 netname
= des_cred
->adc_fullname
.name
;
216 res
= localupdate(netname
, "/etc/publickey", YPOP_STORE
,
217 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
218 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
223 res
= ypmap_update(netname
, args
->mapname
, YPOP_STORE
,
224 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
225 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);