2 * Copyright (c) 2007-2010 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 * These functions implement RPCSEC_GSS security for the NFS client and server.
31 * The code is specific to the use of Kerberos v5 and the use of DES MAC MD5
32 * protection as described in Internet RFC 2203 and 2623.
34 * In contrast to the original AUTH_SYS authentication, RPCSEC_GSS is stateful.
35 * It requires the client and server negotiate a secure connection as part of a
36 * security context. The context state is maintained in client and server structures.
37 * On the client side, each user of an NFS mount is assigned their own context,
38 * identified by UID, on their first use of the mount, and it persists until the
39 * unmount or until the context is renewed. Each user context has a corresponding
40 * server context which the server maintains until the client destroys it, or
41 * until the context expires.
43 * The client and server contexts are set up dynamically. When a user attempts
44 * to send an NFS request, if there is no context for the user, then one is
45 * set up via an exchange of NFS null procedure calls as described in RFC 2203.
46 * During this exchange, the client and server pass a security token that is
47 * forwarded via Mach upcall to the gssd, which invokes the GSS-API to authenticate
48 * the user to the server (and vice-versa). The client and server also receive
49 * a unique session key that can be used to digitally sign the credentials and
50 * verifier or optionally to provide data integrity and/or privacy.
52 * Once the context is complete, the client and server enter a normal data
53 * exchange phase - beginning with the NFS request that prompted the context
54 * creation. During this phase, the client's RPC header contains an RPCSEC_GSS
55 * credential and verifier, and the server returns a verifier as well.
56 * For simple authentication, the verifier contains a signed checksum of the
57 * RPC header, including the credential. The server's verifier has a signed
58 * checksum of the current sequence number.
60 * Each client call contains a sequence number that nominally increases by one
61 * on each request. The sequence number is intended to prevent replay attacks.
62 * Since the protocol can be used over UDP, there is some allowance for
63 * out-of-sequence requests, so the server checks whether the sequence numbers
64 * are within a sequence "window". If a sequence number is outside the lower
65 * bound of the window, the server silently drops the request. This has some
66 * implications for retransmission. If a request needs to be retransmitted, the
67 * client must bump the sequence number even if the request XID is unchanged.
69 * When the NFS mount is unmounted, the client sends a "destroy" credential
70 * to delete the server's context for each user of the mount. Since it's
71 * possible for the client to crash or disconnect without sending the destroy
72 * message, the server has a thread that reaps contexts that have been idle
77 #include <sys/param.h>
78 #include <sys/systm.h>
80 #include <sys/kauth.h>
81 #include <sys/kernel.h>
82 #include <sys/mount_internal.h>
83 #include <sys/vnode.h>
85 #include <sys/malloc.h>
86 #include <sys/kpi_mbuf.h>
88 #include <kern/host.h>
89 #include <libkern/libkern.h>
91 #include <mach/task.h>
92 #include <mach/task_special_ports.h>
93 #include <mach/host_priv.h>
94 #include <mach/thread_act.h>
95 #include <mach/mig_errors.h>
96 #include <mach/vm_map.h>
97 #include <vm/vm_map.h>
98 #include <vm/vm_kern.h>
99 #include <gssd/gssd_mach.h>
101 #include <nfs/rpcv2.h>
102 #include <nfs/nfsproto.h>
104 #include <nfs/nfsnode.h>
105 #include <nfs/nfs_gss.h>
106 #include <nfs/nfsmount.h>
107 #include <nfs/xdr_subs.h>
108 #include <nfs/nfsm_subs.h>
109 #include <nfs/nfs_gss.h>
111 #include "nfs_gss_crypto.h"
113 #define NFS_GSS_MACH_MAX_RETRIES 3
118 MD5_DESCBC_CTX m_ctx
;
119 HMAC_SHA1_DES3KD_CTX h_ctx
;
123 #define MAX_DIGEST SHA_DIGEST_LENGTH
124 #ifdef NFS_KERNEL_DEBUG
125 #define HASHLEN(ki) (((ki)->hash_len > MAX_DIGEST) ? \
126 (panic("nfs_gss.c:%d ki->hash_len is invalid = %d\n", __LINE__, (ki)->hash_len), MAX_DIGEST) : (ki)->hash_len)
128 #define HASHLEN(ki) (((ki)->hash_len > MAX_DIGEST) ? \
129 (printf("nfs_gss.c:%d ki->hash_len is invalid = %d\n", __LINE__, (ki)->hash_len), MAX_DIGEST) : (ki)->hash_len)
133 u_long nfs_gss_svc_ctx_hash
;
134 struct nfs_gss_svc_ctx_hashhead
*nfs_gss_svc_ctx_hashtbl
;
135 lck_mtx_t
*nfs_gss_svc_ctx_mutex
;
136 lck_grp_t
*nfs_gss_svc_grp
;
137 uint32_t nfsrv_gss_context_ttl
= GSS_CTX_EXPIRE
;
138 #define GSS_SVC_CTX_TTL ((uint64_t)max(2*GSS_CTX_PEND, nfsrv_gss_context_ttl) * NSEC_PER_SEC)
139 #endif /* NFSSERVER */
142 lck_grp_t
*nfs_gss_clnt_grp
;
144 #endif /* NFSCLIENT */
147 * These octet strings are used to encode/decode ASN.1 tokens
148 * in the RPCSEC_GSS verifiers.
150 static u_char krb5_tokhead
[] __attribute__((unused
)) = { 0x60, 0x23 };
151 u_char krb5_mech
[11] = { 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x12, 0x01, 0x02, 0x02 };
152 static u_char krb5_mic
[] = { 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff };
153 static u_char krb5_mic3
[] = { 0x01, 0x01, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff };
154 static u_char krb5_wrap
[] = { 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff };
155 static u_char krb5_wrap3
[] = { 0x02, 0x01, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff };
156 static u_char iv0
[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // DES MAC Initialization Vector
158 #define ALG_MIC(ki) (((ki)->type == NFS_GSS_1DES) ? krb5_mic : krb5_mic3)
159 #define ALG_WRAP(ki) (((ki)->type == NFS_GSS_1DES) ? krb5_wrap : krb5_wrap3)
162 * The size of the Kerberos v5 ASN.1 token
165 * Note that the second octet of the krb5_tokhead (0x23) is a
166 * DER-encoded size field that has variable length. If the size
167 * is 128 bytes or greater, then it uses two bytes, three bytes
168 * if 65536 or greater, and so on. Since the MIC tokens are
169 * separate from the data, the size is always the same: 35 bytes (0x23).
170 * However, the wrap token is different. Its size field includes the
171 * size of the token + the encrypted data that follows. So the size
172 * field may be two, three or four bytes.
174 #define KRB5_SZ_TOKHEAD sizeof(krb5_tokhead)
175 #define KRB5_SZ_MECH sizeof(krb5_mech)
176 #define KRB5_SZ_ALG sizeof(krb5_mic) // 8 - same as krb5_wrap
177 #define KRB5_SZ_SEQ 8
178 #define KRB5_SZ_EXTRA 3 // a wrap token may be longer by up to this many octets
179 #define KRB5_SZ_TOKEN_NOSUM (KRB5_SZ_TOKHEAD + KRB5_SZ_MECH + KRB5_SZ_ALG + KRB5_SZ_SEQ)
180 #define KRB5_SZ_TOKEN(cksumlen) ((cksumlen) + KRB5_SZ_TOKEN_NOSUM)
181 #define KRB5_SZ_TOKMAX(cksumlen) (KRB5_SZ_TOKEN(cksumlen) + KRB5_SZ_EXTRA)
184 static int nfs_gss_clnt_ctx_find(struct nfsreq
*);
185 static int nfs_gss_clnt_ctx_failover(struct nfsreq
*);
186 static int nfs_gss_clnt_ctx_init(struct nfsreq
*, struct nfs_gss_clnt_ctx
*);
187 static int nfs_gss_clnt_ctx_init_retry(struct nfsreq
*, struct nfs_gss_clnt_ctx
*);
188 static int nfs_gss_clnt_ctx_callserver(struct nfsreq
*, struct nfs_gss_clnt_ctx
*);
189 static char *nfs_gss_clnt_svcname(struct nfsmount
*);
190 static int nfs_gss_clnt_gssd_upcall(struct nfsreq
*, struct nfs_gss_clnt_ctx
*);
191 static void nfs_gss_clnt_ctx_remove(struct nfsmount
*, struct nfs_gss_clnt_ctx
*);
192 #endif /* NFSCLIENT */
195 static struct nfs_gss_svc_ctx
*nfs_gss_svc_ctx_find(uint32_t);
196 static void nfs_gss_svc_ctx_insert(struct nfs_gss_svc_ctx
*);
197 static void nfs_gss_svc_ctx_timer(void *, void *);
198 static int nfs_gss_svc_gssd_upcall(struct nfs_gss_svc_ctx
*);
199 static int nfs_gss_svc_seqnum_valid(struct nfs_gss_svc_ctx
*, uint32_t);
200 #endif /* NFSSERVER */
202 static void task_release_special_port(mach_port_t
);
203 static mach_port_t
task_copy_special_port(mach_port_t
);
204 static void nfs_gss_mach_alloc_buffer(u_char
*, uint32_t, vm_map_copy_t
*);
205 static int nfs_gss_mach_vmcopyout(vm_map_copy_t
, uint32_t, u_char
*);
206 static int nfs_gss_token_get(gss_key_info
*ki
, u_char
*, u_char
*, int, uint32_t *, u_char
*);
207 static int nfs_gss_token_put(gss_key_info
*ki
, u_char
*, u_char
*, int, int, u_char
*);
208 static int nfs_gss_der_length_size(int);
209 static void nfs_gss_der_length_put(u_char
**, int);
210 static int nfs_gss_der_length_get(u_char
**);
211 static int nfs_gss_mchain_length(mbuf_t
);
212 static int nfs_gss_append_chain(struct nfsm_chain
*, mbuf_t
);
213 static void nfs_gss_nfsm_chain(struct nfsm_chain
*, mbuf_t
);
214 static void nfs_gss_cksum_mchain(gss_key_info
*, mbuf_t
, u_char
*, int, int, u_char
*);
215 static void nfs_gss_cksum_chain(gss_key_info
*, struct nfsm_chain
*, u_char
*, int, int, u_char
*);
216 static void nfs_gss_cksum_rep(gss_key_info
*, uint32_t, u_char
*);
217 static void nfs_gss_encrypt_mchain(gss_key_info
*, mbuf_t
, int, int, int);
218 static void nfs_gss_encrypt_chain(gss_key_info
*, struct nfsm_chain
*, int, int, int);
220 static void gss_digest_Init(GSS_DIGEST_CTX
*, gss_key_info
*);
221 static void gss_digest_Update(GSS_DIGEST_CTX
*, void *, size_t);
222 static void gss_digest_Final(GSS_DIGEST_CTX
*, void *);
223 static void gss_des_crypt(gss_key_info
*, des_cblock
*, des_cblock
*,
224 int32_t, des_cblock
*, des_cblock
*, int, int);
225 static int gss_key_init(gss_key_info
*, uint32_t);
228 thread_call_t nfs_gss_svc_ctx_timer_call
;
229 int nfs_gss_timer_on
= 0;
230 uint32_t nfs_gss_ctx_count
= 0;
231 const uint32_t nfs_gss_ctx_max
= GSS_SVC_MAXCONTEXTS
;
232 #endif /* NFSSERVER */
235 * Initialization when NFS starts
241 nfs_gss_clnt_grp
= lck_grp_alloc_init("rpcsec_gss_clnt", LCK_GRP_ATTR_NULL
);
242 #endif /* NFSCLIENT */
245 nfs_gss_svc_grp
= lck_grp_alloc_init("rpcsec_gss_svc", LCK_GRP_ATTR_NULL
);
247 nfs_gss_svc_ctx_hashtbl
= hashinit(SVC_CTX_HASHSZ
, M_TEMP
, &nfs_gss_svc_ctx_hash
);
248 nfs_gss_svc_ctx_mutex
= lck_mtx_alloc_init(nfs_gss_svc_grp
, LCK_ATTR_NULL
);
250 nfs_gss_svc_ctx_timer_call
= thread_call_allocate(nfs_gss_svc_ctx_timer
, NULL
);
251 #endif /* NFSSERVER */
257 * Is it OK to fall back to using AUTH_SYS?
260 nfs_gss_sysok(struct nfsreq
*req
)
262 struct nfsmount
*nmp
= req
->r_nmp
;
265 if (req
->r_wrongsec
) /* Not OK if we're trying to handle a wrongsec error */
267 if (!nmp
->nm_sec
.count
) /* assume it's OK if we don't have a set of flavors */
269 for (i
=0; i
< nmp
->nm_sec
.count
; i
++)
270 if (nmp
->nm_sec
.flavors
[i
] == RPCAUTH_SYS
)
276 * Find the context for a particular user.
278 * If the context doesn't already exist
279 * then create a new context for this user.
281 * Note that the code allows superuser (uid == 0)
282 * to adopt the context of another user.
285 nfs_gss_clnt_ctx_find(struct nfsreq
*req
)
287 struct nfsmount
*nmp
= req
->r_nmp
;
288 struct nfs_gss_clnt_ctx
*cp
;
289 uid_t uid
= kauth_cred_getuid(req
->r_cred
);
292 lck_mtx_lock(&nmp
->nm_lock
);
293 TAILQ_FOREACH(cp
, &nmp
->nm_gsscl
, gss_clnt_entries
) {
294 if (cp
->gss_clnt_uid
== uid
) {
295 if (cp
->gss_clnt_flags
& GSS_CTX_INVAL
)
297 nfs_gss_clnt_ctx_ref(req
, cp
);
298 lck_mtx_unlock(&nmp
->nm_lock
);
305 * If superuser is trying to get access, then co-opt
306 * the first valid context in the list.
307 * XXX Ultimately, we need to allow superuser to
308 * go ahead and attempt to set up its own context
309 * in case one is set up for it.
311 TAILQ_FOREACH(cp
, &nmp
->nm_gsscl
, gss_clnt_entries
) {
312 if (!(cp
->gss_clnt_flags
& GSS_CTX_INVAL
)) {
313 nfs_gss_clnt_ctx_ref(req
, cp
);
314 lck_mtx_unlock(&nmp
->nm_lock
);
321 * Not found - create a new context
325 * If the thread is async, then it cannot get
326 * kerberos creds and set up a proper context.
327 * If no sec= mount option is given, attempt
328 * to failover to sec=sys.
330 if (req
->r_thread
== NULL
) {
331 if (nfs_gss_sysok(req
)) {
332 error
= nfs_gss_clnt_ctx_failover(req
);
334 printf("nfs_gss_clnt_ctx_find: no context for async\n");
335 error
= NFSERR_EAUTH
;
338 lck_mtx_unlock(&nmp
->nm_lock
);
342 MALLOC(cp
, struct nfs_gss_clnt_ctx
*, sizeof(*cp
), M_TEMP
, M_WAITOK
|M_ZERO
);
344 lck_mtx_unlock(&nmp
->nm_lock
);
348 cp
->gss_clnt_uid
= uid
;
349 cp
->gss_clnt_mtx
= lck_mtx_alloc_init(nfs_gss_clnt_grp
, LCK_ATTR_NULL
);
350 cp
->gss_clnt_thread
= current_thread();
351 nfs_gss_clnt_ctx_ref(req
, cp
);
352 TAILQ_INSERT_TAIL(&nmp
->nm_gsscl
, cp
, gss_clnt_entries
);
353 lck_mtx_unlock(&nmp
->nm_lock
);
355 error
= nfs_gss_clnt_ctx_init_retry(req
, cp
); // Initialize new context
357 nfs_gss_clnt_ctx_unref(req
);
360 * If we failed to set up a Kerberos context for this
361 * user and no sec= mount option was given, but the
362 * server indicated that it could support AUTH_SYS, then set
363 * up a dummy context that allows this user to attempt
366 if (error
&& nfs_gss_sysok(req
) &&
367 (error
!= ENXIO
) && (error
!= ETIMEDOUT
)) {
368 lck_mtx_lock(&nmp
->nm_lock
);
369 error
= nfs_gss_clnt_ctx_failover(req
);
370 lck_mtx_unlock(&nmp
->nm_lock
);
377 * Set up a dummy context to allow the use of sec=sys
378 * for this user, if the server allows sec=sys.
379 * The context is valid for GSS_CLNT_SYS_VALID seconds,
380 * so that the user will periodically attempt to fail back
381 * and get a real credential.
383 * Assumes context list (nm_lock) is locked
386 nfs_gss_clnt_ctx_failover(struct nfsreq
*req
)
388 struct nfsmount
*nmp
= req
->r_nmp
;
389 struct nfs_gss_clnt_ctx
*cp
;
390 uid_t uid
= kauth_cred_getuid(req
->r_cred
);
393 MALLOC(cp
, struct nfs_gss_clnt_ctx
*, sizeof(*cp
), M_TEMP
, M_WAITOK
|M_ZERO
);
397 cp
->gss_clnt_service
= RPCSEC_GSS_SVC_SYS
;
398 cp
->gss_clnt_uid
= uid
;
399 cp
->gss_clnt_mtx
= lck_mtx_alloc_init(nfs_gss_clnt_grp
, LCK_ATTR_NULL
);
401 cp
->gss_clnt_ctime
= now
.tv_sec
; // time stamp
402 nfs_gss_clnt_ctx_ref(req
, cp
);
403 TAILQ_INSERT_TAIL(&nmp
->nm_gsscl
, cp
, gss_clnt_entries
);
409 * Inserts an RPCSEC_GSS credential into an RPC header.
410 * After the credential is inserted, the code continues
411 * to build the verifier which contains a signed checksum
415 nfs_gss_clnt_cred_put(struct nfsreq
*req
, struct nfsm_chain
*nmc
, mbuf_t args
)
417 struct nfs_gss_clnt_ctx
*cp
;
420 int slpflag
, recordmark
= 0;
421 int start
, len
, offset
= 0;
423 struct nfsm_chain nmc_tmp
;
425 u_char tokbuf
[KRB5_SZ_TOKMAX(MAX_DIGEST
)];
426 u_char cksum
[MAX_DIGEST
];
432 slpflag
|= (NMFLAG(req
->r_nmp
, INTR
) && req
->r_thread
&& !(req
->r_flags
& R_NOINTR
)) ? PCATCH
: 0;
433 recordmark
= (req
->r_nmp
->nm_sotype
== SOCK_STREAM
);
436 if (req
->r_gss_ctx
== NULL
) {
438 * Find the context for this user.
439 * If no context is found, one will
442 error
= nfs_gss_clnt_ctx_find(req
);
449 * If it's a dummy context for a user that's using
450 * a fallback to sec=sys, then just return an error
451 * so rpchead can encode an RPCAUTH_UNIX cred.
453 if (cp
->gss_clnt_service
== RPCSEC_GSS_SVC_SYS
) {
455 * The dummy context is valid for just
456 * GSS_CLNT_SYS_VALID seconds. If the context
457 * is older than this, mark it invalid and try
458 * again to get a real one.
460 lck_mtx_lock(cp
->gss_clnt_mtx
);
462 if (now
.tv_sec
> cp
->gss_clnt_ctime
+ GSS_CLNT_SYS_VALID
) {
463 cp
->gss_clnt_flags
|= GSS_CTX_INVAL
;
464 lck_mtx_unlock(cp
->gss_clnt_mtx
);
465 nfs_gss_clnt_ctx_unref(req
);
468 lck_mtx_unlock(cp
->gss_clnt_mtx
);
473 * If the context thread isn't null, then the context isn't
474 * yet complete and is for the exclusive use of the thread
475 * doing the context setup. Wait until the context thread
478 lck_mtx_lock(cp
->gss_clnt_mtx
);
479 if (cp
->gss_clnt_thread
&& cp
->gss_clnt_thread
!= current_thread()) {
480 cp
->gss_clnt_flags
|= GSS_NEEDCTX
;
481 msleep(cp
, cp
->gss_clnt_mtx
, slpflag
| PDROP
, "ctxwait", NULL
);
483 if ((error
= nfs_sigintr(req
->r_nmp
, req
, req
->r_thread
, 0)))
485 nfs_gss_clnt_ctx_unref(req
);
488 lck_mtx_unlock(cp
->gss_clnt_mtx
);
490 ki
= &cp
->gss_clnt_kinfo
;
491 if (cp
->gss_clnt_flags
& GSS_CTX_COMPLETE
) {
493 * Get a sequence number for this request.
494 * Check whether the oldest request in the window is complete.
495 * If it's still pending, then wait until it's done before
496 * we allocate a new sequence number and allow this request
499 lck_mtx_lock(cp
->gss_clnt_mtx
);
500 while (win_getbit(cp
->gss_clnt_seqbits
,
501 ((cp
->gss_clnt_seqnum
- cp
->gss_clnt_seqwin
) + 1) % cp
->gss_clnt_seqwin
)) {
502 cp
->gss_clnt_flags
|= GSS_NEEDSEQ
;
503 msleep(cp
, cp
->gss_clnt_mtx
, slpflag
| PDROP
, "seqwin", NULL
);
505 if ((error
= nfs_sigintr(req
->r_nmp
, req
, req
->r_thread
, 0))) {
508 lck_mtx_lock(cp
->gss_clnt_mtx
);
509 if (cp
->gss_clnt_flags
& GSS_CTX_INVAL
) {
510 /* Renewed while while we were waiting */
511 lck_mtx_unlock(cp
->gss_clnt_mtx
);
512 nfs_gss_clnt_ctx_unref(req
);
516 seqnum
= ++cp
->gss_clnt_seqnum
;
517 win_setbit(cp
->gss_clnt_seqbits
, seqnum
% cp
->gss_clnt_seqwin
);
518 lck_mtx_unlock(cp
->gss_clnt_mtx
);
520 MALLOC(gsp
, struct gss_seq
*, sizeof(*gsp
), M_TEMP
, M_WAITOK
|M_ZERO
);
523 gsp
->gss_seqnum
= seqnum
;
524 SLIST_INSERT_HEAD(&req
->r_gss_seqlist
, gsp
, gss_seqnext
);
527 /* Insert the credential */
528 nfsm_chain_add_32(error
, nmc
, RPCSEC_GSS
);
529 nfsm_chain_add_32(error
, nmc
, 5 * NFSX_UNSIGNED
+ cp
->gss_clnt_handle_len
);
530 nfsm_chain_add_32(error
, nmc
, RPCSEC_GSS_VERS_1
);
531 nfsm_chain_add_32(error
, nmc
, cp
->gss_clnt_proc
);
532 nfsm_chain_add_32(error
, nmc
, seqnum
);
533 nfsm_chain_add_32(error
, nmc
, cp
->gss_clnt_service
);
534 nfsm_chain_add_32(error
, nmc
, cp
->gss_clnt_handle_len
);
535 if (cp
->gss_clnt_handle_len
> 0) {
536 if (cp
->gss_clnt_handle
== NULL
)
538 nfsm_chain_add_opaque(error
, nmc
, cp
->gss_clnt_handle
, cp
->gss_clnt_handle_len
);
543 * Now add the verifier
545 if (cp
->gss_clnt_proc
== RPCSEC_GSS_INIT
||
546 cp
->gss_clnt_proc
== RPCSEC_GSS_CONTINUE_INIT
) {
548 * If the context is still being created
549 * then use a null verifier.
551 nfsm_chain_add_32(error
, nmc
, RPCAUTH_NULL
); // flavor
552 nfsm_chain_add_32(error
, nmc
, 0); // length
553 nfsm_chain_build_done(error
, nmc
);
555 nfs_gss_append_chain(nmc
, args
);
559 offset
= recordmark
? NFSX_UNSIGNED
: 0; // record mark
560 nfsm_chain_build_done(error
, nmc
);
561 nfs_gss_cksum_chain(ki
, nmc
, ALG_MIC(ki
), offset
, 0, cksum
);
563 toklen
= nfs_gss_token_put(ki
, ALG_MIC(ki
), tokbuf
, 1, 0, cksum
);
564 nfsm_chain_add_32(error
, nmc
, RPCSEC_GSS
); // flavor
565 nfsm_chain_add_32(error
, nmc
, toklen
); // length
566 nfsm_chain_add_opaque(error
, nmc
, tokbuf
, toklen
);
567 nfsm_chain_build_done(error
, nmc
);
572 * Now we may have to compute integrity or encrypt the call args
573 * per RFC 2203 Section 5.3.2
575 switch (cp
->gss_clnt_service
) {
576 case RPCSEC_GSS_SVC_NONE
:
577 nfs_gss_append_chain(nmc
, args
);
579 case RPCSEC_GSS_SVC_INTEGRITY
:
580 len
= nfs_gss_mchain_length(args
); // Find args length
581 req
->r_gss_arglen
= len
; // Stash the args len
582 len
+= NFSX_UNSIGNED
; // Add seqnum length
583 nfsm_chain_add_32(error
, nmc
, len
); // and insert it
584 start
= nfsm_chain_offset(nmc
);
585 nfsm_chain_add_32(error
, nmc
, seqnum
); // Insert seqnum
586 req
->r_gss_argoff
= nfsm_chain_offset(nmc
); // Offset to args
587 nfsm_chain_build_done(error
, nmc
);
590 nfs_gss_append_chain(nmc
, args
); // Append the args mbufs
592 /* Now compute a checksum over the seqnum + args */
593 nfs_gss_cksum_chain(ki
, nmc
, ALG_MIC(ki
), start
, len
, cksum
);
595 /* Insert it into a token and append to the request */
596 toklen
= nfs_gss_token_put(ki
, ALG_MIC(ki
), tokbuf
, 1, 0, cksum
);
597 nfsm_chain_finish_mbuf(error
, nmc
); // force checksum into new mbuf
598 nfsm_chain_add_32(error
, nmc
, toklen
);
599 nfsm_chain_add_opaque(error
, nmc
, tokbuf
, toklen
);
600 nfsm_chain_build_done(error
, nmc
);
602 case RPCSEC_GSS_SVC_PRIVACY
:
603 /* Prepend a new mbuf with the confounder & sequence number */
604 nfsm_chain_build_alloc_init(error
, &nmc_tmp
, 3 * NFSX_UNSIGNED
);
605 nfsm_chain_add_32(error
, &nmc_tmp
, random()); // confounder bytes 1-4
606 nfsm_chain_add_32(error
, &nmc_tmp
, random()); // confounder bytes 4-8
607 nfsm_chain_add_32(error
, &nmc_tmp
, seqnum
);
608 nfsm_chain_build_done(error
, &nmc_tmp
);
611 nfs_gss_append_chain(&nmc_tmp
, args
); // Append the args mbufs
613 len
= nfs_gss_mchain_length(args
); // Find args length
614 len
+= 3 * NFSX_UNSIGNED
; // add confounder & seqnum
615 req
->r_gss_arglen
= len
; // Stash length
618 * Append a pad trailer - per RFC 1964 section 1.2.2.3
619 * Since XDR data is always 32-bit aligned, it
620 * needs to be padded either by 4 bytes or 8 bytes.
622 nfsm_chain_finish_mbuf(error
, &nmc_tmp
); // force padding into new mbuf
624 nfsm_chain_add_32(error
, &nmc_tmp
, 0x04040404);
625 len
+= NFSX_UNSIGNED
;
627 nfsm_chain_add_32(error
, &nmc_tmp
, 0x08080808);
628 nfsm_chain_add_32(error
, &nmc_tmp
, 0x08080808);
629 len
+= 2 * NFSX_UNSIGNED
;
631 nfsm_chain_build_done(error
, &nmc_tmp
);
633 /* Now compute a checksum over the confounder + seqnum + args */
634 nfs_gss_cksum_chain(ki
, &nmc_tmp
, ALG_WRAP(ki
), 0, len
, cksum
);
636 /* Insert it into a token */
637 toklen
= nfs_gss_token_put(ki
, ALG_WRAP(ki
), tokbuf
, 1, len
, cksum
);
638 nfsm_chain_add_32(error
, nmc
, toklen
+ len
); // token + args length
639 nfsm_chain_add_opaque_nopad(error
, nmc
, tokbuf
, toklen
);
640 req
->r_gss_argoff
= nfsm_chain_offset(nmc
); // Stash offset
641 nfsm_chain_build_done(error
, nmc
);
644 nfs_gss_append_chain(nmc
, nmc_tmp
.nmc_mhead
); // Append the args mbufs
646 /* Finally, encrypt the args */
647 nfs_gss_encrypt_chain(ki
, &nmc_tmp
, 0, len
, DES_ENCRYPT
);
649 /* Add null XDR pad if the ASN.1 token misaligned the data */
650 pad
= nfsm_pad(toklen
+ len
);
652 nfsm_chain_add_opaque_nopad(error
, nmc
, iv0
, pad
);
653 nfsm_chain_build_done(error
, nmc
);
662 * When receiving a reply, the client checks the verifier
663 * returned by the server. Check that the verifier is the
664 * correct type, then extract the sequence number checksum
665 * from the token in the credential and compare it with a
666 * computed checksum of the sequence number in the request
670 nfs_gss_clnt_verf_get(
672 struct nfsm_chain
*nmc
,
675 uint32_t *accepted_statusp
)
677 u_char tokbuf
[KRB5_SZ_TOKMAX(MAX_DIGEST
)];
678 u_char cksum1
[MAX_DIGEST
], cksum2
[MAX_DIGEST
];
680 struct nfs_gss_clnt_ctx
*cp
= req
->r_gss_ctx
;
681 struct nfsm_chain nmc_tmp
;
683 uint32_t reslen
, start
, cksumlen
, toklen
;
685 gss_key_info
*ki
= &cp
->gss_clnt_kinfo
;
687 reslen
= cksumlen
= 0;
688 *accepted_statusp
= 0;
691 return (NFSERR_EAUTH
);
693 * If it's not an RPCSEC_GSS verifier, then it has to
694 * be a null verifier that resulted from either
695 * a CONTINUE_NEEDED reply during context setup or
696 * from the reply to an AUTH_UNIX call from a dummy
697 * context that resulted from a fallback to sec=sys.
699 if (verftype
!= RPCSEC_GSS
) {
700 if (verftype
!= RPCAUTH_NULL
)
701 return (NFSERR_EAUTH
);
702 if (cp
->gss_clnt_flags
& GSS_CTX_COMPLETE
&&
703 cp
->gss_clnt_service
!= RPCSEC_GSS_SVC_SYS
)
704 return (NFSERR_EAUTH
);
706 nfsm_chain_adv(error
, nmc
, nfsm_rndup(verflen
));
707 nfsm_chain_get_32(error
, nmc
, *accepted_statusp
);
712 * If we received an RPCSEC_GSS verifier but the
713 * context isn't yet complete, then it must be
714 * the context complete message from the server.
715 * The verifier will contain an encrypted checksum
716 * of the window but we don't have the session key
717 * yet so we can't decrypt it. Stash the verifier
718 * and check it later in nfs_gss_clnt_ctx_init() when
719 * the context is complete.
721 if (!(cp
->gss_clnt_flags
& GSS_CTX_COMPLETE
)) {
722 MALLOC(cp
->gss_clnt_verf
, u_char
*, verflen
, M_TEMP
, M_WAITOK
|M_ZERO
);
723 if (cp
->gss_clnt_verf
== NULL
)
725 nfsm_chain_get_opaque(error
, nmc
, verflen
, cp
->gss_clnt_verf
);
726 nfsm_chain_get_32(error
, nmc
, *accepted_statusp
);
730 if (verflen
!= KRB5_SZ_TOKEN(ki
->hash_len
))
731 return (NFSERR_EAUTH
);
734 * Get the 8 octet sequence number
735 * checksum out of the verifier token.
737 nfsm_chain_get_opaque(error
, nmc
, verflen
, tokbuf
);
740 error
= nfs_gss_token_get(ki
, ALG_MIC(ki
), tokbuf
, 0, NULL
, cksum1
);
745 * Search the request sequence numbers for this reply, starting
746 * with the most recent, looking for a checksum that matches
747 * the one in the verifier returned by the server.
749 SLIST_FOREACH(gsp
, &req
->r_gss_seqlist
, gss_seqnext
) {
750 nfs_gss_cksum_rep(ki
, gsp
->gss_seqnum
, cksum2
);
751 if (bcmp(cksum1
, cksum2
, HASHLEN(ki
)) == 0)
755 return (NFSERR_EAUTH
);
758 * Get the RPC accepted status
760 nfsm_chain_get_32(error
, nmc
, *accepted_statusp
);
761 if (*accepted_statusp
!= RPC_SUCCESS
)
765 * Now we may have to check integrity or decrypt the results
766 * per RFC 2203 Section 5.3.2
768 switch (cp
->gss_clnt_service
) {
769 case RPCSEC_GSS_SVC_NONE
:
772 case RPCSEC_GSS_SVC_INTEGRITY
:
774 * Here's what we expect in the integrity results:
776 * - length of seq num + results (4 bytes)
777 * - sequence number (4 bytes)
778 * - results (variable bytes)
779 * - length of checksum token (37)
780 * - checksum of seqnum + results (37 bytes)
782 nfsm_chain_get_32(error
, nmc
, reslen
); // length of results
783 if (reslen
> NFS_MAXPACKET
) {
788 /* Compute a checksum over the sequence number + results */
789 start
= nfsm_chain_offset(nmc
);
790 nfs_gss_cksum_chain(ki
, nmc
, ALG_MIC(ki
), start
, reslen
, cksum1
);
793 * Get the sequence number prepended to the results
794 * and compare it against the list in the request.
796 nfsm_chain_get_32(error
, nmc
, seqnum
);
797 SLIST_FOREACH(gsp
, &req
->r_gss_seqlist
, gss_seqnext
) {
798 if (seqnum
== gsp
->gss_seqnum
)
807 * Advance to the end of the results and
808 * fetch the checksum computed by the server.
811 reslen
-= NFSX_UNSIGNED
; // already skipped seqnum
812 nfsm_chain_adv(error
, &nmc_tmp
, reslen
); // skip over the results
813 nfsm_chain_get_32(error
, &nmc_tmp
, cksumlen
); // length of checksum
814 if (cksumlen
!= KRB5_SZ_TOKEN(ki
->hash_len
)) {
818 nfsm_chain_get_opaque(error
, &nmc_tmp
, cksumlen
, tokbuf
);
821 error
= nfs_gss_token_get(ki
, ALG_MIC(ki
), tokbuf
, 0, NULL
, cksum2
);
825 /* Verify that the checksums are the same */
826 if (bcmp(cksum1
, cksum2
, HASHLEN(ki
)) != 0) {
831 case RPCSEC_GSS_SVC_PRIVACY
:
833 * Here's what we expect in the privacy results:
835 * - length of confounder + seq num + token + results
836 * - wrap token (37-40 bytes)
837 * - confounder (8 bytes)
838 * - sequence number (4 bytes)
839 * - results (encrypted)
841 nfsm_chain_get_32(error
, nmc
, reslen
); // length of results
842 if (reslen
> NFS_MAXPACKET
) {
847 /* Get the token that prepends the encrypted results */
848 nfsm_chain_get_opaque(error
, nmc
, KRB5_SZ_TOKMAX(ki
->hash_len
), tokbuf
);
851 error
= nfs_gss_token_get(ki
, ALG_WRAP(ki
), tokbuf
, 0,
855 nfsm_chain_reverse(nmc
, nfsm_pad(toklen
));
856 reslen
-= toklen
; // size of confounder + seqnum + results
858 /* decrypt the confounder + sequence number + results */
859 start
= nfsm_chain_offset(nmc
);
860 nfs_gss_encrypt_chain(ki
, nmc
, start
, reslen
, DES_DECRYPT
);
862 /* Compute a checksum over the confounder + sequence number + results */
863 nfs_gss_cksum_chain(ki
, nmc
, ALG_WRAP(ki
), start
, reslen
, cksum2
);
865 /* Verify that the checksums are the same */
866 if (bcmp(cksum1
, cksum2
, HASHLEN(ki
)) != 0) {
871 nfsm_chain_adv(error
, nmc
, 8); // skip over the confounder
874 * Get the sequence number prepended to the results
875 * and compare it against the list in the request.
877 nfsm_chain_get_32(error
, nmc
, seqnum
);
878 SLIST_FOREACH(gsp
, &req
->r_gss_seqlist
, gss_seqnext
) {
879 if (seqnum
== gsp
->gss_seqnum
)
894 * An RPCSEC_GSS request with no integrity or privacy consists
895 * of just the header mbufs followed by the arg mbufs.
897 * However, integrity or privacy both trailer mbufs to the args,
898 * which means we have to do some work to restore the arg mbuf
899 * chain to its previous state in case we need to retransmit.
901 * The location and length of the args is marked by two fields
902 * in the request structure: r_gss_argoff and r_gss_arglen,
903 * which are stashed when the NFS request is built.
906 nfs_gss_clnt_args_restore(struct nfsreq
*req
)
908 struct nfs_gss_clnt_ctx
*cp
= req
->r_gss_ctx
;
909 struct nfsm_chain mchain
, *nmc
= &mchain
;
913 return (NFSERR_EAUTH
);
915 if ((cp
->gss_clnt_flags
& GSS_CTX_COMPLETE
) == 0)
918 nfsm_chain_dissect_init(error
, nmc
, req
->r_mhead
); // start at RPC header
919 nfsm_chain_adv(error
, nmc
, req
->r_gss_argoff
); // advance to args
923 switch (cp
->gss_clnt_service
) {
924 case RPCSEC_GSS_SVC_NONE
:
927 case RPCSEC_GSS_SVC_INTEGRITY
:
929 * All we have to do here is remove the appended checksum mbufs.
930 * We know that the checksum starts in a new mbuf beyond the end
933 nfsm_chain_adv(error
, nmc
, req
->r_gss_arglen
); // adv to last args mbuf
937 mbuf_freem(mbuf_next(nmc
->nmc_mcur
)); // free the cksum mbuf
938 error
= mbuf_setnext(nmc
->nmc_mcur
, NULL
);
940 case RPCSEC_GSS_SVC_PRIVACY
:
942 * The args are encrypted along with prepended confounders and seqnum.
943 * First we decrypt, the confounder, seqnum and args then skip to the
944 * final mbuf of the args.
945 * The arglen includes 8 bytes of confounder and 4 bytes of seqnum.
946 * Finally, we remove between 4 and 8 bytes of encryption padding
947 * as well as any alignment padding in the trailing mbuf.
949 len
= req
->r_gss_arglen
;
950 len
+= len
% 8 > 0 ? 4 : 8; // add DES padding length
951 nfs_gss_encrypt_chain(&cp
->gss_clnt_kinfo
, nmc
,
952 req
->r_gss_argoff
, len
, DES_DECRYPT
);
953 nfsm_chain_adv(error
, nmc
, req
->r_gss_arglen
);
956 mbuf_freem(mbuf_next(nmc
->nmc_mcur
)); // free the pad mbuf
957 error
= mbuf_setnext(nmc
->nmc_mcur
, NULL
);
965 * This function sets up a new context on the client.
966 * Context setup alternates upcalls to the gssd with NFS nullproc calls
967 * to the server. Each of these calls exchanges an opaque token, obtained
968 * via the gssd's calls into the GSS-API on either the client or the server.
969 * This cycle of calls ends when the client's upcall to the gssd and the
970 * server's response both return GSS_S_COMPLETE. At this point, the client
971 * should have its session key and a handle that it can use to refer to its
972 * new context on the server.
975 nfs_gss_clnt_ctx_init(struct nfsreq
*req
, struct nfs_gss_clnt_ctx
*cp
)
977 struct nfsmount
*nmp
= req
->r_nmp
;
978 int client_complete
= 0;
979 int server_complete
= 0;
980 u_char cksum1
[MAX_DIGEST
], cksum2
[MAX_DIGEST
];
983 gss_key_info
*ki
= &cp
->gss_clnt_kinfo
;
985 /* Initialize a new client context */
987 cp
->gss_clnt_svcname
= nfs_gss_clnt_svcname(nmp
);
988 if (cp
->gss_clnt_svcname
== NULL
) {
989 error
= NFSERR_EAUTH
;
993 cp
->gss_clnt_proc
= RPCSEC_GSS_INIT
;
995 cp
->gss_clnt_service
=
996 req
->r_auth
== RPCAUTH_KRB5
? RPCSEC_GSS_SVC_NONE
:
997 req
->r_auth
== RPCAUTH_KRB5I
? RPCSEC_GSS_SVC_INTEGRITY
:
998 req
->r_auth
== RPCAUTH_KRB5P
? RPCSEC_GSS_SVC_PRIVACY
: 0;
1000 cp
->gss_clnt_gssd_flags
= (nfs_single_des
? GSSD_NFS_1DES
: 0);
1002 * Now loop around alternating gss_init_sec_context and
1003 * gss_accept_sec_context upcalls to the gssd on the client
1004 * and server side until the context is complete - or fails.
1009 /* Upcall to the gss_init_sec_context in the gssd */
1010 error
= nfs_gss_clnt_gssd_upcall(req
, cp
);
1014 if (cp
->gss_clnt_major
== GSS_S_COMPLETE
) {
1015 client_complete
= 1;
1016 if (server_complete
)
1018 } else if (cp
->gss_clnt_major
!= GSS_S_CONTINUE_NEEDED
) {
1019 error
= NFSERR_EAUTH
;
1024 * Pass the token to the server.
1026 error
= nfs_gss_clnt_ctx_callserver(req
, cp
);
1028 if (cp
->gss_clnt_proc
== RPCSEC_GSS_INIT
&&
1029 (cp
->gss_clnt_gssd_flags
& (GSSD_RESTART
| GSSD_NFS_1DES
)) == 0) {
1030 cp
->gss_clnt_gssd_flags
= (GSSD_RESTART
| GSSD_NFS_1DES
);
1031 if (cp
->gss_clnt_token
)
1032 FREE(cp
->gss_clnt_token
, M_TEMP
);
1033 cp
->gss_clnt_token
= NULL
;
1034 cp
->gss_clnt_tokenlen
= 0;
1037 // Reset flags, if error = ENEEDAUTH we will try 3des again
1038 cp
->gss_clnt_gssd_flags
= 0;
1041 if (cp
->gss_clnt_major
== GSS_S_COMPLETE
) {
1042 server_complete
= 1;
1043 if (client_complete
)
1045 } else if (cp
->gss_clnt_major
!= GSS_S_CONTINUE_NEEDED
) {
1046 error
= NFSERR_EAUTH
;
1050 cp
->gss_clnt_proc
= RPCSEC_GSS_CONTINUE_INIT
;
1054 * The context is apparently established successfully
1056 lck_mtx_lock(cp
->gss_clnt_mtx
);
1057 cp
->gss_clnt_flags
|= GSS_CTX_COMPLETE
;
1058 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1059 cp
->gss_clnt_proc
= RPCSEC_GSS_DATA
;
1061 cp
->gss_clnt_ctime
= now
.tv_sec
; // time stamp
1065 * Compute checksum of the server's window
1067 nfs_gss_cksum_rep(ki
, cp
->gss_clnt_seqwin
, cksum1
);
1070 * and see if it matches the one in the
1071 * verifier the server returned.
1073 error
= nfs_gss_token_get(ki
, ALG_MIC(ki
), cp
->gss_clnt_verf
, 0,
1075 FREE(cp
->gss_clnt_verf
, M_TEMP
);
1076 cp
->gss_clnt_verf
= NULL
;
1078 if (error
|| bcmp(cksum1
, cksum2
, HASHLEN(ki
)) != 0) {
1079 error
= NFSERR_EAUTH
;
1084 * Set an initial sequence number somewhat randomized.
1085 * Start small so we don't overflow GSS_MAXSEQ too quickly.
1086 * Add the size of the sequence window so seqbits arithmetic
1087 * doesn't go negative.
1089 cp
->gss_clnt_seqnum
= (random() & 0xffff) + cp
->gss_clnt_seqwin
;
1092 * Allocate a bitmap to keep track of which requests
1093 * are pending within the sequence number window.
1095 MALLOC(cp
->gss_clnt_seqbits
, uint32_t *,
1096 nfsm_rndup((cp
->gss_clnt_seqwin
+ 7) / 8), M_TEMP
, M_WAITOK
|M_ZERO
);
1097 if (cp
->gss_clnt_seqbits
== NULL
)
1098 error
= NFSERR_EAUTH
;
1101 * If the error is ENEEDAUTH we're not done, so no need
1102 * to wake up other threads again. This thread will retry in
1103 * the find or renew routines.
1105 if (error
== ENEEDAUTH
)
1109 * If there's an error, just mark it as invalid.
1110 * It will be removed when the reference count
1113 lck_mtx_lock(cp
->gss_clnt_mtx
);
1115 cp
->gss_clnt_flags
|= GSS_CTX_INVAL
;
1118 * Wake any threads waiting to use the context
1120 cp
->gss_clnt_thread
= NULL
;
1121 if (cp
->gss_clnt_flags
& GSS_NEEDCTX
) {
1122 cp
->gss_clnt_flags
&= ~GSS_NEEDCTX
;
1125 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1131 * This function calls nfs_gss_clnt_ctx_init() to set up a new context.
1132 * But if there's a failure in trying to establish the context it keeps
1133 * retrying at progressively longer intervals in case the failure is
1134 * due to some transient condition. For instance, the server might be
1135 * failing the context setup because directory services is not coming
1136 * up in a timely fashion.
1139 nfs_gss_clnt_ctx_init_retry(struct nfsreq
*req
, struct nfs_gss_clnt_ctx
*cp
)
1141 struct nfsmount
*nmp
= req
->r_nmp
;
1146 int timeo
= NFS_TRYLATERDEL
;
1153 /* For an "intr" mount allow a signal to interrupt the retries */
1154 slpflag
= (NMFLAG(nmp
, INTR
) && !(req
->r_flags
& R_NOINTR
)) ? PCATCH
: 0;
1156 while ((error
= nfs_gss_clnt_ctx_init(req
, cp
)) == ENEEDAUTH
) {
1158 waituntil
= now
.tv_sec
+ timeo
;
1159 while (now
.tv_sec
< waituntil
) {
1160 tsleep(&lbolt
, PSOCK
| slpflag
, "nfs_gss_clnt_ctx_init_retry", 0);
1162 error
= nfs_sigintr(req
->r_nmp
, req
, current_thread(), 0);
1169 /* If it's a soft mount just give up after a while */
1170 if (NMFLAG(nmp
, SOFT
) && (retries
> nmp
->nm_retry
)) {
1180 return 0; // success
1183 * Give up on this context
1185 lck_mtx_lock(cp
->gss_clnt_mtx
);
1186 cp
->gss_clnt_flags
|= GSS_CTX_INVAL
;
1189 * Wake any threads waiting to use the context
1191 cp
->gss_clnt_thread
= NULL
;
1192 if (cp
->gss_clnt_flags
& GSS_NEEDCTX
) {
1193 cp
->gss_clnt_flags
&= ~GSS_NEEDCTX
;
1196 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1202 * Call the NFS server using a null procedure for context setup.
1203 * Even though it's a null procedure and nominally has no arguments
1204 * RFC 2203 requires that the GSS-API token be passed as an argument
1205 * and received as a reply.
1208 nfs_gss_clnt_ctx_callserver(struct nfsreq
*req
, struct nfs_gss_clnt_ctx
*cp
)
1210 struct nfsm_chain nmreq
, nmrep
;
1211 int error
= 0, status
;
1216 nfsm_chain_null(&nmreq
);
1217 nfsm_chain_null(&nmrep
);
1218 sz
= NFSX_UNSIGNED
+ nfsm_rndup(cp
->gss_clnt_tokenlen
);
1219 nfsm_chain_build_alloc_init(error
, &nmreq
, sz
);
1220 nfsm_chain_add_32(error
, &nmreq
, cp
->gss_clnt_tokenlen
);
1221 if (cp
->gss_clnt_tokenlen
> 0)
1222 nfsm_chain_add_opaque(error
, &nmreq
, cp
->gss_clnt_token
, cp
->gss_clnt_tokenlen
);
1223 nfsm_chain_build_done(error
, &nmreq
);
1227 /* Call the server */
1228 error
= nfs_request_gss(req
->r_nmp
->nm_mountp
, &nmreq
, req
->r_thread
, req
->r_cred
,
1229 (req
->r_flags
& R_OPTMASK
), cp
, &nmrep
, &status
);
1230 if (cp
->gss_clnt_token
!= NULL
) {
1231 FREE(cp
->gss_clnt_token
, M_TEMP
);
1232 cp
->gss_clnt_token
= NULL
;
1239 /* Get the server's reply */
1241 nfsm_chain_get_32(error
, &nmrep
, cp
->gss_clnt_handle_len
);
1242 if (cp
->gss_clnt_handle
!= NULL
) {
1243 FREE(cp
->gss_clnt_handle
, M_TEMP
);
1244 cp
->gss_clnt_handle
= NULL
;
1246 if (cp
->gss_clnt_handle_len
> 0) {
1247 MALLOC(cp
->gss_clnt_handle
, u_char
*, cp
->gss_clnt_handle_len
, M_TEMP
, M_WAITOK
);
1248 if (cp
->gss_clnt_handle
== NULL
) {
1252 nfsm_chain_get_opaque(error
, &nmrep
, cp
->gss_clnt_handle_len
, cp
->gss_clnt_handle
);
1254 nfsm_chain_get_32(error
, &nmrep
, cp
->gss_clnt_major
);
1255 nfsm_chain_get_32(error
, &nmrep
, cp
->gss_clnt_minor
);
1256 nfsm_chain_get_32(error
, &nmrep
, cp
->gss_clnt_seqwin
);
1257 nfsm_chain_get_32(error
, &nmrep
, cp
->gss_clnt_tokenlen
);
1260 if (cp
->gss_clnt_tokenlen
> 0) {
1261 MALLOC(cp
->gss_clnt_token
, u_char
*, cp
->gss_clnt_tokenlen
, M_TEMP
, M_WAITOK
);
1262 if (cp
->gss_clnt_token
== NULL
) {
1266 nfsm_chain_get_opaque(error
, &nmrep
, cp
->gss_clnt_tokenlen
, cp
->gss_clnt_token
);
1270 * Make sure any unusual errors are expanded and logged by gssd
1272 if (cp
->gss_clnt_major
!= GSS_S_COMPLETE
&&
1273 cp
->gss_clnt_major
!= GSS_S_CONTINUE_NEEDED
) {
1274 char who
[] = "server";
1275 char unknown
[] = "<unknown>";
1277 (void) mach_gss_log_error(
1279 !req
->r_nmp
? unknown
:
1280 vfs_statfs(req
->r_nmp
->nm_mountp
)->f_mntfromname
,
1284 cp
->gss_clnt_minor
);
1288 nfsm_chain_cleanup(&nmreq
);
1289 nfsm_chain_cleanup(&nmrep
);
1295 * Ugly hack to get the service principal from the f_mntfromname field in
1296 * the statfs struct. We assume a format of server:path. We don't currently
1297 * support url's or other bizarre formats like path@server. A better solution
1298 * here might be to allow passing the service principal down in the mount args.
1299 * For kerberos we just use the default realm.
1302 nfs_gss_clnt_svcname(struct nfsmount
*nmp
)
1304 char *svcname
, *d
, *mntfromhere
;
1309 mntfromhere
= &vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
[0];
1310 len
= strlen(mntfromhere
) + 5; /* "nfs/" plus null */
1311 MALLOC(svcname
, char *, len
, M_TEMP
, M_NOWAIT
);
1312 if (svcname
== NULL
)
1314 strlcpy(svcname
, "nfs/", len
);
1315 strlcat(svcname
, mntfromhere
, len
);
1316 d
= strchr(svcname
, ':');
1324 * Make an upcall to the gssd using Mach RPC
1325 * The upcall is made using a task special port.
1326 * This allows launchd to fire up the gssd in the
1327 * user's session. This is important, since gssd
1328 * must have access to the user's credential cache.
1331 nfs_gss_clnt_gssd_upcall(struct nfsreq
*req
, struct nfs_gss_clnt_ctx
*cp
)
1334 gssd_byte_buffer okey
= NULL
;
1335 uint32_t skeylen
= 0;
1337 vm_map_copy_t itoken
= NULL
;
1338 gssd_byte_buffer otoken
= NULL
;
1339 mach_msg_type_number_t otokenlen
;
1345 * NFS currently only supports default principals or
1346 * principals based on the uid of the caller.
1348 * N.B. Note we define a one character array for the principal
1349 * so that we can hold an empty string required by mach, since
1350 * the kernel is being compiled with -Wwrite-strings.
1353 if (!IPC_PORT_VALID(cp
->gss_clnt_mport
)) {
1354 kr
= task_get_gssd_port(get_threadtask(req
->r_thread
), &cp
->gss_clnt_mport
);
1355 if (kr
!= KERN_SUCCESS
) {
1356 printf("nfs_gss_clnt_gssd_upcall: can't get gssd port, status %x (%d)\n", kr
, kr
);
1359 if (!IPC_PORT_VALID(cp
->gss_clnt_mport
)) {
1360 printf("nfs_gss_clnt_gssd_upcall: gssd port not valid\n");
1361 cp
->gss_clnt_mport
= NULL
;
1366 if (cp
->gss_clnt_tokenlen
> 0)
1367 nfs_gss_mach_alloc_buffer(cp
->gss_clnt_token
, cp
->gss_clnt_tokenlen
, &itoken
);
1370 kr
= mach_gss_init_sec_context(
1373 (gssd_byte_buffer
) itoken
, (mach_msg_type_number_t
) cp
->gss_clnt_tokenlen
,
1376 cp
->gss_clnt_svcname
,
1378 cp
->gss_clnt_gssd_flags
,
1379 &cp
->gss_clnt_context
,
1380 &cp
->gss_clnt_cred_handle
,
1382 &okey
, (mach_msg_type_number_t
*) &skeylen
,
1383 &otoken
, &otokenlen
,
1384 &cp
->gss_clnt_major
,
1385 &cp
->gss_clnt_minor
);
1387 cp
->gss_clnt_gssd_flags
&= ~GSSD_RESTART
;
1389 if (kr
!= KERN_SUCCESS
) {
1390 printf("nfs_gss_clnt_gssd_upcall: mach_gss_init_sec_context failed: %x (%d)\n", kr
, kr
);
1391 if (kr
== MIG_SERVER_DIED
&& cp
->gss_clnt_cred_handle
== 0 &&
1392 retry_cnt
++ < NFS_GSS_MACH_MAX_RETRIES
) {
1393 if (cp
->gss_clnt_tokenlen
> 0)
1394 nfs_gss_mach_alloc_buffer(cp
->gss_clnt_token
, cp
->gss_clnt_tokenlen
, &itoken
);
1397 task_release_special_port(cp
->gss_clnt_mport
);
1398 cp
->gss_clnt_mport
= NULL
;
1403 * Make sure any unusual errors are expanded and logged by gssd
1405 if (cp
->gss_clnt_major
!= GSS_S_COMPLETE
&&
1406 cp
->gss_clnt_major
!= GSS_S_CONTINUE_NEEDED
) {
1407 char who
[] = "client";
1408 char unknown
[] = "<unknown>";
1410 (void) mach_gss_log_error(
1412 !req
->r_nmp
? unknown
:
1413 vfs_statfs(req
->r_nmp
->nm_mountp
)->f_mntfromname
,
1417 cp
->gss_clnt_minor
);
1421 if (skeylen
!= SKEYLEN
&& skeylen
!= SKEYLEN3
) {
1422 printf("nfs_gss_clnt_gssd_upcall: bad key length (%d)\n", skeylen
);
1423 vm_map_copy_discard((vm_map_copy_t
) okey
);
1424 vm_map_copy_discard((vm_map_copy_t
) otoken
);
1427 error
= nfs_gss_mach_vmcopyout((vm_map_copy_t
) okey
, skeylen
,
1428 cp
->gss_clnt_kinfo
.skey
);
1430 vm_map_copy_discard((vm_map_copy_t
) otoken
);
1434 error
= gss_key_init(&cp
->gss_clnt_kinfo
, skeylen
);
1439 /* Free context token used as input */
1440 if (cp
->gss_clnt_token
)
1441 FREE(cp
->gss_clnt_token
, M_TEMP
);
1442 cp
->gss_clnt_token
= NULL
;
1443 cp
->gss_clnt_tokenlen
= 0;
1445 if (otokenlen
> 0) {
1446 /* Set context token to gss output token */
1447 MALLOC(cp
->gss_clnt_token
, u_char
*, otokenlen
, M_TEMP
, M_WAITOK
);
1448 if (cp
->gss_clnt_token
== NULL
) {
1449 printf("nfs_gss_clnt_gssd_upcall: could not allocate %d bytes\n", otokenlen
);
1450 vm_map_copy_discard((vm_map_copy_t
) otoken
);
1453 error
= nfs_gss_mach_vmcopyout((vm_map_copy_t
) otoken
, otokenlen
, cp
->gss_clnt_token
);
1455 FREE(cp
->gss_clnt_token
, M_TEMP
);
1456 cp
->gss_clnt_token
= NULL
;
1457 return (NFSERR_EAUTH
);
1459 cp
->gss_clnt_tokenlen
= otokenlen
;
1465 if (cp
->gss_clnt_token
)
1466 FREE(cp
->gss_clnt_token
, M_TEMP
);
1467 cp
->gss_clnt_token
= NULL
;
1468 cp
->gss_clnt_tokenlen
= 0;
1470 return (NFSERR_EAUTH
);
1474 * Invoked at the completion of an RPC call that uses an RPCSEC_GSS
1475 * credential. The sequence number window that the server returns
1476 * at context setup indicates the maximum number of client calls that
1477 * can be outstanding on a context. The client maintains a bitmap that
1478 * represents the server's window. Each pending request has a bit set
1479 * in the window bitmap. When a reply comes in or times out, we reset
1480 * the bit in the bitmap and if there are any other threads waiting for
1481 * a context slot we notify the waiting thread(s).
1483 * Note that if a request is retransmitted, it will have a single XID
1484 * but it may be associated with multiple sequence numbers. So we
1485 * may have to reset multiple sequence number bits in the window bitmap.
1488 nfs_gss_clnt_rpcdone(struct nfsreq
*req
)
1490 struct nfs_gss_clnt_ctx
*cp
= req
->r_gss_ctx
;
1491 struct gss_seq
*gsp
, *ngsp
;
1494 if (cp
== NULL
|| !(cp
->gss_clnt_flags
& GSS_CTX_COMPLETE
))
1495 return; // no context - don't bother
1497 * Reset the bit for this request in the
1498 * sequence number window to indicate it's done.
1499 * We do this even if the request timed out.
1501 lck_mtx_lock(cp
->gss_clnt_mtx
);
1502 gsp
= SLIST_FIRST(&req
->r_gss_seqlist
);
1503 if (gsp
&& gsp
->gss_seqnum
> (cp
->gss_clnt_seqnum
- cp
->gss_clnt_seqwin
))
1504 win_resetbit(cp
->gss_clnt_seqbits
,
1505 gsp
->gss_seqnum
% cp
->gss_clnt_seqwin
);
1508 * Limit the seqnum list to GSS_CLNT_SEQLISTMAX entries
1510 SLIST_FOREACH_SAFE(gsp
, &req
->r_gss_seqlist
, gss_seqnext
, ngsp
) {
1511 if (++i
> GSS_CLNT_SEQLISTMAX
) {
1512 SLIST_REMOVE(&req
->r_gss_seqlist
, gsp
, gss_seq
, gss_seqnext
);
1518 * If there's a thread waiting for
1519 * the window to advance, wake it up.
1521 if (cp
->gss_clnt_flags
& GSS_NEEDSEQ
) {
1522 cp
->gss_clnt_flags
&= ~GSS_NEEDSEQ
;
1525 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1529 * Create a reference to a context from a request
1530 * and bump the reference count
1533 nfs_gss_clnt_ctx_ref(struct nfsreq
*req
, struct nfs_gss_clnt_ctx
*cp
)
1535 req
->r_gss_ctx
= cp
;
1537 lck_mtx_lock(cp
->gss_clnt_mtx
);
1538 cp
->gss_clnt_refcnt
++;
1539 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1543 * Remove a context reference from a request
1544 * If the reference count drops to zero, and the
1545 * context is invalid, destroy the context
1548 nfs_gss_clnt_ctx_unref(struct nfsreq
*req
)
1550 struct nfsmount
*nmp
= req
->r_nmp
;
1551 struct nfs_gss_clnt_ctx
*cp
= req
->r_gss_ctx
;
1556 req
->r_gss_ctx
= NULL
;
1558 lck_mtx_lock(cp
->gss_clnt_mtx
);
1559 if (--cp
->gss_clnt_refcnt
== 0
1560 && cp
->gss_clnt_flags
& GSS_CTX_INVAL
) {
1561 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1564 lck_mtx_lock(&nmp
->nm_lock
);
1565 nfs_gss_clnt_ctx_remove(nmp
, cp
);
1567 lck_mtx_unlock(&nmp
->nm_lock
);
1571 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1578 nfs_gss_clnt_ctx_remove(struct nfsmount
*nmp
, struct nfs_gss_clnt_ctx
*cp
)
1581 * If dequeueing, assume nmp->nm_lock is held
1584 TAILQ_REMOVE(&nmp
->nm_gsscl
, cp
, gss_clnt_entries
);
1586 task_release_special_port(cp
->gss_clnt_mport
);
1588 if (cp
->gss_clnt_mtx
)
1589 lck_mtx_destroy(cp
->gss_clnt_mtx
, nfs_gss_clnt_grp
);
1590 if (cp
->gss_clnt_handle
)
1591 FREE(cp
->gss_clnt_handle
, M_TEMP
);
1592 if (cp
->gss_clnt_seqbits
)
1593 FREE(cp
->gss_clnt_seqbits
, M_TEMP
);
1594 if (cp
->gss_clnt_token
)
1595 FREE(cp
->gss_clnt_token
, M_TEMP
);
1596 if (cp
->gss_clnt_svcname
)
1597 FREE(cp
->gss_clnt_svcname
, M_TEMP
);
1602 * The context for a user is invalid.
1603 * Mark the context as invalid, then
1604 * create a new context.
1607 nfs_gss_clnt_ctx_renew(struct nfsreq
*req
)
1609 struct nfs_gss_clnt_ctx
*cp
= req
->r_gss_ctx
;
1610 struct nfsmount
*nmp
= req
->r_nmp
;
1611 struct nfs_gss_clnt_ctx
*ncp
;
1614 mach_port_t saved_mport
;
1619 lck_mtx_lock(cp
->gss_clnt_mtx
);
1620 if (cp
->gss_clnt_flags
& GSS_CTX_INVAL
) {
1621 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1622 nfs_gss_clnt_ctx_unref(req
);
1623 return (0); // already being renewed
1625 saved_uid
= cp
->gss_clnt_uid
;
1626 saved_mport
= task_copy_special_port(cp
->gss_clnt_mport
);
1628 /* Remove the old context */
1629 cp
->gss_clnt_flags
|= GSS_CTX_INVAL
;
1632 * If there's a thread waiting
1633 * in the old context, wake it up.
1635 if (cp
->gss_clnt_flags
& (GSS_NEEDCTX
| GSS_NEEDSEQ
)) {
1636 cp
->gss_clnt_flags
&= ~GSS_NEEDSEQ
;
1639 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1642 * Create a new context
1644 MALLOC(ncp
, struct nfs_gss_clnt_ctx
*, sizeof(*ncp
),
1645 M_TEMP
, M_WAITOK
|M_ZERO
);
1651 ncp
->gss_clnt_uid
= saved_uid
;
1652 ncp
->gss_clnt_mport
= task_copy_special_port(saved_mport
); // re-use the gssd port
1653 ncp
->gss_clnt_mtx
= lck_mtx_alloc_init(nfs_gss_clnt_grp
, LCK_ATTR_NULL
);
1654 ncp
->gss_clnt_thread
= current_thread();
1655 lck_mtx_lock(&nmp
->nm_lock
);
1656 TAILQ_INSERT_TAIL(&nmp
->nm_gsscl
, ncp
, gss_clnt_entries
);
1657 lck_mtx_unlock(&nmp
->nm_lock
);
1659 /* Adjust reference counts to new and old context */
1660 nfs_gss_clnt_ctx_unref(req
);
1661 nfs_gss_clnt_ctx_ref(req
, ncp
);
1663 error
= nfs_gss_clnt_ctx_init_retry(req
, ncp
); // Initialize new context
1665 task_release_special_port(saved_mport
);
1667 nfs_gss_clnt_ctx_unref(req
);
1673 * Destroy all the contexts associated with a mount.
1674 * The contexts are also destroyed by the server.
1677 nfs_gss_clnt_ctx_unmount(struct nfsmount
*nmp
)
1679 struct nfs_gss_clnt_ctx
*cp
;
1680 struct nfsm_chain nmreq
, nmrep
;
1687 lck_mtx_lock(&nmp
->nm_lock
);
1688 cp
= TAILQ_FIRST(&nmp
->nm_gsscl
);
1689 lck_mtx_unlock(&nmp
->nm_lock
);
1693 nfs_gss_clnt_ctx_ref(&req
, cp
);
1696 * Tell the server to destroy its context.
1697 * But don't bother if it's a forced unmount
1698 * or if it's a dummy sec=sys context.
1700 if (!(nmp
->nm_state
& NFSSTA_FORCE
) && (cp
->gss_clnt_service
!= RPCSEC_GSS_SVC_SYS
)) {
1702 struct posix_cred temp_pcred
;
1704 bzero((caddr_t
) &temp_pcred
, sizeof(temp_pcred
));
1705 temp_pcred
.cr_ngroups
= 1;
1706 temp_pcred
.cr_uid
= cp
->gss_clnt_uid
;
1707 cred
= posix_cred_create(&temp_pcred
);
1708 cp
->gss_clnt_proc
= RPCSEC_GSS_DESTROY
;
1711 nfsm_chain_null(&nmreq
);
1712 nfsm_chain_null(&nmrep
);
1713 nfsm_chain_build_alloc_init(error
, &nmreq
, 0);
1714 nfsm_chain_build_done(error
, &nmreq
);
1716 nfs_request_gss(nmp
->nm_mountp
, &nmreq
,
1717 current_thread(), cred
, 0, cp
, &nmrep
, &status
);
1718 nfsm_chain_cleanup(&nmreq
);
1719 nfsm_chain_cleanup(&nmrep
);
1720 kauth_cred_unref(&cred
);
1724 * Mark the context invalid then drop
1725 * the reference to remove it if its
1728 lck_mtx_lock(cp
->gss_clnt_mtx
);
1729 cp
->gss_clnt_flags
|= GSS_CTX_INVAL
;
1730 lck_mtx_unlock(cp
->gss_clnt_mtx
);
1731 nfs_gss_clnt_ctx_unref(&req
);
1735 #endif /* NFSCLIENT */
1745 * Find a server context based on a handle value received
1746 * in an RPCSEC_GSS credential.
1748 static struct nfs_gss_svc_ctx
*
1749 nfs_gss_svc_ctx_find(uint32_t handle
)
1751 struct nfs_gss_svc_ctx_hashhead
*head
;
1752 struct nfs_gss_svc_ctx
*cp
;
1758 head
= &nfs_gss_svc_ctx_hashtbl
[SVC_CTX_HASH(handle
)];
1760 * Don't return a context that is going to expire in GSS_CTX_PEND seconds
1762 clock_interval_to_deadline(GSS_CTX_PEND
, NSEC_PER_SEC
, &timenow
);
1764 lck_mtx_lock(nfs_gss_svc_ctx_mutex
);
1766 LIST_FOREACH(cp
, head
, gss_svc_entries
) {
1767 if (cp
->gss_svc_handle
== handle
) {
1768 if (timenow
> cp
->gss_svc_incarnation
+ GSS_SVC_CTX_TTL
) {
1770 * Context has or is about to expire. Don't use.
1771 * We'll return null and the client will have to create
1774 cp
->gss_svc_handle
= 0;
1776 * Make sure though that we stay around for GSS_CTX_PEND seconds
1777 * for other threads that might be using the context.
1779 cp
->gss_svc_incarnation
= timenow
;
1784 lck_mtx_lock(cp
->gss_svc_mtx
);
1785 cp
->gss_svc_refcnt
++;
1786 lck_mtx_unlock(cp
->gss_svc_mtx
);
1791 lck_mtx_unlock(nfs_gss_svc_ctx_mutex
);
1797 * Insert a new server context into the hash table
1798 * and start the context reap thread if necessary.
1801 nfs_gss_svc_ctx_insert(struct nfs_gss_svc_ctx
*cp
)
1803 struct nfs_gss_svc_ctx_hashhead
*head
;
1804 struct nfs_gss_svc_ctx
*p
;
1806 lck_mtx_lock(nfs_gss_svc_ctx_mutex
);
1809 * Give the client a random handle so that if we reboot
1810 * it's unlikely the client will get a bad context match.
1811 * Make sure it's not zero or already assigned.
1814 cp
->gss_svc_handle
= random();
1815 if (cp
->gss_svc_handle
== 0)
1817 head
= &nfs_gss_svc_ctx_hashtbl
[SVC_CTX_HASH(cp
->gss_svc_handle
)];
1818 LIST_FOREACH(p
, head
, gss_svc_entries
)
1819 if (p
->gss_svc_handle
== cp
->gss_svc_handle
)
1822 clock_interval_to_deadline(GSS_CTX_PEND
, NSEC_PER_SEC
,
1823 &cp
->gss_svc_incarnation
);
1824 LIST_INSERT_HEAD(head
, cp
, gss_svc_entries
);
1825 nfs_gss_ctx_count
++;
1827 if (!nfs_gss_timer_on
) {
1828 nfs_gss_timer_on
= 1;
1830 nfs_interval_timer_start(nfs_gss_svc_ctx_timer_call
,
1831 min(GSS_TIMER_PERIOD
, max(GSS_CTX_TTL_MIN
, nfsrv_gss_context_ttl
)) * MSECS_PER_SEC
);
1834 lck_mtx_unlock(nfs_gss_svc_ctx_mutex
);
1838 * This function is called via the kernel's callout
1839 * mechanism. It runs only when there are
1840 * cached RPCSEC_GSS contexts.
1843 nfs_gss_svc_ctx_timer(__unused
void *param1
, __unused
void *param2
)
1845 struct nfs_gss_svc_ctx
*cp
, *next
;
1850 lck_mtx_lock(nfs_gss_svc_ctx_mutex
);
1851 clock_get_uptime(&timenow
);
1854 * Scan all the hash chains
1856 for (i
= 0; i
< SVC_CTX_HASHSZ
; i
++) {
1858 * For each hash chain, look for entries
1859 * that haven't been used in a while.
1861 LIST_FOREACH_SAFE(cp
, &nfs_gss_svc_ctx_hashtbl
[i
], gss_svc_entries
, next
) {
1863 if (timenow
> cp
->gss_svc_incarnation
+
1864 (cp
->gss_svc_handle
? GSS_SVC_CTX_TTL
: 0)
1865 && cp
->gss_svc_refcnt
== 0) {
1867 * A stale context - remove it
1869 LIST_REMOVE(cp
, gss_svc_entries
);
1870 if (cp
->gss_svc_seqbits
)
1871 FREE(cp
->gss_svc_seqbits
, M_TEMP
);
1872 lck_mtx_destroy(cp
->gss_svc_mtx
, nfs_gss_svc_grp
);
1879 nfs_gss_ctx_count
= contexts
;
1882 * If there are still some cached contexts left,
1883 * set up another callout to check on them later.
1885 nfs_gss_timer_on
= nfs_gss_ctx_count
> 0;
1886 if (nfs_gss_timer_on
)
1887 nfs_interval_timer_start(nfs_gss_svc_ctx_timer_call
,
1888 min(GSS_TIMER_PERIOD
, max(GSS_CTX_TTL_MIN
, nfsrv_gss_context_ttl
)) * MSECS_PER_SEC
);
1890 lck_mtx_unlock(nfs_gss_svc_ctx_mutex
);
1894 * Here the server receives an RPCSEC_GSS credential in an
1895 * RPC call header. First there's some checking to make sure
1896 * the credential is appropriate - whether the context is still
1897 * being set up, or is complete. Then we use the handle to find
1898 * the server's context and validate the verifier, which contains
1899 * a signed checksum of the RPC header. If the verifier checks
1900 * out, we extract the user's UID and groups from the context
1901 * and use it to set up a UNIX credential for the user's request.
1904 nfs_gss_svc_cred_get(struct nfsrv_descript
*nd
, struct nfsm_chain
*nmc
)
1906 uint32_t vers
, proc
, seqnum
, service
;
1907 uint32_t handle
, handle_len
;
1908 struct nfs_gss_svc_ctx
*cp
= NULL
;
1909 uint32_t flavor
= 0, verflen
= 0;
1911 uint32_t arglen
, start
, toklen
, cksumlen
;
1912 u_char tokbuf
[KRB5_SZ_TOKMAX(MAX_DIGEST
)];
1913 u_char cksum1
[MAX_DIGEST
], cksum2
[MAX_DIGEST
];
1914 struct nfsm_chain nmc_tmp
;
1917 vers
= proc
= seqnum
= service
= handle_len
= 0;
1918 arglen
= cksumlen
= 0;
1920 nfsm_chain_get_32(error
, nmc
, vers
);
1921 if (vers
!= RPCSEC_GSS_VERS_1
) {
1922 error
= NFSERR_AUTHERR
| AUTH_REJECTCRED
;
1926 nfsm_chain_get_32(error
, nmc
, proc
);
1927 nfsm_chain_get_32(error
, nmc
, seqnum
);
1928 nfsm_chain_get_32(error
, nmc
, service
);
1929 nfsm_chain_get_32(error
, nmc
, handle_len
);
1934 * Make sure context setup/destroy is being done with a nullproc
1936 if (proc
!= RPCSEC_GSS_DATA
&& nd
->nd_procnum
!= NFSPROC_NULL
) {
1937 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CREDPROBLEM
;
1942 * If the sequence number is greater than the max
1943 * allowable, reject and have the client init a
1946 if (seqnum
> GSS_MAXSEQ
) {
1947 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CTXPROBLEM
;
1952 service
== RPCSEC_GSS_SVC_NONE
? RPCAUTH_KRB5
:
1953 service
== RPCSEC_GSS_SVC_INTEGRITY
? RPCAUTH_KRB5I
:
1954 service
== RPCSEC_GSS_SVC_PRIVACY
? RPCAUTH_KRB5P
: 0;
1956 if (proc
== RPCSEC_GSS_INIT
) {
1958 * Limit the total number of contexts
1960 if (nfs_gss_ctx_count
> nfs_gss_ctx_max
) {
1961 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CTXPROBLEM
;
1966 * Set up a new context
1968 MALLOC(cp
, struct nfs_gss_svc_ctx
*, sizeof(*cp
), M_TEMP
, M_WAITOK
|M_ZERO
);
1973 cp
->gss_svc_mtx
= lck_mtx_alloc_init(nfs_gss_svc_grp
, LCK_ATTR_NULL
);
1974 cp
->gss_svc_refcnt
= 1;
1978 * Use the handle to find the context
1980 if (handle_len
!= sizeof(handle
)) {
1981 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CREDPROBLEM
;
1984 nfsm_chain_get_32(error
, nmc
, handle
);
1987 cp
= nfs_gss_svc_ctx_find(handle
);
1989 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CTXPROBLEM
;
1994 cp
->gss_svc_proc
= proc
;
1995 ki
= &cp
->gss_svc_kinfo
;
1997 if (proc
== RPCSEC_GSS_DATA
|| proc
== RPCSEC_GSS_DESTROY
) {
1998 struct posix_cred temp_pcred
;
2000 if (cp
->gss_svc_seqwin
== 0) {
2002 * Context isn't complete
2004 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CTXPROBLEM
;
2008 if (!nfs_gss_svc_seqnum_valid(cp
, seqnum
)) {
2010 * Sequence number is bad
2012 error
= EINVAL
; // drop the request
2016 /* Now compute the client's call header checksum */
2017 nfs_gss_cksum_chain(ki
, nmc
, ALG_MIC(ki
), 0, 0, cksum1
);
2020 * Validate the verifier.
2021 * The verifier contains an encrypted checksum
2022 * of the call header from the XID up to and
2023 * including the credential. We compute the
2024 * checksum and compare it with what came in
2027 nfsm_chain_get_32(error
, nmc
, flavor
);
2028 nfsm_chain_get_32(error
, nmc
, verflen
);
2031 if (flavor
!= RPCSEC_GSS
|| verflen
!= KRB5_SZ_TOKEN(ki
->hash_len
))
2032 error
= NFSERR_AUTHERR
| AUTH_BADVERF
;
2033 nfsm_chain_get_opaque(error
, nmc
, verflen
, tokbuf
);
2037 /* Get the checksum from the token inside the verifier */
2038 error
= nfs_gss_token_get(ki
, ALG_MIC(ki
), tokbuf
, 1,
2043 if (bcmp(cksum1
, cksum2
, HASHLEN(ki
)) != 0) {
2044 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CTXPROBLEM
;
2048 nd
->nd_gss_seqnum
= seqnum
;
2051 * Set up the user's cred
2053 bzero(&temp_pcred
, sizeof(temp_pcred
));
2054 temp_pcred
.cr_uid
= cp
->gss_svc_uid
;
2055 bcopy(cp
->gss_svc_gids
, temp_pcred
.cr_groups
,
2056 sizeof(gid_t
) * cp
->gss_svc_ngroups
);
2057 temp_pcred
.cr_ngroups
= cp
->gss_svc_ngroups
;
2059 nd
->nd_cr
= posix_cred_create(&temp_pcred
);
2060 if (nd
->nd_cr
== NULL
) {
2064 clock_get_uptime(&cp
->gss_svc_incarnation
);
2067 * If the call arguments are integrity or privacy protected
2068 * then we need to check them here.
2071 case RPCSEC_GSS_SVC_NONE
:
2074 case RPCSEC_GSS_SVC_INTEGRITY
:
2076 * Here's what we expect in the integrity call args:
2078 * - length of seq num + call args (4 bytes)
2079 * - sequence number (4 bytes)
2080 * - call args (variable bytes)
2081 * - length of checksum token (37)
2082 * - checksum of seqnum + call args (37 bytes)
2084 nfsm_chain_get_32(error
, nmc
, arglen
); // length of args
2085 if (arglen
> NFS_MAXPACKET
) {
2090 /* Compute the checksum over the call args */
2091 start
= nfsm_chain_offset(nmc
);
2092 nfs_gss_cksum_chain(ki
, nmc
, ALG_MIC(ki
), start
, arglen
, cksum1
);
2095 * Get the sequence number prepended to the args
2096 * and compare it against the one sent in the
2099 nfsm_chain_get_32(error
, nmc
, seqnum
);
2100 if (seqnum
!= nd
->nd_gss_seqnum
) {
2101 error
= EBADRPC
; // returns as GARBAGEARGS
2106 * Advance to the end of the args and
2107 * fetch the checksum computed by the client.
2110 arglen
-= NFSX_UNSIGNED
; // skipped seqnum
2111 nfsm_chain_adv(error
, &nmc_tmp
, arglen
); // skip args
2112 nfsm_chain_get_32(error
, &nmc_tmp
, cksumlen
); // length of checksum
2113 if (cksumlen
!= KRB5_SZ_TOKEN(ki
->hash_len
)) {
2117 nfsm_chain_get_opaque(error
, &nmc_tmp
, cksumlen
, tokbuf
);
2120 error
= nfs_gss_token_get(ki
, ALG_MIC(ki
), tokbuf
, 1,
2123 /* Verify that the checksums are the same */
2124 if (error
|| bcmp(cksum1
, cksum2
, HASHLEN(ki
)) != 0) {
2129 case RPCSEC_GSS_SVC_PRIVACY
:
2131 * Here's what we expect in the privacy call args:
2133 * - length of confounder + seq num + token + call args
2134 * - wrap token (37-40 bytes)
2135 * - confounder (8 bytes)
2136 * - sequence number (4 bytes)
2137 * - call args (encrypted)
2139 nfsm_chain_get_32(error
, nmc
, arglen
); // length of args
2140 if (arglen
> NFS_MAXPACKET
) {
2145 /* Get the token that prepends the encrypted args */
2146 nfsm_chain_get_opaque(error
, nmc
, KRB5_SZ_TOKMAX(ki
->hash_len
), tokbuf
);
2149 error
= nfs_gss_token_get(ki
, ALG_WRAP(ki
), tokbuf
, 1,
2153 nfsm_chain_reverse(nmc
, nfsm_pad(toklen
));
2155 /* decrypt the 8 byte confounder + seqnum + args */
2156 start
= nfsm_chain_offset(nmc
);
2158 nfs_gss_encrypt_chain(ki
, nmc
, start
, arglen
, DES_DECRYPT
);
2160 /* Compute a checksum over the sequence number + results */
2161 nfs_gss_cksum_chain(ki
, nmc
, ALG_WRAP(ki
), start
, arglen
, cksum2
);
2163 /* Verify that the checksums are the same */
2164 if (bcmp(cksum1
, cksum2
, HASHLEN(ki
)) != 0) {
2170 * Get the sequence number prepended to the args
2171 * and compare it against the one sent in the
2174 nfsm_chain_adv(error
, nmc
, 8); // skip over the confounder
2175 nfsm_chain_get_32(error
, nmc
, seqnum
);
2176 if (seqnum
!= nd
->nd_gss_seqnum
) {
2177 error
= EBADRPC
; // returns as GARBAGEARGS
2184 * If the proc is RPCSEC_GSS_INIT or RPCSEC_GSS_CONTINUE_INIT
2185 * then we expect a null verifier.
2187 nfsm_chain_get_32(error
, nmc
, flavor
);
2188 nfsm_chain_get_32(error
, nmc
, verflen
);
2189 if (error
|| flavor
!= RPCAUTH_NULL
|| verflen
> 0)
2190 error
= NFSERR_AUTHERR
| RPCSEC_GSS_CREDPROBLEM
;
2192 if (proc
== RPCSEC_GSS_INIT
) {
2193 lck_mtx_destroy(cp
->gss_svc_mtx
, nfs_gss_svc_grp
);
2201 nd
->nd_gss_context
= cp
;
2205 nfs_gss_svc_ctx_deref(cp
);
2210 * Insert the server's verifier into the RPC reply header.
2211 * It contains a signed checksum of the sequence number that
2212 * was received in the RPC call.
2213 * Then go on to add integrity or privacy if necessary.
2216 nfs_gss_svc_verf_put(struct nfsrv_descript
*nd
, struct nfsm_chain
*nmc
)
2218 struct nfs_gss_svc_ctx
*cp
;
2220 u_char tokbuf
[KRB5_SZ_TOKEN(MAX_DIGEST
)];
2222 u_char cksum
[MAX_DIGEST
];
2225 cp
= nd
->nd_gss_context
;
2226 ki
= &cp
->gss_svc_kinfo
;
2228 if (cp
->gss_svc_major
!= GSS_S_COMPLETE
) {
2230 * If the context isn't yet complete
2231 * then return a null verifier.
2233 nfsm_chain_add_32(error
, nmc
, RPCAUTH_NULL
);
2234 nfsm_chain_add_32(error
, nmc
, 0);
2239 * Compute checksum of the request seq number
2240 * If it's the final reply of context setup
2241 * then return the checksum of the context
2244 if (cp
->gss_svc_proc
== RPCSEC_GSS_INIT
||
2245 cp
->gss_svc_proc
== RPCSEC_GSS_CONTINUE_INIT
)
2246 nfs_gss_cksum_rep(ki
, cp
->gss_svc_seqwin
, cksum
);
2248 nfs_gss_cksum_rep(ki
, nd
->nd_gss_seqnum
, cksum
);
2250 * Now wrap it in a token and add
2251 * the verifier to the reply.
2253 toklen
= nfs_gss_token_put(ki
, ALG_MIC(ki
), tokbuf
, 0, 0, cksum
);
2254 nfsm_chain_add_32(error
, nmc
, RPCSEC_GSS
);
2255 nfsm_chain_add_32(error
, nmc
, toklen
);
2256 nfsm_chain_add_opaque(error
, nmc
, tokbuf
, toklen
);
2262 * The results aren't available yet, but if they need to be
2263 * checksummed for integrity protection or encrypted, then
2264 * we can record the start offset here, insert a place-holder
2265 * for the results length, as well as the sequence number.
2266 * The rest of the work is done later by nfs_gss_svc_protect_reply()
2267 * when the results are available.
2270 nfs_gss_svc_prepare_reply(struct nfsrv_descript
*nd
, struct nfsm_chain
*nmc
)
2272 struct nfs_gss_svc_ctx
*cp
= nd
->nd_gss_context
;
2275 if (cp
->gss_svc_proc
== RPCSEC_GSS_INIT
||
2276 cp
->gss_svc_proc
== RPCSEC_GSS_CONTINUE_INIT
)
2279 switch (nd
->nd_sec
) {
2284 nd
->nd_gss_mb
= nmc
->nmc_mcur
; // record current mbuf
2285 nfsm_chain_finish_mbuf(error
, nmc
); // split the chain here
2286 nfsm_chain_add_32(error
, nmc
, nd
->nd_gss_seqnum
); // req sequence number
2289 nd
->nd_gss_mb
= nmc
->nmc_mcur
; // record current mbuf
2290 nfsm_chain_finish_mbuf(error
, nmc
); // split the chain here
2291 nfsm_chain_add_32(error
, nmc
, random()); // confounder bytes 1-4
2292 nfsm_chain_add_32(error
, nmc
, random()); // confounder bytes 5-8
2293 nfsm_chain_add_32(error
, nmc
, nd
->nd_gss_seqnum
); // req sequence number
2301 * The results are checksummed or encrypted for return to the client
2304 nfs_gss_svc_protect_reply(struct nfsrv_descript
*nd
, mbuf_t mrep
)
2306 struct nfs_gss_svc_ctx
*cp
= nd
->nd_gss_context
;
2307 struct nfsm_chain nmrep_res
, *nmc_res
= &nmrep_res
;
2308 struct nfsm_chain nmrep_pre
, *nmc_pre
= &nmrep_pre
;
2311 u_char tokbuf
[KRB5_SZ_TOKMAX(MAX_DIGEST
)];
2313 u_char cksum
[MAX_DIGEST
];
2315 gss_key_info
*ki
= &cp
->gss_svc_kinfo
;
2318 * Using a reference to the mbuf where we previously split the reply
2319 * mbuf chain, we split the mbuf chain argument into two mbuf chains,
2320 * one that allows us to prepend a length field or token, (nmc_pre)
2321 * and the second which holds just the results that we're going to
2322 * checksum and/or encrypt. When we're done, we join the chains back
2325 nfs_gss_nfsm_chain(nmc_res
, mrep
); // set up the results chain
2326 mb
= nd
->nd_gss_mb
; // the mbuf where we split
2327 results
= mbuf_next(mb
); // first mbuf in the results
2328 reslen
= nfs_gss_mchain_length(results
); // length of results
2329 error
= mbuf_setnext(mb
, NULL
); // disconnect the chains
2332 nfs_gss_nfsm_chain(nmc_pre
, mb
); // set up the prepend chain
2334 if (nd
->nd_sec
== RPCAUTH_KRB5I
) {
2335 nfsm_chain_add_32(error
, nmc_pre
, reslen
);
2336 nfsm_chain_build_done(error
, nmc_pre
);
2339 nfs_gss_append_chain(nmc_pre
, results
); // Append the results mbufs
2341 /* Now compute the checksum over the results data */
2342 nfs_gss_cksum_mchain(ki
, results
, ALG_MIC(ki
), 0, reslen
, cksum
);
2344 /* Put it into a token and append to the request */
2345 toklen
= nfs_gss_token_put(ki
, ALG_MIC(ki
), tokbuf
, 0, 0, cksum
);
2346 nfsm_chain_add_32(error
, nmc_res
, toklen
);
2347 nfsm_chain_add_opaque(error
, nmc_res
, tokbuf
, toklen
);
2348 nfsm_chain_build_done(error
, nmc_res
);
2352 * Append a pad trailer - per RFC 1964 section 1.2.2.3
2353 * Since XDR data is always 32-bit aligned, it
2354 * needs to be padded either by 4 bytes or 8 bytes.
2356 if (reslen
% 8 > 0) {
2357 nfsm_chain_add_32(error
, nmc_res
, 0x04040404);
2358 reslen
+= NFSX_UNSIGNED
;
2360 nfsm_chain_add_32(error
, nmc_res
, 0x08080808);
2361 nfsm_chain_add_32(error
, nmc_res
, 0x08080808);
2362 reslen
+= 2 * NFSX_UNSIGNED
;
2364 nfsm_chain_build_done(error
, nmc_res
);
2366 /* Now compute the checksum over the results data */
2367 nfs_gss_cksum_mchain(ki
, results
, ALG_WRAP(ki
), 0, reslen
, cksum
);
2369 /* Put it into a token and insert in the reply */
2370 toklen
= nfs_gss_token_put(ki
, ALG_WRAP(ki
), tokbuf
, 0, reslen
, cksum
);
2371 nfsm_chain_add_32(error
, nmc_pre
, toklen
+ reslen
);
2372 nfsm_chain_add_opaque_nopad(error
, nmc_pre
, tokbuf
, toklen
);
2373 nfsm_chain_build_done(error
, nmc_pre
);
2376 nfs_gss_append_chain(nmc_pre
, results
); // Append the results mbufs
2378 /* Encrypt the confounder + seqnum + results */
2379 nfs_gss_encrypt_mchain(ki
, results
, 0, reslen
, DES_ENCRYPT
);
2381 /* Add null XDR pad if the ASN.1 token misaligned the data */
2382 pad
= nfsm_pad(toklen
+ reslen
);
2384 nfsm_chain_add_opaque_nopad(error
, nmc_pre
, iv0
, pad
);
2385 nfsm_chain_build_done(error
, nmc_pre
);
2393 * This function handles the context setup calls from the client.
2394 * Essentially, it implements the NFS null procedure calls when
2395 * an RPCSEC_GSS credential is used.
2396 * This is the context maintenance function. It creates and
2397 * destroys server contexts at the whim of the client.
2398 * During context creation, it receives GSS-API tokens from the
2399 * client, passes them up to gssd, and returns a received token
2400 * back to the client in the null procedure reply.
2403 nfs_gss_svc_ctx_init(struct nfsrv_descript
*nd
, struct nfsrv_sock
*slp
, mbuf_t
*mrepp
)
2405 struct nfs_gss_svc_ctx
*cp
= NULL
;
2408 struct nfsm_chain
*nmreq
, nmrep
;
2411 nmreq
= &nd
->nd_nmreq
;
2412 nfsm_chain_null(&nmrep
);
2414 cp
= nd
->nd_gss_context
;
2417 switch (cp
->gss_svc_proc
) {
2418 case RPCSEC_GSS_INIT
:
2419 nfs_gss_svc_ctx_insert(cp
);
2422 case RPCSEC_GSS_CONTINUE_INIT
:
2423 /* Get the token from the request */
2424 nfsm_chain_get_32(error
, nmreq
, cp
->gss_svc_tokenlen
);
2425 if (cp
->gss_svc_tokenlen
== 0) {
2426 autherr
= RPCSEC_GSS_CREDPROBLEM
;
2429 MALLOC(cp
->gss_svc_token
, u_char
*, cp
->gss_svc_tokenlen
, M_TEMP
, M_WAITOK
);
2430 if (cp
->gss_svc_token
== NULL
) {
2431 autherr
= RPCSEC_GSS_CREDPROBLEM
;
2434 nfsm_chain_get_opaque(error
, nmreq
, cp
->gss_svc_tokenlen
, cp
->gss_svc_token
);
2436 /* Use the token in a gss_accept_sec_context upcall */
2437 error
= nfs_gss_svc_gssd_upcall(cp
);
2439 autherr
= RPCSEC_GSS_CREDPROBLEM
;
2440 if (error
== NFSERR_EAUTH
)
2446 * If the context isn't complete, pass the new token
2447 * back to the client for another round.
2449 if (cp
->gss_svc_major
!= GSS_S_COMPLETE
)
2453 * Now the server context is complete.
2456 clock_get_uptime(&cp
->gss_svc_incarnation
);
2458 cp
->gss_svc_seqwin
= GSS_SVC_SEQWINDOW
;
2459 MALLOC(cp
->gss_svc_seqbits
, uint32_t *,
2460 nfsm_rndup((cp
->gss_svc_seqwin
+ 7) / 8), M_TEMP
, M_WAITOK
|M_ZERO
);
2461 if (cp
->gss_svc_seqbits
== NULL
) {
2462 autherr
= RPCSEC_GSS_CREDPROBLEM
;
2467 case RPCSEC_GSS_DATA
:
2468 /* Just a nullproc ping - do nothing */
2471 case RPCSEC_GSS_DESTROY
:
2473 * Don't destroy the context immediately because
2474 * other active requests might still be using it.
2475 * Instead, schedule it for destruction after
2476 * GSS_CTX_PEND time has elapsed.
2478 cp
= nfs_gss_svc_ctx_find(cp
->gss_svc_handle
);
2480 cp
->gss_svc_handle
= 0; // so it can't be found
2481 lck_mtx_lock(cp
->gss_svc_mtx
);
2482 clock_interval_to_deadline(GSS_CTX_PEND
, NSEC_PER_SEC
,
2483 &cp
->gss_svc_incarnation
);
2484 lck_mtx_unlock(cp
->gss_svc_mtx
);
2488 autherr
= RPCSEC_GSS_CREDPROBLEM
;
2492 /* Now build the reply */
2494 if (nd
->nd_repstat
== 0)
2495 nd
->nd_repstat
= autherr
? (NFSERR_AUTHERR
| autherr
) : NFSERR_RETVOID
;
2496 sz
= 7 * NFSX_UNSIGNED
+ nfsm_rndup(cp
->gss_svc_tokenlen
); // size of results
2497 error
= nfsrv_rephead(nd
, slp
, &nmrep
, sz
);
2498 *mrepp
= nmrep
.nmc_mhead
;
2499 if (error
|| autherr
)
2502 if (cp
->gss_svc_proc
== RPCSEC_GSS_INIT
||
2503 cp
->gss_svc_proc
== RPCSEC_GSS_CONTINUE_INIT
) {
2504 nfsm_chain_add_32(error
, &nmrep
, sizeof(cp
->gss_svc_handle
));
2505 nfsm_chain_add_32(error
, &nmrep
, cp
->gss_svc_handle
);
2507 nfsm_chain_add_32(error
, &nmrep
, cp
->gss_svc_major
);
2508 nfsm_chain_add_32(error
, &nmrep
, cp
->gss_svc_minor
);
2509 nfsm_chain_add_32(error
, &nmrep
, cp
->gss_svc_seqwin
);
2511 nfsm_chain_add_32(error
, &nmrep
, cp
->gss_svc_tokenlen
);
2512 if (cp
->gss_svc_token
!= NULL
) {
2513 nfsm_chain_add_opaque(error
, &nmrep
, cp
->gss_svc_token
, cp
->gss_svc_tokenlen
);
2514 FREE(cp
->gss_svc_token
, M_TEMP
);
2515 cp
->gss_svc_token
= NULL
;
2521 nd
->nd_gss_context
= NULL
;
2522 LIST_REMOVE(cp
, gss_svc_entries
);
2523 if (cp
->gss_svc_seqbits
!= NULL
)
2524 FREE(cp
->gss_svc_seqbits
, M_TEMP
);
2525 if (cp
->gss_svc_token
!= NULL
)
2526 FREE(cp
->gss_svc_token
, M_TEMP
);
2527 lck_mtx_destroy(cp
->gss_svc_mtx
, nfs_gss_svc_grp
);
2531 nfsm_chain_build_done(error
, &nmrep
);
2533 nfsm_chain_cleanup(&nmrep
);
2540 * This is almost a mirror-image of the client side upcall.
2541 * It passes and receives a token, but invokes gss_accept_sec_context.
2542 * If it's the final call of the context setup, then gssd also returns
2543 * the session key and the user's UID.
2546 nfs_gss_svc_gssd_upcall(struct nfs_gss_svc_ctx
*cp
)
2551 gssd_byte_buffer okey
= NULL
;
2552 uint32_t skeylen
= 0;
2554 vm_map_copy_t itoken
= NULL
;
2555 gssd_byte_buffer otoken
= NULL
;
2556 mach_msg_type_number_t otokenlen
;
2558 char svcname
[] = "nfs";
2560 kr
= task_get_gssd_port(get_threadtask(current_thread()), &mp
);
2561 if (kr
!= KERN_SUCCESS
) {
2562 printf("nfs_gss_svc_gssd_upcall: can't get gssd port, status %x (%d)\n", kr
, kr
);
2565 if (!IPC_PORT_VALID(mp
)) {
2566 printf("nfs_gss_svc_gssd_upcall: gssd port not valid\n");
2570 if (cp
->gss_svc_tokenlen
> 0)
2571 nfs_gss_mach_alloc_buffer(cp
->gss_svc_token
, cp
->gss_svc_tokenlen
, &itoken
);
2574 kr
= mach_gss_accept_sec_context(
2576 (gssd_byte_buffer
) itoken
, (mach_msg_type_number_t
) cp
->gss_svc_tokenlen
,
2579 &cp
->gss_svc_context
,
2580 &cp
->gss_svc_cred_handle
,
2584 &cp
->gss_svc_ngroups
,
2585 &okey
, (mach_msg_type_number_t
*) &skeylen
,
2586 &otoken
, &otokenlen
,
2588 &cp
->gss_svc_minor
);
2590 if (kr
!= KERN_SUCCESS
) {
2591 printf("nfs_gss_svc_gssd_upcall failed: %x (%d)\n", kr
, kr
);
2592 if (kr
== MIG_SERVER_DIED
&& cp
->gss_svc_context
== 0 &&
2593 retry_cnt
++ < NFS_GSS_MACH_MAX_RETRIES
) {
2594 if (cp
->gss_svc_tokenlen
> 0)
2595 nfs_gss_mach_alloc_buffer(cp
->gss_svc_token
, cp
->gss_svc_tokenlen
, &itoken
);
2598 task_release_special_port(mp
);
2602 task_release_special_port(mp
);
2605 if (skeylen
!= SKEYLEN
&& skeylen
!= SKEYLEN3
) {
2606 printf("nfs_gss_svc_gssd_upcall: bad key length (%d)\n", skeylen
);
2607 vm_map_copy_discard((vm_map_copy_t
) okey
);
2608 vm_map_copy_discard((vm_map_copy_t
) otoken
);
2611 error
= nfs_gss_mach_vmcopyout((vm_map_copy_t
) okey
, skeylen
, cp
->gss_svc_kinfo
.skey
);
2613 vm_map_copy_discard((vm_map_copy_t
) otoken
);
2616 error
= gss_key_init(&cp
->gss_svc_kinfo
, skeylen
);
2622 /* Free context token used as input */
2623 if (cp
->gss_svc_token
)
2624 FREE(cp
->gss_svc_token
, M_TEMP
);
2625 cp
->gss_svc_token
= NULL
;
2626 cp
->gss_svc_tokenlen
= 0;
2628 if (otokenlen
> 0) {
2629 /* Set context token to gss output token */
2630 MALLOC(cp
->gss_svc_token
, u_char
*, otokenlen
, M_TEMP
, M_WAITOK
);
2631 if (cp
->gss_svc_token
== NULL
) {
2632 printf("nfs_gss_svc_gssd_upcall: could not allocate %d bytes\n", otokenlen
);
2633 vm_map_copy_discard((vm_map_copy_t
) otoken
);
2636 error
= nfs_gss_mach_vmcopyout((vm_map_copy_t
) otoken
, otokenlen
, cp
->gss_svc_token
);
2638 FREE(cp
->gss_svc_token
, M_TEMP
);
2639 cp
->gss_svc_token
= NULL
;
2640 return (NFSERR_EAUTH
);
2642 cp
->gss_svc_tokenlen
= otokenlen
;
2648 FREE(cp
->gss_svc_token
, M_TEMP
);
2649 cp
->gss_svc_tokenlen
= 0;
2650 cp
->gss_svc_token
= NULL
;
2652 return (NFSERR_EAUTH
);
2656 * Validate the sequence number in the credential as described
2657 * in RFC 2203 Section 5.3.3.1
2659 * Here the window of valid sequence numbers is represented by
2660 * a bitmap. As each sequence number is received, its bit is
2661 * set in the bitmap. An invalid sequence number lies below
2662 * the lower bound of the window, or is within the window but
2663 * has its bit already set.
2666 nfs_gss_svc_seqnum_valid(struct nfs_gss_svc_ctx
*cp
, uint32_t seq
)
2668 uint32_t *bits
= cp
->gss_svc_seqbits
;
2669 uint32_t win
= cp
->gss_svc_seqwin
;
2672 lck_mtx_lock(cp
->gss_svc_mtx
);
2675 * If greater than the window upper bound,
2676 * move the window up, and set the bit.
2678 if (seq
> cp
->gss_svc_seqmax
) {
2679 if (seq
- cp
->gss_svc_seqmax
> win
)
2680 bzero(bits
, nfsm_rndup((win
+ 7) / 8));
2682 for (i
= cp
->gss_svc_seqmax
+ 1; i
< seq
; i
++)
2683 win_resetbit(bits
, i
% win
);
2684 win_setbit(bits
, seq
% win
);
2685 cp
->gss_svc_seqmax
= seq
;
2686 lck_mtx_unlock(cp
->gss_svc_mtx
);
2691 * Invalid if below the lower bound of the window
2693 if (seq
<= cp
->gss_svc_seqmax
- win
) {
2694 lck_mtx_unlock(cp
->gss_svc_mtx
);
2699 * In the window, invalid if the bit is already set
2701 if (win_getbit(bits
, seq
% win
)) {
2702 lck_mtx_unlock(cp
->gss_svc_mtx
);
2705 win_setbit(bits
, seq
% win
);
2706 lck_mtx_unlock(cp
->gss_svc_mtx
);
2711 * Drop a reference to a context
2713 * Note that it's OK for the context to exist
2714 * with a refcount of zero. The refcount isn't
2715 * checked until we're about to reap an expired one.
2718 nfs_gss_svc_ctx_deref(struct nfs_gss_svc_ctx
*cp
)
2720 lck_mtx_lock(cp
->gss_svc_mtx
);
2721 if (cp
->gss_svc_refcnt
> 0)
2722 cp
->gss_svc_refcnt
--;
2724 printf("nfs_gss_ctx_deref: zero refcount\n");
2725 lck_mtx_unlock(cp
->gss_svc_mtx
);
2729 * Called at NFS server shutdown - destroy all contexts
2732 nfs_gss_svc_cleanup(void)
2734 struct nfs_gss_svc_ctx_hashhead
*head
;
2735 struct nfs_gss_svc_ctx
*cp
, *ncp
;
2738 lck_mtx_lock(nfs_gss_svc_ctx_mutex
);
2741 * Run through all the buckets
2743 for (i
= 0; i
< SVC_CTX_HASHSZ
; i
++) {
2745 * Remove and free all entries in the bucket
2747 head
= &nfs_gss_svc_ctx_hashtbl
[i
];
2748 LIST_FOREACH_SAFE(cp
, head
, gss_svc_entries
, ncp
) {
2749 LIST_REMOVE(cp
, gss_svc_entries
);
2750 if (cp
->gss_svc_seqbits
)
2751 FREE(cp
->gss_svc_seqbits
, M_TEMP
);
2752 lck_mtx_destroy(cp
->gss_svc_mtx
, nfs_gss_svc_grp
);
2757 lck_mtx_unlock(nfs_gss_svc_ctx_mutex
);
2760 #endif /* NFSSERVER */
2764 * The following functions are used by both client and server.
2768 * Release a task special port that was obtained by task_get_special_port
2769 * or one of its macros (task_get_gssd_port in this case).
2770 * This really should be in a public kpi.
2773 /* This should be in a public header if this routine is not */
2774 extern void ipc_port_release_send(ipc_port_t
);
2775 extern ipc_port_t
ipc_port_copy_send(ipc_port_t
);
2778 task_release_special_port(mach_port_t mp
)
2780 if (IPC_PORT_VALID(mp
))
2781 ipc_port_release_send(mp
);
2785 task_copy_special_port(mach_port_t mp
)
2787 return ipc_port_copy_send(mp
);
2791 * The token that is sent and received in the gssd upcall
2792 * has unbounded variable length. Mach RPC does not pass
2793 * the token in-line. Instead it uses page mapping to handle
2794 * these parameters. This function allocates a VM buffer
2795 * to hold the token for an upcall and copies the token
2796 * (received from the client) into it. The VM buffer is
2797 * marked with a src_destroy flag so that the upcall will
2798 * automatically de-allocate the buffer when the upcall is
2802 nfs_gss_mach_alloc_buffer(u_char
*buf
, uint32_t buflen
, vm_map_copy_t
*addr
)
2805 vm_offset_t kmem_buf
;
2809 if (buf
== NULL
|| buflen
== 0)
2812 tbuflen
= round_page(buflen
);
2813 kr
= vm_allocate(ipc_kernel_map
, &kmem_buf
, tbuflen
, VM_FLAGS_ANYWHERE
);
2815 printf("nfs_gss_mach_alloc_buffer: vm_allocate failed\n");
2819 kr
= vm_map_wire(ipc_kernel_map
, vm_map_trunc_page(kmem_buf
),
2820 vm_map_round_page(kmem_buf
+ tbuflen
),
2821 VM_PROT_READ
|VM_PROT_WRITE
, FALSE
);
2823 printf("nfs_gss_mach_alloc_buffer: vm_map_wire failed\n");
2827 bcopy(buf
, (void *) kmem_buf
, buflen
);
2828 // Shouldn't need to bzero below since vm_allocate returns zeroed pages
2829 // bzero(kmem_buf + buflen, tbuflen - buflen);
2831 kr
= vm_map_unwire(ipc_kernel_map
, vm_map_trunc_page(kmem_buf
),
2832 vm_map_round_page(kmem_buf
+ tbuflen
), FALSE
);
2834 printf("nfs_gss_mach_alloc_buffer: vm_map_unwire failed\n");
2838 kr
= vm_map_copyin(ipc_kernel_map
, (vm_map_address_t
) kmem_buf
,
2839 (vm_map_size_t
) buflen
, TRUE
, addr
);
2841 printf("nfs_gss_mach_alloc_buffer: vm_map_copyin failed\n");
2847 * Here we handle a token received from the gssd via an upcall.
2848 * The received token resides in an allocate VM buffer.
2849 * We copy the token out of this buffer to a chunk of malloc'ed
2850 * memory of the right size, then de-allocate the VM buffer.
2853 nfs_gss_mach_vmcopyout(vm_map_copy_t in
, uint32_t len
, u_char
*out
)
2855 vm_map_offset_t map_data
;
2859 error
= vm_map_copyout(ipc_kernel_map
, &map_data
, in
);
2863 data
= CAST_DOWN(vm_offset_t
, map_data
);
2864 bcopy((void *) data
, out
, len
);
2865 vm_deallocate(ipc_kernel_map
, data
, len
);
2871 * Encode an ASN.1 token to be wrapped in an RPCSEC_GSS verifier.
2872 * Returns the size of the token, since it contains a variable
2873 * length DER encoded size field.
2884 static uint32_t seqnum
= 0;
2890 * Fill in the token header: 2 octets.
2891 * This is 0x06 - an ASN.1 tag for APPLICATION, 0, SEQUENCE
2892 * followed by the length of the token: 35 + 0 octets for a
2893 * MIC token, or 35 + encrypted octets for a wrap token;
2896 toklen
= KRB5_SZ_MECH
+ KRB5_SZ_ALG
+ KRB5_SZ_SEQ
+ HASHLEN(ki
);
2897 nfs_gss_der_length_put(&p
, toklen
+ datalen
);
2900 * Fill in the DER encoded mech OID for Kerberos v5.
2901 * This represents the Kerberos OID 1.2.840.113554.1.2.2
2902 * described in RFC 2623, section 4.2
2904 bcopy(krb5_mech
, p
, sizeof(krb5_mech
));
2905 p
+= sizeof(krb5_mech
);
2908 * Now at the token described in RFC 1964, section 1.2.1
2909 * Fill in the token ID, integrity algorithm indicator,
2910 * for DES MAC MD5, and four filler octets.
2911 * The alg string encodes the bytes to represent either
2912 * a MIC token or a WRAP token for Kerberos.
2914 bcopy(alg
, p
, KRB5_SZ_ALG
);
2918 * Now encode the sequence number according to
2919 * RFC 1964, section 1.2.1.2 which dictates 4 octets
2920 * of sequence number followed by 4 bytes of direction
2921 * indicator: 0x00 for initiator or 0xff for acceptor.
2922 * We DES CBC encrypt the sequence number using the first
2923 * 8 octets of the checksum field as an initialization
2925 * Note that this sequence number is not at all related
2926 * to the RPCSEC_GSS protocol sequence number. This
2927 * number is private to the ASN.1 token. The only
2928 * requirement is that it not be repeated in case the
2929 * server has replay detection on, which normally should
2930 * not be the case, since RFC 2203 section 5.2.3 says that
2931 * replay detection and sequence checking must be turned off.
2934 for (i
= 0; i
< 4; i
++)
2935 plain
[i
] = (u_char
) ((seqnum
>> (i
* 8)) & 0xff);
2936 for (i
= 4; i
< 8; i
++)
2937 plain
[i
] = initiator
? 0x00 : 0xff;
2938 gss_des_crypt(ki
, (des_cblock
*) plain
, (des_cblock
*) p
, 8,
2939 (des_cblock
*) cksum
, NULL
, DES_ENCRYPT
, KG_USAGE_SEQ
);
2943 * Finally, append the octets of the
2944 * checksum of the alg + plaintext data.
2945 * The plaintext could be an RPC call header,
2946 * the window value, or a sequence number.
2948 bcopy(cksum
, p
, HASHLEN(ki
));
2955 * Determine size of ASN.1 DER length
2958 nfs_gss_der_length_size(int len
)
2961 len
< (1 << 7) ? 1 :
2962 len
< (1 << 8) ? 2 :
2963 len
< (1 << 16) ? 3 :
2964 len
< (1 << 24) ? 4 : 5;
2968 * Encode an ASN.1 DER length field
2971 nfs_gss_der_length_put(u_char
**pp
, int len
)
2973 int sz
= nfs_gss_der_length_size(len
);
2977 *p
++ = (u_char
) len
;
2979 *p
++ = (u_char
) ((sz
-1) | 0x80);
2982 *p
++ = (u_char
) ((len
>> (sz
* 8)) & 0xff);
2989 * Decode an ASN.1 DER length field
2992 nfs_gss_der_length_get(u_char
**pp
)
2995 uint32_t flen
, len
= 0;
2999 if ((*p
++ & 0x80) == 0)
3002 if (flen
> sizeof(uint32_t))
3005 len
= (len
<< 8) + *p
++;
3012 * Decode an ASN.1 token from an RPCSEC_GSS verifier.
3028 * Check that we have a valid token header
3031 return (AUTH_BADCRED
);
3032 (void) nfs_gss_der_length_get(&p
); // ignore the size
3035 * Check that we have the DER encoded Kerberos v5 mech OID
3037 if (bcmp(p
, krb5_mech
, sizeof(krb5_mech
) != 0))
3038 return (AUTH_BADCRED
);
3039 p
+= sizeof(krb5_mech
);
3042 * Now check the token ID, DES MAC MD5 algorithm
3043 * indicator, and filler octets.
3045 if (bcmp(p
, alg
, KRB5_SZ_ALG
) != 0)
3046 return (AUTH_BADCRED
);
3050 * Now decrypt the sequence number.
3051 * Note that the gss decryption uses the first 8 octets
3052 * of the checksum field as an initialization vector (p + 8).
3053 * Per RFC 2203 section 5.2.2 we don't check the sequence number
3054 * in the ASN.1 token because the RPCSEC_GSS protocol has its
3055 * own sequence number described in section 5.3.3.1
3058 gss_des_crypt(ki
, (des_cblock
*)p
, (des_cblock
*) plain
, 8,
3059 (des_cblock
*) (p
+ 8), NULL
, DES_DECRYPT
, KG_USAGE_SEQ
);
3061 for (i
= 0; i
< 4; i
++)
3062 seqnum
|= plain
[i
] << (i
* 8);
3065 * Make sure the direction
3066 * indicator octets are correct.
3068 d
= initiator
? 0x00 : 0xff;
3069 for (i
= 4; i
< 8; i
++)
3071 return (AUTH_BADCRED
);
3074 * Finally, get the checksum
3076 bcopy(p
, cksum
, HASHLEN(ki
));
3086 * Return the number of bytes in an mbuf chain.
3089 nfs_gss_mchain_length(mbuf_t mhead
)
3094 for (mb
= mhead
; mb
; mb
= mbuf_next(mb
))
3095 len
+= mbuf_len(mb
);
3101 * Append an args or results mbuf chain to the header chain
3104 nfs_gss_append_chain(struct nfsm_chain
*nmc
, mbuf_t mc
)
3109 /* Connect the mbuf chains */
3110 error
= mbuf_setnext(nmc
->nmc_mcur
, mc
);
3114 /* Find the last mbuf in the chain */
3116 for (mb
= mc
; mb
; mb
= mbuf_next(mb
))
3119 nmc
->nmc_mcur
= tail
;
3120 nmc
->nmc_ptr
= (caddr_t
) mbuf_data(tail
) + mbuf_len(tail
);
3121 nmc
->nmc_left
= mbuf_trailingspace(tail
);
3127 * Convert an mbuf chain to an NFS mbuf chain
3130 nfs_gss_nfsm_chain(struct nfsm_chain
*nmc
, mbuf_t mc
)
3134 /* Find the last mbuf in the chain */
3136 for (mb
= mc
; mb
; mb
= mbuf_next(mb
))
3139 nmc
->nmc_mhead
= mc
;
3140 nmc
->nmc_mcur
= tail
;
3141 nmc
->nmc_ptr
= (caddr_t
) mbuf_data(tail
) + mbuf_len(tail
);
3142 nmc
->nmc_left
= mbuf_trailingspace(tail
);
3148 * Compute a checksum over an mbuf chain.
3149 * Start building an MD5 digest at the given offset and keep
3150 * going until the end of data in the current mbuf is reached.
3151 * Then convert the 16 byte MD5 digest to an 8 byte DES CBC
3155 nfs_gss_cksum_mchain(
3166 GSS_DIGEST_CTX context
;
3168 gss_digest_Init(&context
, ki
);
3171 * Logically prepend the first 8 bytes of the algorithm
3172 * field as required by RFC 1964, section 1.2.1.1
3174 gss_digest_Update(&context
, alg
, KRB5_SZ_ALG
);
3177 * Move down the mbuf chain until we reach the given
3178 * byte offset, then start MD5 on the mbuf data until
3179 * we've done len bytes.
3182 for (mb
= mhead
; mb
&& len
> 0; mb
= mbuf_next(mb
)) {
3183 ptr
= mbuf_data(mb
);
3184 left
= mbuf_len(mb
);
3185 if (offset
>= left
) {
3186 /* Offset not yet reached */
3190 /* At or beyond offset - checksum data */
3195 bytes
= left
< len
? left
: len
;
3197 gss_digest_Update(&context
, ptr
, bytes
);
3201 gss_digest_Final(&context
, digest
);
3205 * Compute a checksum over an NFS mbuf chain.
3206 * Start building an MD5 digest at the given offset and keep
3207 * going until the end of data in the current mbuf is reached.
3208 * Then convert the 16 byte MD5 digest to an 8 byte DES CBC
3212 nfs_gss_cksum_chain(
3214 struct nfsm_chain
*nmc
,
3221 * If the length parameter is zero, then we need
3222 * to use the length from the offset to the current
3223 * encode/decode offset.
3226 len
= nfsm_chain_offset(nmc
) - offset
;
3228 return (nfs_gss_cksum_mchain(ki
, nmc
->nmc_mhead
, alg
, offset
, len
, cksum
));
3232 * Compute a checksum of the sequence number (or sequence window)
3233 * of an RPCSEC_GSS reply.
3236 nfs_gss_cksum_rep(gss_key_info
*ki
, uint32_t seqnum
, u_char
*cksum
)
3238 GSS_DIGEST_CTX context
;
3239 uint32_t val
= htonl(seqnum
);
3241 gss_digest_Init(&context
, ki
);
3244 * Logically prepend the first 8 bytes of the MIC
3245 * token as required by RFC 1964, section 1.2.1.1
3247 gss_digest_Update(&context
, ALG_MIC(ki
), KRB5_SZ_ALG
);
3250 * Compute the digest of the seqnum in network order
3252 gss_digest_Update(&context
, &val
, 4);
3253 gss_digest_Final(&context
, cksum
);
3257 * Encrypt or decrypt data in an mbuf chain with des-cbc.
3260 nfs_gss_encrypt_mchain(
3269 u_char tmp
[8], ivec
[8];
3270 int left
, left8
, remain
;
3276 * Move down the mbuf chain until we reach the given
3277 * byte offset, then start encrypting the mbuf data until
3278 * we've done len bytes.
3281 for (mb
= mhead
; mb
&& len
> 0; mb
= mbn
) {
3282 mbn
= mbuf_next(mb
);
3283 ptr
= mbuf_data(mb
);
3284 left
= mbuf_len(mb
);
3285 if (offset
>= left
) {
3286 /* Offset not yet reached */
3290 /* At or beyond offset - encrypt data */
3296 * DES or DES3 CBC has to encrypt 8 bytes at a time.
3297 * If the number of bytes to be encrypted in this
3298 * mbuf isn't some multiple of 8 bytes, encrypt all
3299 * the 8 byte blocks, then combine the remaining
3300 * bytes with enough from the next mbuf to make up
3301 * an 8 byte block and encrypt that block separately,
3302 * i.e. that block is split across two mbufs.
3305 left8
= left
- remain
;
3306 left
= left8
< len
? left8
: len
;
3308 gss_des_crypt(ki
, (des_cblock
*) ptr
, (des_cblock
*) ptr
,
3309 left
, &ivec
, &ivec
, encrypt
, KG_USAGE_SEAL
);
3313 if (mbn
&& remain
> 0) {
3314 nptr
= mbuf_data(mbn
);
3315 offset
= 8 - remain
;
3316 bcopy(ptr
+ left
, tmp
, remain
); // grab from this mbuf
3317 bcopy(nptr
, tmp
+ remain
, offset
); // grab from next mbuf
3318 gss_des_crypt(ki
, (des_cblock
*) tmp
, (des_cblock
*) tmp
, 8,
3319 &ivec
, &ivec
, encrypt
, KG_USAGE_SEAL
);
3320 bcopy(tmp
, ptr
+ left
, remain
); // return to this mbuf
3321 bcopy(tmp
+ remain
, nptr
, offset
); // return to next mbuf
3328 * Encrypt or decrypt data in an NFS mbuf chain with des-cbc.
3331 nfs_gss_encrypt_chain(
3333 struct nfsm_chain
*nmc
,
3339 * If the length parameter is zero, then we need
3340 * to use the length from the offset to the current
3341 * encode/decode offset.
3344 len
= nfsm_chain_offset(nmc
) - offset
;
3346 return (nfs_gss_encrypt_mchain(ki
, nmc
->nmc_mhead
, offset
, len
, encrypt
));
3350 * The routines that follow provide abstractions for doing digests and crypto.
3354 gss_digest_Init(GSS_DIGEST_CTX
*ctx
, gss_key_info
*ki
)
3356 ctx
->type
= ki
->type
;
3358 case NFS_GSS_1DES
: MD5_DESCBC_Init(&ctx
->m_ctx
, &ki
->ks_u
.des
.gss_sched
);
3360 case NFS_GSS_3DES
: HMAC_SHA1_DES3KD_Init(&ctx
->h_ctx
, ki
->ks_u
.des3
.ckey
, 0);
3363 printf("gss_digest_Init: Unknown key info type %d\n", ki
->type
);
3368 gss_digest_Update(GSS_DIGEST_CTX
*ctx
, void *data
, size_t len
)
3370 switch (ctx
->type
) {
3371 case NFS_GSS_1DES
: MD5_DESCBC_Update(&ctx
->m_ctx
, data
, len
);
3373 case NFS_GSS_3DES
: HMAC_SHA1_DES3KD_Update(&ctx
->h_ctx
, data
, len
);
3379 gss_digest_Final(GSS_DIGEST_CTX
*ctx
, void *digest
)
3381 switch (ctx
->type
) {
3382 case NFS_GSS_1DES
: MD5_DESCBC_Final(digest
, &ctx
->m_ctx
);
3384 case NFS_GSS_3DES
: HMAC_SHA1_DES3KD_Final(digest
, &ctx
->h_ctx
);
3390 gss_des_crypt(gss_key_info
*ki
, des_cblock
*in
, des_cblock
*out
,
3391 int32_t len
, des_cblock
*iv
, des_cblock
*retiv
, int encrypt
, int usage
)
3396 des_key_schedule
*sched
= ((usage
== KG_USAGE_SEAL
) ?
3397 &ki
->ks_u
.des
.gss_sched_Ke
:
3398 &ki
->ks_u
.des
.gss_sched
);
3399 des_cbc_encrypt(in
, out
, len
, *sched
, iv
, retiv
, encrypt
);
3404 des3_cbc_encrypt(in
, out
, len
, ki
->ks_u
.des3
.gss_sched
, iv
, retiv
, encrypt
);
3410 gss_key_init(gss_key_info
*ki
, uint32_t skeylen
)
3416 ki
->keybytes
= skeylen
;
3418 case sizeof(des_cblock
):
3419 ki
->type
= NFS_GSS_1DES
;
3420 ki
->hash_len
= MD5_DESCBC_DIGEST_LENGTH
;
3421 ki
->ks_u
.des
.key
= (des_cblock
*)ki
->skey
;
3422 rc
= des_key_sched(ki
->ks_u
.des
.key
, ki
->ks_u
.des
.gss_sched
);
3425 for (i
= 0; i
< ki
->keybytes
; i
++)
3426 k
[0][i
] = 0xf0 ^ (*ki
->ks_u
.des
.key
)[i
];
3427 rc
= des_key_sched(&k
[0], ki
->ks_u
.des
.gss_sched_Ke
);
3429 case 3*sizeof(des_cblock
):
3430 ki
->type
= NFS_GSS_3DES
;
3431 ki
->hash_len
= SHA_DIGEST_LENGTH
;
3432 ki
->ks_u
.des3
.key
= (des_cblock (*)[3])ki
->skey
;
3433 des3_derive_key(*ki
->ks_u
.des3
.key
, ki
->ks_u
.des3
.ckey
,
3434 KEY_USAGE_DES3_SIGN
, KEY_USAGE_LEN
);
3435 rc
= des3_key_sched(*ki
->ks_u
.des3
.key
, ki
->ks_u
.des3
.gss_sched
);
3440 printf("gss_key_init: Invalid key length %d\n", skeylen
);
3449 #define DISPLAYLEN 16
3450 #define MAXDISPLAYLEN 256
3453 hexdump(const char *msg
, void *data
, size_t len
)
3457 char *p
, disbuf
[3*DISPLAYLEN
+1];
3459 printf("NFS DEBUG %s len=%d:\n", msg
, (uint32_t)len
);
3460 if (len
> MAXDISPLAYLEN
)
3461 len
= MAXDISPLAYLEN
;
3463 for (i
= 0; i
< len
; i
+= DISPLAYLEN
) {
3464 for (p
= disbuf
, j
= 0; (j
+ i
) < len
&& j
< DISPLAYLEN
; j
++, p
+= 3)
3465 snprintf(p
, 4, "%02x ", d
[i
+ j
]);
3466 printf("\t%s\n", disbuf
);