blob: f5ddff2da3020dfaa5e953577332edbd79c9a131 [file] [log] [blame]
Benny Halevy3ef17282009-04-03 08:29:20 +03001NFSv4.1 Server Implementation
2
3Server support for minorversion 1 can be controlled using the
4/proc/fs/nfsd/versions control file. The string output returned
5by reading this file will contain either "+4.1" or "-4.1"
6correspondingly.
7
8Currently, server support for minorversion 1 is disabled by default.
9It can be enabled at run time by writing the string "+4.1" to
10the /proc/fs/nfsd/versions control file. Note that to write this
11control file, the nfsd service must be taken down. Use your user-mode
12nfs-utils to set this up; see rpc.nfsd(8)
13
J. Bruce Fields285a0f02009-09-20 17:01:33 -040014(Warning: older servers will interpret "+4.1" and "-4.1" as "+4" and
15"-4", respectively. Therefore, code meant to work on both new and old
16kernels must turn 4.1 on or off *before* turning support for version 4
17on or off; rpc.nfsd does this correctly.)
18
Benny Halevy3ef17282009-04-03 08:29:20 +030019The NFSv4 minorversion 1 (NFSv4.1) implementation in nfsd is based
J. Bruce Fields73834d62010-01-20 17:17:04 -050020on RFC 5661.
Benny Halevy3ef17282009-04-03 08:29:20 +030021
22From the many new features in NFSv4.1 the current implementation
23focuses on the mandatory-to-implement NFSv4.1 Sessions, providing
24"exactly once" semantics and better control and throttling of the
25resources allocated for each client.
26
27Other NFSv4.1 features, Parallel NFS operations in particular,
28are still under development out of tree.
29See http://wiki.linux-nfs.org/wiki/index.php/PNFS_prototype_design
30for more information.
31
J. Bruce Fields285a0f02009-09-20 17:01:33 -040032The current implementation is intended for developers only: while it
33does support ordinary file operations on clients we have tested against
34(including the linux client), it is incomplete in ways which may limit
35features unexpectedly, cause known bugs in rare cases, or cause
36interoperability problems with future clients. Known issues:
37
38 - gss support is questionable: currently mounts with kerberos
39 from a linux client are possible, but we aren't really
40 conformant with the spec (for example, we don't use kerberos
41 on the backchannel correctly).
J. Bruce Fields285a0f02009-09-20 17:01:33 -040042 - We do not support SSV, which provides security for shared
43 client-server state (thus preventing unauthorized tampering
44 with locks and opens, for example). It is mandatory for
45 servers to support this, though no clients use it yet.
46 - Mandatory operations which we do not support, such as
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -040047 DESTROY_CLIENTID, are not currently used by clients, but will be
J. Bruce Fields285a0f02009-09-20 17:01:33 -040048 (and the spec recommends their uses in common cases), and
49 clients should not be expected to know how to recover from the
50 case where they are not supported. This will eventually cause
51 interoperability failures.
52
53In addition, some limitations are inherited from the current NFSv4
54implementation:
55
56 - Incomplete delegation enforcement: if a file is renamed or
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -040057 unlinked by a local process, a client holding a delegation may
58 continue to indefinitely allow opens of the file under the old
59 name.
J. Bruce Fields285a0f02009-09-20 17:01:33 -040060
Benny Halevy3ef17282009-04-03 08:29:20 +030061The table below, taken from the NFSv4.1 document, lists
62the operations that are mandatory to implement (REQ), optional
63(OPT), and NFSv4.0 operations that are required not to implement (MNI)
64in minor version 1. The first column indicates the operations that
65are not supported yet by the linux server implementation.
66
67The OPTIONAL features identified and their abbreviations are as follows:
68 pNFS Parallel NFS
69 FDELG File Delegations
70 DDELG Directory Delegations
71
72The following abbreviations indicate the linux server implementation status.
73 I Implemented NFSv4.1 operations.
74 NS Not Supported.
75 NS* unimplemented optional feature.
76 P pNFS features implemented out of tree.
77 PNS pNFS features that are not supported yet (out of tree).
78
79Operations
80
81 +----------------------+------------+--------------+----------------+
82 | Operation | REQ, REC, | Feature | Definition |
83 | | OPT, or | (REQ, REC, | |
84 | | MNI | or OPT) | |
85 +----------------------+------------+--------------+----------------+
86 | ACCESS | REQ | | Section 18.1 |
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -040087I | BACKCHANNEL_CTL | REQ | | Section 18.33 |
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -040088I | BIND_CONN_TO_SESSION | REQ | | Section 18.34 |
Benny Halevy3ef17282009-04-03 08:29:20 +030089 | CLOSE | REQ | | Section 18.2 |
90 | COMMIT | REQ | | Section 18.3 |
91 | CREATE | REQ | | Section 18.4 |
92I | CREATE_SESSION | REQ | | Section 18.36 |
93NS*| DELEGPURGE | OPT | FDELG (REQ) | Section 18.5 |
94 | DELEGRETURN | OPT | FDELG, | Section 18.6 |
95 | | | DDELG, pNFS | |
96 | | | (REQ) | |
97NS | DESTROY_CLIENTID | REQ | | Section 18.50 |
98I | DESTROY_SESSION | REQ | | Section 18.37 |
99I | EXCHANGE_ID | REQ | | Section 18.35 |
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -0400100I | FREE_STATEID | REQ | | Section 18.38 |
Benny Halevy3ef17282009-04-03 08:29:20 +0300101 | GETATTR | REQ | | Section 18.7 |
102P | GETDEVICEINFO | OPT | pNFS (REQ) | Section 18.40 |
103P | GETDEVICELIST | OPT | pNFS (OPT) | Section 18.41 |
104 | GETFH | REQ | | Section 18.8 |
105NS*| GET_DIR_DELEGATION | OPT | DDELG (REQ) | Section 18.39 |
106P | LAYOUTCOMMIT | OPT | pNFS (REQ) | Section 18.42 |
107P | LAYOUTGET | OPT | pNFS (REQ) | Section 18.43 |
108P | LAYOUTRETURN | OPT | pNFS (REQ) | Section 18.44 |
109 | LINK | OPT | | Section 18.9 |
110 | LOCK | REQ | | Section 18.10 |
111 | LOCKT | REQ | | Section 18.11 |
112 | LOCKU | REQ | | Section 18.12 |
113 | LOOKUP | REQ | | Section 18.13 |
114 | LOOKUPP | REQ | | Section 18.14 |
115 | NVERIFY | REQ | | Section 18.15 |
116 | OPEN | REQ | | Section 18.16 |
117NS*| OPENATTR | OPT | | Section 18.17 |
118 | OPEN_CONFIRM | MNI | | N/A |
119 | OPEN_DOWNGRADE | REQ | | Section 18.18 |
120 | PUTFH | REQ | | Section 18.19 |
121 | PUTPUBFH | REQ | | Section 18.20 |
122 | PUTROOTFH | REQ | | Section 18.21 |
123 | READ | REQ | | Section 18.22 |
124 | READDIR | REQ | | Section 18.23 |
125 | READLINK | OPT | | Section 18.24 |
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -0400126 | RECLAIM_COMPLETE | REQ | | Section 18.51 |
Benny Halevy3ef17282009-04-03 08:29:20 +0300127 | RELEASE_LOCKOWNER | MNI | | N/A |
128 | REMOVE | REQ | | Section 18.25 |
129 | RENAME | REQ | | Section 18.26 |
130 | RENEW | MNI | | N/A |
131 | RESTOREFH | REQ | | Section 18.27 |
132 | SAVEFH | REQ | | Section 18.28 |
133 | SECINFO | REQ | | Section 18.29 |
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -0400134I | SECINFO_NO_NAME | REC | pNFS files | Section 18.45, |
Benny Halevy3ef17282009-04-03 08:29:20 +0300135 | | | layout (REQ) | Section 13.12 |
136I | SEQUENCE | REQ | | Section 18.46 |
137 | SETATTR | REQ | | Section 18.30 |
138 | SETCLIENTID | MNI | | N/A |
139 | SETCLIENTID_CONFIRM | MNI | | N/A |
140NS | SET_SSV | REQ | | Section 18.47 |
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -0400141I | TEST_STATEID | REQ | | Section 18.48 |
Benny Halevy3ef17282009-04-03 08:29:20 +0300142 | VERIFY | REQ | | Section 18.31 |
143NS*| WANT_DELEGATION | OPT | FDELG (OPT) | Section 18.49 |
144 | WRITE | REQ | | Section 18.32 |
145
146Callback Operations
147
148 +-------------------------+-----------+-------------+---------------+
149 | Operation | REQ, REC, | Feature | Definition |
150 | | OPT, or | (REQ, REC, | |
151 | | MNI | or OPT) | |
152 +-------------------------+-----------+-------------+---------------+
153 | CB_GETATTR | OPT | FDELG (REQ) | Section 20.1 |
154P | CB_LAYOUTRECALL | OPT | pNFS (REQ) | Section 20.3 |
155NS*| CB_NOTIFY | OPT | DDELG (REQ) | Section 20.4 |
156P | CB_NOTIFY_DEVICEID | OPT | pNFS (OPT) | Section 20.12 |
157NS*| CB_NOTIFY_LOCK | OPT | | Section 20.11 |
158NS*| CB_PUSH_DELEG | OPT | FDELG (OPT) | Section 20.5 |
159 | CB_RECALL | OPT | FDELG, | Section 20.2 |
160 | | | DDELG, pNFS | |
161 | | | (REQ) | |
162NS*| CB_RECALL_ANY | OPT | FDELG, | Section 20.6 |
163 | | | DDELG, pNFS | |
164 | | | (REQ) | |
165NS | CB_RECALL_SLOT | REQ | | Section 20.8 |
166NS*| CB_RECALLABLE_OBJ_AVAIL | OPT | DDELG, pNFS | Section 20.7 |
167 | | | (REQ) | |
168I | CB_SEQUENCE | OPT | FDELG, | Section 20.9 |
169 | | | DDELG, pNFS | |
170 | | | (REQ) | |
171NS*| CB_WANTS_CANCELLED | OPT | FDELG, | Section 20.10 |
172 | | | DDELG, pNFS | |
173 | | | (REQ) | |
174 +-------------------------+-----------+-------------+---------------+
175
176Implementation notes:
177
J. Bruce Fields285a0f02009-09-20 17:01:33 -0400178DELEGPURGE:
179* mandatory only for servers that support CLAIM_DELEGATE_PREV and/or
180 CLAIM_DELEG_PREV_FH (which allows clients to keep delegations that
181 persist across client reboots). Thus we need not implement this for
182 now.
183
Benny Halevy3ef17282009-04-03 08:29:20 +0300184EXCHANGE_ID:
185* only SP4_NONE state protection supported
186* implementation ids are ignored
187
188CREATE_SESSION:
189* backchannel attributes are ignored
190* backchannel security parameters are ignored
191
192SEQUENCE:
193* no support for dynamic slot table renegotiation (optional)
194
Andy Adamsonddc04fd2009-09-23 21:32:21 -0400195Nonstandard compound limitations:
196* No support for a sessions fore channel RPC compound that requires both a
197 ca_maxrequestsize request and a ca_maxresponsesize reply, so we may
198 fail to live up to the promise we made in CREATE_SESSION fore channel
199 negotiation.
200* No more than one IO operation (read, write, readdir) allowed per
201 compound.
J. Bruce Fieldsc46556c2011-07-18 18:40:21 -0400202
203See also http://wiki.linux-nfs.org/wiki/index.php/Server_4.0_and_4.1_issues.