Bring in a transport-independent RPC (TI-RPC).
[dragonfly.git] / lib / libc / rpc / svc_auth_des.c
blob3ed9814332a570081ac678bdce9b91cb8bd7fed3
2 /*
3 * Copyright (c) 1988 by Sun Microsystems, Inc.
5 * @(#)svcauth_des.c 2.3 89/07/11 4.0 RPCSRC; from 1.15 88/02/08 SMI
6 * $FreeBSD: src/lib/libc/rpc/svc_auth_des.c,v 1.9 2002/03/22 23:18:37 obrien Exp $
7 * $DragonFly: src/lib/libc/rpc/svc_auth_des.c,v 1.6 2005/11/13 12:27:04 swildner Exp $
8 */
11 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
12 * unrestricted use provided that this legend is included on all tape
13 * media and as a part of the software program in whole or part. Users
14 * may copy or modify Sun RPC without charge, but are not authorized
15 * to license or distribute it to anyone else except as part of a product or
16 * program developed by the user.
18 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
19 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
22 * Sun RPC is provided with no support and without any obligation on the
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
24 * modification or enhancement.
26 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
27 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
28 * OR ANY PART THEREOF.
30 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
31 * or profits or other special, indirect and consequential damages, even if
32 * Sun has been advised of the possibility of such damages.
34 * Sun Microsystems, Inc.
35 * 2550 Garcia Avenue
36 * Mountain View, California 94043
40 * svcauth_des.c, server-side des authentication
42 * We insure for the service the following:
43 * (1) The timestamp microseconds do not exceed 1 million.
44 * (2) The timestamp plus the window is less than the current time.
45 * (3) The timestamp is not less than the one previously
46 * seen in the current session.
48 * It is up to the server to determine if the window size is
49 * too small .
53 #include "namespace.h"
54 #include "reentrant.h"
55 #include <string.h>
56 #include <stdlib.h>
57 #include <stdio.h>
58 #include <unistd.h>
59 #include <rpc/des_crypt.h>
60 #include <sys/param.h>
61 #include <netinet/in.h>
62 #include <rpc/types.h>
63 #include <rpc/xdr.h>
64 #include <rpc/auth.h>
65 #include <rpc/auth_des.h>
66 #include <rpc/svc.h>
67 #include <rpc/rpc_msg.h>
68 #include <rpc/svc_auth.h>
69 #include "libc_private.h"
71 extern int key_decryptsession_pk(const char *, netobj *, des_block *);
73 #define debug(msg) printf("svcauth_des: %s\n", msg)
75 #define USEC_PER_SEC ((u_long) 1000000L)
76 #define BEFORE(t1, t2) timercmp(t1, t2, <)
79 * LRU cache of conversation keys and some other useful items.
81 #define AUTHDES_CACHESZ 64
82 struct cache_entry {
83 des_block key; /* conversation key */
84 char *rname; /* client's name */
85 u_int window; /* credential lifetime window */
86 struct timeval laststamp; /* detect replays of creds */
87 char *localcred; /* generic local credential */
89 static struct cache_entry *authdes_cache/* [AUTHDES_CACHESZ] */;
90 static short *authdes_lru/* [AUTHDES_CACHESZ] */;
92 static void cache_init(); /* initialize the cache */
93 static short cache_spot(); /* find an entry in the cache */
94 static void cache_ref(short sid); /* note that sid was ref'd */
96 static void invalidate(); /* invalidate entry in cache */
99 * cache statistics
101 static struct {
102 u_long ncachehits; /* times cache hit, and is not replay */
103 u_long ncachereplays; /* times cache hit, and is replay */
104 u_long ncachemisses; /* times cache missed */
105 } svcauthdes_stats;
108 * Service side authenticator for AUTH_DES
110 enum auth_stat
111 _svcauth_des(struct svc_req *rqst, struct rpc_msg *msg)
114 long *ixdr;
115 des_block cryptbuf[2];
116 struct authdes_cred *cred;
117 struct authdes_verf verf;
118 int status;
119 struct cache_entry *entry;
120 short sid = 0;
121 des_block *sessionkey;
122 des_block ivec;
123 u_int window;
124 struct timeval timestamp;
125 u_long namelen;
126 struct area {
127 struct authdes_cred area_cred;
128 char area_netname[MAXNETNAMELEN+1];
129 } *area;
131 if (authdes_cache == NULL) {
132 cache_init();
135 area = (struct area *)rqst->rq_clntcred;
136 cred = (struct authdes_cred *)&area->area_cred;
139 * Get the credential
141 ixdr = (long *)msg->rm_call.cb_cred.oa_base;
142 cred->adc_namekind = IXDR_GET_ENUM(ixdr, enum authdes_namekind);
143 switch (cred->adc_namekind) {
144 case ADN_FULLNAME:
145 namelen = IXDR_GET_U_LONG(ixdr);
146 if (namelen > MAXNETNAMELEN) {
147 return (AUTH_BADCRED);
149 cred->adc_fullname.name = area->area_netname;
150 bcopy((char *)ixdr, cred->adc_fullname.name,
151 (u_int)namelen);
152 cred->adc_fullname.name[namelen] = 0;
153 ixdr += (RNDUP(namelen) / BYTES_PER_XDR_UNIT);
154 cred->adc_fullname.key.key.high = (u_long)*ixdr++;
155 cred->adc_fullname.key.key.low = (u_long)*ixdr++;
156 cred->adc_fullname.window = (u_long)*ixdr++;
157 break;
158 case ADN_NICKNAME:
159 cred->adc_nickname = (u_long)*ixdr++;
160 break;
161 default:
162 return (AUTH_BADCRED);
166 * Get the verifier
168 ixdr = (long *)msg->rm_call.cb_verf.oa_base;
169 verf.adv_xtimestamp.key.high = (u_long)*ixdr++;
170 verf.adv_xtimestamp.key.low = (u_long)*ixdr++;
171 verf.adv_int_u = (u_long)*ixdr++;
175 * Get the conversation key
177 if (cred->adc_namekind == ADN_FULLNAME) {
178 netobj pkey;
179 char pkey_data[1024];
181 sessionkey = &cred->adc_fullname.key;
182 if (! getpublickey(cred->adc_fullname.name, pkey_data)) {
183 debug("getpublickey");
184 return(AUTH_BADCRED);
186 pkey.n_bytes = pkey_data;
187 pkey.n_len = strlen(pkey_data) + 1;
188 if (key_decryptsession_pk(cred->adc_fullname.name, &pkey,
189 sessionkey) < 0) {
190 debug("decryptsessionkey");
191 return (AUTH_BADCRED); /* key not found */
193 } else { /* ADN_NICKNAME */
194 sid = (short)cred->adc_nickname;
195 if (sid < 0 || sid >= AUTHDES_CACHESZ) {
196 debug("bad nickname");
197 return (AUTH_BADCRED); /* garbled credential */
199 sessionkey = &authdes_cache[sid].key;
204 * Decrypt the timestamp
206 cryptbuf[0] = verf.adv_xtimestamp;
207 if (cred->adc_namekind == ADN_FULLNAME) {
208 cryptbuf[1].key.high = cred->adc_fullname.window;
209 cryptbuf[1].key.low = verf.adv_winverf;
210 ivec.key.high = ivec.key.low = 0;
211 status = cbc_crypt((char *)sessionkey, (char *)cryptbuf,
212 2*sizeof(des_block), DES_DECRYPT | DES_HW,
213 (char *)&ivec);
214 } else {
215 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf,
216 sizeof(des_block), DES_DECRYPT | DES_HW);
218 if (DES_FAILED(status)) {
219 debug("decryption failure");
220 return (AUTH_FAILED); /* system error */
224 * XDR the decrypted timestamp
226 ixdr = (long *)cryptbuf;
227 timestamp.tv_sec = IXDR_GET_LONG(ixdr);
228 timestamp.tv_usec = IXDR_GET_LONG(ixdr);
231 * Check for valid credentials and verifiers.
232 * They could be invalid because the key was flushed
233 * out of the cache, and so a new session should begin.
234 * Be sure and send AUTH_REJECTED{CRED, VERF} if this is the case.
237 struct timeval current;
238 int nick;
239 int winverf;
241 if (cred->adc_namekind == ADN_FULLNAME) {
242 window = IXDR_GET_U_LONG(ixdr);
243 winverf = IXDR_GET_U_LONG(ixdr);
244 if (winverf != window - 1) {
245 debug("window verifier mismatch");
246 return (AUTH_BADCRED); /* garbled credential */
248 sid = cache_spot(sessionkey, cred->adc_fullname.name,
249 &timestamp);
250 if (sid < 0) {
251 debug("replayed credential");
252 return (AUTH_REJECTEDCRED); /* replay */
254 nick = 0;
255 } else { /* ADN_NICKNAME */
256 window = authdes_cache[sid].window;
257 nick = 1;
260 if ((u_long)timestamp.tv_usec >= USEC_PER_SEC) {
261 debug("invalid usecs");
262 /* cached out (bad key), or garbled verifier */
263 return (nick ? AUTH_REJECTEDVERF : AUTH_BADVERF);
265 if (nick && BEFORE(&timestamp,
266 &authdes_cache[sid].laststamp)) {
267 debug("timestamp before last seen");
268 return (AUTH_REJECTEDVERF); /* replay */
270 gettimeofday(&current, (struct timezone *)NULL);
271 current.tv_sec -= window; /* allow for expiration */
272 if (!BEFORE(&current, &timestamp)) {
273 debug("timestamp expired");
274 /* replay, or garbled credential */
275 return (nick ? AUTH_REJECTEDVERF : AUTH_BADCRED);
280 * Set up the reply verifier
282 verf.adv_nickname = (u_long)sid;
285 * xdr the timestamp before encrypting
287 ixdr = (long *)cryptbuf;
288 IXDR_PUT_LONG(ixdr, timestamp.tv_sec - 1);
289 IXDR_PUT_LONG(ixdr, timestamp.tv_usec);
292 * encrypt the timestamp
294 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf,
295 sizeof(des_block), DES_ENCRYPT | DES_HW);
296 if (DES_FAILED(status)) {
297 debug("encryption failure");
298 return (AUTH_FAILED); /* system error */
300 verf.adv_xtimestamp = cryptbuf[0];
303 * Serialize the reply verifier, and update rqst
305 ixdr = (long *)msg->rm_call.cb_verf.oa_base;
306 *ixdr++ = (long)verf.adv_xtimestamp.key.high;
307 *ixdr++ = (long)verf.adv_xtimestamp.key.low;
308 *ixdr++ = (long)verf.adv_int_u;
310 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_DES;
311 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base;
312 rqst->rq_xprt->xp_verf.oa_length =
313 (char *)ixdr - msg->rm_call.cb_verf.oa_base;
316 * We succeeded, commit the data to the cache now and
317 * finish cooking the credential.
319 entry = &authdes_cache[sid];
320 entry->laststamp = timestamp;
321 cache_ref(sid);
322 if (cred->adc_namekind == ADN_FULLNAME) {
323 cred->adc_fullname.window = window;
324 cred->adc_nickname = (u_long)sid; /* save nickname */
325 if (entry->rname != NULL) {
326 mem_free(entry->rname, strlen(entry->rname) + 1);
328 entry->rname = (char *)mem_alloc((u_int)strlen(cred->adc_fullname.name)
329 + 1);
330 if (entry->rname != NULL) {
331 strcpy(entry->rname, cred->adc_fullname.name);
332 } else {
333 debug("out of memory");
335 entry->key = *sessionkey;
336 entry->window = window;
337 invalidate(entry->localcred); /* mark any cached cred invalid */
338 } else { /* ADN_NICKNAME */
340 * nicknames are cooked into fullnames
342 cred->adc_namekind = ADN_FULLNAME;
343 cred->adc_fullname.name = entry->rname;
344 cred->adc_fullname.key = entry->key;
345 cred->adc_fullname.window = entry->window;
347 return (AUTH_OK); /* we made it!*/
352 * Initialize the cache
354 static void
355 cache_init(void)
357 int i;
359 authdes_cache = (struct cache_entry *)
360 mem_alloc(sizeof(struct cache_entry) * AUTHDES_CACHESZ);
361 bzero((char *)authdes_cache,
362 sizeof(struct cache_entry) * AUTHDES_CACHESZ);
364 authdes_lru = (short *)mem_alloc(sizeof(short) * AUTHDES_CACHESZ);
366 * Initialize the lru list
368 for (i = 0; i < AUTHDES_CACHESZ; i++) {
369 authdes_lru[i] = i;
375 * Find the lru victim
377 static short
378 cache_victim(void)
380 return (authdes_lru[AUTHDES_CACHESZ-1]);
384 * Note that sid was referenced
386 static void
387 cache_ref(short sid)
389 int i;
390 short curr;
391 short prev;
393 prev = authdes_lru[0];
394 authdes_lru[0] = sid;
395 for (i = 1; prev != sid; i++) {
396 curr = authdes_lru[i];
397 authdes_lru[i] = prev;
398 prev = curr;
404 * Find a spot in the cache for a credential containing
405 * the items given. Return -1 if a replay is detected, otherwise
406 * return the spot in the cache.
408 static short
409 cache_spot(des_block *key, char *name, struct timeval *timestamp)
411 struct cache_entry *cp;
412 int i;
413 u_long hi;
415 hi = key->key.high;
416 for (cp = authdes_cache, i = 0; i < AUTHDES_CACHESZ; i++, cp++) {
417 if (cp->key.key.high == hi &&
418 cp->key.key.low == key->key.low &&
419 cp->rname != NULL &&
420 bcmp(cp->rname, name, strlen(name) + 1) == 0) {
421 if (BEFORE(timestamp, &cp->laststamp)) {
422 svcauthdes_stats.ncachereplays++;
423 return (-1); /* replay */
425 svcauthdes_stats.ncachehits++;
426 return (i); /* refresh */
429 svcauthdes_stats.ncachemisses++;
430 return (cache_victim()); /* new credential */
434 #if defined(sun) || defined(vax) || \
435 defined(__FreeBSD__) || defined(__DragonFly__)
437 * Local credential handling stuff.
438 * NOTE: bsd unix dependent.
439 * Other operating systems should put something else here.
441 #define UNKNOWN -2 /* grouplen, if cached cred is unknown user */
442 #define INVALID -1 /* grouplen, if cache entry is invalid */
444 struct bsdcred {
445 short uid; /* cached uid */
446 short gid; /* cached gid */
447 short grouplen; /* length of cached groups */
448 short groups[NGROUPS]; /* cached groups */
452 * Map a des credential into a unix cred.
453 * We cache the credential here so the application does
454 * not have to make an rpc call every time to interpret
455 * the credential.
458 authdes_getucred(struct authdes_cred *adc, uid_t *uid, gid_t *gid,
459 int *grouplen, gid_t *groups)
461 unsigned sid;
462 int i;
463 uid_t i_uid;
464 gid_t i_gid;
465 int i_grouplen;
466 struct bsdcred *cred;
468 sid = adc->adc_nickname;
469 if (sid >= AUTHDES_CACHESZ) {
470 debug("invalid nickname");
471 return (0);
473 cred = (struct bsdcred *)authdes_cache[sid].localcred;
474 if (cred == NULL) {
475 cred = (struct bsdcred *)mem_alloc(sizeof(struct bsdcred));
476 authdes_cache[sid].localcred = (char *)cred;
477 cred->grouplen = INVALID;
479 if (cred->grouplen == INVALID) {
481 * not in cache: lookup
483 if (!netname2user(adc->adc_fullname.name, &i_uid, &i_gid,
484 &i_grouplen, groups))
486 debug("unknown netname");
487 cred->grouplen = UNKNOWN; /* mark as lookup up, but not found */
488 return (0);
490 debug("missed ucred cache");
491 *uid = cred->uid = i_uid;
492 *gid = cred->gid = i_gid;
493 *grouplen = cred->grouplen = i_grouplen;
494 for (i = i_grouplen - 1; i >= 0; i--) {
495 cred->groups[i] = groups[i]; /* int to short */
497 return (1);
498 } else if (cred->grouplen == UNKNOWN) {
500 * Already lookup up, but no match found
502 return (0);
506 * cached credentials
508 *uid = cred->uid;
509 *gid = cred->gid;
510 *grouplen = cred->grouplen;
511 for (i = cred->grouplen - 1; i >= 0; i--) {
512 groups[i] = cred->groups[i]; /* short to int */
514 return (1);
517 static void
518 invalidate(char *cred)
520 if (cred == NULL) {
521 return;
523 ((struct bsdcred *)cred)->grouplen = INVALID;
525 #endif