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 $
43 #include <rpc/key_prot.h>
44 #include <sys/param.h>
45 #include <rpcsvc/yp.h>
46 #include "ypupdate_prot.h"
47 #include "ypupdated_extern.h"
48 #include "yp_extern.h"
49 #include "ypxfr_extern.h"
55 * Try to avoid spoofing: if a client chooses to use a very large
56 * window and then tries a bunch of randomly chosen encrypted timestamps,
57 * there's a chance he might stumble onto a valid combination.
58 * We therefore reject any RPCs with a window size larger than a preset
62 #define WINDOW (60*60)
66 yp_checkauth(struct svc_req
*svcreq
)
68 struct authdes_cred
*des_cred
;
70 switch (svcreq
->rq_cred
.oa_flavor
) {
72 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
73 if (des_cred
->adc_fullname
.window
> WINDOW
) {
74 yp_error("warning: client-specified window size \
75 was too large -- possible spoof attempt");
82 yp_error("warning: client didn't use DES authentication");
86 yp_error("client used unknown auth flavor");
87 return(AUTH_REJECTEDCRED
);
93 ypu_change_1_svc(struct ypupdate_args
*args
, struct svc_req
*svcreq
)
95 struct authdes_cred
*des_cred
;
102 astat
= yp_checkauth(svcreq
);
104 if (astat
!= AUTH_OK
) {
105 svcerr_auth(svcreq
->rq_xprt
, astat
);
109 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
110 netname
= des_cred
->adc_fullname
.name
;
112 res
= localupdate(netname
, "/etc/publickey", YPOP_CHANGE
,
113 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
114 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
119 res
= ypmap_update(netname
, args
->mapname
, YPOP_CHANGE
,
120 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
121 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
127 ypu_insert_1_svc(struct ypupdate_args
*args
, struct svc_req
*svcreq
)
129 struct authdes_cred
*des_cred
;
132 enum auth_stat astat
;
136 astat
= yp_checkauth(svcreq
);
138 if (astat
!= AUTH_OK
) {
139 svcerr_auth(svcreq
->rq_xprt
, astat
);
143 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
144 netname
= des_cred
->adc_fullname
.name
;
146 res
= localupdate(netname
, "/etc/publickey", YPOP_INSERT
,
147 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
148 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
153 res
= ypmap_update(netname
, args
->mapname
, YPOP_INSERT
,
154 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
155 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
161 ypu_delete_1_svc(struct ypdelete_args
*args
, struct svc_req
*svcreq
)
163 struct authdes_cred
*des_cred
;
166 enum auth_stat astat
;
170 astat
= yp_checkauth(svcreq
);
172 if (astat
!= AUTH_OK
) {
173 svcerr_auth(svcreq
->rq_xprt
, astat
);
177 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
178 netname
= des_cred
->adc_fullname
.name
;
180 res
= localupdate(netname
, "/etc/publickey", YPOP_DELETE
,
181 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
187 res
= ypmap_update(netname
, args
->mapname
, YPOP_DELETE
,
188 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
195 ypu_store_1_svc(struct ypupdate_args
*args
, struct svc_req
*svcreq
)
197 struct authdes_cred
*des_cred
;
200 enum auth_stat astat
;
204 astat
= yp_checkauth(svcreq
);
206 if (astat
!= AUTH_OK
) {
207 svcerr_auth(svcreq
->rq_xprt
, astat
);
211 des_cred
= (struct authdes_cred
*) svcreq
->rq_clntcred
;
212 netname
= des_cred
->adc_fullname
.name
;
214 res
= localupdate(netname
, "/etc/publickey", YPOP_STORE
,
215 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
216 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);
221 res
= ypmap_update(netname
, args
->mapname
, YPOP_STORE
,
222 args
->key
.yp_buf_len
, args
->key
.yp_buf_val
,
223 args
->datum
.yp_buf_len
, args
->datum
.yp_buf_val
);