2 * Copyright (c) 2010, Oracle America, Inc.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
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.
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.
31 * svcauth_des.c, server-side des authentication
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.
39 * It is up to the server to determine if the window size is
47 #include <sys/param.h>
48 #include <netinet/in.h>
52 #include <rpc/auth_des.h>
53 #include <rpc/svc_auth.h>
55 #include <rpc/des_crypt.h>
57 #define debug(msg) /*printf("svcauth_des: %s\n", msg) */
59 #define USEC_PER_SEC ((uint32_t) 1000000L)
60 #define BEFORE(t1, t2) timercmp(t1, t2, <)
63 * LRU cache of conversation keys and some other useful items.
65 #define AUTHDES_CACHESZ 64
68 des_block key
; /* conversation key */
69 char *rname
; /* client's name */
70 u_int window
; /* credential lifetime window */
71 struct rpc_timeval laststamp
; /* detect replays of creds */
72 char *localcred
; /* generic local credential */
74 #ifdef _RPC_THREAD_SAFE_
75 #define authdes_cache RPC_THREAD_VARIABLE(authdes_cache_s)
76 #define authdes_lru RPC_THREAD_VARIABLE(authdes_lru_s)
78 static struct cache_entry
*authdes_cache
;
79 static int *authdes_lru
;
82 static void cache_init (void) internal_function
; /* initialize the cache */
83 static short cache_spot (des_block
*, char *, struct rpc_timeval
*)
84 internal_function
; /* find an entry in the cache */
85 static void cache_ref (uint32_t sid
) internal_function
;
86 /* note that sid was ref'd */
88 static void invalidate (char *cred
) internal_function
;
89 /* invalidate entry in cache */
96 u_long ncachehits
; /* times cache hit, and is not replay */
97 u_long ncachereplays
; /* times cache hit, and is replay */
98 u_long ncachemisses
; /* times cache missed */
103 * Service side authenticator for AUTH_DES
106 _svcauth_des (register struct svc_req
*rqst
, register struct rpc_msg
*msg
)
108 register uint32_t *ixdr
;
109 des_block cryptbuf
[2];
110 register struct authdes_cred
*cred
;
111 struct authdes_verf verf
;
113 register struct cache_entry
*entry
;
115 des_block
*sessionkey
;
118 struct rpc_timeval timestamp
;
122 struct authdes_cred area_cred
;
123 char area_netname
[MAXNETNAMELEN
+ 1];
127 if (authdes_cache
== NULL
)
129 if (authdes_cache
== NULL
) /* No free memory */
132 area
= (struct area
*) rqst
->rq_clntcred
;
133 cred
= (struct authdes_cred
*) &area
->area_cred
;
138 if (msg
->rm_call
.cb_cred
.oa_length
<= 0 ||
139 msg
->rm_call
.cb_cred
.oa_length
> MAX_AUTH_BYTES
)
142 ixdr
= (uint32_t *) msg
->rm_call
.cb_cred
.oa_base
;
143 cred
->adc_namekind
= IXDR_GET_ENUM (ixdr
, enum authdes_namekind
);
144 switch (cred
->adc_namekind
)
147 namelen
= IXDR_GET_U_INT32 (ixdr
);
148 if (namelen
> MAXNETNAMELEN
)
152 cred
->adc_fullname
.name
= area
->area_netname
;
153 memcpy (cred
->adc_fullname
.name
, (char *) ixdr
, namelen
);
154 cred
->adc_fullname
.name
[namelen
] = 0;
155 ixdr
+= (RNDUP (namelen
) / BYTES_PER_XDR_UNIT
);
156 cred
->adc_fullname
.key
.key
.high
= *ixdr
++;
157 cred
->adc_fullname
.key
.key
.low
= *ixdr
++;
158 cred
->adc_fullname
.window
= *ixdr
++;
161 cred
->adc_nickname
= *ixdr
++;
170 if (msg
->rm_call
.cb_verf
.oa_length
<= 0 ||
171 msg
->rm_call
.cb_verf
.oa_length
> MAX_AUTH_BYTES
)
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
++;
180 * Get the conversation key
182 if (cred
->adc_namekind
== ADN_FULLNAME
)
185 char pkey_data
[1024];
187 sessionkey
= &cred
->adc_fullname
.key
;
188 if (!getpublickey (cred
->adc_fullname
.name
, pkey_data
))
190 debug("getpublickey");
193 pkey
.n_bytes
= pkey_data
;
194 pkey
.n_len
= strlen (pkey_data
) + 1;
195 if (key_decryptsession_pk (cred
->adc_fullname
.name
, &pkey
,
198 debug ("decryptsessionkey");
199 return AUTH_BADCRED
; /* key not found */
204 if (cred
->adc_nickname
>= AUTHDES_CACHESZ
)
206 debug ("bad nickname");
207 return AUTH_BADCRED
; /* garbled credential */
210 sid
= cred
->adc_nickname
;
212 /* XXX This could be wrong, but else we have a
214 if (authdes_cache
[sid
].rname
== NULL
)
216 sessionkey
= &authdes_cache
[sid
].key
;
221 * Decrypt the timestamp
223 cryptbuf
[0] = verf
.adv_xtimestamp
;
224 if (cred
->adc_namekind
== ADN_FULLNAME
)
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
,
234 status
= ecb_crypt ((char *) sessionkey
, (char *) cryptbuf
,
235 sizeof (des_block
), DES_DECRYPT
| DES_HW
);
237 if (DES_FAILED (status
))
239 debug ("decryption failure");
240 return AUTH_FAILED
; /* system error */
244 * XDR the decrypted timestamp
246 ixdr
= (uint32_t *) cryptbuf
;
247 timestamp
.tv_sec
= IXDR_GET_INT32 (ixdr
);
248 timestamp
.tv_usec
= IXDR_GET_INT32 (ixdr
);
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.
257 struct timeval current
;
261 if (cred
->adc_namekind
== ADN_FULLNAME
)
265 window
= IXDR_GET_U_INT32 (ixdr
);
266 winverf
= IXDR_GET_U_INT32 (ixdr
);
267 if (winverf
!= window
- 1)
269 debug ("window verifier mismatch");
270 return AUTH_BADCRED
; /* garbled credential */
272 tmp_spot
= cache_spot (sessionkey
, cred
->adc_fullname
.name
,
274 if (tmp_spot
< 0 || tmp_spot
> AUTHDES_CACHESZ
)
276 debug ("replayed credential");
277 return AUTH_REJECTEDCRED
; /* replay */
284 window
= authdes_cache
[sid
].window
;
288 if (timestamp
.tv_usec
>= USEC_PER_SEC
)
290 debug ("invalid usecs");
291 /* cached out (bad key), or garbled verifier */
292 return nick
? AUTH_REJECTEDVERF
: AUTH_BADVERF
;
294 if (nick
&& BEFORE (×tamp
, &authdes_cache
[sid
].laststamp
))
296 debug ("timestamp before last seen");
297 return AUTH_REJECTEDVERF
; /* replay */
299 __gettimeofday (¤t
, (struct timezone
*) NULL
);
300 current
.tv_sec
-= window
; /* allow for expiration */
301 if (!BEFORE (¤t
, ×tamp
))
303 debug ("timestamp expired");
304 /* replay, or garbled credential */
305 return nick
? AUTH_REJECTEDVERF
: AUTH_BADCRED
;
310 * Set up the reply verifier
312 verf
.adv_nickname
= sid
;
315 * xdr the timestamp before encrypting
317 ixdr
= (uint32_t *) cryptbuf
;
318 IXDR_PUT_INT32 (ixdr
, timestamp
.tv_sec
- 1);
319 IXDR_PUT_INT32 (ixdr
, timestamp
.tv_usec
);
322 * encrypt the timestamp
324 status
= ecb_crypt ((char *) sessionkey
, (char *) cryptbuf
,
325 sizeof (des_block
), DES_ENCRYPT
| DES_HW
);
326 if (DES_FAILED (status
))
328 debug ("encryption failure");
329 return AUTH_FAILED
; /* system error */
331 verf
.adv_xtimestamp
= cryptbuf
[0];
334 * Serialize the reply verifier, and update rqst
336 ixdr
= (uint32_t *) msg
->rm_call
.cb_verf
.oa_base
;
337 *ixdr
++ = verf
.adv_xtimestamp
.key
.high
;
338 *ixdr
++ = verf
.adv_xtimestamp
.key
.low
;
339 *ixdr
++ = verf
.adv_int_u
;
341 rqst
->rq_xprt
->xp_verf
.oa_flavor
= AUTH_DES
;
342 rqst
->rq_xprt
->xp_verf
.oa_base
= msg
->rm_call
.cb_verf
.oa_base
;
343 rqst
->rq_xprt
->xp_verf
.oa_length
=
344 (char *) ixdr
- msg
->rm_call
.cb_verf
.oa_base
;
347 * We succeeded, commit the data to the cache now and
348 * finish cooking the credential.
350 entry
= &authdes_cache
[sid
];
351 entry
->laststamp
= timestamp
;
353 if (cred
->adc_namekind
== ADN_FULLNAME
)
357 cred
->adc_fullname
.window
= window
;
358 cred
->adc_nickname
= sid
; /* save nickname */
359 if (entry
->rname
!= NULL
)
360 mem_free (entry
->rname
, strlen (entry
->rname
) + 1);
361 full_len
= strlen (cred
->adc_fullname
.name
) + 1;
362 entry
->rname
= mem_alloc ((u_int
) full_len
);
363 if (entry
->rname
!= NULL
)
364 memcpy (entry
->rname
, cred
->adc_fullname
.name
, full_len
);
367 debug ("out of memory");
368 return AUTH_FAILED
; /* out of memory is bad */
370 entry
->key
= *sessionkey
;
371 entry
->window
= window
;
372 invalidate (entry
->localcred
); /* mark any cached cred invalid */
377 * nicknames are cooked into fullnames
379 cred
->adc_namekind
= ADN_FULLNAME
;
380 cred
->adc_fullname
.name
= entry
->rname
;
381 cred
->adc_fullname
.key
= entry
->key
;
382 cred
->adc_fullname
.window
= entry
->window
;
384 return AUTH_OK
; /* we made it! */
389 * Initialize the cache
397 authdes_cache
= (struct cache_entry
*)
398 calloc (sizeof (struct cache_entry
) * AUTHDES_CACHESZ
, 1);
399 if (authdes_cache
== NULL
)
402 authdes_lru
= (int *) mem_alloc (sizeof (int) * AUTHDES_CACHESZ
);
404 * Initialize the lru list
406 for (i
= 0; i
< AUTHDES_CACHESZ
; ++i
)
412 * Find the lru victim
417 return authdes_lru
[AUTHDES_CACHESZ
- 1];
421 * Note that sid was referenced
425 cache_ref (register uint32_t sid
)
431 prev
= authdes_lru
[0];
432 authdes_lru
[0] = sid
;
433 for (i
= 1; prev
!= sid
; ++i
)
435 curr
= authdes_lru
[i
];
436 authdes_lru
[i
] = prev
;
442 * Find a spot in the cache for a credential containing
443 * the items given. Return -1 if a replay is detected, otherwise
444 * return the spot in the cache.
448 cache_spot (register des_block
*key
, char *name
,
449 struct rpc_timeval
*timestamp
)
451 register struct cache_entry
*cp
;
453 register uint32_t hi
;
456 for (cp
= authdes_cache
, i
= 0; i
< AUTHDES_CACHESZ
; ++i
, ++cp
)
458 if (cp
->key
.key
.high
== hi
&&
459 cp
->key
.key
.low
== key
->key
.low
&&
461 memcmp (cp
->rname
, name
, strlen (name
) + 1) == 0)
463 if (BEFORE (timestamp
, &cp
->laststamp
))
465 ++svcauthdes_stats
.ncachereplays
;
466 return -1; /* replay */
468 ++svcauthdes_stats
.ncachehits
;
469 return i
; /* refresh */
472 ++svcauthdes_stats
.ncachemisses
;
473 return cache_victim (); /* new credential */
477 * Local credential handling stuff.
478 * NOTE: bsd unix dependent.
479 * Other operating systems should put something else here.
481 #define UNKNOWN -2 /* grouplen, if cached cred is unknown user */
482 #define INVALID -1 /* grouplen, if cache entry is invalid */
486 uid_t uid
; /* cached uid */
487 gid_t gid
; /* cached gid */
488 int grouplen
; /* length of cached groups */
489 int grouplen_max
; /* length of allocated cached groups */
490 gid_t groups
[0]; /* cached groups */
494 * Map a des credential into a unix cred.
495 * We cache the credential here so the application does
496 * not have to make an rpc call every time to interpret
500 authdes_getucred (const struct authdes_cred
*adc
, uid_t
* uid
, gid_t
* gid
,
501 short *grouplen
, gid_t
* groups
)
508 struct bsdcred
*cred
;
510 sid
= adc
->adc_nickname
;
511 if (sid
>= AUTHDES_CACHESZ
)
513 debug ("invalid nickname");
516 cred
= (struct bsdcred
*) authdes_cache
[sid
].localcred
;
517 if (cred
== NULL
|| cred
->grouplen
== INVALID
)
520 * not in cache: lookup
522 if (!netname2user (adc
->adc_fullname
.name
, &i_uid
, &i_gid
,
523 &i_grouplen
, groups
))
525 debug ("unknown netname");
527 cred
->grouplen
= UNKNOWN
; /* mark as lookup up, but not found */
531 if (cred
!= NULL
&& cred
->grouplen_max
< i_grouplen
)
533 /* We already have an allocated data structure. But it is
536 authdes_cache
[sid
].localcred
= NULL
;
542 /* We should allocate room for at least NGROUPS groups. */
543 int ngroups_max
= MAX (i_grouplen
, NGROUPS
);
545 cred
= (struct bsdcred
*) mem_alloc (sizeof (struct bsdcred
)
546 + ngroups_max
* sizeof (gid_t
));
550 authdes_cache
[sid
].localcred
= (char *) cred
;
551 cred
->grouplen
= INVALID
;
552 cred
->grouplen_max
= ngroups_max
;
555 debug ("missed ucred cache");
556 *uid
= cred
->uid
= i_uid
;
557 *gid
= cred
->gid
= i_gid
;
558 cred
->grouplen
= i_grouplen
;
559 for (i
= i_grouplen
- 1; i
>= 0; --i
)
560 cred
->groups
[i
] = groups
[i
];
561 /* Make sure no too large values are reported. */
562 *grouplen
= MIN (SHRT_MAX
, i_grouplen
);
565 else if (cred
->grouplen
== UNKNOWN
)
568 * Already lookup up, but no match found
579 /* Another stupidity in the interface: *grouplen is of type short.
580 So we might have to cut the information passed up short. */
581 int grouplen_copy
= MIN (SHRT_MAX
, cred
->grouplen
);
582 *grouplen
= grouplen_copy
;
583 for (i
= grouplen_copy
- 1; i
>= 0; --i
)
584 groups
[i
] = cred
->groups
[i
];
587 libc_hidden_nolink_sunrpc (authdes_getucred
, GLIBC_2_1
)
591 invalidate (char *cred
)
595 ((struct bsdcred
*) cred
)->grouplen
= INVALID
;