2 * Copyright (c) 2006-2019 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@
29 #include <nfs/nfs_conf.h>
33 * miscellaneous support functions for NFSv4
35 #include <sys/param.h>
37 #include <sys/kauth.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/mount_internal.h>
41 #include <sys/vnode_internal.h>
42 #include <sys/kpi_mbuf.h>
43 #include <sys/socket.h>
45 #include <sys/malloc.h>
46 #include <sys/syscall.h>
47 #include <sys/ubc_internal.h>
48 #include <sys/fcntl.h>
49 #include <sys/quota.h>
50 #include <sys/domain.h>
51 #include <libkern/OSAtomic.h>
52 #include <kern/thread_call.h>
55 #include <sys/vmparam.h>
58 #include <kern/clock.h>
60 #include <nfs/rpcv2.h>
61 #include <nfs/nfsproto.h>
63 #include <nfs/nfsnode.h>
64 #include <nfs/xdr_subs.h>
65 #include <nfs/nfsm_subs.h>
66 #include <nfs/nfs_gss.h>
67 #include <nfs/nfsmount.h>
68 #include <nfs/nfs_lock.h>
70 #include <miscfs/specfs/specdev.h>
72 #include <netinet/in.h>
73 #include <net/kpi_interface.h>
77 * NFS_MAX_WHO is the maximum length of a string representation used
78 * in as an ace who, owner, or group. There is no explicit limit in the
79 * protocol, however the kauth routines have a limit of MAPATHLEN for
80 * strings including the trailing null character, so we impose that
81 * limit. This should be changed if kauth routines change.
83 * We also want some reasonable maximum, as 32 bits worth of string length
84 * is liable to cause problems. At the very least this limit must guarantee
85 * that any express that contains the 32 bit length from off the wire used in
86 * allocations does not overflow.
88 #define NFS_MAX_WHO MAXPATHLEN
91 * Create the unique client ID to use for this mount.
93 * Format: unique ID + en0_address + server_address + mntfromname + mntonname
95 * We could possibly use one client ID for all mounts of the same server;
96 * however, that would complicate some aspects of state management.
98 * Each mount socket connection sends a SETCLIENTID. If the ID is the same but
99 * the verifier (mounttime) changes, then all previous (mounts') state gets dropped.
101 * State is typically managed per-mount and in order to keep it that way
102 * each mount needs to use a separate client ID. However, we also need to
103 * make sure that each mount uses the same client ID each time.
105 * In an attempt to differentiate mounts we include the mntfromname and mntonname
106 * strings to the client ID (as long as they fit). We also make sure that the
107 * value does not conflict with any existing values in use (changing the unique ID).
109 * Note that info such as the server's address may change over the lifetime of the
110 * mount. But the client ID will not be updated because we don't want it changing
111 * simply because we switched to a different server address.
114 nfs4_init_clientid(struct nfsmount
*nmp
)
116 struct nfs_client_id
*ncip
, *ncip2
;
117 struct sockaddr
*saddr
;
118 int error
, len
, len2
, cmp
;
119 struct vfsstatfs
*vsfs
;
121 static uint8_t en0addr
[6];
122 static uint8_t en0addr_set
= 0;
124 lck_mtx_lock(nfs_global_mutex
);
126 ifnet_t interface
= NULL
;
127 error
= ifnet_find_by_name("en0", &interface
);
129 error
= ifnet_lladdr_copy_bytes(interface
, en0addr
, sizeof(en0addr
));
132 printf("nfs4_init_clientid: error getting en0 address, %d\n", error
);
138 ifnet_release(interface
);
141 lck_mtx_unlock(nfs_global_mutex
);
143 MALLOC(ncip
, struct nfs_client_id
*, sizeof(struct nfs_client_id
), M_TEMP
, M_WAITOK
);
148 vsfs
= vfs_statfs(nmp
->nm_mountp
);
149 saddr
= nmp
->nm_saddr
;
150 ncip
->nci_idlen
= sizeof(uint32_t) + sizeof(en0addr
) + saddr
->sa_len
+
151 strlen(vsfs
->f_mntfromname
) + 1 + strlen(vsfs
->f_mntonname
) + 1;
152 if (ncip
->nci_idlen
> NFS4_OPAQUE_LIMIT
) {
153 ncip
->nci_idlen
= NFS4_OPAQUE_LIMIT
;
155 MALLOC(ncip
->nci_id
, char *, ncip
->nci_idlen
, M_TEMP
, M_WAITOK
);
161 *(uint32_t*)ncip
->nci_id
= 0;
162 len
= sizeof(uint32_t);
163 len2
= min(sizeof(en0addr
), ncip
->nci_idlen
- len
);
164 bcopy(en0addr
, &ncip
->nci_id
[len
], len2
);
165 len
+= sizeof(en0addr
);
166 len2
= min(saddr
->sa_len
, ncip
->nci_idlen
- len
);
167 bcopy(saddr
, &ncip
->nci_id
[len
], len2
);
169 if (len
< ncip
->nci_idlen
) {
170 len2
= strlcpy(&ncip
->nci_id
[len
], vsfs
->f_mntfromname
, ncip
->nci_idlen
- len
);
171 if (len2
< (ncip
->nci_idlen
- len
)) {
174 len
= ncip
->nci_idlen
;
177 if (len
< ncip
->nci_idlen
) {
178 len2
= strlcpy(&ncip
->nci_id
[len
], vsfs
->f_mntonname
, ncip
->nci_idlen
- len
);
179 if (len2
< (ncip
->nci_idlen
- len
)) {
182 len
= ncip
->nci_idlen
;
186 /* make sure the ID is unique, and add it to the sorted list */
187 lck_mtx_lock(nfs_global_mutex
);
188 TAILQ_FOREACH(ncip2
, &nfsclientids
, nci_link
) {
189 if (ncip
->nci_idlen
> ncip2
->nci_idlen
) {
192 if (ncip
->nci_idlen
< ncip2
->nci_idlen
) {
195 cmp
= bcmp(ncip
->nci_id
+ sizeof(uint32_t),
196 ncip2
->nci_id
+ sizeof(uint32_t),
197 ncip
->nci_idlen
- sizeof(uint32_t));
204 if (*(uint32_t*)ncip
->nci_id
> *(uint32_t*)ncip2
->nci_id
) {
207 if (*(uint32_t*)ncip
->nci_id
< *(uint32_t*)ncip2
->nci_id
) {
210 *(uint32_t*)ncip
->nci_id
+= 1;
212 if (*(uint32_t*)ncip
->nci_id
) {
213 printf("nfs client ID collision (%d) for %s on %s\n", *(uint32_t*)ncip
->nci_id
,
214 vsfs
->f_mntfromname
, vsfs
->f_mntonname
);
217 TAILQ_INSERT_BEFORE(ncip2
, ncip
, nci_link
);
219 TAILQ_INSERT_TAIL(&nfsclientids
, ncip
, nci_link
);
221 nmp
->nm_longid
= ncip
;
222 lck_mtx_unlock(nfs_global_mutex
);
231 nfs4_setclientid(struct nfsmount
*nmp
)
233 uint64_t verifier
, xid
;
234 int error
= 0, status
, numops
;
235 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
];
238 struct nfsm_chain nmreq
, nmrep
;
239 struct sockaddr_storage ss
;
240 void *sinaddr
= NULL
;
241 char raddr
[MAX_IPv6_STR_LEN
];
242 char uaddr
[MAX_IPv6_STR_LEN
+ 16];
246 thd
= current_thread();
247 cred
= IS_VALID_CRED(nmp
->nm_mcred
) ? nmp
->nm_mcred
: vfs_context_ucred(vfs_context_kernel());
248 kauth_cred_ref(cred
);
250 nfsm_chain_null(&nmreq
);
251 nfsm_chain_null(&nmrep
);
253 if (!nmp
->nm_longid
) {
254 error
= nfs4_init_clientid(nmp
);
259 nfsm_chain_build_alloc_init(error
, &nmreq
, 14 * NFSX_UNSIGNED
+ nmp
->nm_longid
->nci_idlen
);
260 nfsm_chain_add_compound_header(error
, &nmreq
, "setclid", nmp
->nm_minor_vers
, numops
);
262 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_SETCLIENTID
);
263 /* nfs_client_id4 client; */
264 nfsm_chain_add_64(error
, &nmreq
, nmp
->nm_mounttime
);
265 nfsm_chain_add_32(error
, &nmreq
, nmp
->nm_longid
->nci_idlen
);
266 nfsm_chain_add_opaque(error
, &nmreq
, nmp
->nm_longid
->nci_id
, nmp
->nm_longid
->nci_idlen
);
268 /* cb_client4 callback; */
269 if (!NMFLAG(nmp
, NOCALLBACK
) && nmp
->nm_cbid
&& nfs4_cb_port
&&
270 !sock_getsockname(nmp
->nm_nso
->nso_so
, (struct sockaddr
*)&ss
, sizeof(ss
))) {
271 if (ss
.ss_family
== AF_INET
) {
272 sinaddr
= &((struct sockaddr_in
*)&ss
)->sin_addr
;
274 } else if (ss
.ss_family
== AF_INET6
) {
275 sinaddr
= &((struct sockaddr_in6
*)&ss
)->sin6_addr
;
276 port
= nfs4_cb_port6
;
278 if (sinaddr
&& port
&& (inet_ntop(ss
.ss_family
, sinaddr
, raddr
, sizeof(raddr
)) == raddr
)) {
279 /* assemble r_addr = universal address (nmp->nm_nso->nso_so source IP addr + port) */
280 ualen
= snprintf(uaddr
, sizeof(uaddr
), "%s.%d.%d", raddr
,
281 ((port
>> 8) & 0xff),
283 /* make sure it fit, give up if it didn't */
284 if (ualen
>= (int)sizeof(uaddr
)) {
290 /* add callback info */
291 nfsm_chain_add_32(error
, &nmreq
, NFS4_CALLBACK_PROG
); /* callback program */
292 if (ss
.ss_family
== AF_INET
) {
293 nfsm_chain_add_string(error
, &nmreq
, "tcp", 3); /* callback r_netid */
294 } else if (ss
.ss_family
== AF_INET6
) {
295 nfsm_chain_add_string(error
, &nmreq
, "tcp6", 4); /* callback r_netid */
297 nfsm_chain_add_string(error
, &nmreq
, uaddr
, ualen
); /* callback r_addr */
298 nfsm_chain_add_32(error
, &nmreq
, nmp
->nm_cbid
); /* callback_ident */
300 /* don't provide valid callback info */
301 nfsm_chain_add_32(error
, &nmreq
, 0); /* callback program */
302 nfsm_chain_add_string(error
, &nmreq
, "", 0); /* callback r_netid */
303 nfsm_chain_add_string(error
, &nmreq
, "", 0); /* callback r_addr */
304 nfsm_chain_add_32(error
, &nmreq
, 0); /* callback_ident */
306 nfsm_chain_build_done(error
, &nmreq
);
307 nfsm_assert(error
, (numops
== 0), EPROTO
);
309 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
, thd
, cred
, NULL
, R_SETUP
, &nmrep
, &xid
, &status
);
310 nfsm_chain_skip_tag(error
, &nmrep
);
311 nfsm_chain_get_32(error
, &nmrep
, numops
);
312 if (!error
&& (numops
!= 1) && status
) {
315 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_SETCLIENTID
);
316 if (error
== NFSERR_CLID_INUSE
) {
317 printf("nfs4_setclientid: client ID in use?\n");
320 nfsm_chain_get_64(error
, &nmrep
, nmp
->nm_clientid
);
321 nfsm_chain_get_64(error
, &nmrep
, verifier
);
322 nfsm_chain_cleanup(&nmreq
);
323 nfsm_chain_cleanup(&nmrep
);
325 // SETCLIENTID_CONFIRM
327 nfsm_chain_build_alloc_init(error
, &nmreq
, 15 * NFSX_UNSIGNED
);
328 nfsm_chain_add_compound_header(error
, &nmreq
, "setclid_conf", nmp
->nm_minor_vers
, numops
);
330 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_SETCLIENTID_CONFIRM
);
331 nfsm_chain_add_64(error
, &nmreq
, nmp
->nm_clientid
);
332 nfsm_chain_add_64(error
, &nmreq
, verifier
);
333 nfsm_chain_build_done(error
, &nmreq
);
334 nfsm_assert(error
, (numops
== 0), EPROTO
);
336 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
, thd
, cred
, NULL
, R_SETUP
, &nmrep
, &xid
, &status
);
337 nfsm_chain_skip_tag(error
, &nmrep
);
338 nfsm_chain_get_32(error
, &nmrep
, numops
);
339 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_SETCLIENTID_CONFIRM
);
341 printf("nfs4_setclientid: confirm error %d\n", error
);
343 lck_mtx_lock(&nmp
->nm_lock
);
345 nmp
->nm_state
|= NFSSTA_CLIENTID
;
347 lck_mtx_unlock(&nmp
->nm_lock
);
349 nfsmout_if(error
|| !nmp
->nm_dnp
);
351 /* take the opportunity to refresh fs attributes too */
352 // PUTFH, GETATTR(FS)
354 nfsm_chain_build_alloc_init(error
, &nmreq
, 23 * NFSX_UNSIGNED
);
355 nfsm_chain_add_compound_header(error
, &nmreq
, "setclid_attr", nmp
->nm_minor_vers
, numops
);
357 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTFH
);
358 nfsm_chain_add_fh(error
, &nmreq
, nmp
->nm_vers
, nmp
->nm_dnp
->n_fhp
, nmp
->nm_dnp
->n_fhsize
);
360 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_GETATTR
);
361 NFS_CLEAR_ATTRIBUTES(bitmap
);
362 NFS4_PER_FS_ATTRIBUTES(bitmap
);
363 nfsm_chain_add_bitmap(error
, &nmreq
, bitmap
, NFS_ATTR_BITMAP_LEN
);
364 nfsm_chain_build_done(error
, &nmreq
);
365 nfsm_assert(error
, (numops
== 0), EPROTO
);
367 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
, thd
, cred
, NULL
, R_SETUP
, &nmrep
, &xid
, &status
);
368 nfsm_chain_skip_tag(error
, &nmrep
);
369 nfsm_chain_get_32(error
, &nmrep
, numops
);
370 lck_mtx_lock(&nmp
->nm_lock
);
371 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_PUTFH
);
372 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_GETATTR
);
374 error
= nfs4_parsefattr(&nmrep
, &nmp
->nm_fsattr
, NULL
, NULL
, NULL
, NULL
);
376 lck_mtx_unlock(&nmp
->nm_lock
);
377 if (error
) { /* ignore any error from the getattr */
381 nfsm_chain_cleanup(&nmreq
);
382 nfsm_chain_cleanup(&nmrep
);
383 kauth_cred_unref(&cred
);
385 printf("nfs4_setclientid failed, %d\n", error
);
391 * renew/check lease state on server
394 nfs4_renew(struct nfsmount
*nmp
, int rpcflag
)
396 int error
= 0, status
, numops
;
398 struct nfsm_chain nmreq
, nmrep
;
401 cred
= IS_VALID_CRED(nmp
->nm_mcred
) ? nmp
->nm_mcred
: vfs_context_ucred(vfs_context_kernel());
402 kauth_cred_ref(cred
);
404 nfsm_chain_null(&nmreq
);
405 nfsm_chain_null(&nmrep
);
409 nfsm_chain_build_alloc_init(error
, &nmreq
, 8 * NFSX_UNSIGNED
);
410 nfsm_chain_add_compound_header(error
, &nmreq
, "renew", nmp
->nm_minor_vers
, numops
);
412 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_RENEW
);
413 nfsm_chain_add_64(error
, &nmreq
, nmp
->nm_clientid
);
414 nfsm_chain_build_done(error
, &nmreq
);
415 nfsm_assert(error
, (numops
== 0), EPROTO
);
417 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
,
418 current_thread(), cred
, NULL
, rpcflag
, &nmrep
, &xid
, &status
);
419 nfsm_chain_skip_tag(error
, &nmrep
);
420 nfsm_chain_get_32(error
, &nmrep
, numops
);
421 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_RENEW
);
423 nfsm_chain_cleanup(&nmreq
);
424 nfsm_chain_cleanup(&nmrep
);
425 kauth_cred_unref(&cred
);
431 * periodic timer to renew lease state on server
434 nfs4_renew_timer(void *param0
, __unused
void *param1
)
436 struct nfsmount
*nmp
= param0
;
438 int error
= 0, interval
;
440 lck_mtx_lock(&nmp
->nm_lock
);
441 clientid
= nmp
->nm_clientid
;
442 if ((nmp
->nm_state
& NFSSTA_RECOVER
) || !(nmp
->nm_sockflags
& NMSOCK_READY
)) {
443 lck_mtx_unlock(&nmp
->nm_lock
);
446 lck_mtx_unlock(&nmp
->nm_lock
);
448 error
= nfs4_renew(nmp
, R_RECOVER
);
450 if (error
== ETIMEDOUT
) {
451 nfs_need_reconnect(nmp
);
453 printf("nfs4_renew_timer: error %d\n", error
);
455 lck_mtx_lock(&nmp
->nm_lock
);
456 if (error
&& (error
!= ETIMEDOUT
) &&
457 (nmp
->nm_clientid
== clientid
) && !(nmp
->nm_state
& NFSSTA_RECOVER
)) {
458 printf("nfs4_renew_timer: error %d, initiating recovery\n", error
);
459 nfs_need_recover(nmp
, error
);
462 interval
= nmp
->nm_fsattr
.nfsa_lease
/ (error
? 4 : 2);
463 if ((interval
< 1) || (nmp
->nm_state
& NFSSTA_RECOVER
)) {
466 lck_mtx_unlock(&nmp
->nm_lock
);
467 nfs_interval_timer_start(nmp
->nm_renew_timer
, interval
* 1000);
471 * get the list of supported security flavors
473 * How we get them depends on what args we are given:
477 * YES YES Use the fh and name provided
478 * YES NO 4.1-only just use the fh provided
479 * NO YES Use the node's (or root) fh and the name provided
480 * NO NO Use the node's parent and the node's name (4.1 will just use node's fh)
483 nfs4_secinfo_rpc(struct nfsmount
*nmp
, struct nfsreq_secinfo_args
*siap
, kauth_cred_t cred
, uint32_t *sec
, int *seccountp
)
485 int error
= 0, status
, nfsvers
, numops
, namelen
, fhsize
;
486 vnode_t dvp
= NULLVP
;
489 const char *vname
= NULL
, *name
;
491 struct nfsm_chain nmreq
, nmrep
;
494 if (nfs_mount_gone(nmp
)) {
497 nfsvers
= nmp
->nm_vers
;
500 nfsm_chain_null(&nmreq
);
501 nfsm_chain_null(&nmrep
);
504 fhsize
= fhp
? siap
->rsia_fhsize
: 0;
505 name
= siap
->rsia_name
;
506 namelen
= name
? siap
->rsia_namelen
: 0;
507 if (name
&& !namelen
) {
508 namelen
= strlen(name
);
511 if (!np
) { /* use PUTROOTFH */
515 fhsize
= np
->n_fhsize
;
524 nfs_node_lock_force(np
);
525 if ((vnode_vtype(NFSTOV(np
)) != VDIR
) && np
->n_sillyrename
) {
527 * The node's been sillyrenamed, so we need to use
528 * the sillyrename directory/name to do the open.
530 struct nfs_sillyrename
*nsp
= np
->n_sillyrename
;
533 if ((error
= vnode_get(dvp
))) {
539 fhsize
= dnp
->n_fhsize
;
540 name
= nsp
->nsr_name
;
541 namelen
= nsp
->nsr_namlen
;
544 * [sigh] We can't trust VFS to get the parent right for named
545 * attribute nodes. (It likes to reparent the nodes after we've
546 * created them.) Luckily we can probably get the right parent
547 * from the n_parent we have stashed away.
549 if ((np
->n_vattr
.nva_flags
& NFS_FFLAG_IS_ATTR
) &&
550 (((dvp
= np
->n_parent
)) && (error
= vnode_get(dvp
)))) {
554 dvp
= vnode_getparent(NFSTOV(np
));
556 vname
= vnode_getname(NFSTOV(np
));
557 if (!dvp
|| !vname
) {
566 fhsize
= dnp
->n_fhsize
;
568 namelen
= strnlen(vname
, MAXPATHLEN
);
573 // PUT(ROOT)FH + SECINFO
575 nfsm_chain_build_alloc_init(error
, &nmreq
,
576 4 * NFSX_UNSIGNED
+ NFSX_FH(nfsvers
) + nfsm_rndup(namelen
));
577 nfsm_chain_add_compound_header(error
, &nmreq
, "secinfo", nmp
->nm_minor_vers
, numops
);
580 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTFH
);
581 nfsm_chain_add_fh(error
, &nmreq
, nfsvers
, fhp
, fhsize
);
583 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTROOTFH
);
586 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_SECINFO
);
587 nfsm_chain_add_name(error
, &nmreq
, name
, namelen
, nmp
);
588 nfsm_chain_build_done(error
, &nmreq
);
589 nfsm_assert(error
, (numops
== 0), EPROTO
);
591 error
= nfs_request2(np
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
,
592 current_thread(), cred
, NULL
, 0, &nmrep
, &xid
, &status
);
593 nfsm_chain_skip_tag(error
, &nmrep
);
594 nfsm_chain_get_32(error
, &nmrep
, numops
);
595 nfsm_chain_op_check(error
, &nmrep
, fhp
? NFS_OP_PUTFH
: NFS_OP_PUTROOTFH
);
596 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_SECINFO
);
598 error
= nfsm_chain_get_secinfo(&nmrep
, sec
, seccountp
);
600 nfsm_chain_cleanup(&nmreq
);
601 nfsm_chain_cleanup(&nmrep
);
603 vnode_putname(vname
);
610 #endif /* CONFIG_NFS4 */
613 * Parse an NFSv4 SECINFO array to an array of pseudo flavors.
614 * (Note: also works for MOUNTv3 security arrays.)
617 nfsm_chain_get_secinfo(struct nfsm_chain
*nmc
, uint32_t *sec
, int *seccountp
)
619 int error
= 0, secmax
, seccount
, srvcount
;
627 seccount
= srvcount
= 0;
631 nfsm_chain_get_32(error
, nmc
, srvcount
);
632 while (!error
&& (srvcount
> 0) && (seccount
< secmax
)) {
633 nfsm_chain_get_32(error
, nmc
, flavor
);
642 #endif /* CONFIG_NFS_GSS */
643 sec
[seccount
++] = flavor
;
647 /* we only recognize KRB5, KRB5I, KRB5P */
648 nfsm_chain_get_32(error
, nmc
, val
); /* OID length */
650 if (val
!= sizeof(krb5_mech_oid
)) {
651 nfsm_chain_adv(error
, nmc
, val
);
652 nfsm_chain_adv(error
, nmc
, 2 * NFSX_UNSIGNED
);
655 nfsm_chain_get_opaque(error
, nmc
, val
, oid
); /* OID bytes */
657 if (bcmp(oid
, krb5_mech_oid
, sizeof(krb5_mech_oid
))) {
658 nfsm_chain_adv(error
, nmc
, 2 * NFSX_UNSIGNED
);
661 nfsm_chain_get_32(error
, nmc
, val
); /* QOP */
662 nfsm_chain_get_32(error
, nmc
, val
); /* SERVICE */
665 case RPCSEC_GSS_SVC_NONE
:
666 sec
[seccount
++] = RPCAUTH_KRB5
;
668 case RPCSEC_GSS_SVC_INTEGRITY
:
669 sec
[seccount
++] = RPCAUTH_KRB5I
;
671 case RPCSEC_GSS_SVC_PRIVACY
:
672 sec
[seccount
++] = RPCAUTH_KRB5P
;
676 #endif /* CONFIG_NFS_GSS */
682 *seccountp
= seccount
;
689 * Fetch the FS_LOCATIONS attribute for the node found at directory/name.
692 nfs4_get_fs_locations(
693 struct nfsmount
*nmp
,
699 struct nfs_fs_locations
*nfslsp
)
701 int error
= 0, numops
, status
;
702 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
];
703 struct nfsreq rq
, *req
= &rq
;
704 struct nfsreq_secinfo_args si
;
705 struct nfsm_chain nmreq
, nmrep
;
710 fhsize
= dnp
->n_fhsize
;
716 nfsm_chain_null(&nmreq
);
717 nfsm_chain_null(&nmrep
);
719 NFSREQ_SECINFO_SET(&si
, NULL
, fhp
, fhsize
, name
, 0);
721 nfsm_chain_build_alloc_init(error
, &nmreq
, 18 * NFSX_UNSIGNED
);
722 nfsm_chain_add_compound_header(error
, &nmreq
, "fs_locations", nmp
->nm_minor_vers
, numops
);
724 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTFH
);
725 nfsm_chain_add_fh(error
, &nmreq
, NFS_VER4
, fhp
, fhsize
);
727 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_LOOKUP
);
728 nfsm_chain_add_name(error
, &nmreq
, name
, strlen(name
), nmp
);
730 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_GETATTR
);
731 NFS_CLEAR_ATTRIBUTES(bitmap
);
732 NFS_BITMAP_SET(bitmap
, NFS_FATTR_FS_LOCATIONS
);
733 nfsm_chain_add_bitmap(error
, &nmreq
, bitmap
, NFS_ATTR_BITMAP_LEN
);
734 nfsm_chain_build_done(error
, &nmreq
);
735 nfsm_assert(error
, (numops
== 0), EPROTO
);
737 error
= nfs_request_async(dnp
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
,
738 vfs_context_thread(ctx
), vfs_context_ucred(ctx
), &si
, 0, NULL
, &req
);
740 error
= nfs_request_async_finish(req
, &nmrep
, &xid
, &status
);
742 nfsm_chain_skip_tag(error
, &nmrep
);
743 nfsm_chain_get_32(error
, &nmrep
, numops
);
744 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_PUTFH
);
745 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_LOOKUP
);
746 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_GETATTR
);
748 error
= nfs4_parsefattr(&nmrep
, NULL
, NULL
, NULL
, NULL
, nfslsp
);
750 nfsm_chain_cleanup(&nmrep
);
751 nfsm_chain_cleanup(&nmreq
);
756 * Referral trigger nodes may not have many attributes provided by the
757 * server, so put some default values in place.
760 nfs4_default_attrs_for_referral_trigger(
764 struct nfs_vattr
*nvap
,
771 nvap
->nva_flags
= NFS_FFLAG_TRIGGER
| NFS_FFLAG_TRIGGER_REFERRAL
;
772 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TYPE
)) {
773 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TYPE
);
774 nvap
->nva_type
= VDIR
;
776 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_FSID
)) {
777 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_FSID
);
778 nvap
->nva_fsid
.major
= 0;
779 nvap
->nva_fsid
.minor
= 0;
781 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_OWNER
) && dnp
) {
782 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_OWNER
);
783 nvap
->nva_uid
= dnp
->n_vattr
.nva_uid
;
784 nvap
->nva_uuuid
= dnp
->n_vattr
.nva_uuuid
;
786 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_OWNER_GROUP
) && dnp
) {
787 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_OWNER_GROUP
);
788 nvap
->nva_gid
= dnp
->n_vattr
.nva_gid
;
789 nvap
->nva_guuid
= dnp
->n_vattr
.nva_guuid
;
791 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_MODE
)) {
792 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_MODE
);
793 nvap
->nva_mode
= 0777;
795 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_SIZE
)) {
796 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_SIZE
);
799 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_SPACE_USED
)) {
800 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_SPACE_USED
);
803 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_NUMLINKS
)) {
804 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_NUMLINKS
);
807 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TIME_ACCESS
)) {
808 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TIME_ACCESS
);
809 nvap
->nva_timesec
[NFSTIME_ACCESS
] = now
.tv_sec
;
810 nvap
->nva_timensec
[NFSTIME_ACCESS
] = now
.tv_nsec
;
812 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TIME_MODIFY
)) {
813 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TIME_MODIFY
);
814 nvap
->nva_timesec
[NFSTIME_MODIFY
] = now
.tv_sec
;
815 nvap
->nva_timensec
[NFSTIME_MODIFY
] = now
.tv_nsec
;
817 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TIME_METADATA
)) {
818 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TIME_METADATA
);
819 nvap
->nva_timesec
[NFSTIME_CHANGE
] = now
.tv_sec
;
820 nvap
->nva_timensec
[NFSTIME_CHANGE
] = now
.tv_nsec
;
822 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_FILEID
)) {
823 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_FILEID
);
824 nvap
->nva_fileid
= 42;
826 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_FILEHANDLE
) && dnp
&& name
&& fhp
) {
827 /* Build a fake filehandle made up of parent node pointer and name */
828 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_FILEHANDLE
);
829 bcopy(&dnp
, &fhp
->fh_data
[0], sizeof(dnp
));
830 len
= sizeof(fhp
->fh_data
) - sizeof(dnp
);
831 bcopy(name
, &fhp
->fh_data
[0] + sizeof(dnp
), MIN(len
, namelen
));
832 fhp
->fh_len
= sizeof(dnp
) + namelen
;
833 if (fhp
->fh_len
> (int)sizeof(fhp
->fh_data
)) {
834 fhp
->fh_len
= sizeof(fhp
->fh_data
);
840 * Set NFS bitmap according to what's set in vnode_attr (and supported by the server).
843 nfs_vattr_set_bitmap(struct nfsmount
*nmp
, uint32_t *bitmap
, struct vnode_attr
*vap
)
847 NFS_CLEAR_ATTRIBUTES(bitmap
);
848 if (VATTR_IS_ACTIVE(vap
, va_data_size
)) {
849 NFS_BITMAP_SET(bitmap
, NFS_FATTR_SIZE
);
851 if (VATTR_IS_ACTIVE(vap
, va_acl
) && (nmp
->nm_fsattr
.nfsa_flags
& NFS_FSFLAG_ACL
)) {
852 NFS_BITMAP_SET(bitmap
, NFS_FATTR_ACL
);
854 if (VATTR_IS_ACTIVE(vap
, va_flags
)) {
855 NFS_BITMAP_SET(bitmap
, NFS_FATTR_ARCHIVE
);
856 NFS_BITMAP_SET(bitmap
, NFS_FATTR_HIDDEN
);
858 // NFS_BITMAP_SET(bitmap, NFS_FATTR_MIMETYPE)
859 if (VATTR_IS_ACTIVE(vap
, va_mode
) && !NMFLAG(nmp
, ACLONLY
)) {
860 NFS_BITMAP_SET(bitmap
, NFS_FATTR_MODE
);
862 if (VATTR_IS_ACTIVE(vap
, va_uid
) || VATTR_IS_ACTIVE(vap
, va_uuuid
)) {
863 NFS_BITMAP_SET(bitmap
, NFS_FATTR_OWNER
);
865 if (VATTR_IS_ACTIVE(vap
, va_gid
) || VATTR_IS_ACTIVE(vap
, va_guuid
)) {
866 NFS_BITMAP_SET(bitmap
, NFS_FATTR_OWNER_GROUP
);
868 // NFS_BITMAP_SET(bitmap, NFS_FATTR_SYSTEM)
869 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
870 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
);
871 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
);
873 if (VATTR_IS_ACTIVE(vap
, va_access_time
)) {
874 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
);
876 if (VATTR_IS_ACTIVE(vap
, va_modify_time
)) {
877 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
);
880 if (VATTR_IS_ACTIVE(vap
, va_backup_time
)) {
881 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_BACKUP
);
883 if (VATTR_IS_ACTIVE(vap
, va_create_time
)) {
884 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_CREATE
);
886 /* and limit to what is supported by server */
887 for (i
= 0; i
< NFS_ATTR_BITMAP_LEN
; i
++) {
888 bitmap
[i
] &= nmp
->nm_fsattr
.nfsa_supp_attr
[i
];
893 * Convert between NFSv4 and VFS ACE types
896 nfs4_ace_nfstype_to_vfstype(uint32_t nfsacetype
, int *errorp
)
898 switch (nfsacetype
) {
899 case NFS_ACE_ACCESS_ALLOWED_ACE_TYPE
:
900 return KAUTH_ACE_PERMIT
;
901 case NFS_ACE_ACCESS_DENIED_ACE_TYPE
:
902 return KAUTH_ACE_DENY
;
903 case NFS_ACE_SYSTEM_AUDIT_ACE_TYPE
:
904 return KAUTH_ACE_AUDIT
;
905 case NFS_ACE_SYSTEM_ALARM_ACE_TYPE
:
906 return KAUTH_ACE_ALARM
;
913 nfs4_ace_vfstype_to_nfstype(uint32_t vfstype
, int *errorp
)
916 case KAUTH_ACE_PERMIT
:
917 return NFS_ACE_ACCESS_ALLOWED_ACE_TYPE
;
919 return NFS_ACE_ACCESS_DENIED_ACE_TYPE
;
920 case KAUTH_ACE_AUDIT
:
921 return NFS_ACE_SYSTEM_AUDIT_ACE_TYPE
;
922 case KAUTH_ACE_ALARM
:
923 return NFS_ACE_SYSTEM_ALARM_ACE_TYPE
;
930 * Convert between NFSv4 and VFS ACE flags
933 nfs4_ace_nfsflags_to_vfsflags(uint32_t nfsflags
)
935 uint32_t vfsflags
= 0;
937 if (nfsflags
& NFS_ACE_FILE_INHERIT_ACE
) {
938 vfsflags
|= KAUTH_ACE_FILE_INHERIT
;
940 if (nfsflags
& NFS_ACE_DIRECTORY_INHERIT_ACE
) {
941 vfsflags
|= KAUTH_ACE_DIRECTORY_INHERIT
;
943 if (nfsflags
& NFS_ACE_NO_PROPAGATE_INHERIT_ACE
) {
944 vfsflags
|= KAUTH_ACE_LIMIT_INHERIT
;
946 if (nfsflags
& NFS_ACE_INHERIT_ONLY_ACE
) {
947 vfsflags
|= KAUTH_ACE_ONLY_INHERIT
;
949 if (nfsflags
& NFS_ACE_SUCCESSFUL_ACCESS_ACE_FLAG
) {
950 vfsflags
|= KAUTH_ACE_SUCCESS
;
952 if (nfsflags
& NFS_ACE_FAILED_ACCESS_ACE_FLAG
) {
953 vfsflags
|= KAUTH_ACE_FAILURE
;
955 if (nfsflags
& NFS_ACE_INHERITED_ACE
) {
956 vfsflags
|= KAUTH_ACE_INHERITED
;
963 nfs4_ace_vfsflags_to_nfsflags(uint32_t vfsflags
)
965 uint32_t nfsflags
= 0;
967 if (vfsflags
& KAUTH_ACE_FILE_INHERIT
) {
968 nfsflags
|= NFS_ACE_FILE_INHERIT_ACE
;
970 if (vfsflags
& KAUTH_ACE_DIRECTORY_INHERIT
) {
971 nfsflags
|= NFS_ACE_DIRECTORY_INHERIT_ACE
;
973 if (vfsflags
& KAUTH_ACE_LIMIT_INHERIT
) {
974 nfsflags
|= NFS_ACE_NO_PROPAGATE_INHERIT_ACE
;
976 if (vfsflags
& KAUTH_ACE_ONLY_INHERIT
) {
977 nfsflags
|= NFS_ACE_INHERIT_ONLY_ACE
;
979 if (vfsflags
& KAUTH_ACE_SUCCESS
) {
980 nfsflags
|= NFS_ACE_SUCCESSFUL_ACCESS_ACE_FLAG
;
982 if (vfsflags
& KAUTH_ACE_FAILURE
) {
983 nfsflags
|= NFS_ACE_FAILED_ACCESS_ACE_FLAG
;
985 if (vfsflags
& KAUTH_ACE_INHERITED
) {
986 nfsflags
|= NFS_ACE_INHERITED_ACE
;
993 * Convert between NFSv4 ACE access masks and VFS access rights
996 nfs4_ace_nfsmask_to_vfsrights(uint32_t nfsmask
)
998 uint32_t vfsrights
= 0;
1000 if (nfsmask
& NFS_ACE_READ_DATA
) {
1001 vfsrights
|= KAUTH_VNODE_READ_DATA
;
1003 if (nfsmask
& NFS_ACE_LIST_DIRECTORY
) {
1004 vfsrights
|= KAUTH_VNODE_LIST_DIRECTORY
;
1006 if (nfsmask
& NFS_ACE_WRITE_DATA
) {
1007 vfsrights
|= KAUTH_VNODE_WRITE_DATA
;
1009 if (nfsmask
& NFS_ACE_ADD_FILE
) {
1010 vfsrights
|= KAUTH_VNODE_ADD_FILE
;
1012 if (nfsmask
& NFS_ACE_APPEND_DATA
) {
1013 vfsrights
|= KAUTH_VNODE_APPEND_DATA
;
1015 if (nfsmask
& NFS_ACE_ADD_SUBDIRECTORY
) {
1016 vfsrights
|= KAUTH_VNODE_ADD_SUBDIRECTORY
;
1018 if (nfsmask
& NFS_ACE_READ_NAMED_ATTRS
) {
1019 vfsrights
|= KAUTH_VNODE_READ_EXTATTRIBUTES
;
1021 if (nfsmask
& NFS_ACE_WRITE_NAMED_ATTRS
) {
1022 vfsrights
|= KAUTH_VNODE_WRITE_EXTATTRIBUTES
;
1024 if (nfsmask
& NFS_ACE_EXECUTE
) {
1025 vfsrights
|= KAUTH_VNODE_EXECUTE
;
1027 if (nfsmask
& NFS_ACE_DELETE_CHILD
) {
1028 vfsrights
|= KAUTH_VNODE_DELETE_CHILD
;
1030 if (nfsmask
& NFS_ACE_READ_ATTRIBUTES
) {
1031 vfsrights
|= KAUTH_VNODE_READ_ATTRIBUTES
;
1033 if (nfsmask
& NFS_ACE_WRITE_ATTRIBUTES
) {
1034 vfsrights
|= KAUTH_VNODE_WRITE_ATTRIBUTES
;
1036 if (nfsmask
& NFS_ACE_DELETE
) {
1037 vfsrights
|= KAUTH_VNODE_DELETE
;
1039 if (nfsmask
& NFS_ACE_READ_ACL
) {
1040 vfsrights
|= KAUTH_VNODE_READ_SECURITY
;
1042 if (nfsmask
& NFS_ACE_WRITE_ACL
) {
1043 vfsrights
|= KAUTH_VNODE_WRITE_SECURITY
;
1045 if (nfsmask
& NFS_ACE_WRITE_OWNER
) {
1046 vfsrights
|= KAUTH_VNODE_CHANGE_OWNER
;
1048 if (nfsmask
& NFS_ACE_SYNCHRONIZE
) {
1049 vfsrights
|= KAUTH_VNODE_SYNCHRONIZE
;
1051 if ((nfsmask
& NFS_ACE_GENERIC_READ
) == NFS_ACE_GENERIC_READ
) {
1052 vfsrights
|= KAUTH_ACE_GENERIC_READ
;
1054 if ((nfsmask
& NFS_ACE_GENERIC_WRITE
) == NFS_ACE_GENERIC_WRITE
) {
1055 vfsrights
|= KAUTH_ACE_GENERIC_WRITE
;
1057 if ((nfsmask
& NFS_ACE_GENERIC_EXECUTE
) == NFS_ACE_GENERIC_EXECUTE
) {
1058 vfsrights
|= KAUTH_ACE_GENERIC_EXECUTE
;
1065 nfs4_ace_vfsrights_to_nfsmask(uint32_t vfsrights
)
1067 uint32_t nfsmask
= 0;
1069 if (vfsrights
& KAUTH_VNODE_READ_DATA
) {
1070 nfsmask
|= NFS_ACE_READ_DATA
;
1072 if (vfsrights
& KAUTH_VNODE_LIST_DIRECTORY
) {
1073 nfsmask
|= NFS_ACE_LIST_DIRECTORY
;
1075 if (vfsrights
& KAUTH_VNODE_WRITE_DATA
) {
1076 nfsmask
|= NFS_ACE_WRITE_DATA
;
1078 if (vfsrights
& KAUTH_VNODE_ADD_FILE
) {
1079 nfsmask
|= NFS_ACE_ADD_FILE
;
1081 if (vfsrights
& KAUTH_VNODE_APPEND_DATA
) {
1082 nfsmask
|= NFS_ACE_APPEND_DATA
;
1084 if (vfsrights
& KAUTH_VNODE_ADD_SUBDIRECTORY
) {
1085 nfsmask
|= NFS_ACE_ADD_SUBDIRECTORY
;
1087 if (vfsrights
& KAUTH_VNODE_READ_EXTATTRIBUTES
) {
1088 nfsmask
|= NFS_ACE_READ_NAMED_ATTRS
;
1090 if (vfsrights
& KAUTH_VNODE_WRITE_EXTATTRIBUTES
) {
1091 nfsmask
|= NFS_ACE_WRITE_NAMED_ATTRS
;
1093 if (vfsrights
& KAUTH_VNODE_EXECUTE
) {
1094 nfsmask
|= NFS_ACE_EXECUTE
;
1096 if (vfsrights
& KAUTH_VNODE_DELETE_CHILD
) {
1097 nfsmask
|= NFS_ACE_DELETE_CHILD
;
1099 if (vfsrights
& KAUTH_VNODE_READ_ATTRIBUTES
) {
1100 nfsmask
|= NFS_ACE_READ_ATTRIBUTES
;
1102 if (vfsrights
& KAUTH_VNODE_WRITE_ATTRIBUTES
) {
1103 nfsmask
|= NFS_ACE_WRITE_ATTRIBUTES
;
1105 if (vfsrights
& KAUTH_VNODE_DELETE
) {
1106 nfsmask
|= NFS_ACE_DELETE
;
1108 if (vfsrights
& KAUTH_VNODE_READ_SECURITY
) {
1109 nfsmask
|= NFS_ACE_READ_ACL
;
1111 if (vfsrights
& KAUTH_VNODE_WRITE_SECURITY
) {
1112 nfsmask
|= NFS_ACE_WRITE_ACL
;
1114 if (vfsrights
& KAUTH_VNODE_CHANGE_OWNER
) {
1115 nfsmask
|= NFS_ACE_WRITE_OWNER
;
1117 if (vfsrights
& KAUTH_VNODE_SYNCHRONIZE
) {
1118 nfsmask
|= NFS_ACE_SYNCHRONIZE
;
1120 if (vfsrights
& KAUTH_ACE_GENERIC_READ
) {
1121 nfsmask
|= NFS_ACE_GENERIC_READ
;
1123 if (vfsrights
& KAUTH_ACE_GENERIC_WRITE
) {
1124 nfsmask
|= NFS_ACE_GENERIC_WRITE
;
1126 if (vfsrights
& KAUTH_ACE_GENERIC_EXECUTE
) {
1127 nfsmask
|= NFS_ACE_GENERIC_EXECUTE
;
1129 if (vfsrights
& KAUTH_ACE_GENERIC_ALL
) {
1130 nfsmask
|= (KAUTH_ACE_GENERIC_READ
| KAUTH_ACE_GENERIC_WRITE
| NFS_ACE_GENERIC_EXECUTE
);
1138 * mapid a wellknown identity to guid.
1139 * Return 0 on success ENOENT if id does not map and EINVAL if the id is not a well known name.
1142 nfs4_wkid2sid(const char *id
, ntsid_t
*sp
)
1144 size_t len
= strnlen(id
, MAXIDNAMELEN
);
1146 if (len
== MAXIDNAMELEN
|| id
[len
- 1] != '@') {
1150 bzero(sp
, sizeof(ntsid_t
));
1152 sp
->sid_authcount
= 1;
1153 if (!strcmp(id
, "OWNER@")) {
1155 sp
->sid_authority
[5] = 3;
1156 sp
->sid_authorities
[0] = 0;
1157 } else if (!strcmp(id
, "GROUP@")) {
1159 sp
->sid_authority
[5] = 3;
1160 sp
->sid_authorities
[0] = 1;
1161 } else if (!strcmp(id
, "EVERYONE@")) {
1163 sp
->sid_authority
[5] = 1;
1164 sp
->sid_authorities
[0] = 0;
1165 } else if (!strcmp(id
, "INTERACTIVE@")) {
1167 sp
->sid_authority
[5] = 5;
1168 sp
->sid_authorities
[0] = 4;
1169 } else if (!strcmp(id
, "NETWORK@")) {
1171 sp
->sid_authority
[5] = 5;
1172 sp
->sid_authorities
[0] = 2;
1173 } else if (!strcmp(id
, "DIALUP@")) {
1175 sp
->sid_authority
[5] = 5;
1176 sp
->sid_authorities
[0] = 1;
1177 } else if (!strcmp(id
, "BATCH@")) {
1179 sp
->sid_authority
[5] = 5;
1180 sp
->sid_authorities
[0] = 3;
1181 } else if (!strcmp(id
, "ANONYMOUS@")) {
1183 sp
->sid_authority
[5] = 5;
1184 sp
->sid_authorities
[0] = 7;
1185 } else if (!strcmp(id
, "AUTHENTICATED@")) {
1187 sp
->sid_authority
[5] = 5;
1188 sp
->sid_authorities
[0] = 11;
1189 } else if (!strcmp(id
, "SERVICE@")) {
1191 sp
->sid_authority
[5] = 5;
1192 sp
->sid_authorities
[0] = 6;
1195 sp
->sid_authority
[5] = 0;
1196 sp
->sid_authorities
[0] = 0;
1202 nfs4_fallback_name(const char *id
, int have_at
)
1205 /* must be user@domain */
1206 /* try to identify some well-known IDs */
1207 if (!strncmp(id
, "root@", 5)) {
1209 } else if (!strncmp(id
, "wheel@", 6)) {
1211 } else if (!strncmp(id
, "nobody@", 7)) {
1213 } else if (!strncmp(id
, "nfsnobody@", 10)) {
1221 nfs4_mapid_log(int error
, const char *idstr
, int isgroup
, guid_t
*gp
)
1223 if (error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
)) {
1224 printf("nfs4_id2guid: idmap failed for %s %s error %d\n", idstr
, isgroup
? "G" : " ", error
);
1226 if (!error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
)) {
1227 printf("nfs4_id2guid: idmap for %s %s got guid "
1228 "%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x\n",
1229 idstr
, isgroup
? "G" : " ",
1230 gp
->g_guid
[0], gp
->g_guid
[1], gp
->g_guid
[2], gp
->g_guid
[3],
1231 gp
->g_guid
[4], gp
->g_guid
[5], gp
->g_guid
[6], gp
->g_guid
[7],
1232 gp
->g_guid
[8], gp
->g_guid
[9], gp
->g_guid
[10], gp
->g_guid
[11],
1233 gp
->g_guid
[12], gp
->g_guid
[13], gp
->g_guid
[14], gp
->g_guid
[15]);
1238 nfs4_map_domain(char *id
, char **atp
)
1241 char *dsnode
, *otw_nfs4domain
;
1242 char *new_id
= NULL
;
1243 size_t otw_domain_len
;
1244 size_t otw_id_2_at_len
;
1248 at
= strchr(id
, '@');
1250 if (at
== NULL
|| *at
!= '@') {
1254 otw_nfs4domain
= at
+ 1;
1255 otw_domain_len
= strnlen(otw_nfs4domain
, MAXPATHLEN
);
1256 otw_id_2_at_len
= at
- id
+ 1;
1258 MALLOC_ZONE(dsnode
, char*, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
1259 /* first try to map nfs4 domain to dsnode for scoped lookups */
1260 error
= kauth_cred_nfs4domain2dsnode(otw_nfs4domain
, dsnode
);
1262 /* Success! Make new id be id@dsnode */
1263 size_t dsnode_len
= strnlen(dsnode
, MAXPATHLEN
);
1264 size_t new_id_len
= otw_id_2_at_len
+ dsnode_len
+ 1;
1267 MALLOC(new_id
, char*, new_id_len
, M_TEMP
, M_WAITOK
);
1268 tmp
= *otw_nfs4domain
;
1269 *otw_nfs4domain
= '\0'; /* Chop of the old domain */
1270 strlcpy(new_id
, id
, MAXPATHLEN
);
1271 *otw_nfs4domain
= tmp
; /* Be nice and preserve callers original id */
1272 strlcat(new_id
, dsnode
, MAXPATHLEN
);
1273 at
= strchr(new_id
, '@');
1275 /* Bummer:-( See if default nfs4 set for unscoped lookup */
1276 size_t default_domain_len
= strnlen(nfs4_default_domain
, MAXPATHLEN
);
1278 if ((otw_domain_len
== default_domain_len
) &&
1279 (strncmp(otw_nfs4domain
, nfs4_default_domain
, otw_domain_len
) == 0)) {
1280 /* Woohoo! We have matching domains, do unscoped lookups */
1284 FREE_ZONE(dsnode
, MAXPATHLEN
, M_NAMEI
);
1286 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
) {
1287 printf("nfs4_id2guid: after domain mapping id is %s\n", id
);
1295 * Map an NFSv4 ID string to a VFS guid.
1297 * Try to use the ID mapping service... but we may fallback to trying to do it ourselves.
1300 nfs4_id2guid(/*const*/ char *id
, guid_t
*guidp
, int isgroup
)
1305 char *p
, *at
, *new_id
= NULL
;
1307 *guidp
= kauth_null_guid
;
1310 * First check if it is just a simple numeric ID string or a special "XXX@" name.
1311 * If it's a number, there's no need trying to ask the IDMAP service to map it.
1312 * If it's a special "XXX@" name, we want to make sure to treat it as a group.
1318 if ((*p
< '0') || (*p
> '9')) {
1328 /* must be numeric ID (or empty) */
1329 num
= *id
? strtol(id
, NULL
, 10) : -2;
1331 error
= kauth_cred_gid2guid((gid_t
)num
, guidp
);
1333 error
= kauth_cred_uid2guid((uid_t
)num
, guidp
);
1335 nfs4_mapid_log(error
, id
, isgroup
, guidp
);
1339 /* See if this is a well known NFSv4 name */
1340 error
= nfs4_wkid2sid(id
, &sid
);
1342 error
= kauth_cred_ntsid2guid(&sid
, guidp
);
1343 nfs4_mapid_log(error
, id
, 1, guidp
);
1347 /* Handle nfs4 domain first */
1349 new_id
= nfs4_map_domain(id
, &at
);
1355 /* Now try to do actual id mapping */
1356 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_USE_IDMAP_SERVICE
) {
1358 * Ask the ID mapping service to map the ID string to a GUID.
1360 * [sigh] this isn't a "pwnam/grnam" it's an NFS ID string!
1363 error
= kauth_cred_grnam2guid(id
, guidp
);
1365 error
= kauth_cred_pwnam2guid(id
, guidp
);
1367 nfs4_mapid_log(error
, id
, isgroup
, guidp
);
1374 * fallback path... see if we can come up with an answer ourselves.
1376 num
= nfs4_fallback_name(id
, at
!= NULL
);
1378 error
= kauth_cred_gid2guid((gid_t
)num
, guidp
);
1380 error
= kauth_cred_uid2guid((uid_t
)num
, guidp
);
1382 nfs4_mapid_log(error
, id
, isgroup
, guidp
);
1386 /* restore @ symbol in case we clobered for unscoped lookup */
1387 if (at
&& *at
== '\0') {
1391 /* free mapped domain id string */
1393 FREE(new_id
, M_TEMP
);
1401 * mapid a wellknown identity to guid.
1402 * returns well known name for the sid or NULL if sid does not map.
1404 #define MAXWELLKNOWNID 18
1407 nfs4_sid2wkid(ntsid_t
*sp
)
1409 if ((sp
->sid_kind
== 1) && (sp
->sid_authcount
== 1)) {
1410 /* check if it's one of our well-known ACE WHO names */
1411 if (sp
->sid_authority
[5] == 0) {
1412 if (sp
->sid_authorities
[0] == 0) { // S-1-0-0
1413 return "nobody@localdomain";
1415 } else if (sp
->sid_authority
[5] == 1) {
1416 if (sp
->sid_authorities
[0] == 0) { // S-1-1-0
1419 } else if (sp
->sid_authority
[5] == 3) {
1420 if (sp
->sid_authorities
[0] == 0) { // S-1-3-0
1422 } else if (sp
->sid_authorities
[0] == 1) { // S-1-3-1
1425 } else if (sp
->sid_authority
[5] == 5) {
1426 if (sp
->sid_authorities
[0] == 1) { // S-1-5-1
1428 } else if (sp
->sid_authorities
[0] == 2) { // S-1-5-2
1430 } else if (sp
->sid_authorities
[0] == 3) { // S-1-5-3
1432 } else if (sp
->sid_authorities
[0] == 4) { // S-1-5-4
1433 return "INTERACTIVE@";
1434 } else if (sp
->sid_authorities
[0] == 6) { // S-1-5-6
1436 } else if (sp
->sid_authorities
[0] == 7) { // S-1-5-7
1437 return "ANONYMOUS@";
1438 } else if (sp
->sid_authorities
[0] == 11) { // S-1-5-11
1439 return "AUTHENTICATED@";
1447 nfs4_mapguid_log(int error
, const char *where
, guid_t
*gp
, int isgroup
, const char *idstr
)
1449 if (error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
)) {
1450 printf("nfs4_guid2id: %s idmap failed for "
1451 "%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x %s "
1452 "error %d\n", where
,
1453 gp
->g_guid
[0], gp
->g_guid
[1], gp
->g_guid
[2], gp
->g_guid
[3],
1454 gp
->g_guid
[4], gp
->g_guid
[5], gp
->g_guid
[6], gp
->g_guid
[7],
1455 gp
->g_guid
[8], gp
->g_guid
[9], gp
->g_guid
[10], gp
->g_guid
[11],
1456 gp
->g_guid
[12], gp
->g_guid
[13], gp
->g_guid
[14], gp
->g_guid
[15],
1457 isgroup
? "G" : " ", error
);
1459 if (!error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
)) {
1460 printf("nfs4_guid2id: %s idmap for "
1461 "%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x %s "
1462 "got ID %s\n", where
,
1463 gp
->g_guid
[0], gp
->g_guid
[1], gp
->g_guid
[2], gp
->g_guid
[3],
1464 gp
->g_guid
[4], gp
->g_guid
[5], gp
->g_guid
[6], gp
->g_guid
[7],
1465 gp
->g_guid
[8], gp
->g_guid
[9], gp
->g_guid
[10], gp
->g_guid
[11],
1466 gp
->g_guid
[12], gp
->g_guid
[13], gp
->g_guid
[14], gp
->g_guid
[15],
1467 isgroup
? "G" : " ", idstr
);
1472 nfs4_addv4domain(char *id
, size_t *idlen
)
1474 char *at
= NULL
, *cp
;
1480 if (id
== NULL
|| *id
== '\0') {
1484 for (cp
= id
; *cp
!= '\0'; cp
++) {
1491 have_domain
= (at
&& at
[1] != '\0');
1494 char *dsnode
= at
+ 1;
1497 char *mapped_domain
;
1499 MALLOC_ZONE(nfs4domain
, char*, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
1500 error
= kauth_cred_dsnode2nfs4domain(dsnode
, nfs4domain
);
1502 domain_len
= strnlen(nfs4domain
, MAXPATHLEN
);
1503 mapped_domain
= nfs4domain
;
1506 domain_len
= strnlen(nfs4_default_domain
, MAXPATHLEN
);
1507 mapped_domain
= nfs4_default_domain
;
1510 /* chop off id after the '@' */
1512 /* Add our mapped_domain */
1513 idsize
= strlcat(id
, mapped_domain
, *idlen
);
1514 if (*idlen
> idsize
) {
1520 FREE_ZONE(nfs4domain
, MAXPATHLEN
, M_NAMEI
);
1521 } else if (at
== NULL
) {
1523 * If we didn't find an 'at' then cp points to the end of id passed in.
1524 * and if we have a nfs4_default_domain set. Try to append the
1525 * default domain if we have root or set ENOSPC.
1527 size_t default_domain_len
= strnlen(nfs4_default_domain
, MAXPATHLEN
);
1529 if (default_domain_len
) {
1530 strlcat(id
, "@", *idlen
);
1531 idsize
= strlcat(id
, nfs4_default_domain
, *idlen
);
1532 if (*idlen
> idsize
) {
1538 ; /* Unscoped name otw */
1542 if (!error
&& nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
) {
1543 printf("nfs4_guid2id: id after nfs4 domain map: %s[%zd].\n", id
, *idlen
);
1550 nfs4_fallback_id(int numid
, int isgrp
, char *buf
, size_t size
)
1552 const char *idp
= NULL
;
1554 if (!(nfs_idmap_ctrl
& NFS_IDMAP_CTRL_FALLBACK_NO_COMMON_IDS
)) {
1555 /* map well known uid's to strings */
1557 idp
= isgrp
? "wheel" : "root";
1558 } else if (numid
== -2) {
1563 /* or just use a decimal number string. */
1564 snprintf(buf
, size
- 1, "%d", numid
);
1565 buf
[size
- 1] = '\0';
1567 size_t idplen
= strlcpy(buf
, idp
, size
);
1568 if (idplen
>= size
) {
1577 * Map a VFS guid to an NFSv4 ID string.
1579 * Try to use the ID mapping service... but we may fallback to trying to do it ourselves.
1582 nfs4_guid2id(guid_t
*guidp
, char *id
, size_t *idlen
, int isgroup
)
1590 id1buf
= id1
= NULL
;
1594 * See if our guid maps to a well known NFSv4 name
1596 error
= kauth_cred_guid2ntsid(guidp
, &sid
);
1598 const char *wkid
= nfs4_sid2wkid(&sid
);
1600 len
= strnlen(wkid
, MAXWELLKNOWNID
);
1601 strlcpy(id
, wkid
, *idlen
);
1602 error
= (len
< *idlen
) ? 0 : ENOSPC
;
1604 nfs4_mapguid_log(error
, "kauth_cred_guid2ntsid", guidp
, 1, id
);
1608 nfs4_mapguid_log(error
, "kauth_cred_guid2ntsid", guidp
, isgroup
, NULL
);
1611 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_USE_IDMAP_SERVICE
) {
1613 * Ask the ID mapping service to map the GUID to an ID string.
1615 * [sigh] this isn't a "pwnam" it's an NFS id string!
1619 * Stupid kauth_cred_guid2pwnam() function requires that the buffer
1620 * be at least MAXPATHLEN bytes long even though most if not all ID
1621 * strings will be much much shorter than that.
1624 if (*idlen
< MAXPATHLEN
) {
1625 MALLOC_ZONE(id1buf
, char*, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
1627 id1len
= MAXPATHLEN
;
1634 error
= kauth_cred_guid2grnam(guidp
, id1
);
1636 error
= kauth_cred_guid2pwnam(guidp
, id1
);
1639 nfs4_mapguid_log(error
, "kauth_cred2[pw|gr]nam", guidp
, isgroup
, id1
);
1647 * fallback path... see if we can come up with an answer ourselves.
1651 /* OK, let's just try mapping it to a UID/GID */
1653 error
= kauth_cred_guid2gid(guidp
, (gid_t
*)&uid
);
1655 error
= kauth_cred_guid2uid(guidp
, &uid
);
1658 char *fbidp
= nfs4_fallback_id(uid
, isgroup
, numbuf
, sizeof(numbuf
));
1659 if (fbidp
== NULL
) {
1666 error
= nfs4_addv4domain(id1
, &id1len
);
1671 /* copy idmap result to output buffer */
1672 len
= strlcpy(id
, id1
, *idlen
);
1673 if (len
>= *idlen
) {
1680 nfs4_mapguid_log(error
, "End of routine", guidp
, isgroup
, id1
);
1683 FREE_ZONE(id1buf
, MAXPATHLEN
, M_NAMEI
);
1690 * Set a vnode attr's supported bits according to the given bitmap
1693 nfs_vattr_set_supported(uint32_t *bitmap
, struct vnode_attr
*vap
)
1695 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TYPE
)) {
1696 VATTR_SET_SUPPORTED(vap
, va_type
);
1698 // if (NFS_BITMAP_ISSET(bitmap, NFS_FATTR_CHANGE))
1699 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SIZE
)) {
1700 VATTR_SET_SUPPORTED(vap
, va_data_size
);
1702 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FSID
)) {
1703 VATTR_SET_SUPPORTED(vap
, va_fsid
);
1705 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACL
)) {
1706 VATTR_SET_SUPPORTED(vap
, va_acl
);
1708 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ARCHIVE
)) {
1709 VATTR_SET_SUPPORTED(vap
, va_flags
);
1711 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILEID
)) {
1712 VATTR_SET_SUPPORTED(vap
, va_fileid
);
1714 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HIDDEN
)) {
1715 VATTR_SET_SUPPORTED(vap
, va_flags
);
1717 // if (NFS_BITMAP_ISSET(bitmap, NFS_FATTR_MIMETYPE))
1718 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MODE
)) {
1719 VATTR_SET_SUPPORTED(vap
, va_mode
);
1721 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NUMLINKS
)) {
1722 VATTR_SET_SUPPORTED(vap
, va_nlink
);
1724 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER
)) {
1725 VATTR_SET_SUPPORTED(vap
, va_uid
);
1726 VATTR_SET_SUPPORTED(vap
, va_uuuid
);
1728 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER_GROUP
)) {
1729 VATTR_SET_SUPPORTED(vap
, va_gid
);
1730 VATTR_SET_SUPPORTED(vap
, va_guuid
);
1732 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_RAWDEV
)) {
1733 VATTR_SET_SUPPORTED(vap
, va_rdev
);
1735 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_USED
)) {
1736 VATTR_SET_SUPPORTED(vap
, va_total_alloc
);
1738 // if (NFS_BITMAP_ISSET(bitmap, NFS_FATTR_SYSTEM))
1739 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS
)) {
1740 VATTR_SET_SUPPORTED(vap
, va_access_time
);
1742 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_BACKUP
)) {
1743 VATTR_SET_SUPPORTED(vap
, va_backup_time
);
1745 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_CREATE
)) {
1746 VATTR_SET_SUPPORTED(vap
, va_create_time
);
1748 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_METADATA
)) {
1749 VATTR_SET_SUPPORTED(vap
, va_change_time
);
1751 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY
)) {
1752 VATTR_SET_SUPPORTED(vap
, va_modify_time
);
1757 * Parse the attributes that are in the mbuf list and store them in
1758 * the given structures.
1762 struct nfsm_chain
*nmc
,
1763 struct nfs_fsattr
*nfsap
,
1764 struct nfs_vattr
*nvap
,
1767 struct nfs_fs_locations
*nfslsp
)
1769 int error
= 0, error2
, rderror
= 0, attrbytes
;
1770 uint32_t val
, val2
, val3
, i
;
1771 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
], len
;
1774 struct nfs_fsattr nfsa_dummy
;
1775 struct nfs_vattr nva_dummy
;
1776 struct dqblk dqb_dummy
;
1777 kauth_acl_t acl
= NULL
;
1778 uint32_t ace_type
, ace_flags
, ace_mask
;
1779 struct nfs_fs_locations nfsls_dummy
;
1780 struct sockaddr_storage ss
;
1782 /* if not interested in some values... throw 'em into a local dummy variable */
1784 nfsap
= &nfsa_dummy
;
1793 nfslsp
= &nfsls_dummy
;
1795 bzero(nfslsp
, sizeof(*nfslsp
));
1797 attrbytes
= val
= val2
= val3
= 0;
1799 slen
= sizeof(sbuf
);
1802 len
= NFS_ATTR_BITMAP_LEN
;
1803 nfsm_chain_get_bitmap(error
, nmc
, bitmap
, len
);
1804 /* add bits to object/fs attr bitmaps */
1805 for (i
= 0; i
< NFS_ATTR_BITMAP_LEN
; i
++) {
1806 nvap
->nva_bitmap
[i
] |= bitmap
[i
] & nfs_object_attr_bitmap
[i
];
1807 nfsap
->nfsa_bitmap
[i
] |= bitmap
[i
] & nfs_fs_attr_bitmap
[i
];
1810 nfsm_chain_get_32(error
, nmc
, attrbytes
);
1813 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SUPPORTED_ATTRS
)) {
1814 len
= NFS_ATTR_BITMAP_LEN
;
1815 nfsm_chain_get_bitmap(error
, nmc
, nfsap
->nfsa_supp_attr
, len
);
1816 attrbytes
-= (len
+ 1) * NFSX_UNSIGNED
;
1818 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TYPE
)) {
1819 nfsm_chain_get_32(error
, nmc
, val
);
1820 nvap
->nva_type
= nfstov_type(val
, NFS_VER4
);
1821 if ((val
== NFATTRDIR
) || (val
== NFNAMEDATTR
)) {
1822 nvap
->nva_flags
|= NFS_FFLAG_IS_ATTR
;
1824 nvap
->nva_flags
&= ~NFS_FFLAG_IS_ATTR
;
1826 attrbytes
-= NFSX_UNSIGNED
;
1828 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FH_EXPIRE_TYPE
)) {
1829 nfsm_chain_get_32(error
, nmc
, val
);
1831 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_FHTYPE_MASK
;
1832 nfsap
->nfsa_flags
|= val
<< NFS_FSFLAG_FHTYPE_SHIFT
;
1834 printf("nfs: warning unknown fh type: 0x%x\n", val
);
1836 attrbytes
-= NFSX_UNSIGNED
;
1838 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CHANGE
)) {
1839 nfsm_chain_get_64(error
, nmc
, nvap
->nva_change
);
1840 attrbytes
-= 2 * NFSX_UNSIGNED
;
1842 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SIZE
)) {
1843 nfsm_chain_get_64(error
, nmc
, nvap
->nva_size
);
1844 attrbytes
-= 2 * NFSX_UNSIGNED
;
1846 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_LINK_SUPPORT
)) {
1847 nfsm_chain_get_32(error
, nmc
, val
);
1849 nfsap
->nfsa_flags
|= NFS_FSFLAG_LINK
;
1851 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_LINK
;
1853 attrbytes
-= NFSX_UNSIGNED
;
1855 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SYMLINK_SUPPORT
)) {
1856 nfsm_chain_get_32(error
, nmc
, val
);
1858 nfsap
->nfsa_flags
|= NFS_FSFLAG_SYMLINK
;
1860 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_SYMLINK
;
1862 attrbytes
-= NFSX_UNSIGNED
;
1864 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NAMED_ATTR
)) {
1865 nfsm_chain_get_32(error
, nmc
, val
);
1867 nvap
->nva_flags
|= NFS_FFLAG_HAS_NAMED_ATTRS
;
1869 nvap
->nva_flags
&= ~NFS_FFLAG_HAS_NAMED_ATTRS
;
1871 attrbytes
-= NFSX_UNSIGNED
;
1873 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FSID
)) {
1874 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fsid
.major
);
1875 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fsid
.minor
);
1876 attrbytes
-= 4 * NFSX_UNSIGNED
;
1878 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_UNIQUE_HANDLES
)) {
1879 nfsm_chain_get_32(error
, nmc
, val
);
1881 nfsap
->nfsa_flags
|= NFS_FSFLAG_UNIQUE_FH
;
1883 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_UNIQUE_FH
;
1885 attrbytes
-= NFSX_UNSIGNED
;
1887 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_LEASE_TIME
)) {
1888 nfsm_chain_get_32(error
, nmc
, nfsap
->nfsa_lease
);
1889 attrbytes
-= NFSX_UNSIGNED
;
1891 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_RDATTR_ERROR
)) {
1892 nfsm_chain_get_32(error
, nmc
, rderror
);
1893 attrbytes
-= NFSX_UNSIGNED
;
1894 if (!rderror
) { /* no error */
1895 NFS_BITMAP_CLR(bitmap
, NFS_FATTR_RDATTR_ERROR
);
1896 NFS_BITMAP_CLR(nvap
->nva_bitmap
, NFS_FATTR_RDATTR_ERROR
);
1899 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACL
)) {
1901 ace_type
= ace_flags
= ace_mask
= 0;
1902 nfsm_chain_get_32(error
, nmc
, val
); /* ACE count */
1903 if (!error
&& (val
> KAUTH_ACL_MAX_ENTRIES
)) {
1906 if (!error
&& !((acl
= kauth_acl_alloc(val
)))) {
1909 if (!error
&& acl
) {
1910 acl
->acl_entrycount
= val
;
1913 attrbytes
-= NFSX_UNSIGNED
;
1914 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
1915 for (i
= 0; !error
&& (i
< val
); i
++) {
1916 nfsm_chain_get_32(error
, nmc
, ace_type
);
1917 nfsm_chain_get_32(error
, nmc
, ace_flags
);
1918 nfsm_chain_get_32(error
, nmc
, ace_mask
);
1919 nfsm_chain_get_32(error
, nmc
, len
);
1920 if (!error
&& len
>= NFS_MAX_WHO
) {
1923 acl
->acl_ace
[i
].ace_flags
= nfs4_ace_nfstype_to_vfstype(ace_type
, &error
);
1924 acl
->acl_ace
[i
].ace_flags
|= nfs4_ace_nfsflags_to_vfsflags(ace_flags
);
1925 acl
->acl_ace
[i
].ace_rights
= nfs4_ace_nfsmask_to_vfsrights(ace_mask
);
1926 if (!error
&& !error2
&& (len
>= slen
)) {
1930 slen
= sizeof(sbuf
);
1932 /* Let's add a bit more if we can to the allocation as to try and avoid future allocations */
1933 MALLOC(s
, char*, (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
, M_TEMP
, M_WAITOK
);
1935 slen
= (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
;
1941 nfsm_chain_adv(error
, nmc
, nfsm_rndup(len
));
1943 nfsm_chain_get_opaque(error
, nmc
, len
, s
);
1945 if (!error
&& !error2
) {
1947 error2
= nfs4_id2guid(s
, &acl
->acl_ace
[i
].ace_applicable
,
1948 (ace_flags
& NFS_ACE_IDENTIFIER_GROUP
));
1949 if (error2
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
)) {
1950 printf("nfs4_parsefattr: ACE WHO %s is no one, no guid?, error %d\n", s
, error2
);
1953 attrbytes
-= 4 * NFSX_UNSIGNED
+ nfsm_rndup(len
);
1954 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
1957 if ((nvap
!= &nva_dummy
) && !error2
) {
1958 nvap
->nva_acl
= acl
;
1962 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACLSUPPORT
)) {
1964 * Support ACLs if: the server supports DENY/ALLOC ACEs and
1965 * (just to be safe) FATTR_ACL is in the supported list too.
1967 nfsm_chain_get_32(error
, nmc
, val
);
1968 if ((val
& (NFS_ACL_SUPPORT_ALLOW_ACL
| NFS_ACL_SUPPORT_DENY_ACL
)) &&
1969 NFS_BITMAP_ISSET(nfsap
->nfsa_supp_attr
, NFS_FATTR_ACL
)) {
1970 nfsap
->nfsa_flags
|= NFS_FSFLAG_ACL
;
1972 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_ACL
;
1974 attrbytes
-= NFSX_UNSIGNED
;
1976 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ARCHIVE
)) { /* SF_ARCHIVED */
1977 nfsm_chain_get_32(error
, nmc
, val
);
1979 nvap
->nva_flags
|= NFS_FFLAG_ARCHIVED
;
1981 nvap
->nva_flags
&= ~NFS_FFLAG_ARCHIVED
;
1983 attrbytes
-= NFSX_UNSIGNED
;
1985 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CANSETTIME
)) {
1986 nfsm_chain_get_32(error
, nmc
, val
);
1988 nfsap
->nfsa_flags
|= NFS_FSFLAG_SET_TIME
;
1990 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_SET_TIME
;
1992 attrbytes
-= NFSX_UNSIGNED
;
1994 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CASE_INSENSITIVE
)) {
1995 nfsm_chain_get_32(error
, nmc
, val
);
1997 nfsap
->nfsa_flags
|= NFS_FSFLAG_CASE_INSENSITIVE
;
1999 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_CASE_INSENSITIVE
;
2001 attrbytes
-= NFSX_UNSIGNED
;
2003 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CASE_PRESERVING
)) {
2004 nfsm_chain_get_32(error
, nmc
, val
);
2006 nfsap
->nfsa_flags
|= NFS_FSFLAG_CASE_PRESERVING
;
2008 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_CASE_PRESERVING
;
2010 attrbytes
-= NFSX_UNSIGNED
;
2012 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CHOWN_RESTRICTED
)) {
2013 nfsm_chain_get_32(error
, nmc
, val
);
2015 nfsap
->nfsa_flags
|= NFS_FSFLAG_CHOWN_RESTRICTED
;
2017 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_CHOWN_RESTRICTED
;
2019 attrbytes
-= NFSX_UNSIGNED
;
2021 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILEHANDLE
)) {
2022 nfsm_chain_get_32(error
, nmc
, val
);
2023 if (error
== 0 && val
> NFS_MAX_FH_SIZE
) {
2029 nfsm_chain_get_opaque(error
, nmc
, nfsm_rndup(val
), fhp
->fh_data
);
2031 nfsm_chain_adv(error
, nmc
, nfsm_rndup(val
));
2033 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2035 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILEID
)) {
2036 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fileid
);
2037 attrbytes
-= 2 * NFSX_UNSIGNED
;
2039 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILES_AVAIL
)) {
2040 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_files_avail
);
2041 attrbytes
-= 2 * NFSX_UNSIGNED
;
2043 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILES_FREE
)) {
2044 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_files_free
);
2045 attrbytes
-= 2 * NFSX_UNSIGNED
;
2047 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILES_TOTAL
)) {
2048 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_files_total
);
2049 attrbytes
-= 2 * NFSX_UNSIGNED
;
2051 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FS_LOCATIONS
)) {
2052 uint32_t loc
, serv
, comp
;
2053 struct nfs_fs_location
*fsl
;
2054 struct nfs_fs_server
*fss
;
2055 struct nfs_fs_path
*fsp
;
2057 /* get root pathname */
2058 fsp
= &nfslsp
->nl_root
;
2059 nfsm_chain_get_32(error
, nmc
, fsp
->np_compcount
); /* component count */
2060 attrbytes
-= NFSX_UNSIGNED
;
2061 /* sanity check component count */
2062 if (!error
&& (fsp
->np_compcount
> MAXPATHLEN
)) {
2066 if (fsp
->np_compcount
) {
2067 MALLOC(fsp
->np_components
, char **, fsp
->np_compcount
* sizeof(char*), M_TEMP
, M_WAITOK
| M_ZERO
);
2068 if (!fsp
->np_components
) {
2072 for (comp
= 0; comp
< fsp
->np_compcount
; comp
++) {
2073 nfsm_chain_get_32(error
, nmc
, val
); /* component length */
2074 /* sanity check component length */
2075 if (!error
&& (val
== 0)) {
2077 * Apparently some people think a path with zero components should
2078 * be encoded with one zero-length component. So, just ignore any
2079 * zero length components.
2082 fsp
->np_compcount
--;
2083 if (fsp
->np_compcount
== 0) {
2084 FREE(fsp
->np_components
, M_TEMP
);
2085 fsp
->np_components
= NULL
;
2087 attrbytes
-= NFSX_UNSIGNED
;
2090 if (!error
&& ((val
< 1) || (val
> MAXPATHLEN
))) {
2094 MALLOC(fsp
->np_components
[comp
], char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2095 if (!fsp
->np_components
[comp
]) {
2099 nfsm_chain_get_opaque(error
, nmc
, val
, fsp
->np_components
[comp
]); /* component */
2100 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2102 nfsm_chain_get_32(error
, nmc
, nfslsp
->nl_numlocs
); /* fs location count */
2103 attrbytes
-= NFSX_UNSIGNED
;
2104 /* sanity check location count */
2105 if (!error
&& (nfslsp
->nl_numlocs
> 256)) {
2109 if (nfslsp
->nl_numlocs
> 0) {
2110 MALLOC(nfslsp
->nl_locations
, struct nfs_fs_location
**, nfslsp
->nl_numlocs
* sizeof(struct nfs_fs_location
*), M_TEMP
, M_WAITOK
| M_ZERO
);
2111 if (!nfslsp
->nl_locations
) {
2116 for (loc
= 0; loc
< nfslsp
->nl_numlocs
; loc
++) {
2118 MALLOC(fsl
, struct nfs_fs_location
*, sizeof(struct nfs_fs_location
), M_TEMP
, M_WAITOK
| M_ZERO
);
2122 nfslsp
->nl_locations
[loc
] = fsl
;
2123 nfsm_chain_get_32(error
, nmc
, fsl
->nl_servcount
); /* server count */
2124 attrbytes
-= NFSX_UNSIGNED
;
2125 /* sanity check server count */
2126 if (!error
&& ((fsl
->nl_servcount
< 1) || (fsl
->nl_servcount
> 256))) {
2130 MALLOC(fsl
->nl_servers
, struct nfs_fs_server
**, fsl
->nl_servcount
* sizeof(struct nfs_fs_server
*), M_TEMP
, M_WAITOK
| M_ZERO
);
2131 if (!fsl
->nl_servers
) {
2134 for (serv
= 0; serv
< fsl
->nl_servcount
; serv
++) {
2136 MALLOC(fss
, struct nfs_fs_server
*, sizeof(struct nfs_fs_server
), M_TEMP
, M_WAITOK
| M_ZERO
);
2140 fsl
->nl_servers
[serv
] = fss
;
2141 nfsm_chain_get_32(error
, nmc
, val
); /* server name length */
2142 /* sanity check server name length */
2143 if (!error
&& ((val
< 1) || (val
> MAXPATHLEN
))) {
2147 MALLOC(fss
->ns_name
, char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2148 if (!fss
->ns_name
) {
2151 nfsm_chain_get_opaque(error
, nmc
, val
, fss
->ns_name
); /* server name */
2152 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2154 /* copy name to address if it converts to a sockaddr */
2155 if (nfs_uaddr2sockaddr(fss
->ns_name
, (struct sockaddr
*)&ss
)) {
2156 fss
->ns_addrcount
= 1;
2157 MALLOC(fss
->ns_addresses
, char **, sizeof(char *), M_TEMP
, M_WAITOK
| M_ZERO
);
2158 if (!fss
->ns_addresses
) {
2162 MALLOC(fss
->ns_addresses
[0], char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2163 if (!fss
->ns_addresses
[0]) {
2167 strlcpy(fss
->ns_addresses
[0], fss
->ns_name
, val
+ 1);
2171 fsp
= &fsl
->nl_path
;
2172 nfsm_chain_get_32(error
, nmc
, fsp
->np_compcount
); /* component count */
2173 attrbytes
-= NFSX_UNSIGNED
;
2174 /* sanity check component count */
2175 if (!error
&& (fsp
->np_compcount
> MAXPATHLEN
)) {
2179 if (fsp
->np_compcount
) {
2180 MALLOC(fsp
->np_components
, char **, fsp
->np_compcount
* sizeof(char*), M_TEMP
, M_WAITOK
| M_ZERO
);
2181 if (!fsp
->np_components
) {
2185 for (comp
= 0; comp
< fsp
->np_compcount
; comp
++) {
2186 nfsm_chain_get_32(error
, nmc
, val
); /* component length */
2187 /* sanity check component length */
2188 if (!error
&& (val
== 0)) {
2190 * Apparently some people think a path with zero components should
2191 * be encoded with one zero-length component. So, just ignore any
2192 * zero length components.
2195 fsp
->np_compcount
--;
2196 if (fsp
->np_compcount
== 0) {
2197 FREE(fsp
->np_components
, M_TEMP
);
2198 fsp
->np_components
= NULL
;
2200 attrbytes
-= NFSX_UNSIGNED
;
2203 if (!error
&& ((val
< 1) || (val
> MAXPATHLEN
))) {
2207 MALLOC(fsp
->np_components
[comp
], char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2208 if (!fsp
->np_components
[comp
]) {
2211 nfsm_chain_get_opaque(error
, nmc
, val
, fsp
->np_components
[comp
]); /* component */
2212 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2215 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
2217 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HIDDEN
)) { /* UF_HIDDEN */
2218 nfsm_chain_get_32(error
, nmc
, val
);
2220 nvap
->nva_flags
|= NFS_FFLAG_HIDDEN
;
2222 nvap
->nva_flags
&= ~NFS_FFLAG_HIDDEN
;
2224 attrbytes
-= NFSX_UNSIGNED
;
2226 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HOMOGENEOUS
)) {
2227 /* XXX If NOT homogeneous, we may need to clear flags on the mount */
2228 nfsm_chain_get_32(error
, nmc
, val
);
2230 nfsap
->nfsa_flags
|= NFS_FSFLAG_HOMOGENEOUS
;
2232 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_HOMOGENEOUS
;
2234 attrbytes
-= NFSX_UNSIGNED
;
2236 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXFILESIZE
)) {
2237 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_maxfilesize
);
2238 attrbytes
-= 2 * NFSX_UNSIGNED
;
2240 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXLINK
)) {
2241 nfsm_chain_get_32(error
, nmc
, nvap
->nva_maxlink
);
2242 if (!error
&& (nfsap
->nfsa_maxlink
> INT32_MAX
)) {
2243 nfsap
->nfsa_maxlink
= INT32_MAX
;
2245 attrbytes
-= NFSX_UNSIGNED
;
2247 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXNAME
)) {
2248 nfsm_chain_get_32(error
, nmc
, nfsap
->nfsa_maxname
);
2249 if (!error
&& (nfsap
->nfsa_maxname
> INT32_MAX
)) {
2250 nfsap
->nfsa_maxname
= INT32_MAX
;
2252 attrbytes
-= NFSX_UNSIGNED
;
2254 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXREAD
)) {
2255 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_maxread
);
2256 attrbytes
-= 2 * NFSX_UNSIGNED
;
2258 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXWRITE
)) {
2259 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_maxwrite
);
2260 attrbytes
-= 2 * NFSX_UNSIGNED
;
2262 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MIMETYPE
)) {
2263 nfsm_chain_get_32(error
, nmc
, val
);
2264 nfsm_chain_adv(error
, nmc
, nfsm_rndup(val
));
2265 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2267 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MODE
)) {
2268 nfsm_chain_get_32(error
, nmc
, nvap
->nva_mode
);
2269 attrbytes
-= NFSX_UNSIGNED
;
2271 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NO_TRUNC
)) {
2272 nfsm_chain_get_32(error
, nmc
, val
);
2274 nfsap
->nfsa_flags
|= NFS_FSFLAG_NO_TRUNC
;
2276 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_NO_TRUNC
;
2278 attrbytes
-= NFSX_UNSIGNED
;
2280 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NUMLINKS
)) {
2281 nfsm_chain_get_32(error
, nmc
, val
);
2282 nvap
->nva_nlink
= val
;
2283 attrbytes
-= NFSX_UNSIGNED
;
2285 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER
)) {
2286 nfsm_chain_get_32(error
, nmc
, len
);
2287 if (!error
&& len
>= NFS_MAX_WHO
) {
2290 if (!error
&& (len
>= slen
)) {
2294 slen
= sizeof(sbuf
);
2296 /* Let's add a bit more if we can to the allocation as to try and avoid future allocations */
2297 MALLOC(s
, char*, (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
, M_TEMP
, M_WAITOK
);
2299 slen
= (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
;
2304 nfsm_chain_get_opaque(error
, nmc
, len
, s
);
2307 error
= nfs4_id2guid(s
, &nvap
->nva_uuuid
, 0);
2309 error
= kauth_cred_guid2uid(&nvap
->nva_uuuid
, &nvap
->nva_uid
);
2312 /* unable to get either GUID or UID, set to default */
2313 nvap
->nva_uid
= (uid_t
)(-2);
2314 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
) {
2315 printf("nfs4_parsefattr: owner %s is no one, no %s?, error %d\n", s
,
2316 kauth_guid_equal(&nvap
->nva_uuuid
, &kauth_null_guid
) ? "guid" : "uid",
2322 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2324 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER_GROUP
)) {
2325 nfsm_chain_get_32(error
, nmc
, len
);
2326 if (!error
&& len
>= NFS_MAX_WHO
) {
2329 if (!error
&& (len
>= slen
)) {
2333 slen
= sizeof(sbuf
);
2335 /* Let's add a bit more if we can to the allocation as to try and avoid future allocations */
2336 MALLOC(s
, char*, (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
, M_TEMP
, M_WAITOK
);
2338 slen
= (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
;
2343 nfsm_chain_get_opaque(error
, nmc
, len
, s
);
2346 error
= nfs4_id2guid(s
, &nvap
->nva_guuid
, 1);
2348 error
= kauth_cred_guid2gid(&nvap
->nva_guuid
, &nvap
->nva_gid
);
2351 /* unable to get either GUID or GID, set to default */
2352 nvap
->nva_gid
= (gid_t
)(-2);
2353 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
) {
2354 printf("nfs4_parsefattr: group %s is no one, no %s?, error %d\n", s
,
2355 kauth_guid_equal(&nvap
->nva_guuid
, &kauth_null_guid
) ? "guid" : "gid",
2361 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2363 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_QUOTA_AVAIL_HARD
)) {
2364 nfsm_chain_get_64(error
, nmc
, dqbp
->dqb_bhardlimit
);
2365 attrbytes
-= 2 * NFSX_UNSIGNED
;
2367 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_QUOTA_AVAIL_SOFT
)) {
2368 nfsm_chain_get_64(error
, nmc
, dqbp
->dqb_bsoftlimit
);
2369 attrbytes
-= 2 * NFSX_UNSIGNED
;
2371 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_QUOTA_USED
)) {
2372 nfsm_chain_get_64(error
, nmc
, dqbp
->dqb_curbytes
);
2373 attrbytes
-= 2 * NFSX_UNSIGNED
;
2375 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_RAWDEV
)) {
2376 nfsm_chain_get_32(error
, nmc
, nvap
->nva_rawdev
.specdata1
);
2377 nfsm_chain_get_32(error
, nmc
, nvap
->nva_rawdev
.specdata2
);
2378 attrbytes
-= 2 * NFSX_UNSIGNED
;
2380 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_AVAIL
)) {
2381 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_space_avail
);
2382 attrbytes
-= 2 * NFSX_UNSIGNED
;
2384 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_FREE
)) {
2385 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_space_free
);
2386 attrbytes
-= 2 * NFSX_UNSIGNED
;
2388 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_TOTAL
)) {
2389 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_space_total
);
2390 attrbytes
-= 2 * NFSX_UNSIGNED
;
2392 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_USED
)) {
2393 nfsm_chain_get_64(error
, nmc
, nvap
->nva_bytes
);
2394 attrbytes
-= 2 * NFSX_UNSIGNED
;
2396 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SYSTEM
)) {
2397 /* we'd support this if we had a flag to map it to... */
2398 nfsm_chain_adv(error
, nmc
, NFSX_UNSIGNED
);
2399 attrbytes
-= NFSX_UNSIGNED
;
2401 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS
)) {
2402 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_ACCESS
]);
2403 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_ACCESS
]);
2404 attrbytes
-= 3 * NFSX_UNSIGNED
;
2406 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
)) {
2407 nfsm_chain_adv(error
, nmc
, 4 * NFSX_UNSIGNED
); /* just skip it */
2408 attrbytes
-= 4 * NFSX_UNSIGNED
;
2410 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_BACKUP
)) {
2411 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_BACKUP
]);
2412 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_BACKUP
]);
2413 attrbytes
-= 3 * NFSX_UNSIGNED
;
2415 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_CREATE
)) {
2416 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_CREATE
]);
2417 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_CREATE
]);
2418 attrbytes
-= 3 * NFSX_UNSIGNED
;
2420 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_DELTA
)) { /* skip for now */
2421 nfsm_chain_adv(error
, nmc
, 3 * NFSX_UNSIGNED
);
2422 attrbytes
-= 3 * NFSX_UNSIGNED
;
2424 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_METADATA
)) {
2425 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_CHANGE
]);
2426 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_CHANGE
]);
2427 attrbytes
-= 3 * NFSX_UNSIGNED
;
2429 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY
)) {
2430 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_MODIFY
]);
2431 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_MODIFY
]);
2432 attrbytes
-= 3 * NFSX_UNSIGNED
;
2434 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
)) {
2435 nfsm_chain_adv(error
, nmc
, 4 * NFSX_UNSIGNED
); /* just skip it */
2436 attrbytes
-= 4 * NFSX_UNSIGNED
;
2438 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MOUNTED_ON_FILEID
)) {
2440 /* we prefer the mounted on file ID, so just replace the fileid */
2441 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fileid
);
2443 nfsm_chain_adv(error
, nmc
, 2 * NFSX_UNSIGNED
);
2445 attrbytes
-= 2 * NFSX_UNSIGNED
;
2447 /* advance over any leftover attrbytes */
2448 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
2449 nfsm_chain_adv(error
, nmc
, nfsm_rndup(attrbytes
));
2452 nfs_fs_locations_cleanup(nfslsp
);
2454 if (!error
&& rderror
) {
2457 /* free up temporary resources */
2458 if (s
&& (s
!= sbuf
)) {
2462 kauth_acl_free(acl
);
2464 if (error
&& nvap
->nva_acl
) {
2465 kauth_acl_free(nvap
->nva_acl
);
2466 nvap
->nva_acl
= NULL
;
2472 * Add an NFSv4 "sattr" structure to an mbuf chain
2475 nfsm_chain_add_fattr4_f(struct nfsm_chain
*nmc
, struct vnode_attr
*vap
, struct nfsmount
*nmp
)
2477 int error
= 0, attrbytes
, i
, isgroup
;
2479 uint32_t *pattrbytes
, val
, acecount
;;
2480 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
];
2486 slen
= sizeof(sbuf
);
2488 /* First calculate the bitmap... */
2489 nfs_vattr_set_bitmap(nmp
, bitmap
, vap
);
2492 * Now pack it all together:
2493 * BITMAP, #BYTES, ATTRS
2494 * Keep a pointer to the length so we can set it later.
2496 nfsm_chain_add_bitmap(error
, nmc
, bitmap
, NFS_ATTR_BITMAP_LEN
);
2498 nfsm_chain_add_32(error
, nmc
, attrbytes
);
2499 pattrbytes
= (uint32_t*)(nmc
->nmc_ptr
- NFSX_UNSIGNED
);
2501 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SIZE
)) {
2502 nfsm_chain_add_64(error
, nmc
, vap
->va_data_size
);
2503 attrbytes
+= 2 * NFSX_UNSIGNED
;
2505 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACL
)) {
2507 if (!acl
|| (acl
->acl_entrycount
== KAUTH_FILESEC_NOACL
)) {
2510 acecount
= acl
->acl_entrycount
;
2512 nfsm_chain_add_32(error
, nmc
, acecount
);
2513 attrbytes
+= NFSX_UNSIGNED
;
2514 for (i
= 0; !error
&& (i
< (int)acecount
); i
++) {
2515 val
= (acl
->acl_ace
[i
].ace_flags
& KAUTH_ACE_KINDMASK
);
2516 val
= nfs4_ace_vfstype_to_nfstype(val
, &error
);
2517 nfsm_chain_add_32(error
, nmc
, val
);
2518 val
= nfs4_ace_vfsflags_to_nfsflags(acl
->acl_ace
[i
].ace_flags
);
2519 isgroup
= (kauth_cred_guid2gid(&acl
->acl_ace
[i
].ace_applicable
, &gid
) == 0);
2520 val
|= (isgroup
) ? NFS_ACE_IDENTIFIER_GROUP
: 0;
2521 nfsm_chain_add_32(error
, nmc
, val
);
2522 val
= nfs4_ace_vfsrights_to_nfsmask(acl
->acl_ace
[i
].ace_rights
);
2523 nfsm_chain_add_32(error
, nmc
, val
);
2525 error
= nfs4_guid2id(&acl
->acl_ace
[i
].ace_applicable
, s
, &len
, isgroup
);
2526 if (error
== ENOSPC
) {
2532 MALLOC(s
, char*, len
, M_TEMP
, M_WAITOK
);
2535 error
= nfs4_guid2id(&acl
->acl_ace
[i
].ace_applicable
, s
, &len
, isgroup
);
2540 nfsm_chain_add_name(error
, nmc
, s
, len
, nmp
);
2541 attrbytes
+= 4 * NFSX_UNSIGNED
+ nfsm_rndup(len
);
2544 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ARCHIVE
)) {
2545 nfsm_chain_add_32(error
, nmc
, (vap
->va_flags
& SF_ARCHIVED
) ? 1 : 0);
2546 attrbytes
+= NFSX_UNSIGNED
;
2548 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HIDDEN
)) {
2549 nfsm_chain_add_32(error
, nmc
, (vap
->va_flags
& UF_HIDDEN
) ? 1 : 0);
2550 attrbytes
+= NFSX_UNSIGNED
;
2552 // NFS_BITMAP_ISSET(bitmap, NFS_FATTR_MIMETYPE)
2553 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MODE
)) {
2554 nfsm_chain_add_32(error
, nmc
, vap
->va_mode
);
2555 attrbytes
+= NFSX_UNSIGNED
;
2557 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER
)) {
2559 /* if we have va_uuuid use it, otherwise use uid */
2560 if (!VATTR_IS_ACTIVE(vap
, va_uuuid
)) {
2561 error
= kauth_cred_uid2guid(vap
->va_uid
, &vap
->va_uuuid
);
2565 error
= nfs4_guid2id(&vap
->va_uuuid
, s
, &len
, 0);
2566 if (error
== ENOSPC
) {
2572 MALLOC(s
, char*, len
, M_TEMP
, M_WAITOK
);
2575 error
= nfs4_guid2id(&vap
->va_uuuid
, s
, &len
, 0);
2580 nfsm_chain_add_name(error
, nmc
, s
, len
, nmp
);
2581 attrbytes
+= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2583 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER_GROUP
)) {
2585 /* if we have va_guuid use it, otherwise use gid */
2586 if (!VATTR_IS_ACTIVE(vap
, va_guuid
)) {
2587 error
= kauth_cred_gid2guid(vap
->va_gid
, &vap
->va_guuid
);
2591 error
= nfs4_guid2id(&vap
->va_guuid
, s
, &len
, 1);
2592 if (error
== ENOSPC
) {
2598 MALLOC(s
, char*, len
, M_TEMP
, M_WAITOK
);
2601 error
= nfs4_guid2id(&vap
->va_guuid
, s
, &len
, 1);
2606 nfsm_chain_add_name(error
, nmc
, s
, len
, nmp
);
2607 attrbytes
+= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2609 // NFS_BITMAP_SET(bitmap, NFS_FATTR_SYSTEM)
2610 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
)) {
2611 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
2612 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_SERVER
);
2613 attrbytes
+= NFSX_UNSIGNED
;
2615 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_CLIENT
);
2616 nfsm_chain_add_64(error
, nmc
, vap
->va_access_time
.tv_sec
);
2617 nfsm_chain_add_32(error
, nmc
, vap
->va_access_time
.tv_nsec
);
2618 attrbytes
+= 4 * NFSX_UNSIGNED
;
2621 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_BACKUP
)) {
2622 nfsm_chain_add_64(error
, nmc
, vap
->va_backup_time
.tv_sec
);
2623 nfsm_chain_add_32(error
, nmc
, vap
->va_backup_time
.tv_nsec
);
2624 attrbytes
+= 3 * NFSX_UNSIGNED
;
2626 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_CREATE
)) {
2627 nfsm_chain_add_64(error
, nmc
, vap
->va_create_time
.tv_sec
);
2628 nfsm_chain_add_32(error
, nmc
, vap
->va_create_time
.tv_nsec
);
2629 attrbytes
+= 3 * NFSX_UNSIGNED
;
2631 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
)) {
2632 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
2633 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_SERVER
);
2634 attrbytes
+= NFSX_UNSIGNED
;
2636 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_CLIENT
);
2637 nfsm_chain_add_64(error
, nmc
, vap
->va_modify_time
.tv_sec
);
2638 nfsm_chain_add_32(error
, nmc
, vap
->va_modify_time
.tv_nsec
);
2639 attrbytes
+= 4 * NFSX_UNSIGNED
;
2643 /* Now, set the attribute data length */
2644 *pattrbytes
= txdr_unsigned(attrbytes
);
2646 if (s
&& (s
!= sbuf
)) {
2651 #endif /* CONFIG_NFS4 */
2654 * Got the given error and need to start recovery (if not already started).
2655 * Note: nmp must be locked!
2658 nfs_need_recover(struct nfsmount
*nmp
, int error
)
2660 int wake
= !(nmp
->nm_state
& NFSSTA_RECOVER
);
2662 nmp
->nm_state
|= NFSSTA_RECOVER
;
2663 if ((error
== NFSERR_ADMIN_REVOKED
) ||
2664 (error
== NFSERR_EXPIRED
) ||
2665 (error
== NFSERR_STALE_CLIENTID
)) {
2666 nmp
->nm_state
|= NFSSTA_RECOVER_EXPIRED
;
2669 nfs_mount_sock_thread_wake(nmp
);
2675 * After recovery due to state expiry, check each node and
2676 * drop any lingering delegation we thought we had.
2678 * If a node has an open that is not lost and is not marked
2679 * for reopen, then we hold onto any delegation because it is
2680 * likely newly-granted.
2683 nfs4_expired_check_delegation(nfsnode_t np
, vfs_context_t ctx
)
2685 struct nfsmount
*nmp
= NFSTONMP(np
);
2686 struct nfs_open_file
*nofp
;
2689 if ((np
->n_flag
& NREVOKE
) || !(np
->n_openflags
& N_DELEG_MASK
)) {
2693 lck_mtx_lock(&np
->n_openlock
);
2695 TAILQ_FOREACH(nofp
, &np
->n_opens
, nof_link
) {
2696 if (!nofp
->nof_opencnt
) {
2699 if (nofp
->nof_flags
& NFS_OPEN_FILE_LOST
) {
2702 if (nofp
->nof_flags
& NFS_OPEN_FILE_REOPEN
) {
2705 /* we have an open that is not lost and not marked for reopen */
2706 // XXX print out what's keeping this node from dropping the delegation.
2707 NP(nofp
->nof_np
, "nfs4_expired_check_delegation: !drop: opencnt %d flags 0x%x access %d %d mmap %d %d",
2708 nofp
->nof_opencnt
, nofp
->nof_flags
,
2709 nofp
->nof_access
, nofp
->nof_deny
,
2710 nofp
->nof_mmap_access
, nofp
->nof_mmap_deny
);
2716 /* need to drop a delegation */
2717 if (np
->n_dreturn
.tqe_next
!= NFSNOLIST
) {
2718 /* remove this node from the delegation return list */
2719 lck_mtx_lock(&nmp
->nm_lock
);
2720 if (np
->n_dreturn
.tqe_next
!= NFSNOLIST
) {
2721 TAILQ_REMOVE(&nmp
->nm_dreturnq
, np
, n_dreturn
);
2722 np
->n_dreturn
.tqe_next
= NFSNOLIST
;
2724 lck_mtx_unlock(&nmp
->nm_lock
);
2726 if (np
->n_openflags
& N_DELEG_MASK
) {
2727 np
->n_openflags
&= ~N_DELEG_MASK
;
2728 lck_mtx_lock(&nmp
->nm_lock
);
2729 if (np
->n_dlink
.tqe_next
!= NFSNOLIST
) {
2730 TAILQ_REMOVE(&nmp
->nm_delegations
, np
, n_dlink
);
2731 np
->n_dlink
.tqe_next
= NFSNOLIST
;
2733 lck_mtx_unlock(&nmp
->nm_lock
);
2734 nfs4_delegreturn_rpc(nmp
, np
->n_fhp
, np
->n_fhsize
, &np
->n_dstateid
,
2735 0, vfs_context_thread(ctx
), vfs_context_ucred(ctx
));
2739 lck_mtx_unlock(&np
->n_openlock
);
2741 #endif /* CONFIG_NFS4*/
2744 * Recover state for an NFS mount.
2746 * Iterates over all open files, reclaiming opens and lock state.
2749 nfs_recover(struct nfsmount
*nmp
)
2751 struct timespec ts
= { .tv_sec
= 1, .tv_nsec
= 0 };
2752 int error
, lost
, reopen
;
2753 struct nfs_open_owner
*noop
;
2754 struct nfs_open_file
*nofp
;
2755 struct nfs_file_lock
*nflp
, *nextnflp
;
2756 struct nfs_lock_owner
*nlop
;
2757 thread_t thd
= current_thread();
2759 nfsnode_t np
, nextnp
;
2765 lck_mtx_lock(&nmp
->nm_lock
);
2767 * First, wait for the state inuse count to go to zero so
2768 * we know there are no state operations in progress.
2771 if ((error
= nfs_sigintr(nmp
, NULL
, NULL
, 1))) {
2774 if (!(nmp
->nm_sockflags
& NMSOCK_READY
)) {
2777 if (nmp
->nm_state
& (NFSSTA_FORCE
| NFSSTA_DEAD
)) {
2780 if (nmp
->nm_sockflags
& NMSOCK_UNMOUNT
) {
2786 if (nmp
->nm_stateinuse
) {
2787 msleep(&nmp
->nm_stateinuse
, &nmp
->nm_lock
, (PZERO
- 1), "nfsrecoverstartwait", &ts
);
2789 } while (nmp
->nm_stateinuse
);
2791 if (error
== EPIPE
) {
2792 printf("nfs recovery reconnecting for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2794 printf("nfs recovery aborted for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2796 lck_mtx_unlock(&nmp
->nm_lock
);
2801 if (now
.tv_sec
== nmp
->nm_recover_start
) {
2802 printf("nfs recovery throttled for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2803 lck_mtx_unlock(&nmp
->nm_lock
);
2804 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2807 nmp
->nm_recover_start
= now
.tv_sec
;
2808 if (++nmp
->nm_stategenid
== 0) {
2809 ++nmp
->nm_stategenid
;
2811 printf("nfs recovery started for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2812 lck_mtx_unlock(&nmp
->nm_lock
);
2814 /* for each open owner... */
2815 TAILQ_FOREACH(noop
, &nmp
->nm_open_owners
, noo_link
) {
2816 /* for each of its opens... */
2817 TAILQ_FOREACH(nofp
, &noop
->noo_opens
, nof_oolink
) {
2818 if (!nofp
->nof_access
|| (nofp
->nof_flags
& NFS_OPEN_FILE_LOST
) || (nofp
->nof_np
->n_flag
& NREVOKE
)) {
2822 /* for NFSv2/v3, just skip straight to lock reclaim */
2823 if (nmp
->nm_vers
< NFS_VER4
) {
2827 if (nofp
->nof_rw_drw
) {
2828 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_BOTH
, NFS_OPEN_SHARE_DENY_BOTH
);
2830 if (!error
&& nofp
->nof_w_drw
) {
2831 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_WRITE
, NFS_OPEN_SHARE_DENY_BOTH
);
2833 if (!error
&& nofp
->nof_r_drw
) {
2834 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_READ
, NFS_OPEN_SHARE_DENY_BOTH
);
2836 if (!error
&& nofp
->nof_rw_dw
) {
2837 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_BOTH
, NFS_OPEN_SHARE_DENY_WRITE
);
2839 if (!error
&& nofp
->nof_w_dw
) {
2840 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_WRITE
, NFS_OPEN_SHARE_DENY_WRITE
);
2842 if (!error
&& nofp
->nof_r_dw
) {
2843 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_READ
, NFS_OPEN_SHARE_DENY_WRITE
);
2846 * deny-none opens with no locks can just be reopened (later) if reclaim fails.
2848 if (!error
&& nofp
->nof_rw
) {
2849 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_BOTH
, NFS_OPEN_SHARE_DENY_NONE
);
2850 if ((error
== NFSERR_ADMIN_REVOKED
) || (error
== NFSERR_EXPIRED
) || (error
== NFSERR_NO_GRACE
)) {
2855 if (!error
&& !reopen
&& nofp
->nof_w
) {
2856 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_WRITE
, NFS_OPEN_SHARE_DENY_NONE
);
2857 if ((error
== NFSERR_ADMIN_REVOKED
) || (error
== NFSERR_EXPIRED
) || (error
== NFSERR_NO_GRACE
)) {
2862 if (!error
&& !reopen
&& nofp
->nof_r
) {
2863 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_READ
, NFS_OPEN_SHARE_DENY_NONE
);
2864 if ((error
== NFSERR_ADMIN_REVOKED
) || (error
== NFSERR_EXPIRED
) || (error
== NFSERR_NO_GRACE
)) {
2871 * If we hold delegated state but we don't have any non-delegated opens,
2872 * then we should attempt to claim that state now (but don't return the
2873 * delegation unless asked to).
2875 if ((nofp
->nof_d_rw_drw
|| nofp
->nof_d_w_drw
|| nofp
->nof_d_r_drw
||
2876 nofp
->nof_d_rw_dw
|| nofp
->nof_d_w_dw
|| nofp
->nof_d_r_dw
||
2877 nofp
->nof_d_rw
|| nofp
->nof_d_w
|| nofp
->nof_d_r
) &&
2878 (!nofp
->nof_rw_drw
&& !nofp
->nof_w_drw
&& !nofp
->nof_r_drw
&&
2879 !nofp
->nof_rw_dw
&& !nofp
->nof_w_dw
&& !nofp
->nof_r_dw
&&
2880 !nofp
->nof_rw
&& !nofp
->nof_w
&& !nofp
->nof_r
)) {
2881 if (!error
&& !nfs_open_state_set_busy(nofp
->nof_np
, NULL
)) {
2882 error
= nfs4_claim_delegated_state_for_node(nofp
->nof_np
, R_RECOVER
);
2883 if (!error
&& (nofp
->nof_flags
& NFS_OPEN_FILE_REOPEN
)) {
2886 nfs_open_state_clear_busy(nofp
->nof_np
);
2887 /* if claim didn't go well, we may need to return delegation now */
2888 if (nofp
->nof_np
->n_openflags
& N_DELEG_RETURN
) {
2889 nfs4_delegation_return(nofp
->nof_np
, R_RECOVER
, thd
, noop
->noo_cred
);
2890 if (!(nmp
->nm_sockflags
& NMSOCK_READY
)) {
2891 error
= ETIMEDOUT
; /* looks like we need a reconnect */
2898 * Handle any issue claiming open state.
2899 * Potential reopens need to first confirm that there are no locks.
2901 if (error
|| reopen
) {
2902 /* restart recovery? */
2903 if ((error
== ETIMEDOUT
) || nfs_mount_state_error_should_restart(error
)) {
2904 if (error
== ETIMEDOUT
) {
2905 nfs_need_reconnect(nmp
);
2907 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2908 printf("nfs recovery restarting for %s, 0x%x, error %d\n",
2909 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
2912 if (reopen
&& (nfs_check_for_locks(noop
, nofp
) == 0)) {
2913 /* just reopen the file on next access */
2914 NP(nofp
->nof_np
, "nfs_recover: %d, need reopen for %d %p 0x%x", reopen
,
2915 kauth_cred_getuid(noop
->noo_cred
), nofp
->nof_np
, nofp
->nof_np
->n_flag
);
2916 lck_mtx_lock(&nofp
->nof_lock
);
2917 nofp
->nof_flags
|= NFS_OPEN_FILE_REOPEN
;
2918 lck_mtx_unlock(&nofp
->nof_lock
);
2920 /* open file state lost */
2922 NP(nofp
->nof_np
, "nfs_recover: %d, can't reopen because of locks %d %p", reopen
,
2923 kauth_cred_getuid(noop
->noo_cred
), nofp
->nof_np
);
2930 /* no error, so make sure the reopen flag isn't set */
2931 lck_mtx_lock(&nofp
->nof_lock
);
2932 nofp
->nof_flags
&= ~NFS_OPEN_FILE_REOPEN
;
2933 lck_mtx_unlock(&nofp
->nof_lock
);
2935 #endif /* CONFIG_NFS4 */
2937 * Scan this node's lock owner list for entries with this open owner,
2938 * then walk the lock owner's held lock list recovering each lock.
2941 TAILQ_FOREACH(nlop
, &nofp
->nof_np
->n_lock_owners
, nlo_link
) {
2942 if (lost
|| reopen
) {
2945 if (nlop
->nlo_open_owner
!= noop
) {
2948 TAILQ_FOREACH_SAFE(nflp
, &nlop
->nlo_locks
, nfl_lolink
, nextnflp
) {
2949 /* skip dead & blocked lock requests (shouldn't be any in the held lock list) */
2950 if (nflp
->nfl_flags
& (NFS_FILE_LOCK_DEAD
| NFS_FILE_LOCK_BLOCKED
)) {
2953 /* skip delegated locks */
2954 if (nflp
->nfl_flags
& NFS_FILE_LOCK_DELEGATED
) {
2957 error
= nmp
->nm_funcs
->nf_setlock_rpc(nofp
->nof_np
, nofp
, nflp
, 1, R_RECOVER
, thd
, noop
->noo_cred
);
2959 NP(nofp
->nof_np
, "nfs: lock reclaim (0x%llx, 0x%llx) %s %d",
2960 nflp
->nfl_start
, nflp
->nfl_end
,
2961 error
? "failed" : "succeeded", error
);
2966 /* restart recovery? */
2967 if ((error
== ETIMEDOUT
) || nfs_mount_state_error_should_restart(error
)) {
2968 if (error
== ETIMEDOUT
) {
2969 nfs_need_reconnect(nmp
);
2971 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2972 printf("nfs recovery restarting for %s, 0x%x, error %d\n",
2973 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
2976 /* lock state lost - attempt to close file */
2984 * If we've determined that we need to reopen the file then we probably
2985 * didn't receive any delegation we think we hold. We should attempt to
2986 * return that delegation (and claim any delegated state).
2988 * If we hold a delegation that is marked for return, then we should
2991 if ((nofp
->nof_np
->n_openflags
& N_DELEG_RETURN
) ||
2992 (reopen
&& (nofp
->nof_np
->n_openflags
& N_DELEG_MASK
))) {
2993 nfs4_delegation_return(nofp
->nof_np
, R_RECOVER
, thd
, noop
->noo_cred
);
2994 if (!(nmp
->nm_sockflags
& NMSOCK_READY
)) {
2995 /* looks like we need a reconnect */
2996 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2997 printf("nfs recovery restarting for %s, 0x%x, error %d\n",
2998 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
3004 /* revoke open file state */
3005 NP(nofp
->nof_np
, "nfs_recover: state lost for %d %p 0x%x",
3006 kauth_cred_getuid(noop
->noo_cred
), nofp
->nof_np
, nofp
->nof_np
->n_flag
);
3007 nfs_revoke_open_state_for_node(nofp
->nof_np
);
3013 /* If state expired, make sure we're not holding onto any stale delegations */
3014 lck_mtx_lock(&nmp
->nm_lock
);
3016 if ((nmp
->nm_vers
>= NFS_VER4
) && (nmp
->nm_state
& NFSSTA_RECOVER_EXPIRED
)) {
3018 TAILQ_FOREACH_SAFE(np
, &nmp
->nm_delegations
, n_dlink
, nextnp
) {
3019 lck_mtx_unlock(&nmp
->nm_lock
);
3020 nfs4_expired_check_delegation(np
, vfs_context_kernel());
3021 lck_mtx_lock(&nmp
->nm_lock
);
3022 if (nextnp
== NFSNOLIST
) {
3028 nmp
->nm_state
&= ~(NFSSTA_RECOVER
| NFSSTA_RECOVER_EXPIRED
);
3029 wakeup(&nmp
->nm_state
);
3030 printf("nfs recovery completed for %s, 0x%x\n",
3031 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
3032 lck_mtx_unlock(&nmp
->nm_lock
);
3034 printf("nfs recovery failed for %s, 0x%x, error %d\n",
3035 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
3039 #endif /* CONFIG_NFS_CLIENT */