]> git.ipfire.org Git - thirdparty/glibc.git/blame - sunrpc/svcauth_des.c
Change most internal uses of __gettimeofday to __clock_gettime.
[thirdparty/glibc.git] / sunrpc / svcauth_des.c
CommitLineData
800d775e 1/*
a7ab6ec8 2 * Copyright (c) 2010, Oracle America, Inc.
cb636bb2 3 *
a7ab6ec8
UD
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
800d775e 7 *
a7ab6ec8
UD
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials
13 * provided with the distribution.
14 * * Neither the name of the "Oracle America, Inc." nor the names of its
15 * contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
800d775e 17 *
a7ab6ec8
UD
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
800d775e 30 *
800d775e
UD
31 * svcauth_des.c, server-side des authentication
32 *
33 * We insure for the service the following:
34 * (1) The timestamp microseconds do not exceed 1 million.
35 * (2) The timestamp plus the window is less than the current time.
36 * (3) The timestamp is not less than the one previously
37 * seen in the current session.
38 *
39 * It is up to the server to determine if the window size is
40 * too small .
41 *
42 */
43
773640b4 44#include <limits.h>
800d775e 45#include <string.h>
e054f494 46#include <stdint.h>
4a39c34c 47#include <time.h>
800d775e
UD
48#include <sys/param.h>
49#include <netinet/in.h>
f1e4a4a4 50#include <rpc/rpc.h>
800d775e
UD
51#include <rpc/xdr.h>
52#include <rpc/auth.h>
53#include <rpc/auth_des.h>
54#include <rpc/svc_auth.h>
55#include <rpc/svc.h>
56#include <rpc/des_crypt.h>
82f43dd2 57#include <shlib-compat.h>
800d775e
UD
58
59#define debug(msg) /*printf("svcauth_des: %s\n", msg) */
60
f8afba91 61#define USEC_PER_SEC ((uint32_t) 1000000L)
800d775e
UD
62#define BEFORE(t1, t2) timercmp(t1, t2, <)
63
64/*
65 * LRU cache of conversation keys and some other useful items.
66 */
67#define AUTHDES_CACHESZ 64
68struct cache_entry
69 {
70 des_block key; /* conversation key */
71 char *rname; /* client's name */
72 u_int window; /* credential lifetime window */
f8afba91 73 struct rpc_timeval laststamp; /* detect replays of creds */
800d775e
UD
74 char *localcred; /* generic local credential */
75 };
1bc1a2b9
AS
76#define authdes_cache RPC_THREAD_VARIABLE(authdes_cache_s)
77#define authdes_lru RPC_THREAD_VARIABLE(authdes_lru_s)
800d775e 78
ca4ec803
FW
79static void cache_init (void); /* initialize the cache */
80static short cache_spot (des_block *, char *, struct rpc_timeval *);
81 /* find an entry in the cache */
82static void cache_ref (uint32_t sid); /* note that sid was ref'd */
800d775e 83
ca4ec803 84static void invalidate (char *cred); /* invalidate entry in cache */
800d775e 85
89aacb51
FW
86/* Cache statistics. Accidental historic export without a matching
87 declaration in any header file. */
88#ifndef SHARED
89static
90#endif
800d775e
UD
91struct
92 {
93 u_long ncachehits; /* times cache hit, and is not replay */
94 u_long ncachereplays; /* times cache hit, and is replay */
95 u_long ncachemisses; /* times cache missed */
96 }
89aacb51
FW
97svcauthdes_stats __attribute__ ((nocommon));
98#ifdef SHARED
99compat_symbol (libc, svcauthdes_stats, svcauthdes_stats, GLIBC_2_0);
100#endif
800d775e
UD
101
102/*
103 * Service side authenticator for AUTH_DES
104 */
105enum auth_stat
106_svcauth_des (register struct svc_req *rqst, register struct rpc_msg *msg)
107{
f8afba91 108 register uint32_t *ixdr;
800d775e
UD
109 des_block cryptbuf[2];
110 register struct authdes_cred *cred;
111 struct authdes_verf verf;
112 int status;
113 register struct cache_entry *entry;
f8afba91 114 uint32_t sid = 0;
800d775e
UD
115 des_block *sessionkey;
116 des_block ivec;
117 u_int window;
f8afba91
UD
118 struct rpc_timeval timestamp;
119 uint32_t namelen;
800d775e
UD
120 struct area
121 {
122 struct authdes_cred area_cred;
123 char area_netname[MAXNETNAMELEN + 1];
124 }
125 *area;
126
127 if (authdes_cache == NULL)
128 cache_init ();
f8afba91
UD
129 if (authdes_cache == NULL) /* No free memory */
130 return AUTH_FAILED;
800d775e
UD
131
132 area = (struct area *) rqst->rq_clntcred;
133 cred = (struct authdes_cred *) &area->area_cred;
134
135 /*
136 * Get the credential
137 */
f8afba91
UD
138 if (msg->rm_call.cb_cred.oa_length <= 0 ||
139 msg->rm_call.cb_cred.oa_length > MAX_AUTH_BYTES)
140 return AUTH_BADCRED;
141
142 ixdr = (uint32_t *) msg->rm_call.cb_cred.oa_base;
800d775e
UD
143 cred->adc_namekind = IXDR_GET_ENUM (ixdr, enum authdes_namekind);
144 switch (cred->adc_namekind)
145 {
146 case ADN_FULLNAME:
f8afba91 147 namelen = IXDR_GET_U_INT32 (ixdr);
800d775e
UD
148 if (namelen > MAXNETNAMELEN)
149 {
150 return AUTH_BADCRED;
151 }
152 cred->adc_fullname.name = area->area_netname;
9af652f6 153 memcpy (cred->adc_fullname.name, (char *) ixdr, namelen);
800d775e
UD
154 cred->adc_fullname.name[namelen] = 0;
155 ixdr += (RNDUP (namelen) / BYTES_PER_XDR_UNIT);
f8afba91
UD
156 cred->adc_fullname.key.key.high = *ixdr++;
157 cred->adc_fullname.key.key.low = *ixdr++;
158 cred->adc_fullname.window = *ixdr++;
800d775e
UD
159 break;
160 case ADN_NICKNAME:
f8afba91 161 cred->adc_nickname = *ixdr++;
800d775e
UD
162 break;
163 default:
164 return AUTH_BADCRED;
165 }
166
167 /*
168 * Get the verifier
169 */
f8afba91
UD
170 if (msg->rm_call.cb_verf.oa_length <= 0 ||
171 msg->rm_call.cb_verf.oa_length > MAX_AUTH_BYTES)
172 return AUTH_BADCRED;
800d775e 173
f8afba91
UD
174 ixdr = (uint32_t *) msg->rm_call.cb_verf.oa_base;
175 verf.adv_xtimestamp.key.high = *ixdr++;
176 verf.adv_xtimestamp.key.low = *ixdr++;
177 verf.adv_int_u = *ixdr++;
800d775e
UD
178
179 /*
180 * Get the conversation key
181 */
182 if (cred->adc_namekind == ADN_FULLNAME)
183 {
26a60f90
UD
184 netobj pkey;
185 char pkey_data[1024];
186
800d775e 187 sessionkey = &cred->adc_fullname.key;
26a60f90
UD
188 if (!getpublickey (cred->adc_fullname.name, pkey_data))
189 {
190 debug("getpublickey");
191 return AUTH_BADCRED;
192 }
193 pkey.n_bytes = pkey_data;
194 pkey.n_len = strlen (pkey_data) + 1;
195 if (key_decryptsession_pk (cred->adc_fullname.name, &pkey,
196 sessionkey) < 0)
800d775e
UD
197 {
198 debug ("decryptsessionkey");
199 return AUTH_BADCRED; /* key not found */
200 }
201 }
202 else
203 { /* ADN_NICKNAME */
f8afba91 204 if (cred->adc_nickname >= AUTHDES_CACHESZ)
800d775e
UD
205 {
206 debug ("bad nickname");
207 return AUTH_BADCRED; /* garbled credential */
208 }
f8afba91
UD
209 else
210 sid = cred->adc_nickname;
211
212 /* XXX This could be wrong, but else we have a
213 security problem */
214 if (authdes_cache[sid].rname == NULL)
215 return AUTH_BADCRED;
800d775e
UD
216 sessionkey = &authdes_cache[sid].key;
217 }
218
219
220 /*
221 * Decrypt the timestamp
222 */
223 cryptbuf[0] = verf.adv_xtimestamp;
224 if (cred->adc_namekind == ADN_FULLNAME)
225 {
226 cryptbuf[1].key.high = cred->adc_fullname.window;
227 cryptbuf[1].key.low = verf.adv_winverf;
228 ivec.key.high = ivec.key.low = 0;
229 status = cbc_crypt ((char *) sessionkey, (char *) cryptbuf,
230 2 * sizeof (des_block), DES_DECRYPT | DES_HW,
231 (char *) &ivec);
232 }
233 else
f8afba91
UD
234 status = ecb_crypt ((char *) sessionkey, (char *) cryptbuf,
235 sizeof (des_block), DES_DECRYPT | DES_HW);
236
800d775e
UD
237 if (DES_FAILED (status))
238 {
239 debug ("decryption failure");
240 return AUTH_FAILED; /* system error */
241 }
242
243 /*
244 * XDR the decrypted timestamp
245 */
f8afba91
UD
246 ixdr = (uint32_t *) cryptbuf;
247 timestamp.tv_sec = IXDR_GET_INT32 (ixdr);
248 timestamp.tv_usec = IXDR_GET_INT32 (ixdr);
800d775e
UD
249
250 /*
251 * Check for valid credentials and verifiers.
252 * They could be invalid because the key was flushed
253 * out of the cache, and so a new session should begin.
254 * Be sure and send AUTH_REJECTED{CRED, VERF} if this is the case.
255 */
256 {
257 struct timeval current;
258 int nick;
259 u_int winverf;
260
261 if (cred->adc_namekind == ADN_FULLNAME)
262 {
f8afba91
UD
263 short tmp_spot;
264
265 window = IXDR_GET_U_INT32 (ixdr);
266 winverf = IXDR_GET_U_INT32 (ixdr);
800d775e
UD
267 if (winverf != window - 1)
268 {
269 debug ("window verifier mismatch");
270 return AUTH_BADCRED; /* garbled credential */
271 }
f8afba91
UD
272 tmp_spot = cache_spot (sessionkey, cred->adc_fullname.name,
273 &timestamp);
274 if (tmp_spot < 0 || tmp_spot > AUTHDES_CACHESZ)
800d775e
UD
275 {
276 debug ("replayed credential");
277 return AUTH_REJECTEDCRED; /* replay */
278 }
f8afba91 279 sid = tmp_spot;
800d775e
UD
280 nick = 0;
281 }
282 else
283 { /* ADN_NICKNAME */
284 window = authdes_cache[sid].window;
285 nick = 1;
286 }
287
f8afba91 288 if (timestamp.tv_usec >= USEC_PER_SEC)
800d775e
UD
289 {
290 debug ("invalid usecs");
291 /* cached out (bad key), or garbled verifier */
292 return nick ? AUTH_REJECTEDVERF : AUTH_BADVERF;
293 }
f8afba91 294 if (nick && BEFORE (&timestamp, &authdes_cache[sid].laststamp))
800d775e
UD
295 {
296 debug ("timestamp before last seen");
f8afba91 297 return AUTH_REJECTEDVERF; /* replay */
800d775e 298 }
4a39c34c
ZW
299 {
300 struct timespec now;
301 __clock_gettime (CLOCK_REALTIME, &now);
302 TIMESPEC_TO_TIMEVAL (&current, &now);
303 }
800d775e
UD
304 current.tv_sec -= window; /* allow for expiration */
305 if (!BEFORE (&current, &timestamp))
306 {
307 debug ("timestamp expired");
308 /* replay, or garbled credential */
309 return nick ? AUTH_REJECTEDVERF : AUTH_BADCRED;
310 }
311 }
312
313 /*
314 * Set up the reply verifier
315 */
f8afba91 316 verf.adv_nickname = sid;
800d775e
UD
317
318 /*
319 * xdr the timestamp before encrypting
320 */
9cfe5381 321 ixdr = (uint32_t *) cryptbuf;
f8afba91
UD
322 IXDR_PUT_INT32 (ixdr, timestamp.tv_sec - 1);
323 IXDR_PUT_INT32 (ixdr, timestamp.tv_usec);
800d775e
UD
324
325 /*
326 * encrypt the timestamp
327 */
328 status = ecb_crypt ((char *) sessionkey, (char *) cryptbuf,
329 sizeof (des_block), DES_ENCRYPT | DES_HW);
330 if (DES_FAILED (status))
331 {
332 debug ("encryption failure");
333 return AUTH_FAILED; /* system error */
334 }
335 verf.adv_xtimestamp = cryptbuf[0];
336
337 /*
338 * Serialize the reply verifier, and update rqst
339 */
f8afba91
UD
340 ixdr = (uint32_t *) msg->rm_call.cb_verf.oa_base;
341 *ixdr++ = verf.adv_xtimestamp.key.high;
342 *ixdr++ = verf.adv_xtimestamp.key.low;
343 *ixdr++ = verf.adv_int_u;
800d775e
UD
344
345 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_DES;
346 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base;
347 rqst->rq_xprt->xp_verf.oa_length =
348 (char *) ixdr - msg->rm_call.cb_verf.oa_base;
349
350 /*
351 * We succeeded, commit the data to the cache now and
352 * finish cooking the credential.
353 */
354 entry = &authdes_cache[sid];
355 entry->laststamp = timestamp;
356 cache_ref (sid);
357 if (cred->adc_namekind == ADN_FULLNAME)
358 {
86187531
UD
359 size_t full_len;
360
800d775e 361 cred->adc_fullname.window = window;
f8afba91 362 cred->adc_nickname = sid; /* save nickname */
800d775e 363 if (entry->rname != NULL)
f8afba91 364 mem_free (entry->rname, strlen (entry->rname) + 1);
86187531
UD
365 full_len = strlen (cred->adc_fullname.name) + 1;
366 entry->rname = mem_alloc ((u_int) full_len);
800d775e 367 if (entry->rname != NULL)
f8afba91 368 memcpy (entry->rname, cred->adc_fullname.name, full_len);
800d775e
UD
369 else
370 {
371 debug ("out of memory");
f8afba91 372 return AUTH_FAILED; /* out of memory is bad */
800d775e
UD
373 }
374 entry->key = *sessionkey;
375 entry->window = window;
376 invalidate (entry->localcred); /* mark any cached cred invalid */
377 }
378 else
379 { /* ADN_NICKNAME */
380 /*
381 * nicknames are cooked into fullnames
382 */
383 cred->adc_namekind = ADN_FULLNAME;
384 cred->adc_fullname.name = entry->rname;
385 cred->adc_fullname.key = entry->key;
386 cred->adc_fullname.window = entry->window;
387 }
388 return AUTH_OK; /* we made it! */
389}
390
391
392/*
393 * Initialize the cache
394 */
395static void
396cache_init (void)
397{
398 register int i;
399
400 authdes_cache = (struct cache_entry *)
cdb9c321 401 calloc (sizeof (struct cache_entry) * AUTHDES_CACHESZ, 1);
f8afba91
UD
402 if (authdes_cache == NULL)
403 return;
800d775e 404
f8afba91 405 authdes_lru = (int *) mem_alloc (sizeof (int) * AUTHDES_CACHESZ);
800d775e
UD
406 /*
407 * Initialize the lru list
408 */
f8afba91
UD
409 for (i = 0; i < AUTHDES_CACHESZ; ++i)
410 authdes_lru[i] = i;
800d775e
UD
411}
412
413
414/*
415 * Find the lru victim
416 */
417static short
418cache_victim (void)
419{
f8afba91 420 return authdes_lru[AUTHDES_CACHESZ - 1];
800d775e
UD
421}
422
423/*
424 * Note that sid was referenced
425 */
426static void
f8afba91 427cache_ref (register uint32_t sid)
800d775e
UD
428{
429 register int i;
f8afba91
UD
430 register int curr;
431 register int prev;
800d775e
UD
432
433 prev = authdes_lru[0];
434 authdes_lru[0] = sid;
f8afba91 435 for (i = 1; prev != sid; ++i)
800d775e
UD
436 {
437 curr = authdes_lru[i];
438 authdes_lru[i] = prev;
439 prev = curr;
440 }
441}
442
800d775e
UD
443/*
444 * Find a spot in the cache for a credential containing
445 * the items given. Return -1 if a replay is detected, otherwise
446 * return the spot in the cache.
447 */
448static short
f8afba91
UD
449cache_spot (register des_block *key, char *name,
450 struct rpc_timeval *timestamp)
800d775e
UD
451{
452 register struct cache_entry *cp;
453 register int i;
f8afba91 454 register uint32_t hi;
800d775e
UD
455
456 hi = key->key.high;
f8afba91 457 for (cp = authdes_cache, i = 0; i < AUTHDES_CACHESZ; ++i, ++cp)
800d775e
UD
458 {
459 if (cp->key.key.high == hi &&
460 cp->key.key.low == key->key.low &&
461 cp->rname != NULL &&
50304ef0 462 memcmp (cp->rname, name, strlen (name) + 1) == 0)
800d775e
UD
463 {
464 if (BEFORE (timestamp, &cp->laststamp))
465 {
f8afba91 466 ++svcauthdes_stats.ncachereplays;
800d775e
UD
467 return -1; /* replay */
468 }
f8afba91 469 ++svcauthdes_stats.ncachehits;
800d775e
UD
470 return i; /* refresh */
471 }
472 }
f8afba91 473 ++svcauthdes_stats.ncachemisses;
800d775e
UD
474 return cache_victim (); /* new credential */
475}
476
800d775e
UD
477/*
478 * Local credential handling stuff.
479 * NOTE: bsd unix dependent.
480 * Other operating systems should put something else here.
481 */
482#define UNKNOWN -2 /* grouplen, if cached cred is unknown user */
483#define INVALID -1 /* grouplen, if cache entry is invalid */
484
485struct bsdcred
486{
487 uid_t uid; /* cached uid */
488 gid_t gid; /* cached gid */
773640b4
UD
489 int grouplen; /* length of cached groups */
490 int grouplen_max; /* length of allocated cached groups */
491 gid_t groups[0]; /* cached groups */
800d775e
UD
492};
493
494/*
495 * Map a des credential into a unix cred.
496 * We cache the credential here so the application does
497 * not have to make an rpc call every time to interpret
498 * the credential.
499 */
500int
501authdes_getucred (const struct authdes_cred *adc, uid_t * uid, gid_t * gid,
502 short *grouplen, gid_t * groups)
503{
504 unsigned sid;
505 register int i;
506 uid_t i_uid;
507 gid_t i_gid;
508 int i_grouplen;
509 struct bsdcred *cred;
510
511 sid = adc->adc_nickname;
512 if (sid >= AUTHDES_CACHESZ)
513 {
514 debug ("invalid nickname");
515 return 0;
516 }
517 cred = (struct bsdcred *) authdes_cache[sid].localcred;
773640b4 518 if (cred == NULL || cred->grouplen == INVALID)
800d775e
UD
519 {
520 /*
521 * not in cache: lookup
522 */
523 if (!netname2user (adc->adc_fullname.name, &i_uid, &i_gid,
524 &i_grouplen, groups))
525 {
526 debug ("unknown netname");
773640b4
UD
527 if (cred != NULL)
528 cred->grouplen = UNKNOWN; /* mark as lookup up, but not found */
800d775e
UD
529 return 0;
530 }
773640b4
UD
531
532 if (cred != NULL && cred->grouplen_max < i_grouplen)
533 {
534 /* We already have an allocated data structure. But it is
535 too small. */
536 free (cred);
537 authdes_cache[sid].localcred = NULL;
538 cred = NULL;
539 }
540
541 if (cred == NULL)
542 {
543 /* We should allocate room for at least NGROUPS groups. */
544 int ngroups_max = MAX (i_grouplen, NGROUPS);
545
546 cred = (struct bsdcred *) mem_alloc (sizeof (struct bsdcred)
547 + ngroups_max * sizeof (gid_t));
548 if (cred == NULL)
549 return 0;
550
551 authdes_cache[sid].localcred = (char *) cred;
552 cred->grouplen = INVALID;
553 cred->grouplen_max = ngroups_max;
554 }
555
800d775e
UD
556 debug ("missed ucred cache");
557 *uid = cred->uid = i_uid;
558 *gid = cred->gid = i_gid;
773640b4 559 cred->grouplen = i_grouplen;
f8afba91 560 for (i = i_grouplen - 1; i >= 0; --i)
773640b4
UD
561 cred->groups[i] = groups[i];
562 /* Make sure no too large values are reported. */
563 *grouplen = MIN (SHRT_MAX, i_grouplen);
800d775e
UD
564 return 1;
565 }
566 else if (cred->grouplen == UNKNOWN)
567 {
568 /*
569 * Already lookup up, but no match found
570 */
571 return 0;
572 }
573
574 /*
575 * cached credentials
576 */
577 *uid = cred->uid;
578 *gid = cred->gid;
773640b4
UD
579
580 /* Another stupidity in the interface: *grouplen is of type short.
581 So we might have to cut the information passed up short. */
582 int grouplen_copy = MIN (SHRT_MAX, cred->grouplen);
583 *grouplen = grouplen_copy;
584 for (i = grouplen_copy - 1; i >= 0; --i)
585 groups[i] = cred->groups[i];
800d775e
UD
586 return 1;
587}
021db4be 588libc_hidden_nolink_sunrpc (authdes_getucred, GLIBC_2_1)
800d775e
UD
589
590static void
591invalidate (char *cred)
592{
593 if (cred == NULL)
f8afba91 594 return;
800d775e
UD
595 ((struct bsdcred *) cred)->grouplen = INVALID;
596}