]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
1da177e4 LT |
2 | * Server-side XDR for NFSv4 |
3 | * | |
4 | * Copyright (c) 2002 The Regents of the University of Michigan. | |
5 | * All rights reserved. | |
6 | * | |
7 | * Kendrick Smith <[email protected]> | |
8 | * Andy Adamson <[email protected]> | |
9 | * | |
10 | * Redistribution and use in source and binary forms, with or without | |
11 | * modification, are permitted provided that the following conditions | |
12 | * are met: | |
13 | * | |
14 | * 1. Redistributions of source code must retain the above copyright | |
15 | * notice, this list of conditions and the following disclaimer. | |
16 | * 2. Redistributions in binary form must reproduce the above copyright | |
17 | * notice, this list of conditions and the following disclaimer in the | |
18 | * documentation and/or other materials provided with the distribution. | |
19 | * 3. Neither the name of the University nor the names of its | |
20 | * contributors may be used to endorse or promote products derived | |
21 | * from this software without specific prior written permission. | |
22 | * | |
23 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
24 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
25 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
26 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
27 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
28 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
29 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | |
30 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | |
31 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
32 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | |
33 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
34 | * | |
35 | * TODO: Neil Brown made the following observation: We currently | |
36 | * initially reserve NFSD_BUFSIZE space on the transmit queue and | |
37 | * never release any of that until the request is complete. | |
38 | * It would be good to calculate a new maximum response size while | |
39 | * decoding the COMPOUND, and call svc_reserve with this number | |
40 | * at the end of nfs4svc_decode_compoundargs. | |
41 | */ | |
42 | ||
5a0e3ad6 | 43 | #include <linux/slab.h> |
1da177e4 | 44 | #include <linux/namei.h> |
341eb184 | 45 | #include <linux/statfs.h> |
0733d213 | 46 | #include <linux/utsname.h> |
17456804 | 47 | #include <linux/pagemap.h> |
4796f457 | 48 | #include <linux/sunrpc/svcauth_gss.h> |
9a74af21 | 49 | |
2ca72e17 BF |
50 | #include "idmap.h" |
51 | #include "acl.h" | |
9a74af21 | 52 | #include "xdr4.h" |
0a3adade | 53 | #include "vfs.h" |
17456804 | 54 | #include "state.h" |
1091006c | 55 | #include "cache.h" |
2ca72e17 | 56 | |
1da177e4 LT |
57 | #define NFSDDBG_FACILITY NFSDDBG_XDR |
58 | ||
42ca0993 BF |
59 | /* |
60 | * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing | |
61 | * directory in order to indicate to the client that a filesystem boundary is present | |
62 | * We use a fixed fsid for a referral | |
63 | */ | |
64 | #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL | |
65 | #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL | |
66 | ||
b37ad28b AV |
67 | static __be32 |
68 | check_filename(char *str, int len, __be32 err) | |
1da177e4 LT |
69 | { |
70 | int i; | |
71 | ||
72 | if (len == 0) | |
73 | return nfserr_inval; | |
74 | if (isdotent(str, len)) | |
75 | return err; | |
76 | for (i = 0; i < len; i++) | |
77 | if (str[i] == '/') | |
78 | return err; | |
79 | return 0; | |
80 | } | |
81 | ||
1da177e4 | 82 | #define DECODE_HEAD \ |
2ebbc012 | 83 | __be32 *p; \ |
b37ad28b | 84 | __be32 status |
1da177e4 LT |
85 | #define DECODE_TAIL \ |
86 | status = 0; \ | |
87 | out: \ | |
88 | return status; \ | |
89 | xdr_error: \ | |
817cb9d4 CL |
90 | dprintk("NFSD: xdr error (%s:%d)\n", \ |
91 | __FILE__, __LINE__); \ | |
1da177e4 LT |
92 | status = nfserr_bad_xdr; \ |
93 | goto out | |
94 | ||
95 | #define READ32(x) (x) = ntohl(*p++) | |
96 | #define READ64(x) do { \ | |
97 | (x) = (u64)ntohl(*p++) << 32; \ | |
98 | (x) |= ntohl(*p++); \ | |
99 | } while (0) | |
100 | #define READTIME(x) do { \ | |
101 | p++; \ | |
102 | (x) = ntohl(*p++); \ | |
103 | p++; \ | |
104 | } while (0) | |
105 | #define READMEM(x,nbytes) do { \ | |
106 | x = (char *)p; \ | |
107 | p += XDR_QUADLEN(nbytes); \ | |
108 | } while (0) | |
109 | #define SAVEMEM(x,nbytes) do { \ | |
110 | if (!(x = (p==argp->tmp || p == argp->tmpp) ? \ | |
111 | savemem(argp, p, nbytes) : \ | |
112 | (char *)p)) { \ | |
817cb9d4 CL |
113 | dprintk("NFSD: xdr error (%s:%d)\n", \ |
114 | __FILE__, __LINE__); \ | |
1da177e4 LT |
115 | goto xdr_error; \ |
116 | } \ | |
117 | p += XDR_QUADLEN(nbytes); \ | |
118 | } while (0) | |
119 | #define COPYMEM(x,nbytes) do { \ | |
120 | memcpy((x), p, nbytes); \ | |
121 | p += XDR_QUADLEN(nbytes); \ | |
122 | } while (0) | |
123 | ||
124 | /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */ | |
125 | #define READ_BUF(nbytes) do { \ | |
126 | if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \ | |
127 | p = argp->p; \ | |
128 | argp->p += XDR_QUADLEN(nbytes); \ | |
129 | } else if (!(p = read_buf(argp, nbytes))) { \ | |
817cb9d4 CL |
130 | dprintk("NFSD: xdr error (%s:%d)\n", \ |
131 | __FILE__, __LINE__); \ | |
1da177e4 LT |
132 | goto xdr_error; \ |
133 | } \ | |
134 | } while (0) | |
135 | ||
17456804 BS |
136 | static void save_buf(struct nfsd4_compoundargs *argp, struct nfsd4_saved_compoundargs *savep) |
137 | { | |
138 | savep->p = argp->p; | |
139 | savep->end = argp->end; | |
140 | savep->pagelen = argp->pagelen; | |
141 | savep->pagelist = argp->pagelist; | |
142 | } | |
143 | ||
144 | static void restore_buf(struct nfsd4_compoundargs *argp, struct nfsd4_saved_compoundargs *savep) | |
145 | { | |
146 | argp->p = savep->p; | |
147 | argp->end = savep->end; | |
148 | argp->pagelen = savep->pagelen; | |
149 | argp->pagelist = savep->pagelist; | |
150 | } | |
151 | ||
ca2a05aa | 152 | static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes) |
1da177e4 LT |
153 | { |
154 | /* We want more bytes than seem to be available. | |
155 | * Maybe we need a new page, maybe we have just run out | |
156 | */ | |
ca2a05aa | 157 | unsigned int avail = (char *)argp->end - (char *)argp->p; |
2ebbc012 | 158 | __be32 *p; |
1da177e4 LT |
159 | if (avail + argp->pagelen < nbytes) |
160 | return NULL; | |
161 | if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */ | |
162 | return NULL; | |
163 | /* ok, we can do it with the current plus the next page */ | |
164 | if (nbytes <= sizeof(argp->tmp)) | |
165 | p = argp->tmp; | |
166 | else { | |
f99d49ad | 167 | kfree(argp->tmpp); |
1da177e4 LT |
168 | p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL); |
169 | if (!p) | |
170 | return NULL; | |
171 | ||
172 | } | |
ca2a05aa BF |
173 | /* |
174 | * The following memcpy is safe because read_buf is always | |
175 | * called with nbytes > avail, and the two cases above both | |
176 | * guarantee p points to at least nbytes bytes. | |
177 | */ | |
1da177e4 LT |
178 | memcpy(p, argp->p, avail); |
179 | /* step to next page */ | |
180 | argp->p = page_address(argp->pagelist[0]); | |
181 | argp->pagelist++; | |
182 | if (argp->pagelen < PAGE_SIZE) { | |
2bc3c117 | 183 | argp->end = argp->p + (argp->pagelen>>2); |
1da177e4 LT |
184 | argp->pagelen = 0; |
185 | } else { | |
2bc3c117 | 186 | argp->end = argp->p + (PAGE_SIZE>>2); |
1da177e4 LT |
187 | argp->pagelen -= PAGE_SIZE; |
188 | } | |
189 | memcpy(((char*)p)+avail, argp->p, (nbytes - avail)); | |
190 | argp->p += XDR_QUADLEN(nbytes - avail); | |
191 | return p; | |
192 | } | |
193 | ||
60adfc50 AA |
194 | static int zero_clientid(clientid_t *clid) |
195 | { | |
196 | return (clid->cl_boot == 0) && (clid->cl_id == 0); | |
197 | } | |
198 | ||
1da177e4 LT |
199 | static int |
200 | defer_free(struct nfsd4_compoundargs *argp, | |
201 | void (*release)(const void *), void *p) | |
202 | { | |
203 | struct tmpbuf *tb; | |
204 | ||
205 | tb = kmalloc(sizeof(*tb), GFP_KERNEL); | |
206 | if (!tb) | |
207 | return -ENOMEM; | |
208 | tb->buf = p; | |
209 | tb->release = release; | |
210 | tb->next = argp->to_free; | |
211 | argp->to_free = tb; | |
212 | return 0; | |
213 | } | |
214 | ||
2ebbc012 | 215 | static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes) |
1da177e4 | 216 | { |
1da177e4 | 217 | if (p == argp->tmp) { |
a4db5fe5 BF |
218 | p = kmalloc(nbytes, GFP_KERNEL); |
219 | if (!p) | |
220 | return NULL; | |
1da177e4 LT |
221 | memcpy(p, argp->tmp, nbytes); |
222 | } else { | |
73dff8be | 223 | BUG_ON(p != argp->tmpp); |
1da177e4 LT |
224 | argp->tmpp = NULL; |
225 | } | |
226 | if (defer_free(argp, kfree, p)) { | |
a4db5fe5 | 227 | kfree(p); |
1da177e4 LT |
228 | return NULL; |
229 | } else | |
230 | return (char *)p; | |
231 | } | |
232 | ||
b37ad28b | 233 | static __be32 |
1da177e4 LT |
234 | nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval) |
235 | { | |
236 | u32 bmlen; | |
237 | DECODE_HEAD; | |
238 | ||
239 | bmval[0] = 0; | |
240 | bmval[1] = 0; | |
7e705706 | 241 | bmval[2] = 0; |
1da177e4 LT |
242 | |
243 | READ_BUF(4); | |
244 | READ32(bmlen); | |
245 | if (bmlen > 1000) | |
246 | goto xdr_error; | |
247 | ||
248 | READ_BUF(bmlen << 2); | |
249 | if (bmlen > 0) | |
250 | READ32(bmval[0]); | |
251 | if (bmlen > 1) | |
252 | READ32(bmval[1]); | |
7e705706 AA |
253 | if (bmlen > 2) |
254 | READ32(bmval[2]); | |
1da177e4 LT |
255 | |
256 | DECODE_TAIL; | |
257 | } | |
258 | ||
b37ad28b | 259 | static __be32 |
3c8e0316 | 260 | nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, |
c0d6fc8a | 261 | struct iattr *iattr, struct nfs4_acl **acl) |
1da177e4 LT |
262 | { |
263 | int expected_len, len = 0; | |
264 | u32 dummy32; | |
265 | char *buf; | |
b8dd7b9a | 266 | int host_err; |
1da177e4 LT |
267 | |
268 | DECODE_HEAD; | |
269 | iattr->ia_valid = 0; | |
270 | if ((status = nfsd4_decode_bitmap(argp, bmval))) | |
271 | return status; | |
272 | ||
1da177e4 LT |
273 | READ_BUF(4); |
274 | READ32(expected_len); | |
275 | ||
276 | if (bmval[0] & FATTR4_WORD0_SIZE) { | |
277 | READ_BUF(8); | |
278 | len += 8; | |
279 | READ64(iattr->ia_size); | |
280 | iattr->ia_valid |= ATTR_SIZE; | |
281 | } | |
282 | if (bmval[0] & FATTR4_WORD0_ACL) { | |
28e05dd8 BF |
283 | int nace; |
284 | struct nfs4_ace *ace; | |
1da177e4 LT |
285 | |
286 | READ_BUF(4); len += 4; | |
287 | READ32(nace); | |
288 | ||
28e05dd8 BF |
289 | if (nace > NFS4_ACL_MAX) |
290 | return nfserr_resource; | |
291 | ||
292 | *acl = nfs4_acl_new(nace); | |
1da177e4 | 293 | if (*acl == NULL) { |
b8dd7b9a | 294 | host_err = -ENOMEM; |
1da177e4 LT |
295 | goto out_nfserr; |
296 | } | |
28e05dd8 | 297 | defer_free(argp, kfree, *acl); |
1da177e4 | 298 | |
28e05dd8 BF |
299 | (*acl)->naces = nace; |
300 | for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) { | |
1da177e4 | 301 | READ_BUF(16); len += 16; |
28e05dd8 BF |
302 | READ32(ace->type); |
303 | READ32(ace->flag); | |
304 | READ32(ace->access_mask); | |
1da177e4 LT |
305 | READ32(dummy32); |
306 | READ_BUF(dummy32); | |
307 | len += XDR_QUADLEN(dummy32) << 2; | |
308 | READMEM(buf, dummy32); | |
28e05dd8 | 309 | ace->whotype = nfs4_acl_get_whotype(buf, dummy32); |
3c726023 | 310 | status = nfs_ok; |
28e05dd8 BF |
311 | if (ace->whotype != NFS4_ACL_WHO_NAMED) |
312 | ace->who = 0; | |
313 | else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP) | |
3c726023 | 314 | status = nfsd_map_name_to_gid(argp->rqstp, |
28e05dd8 | 315 | buf, dummy32, &ace->who); |
1da177e4 | 316 | else |
3c726023 | 317 | status = nfsd_map_name_to_uid(argp->rqstp, |
28e05dd8 | 318 | buf, dummy32, &ace->who); |
3c726023 BF |
319 | if (status) |
320 | return status; | |
1da177e4 LT |
321 | } |
322 | } else | |
323 | *acl = NULL; | |
324 | if (bmval[1] & FATTR4_WORD1_MODE) { | |
325 | READ_BUF(4); | |
326 | len += 4; | |
327 | READ32(iattr->ia_mode); | |
328 | iattr->ia_mode &= (S_IFMT | S_IALLUGO); | |
329 | iattr->ia_valid |= ATTR_MODE; | |
330 | } | |
331 | if (bmval[1] & FATTR4_WORD1_OWNER) { | |
332 | READ_BUF(4); | |
333 | len += 4; | |
334 | READ32(dummy32); | |
335 | READ_BUF(dummy32); | |
336 | len += (XDR_QUADLEN(dummy32) << 2); | |
337 | READMEM(buf, dummy32); | |
47c85291 N |
338 | if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid))) |
339 | return status; | |
1da177e4 LT |
340 | iattr->ia_valid |= ATTR_UID; |
341 | } | |
342 | if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) { | |
343 | READ_BUF(4); | |
344 | len += 4; | |
345 | READ32(dummy32); | |
346 | READ_BUF(dummy32); | |
347 | len += (XDR_QUADLEN(dummy32) << 2); | |
348 | READMEM(buf, dummy32); | |
47c85291 N |
349 | if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid))) |
350 | return status; | |
1da177e4 LT |
351 | iattr->ia_valid |= ATTR_GID; |
352 | } | |
353 | if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) { | |
354 | READ_BUF(4); | |
355 | len += 4; | |
356 | READ32(dummy32); | |
357 | switch (dummy32) { | |
358 | case NFS4_SET_TO_CLIENT_TIME: | |
359 | /* We require the high 32 bits of 'seconds' to be 0, and we ignore | |
360 | all 32 bits of 'nseconds'. */ | |
361 | READ_BUF(12); | |
362 | len += 12; | |
363 | READ32(dummy32); | |
364 | if (dummy32) | |
365 | return nfserr_inval; | |
366 | READ32(iattr->ia_atime.tv_sec); | |
367 | READ32(iattr->ia_atime.tv_nsec); | |
368 | if (iattr->ia_atime.tv_nsec >= (u32)1000000000) | |
369 | return nfserr_inval; | |
370 | iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET); | |
371 | break; | |
372 | case NFS4_SET_TO_SERVER_TIME: | |
373 | iattr->ia_valid |= ATTR_ATIME; | |
374 | break; | |
375 | default: | |
376 | goto xdr_error; | |
377 | } | |
378 | } | |
1da177e4 LT |
379 | if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) { |
380 | READ_BUF(4); | |
381 | len += 4; | |
382 | READ32(dummy32); | |
383 | switch (dummy32) { | |
384 | case NFS4_SET_TO_CLIENT_TIME: | |
385 | /* We require the high 32 bits of 'seconds' to be 0, and we ignore | |
386 | all 32 bits of 'nseconds'. */ | |
387 | READ_BUF(12); | |
388 | len += 12; | |
389 | READ32(dummy32); | |
390 | if (dummy32) | |
391 | return nfserr_inval; | |
392 | READ32(iattr->ia_mtime.tv_sec); | |
393 | READ32(iattr->ia_mtime.tv_nsec); | |
394 | if (iattr->ia_mtime.tv_nsec >= (u32)1000000000) | |
395 | return nfserr_inval; | |
396 | iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET); | |
397 | break; | |
398 | case NFS4_SET_TO_SERVER_TIME: | |
399 | iattr->ia_valid |= ATTR_MTIME; | |
400 | break; | |
401 | default: | |
402 | goto xdr_error; | |
403 | } | |
404 | } | |
3c8e0316 YZ |
405 | if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0 |
406 | || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1 | |
407 | || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2) | |
408 | READ_BUF(expected_len - len); | |
409 | else if (len != expected_len) | |
1da177e4 LT |
410 | goto xdr_error; |
411 | ||
412 | DECODE_TAIL; | |
413 | ||
414 | out_nfserr: | |
b8dd7b9a | 415 | status = nfserrno(host_err); |
1da177e4 LT |
416 | goto out; |
417 | } | |
418 | ||
e31a1b66 BH |
419 | static __be32 |
420 | nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid) | |
421 | { | |
422 | DECODE_HEAD; | |
423 | ||
424 | READ_BUF(sizeof(stateid_t)); | |
425 | READ32(sid->si_generation); | |
426 | COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t)); | |
427 | ||
428 | DECODE_TAIL; | |
429 | } | |
430 | ||
b37ad28b | 431 | static __be32 |
1da177e4 LT |
432 | nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access) |
433 | { | |
434 | DECODE_HEAD; | |
435 | ||
436 | READ_BUF(4); | |
437 | READ32(access->ac_req_access); | |
438 | ||
439 | DECODE_TAIL; | |
440 | } | |
441 | ||
1d1bc8f2 BF |
442 | static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts) |
443 | { | |
444 | DECODE_HEAD; | |
1d1bc8f2 BF |
445 | |
446 | READ_BUF(NFS4_MAX_SESSIONID_LEN + 8); | |
447 | COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN); | |
448 | READ32(bcts->dir); | |
6ce2357f BS |
449 | /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker |
450 | * could help us figure out we should be using it. */ | |
1d1bc8f2 BF |
451 | DECODE_TAIL; |
452 | } | |
453 | ||
b37ad28b | 454 | static __be32 |
1da177e4 LT |
455 | nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close) |
456 | { | |
457 | DECODE_HEAD; | |
458 | ||
e31a1b66 | 459 | READ_BUF(4); |
1da177e4 | 460 | READ32(close->cl_seqid); |
e31a1b66 | 461 | return nfsd4_decode_stateid(argp, &close->cl_stateid); |
1da177e4 LT |
462 | |
463 | DECODE_TAIL; | |
464 | } | |
465 | ||
466 | ||
b37ad28b | 467 | static __be32 |
1da177e4 LT |
468 | nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit) |
469 | { | |
470 | DECODE_HEAD; | |
471 | ||
472 | READ_BUF(12); | |
473 | READ64(commit->co_offset); | |
474 | READ32(commit->co_count); | |
475 | ||
476 | DECODE_TAIL; | |
477 | } | |
478 | ||
b37ad28b | 479 | static __be32 |
1da177e4 LT |
480 | nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create) |
481 | { | |
482 | DECODE_HEAD; | |
483 | ||
484 | READ_BUF(4); | |
485 | READ32(create->cr_type); | |
486 | switch (create->cr_type) { | |
487 | case NF4LNK: | |
488 | READ_BUF(4); | |
489 | READ32(create->cr_linklen); | |
490 | READ_BUF(create->cr_linklen); | |
491 | SAVEMEM(create->cr_linkname, create->cr_linklen); | |
492 | break; | |
493 | case NF4BLK: | |
494 | case NF4CHR: | |
495 | READ_BUF(8); | |
496 | READ32(create->cr_specdata1); | |
497 | READ32(create->cr_specdata2); | |
498 | break; | |
499 | case NF4SOCK: | |
500 | case NF4FIFO: | |
501 | case NF4DIR: | |
502 | default: | |
503 | break; | |
504 | } | |
505 | ||
506 | READ_BUF(4); | |
507 | READ32(create->cr_namelen); | |
508 | READ_BUF(create->cr_namelen); | |
509 | SAVEMEM(create->cr_name, create->cr_namelen); | |
510 | if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval))) | |
511 | return status; | |
512 | ||
3c8e0316 YZ |
513 | status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr, |
514 | &create->cr_acl); | |
c0d6fc8a | 515 | if (status) |
1da177e4 LT |
516 | goto out; |
517 | ||
518 | DECODE_TAIL; | |
519 | } | |
520 | ||
b37ad28b | 521 | static inline __be32 |
1da177e4 LT |
522 | nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr) |
523 | { | |
e31a1b66 | 524 | return nfsd4_decode_stateid(argp, &dr->dr_stateid); |
1da177e4 LT |
525 | } |
526 | ||
b37ad28b | 527 | static inline __be32 |
1da177e4 LT |
528 | nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr) |
529 | { | |
530 | return nfsd4_decode_bitmap(argp, getattr->ga_bmval); | |
531 | } | |
532 | ||
b37ad28b | 533 | static __be32 |
1da177e4 LT |
534 | nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link) |
535 | { | |
536 | DECODE_HEAD; | |
537 | ||
538 | READ_BUF(4); | |
539 | READ32(link->li_namelen); | |
540 | READ_BUF(link->li_namelen); | |
541 | SAVEMEM(link->li_name, link->li_namelen); | |
542 | if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval))) | |
543 | return status; | |
544 | ||
545 | DECODE_TAIL; | |
546 | } | |
547 | ||
b37ad28b | 548 | static __be32 |
1da177e4 LT |
549 | nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock) |
550 | { | |
551 | DECODE_HEAD; | |
552 | ||
1da177e4 LT |
553 | /* |
554 | * type, reclaim(boolean), offset, length, new_lock_owner(boolean) | |
555 | */ | |
556 | READ_BUF(28); | |
557 | READ32(lock->lk_type); | |
558 | if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT)) | |
559 | goto xdr_error; | |
560 | READ32(lock->lk_reclaim); | |
561 | READ64(lock->lk_offset); | |
562 | READ64(lock->lk_length); | |
563 | READ32(lock->lk_is_new); | |
564 | ||
565 | if (lock->lk_is_new) { | |
e31a1b66 | 566 | READ_BUF(4); |
1da177e4 | 567 | READ32(lock->lk_new_open_seqid); |
e31a1b66 BH |
568 | status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid); |
569 | if (status) | |
570 | return status; | |
571 | READ_BUF(8 + sizeof(clientid_t)); | |
1da177e4 LT |
572 | READ32(lock->lk_new_lock_seqid); |
573 | COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t)); | |
574 | READ32(lock->lk_new_owner.len); | |
575 | READ_BUF(lock->lk_new_owner.len); | |
576 | READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len); | |
577 | } else { | |
e31a1b66 BH |
578 | status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid); |
579 | if (status) | |
580 | return status; | |
581 | READ_BUF(4); | |
1da177e4 LT |
582 | READ32(lock->lk_old_lock_seqid); |
583 | } | |
584 | ||
585 | DECODE_TAIL; | |
586 | } | |
587 | ||
b37ad28b | 588 | static __be32 |
1da177e4 LT |
589 | nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt) |
590 | { | |
591 | DECODE_HEAD; | |
592 | ||
593 | READ_BUF(32); | |
594 | READ32(lockt->lt_type); | |
595 | if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT)) | |
596 | goto xdr_error; | |
597 | READ64(lockt->lt_offset); | |
598 | READ64(lockt->lt_length); | |
599 | COPYMEM(&lockt->lt_clientid, 8); | |
600 | READ32(lockt->lt_owner.len); | |
601 | READ_BUF(lockt->lt_owner.len); | |
602 | READMEM(lockt->lt_owner.data, lockt->lt_owner.len); | |
603 | ||
604 | DECODE_TAIL; | |
605 | } | |
606 | ||
b37ad28b | 607 | static __be32 |
1da177e4 LT |
608 | nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku) |
609 | { | |
610 | DECODE_HEAD; | |
611 | ||
e31a1b66 | 612 | READ_BUF(8); |
1da177e4 LT |
613 | READ32(locku->lu_type); |
614 | if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT)) | |
615 | goto xdr_error; | |
616 | READ32(locku->lu_seqid); | |
e31a1b66 BH |
617 | status = nfsd4_decode_stateid(argp, &locku->lu_stateid); |
618 | if (status) | |
619 | return status; | |
620 | READ_BUF(16); | |
1da177e4 LT |
621 | READ64(locku->lu_offset); |
622 | READ64(locku->lu_length); | |
623 | ||
624 | DECODE_TAIL; | |
625 | } | |
626 | ||
b37ad28b | 627 | static __be32 |
1da177e4 LT |
628 | nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup) |
629 | { | |
630 | DECODE_HEAD; | |
631 | ||
632 | READ_BUF(4); | |
633 | READ32(lookup->lo_len); | |
634 | READ_BUF(lookup->lo_len); | |
635 | SAVEMEM(lookup->lo_name, lookup->lo_len); | |
636 | if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent))) | |
637 | return status; | |
638 | ||
639 | DECODE_TAIL; | |
640 | } | |
641 | ||
b37ad28b | 642 | static __be32 |
1da177e4 LT |
643 | nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open) |
644 | { | |
645 | DECODE_HEAD; | |
646 | ||
647 | memset(open->op_bmval, 0, sizeof(open->op_bmval)); | |
648 | open->op_iattr.ia_valid = 0; | |
fe0750e5 | 649 | open->op_openowner = NULL; |
1da177e4 LT |
650 | |
651 | /* seqid, share_access, share_deny, clientid, ownerlen */ | |
652 | READ_BUF(16 + sizeof(clientid_t)); | |
653 | READ32(open->op_seqid); | |
654 | READ32(open->op_share_access); | |
655 | READ32(open->op_share_deny); | |
656 | COPYMEM(&open->op_clientid, sizeof(clientid_t)); | |
657 | READ32(open->op_owner.len); | |
658 | ||
659 | /* owner, open_flag */ | |
660 | READ_BUF(open->op_owner.len + 4); | |
661 | SAVEMEM(open->op_owner.data, open->op_owner.len); | |
662 | READ32(open->op_create); | |
663 | switch (open->op_create) { | |
664 | case NFS4_OPEN_NOCREATE: | |
665 | break; | |
666 | case NFS4_OPEN_CREATE: | |
667 | READ_BUF(4); | |
668 | READ32(open->op_createmode); | |
669 | switch (open->op_createmode) { | |
670 | case NFS4_CREATE_UNCHECKED: | |
671 | case NFS4_CREATE_GUARDED: | |
c0d6fc8a | 672 | status = nfsd4_decode_fattr(argp, open->op_bmval, |
3c8e0316 | 673 | &open->op_iattr, &open->op_acl); |
c0d6fc8a | 674 | if (status) |
1da177e4 LT |
675 | goto out; |
676 | break; | |
677 | case NFS4_CREATE_EXCLUSIVE: | |
678 | READ_BUF(8); | |
679 | COPYMEM(open->op_verf.data, 8); | |
680 | break; | |
79fb54ab BH |
681 | case NFS4_CREATE_EXCLUSIVE4_1: |
682 | if (argp->minorversion < 1) | |
683 | goto xdr_error; | |
684 | READ_BUF(8); | |
685 | COPYMEM(open->op_verf.data, 8); | |
686 | status = nfsd4_decode_fattr(argp, open->op_bmval, | |
3c8e0316 | 687 | &open->op_iattr, &open->op_acl); |
79fb54ab BH |
688 | if (status) |
689 | goto out; | |
690 | break; | |
1da177e4 LT |
691 | default: |
692 | goto xdr_error; | |
693 | } | |
694 | break; | |
695 | default: | |
696 | goto xdr_error; | |
697 | } | |
698 | ||
699 | /* open_claim */ | |
700 | READ_BUF(4); | |
701 | READ32(open->op_claim_type); | |
702 | switch (open->op_claim_type) { | |
703 | case NFS4_OPEN_CLAIM_NULL: | |
704 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: | |
705 | READ_BUF(4); | |
706 | READ32(open->op_fname.len); | |
707 | READ_BUF(open->op_fname.len); | |
708 | SAVEMEM(open->op_fname.data, open->op_fname.len); | |
709 | if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval))) | |
710 | return status; | |
711 | break; | |
712 | case NFS4_OPEN_CLAIM_PREVIOUS: | |
713 | READ_BUF(4); | |
714 | READ32(open->op_delegate_type); | |
715 | break; | |
716 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: | |
e31a1b66 BH |
717 | status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid); |
718 | if (status) | |
719 | return status; | |
720 | READ_BUF(4); | |
1da177e4 LT |
721 | READ32(open->op_fname.len); |
722 | READ_BUF(open->op_fname.len); | |
723 | SAVEMEM(open->op_fname.data, open->op_fname.len); | |
724 | if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval))) | |
725 | return status; | |
726 | break; | |
727 | default: | |
728 | goto xdr_error; | |
729 | } | |
730 | ||
731 | DECODE_TAIL; | |
732 | } | |
733 | ||
b37ad28b | 734 | static __be32 |
1da177e4 LT |
735 | nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf) |
736 | { | |
737 | DECODE_HEAD; | |
738 | ||
e31a1b66 BH |
739 | status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid); |
740 | if (status) | |
741 | return status; | |
742 | READ_BUF(4); | |
1da177e4 LT |
743 | READ32(open_conf->oc_seqid); |
744 | ||
745 | DECODE_TAIL; | |
746 | } | |
747 | ||
b37ad28b | 748 | static __be32 |
1da177e4 LT |
749 | nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down) |
750 | { | |
751 | DECODE_HEAD; | |
752 | ||
e31a1b66 BH |
753 | status = nfsd4_decode_stateid(argp, &open_down->od_stateid); |
754 | if (status) | |
755 | return status; | |
756 | READ_BUF(12); | |
1da177e4 LT |
757 | READ32(open_down->od_seqid); |
758 | READ32(open_down->od_share_access); | |
759 | READ32(open_down->od_share_deny); | |
760 | ||
761 | DECODE_TAIL; | |
762 | } | |
763 | ||
b37ad28b | 764 | static __be32 |
1da177e4 LT |
765 | nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh) |
766 | { | |
767 | DECODE_HEAD; | |
768 | ||
769 | READ_BUF(4); | |
770 | READ32(putfh->pf_fhlen); | |
771 | if (putfh->pf_fhlen > NFS4_FHSIZE) | |
772 | goto xdr_error; | |
773 | READ_BUF(putfh->pf_fhlen); | |
774 | SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen); | |
775 | ||
776 | DECODE_TAIL; | |
777 | } | |
778 | ||
b37ad28b | 779 | static __be32 |
1da177e4 LT |
780 | nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read) |
781 | { | |
782 | DECODE_HEAD; | |
783 | ||
e31a1b66 BH |
784 | status = nfsd4_decode_stateid(argp, &read->rd_stateid); |
785 | if (status) | |
786 | return status; | |
787 | READ_BUF(12); | |
1da177e4 LT |
788 | READ64(read->rd_offset); |
789 | READ32(read->rd_length); | |
790 | ||
791 | DECODE_TAIL; | |
792 | } | |
793 | ||
b37ad28b | 794 | static __be32 |
1da177e4 LT |
795 | nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir) |
796 | { | |
797 | DECODE_HEAD; | |
798 | ||
799 | READ_BUF(24); | |
800 | READ64(readdir->rd_cookie); | |
801 | COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data)); | |
802 | READ32(readdir->rd_dircount); /* just in case you needed a useless field... */ | |
803 | READ32(readdir->rd_maxcount); | |
804 | if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval))) | |
805 | goto out; | |
806 | ||
807 | DECODE_TAIL; | |
808 | } | |
809 | ||
b37ad28b | 810 | static __be32 |
1da177e4 LT |
811 | nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove) |
812 | { | |
813 | DECODE_HEAD; | |
814 | ||
815 | READ_BUF(4); | |
816 | READ32(remove->rm_namelen); | |
817 | READ_BUF(remove->rm_namelen); | |
818 | SAVEMEM(remove->rm_name, remove->rm_namelen); | |
819 | if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent))) | |
820 | return status; | |
821 | ||
822 | DECODE_TAIL; | |
823 | } | |
824 | ||
b37ad28b | 825 | static __be32 |
1da177e4 LT |
826 | nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename) |
827 | { | |
828 | DECODE_HEAD; | |
829 | ||
830 | READ_BUF(4); | |
831 | READ32(rename->rn_snamelen); | |
832 | READ_BUF(rename->rn_snamelen + 4); | |
833 | SAVEMEM(rename->rn_sname, rename->rn_snamelen); | |
834 | READ32(rename->rn_tnamelen); | |
835 | READ_BUF(rename->rn_tnamelen); | |
836 | SAVEMEM(rename->rn_tname, rename->rn_tnamelen); | |
837 | if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent))) | |
838 | return status; | |
839 | if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval))) | |
840 | return status; | |
841 | ||
842 | DECODE_TAIL; | |
843 | } | |
844 | ||
b37ad28b | 845 | static __be32 |
1da177e4 LT |
846 | nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid) |
847 | { | |
848 | DECODE_HEAD; | |
849 | ||
850 | READ_BUF(sizeof(clientid_t)); | |
851 | COPYMEM(clientid, sizeof(clientid_t)); | |
852 | ||
853 | DECODE_TAIL; | |
854 | } | |
855 | ||
dcb488a3 AA |
856 | static __be32 |
857 | nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp, | |
858 | struct nfsd4_secinfo *secinfo) | |
859 | { | |
860 | DECODE_HEAD; | |
861 | ||
862 | READ_BUF(4); | |
863 | READ32(secinfo->si_namelen); | |
864 | READ_BUF(secinfo->si_namelen); | |
865 | SAVEMEM(secinfo->si_name, secinfo->si_namelen); | |
866 | status = check_filename(secinfo->si_name, secinfo->si_namelen, | |
867 | nfserr_noent); | |
868 | if (status) | |
869 | return status; | |
870 | DECODE_TAIL; | |
871 | } | |
872 | ||
04f4ad16 BF |
873 | static __be32 |
874 | nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp, | |
875 | struct nfsd4_secinfo_no_name *sin) | |
876 | { | |
877 | DECODE_HEAD; | |
878 | ||
879 | READ_BUF(4); | |
880 | READ32(sin->sin_style); | |
881 | DECODE_TAIL; | |
882 | } | |
883 | ||
b37ad28b | 884 | static __be32 |
1da177e4 LT |
885 | nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr) |
886 | { | |
e31a1b66 | 887 | __be32 status; |
1da177e4 | 888 | |
e31a1b66 BH |
889 | status = nfsd4_decode_stateid(argp, &setattr->sa_stateid); |
890 | if (status) | |
891 | return status; | |
3c8e0316 YZ |
892 | return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr, |
893 | &setattr->sa_acl); | |
1da177e4 LT |
894 | } |
895 | ||
b37ad28b | 896 | static __be32 |
1da177e4 LT |
897 | nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid) |
898 | { | |
899 | DECODE_HEAD; | |
900 | ||
901 | READ_BUF(12); | |
902 | COPYMEM(setclientid->se_verf.data, 8); | |
903 | READ32(setclientid->se_namelen); | |
904 | ||
905 | READ_BUF(setclientid->se_namelen + 8); | |
906 | SAVEMEM(setclientid->se_name, setclientid->se_namelen); | |
907 | READ32(setclientid->se_callback_prog); | |
908 | READ32(setclientid->se_callback_netid_len); | |
909 | ||
910 | READ_BUF(setclientid->se_callback_netid_len + 4); | |
911 | SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len); | |
912 | READ32(setclientid->se_callback_addr_len); | |
913 | ||
914 | READ_BUF(setclientid->se_callback_addr_len + 4); | |
915 | SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len); | |
916 | READ32(setclientid->se_callback_ident); | |
917 | ||
918 | DECODE_TAIL; | |
919 | } | |
920 | ||
b37ad28b | 921 | static __be32 |
1da177e4 LT |
922 | nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c) |
923 | { | |
924 | DECODE_HEAD; | |
925 | ||
926 | READ_BUF(8 + sizeof(nfs4_verifier)); | |
927 | COPYMEM(&scd_c->sc_clientid, 8); | |
928 | COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier)); | |
929 | ||
930 | DECODE_TAIL; | |
931 | } | |
932 | ||
933 | /* Also used for NVERIFY */ | |
b37ad28b | 934 | static __be32 |
1da177e4 LT |
935 | nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify) |
936 | { | |
937 | #if 0 | |
938 | struct nfsd4_compoundargs save = { | |
939 | .p = argp->p, | |
940 | .end = argp->end, | |
941 | .rqstp = argp->rqstp, | |
942 | }; | |
943 | u32 ve_bmval[2]; | |
944 | struct iattr ve_iattr; /* request */ | |
945 | struct nfs4_acl *ve_acl; /* request */ | |
946 | #endif | |
947 | DECODE_HEAD; | |
948 | ||
949 | if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval))) | |
950 | goto out; | |
951 | ||
952 | /* For convenience's sake, we compare raw xdr'd attributes in | |
953 | * nfsd4_proc_verify; however we still decode here just to return | |
954 | * correct error in case of bad xdr. */ | |
955 | #if 0 | |
956 | status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl); | |
957 | if (status == nfserr_inval) { | |
958 | status = nfserrno(status); | |
959 | goto out; | |
960 | } | |
961 | #endif | |
962 | READ_BUF(4); | |
963 | READ32(verify->ve_attrlen); | |
964 | READ_BUF(verify->ve_attrlen); | |
965 | SAVEMEM(verify->ve_attrval, verify->ve_attrlen); | |
966 | ||
967 | DECODE_TAIL; | |
968 | } | |
969 | ||
b37ad28b | 970 | static __be32 |
1da177e4 LT |
971 | nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write) |
972 | { | |
973 | int avail; | |
974 | int v; | |
975 | int len; | |
976 | DECODE_HEAD; | |
977 | ||
e31a1b66 BH |
978 | status = nfsd4_decode_stateid(argp, &write->wr_stateid); |
979 | if (status) | |
980 | return status; | |
981 | READ_BUF(16); | |
1da177e4 LT |
982 | READ64(write->wr_offset); |
983 | READ32(write->wr_stable_how); | |
984 | if (write->wr_stable_how > 2) | |
985 | goto xdr_error; | |
986 | READ32(write->wr_buflen); | |
987 | ||
988 | /* Sorry .. no magic macros for this.. * | |
989 | * READ_BUF(write->wr_buflen); | |
990 | * SAVEMEM(write->wr_buf, write->wr_buflen); | |
991 | */ | |
992 | avail = (char*)argp->end - (char*)argp->p; | |
993 | if (avail + argp->pagelen < write->wr_buflen) { | |
817cb9d4 CL |
994 | dprintk("NFSD: xdr error (%s:%d)\n", |
995 | __FILE__, __LINE__); | |
1da177e4 LT |
996 | goto xdr_error; |
997 | } | |
3cc03b16 N |
998 | argp->rqstp->rq_vec[0].iov_base = p; |
999 | argp->rqstp->rq_vec[0].iov_len = avail; | |
1da177e4 LT |
1000 | v = 0; |
1001 | len = write->wr_buflen; | |
3cc03b16 N |
1002 | while (len > argp->rqstp->rq_vec[v].iov_len) { |
1003 | len -= argp->rqstp->rq_vec[v].iov_len; | |
1da177e4 | 1004 | v++; |
3cc03b16 | 1005 | argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]); |
1da177e4 LT |
1006 | argp->pagelist++; |
1007 | if (argp->pagelen >= PAGE_SIZE) { | |
3cc03b16 | 1008 | argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE; |
1da177e4 LT |
1009 | argp->pagelen -= PAGE_SIZE; |
1010 | } else { | |
3cc03b16 | 1011 | argp->rqstp->rq_vec[v].iov_len = argp->pagelen; |
1da177e4 LT |
1012 | argp->pagelen -= len; |
1013 | } | |
1014 | } | |
2ebbc012 AV |
1015 | argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len); |
1016 | argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2)); | |
3cc03b16 | 1017 | argp->rqstp->rq_vec[v].iov_len = len; |
1da177e4 LT |
1018 | write->wr_vlen = v+1; |
1019 | ||
1020 | DECODE_TAIL; | |
1021 | } | |
1022 | ||
b37ad28b | 1023 | static __be32 |
1da177e4 LT |
1024 | nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner) |
1025 | { | |
1026 | DECODE_HEAD; | |
1027 | ||
1028 | READ_BUF(12); | |
1029 | COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t)); | |
1030 | READ32(rlockowner->rl_owner.len); | |
1031 | READ_BUF(rlockowner->rl_owner.len); | |
1032 | READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len); | |
1033 | ||
60adfc50 AA |
1034 | if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid)) |
1035 | return nfserr_inval; | |
1da177e4 LT |
1036 | DECODE_TAIL; |
1037 | } | |
1038 | ||
2db134eb AA |
1039 | static __be32 |
1040 | nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp, | |
0733d213 | 1041 | struct nfsd4_exchange_id *exid) |
2db134eb | 1042 | { |
5afa040b | 1043 | int dummy, tmp; |
0733d213 AA |
1044 | DECODE_HEAD; |
1045 | ||
1046 | READ_BUF(NFS4_VERIFIER_SIZE); | |
1047 | COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE); | |
1048 | ||
1049 | READ_BUF(4); | |
1050 | READ32(exid->clname.len); | |
1051 | ||
1052 | READ_BUF(exid->clname.len); | |
1053 | SAVEMEM(exid->clname.data, exid->clname.len); | |
1054 | ||
1055 | READ_BUF(4); | |
1056 | READ32(exid->flags); | |
1057 | ||
1058 | /* Ignore state_protect4_a */ | |
1059 | READ_BUF(4); | |
1060 | READ32(exid->spa_how); | |
1061 | switch (exid->spa_how) { | |
1062 | case SP4_NONE: | |
1063 | break; | |
1064 | case SP4_MACH_CRED: | |
1065 | /* spo_must_enforce */ | |
1066 | READ_BUF(4); | |
1067 | READ32(dummy); | |
1068 | READ_BUF(dummy * 4); | |
1069 | p += dummy; | |
1070 | ||
1071 | /* spo_must_allow */ | |
1072 | READ_BUF(4); | |
1073 | READ32(dummy); | |
1074 | READ_BUF(dummy * 4); | |
1075 | p += dummy; | |
1076 | break; | |
1077 | case SP4_SSV: | |
1078 | /* ssp_ops */ | |
1079 | READ_BUF(4); | |
1080 | READ32(dummy); | |
1081 | READ_BUF(dummy * 4); | |
1082 | p += dummy; | |
1083 | ||
1084 | READ_BUF(4); | |
1085 | READ32(dummy); | |
1086 | READ_BUF(dummy * 4); | |
1087 | p += dummy; | |
1088 | ||
1089 | /* ssp_hash_algs<> */ | |
1090 | READ_BUF(4); | |
5afa040b MJ |
1091 | READ32(tmp); |
1092 | while (tmp--) { | |
1093 | READ_BUF(4); | |
1094 | READ32(dummy); | |
1095 | READ_BUF(dummy); | |
1096 | p += XDR_QUADLEN(dummy); | |
1097 | } | |
0733d213 AA |
1098 | |
1099 | /* ssp_encr_algs<> */ | |
1100 | READ_BUF(4); | |
5afa040b MJ |
1101 | READ32(tmp); |
1102 | while (tmp--) { | |
1103 | READ_BUF(4); | |
1104 | READ32(dummy); | |
1105 | READ_BUF(dummy); | |
1106 | p += XDR_QUADLEN(dummy); | |
1107 | } | |
0733d213 AA |
1108 | |
1109 | /* ssp_window and ssp_num_gss_handles */ | |
1110 | READ_BUF(8); | |
1111 | READ32(dummy); | |
1112 | READ32(dummy); | |
1113 | break; | |
1114 | default: | |
1115 | goto xdr_error; | |
1116 | } | |
1117 | ||
1118 | /* Ignore Implementation ID */ | |
1119 | READ_BUF(4); /* nfs_impl_id4 array length */ | |
1120 | READ32(dummy); | |
1121 | ||
1122 | if (dummy > 1) | |
1123 | goto xdr_error; | |
1124 | ||
1125 | if (dummy == 1) { | |
1126 | /* nii_domain */ | |
1127 | READ_BUF(4); | |
1128 | READ32(dummy); | |
1129 | READ_BUF(dummy); | |
1130 | p += XDR_QUADLEN(dummy); | |
1131 | ||
1132 | /* nii_name */ | |
1133 | READ_BUF(4); | |
1134 | READ32(dummy); | |
1135 | READ_BUF(dummy); | |
1136 | p += XDR_QUADLEN(dummy); | |
1137 | ||
1138 | /* nii_date */ | |
1139 | READ_BUF(12); | |
1140 | p += 3; | |
1141 | } | |
1142 | DECODE_TAIL; | |
2db134eb AA |
1143 | } |
1144 | ||
1145 | static __be32 | |
1146 | nfsd4_decode_create_session(struct nfsd4_compoundargs *argp, | |
1147 | struct nfsd4_create_session *sess) | |
1148 | { | |
ec6b5d7b AA |
1149 | DECODE_HEAD; |
1150 | ||
1151 | u32 dummy; | |
1152 | char *machine_name; | |
5a02ab7c | 1153 | int i; |
ec6b5d7b AA |
1154 | int nr_secflavs; |
1155 | ||
1156 | READ_BUF(16); | |
1157 | COPYMEM(&sess->clientid, 8); | |
1158 | READ32(sess->seqid); | |
1159 | READ32(sess->flags); | |
1160 | ||
1161 | /* Fore channel attrs */ | |
1162 | READ_BUF(28); | |
1163 | READ32(dummy); /* headerpadsz is always 0 */ | |
1164 | READ32(sess->fore_channel.maxreq_sz); | |
1165 | READ32(sess->fore_channel.maxresp_sz); | |
1166 | READ32(sess->fore_channel.maxresp_cached); | |
1167 | READ32(sess->fore_channel.maxops); | |
1168 | READ32(sess->fore_channel.maxreqs); | |
1169 | READ32(sess->fore_channel.nr_rdma_attrs); | |
1170 | if (sess->fore_channel.nr_rdma_attrs == 1) { | |
1171 | READ_BUF(4); | |
1172 | READ32(sess->fore_channel.rdma_attrs); | |
1173 | } else if (sess->fore_channel.nr_rdma_attrs > 1) { | |
1174 | dprintk("Too many fore channel attr bitmaps!\n"); | |
1175 | goto xdr_error; | |
1176 | } | |
1177 | ||
1178 | /* Back channel attrs */ | |
1179 | READ_BUF(28); | |
1180 | READ32(dummy); /* headerpadsz is always 0 */ | |
1181 | READ32(sess->back_channel.maxreq_sz); | |
1182 | READ32(sess->back_channel.maxresp_sz); | |
1183 | READ32(sess->back_channel.maxresp_cached); | |
1184 | READ32(sess->back_channel.maxops); | |
1185 | READ32(sess->back_channel.maxreqs); | |
1186 | READ32(sess->back_channel.nr_rdma_attrs); | |
1187 | if (sess->back_channel.nr_rdma_attrs == 1) { | |
1188 | READ_BUF(4); | |
1189 | READ32(sess->back_channel.rdma_attrs); | |
1190 | } else if (sess->back_channel.nr_rdma_attrs > 1) { | |
1191 | dprintk("Too many back channel attr bitmaps!\n"); | |
1192 | goto xdr_error; | |
1193 | } | |
1194 | ||
1195 | READ_BUF(8); | |
1196 | READ32(sess->callback_prog); | |
1197 | ||
1198 | /* callback_sec_params4 */ | |
1199 | READ32(nr_secflavs); | |
1200 | for (i = 0; i < nr_secflavs; ++i) { | |
1201 | READ_BUF(4); | |
1202 | READ32(dummy); | |
1203 | switch (dummy) { | |
1204 | case RPC_AUTH_NULL: | |
1205 | /* Nothing to read */ | |
1206 | break; | |
1207 | case RPC_AUTH_UNIX: | |
1208 | READ_BUF(8); | |
1209 | /* stamp */ | |
1210 | READ32(dummy); | |
1211 | ||
1212 | /* machine name */ | |
1213 | READ32(dummy); | |
1214 | READ_BUF(dummy); | |
1215 | SAVEMEM(machine_name, dummy); | |
1216 | ||
1217 | /* uid, gid */ | |
1218 | READ_BUF(8); | |
1219 | READ32(sess->uid); | |
1220 | READ32(sess->gid); | |
1221 | ||
1222 | /* more gids */ | |
1223 | READ_BUF(4); | |
1224 | READ32(dummy); | |
1225 | READ_BUF(dummy * 4); | |
ec6b5d7b AA |
1226 | break; |
1227 | case RPC_AUTH_GSS: | |
1228 | dprintk("RPC_AUTH_GSS callback secflavor " | |
1229 | "not supported!\n"); | |
1230 | READ_BUF(8); | |
1231 | /* gcbp_service */ | |
1232 | READ32(dummy); | |
1233 | /* gcbp_handle_from_server */ | |
1234 | READ32(dummy); | |
1235 | READ_BUF(dummy); | |
1236 | p += XDR_QUADLEN(dummy); | |
1237 | /* gcbp_handle_from_client */ | |
1238 | READ_BUF(4); | |
1239 | READ32(dummy); | |
1240 | READ_BUF(dummy); | |
ec6b5d7b AA |
1241 | break; |
1242 | default: | |
1243 | dprintk("Illegal callback secflavor\n"); | |
1244 | return nfserr_inval; | |
1245 | } | |
1246 | } | |
1247 | DECODE_TAIL; | |
2db134eb AA |
1248 | } |
1249 | ||
1250 | static __be32 | |
1251 | nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp, | |
1252 | struct nfsd4_destroy_session *destroy_session) | |
1253 | { | |
e10e0cfc BH |
1254 | DECODE_HEAD; |
1255 | READ_BUF(NFS4_MAX_SESSIONID_LEN); | |
1256 | COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN); | |
1257 | ||
1258 | DECODE_TAIL; | |
2db134eb AA |
1259 | } |
1260 | ||
e1ca12df BS |
1261 | static __be32 |
1262 | nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp, | |
1263 | struct nfsd4_free_stateid *free_stateid) | |
1264 | { | |
1265 | DECODE_HEAD; | |
1266 | ||
1267 | READ_BUF(sizeof(stateid_t)); | |
1268 | READ32(free_stateid->fr_stateid.si_generation); | |
1269 | COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t)); | |
1270 | ||
1271 | DECODE_TAIL; | |
1272 | } | |
1273 | ||
2db134eb AA |
1274 | static __be32 |
1275 | nfsd4_decode_sequence(struct nfsd4_compoundargs *argp, | |
1276 | struct nfsd4_sequence *seq) | |
1277 | { | |
b85d4c01 BH |
1278 | DECODE_HEAD; |
1279 | ||
1280 | READ_BUF(NFS4_MAX_SESSIONID_LEN + 16); | |
1281 | COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN); | |
1282 | READ32(seq->seqid); | |
1283 | READ32(seq->slotid); | |
1284 | READ32(seq->maxslots); | |
1285 | READ32(seq->cachethis); | |
1286 | ||
1287 | DECODE_TAIL; | |
2db134eb AA |
1288 | } |
1289 | ||
17456804 BS |
1290 | static __be32 |
1291 | nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid) | |
1292 | { | |
1293 | unsigned int nbytes; | |
1294 | stateid_t si; | |
1295 | int i; | |
1296 | __be32 *p; | |
1297 | __be32 status; | |
1298 | ||
1299 | READ_BUF(4); | |
1300 | test_stateid->ts_num_ids = ntohl(*p++); | |
1301 | ||
1302 | nbytes = test_stateid->ts_num_ids * sizeof(stateid_t); | |
1303 | if (nbytes > (u32)((char *)argp->end - (char *)argp->p)) | |
1304 | goto xdr_error; | |
1305 | ||
1306 | test_stateid->ts_saved_args = argp; | |
1307 | save_buf(argp, &test_stateid->ts_savedp); | |
1308 | ||
1309 | for (i = 0; i < test_stateid->ts_num_ids; i++) { | |
1310 | status = nfsd4_decode_stateid(argp, &si); | |
1311 | if (status) | |
1312 | return status; | |
1313 | } | |
1314 | ||
1315 | status = 0; | |
1316 | out: | |
1317 | return status; | |
1318 | xdr_error: | |
1319 | dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__); | |
1320 | status = nfserr_bad_xdr; | |
1321 | goto out; | |
1322 | } | |
1323 | ||
4dc6ec00 BF |
1324 | static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc) |
1325 | { | |
1326 | DECODE_HEAD; | |
1327 | ||
1328 | READ_BUF(4); | |
1329 | READ32(rc->rca_one_fs); | |
1330 | ||
1331 | DECODE_TAIL; | |
1332 | } | |
1333 | ||
347e0ad9 BH |
1334 | static __be32 |
1335 | nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p) | |
1336 | { | |
1337 | return nfs_ok; | |
1338 | } | |
1339 | ||
3c375c6f BH |
1340 | static __be32 |
1341 | nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p) | |
1342 | { | |
1e685ec2 | 1343 | return nfserr_notsupp; |
3c375c6f BH |
1344 | } |
1345 | ||
347e0ad9 BH |
1346 | typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *); |
1347 | ||
1348 | static nfsd4_dec nfsd4_dec_ops[] = { | |
ad1060c8 BF |
1349 | [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access, |
1350 | [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close, | |
1351 | [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit, | |
1352 | [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create, | |
1353 | [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1354 | [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn, | |
1355 | [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr, | |
1356 | [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1357 | [OP_LINK] = (nfsd4_dec)nfsd4_decode_link, | |
1358 | [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock, | |
1359 | [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt, | |
1360 | [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku, | |
1361 | [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup, | |
1362 | [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop, | |
1363 | [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify, | |
1364 | [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open, | |
1365 | [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1366 | [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm, | |
1367 | [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade, | |
1368 | [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh, | |
a1c8c4d1 | 1369 | [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop, |
ad1060c8 BF |
1370 | [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop, |
1371 | [OP_READ] = (nfsd4_dec)nfsd4_decode_read, | |
1372 | [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir, | |
1373 | [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop, | |
1374 | [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove, | |
1375 | [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename, | |
1376 | [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew, | |
1377 | [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1378 | [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1379 | [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo, | |
1380 | [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr, | |
1381 | [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid, | |
1382 | [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm, | |
1383 | [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify, | |
1384 | [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write, | |
1385 | [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner, | |
347e0ad9 BH |
1386 | }; |
1387 | ||
2db134eb | 1388 | static nfsd4_dec nfsd41_dec_ops[] = { |
9064caae RD |
1389 | [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access, |
1390 | [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close, | |
1391 | [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit, | |
1392 | [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create, | |
1393 | [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1394 | [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn, | |
1395 | [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr, | |
1396 | [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1397 | [OP_LINK] = (nfsd4_dec)nfsd4_decode_link, | |
1398 | [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock, | |
1399 | [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt, | |
1400 | [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku, | |
1401 | [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup, | |
1402 | [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop, | |
1403 | [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify, | |
1404 | [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open, | |
1405 | [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1406 | [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1407 | [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade, | |
1408 | [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh, | |
1409 | [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1410 | [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1411 | [OP_READ] = (nfsd4_dec)nfsd4_decode_read, | |
1412 | [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir, | |
1413 | [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop, | |
1414 | [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove, | |
1415 | [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename, | |
1416 | [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1417 | [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1418 | [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop, | |
1419 | [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo, | |
1420 | [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr, | |
1421 | [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1422 | [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp, | |
1423 | [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify, | |
1424 | [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write, | |
1425 | [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp, | |
2db134eb AA |
1426 | |
1427 | /* new operations for NFSv4.1 */ | |
9064caae | 1428 | [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_notsupp, |
1d1bc8f2 | 1429 | [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session, |
9064caae RD |
1430 | [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id, |
1431 | [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session, | |
1432 | [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session, | |
e1ca12df | 1433 | [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid, |
9064caae RD |
1434 | [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp, |
1435 | [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1436 | [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1437 | [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1438 | [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp, | |
1439 | [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp, | |
04f4ad16 | 1440 | [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name, |
9064caae RD |
1441 | [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence, |
1442 | [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp, | |
17456804 | 1443 | [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid, |
9064caae RD |
1444 | [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp, |
1445 | [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp, | |
4dc6ec00 | 1446 | [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete, |
2db134eb AA |
1447 | }; |
1448 | ||
f2feb96b BH |
1449 | struct nfsd4_minorversion_ops { |
1450 | nfsd4_dec *decoders; | |
1451 | int nops; | |
1452 | }; | |
1453 | ||
1454 | static struct nfsd4_minorversion_ops nfsd4_minorversion[] = { | |
ad1060c8 | 1455 | [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) }, |
2db134eb | 1456 | [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) }, |
f2feb96b BH |
1457 | }; |
1458 | ||
b37ad28b | 1459 | static __be32 |
1da177e4 LT |
1460 | nfsd4_decode_compound(struct nfsd4_compoundargs *argp) |
1461 | { | |
1462 | DECODE_HEAD; | |
1463 | struct nfsd4_op *op; | |
f2feb96b | 1464 | struct nfsd4_minorversion_ops *ops; |
1091006c | 1465 | bool cachethis = false; |
1da177e4 LT |
1466 | int i; |
1467 | ||
1468 | /* | |
1469 | * XXX: According to spec, we should check the tag | |
1470 | * for UTF-8 compliance. I'm postponing this for | |
1471 | * now because it seems that some clients do use | |
1472 | * binary tags. | |
1473 | */ | |
1474 | READ_BUF(4); | |
1475 | READ32(argp->taglen); | |
1476 | READ_BUF(argp->taglen + 8); | |
1477 | SAVEMEM(argp->tag, argp->taglen); | |
1478 | READ32(argp->minorversion); | |
1479 | READ32(argp->opcnt); | |
1480 | ||
1481 | if (argp->taglen > NFSD4_MAX_TAGLEN) | |
1482 | goto xdr_error; | |
1483 | if (argp->opcnt > 100) | |
1484 | goto xdr_error; | |
1485 | ||
e8c96f8c | 1486 | if (argp->opcnt > ARRAY_SIZE(argp->iops)) { |
1da177e4 LT |
1487 | argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL); |
1488 | if (!argp->ops) { | |
1489 | argp->ops = argp->iops; | |
817cb9d4 | 1490 | dprintk("nfsd: couldn't allocate room for COMPOUND\n"); |
1da177e4 LT |
1491 | goto xdr_error; |
1492 | } | |
1493 | } | |
1494 | ||
f2feb96b | 1495 | if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion)) |
30cff1ff BH |
1496 | argp->opcnt = 0; |
1497 | ||
f2feb96b | 1498 | ops = &nfsd4_minorversion[argp->minorversion]; |
1da177e4 LT |
1499 | for (i = 0; i < argp->opcnt; i++) { |
1500 | op = &argp->ops[i]; | |
1501 | op->replay = NULL; | |
1502 | ||
1503 | /* | |
1504 | * We can't use READ_BUF() here because we need to handle | |
1505 | * a missing opcode as an OP_WRITE + 1. So we need to check | |
1506 | * to see if we're truly at the end of our buffer or if there | |
1507 | * is another page we need to flip to. | |
1508 | */ | |
1509 | ||
1510 | if (argp->p == argp->end) { | |
1511 | if (argp->pagelen < 4) { | |
1512 | /* There isn't an opcode still on the wire */ | |
1513 | op->opnum = OP_WRITE + 1; | |
1514 | op->status = nfserr_bad_xdr; | |
1515 | argp->opcnt = i+1; | |
1516 | break; | |
1517 | } | |
1518 | ||
1519 | /* | |
1520 | * False alarm. We just hit a page boundary, but there | |
1521 | * is still data available. Move pointer across page | |
1522 | * boundary. *snip from READ_BUF* | |
1523 | */ | |
1524 | argp->p = page_address(argp->pagelist[0]); | |
1525 | argp->pagelist++; | |
1526 | if (argp->pagelen < PAGE_SIZE) { | |
2bc3c117 | 1527 | argp->end = argp->p + (argp->pagelen>>2); |
1da177e4 LT |
1528 | argp->pagelen = 0; |
1529 | } else { | |
2bc3c117 | 1530 | argp->end = argp->p + (PAGE_SIZE>>2); |
1da177e4 LT |
1531 | argp->pagelen -= PAGE_SIZE; |
1532 | } | |
1533 | } | |
1534 | op->opnum = ntohl(*argp->p++); | |
1535 | ||
de3cab79 | 1536 | if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP) |
f2feb96b | 1537 | op->status = ops->decoders[op->opnum](argp, &op->u); |
347e0ad9 | 1538 | else { |
1da177e4 LT |
1539 | op->opnum = OP_ILLEGAL; |
1540 | op->status = nfserr_op_illegal; | |
1da177e4 LT |
1541 | } |
1542 | ||
1543 | if (op->status) { | |
1544 | argp->opcnt = i+1; | |
1545 | break; | |
1546 | } | |
1091006c BF |
1547 | /* |
1548 | * We'll try to cache the result in the DRC if any one | |
1549 | * op in the compound wants to be cached: | |
1550 | */ | |
1551 | cachethis |= nfsd4_cache_this_op(op); | |
1da177e4 | 1552 | } |
1091006c BF |
1553 | /* Sessions make the DRC unnecessary: */ |
1554 | if (argp->minorversion) | |
1555 | cachethis = false; | |
1556 | argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE; | |
1da177e4 LT |
1557 | |
1558 | DECODE_TAIL; | |
1559 | } | |
1da177e4 | 1560 | |
1da177e4 LT |
1561 | #define WRITE32(n) *p++ = htonl(n) |
1562 | #define WRITE64(n) do { \ | |
1563 | *p++ = htonl((u32)((n) >> 32)); \ | |
1564 | *p++ = htonl((u32)(n)); \ | |
1565 | } while (0) | |
5108b276 | 1566 | #define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \ |
1da177e4 LT |
1567 | *(p + XDR_QUADLEN(nbytes) -1) = 0; \ |
1568 | memcpy(p, ptr, nbytes); \ | |
1569 | p += XDR_QUADLEN(nbytes); \ | |
5108b276 | 1570 | }} while (0) |
c654b8a9 BF |
1571 | |
1572 | static void write32(__be32 **p, u32 n) | |
1573 | { | |
1574 | *(*p)++ = n; | |
1575 | } | |
1576 | ||
1577 | static void write64(__be32 **p, u64 n) | |
1578 | { | |
1579 | write32(p, (u32)(n >> 32)); | |
1580 | write32(p, (u32)n); | |
1581 | } | |
1582 | ||
1583 | static void write_change(__be32 **p, struct kstat *stat, struct inode *inode) | |
1584 | { | |
1585 | if (IS_I_VERSION(inode)) { | |
1586 | write64(p, inode->i_version); | |
1587 | } else { | |
1588 | write32(p, stat->ctime.tv_sec); | |
1589 | write32(p, stat->ctime.tv_nsec); | |
1590 | } | |
1591 | } | |
1592 | ||
1593 | static void write_cinfo(__be32 **p, struct nfsd4_change_info *c) | |
1594 | { | |
1595 | write32(p, c->atomic); | |
1596 | if (c->change_supported) { | |
1597 | write64(p, c->before_change); | |
1598 | write64(p, c->after_change); | |
1599 | } else { | |
1600 | write32(p, c->before_ctime_sec); | |
1601 | write32(p, c->before_ctime_nsec); | |
1602 | write32(p, c->after_ctime_sec); | |
1603 | write32(p, c->after_ctime_nsec); | |
1604 | } | |
1605 | } | |
1da177e4 LT |
1606 | |
1607 | #define RESERVE_SPACE(nbytes) do { \ | |
1608 | p = resp->p; \ | |
1609 | BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \ | |
1610 | } while (0) | |
1611 | #define ADJUST_ARGS() resp->p = p | |
1612 | ||
1613 | /* | |
1614 | * Header routine to setup seqid operation replay cache | |
1615 | */ | |
1616 | #define ENCODE_SEQID_OP_HEAD \ | |
2ebbc012 | 1617 | __be32 *save; \ |
1da177e4 LT |
1618 | \ |
1619 | save = resp->p; | |
1620 | ||
1621 | /* | |
7fb64cee N |
1622 | * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This |
1623 | * is where sequence id's are incremented, and the replay cache is filled. | |
1624 | * Note that we increment sequence id's here, at the last moment, so we're sure | |
1625 | * we know whether the error to be returned is a sequence id mutating error. | |
1da177e4 LT |
1626 | */ |
1627 | ||
f3e42237 BF |
1628 | static void encode_seqid_op_tail(struct nfsd4_compoundres *resp, __be32 *save, __be32 nfserr) |
1629 | { | |
1630 | struct nfs4_stateowner *stateowner = resp->cstate.replay_owner; | |
1631 | ||
1632 | if (seqid_mutating_err(ntohl(nfserr)) && stateowner) { | |
1633 | stateowner->so_seqid++; | |
1634 | stateowner->so_replay.rp_status = nfserr; | |
1635 | stateowner->so_replay.rp_buflen = | |
1636 | (char *)resp->p - (char *)save; | |
1637 | memcpy(stateowner->so_replay.rp_buf, save, | |
1638 | stateowner->so_replay.rp_buflen); | |
1639 | } | |
1640 | } | |
1da177e4 | 1641 | |
81c3f413 | 1642 | /* Encode as an array of strings the string given with components |
3ad2f3fb | 1643 | * separated @sep. |
81c3f413 | 1644 | */ |
b37ad28b | 1645 | static __be32 nfsd4_encode_components(char sep, char *components, |
2ebbc012 | 1646 | __be32 **pp, int *buflen) |
81c3f413 | 1647 | { |
2ebbc012 AV |
1648 | __be32 *p = *pp; |
1649 | __be32 *countp = p; | |
81c3f413 BF |
1650 | int strlen, count=0; |
1651 | char *str, *end; | |
1652 | ||
1653 | dprintk("nfsd4_encode_components(%s)\n", components); | |
1654 | if ((*buflen -= 4) < 0) | |
1655 | return nfserr_resource; | |
1656 | WRITE32(0); /* We will fill this in with @count later */ | |
1657 | end = str = components; | |
1658 | while (*end) { | |
1659 | for (; *end && (*end != sep); end++) | |
1660 | ; /* Point to end of component */ | |
1661 | strlen = end - str; | |
1662 | if (strlen) { | |
1663 | if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0) | |
1664 | return nfserr_resource; | |
1665 | WRITE32(strlen); | |
1666 | WRITEMEM(str, strlen); | |
1667 | count++; | |
1668 | } | |
1669 | else | |
1670 | end++; | |
1671 | str = end; | |
1672 | } | |
1673 | *pp = p; | |
1674 | p = countp; | |
1675 | WRITE32(count); | |
1676 | return 0; | |
1677 | } | |
1678 | ||
1679 | /* | |
1680 | * encode a location element of a fs_locations structure | |
1681 | */ | |
b37ad28b | 1682 | static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location, |
2ebbc012 | 1683 | __be32 **pp, int *buflen) |
81c3f413 | 1684 | { |
b37ad28b | 1685 | __be32 status; |
2ebbc012 | 1686 | __be32 *p = *pp; |
81c3f413 BF |
1687 | |
1688 | status = nfsd4_encode_components(':', location->hosts, &p, buflen); | |
1689 | if (status) | |
1690 | return status; | |
1691 | status = nfsd4_encode_components('/', location->path, &p, buflen); | |
1692 | if (status) | |
1693 | return status; | |
1694 | *pp = p; | |
1695 | return 0; | |
1696 | } | |
1697 | ||
1698 | /* | |
ed748aac | 1699 | * Encode a path in RFC3530 'pathname4' format |
81c3f413 | 1700 | */ |
ed748aac TM |
1701 | static __be32 nfsd4_encode_path(const struct path *root, |
1702 | const struct path *path, __be32 **pp, int *buflen) | |
81c3f413 | 1703 | { |
ed748aac TM |
1704 | struct path cur = { |
1705 | .mnt = path->mnt, | |
1706 | .dentry = path->dentry, | |
1707 | }; | |
1708 | __be32 *p = *pp; | |
1709 | struct dentry **components = NULL; | |
1710 | unsigned int ncomponents = 0; | |
1711 | __be32 err = nfserr_jukebox; | |
81c3f413 | 1712 | |
ed748aac | 1713 | dprintk("nfsd4_encode_components("); |
81c3f413 | 1714 | |
ed748aac TM |
1715 | path_get(&cur); |
1716 | /* First walk the path up to the nfsd root, and store the | |
1717 | * dentries/path components in an array. | |
1718 | */ | |
1719 | for (;;) { | |
1720 | if (cur.dentry == root->dentry && cur.mnt == root->mnt) | |
1721 | break; | |
1722 | if (cur.dentry == cur.mnt->mnt_root) { | |
1723 | if (follow_up(&cur)) | |
1724 | continue; | |
1725 | goto out_free; | |
1726 | } | |
1727 | if ((ncomponents & 15) == 0) { | |
1728 | struct dentry **new; | |
1729 | new = krealloc(components, | |
1730 | sizeof(*new) * (ncomponents + 16), | |
1731 | GFP_KERNEL); | |
1732 | if (!new) | |
1733 | goto out_free; | |
1734 | components = new; | |
1735 | } | |
1736 | components[ncomponents++] = cur.dentry; | |
1737 | cur.dentry = dget_parent(cur.dentry); | |
1738 | } | |
81c3f413 | 1739 | |
ed748aac TM |
1740 | *buflen -= 4; |
1741 | if (*buflen < 0) | |
1742 | goto out_free; | |
1743 | WRITE32(ncomponents); | |
1744 | ||
1745 | while (ncomponents) { | |
1746 | struct dentry *dentry = components[ncomponents - 1]; | |
1747 | unsigned int len = dentry->d_name.len; | |
1748 | ||
1749 | *buflen -= 4 + (XDR_QUADLEN(len) << 2); | |
1750 | if (*buflen < 0) | |
1751 | goto out_free; | |
1752 | WRITE32(len); | |
1753 | WRITEMEM(dentry->d_name.name, len); | |
1754 | dprintk("/%s", dentry->d_name.name); | |
1755 | dput(dentry); | |
1756 | ncomponents--; | |
81c3f413 | 1757 | } |
ed748aac TM |
1758 | |
1759 | *pp = p; | |
1760 | err = 0; | |
1761 | out_free: | |
1762 | dprintk(")\n"); | |
1763 | while (ncomponents) | |
1764 | dput(components[--ncomponents]); | |
1765 | kfree(components); | |
1766 | path_put(&cur); | |
1767 | return err; | |
1768 | } | |
1769 | ||
1770 | static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp, | |
1771 | const struct path *path, __be32 **pp, int *buflen) | |
1772 | { | |
1773 | struct svc_export *exp_ps; | |
1774 | __be32 res; | |
1775 | ||
1776 | exp_ps = rqst_find_fsidzero_export(rqstp); | |
1777 | if (IS_ERR(exp_ps)) | |
1778 | return nfserrno(PTR_ERR(exp_ps)); | |
1779 | res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen); | |
1780 | exp_put(exp_ps); | |
1781 | return res; | |
81c3f413 BF |
1782 | } |
1783 | ||
1784 | /* | |
1785 | * encode a fs_locations structure | |
1786 | */ | |
b37ad28b | 1787 | static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp, |
81c3f413 | 1788 | struct svc_export *exp, |
2ebbc012 | 1789 | __be32 **pp, int *buflen) |
81c3f413 | 1790 | { |
b37ad28b | 1791 | __be32 status; |
cc45f017 | 1792 | int i; |
2ebbc012 | 1793 | __be32 *p = *pp; |
81c3f413 | 1794 | struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs; |
81c3f413 | 1795 | |
ed748aac | 1796 | status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen); |
81c3f413 BF |
1797 | if (status) |
1798 | return status; | |
1799 | if ((*buflen -= 4) < 0) | |
1800 | return nfserr_resource; | |
1801 | WRITE32(fslocs->locations_count); | |
1802 | for (i=0; i<fslocs->locations_count; i++) { | |
1803 | status = nfsd4_encode_fs_location4(&fslocs->locations[i], | |
1804 | &p, buflen); | |
1805 | if (status) | |
1806 | return status; | |
1807 | } | |
1808 | *pp = p; | |
1809 | return 0; | |
1810 | } | |
1da177e4 | 1811 | |
3d2544b1 BF |
1812 | static u32 nfs4_file_type(umode_t mode) |
1813 | { | |
1814 | switch (mode & S_IFMT) { | |
1815 | case S_IFIFO: return NF4FIFO; | |
1816 | case S_IFCHR: return NF4CHR; | |
1817 | case S_IFDIR: return NF4DIR; | |
1818 | case S_IFBLK: return NF4BLK; | |
1819 | case S_IFLNK: return NF4LNK; | |
1820 | case S_IFREG: return NF4REG; | |
1821 | case S_IFSOCK: return NF4SOCK; | |
1822 | default: return NF4BAD; | |
1823 | }; | |
1824 | } | |
1da177e4 | 1825 | |
b37ad28b | 1826 | static __be32 |
1da177e4 | 1827 | nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group, |
2ebbc012 | 1828 | __be32 **p, int *buflen) |
1da177e4 LT |
1829 | { |
1830 | int status; | |
1831 | ||
1832 | if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4) | |
1833 | return nfserr_resource; | |
1834 | if (whotype != NFS4_ACL_WHO_NAMED) | |
1835 | status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1)); | |
1836 | else if (group) | |
1837 | status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1)); | |
1838 | else | |
1839 | status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1)); | |
1840 | if (status < 0) | |
1841 | return nfserrno(status); | |
1842 | *p = xdr_encode_opaque(*p, NULL, status); | |
1843 | *buflen -= (XDR_QUADLEN(status) << 2) + 4; | |
1844 | BUG_ON(*buflen < 0); | |
1845 | return 0; | |
1846 | } | |
1847 | ||
b37ad28b | 1848 | static inline __be32 |
2ebbc012 | 1849 | nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen) |
1da177e4 LT |
1850 | { |
1851 | return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen); | |
1852 | } | |
1853 | ||
b37ad28b | 1854 | static inline __be32 |
2ebbc012 | 1855 | nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen) |
1da177e4 LT |
1856 | { |
1857 | return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen); | |
1858 | } | |
1859 | ||
b37ad28b | 1860 | static inline __be32 |
1da177e4 | 1861 | nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group, |
2ebbc012 | 1862 | __be32 **p, int *buflen) |
1da177e4 LT |
1863 | { |
1864 | return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen); | |
1865 | } | |
1866 | ||
42ca0993 BF |
1867 | #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \ |
1868 | FATTR4_WORD0_RDATTR_ERROR) | |
1869 | #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID | |
1870 | ||
b37ad28b | 1871 | static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err) |
42ca0993 BF |
1872 | { |
1873 | /* As per referral draft: */ | |
1874 | if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS || | |
1875 | *bmval1 & ~WORD1_ABSENT_FS_ATTRS) { | |
1876 | if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR || | |
1877 | *bmval0 & FATTR4_WORD0_FS_LOCATIONS) | |
1878 | *rdattr_err = NFSERR_MOVED; | |
1879 | else | |
1880 | return nfserr_moved; | |
1881 | } | |
1882 | *bmval0 &= WORD0_ABSENT_FS_ATTRS; | |
1883 | *bmval1 &= WORD1_ABSENT_FS_ATTRS; | |
1884 | return 0; | |
1885 | } | |
1da177e4 LT |
1886 | |
1887 | /* | |
1888 | * Note: @fhp can be NULL; in this case, we might have to compose the filehandle | |
1889 | * ourselves. | |
1890 | * | |
1891 | * @countp is the buffer size in _words_; upon successful return this becomes | |
1892 | * replaced with the number of words written. | |
1893 | */ | |
b37ad28b | 1894 | __be32 |
1da177e4 | 1895 | nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp, |
2ebbc012 | 1896 | struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval, |
406a7ea9 | 1897 | struct svc_rqst *rqstp, int ignore_crossmnt) |
1da177e4 LT |
1898 | { |
1899 | u32 bmval0 = bmval[0]; | |
1900 | u32 bmval1 = bmval[1]; | |
7e705706 | 1901 | u32 bmval2 = bmval[2]; |
1da177e4 LT |
1902 | struct kstat stat; |
1903 | struct svc_fh tempfh; | |
1904 | struct kstatfs statfs; | |
1905 | int buflen = *countp << 2; | |
2ebbc012 | 1906 | __be32 *attrlenp; |
1da177e4 LT |
1907 | u32 dummy; |
1908 | u64 dummy64; | |
42ca0993 | 1909 | u32 rdattr_err = 0; |
2ebbc012 | 1910 | __be32 *p = buffer; |
b37ad28b | 1911 | __be32 status; |
b8dd7b9a | 1912 | int err; |
1da177e4 LT |
1913 | int aclsupport = 0; |
1914 | struct nfs4_acl *acl = NULL; | |
7e705706 AA |
1915 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
1916 | u32 minorversion = resp->cstate.minorversion; | |
ebabe9a9 CH |
1917 | struct path path = { |
1918 | .mnt = exp->ex_path.mnt, | |
1919 | .dentry = dentry, | |
1920 | }; | |
1da177e4 LT |
1921 | |
1922 | BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1); | |
7e705706 AA |
1923 | BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion)); |
1924 | BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion)); | |
1925 | BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion)); | |
1da177e4 | 1926 | |
42ca0993 | 1927 | if (exp->ex_fslocs.migrated) { |
7e705706 | 1928 | BUG_ON(bmval[2]); |
42ca0993 BF |
1929 | status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err); |
1930 | if (status) | |
1931 | goto out; | |
1932 | } | |
1933 | ||
54775491 | 1934 | err = vfs_getattr(exp->ex_path.mnt, dentry, &stat); |
b8dd7b9a | 1935 | if (err) |
1da177e4 | 1936 | goto out_nfserr; |
a16e92ed BF |
1937 | if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL | |
1938 | FATTR4_WORD0_MAXNAME)) || | |
1da177e4 LT |
1939 | (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE | |
1940 | FATTR4_WORD1_SPACE_TOTAL))) { | |
ebabe9a9 | 1941 | err = vfs_statfs(&path, &statfs); |
b8dd7b9a | 1942 | if (err) |
1da177e4 LT |
1943 | goto out_nfserr; |
1944 | } | |
1945 | if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) { | |
1946 | fh_init(&tempfh, NFS4_FHSIZE); | |
1947 | status = fh_compose(&tempfh, exp, dentry, NULL); | |
1948 | if (status) | |
1949 | goto out; | |
1950 | fhp = &tempfh; | |
1951 | } | |
1952 | if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT | |
1953 | | FATTR4_WORD0_SUPPORTED_ATTRS)) { | |
b8dd7b9a AV |
1954 | err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl); |
1955 | aclsupport = (err == 0); | |
1da177e4 | 1956 | if (bmval0 & FATTR4_WORD0_ACL) { |
b8dd7b9a | 1957 | if (err == -EOPNOTSUPP) |
1da177e4 | 1958 | bmval0 &= ~FATTR4_WORD0_ACL; |
b8dd7b9a | 1959 | else if (err == -EINVAL) { |
1da177e4 LT |
1960 | status = nfserr_attrnotsupp; |
1961 | goto out; | |
b8dd7b9a | 1962 | } else if (err != 0) |
1da177e4 LT |
1963 | goto out_nfserr; |
1964 | } | |
1965 | } | |
1da177e4 | 1966 | |
2b44f1ba BH |
1967 | if (bmval2) { |
1968 | if ((buflen -= 16) < 0) | |
1969 | goto out_resource; | |
7e705706 AA |
1970 | WRITE32(3); |
1971 | WRITE32(bmval0); | |
1972 | WRITE32(bmval1); | |
1973 | WRITE32(bmval2); | |
2b44f1ba BH |
1974 | } else if (bmval1) { |
1975 | if ((buflen -= 12) < 0) | |
1976 | goto out_resource; | |
7e705706 AA |
1977 | WRITE32(2); |
1978 | WRITE32(bmval0); | |
1979 | WRITE32(bmval1); | |
1980 | } else { | |
2b44f1ba BH |
1981 | if ((buflen -= 8) < 0) |
1982 | goto out_resource; | |
7e705706 AA |
1983 | WRITE32(1); |
1984 | WRITE32(bmval0); | |
1985 | } | |
1da177e4 LT |
1986 | attrlenp = p++; /* to be backfilled later */ |
1987 | ||
1988 | if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) { | |
7e705706 AA |
1989 | u32 word0 = nfsd_suppattrs0(minorversion); |
1990 | u32 word1 = nfsd_suppattrs1(minorversion); | |
1991 | u32 word2 = nfsd_suppattrs2(minorversion); | |
1992 | ||
42ca0993 BF |
1993 | if (!aclsupport) |
1994 | word0 &= ~FATTR4_WORD0_ACL; | |
7e705706 | 1995 | if (!word2) { |
2b44f1ba BH |
1996 | if ((buflen -= 12) < 0) |
1997 | goto out_resource; | |
7e705706 AA |
1998 | WRITE32(2); |
1999 | WRITE32(word0); | |
2000 | WRITE32(word1); | |
2001 | } else { | |
2b44f1ba BH |
2002 | if ((buflen -= 16) < 0) |
2003 | goto out_resource; | |
7e705706 AA |
2004 | WRITE32(3); |
2005 | WRITE32(word0); | |
2006 | WRITE32(word1); | |
2007 | WRITE32(word2); | |
2008 | } | |
1da177e4 LT |
2009 | } |
2010 | if (bmval0 & FATTR4_WORD0_TYPE) { | |
2011 | if ((buflen -= 4) < 0) | |
2012 | goto out_resource; | |
3d2544b1 | 2013 | dummy = nfs4_file_type(stat.mode); |
1da177e4 LT |
2014 | if (dummy == NF4BAD) |
2015 | goto out_serverfault; | |
2016 | WRITE32(dummy); | |
2017 | } | |
2018 | if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) { | |
2019 | if ((buflen -= 4) < 0) | |
2020 | goto out_resource; | |
49640001 | 2021 | if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) |
e34ac862 | 2022 | WRITE32(NFS4_FH_PERSISTENT); |
49640001 | 2023 | else |
e34ac862 | 2024 | WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME); |
1da177e4 LT |
2025 | } |
2026 | if (bmval0 & FATTR4_WORD0_CHANGE) { | |
1da177e4 LT |
2027 | if ((buflen -= 8) < 0) |
2028 | goto out_resource; | |
c654b8a9 | 2029 | write_change(&p, &stat, dentry->d_inode); |
1da177e4 LT |
2030 | } |
2031 | if (bmval0 & FATTR4_WORD0_SIZE) { | |
2032 | if ((buflen -= 8) < 0) | |
2033 | goto out_resource; | |
2034 | WRITE64(stat.size); | |
2035 | } | |
2036 | if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) { | |
2037 | if ((buflen -= 4) < 0) | |
2038 | goto out_resource; | |
2039 | WRITE32(1); | |
2040 | } | |
2041 | if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) { | |
2042 | if ((buflen -= 4) < 0) | |
2043 | goto out_resource; | |
2044 | WRITE32(1); | |
2045 | } | |
2046 | if (bmval0 & FATTR4_WORD0_NAMED_ATTR) { | |
2047 | if ((buflen -= 4) < 0) | |
2048 | goto out_resource; | |
2049 | WRITE32(0); | |
2050 | } | |
2051 | if (bmval0 & FATTR4_WORD0_FSID) { | |
2052 | if ((buflen -= 16) < 0) | |
2053 | goto out_resource; | |
42ca0993 BF |
2054 | if (exp->ex_fslocs.migrated) { |
2055 | WRITE64(NFS4_REFERRAL_FSID_MAJOR); | |
2056 | WRITE64(NFS4_REFERRAL_FSID_MINOR); | |
af6a4e28 N |
2057 | } else switch(fsid_source(fhp)) { |
2058 | case FSIDSOURCE_FSID: | |
1da177e4 LT |
2059 | WRITE64((u64)exp->ex_fsid); |
2060 | WRITE64((u64)0); | |
af6a4e28 N |
2061 | break; |
2062 | case FSIDSOURCE_DEV: | |
1da177e4 LT |
2063 | WRITE32(0); |
2064 | WRITE32(MAJOR(stat.dev)); | |
2065 | WRITE32(0); | |
2066 | WRITE32(MINOR(stat.dev)); | |
af6a4e28 N |
2067 | break; |
2068 | case FSIDSOURCE_UUID: | |
2069 | WRITEMEM(exp->ex_uuid, 16); | |
2070 | break; | |
1da177e4 LT |
2071 | } |
2072 | } | |
2073 | if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) { | |
2074 | if ((buflen -= 4) < 0) | |
2075 | goto out_resource; | |
2076 | WRITE32(0); | |
2077 | } | |
2078 | if (bmval0 & FATTR4_WORD0_LEASE_TIME) { | |
2079 | if ((buflen -= 4) < 0) | |
2080 | goto out_resource; | |
cf07d2ea | 2081 | WRITE32(nfsd4_lease); |
1da177e4 LT |
2082 | } |
2083 | if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) { | |
2084 | if ((buflen -= 4) < 0) | |
2085 | goto out_resource; | |
42ca0993 | 2086 | WRITE32(rdattr_err); |
1da177e4 LT |
2087 | } |
2088 | if (bmval0 & FATTR4_WORD0_ACL) { | |
2089 | struct nfs4_ace *ace; | |
1da177e4 LT |
2090 | |
2091 | if (acl == NULL) { | |
2092 | if ((buflen -= 4) < 0) | |
2093 | goto out_resource; | |
2094 | ||
2095 | WRITE32(0); | |
2096 | goto out_acl; | |
2097 | } | |
2098 | if ((buflen -= 4) < 0) | |
2099 | goto out_resource; | |
2100 | WRITE32(acl->naces); | |
2101 | ||
28e05dd8 | 2102 | for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) { |
1da177e4 LT |
2103 | if ((buflen -= 4*3) < 0) |
2104 | goto out_resource; | |
2105 | WRITE32(ace->type); | |
2106 | WRITE32(ace->flag); | |
2107 | WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL); | |
2108 | status = nfsd4_encode_aclname(rqstp, ace->whotype, | |
2109 | ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP, | |
2110 | &p, &buflen); | |
2111 | if (status == nfserr_resource) | |
2112 | goto out_resource; | |
2113 | if (status) | |
2114 | goto out; | |
2115 | } | |
2116 | } | |
2117 | out_acl: | |
2118 | if (bmval0 & FATTR4_WORD0_ACLSUPPORT) { | |
2119 | if ((buflen -= 4) < 0) | |
2120 | goto out_resource; | |
2121 | WRITE32(aclsupport ? | |
2122 | ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0); | |
2123 | } | |
2124 | if (bmval0 & FATTR4_WORD0_CANSETTIME) { | |
2125 | if ((buflen -= 4) < 0) | |
2126 | goto out_resource; | |
2127 | WRITE32(1); | |
2128 | } | |
2129 | if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) { | |
2130 | if ((buflen -= 4) < 0) | |
2131 | goto out_resource; | |
2132 | WRITE32(1); | |
2133 | } | |
2134 | if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) { | |
2135 | if ((buflen -= 4) < 0) | |
2136 | goto out_resource; | |
2137 | WRITE32(1); | |
2138 | } | |
2139 | if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) { | |
2140 | if ((buflen -= 4) < 0) | |
2141 | goto out_resource; | |
2142 | WRITE32(1); | |
2143 | } | |
2144 | if (bmval0 & FATTR4_WORD0_FILEHANDLE) { | |
2145 | buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4; | |
2146 | if (buflen < 0) | |
2147 | goto out_resource; | |
2148 | WRITE32(fhp->fh_handle.fh_size); | |
2149 | WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size); | |
2150 | } | |
2151 | if (bmval0 & FATTR4_WORD0_FILEID) { | |
2152 | if ((buflen -= 8) < 0) | |
2153 | goto out_resource; | |
40ee5dc6 | 2154 | WRITE64(stat.ino); |
1da177e4 LT |
2155 | } |
2156 | if (bmval0 & FATTR4_WORD0_FILES_AVAIL) { | |
2157 | if ((buflen -= 8) < 0) | |
2158 | goto out_resource; | |
2159 | WRITE64((u64) statfs.f_ffree); | |
2160 | } | |
2161 | if (bmval0 & FATTR4_WORD0_FILES_FREE) { | |
2162 | if ((buflen -= 8) < 0) | |
2163 | goto out_resource; | |
2164 | WRITE64((u64) statfs.f_ffree); | |
2165 | } | |
2166 | if (bmval0 & FATTR4_WORD0_FILES_TOTAL) { | |
2167 | if ((buflen -= 8) < 0) | |
2168 | goto out_resource; | |
2169 | WRITE64((u64) statfs.f_files); | |
2170 | } | |
81c3f413 BF |
2171 | if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) { |
2172 | status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen); | |
2173 | if (status == nfserr_resource) | |
2174 | goto out_resource; | |
2175 | if (status) | |
2176 | goto out; | |
2177 | } | |
1da177e4 LT |
2178 | if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) { |
2179 | if ((buflen -= 4) < 0) | |
2180 | goto out_resource; | |
2181 | WRITE32(1); | |
2182 | } | |
2183 | if (bmval0 & FATTR4_WORD0_MAXFILESIZE) { | |
2184 | if ((buflen -= 8) < 0) | |
2185 | goto out_resource; | |
2186 | WRITE64(~(u64)0); | |
2187 | } | |
2188 | if (bmval0 & FATTR4_WORD0_MAXLINK) { | |
2189 | if ((buflen -= 4) < 0) | |
2190 | goto out_resource; | |
2191 | WRITE32(255); | |
2192 | } | |
2193 | if (bmval0 & FATTR4_WORD0_MAXNAME) { | |
2194 | if ((buflen -= 4) < 0) | |
2195 | goto out_resource; | |
a16e92ed | 2196 | WRITE32(statfs.f_namelen); |
1da177e4 LT |
2197 | } |
2198 | if (bmval0 & FATTR4_WORD0_MAXREAD) { | |
2199 | if ((buflen -= 8) < 0) | |
2200 | goto out_resource; | |
7adae489 | 2201 | WRITE64((u64) svc_max_payload(rqstp)); |
1da177e4 LT |
2202 | } |
2203 | if (bmval0 & FATTR4_WORD0_MAXWRITE) { | |
2204 | if ((buflen -= 8) < 0) | |
2205 | goto out_resource; | |
7adae489 | 2206 | WRITE64((u64) svc_max_payload(rqstp)); |
1da177e4 LT |
2207 | } |
2208 | if (bmval1 & FATTR4_WORD1_MODE) { | |
2209 | if ((buflen -= 4) < 0) | |
2210 | goto out_resource; | |
2211 | WRITE32(stat.mode & S_IALLUGO); | |
2212 | } | |
2213 | if (bmval1 & FATTR4_WORD1_NO_TRUNC) { | |
2214 | if ((buflen -= 4) < 0) | |
2215 | goto out_resource; | |
2216 | WRITE32(1); | |
2217 | } | |
2218 | if (bmval1 & FATTR4_WORD1_NUMLINKS) { | |
2219 | if ((buflen -= 4) < 0) | |
2220 | goto out_resource; | |
2221 | WRITE32(stat.nlink); | |
2222 | } | |
2223 | if (bmval1 & FATTR4_WORD1_OWNER) { | |
2224 | status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen); | |
2225 | if (status == nfserr_resource) | |
2226 | goto out_resource; | |
2227 | if (status) | |
2228 | goto out; | |
2229 | } | |
2230 | if (bmval1 & FATTR4_WORD1_OWNER_GROUP) { | |
2231 | status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen); | |
2232 | if (status == nfserr_resource) | |
2233 | goto out_resource; | |
2234 | if (status) | |
2235 | goto out; | |
2236 | } | |
2237 | if (bmval1 & FATTR4_WORD1_RAWDEV) { | |
2238 | if ((buflen -= 8) < 0) | |
2239 | goto out_resource; | |
2240 | WRITE32((u32) MAJOR(stat.rdev)); | |
2241 | WRITE32((u32) MINOR(stat.rdev)); | |
2242 | } | |
2243 | if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) { | |
2244 | if ((buflen -= 8) < 0) | |
2245 | goto out_resource; | |
2246 | dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize; | |
2247 | WRITE64(dummy64); | |
2248 | } | |
2249 | if (bmval1 & FATTR4_WORD1_SPACE_FREE) { | |
2250 | if ((buflen -= 8) < 0) | |
2251 | goto out_resource; | |
2252 | dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize; | |
2253 | WRITE64(dummy64); | |
2254 | } | |
2255 | if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) { | |
2256 | if ((buflen -= 8) < 0) | |
2257 | goto out_resource; | |
2258 | dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize; | |
2259 | WRITE64(dummy64); | |
2260 | } | |
2261 | if (bmval1 & FATTR4_WORD1_SPACE_USED) { | |
2262 | if ((buflen -= 8) < 0) | |
2263 | goto out_resource; | |
2264 | dummy64 = (u64)stat.blocks << 9; | |
2265 | WRITE64(dummy64); | |
2266 | } | |
2267 | if (bmval1 & FATTR4_WORD1_TIME_ACCESS) { | |
2268 | if ((buflen -= 12) < 0) | |
2269 | goto out_resource; | |
2270 | WRITE32(0); | |
2271 | WRITE32(stat.atime.tv_sec); | |
2272 | WRITE32(stat.atime.tv_nsec); | |
2273 | } | |
2274 | if (bmval1 & FATTR4_WORD1_TIME_DELTA) { | |
2275 | if ((buflen -= 12) < 0) | |
2276 | goto out_resource; | |
2277 | WRITE32(0); | |
2278 | WRITE32(1); | |
2279 | WRITE32(0); | |
2280 | } | |
2281 | if (bmval1 & FATTR4_WORD1_TIME_METADATA) { | |
2282 | if ((buflen -= 12) < 0) | |
2283 | goto out_resource; | |
2284 | WRITE32(0); | |
2285 | WRITE32(stat.ctime.tv_sec); | |
2286 | WRITE32(stat.ctime.tv_nsec); | |
2287 | } | |
2288 | if (bmval1 & FATTR4_WORD1_TIME_MODIFY) { | |
2289 | if ((buflen -= 12) < 0) | |
2290 | goto out_resource; | |
2291 | WRITE32(0); | |
2292 | WRITE32(stat.mtime.tv_sec); | |
2293 | WRITE32(stat.mtime.tv_nsec); | |
2294 | } | |
2295 | if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) { | |
1da177e4 LT |
2296 | if ((buflen -= 8) < 0) |
2297 | goto out_resource; | |
406a7ea9 FF |
2298 | /* |
2299 | * Get parent's attributes if not ignoring crossmount | |
2300 | * and this is the root of a cross-mounted filesystem. | |
2301 | */ | |
2302 | if (ignore_crossmnt == 0 && | |
462d6057 AV |
2303 | dentry == exp->ex_path.mnt->mnt_root) { |
2304 | struct path path = exp->ex_path; | |
2305 | path_get(&path); | |
2306 | while (follow_up(&path)) { | |
2307 | if (path.dentry != path.mnt->mnt_root) | |
2308 | break; | |
2309 | } | |
2310 | err = vfs_getattr(path.mnt, path.dentry, &stat); | |
2311 | path_put(&path); | |
40ee5dc6 PS |
2312 | if (err) |
2313 | goto out_nfserr; | |
2314 | } | |
2315 | WRITE64(stat.ino); | |
1da177e4 | 2316 | } |
8c18f205 BH |
2317 | if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) { |
2318 | WRITE32(3); | |
2319 | WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0); | |
2320 | WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1); | |
2321 | WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2); | |
2322 | } | |
7e705706 | 2323 | |
1da177e4 LT |
2324 | *attrlenp = htonl((char *)p - (char *)attrlenp - 4); |
2325 | *countp = p - buffer; | |
2326 | status = nfs_ok; | |
2327 | ||
2328 | out: | |
28e05dd8 | 2329 | kfree(acl); |
1da177e4 LT |
2330 | if (fhp == &tempfh) |
2331 | fh_put(&tempfh); | |
2332 | return status; | |
2333 | out_nfserr: | |
b8dd7b9a | 2334 | status = nfserrno(err); |
1da177e4 LT |
2335 | goto out; |
2336 | out_resource: | |
2337 | *countp = 0; | |
2338 | status = nfserr_resource; | |
2339 | goto out; | |
2340 | out_serverfault: | |
2341 | status = nfserr_serverfault; | |
2342 | goto out; | |
2343 | } | |
2344 | ||
c0ce6ec8 BF |
2345 | static inline int attributes_need_mount(u32 *bmval) |
2346 | { | |
2347 | if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME)) | |
2348 | return 1; | |
2349 | if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID) | |
2350 | return 1; | |
2351 | return 0; | |
2352 | } | |
2353 | ||
b37ad28b | 2354 | static __be32 |
1da177e4 | 2355 | nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd, |
2ebbc012 | 2356 | const char *name, int namlen, __be32 *p, int *buflen) |
1da177e4 LT |
2357 | { |
2358 | struct svc_export *exp = cd->rd_fhp->fh_export; | |
2359 | struct dentry *dentry; | |
b37ad28b | 2360 | __be32 nfserr; |
406a7ea9 | 2361 | int ignore_crossmnt = 0; |
1da177e4 LT |
2362 | |
2363 | dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen); | |
2364 | if (IS_ERR(dentry)) | |
2365 | return nfserrno(PTR_ERR(dentry)); | |
b2c0cea6 BF |
2366 | if (!dentry->d_inode) { |
2367 | /* | |
2368 | * nfsd_buffered_readdir drops the i_mutex between | |
2369 | * readdir and calling this callback, leaving a window | |
2370 | * where this directory entry could have gone away. | |
2371 | */ | |
2372 | dput(dentry); | |
2373 | return nfserr_noent; | |
2374 | } | |
1da177e4 LT |
2375 | |
2376 | exp_get(exp); | |
406a7ea9 FF |
2377 | /* |
2378 | * In the case of a mountpoint, the client may be asking for | |
2379 | * attributes that are only properties of the underlying filesystem | |
2380 | * as opposed to the cross-mounted file system. In such a case, | |
2381 | * we will not follow the cross mount and will fill the attribtutes | |
2382 | * directly from the mountpoint dentry. | |
2383 | */ | |
3227fa41 | 2384 | if (nfsd_mountpoint(dentry, exp)) { |
021d3a72 BF |
2385 | int err; |
2386 | ||
3227fa41 BF |
2387 | if (!(exp->ex_flags & NFSEXP_V4ROOT) |
2388 | && !attributes_need_mount(cd->rd_bmval)) { | |
2389 | ignore_crossmnt = 1; | |
2390 | goto out_encode; | |
2391 | } | |
dcb488a3 AA |
2392 | /* |
2393 | * Why the heck aren't we just using nfsd_lookup?? | |
2394 | * Different "."/".." handling? Something else? | |
2395 | * At least, add a comment here to explain.... | |
2396 | */ | |
021d3a72 BF |
2397 | err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp); |
2398 | if (err) { | |
2399 | nfserr = nfserrno(err); | |
1da177e4 LT |
2400 | goto out_put; |
2401 | } | |
dcb488a3 AA |
2402 | nfserr = check_nfsd_access(exp, cd->rd_rqstp); |
2403 | if (nfserr) | |
2404 | goto out_put; | |
1da177e4 LT |
2405 | |
2406 | } | |
3227fa41 | 2407 | out_encode: |
1da177e4 | 2408 | nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval, |
406a7ea9 | 2409 | cd->rd_rqstp, ignore_crossmnt); |
1da177e4 LT |
2410 | out_put: |
2411 | dput(dentry); | |
2412 | exp_put(exp); | |
2413 | return nfserr; | |
2414 | } | |
2415 | ||
2ebbc012 | 2416 | static __be32 * |
b37ad28b | 2417 | nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr) |
1da177e4 | 2418 | { |
2ebbc012 | 2419 | __be32 *attrlenp; |
1da177e4 LT |
2420 | |
2421 | if (buflen < 6) | |
2422 | return NULL; | |
2423 | *p++ = htonl(2); | |
2424 | *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */ | |
2425 | *p++ = htonl(0); /* bmval1 */ | |
2426 | ||
2427 | attrlenp = p++; | |
2428 | *p++ = nfserr; /* no htonl */ | |
2429 | *attrlenp = htonl((char *)p - (char *)attrlenp - 4); | |
2430 | return p; | |
2431 | } | |
2432 | ||
2433 | static int | |
a0ad13ef N |
2434 | nfsd4_encode_dirent(void *ccdv, const char *name, int namlen, |
2435 | loff_t offset, u64 ino, unsigned int d_type) | |
1da177e4 | 2436 | { |
a0ad13ef | 2437 | struct readdir_cd *ccd = ccdv; |
1da177e4 LT |
2438 | struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common); |
2439 | int buflen; | |
2ebbc012 | 2440 | __be32 *p = cd->buffer; |
b2c0cea6 | 2441 | __be32 *cookiep; |
b37ad28b | 2442 | __be32 nfserr = nfserr_toosmall; |
1da177e4 LT |
2443 | |
2444 | /* In nfsv4, "." and ".." never make it onto the wire.. */ | |
2445 | if (name && isdotent(name, namlen)) { | |
2446 | cd->common.err = nfs_ok; | |
2447 | return 0; | |
2448 | } | |
2449 | ||
2450 | if (cd->offset) | |
2451 | xdr_encode_hyper(cd->offset, (u64) offset); | |
2452 | ||
2453 | buflen = cd->buflen - 4 - XDR_QUADLEN(namlen); | |
2454 | if (buflen < 0) | |
2455 | goto fail; | |
2456 | ||
2457 | *p++ = xdr_one; /* mark entry present */ | |
b2c0cea6 | 2458 | cookiep = p; |
1da177e4 LT |
2459 | p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */ |
2460 | p = xdr_encode_array(p, name, namlen); /* name length & name */ | |
2461 | ||
2462 | nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen); | |
2463 | switch (nfserr) { | |
2464 | case nfs_ok: | |
2465 | p += buflen; | |
2466 | break; | |
2467 | case nfserr_resource: | |
2468 | nfserr = nfserr_toosmall; | |
2469 | goto fail; | |
b2c0cea6 BF |
2470 | case nfserr_noent: |
2471 | goto skip_entry; | |
1da177e4 LT |
2472 | default: |
2473 | /* | |
2474 | * If the client requested the RDATTR_ERROR attribute, | |
2475 | * we stuff the error code into this attribute | |
2476 | * and continue. If this attribute was not requested, | |
2477 | * then in accordance with the spec, we fail the | |
2478 | * entire READDIR operation(!) | |
2479 | */ | |
2480 | if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)) | |
2481 | goto fail; | |
1da177e4 | 2482 | p = nfsd4_encode_rdattr_error(p, buflen, nfserr); |
34081efc FI |
2483 | if (p == NULL) { |
2484 | nfserr = nfserr_toosmall; | |
1da177e4 | 2485 | goto fail; |
34081efc | 2486 | } |
1da177e4 LT |
2487 | } |
2488 | cd->buflen -= (p - cd->buffer); | |
2489 | cd->buffer = p; | |
b2c0cea6 BF |
2490 | cd->offset = cookiep; |
2491 | skip_entry: | |
1da177e4 LT |
2492 | cd->common.err = nfs_ok; |
2493 | return 0; | |
2494 | fail: | |
2495 | cd->common.err = nfserr; | |
2496 | return -EINVAL; | |
2497 | } | |
2498 | ||
e2f282b9 BH |
2499 | static void |
2500 | nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid) | |
2501 | { | |
bc749ca4 | 2502 | __be32 *p; |
e2f282b9 BH |
2503 | |
2504 | RESERVE_SPACE(sizeof(stateid_t)); | |
2505 | WRITE32(sid->si_generation); | |
2506 | WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t)); | |
2507 | ADJUST_ARGS(); | |
2508 | } | |
2509 | ||
695e12f8 | 2510 | static __be32 |
b37ad28b | 2511 | nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access) |
1da177e4 | 2512 | { |
bc749ca4 | 2513 | __be32 *p; |
1da177e4 LT |
2514 | |
2515 | if (!nfserr) { | |
2516 | RESERVE_SPACE(8); | |
2517 | WRITE32(access->ac_supported); | |
2518 | WRITE32(access->ac_resp_access); | |
2519 | ADJUST_ARGS(); | |
2520 | } | |
695e12f8 | 2521 | return nfserr; |
1da177e4 LT |
2522 | } |
2523 | ||
1d1bc8f2 BF |
2524 | static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts) |
2525 | { | |
2526 | __be32 *p; | |
2527 | ||
2528 | if (!nfserr) { | |
2529 | RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8); | |
2530 | WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN); | |
2531 | WRITE32(bcts->dir); | |
2532 | /* XXX: ? */ | |
2533 | WRITE32(0); | |
2534 | ADJUST_ARGS(); | |
2535 | } | |
2536 | return nfserr; | |
2537 | } | |
2538 | ||
695e12f8 | 2539 | static __be32 |
b37ad28b | 2540 | nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close) |
1da177e4 LT |
2541 | { |
2542 | ENCODE_SEQID_OP_HEAD; | |
2543 | ||
e2f282b9 BH |
2544 | if (!nfserr) |
2545 | nfsd4_encode_stateid(resp, &close->cl_stateid); | |
2546 | ||
f3e42237 | 2547 | encode_seqid_op_tail(resp, save, nfserr); |
695e12f8 | 2548 | return nfserr; |
1da177e4 LT |
2549 | } |
2550 | ||
2551 | ||
695e12f8 | 2552 | static __be32 |
b37ad28b | 2553 | nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit) |
1da177e4 | 2554 | { |
bc749ca4 | 2555 | __be32 *p; |
1da177e4 LT |
2556 | |
2557 | if (!nfserr) { | |
2558 | RESERVE_SPACE(8); | |
2559 | WRITEMEM(commit->co_verf.data, 8); | |
2560 | ADJUST_ARGS(); | |
2561 | } | |
695e12f8 | 2562 | return nfserr; |
1da177e4 LT |
2563 | } |
2564 | ||
695e12f8 | 2565 | static __be32 |
b37ad28b | 2566 | nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create) |
1da177e4 | 2567 | { |
bc749ca4 | 2568 | __be32 *p; |
1da177e4 LT |
2569 | |
2570 | if (!nfserr) { | |
2571 | RESERVE_SPACE(32); | |
c654b8a9 | 2572 | write_cinfo(&p, &create->cr_cinfo); |
1da177e4 LT |
2573 | WRITE32(2); |
2574 | WRITE32(create->cr_bmval[0]); | |
2575 | WRITE32(create->cr_bmval[1]); | |
2576 | ADJUST_ARGS(); | |
2577 | } | |
695e12f8 | 2578 | return nfserr; |
1da177e4 LT |
2579 | } |
2580 | ||
b37ad28b AV |
2581 | static __be32 |
2582 | nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr) | |
1da177e4 LT |
2583 | { |
2584 | struct svc_fh *fhp = getattr->ga_fhp; | |
2585 | int buflen; | |
2586 | ||
2587 | if (nfserr) | |
2588 | return nfserr; | |
2589 | ||
2590 | buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2); | |
2591 | nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry, | |
2592 | resp->p, &buflen, getattr->ga_bmval, | |
406a7ea9 | 2593 | resp->rqstp, 0); |
1da177e4 LT |
2594 | if (!nfserr) |
2595 | resp->p += buflen; | |
2596 | return nfserr; | |
2597 | } | |
2598 | ||
695e12f8 BH |
2599 | static __be32 |
2600 | nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp) | |
1da177e4 | 2601 | { |
695e12f8 | 2602 | struct svc_fh *fhp = *fhpp; |
1da177e4 | 2603 | unsigned int len; |
bc749ca4 | 2604 | __be32 *p; |
1da177e4 LT |
2605 | |
2606 | if (!nfserr) { | |
2607 | len = fhp->fh_handle.fh_size; | |
2608 | RESERVE_SPACE(len + 4); | |
2609 | WRITE32(len); | |
2610 | WRITEMEM(&fhp->fh_handle.fh_base, len); | |
2611 | ADJUST_ARGS(); | |
2612 | } | |
695e12f8 | 2613 | return nfserr; |
1da177e4 LT |
2614 | } |
2615 | ||
2616 | /* | |
2617 | * Including all fields other than the name, a LOCK4denied structure requires | |
2618 | * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes. | |
2619 | */ | |
2620 | static void | |
2621 | nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld) | |
2622 | { | |
7c13f344 | 2623 | struct xdr_netobj *conf = &ld->ld_owner; |
bc749ca4 | 2624 | __be32 *p; |
1da177e4 | 2625 | |
7c13f344 | 2626 | RESERVE_SPACE(32 + XDR_LEN(conf->len)); |
1da177e4 LT |
2627 | WRITE64(ld->ld_start); |
2628 | WRITE64(ld->ld_length); | |
2629 | WRITE32(ld->ld_type); | |
7c13f344 | 2630 | if (conf->len) { |
1da177e4 | 2631 | WRITEMEM(&ld->ld_clientid, 8); |
7c13f344 BF |
2632 | WRITE32(conf->len); |
2633 | WRITEMEM(conf->data, conf->len); | |
2634 | kfree(conf->data); | |
1da177e4 LT |
2635 | } else { /* non - nfsv4 lock in conflict, no clientid nor owner */ |
2636 | WRITE64((u64)0); /* clientid */ | |
2637 | WRITE32(0); /* length of owner name */ | |
2638 | } | |
2639 | ADJUST_ARGS(); | |
2640 | } | |
2641 | ||
695e12f8 | 2642 | static __be32 |
b37ad28b | 2643 | nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock) |
1da177e4 | 2644 | { |
1da177e4 LT |
2645 | ENCODE_SEQID_OP_HEAD; |
2646 | ||
e2f282b9 BH |
2647 | if (!nfserr) |
2648 | nfsd4_encode_stateid(resp, &lock->lk_resp_stateid); | |
2649 | else if (nfserr == nfserr_denied) | |
1da177e4 LT |
2650 | nfsd4_encode_lock_denied(resp, &lock->lk_denied); |
2651 | ||
f3e42237 | 2652 | encode_seqid_op_tail(resp, save, nfserr); |
695e12f8 | 2653 | return nfserr; |
1da177e4 LT |
2654 | } |
2655 | ||
695e12f8 | 2656 | static __be32 |
b37ad28b | 2657 | nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt) |
1da177e4 LT |
2658 | { |
2659 | if (nfserr == nfserr_denied) | |
2660 | nfsd4_encode_lock_denied(resp, &lockt->lt_denied); | |
695e12f8 | 2661 | return nfserr; |
1da177e4 LT |
2662 | } |
2663 | ||
695e12f8 | 2664 | static __be32 |
b37ad28b | 2665 | nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku) |
1da177e4 LT |
2666 | { |
2667 | ENCODE_SEQID_OP_HEAD; | |
2668 | ||
e2f282b9 BH |
2669 | if (!nfserr) |
2670 | nfsd4_encode_stateid(resp, &locku->lu_stateid); | |
2671 | ||
f3e42237 | 2672 | encode_seqid_op_tail(resp, save, nfserr); |
695e12f8 | 2673 | return nfserr; |
1da177e4 LT |
2674 | } |
2675 | ||
2676 | ||
695e12f8 | 2677 | static __be32 |
b37ad28b | 2678 | nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link) |
1da177e4 | 2679 | { |
bc749ca4 | 2680 | __be32 *p; |
1da177e4 LT |
2681 | |
2682 | if (!nfserr) { | |
2683 | RESERVE_SPACE(20); | |
c654b8a9 | 2684 | write_cinfo(&p, &link->li_cinfo); |
1da177e4 LT |
2685 | ADJUST_ARGS(); |
2686 | } | |
695e12f8 | 2687 | return nfserr; |
1da177e4 LT |
2688 | } |
2689 | ||
2690 | ||
695e12f8 | 2691 | static __be32 |
b37ad28b | 2692 | nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open) |
1da177e4 | 2693 | { |
bc749ca4 | 2694 | __be32 *p; |
1da177e4 LT |
2695 | ENCODE_SEQID_OP_HEAD; |
2696 | ||
2697 | if (nfserr) | |
2698 | goto out; | |
2699 | ||
e2f282b9 BH |
2700 | nfsd4_encode_stateid(resp, &open->op_stateid); |
2701 | RESERVE_SPACE(40); | |
c654b8a9 | 2702 | write_cinfo(&p, &open->op_cinfo); |
1da177e4 LT |
2703 | WRITE32(open->op_rflags); |
2704 | WRITE32(2); | |
2705 | WRITE32(open->op_bmval[0]); | |
2706 | WRITE32(open->op_bmval[1]); | |
2707 | WRITE32(open->op_delegate_type); | |
2708 | ADJUST_ARGS(); | |
2709 | ||
2710 | switch (open->op_delegate_type) { | |
2711 | case NFS4_OPEN_DELEGATE_NONE: | |
2712 | break; | |
2713 | case NFS4_OPEN_DELEGATE_READ: | |
e2f282b9 BH |
2714 | nfsd4_encode_stateid(resp, &open->op_delegate_stateid); |
2715 | RESERVE_SPACE(20); | |
7b190fec | 2716 | WRITE32(open->op_recall); |
1da177e4 LT |
2717 | |
2718 | /* | |
2719 | * TODO: ACE's in delegations | |
2720 | */ | |
2721 | WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE); | |
2722 | WRITE32(0); | |
2723 | WRITE32(0); | |
2724 | WRITE32(0); /* XXX: is NULL principal ok? */ | |
2725 | ADJUST_ARGS(); | |
2726 | break; | |
2727 | case NFS4_OPEN_DELEGATE_WRITE: | |
e2f282b9 BH |
2728 | nfsd4_encode_stateid(resp, &open->op_delegate_stateid); |
2729 | RESERVE_SPACE(32); | |
1da177e4 LT |
2730 | WRITE32(0); |
2731 | ||
2732 | /* | |
2733 | * TODO: space_limit's in delegations | |
2734 | */ | |
2735 | WRITE32(NFS4_LIMIT_SIZE); | |
2736 | WRITE32(~(u32)0); | |
2737 | WRITE32(~(u32)0); | |
2738 | ||
2739 | /* | |
2740 | * TODO: ACE's in delegations | |
2741 | */ | |
2742 | WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE); | |
2743 | WRITE32(0); | |
2744 | WRITE32(0); | |
2745 | WRITE32(0); /* XXX: is NULL principal ok? */ | |
2746 | ADJUST_ARGS(); | |
2747 | break; | |
2748 | default: | |
2749 | BUG(); | |
2750 | } | |
2751 | /* XXX save filehandle here */ | |
2752 | out: | |
f3e42237 | 2753 | encode_seqid_op_tail(resp, save, nfserr); |
695e12f8 | 2754 | return nfserr; |
1da177e4 LT |
2755 | } |
2756 | ||
695e12f8 | 2757 | static __be32 |
b37ad28b | 2758 | nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc) |
1da177e4 LT |
2759 | { |
2760 | ENCODE_SEQID_OP_HEAD; | |
e2f282b9 BH |
2761 | |
2762 | if (!nfserr) | |
2763 | nfsd4_encode_stateid(resp, &oc->oc_resp_stateid); | |
1da177e4 | 2764 | |
f3e42237 | 2765 | encode_seqid_op_tail(resp, save, nfserr); |
695e12f8 | 2766 | return nfserr; |
1da177e4 LT |
2767 | } |
2768 | ||
695e12f8 | 2769 | static __be32 |
b37ad28b | 2770 | nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od) |
1da177e4 LT |
2771 | { |
2772 | ENCODE_SEQID_OP_HEAD; | |
e2f282b9 BH |
2773 | |
2774 | if (!nfserr) | |
2775 | nfsd4_encode_stateid(resp, &od->od_stateid); | |
1da177e4 | 2776 | |
f3e42237 | 2777 | encode_seqid_op_tail(resp, save, nfserr); |
695e12f8 | 2778 | return nfserr; |
1da177e4 LT |
2779 | } |
2780 | ||
b37ad28b AV |
2781 | static __be32 |
2782 | nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr, | |
44524359 | 2783 | struct nfsd4_read *read) |
1da177e4 LT |
2784 | { |
2785 | u32 eof; | |
2786 | int v, pn; | |
2787 | unsigned long maxcount; | |
2788 | long len; | |
bc749ca4 | 2789 | __be32 *p; |
1da177e4 LT |
2790 | |
2791 | if (nfserr) | |
2792 | return nfserr; | |
2793 | if (resp->xbuf->page_len) | |
2794 | return nfserr_resource; | |
2795 | ||
2796 | RESERVE_SPACE(8); /* eof flag and byte count */ | |
2797 | ||
7adae489 | 2798 | maxcount = svc_max_payload(resp->rqstp); |
1da177e4 LT |
2799 | if (maxcount > read->rd_length) |
2800 | maxcount = read->rd_length; | |
2801 | ||
2802 | len = maxcount; | |
2803 | v = 0; | |
2804 | while (len > 0) { | |
44524359 | 2805 | pn = resp->rqstp->rq_resused++; |
3cc03b16 | 2806 | resp->rqstp->rq_vec[v].iov_base = |
44524359 | 2807 | page_address(resp->rqstp->rq_respages[pn]); |
3cc03b16 | 2808 | resp->rqstp->rq_vec[v].iov_len = |
44524359 | 2809 | len < PAGE_SIZE ? len : PAGE_SIZE; |
1da177e4 LT |
2810 | v++; |
2811 | len -= PAGE_SIZE; | |
2812 | } | |
2813 | read->rd_vlen = v; | |
2814 | ||
039a87ca | 2815 | nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp, |
3cc03b16 | 2816 | read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen, |
1da177e4 LT |
2817 | &maxcount); |
2818 | ||
1da177e4 LT |
2819 | if (nfserr) |
2820 | return nfserr; | |
44524359 N |
2821 | eof = (read->rd_offset + maxcount >= |
2822 | read->rd_fhp->fh_dentry->d_inode->i_size); | |
1da177e4 LT |
2823 | |
2824 | WRITE32(eof); | |
2825 | WRITE32(maxcount); | |
2826 | ADJUST_ARGS(); | |
6ed6decc N |
2827 | resp->xbuf->head[0].iov_len = (char*)p |
2828 | - (char*)resp->xbuf->head[0].iov_base; | |
1da177e4 LT |
2829 | resp->xbuf->page_len = maxcount; |
2830 | ||
6ed6decc | 2831 | /* Use rest of head for padding and remaining ops: */ |
6ed6decc | 2832 | resp->xbuf->tail[0].iov_base = p; |
1da177e4 | 2833 | resp->xbuf->tail[0].iov_len = 0; |
1da177e4 | 2834 | if (maxcount&3) { |
6ed6decc N |
2835 | RESERVE_SPACE(4); |
2836 | WRITE32(0); | |
1da177e4 LT |
2837 | resp->xbuf->tail[0].iov_base += maxcount&3; |
2838 | resp->xbuf->tail[0].iov_len = 4 - (maxcount&3); | |
6ed6decc | 2839 | ADJUST_ARGS(); |
1da177e4 LT |
2840 | } |
2841 | return 0; | |
2842 | } | |
2843 | ||
b37ad28b AV |
2844 | static __be32 |
2845 | nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink) | |
1da177e4 LT |
2846 | { |
2847 | int maxcount; | |
2848 | char *page; | |
bc749ca4 | 2849 | __be32 *p; |
1da177e4 LT |
2850 | |
2851 | if (nfserr) | |
2852 | return nfserr; | |
2853 | if (resp->xbuf->page_len) | |
2854 | return nfserr_resource; | |
2855 | ||
44524359 | 2856 | page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]); |
1da177e4 LT |
2857 | |
2858 | maxcount = PAGE_SIZE; | |
2859 | RESERVE_SPACE(4); | |
2860 | ||
2861 | /* | |
2862 | * XXX: By default, the ->readlink() VFS op will truncate symlinks | |
2863 | * if they would overflow the buffer. Is this kosher in NFSv4? If | |
2864 | * not, one easy fix is: if ->readlink() precisely fills the buffer, | |
2865 | * assume that truncation occurred, and return NFS4ERR_RESOURCE. | |
2866 | */ | |
2867 | nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount); | |
2868 | if (nfserr == nfserr_isdir) | |
2869 | return nfserr_inval; | |
2870 | if (nfserr) | |
2871 | return nfserr; | |
2872 | ||
2873 | WRITE32(maxcount); | |
2874 | ADJUST_ARGS(); | |
6ed6decc N |
2875 | resp->xbuf->head[0].iov_len = (char*)p |
2876 | - (char*)resp->xbuf->head[0].iov_base; | |
2877 | resp->xbuf->page_len = maxcount; | |
1da177e4 | 2878 | |
6ed6decc | 2879 | /* Use rest of head for padding and remaining ops: */ |
6ed6decc | 2880 | resp->xbuf->tail[0].iov_base = p; |
1da177e4 | 2881 | resp->xbuf->tail[0].iov_len = 0; |
1da177e4 | 2882 | if (maxcount&3) { |
6ed6decc N |
2883 | RESERVE_SPACE(4); |
2884 | WRITE32(0); | |
1da177e4 LT |
2885 | resp->xbuf->tail[0].iov_base += maxcount&3; |
2886 | resp->xbuf->tail[0].iov_len = 4 - (maxcount&3); | |
6ed6decc | 2887 | ADJUST_ARGS(); |
1da177e4 LT |
2888 | } |
2889 | return 0; | |
2890 | } | |
2891 | ||
b37ad28b AV |
2892 | static __be32 |
2893 | nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir) | |
1da177e4 LT |
2894 | { |
2895 | int maxcount; | |
2896 | loff_t offset; | |
2ebbc012 | 2897 | __be32 *page, *savep, *tailbase; |
bc749ca4 | 2898 | __be32 *p; |
1da177e4 LT |
2899 | |
2900 | if (nfserr) | |
2901 | return nfserr; | |
2902 | if (resp->xbuf->page_len) | |
2903 | return nfserr_resource; | |
2904 | ||
2905 | RESERVE_SPACE(8); /* verifier */ | |
2906 | savep = p; | |
2907 | ||
2908 | /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */ | |
2909 | WRITE32(0); | |
2910 | WRITE32(0); | |
2911 | ADJUST_ARGS(); | |
2912 | resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base; | |
bb6e8a9f | 2913 | tailbase = p; |
1da177e4 LT |
2914 | |
2915 | maxcount = PAGE_SIZE; | |
2916 | if (maxcount > readdir->rd_maxcount) | |
2917 | maxcount = readdir->rd_maxcount; | |
2918 | ||
2919 | /* | |
2920 | * Convert from bytes to words, account for the two words already | |
2921 | * written, make sure to leave two words at the end for the next | |
2922 | * pointer and eof field. | |
2923 | */ | |
2924 | maxcount = (maxcount >> 2) - 4; | |
2925 | if (maxcount < 0) { | |
2926 | nfserr = nfserr_toosmall; | |
2927 | goto err_no_verf; | |
2928 | } | |
2929 | ||
44524359 | 2930 | page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]); |
1da177e4 LT |
2931 | readdir->common.err = 0; |
2932 | readdir->buflen = maxcount; | |
2933 | readdir->buffer = page; | |
2934 | readdir->offset = NULL; | |
2935 | ||
2936 | offset = readdir->rd_cookie; | |
2937 | nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp, | |
2938 | &offset, | |
2939 | &readdir->common, nfsd4_encode_dirent); | |
2940 | if (nfserr == nfs_ok && | |
2941 | readdir->common.err == nfserr_toosmall && | |
2942 | readdir->buffer == page) | |
2943 | nfserr = nfserr_toosmall; | |
1da177e4 LT |
2944 | if (nfserr) |
2945 | goto err_no_verf; | |
2946 | ||
2947 | if (readdir->offset) | |
2948 | xdr_encode_hyper(readdir->offset, offset); | |
2949 | ||
2950 | p = readdir->buffer; | |
2951 | *p++ = 0; /* no more entries */ | |
2952 | *p++ = htonl(readdir->common.err == nfserr_eof); | |
44524359 N |
2953 | resp->xbuf->page_len = ((char*)p) - (char*)page_address( |
2954 | resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]); | |
1da177e4 | 2955 | |
bb6e8a9f | 2956 | /* Use rest of head for padding and remaining ops: */ |
bb6e8a9f | 2957 | resp->xbuf->tail[0].iov_base = tailbase; |
1da177e4 LT |
2958 | resp->xbuf->tail[0].iov_len = 0; |
2959 | resp->p = resp->xbuf->tail[0].iov_base; | |
bb6e8a9f | 2960 | resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4; |
1da177e4 LT |
2961 | |
2962 | return 0; | |
2963 | err_no_verf: | |
2964 | p = savep; | |
2965 | ADJUST_ARGS(); | |
2966 | return nfserr; | |
2967 | } | |
2968 | ||
695e12f8 | 2969 | static __be32 |
b37ad28b | 2970 | nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove) |
1da177e4 | 2971 | { |
bc749ca4 | 2972 | __be32 *p; |
1da177e4 LT |
2973 | |
2974 | if (!nfserr) { | |
2975 | RESERVE_SPACE(20); | |
c654b8a9 | 2976 | write_cinfo(&p, &remove->rm_cinfo); |
1da177e4 LT |
2977 | ADJUST_ARGS(); |
2978 | } | |
695e12f8 | 2979 | return nfserr; |
1da177e4 LT |
2980 | } |
2981 | ||
695e12f8 | 2982 | static __be32 |
b37ad28b | 2983 | nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename) |
1da177e4 | 2984 | { |
bc749ca4 | 2985 | __be32 *p; |
1da177e4 LT |
2986 | |
2987 | if (!nfserr) { | |
2988 | RESERVE_SPACE(40); | |
c654b8a9 BF |
2989 | write_cinfo(&p, &rename->rn_sinfo); |
2990 | write_cinfo(&p, &rename->rn_tinfo); | |
1da177e4 LT |
2991 | ADJUST_ARGS(); |
2992 | } | |
695e12f8 | 2993 | return nfserr; |
1da177e4 LT |
2994 | } |
2995 | ||
695e12f8 | 2996 | static __be32 |
22b6dee8 MJ |
2997 | nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp, |
2998 | __be32 nfserr,struct svc_export *exp) | |
dcb488a3 AA |
2999 | { |
3000 | int i = 0; | |
4796f457 BF |
3001 | u32 nflavs; |
3002 | struct exp_flavor_info *flavs; | |
3003 | struct exp_flavor_info def_flavs[2]; | |
bc749ca4 | 3004 | __be32 *p; |
dcb488a3 AA |
3005 | |
3006 | if (nfserr) | |
3007 | goto out; | |
4796f457 BF |
3008 | if (exp->ex_nflavors) { |
3009 | flavs = exp->ex_flavors; | |
3010 | nflavs = exp->ex_nflavors; | |
3011 | } else { /* Handling of some defaults in absence of real secinfo: */ | |
3012 | flavs = def_flavs; | |
3013 | if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) { | |
3014 | nflavs = 2; | |
3015 | flavs[0].pseudoflavor = RPC_AUTH_UNIX; | |
3016 | flavs[1].pseudoflavor = RPC_AUTH_NULL; | |
3017 | } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) { | |
3018 | nflavs = 1; | |
3019 | flavs[0].pseudoflavor | |
3020 | = svcauth_gss_flavor(exp->ex_client); | |
3021 | } else { | |
3022 | nflavs = 1; | |
3023 | flavs[0].pseudoflavor | |
3024 | = exp->ex_client->flavour->flavour; | |
3025 | } | |
3026 | } | |
3027 | ||
dcb488a3 | 3028 | RESERVE_SPACE(4); |
4796f457 | 3029 | WRITE32(nflavs); |
dcb488a3 | 3030 | ADJUST_ARGS(); |
4796f457 BF |
3031 | for (i = 0; i < nflavs; i++) { |
3032 | u32 flav = flavs[i].pseudoflavor; | |
dcb488a3 AA |
3033 | struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav); |
3034 | ||
3035 | if (gm) { | |
3036 | RESERVE_SPACE(4); | |
3037 | WRITE32(RPC_AUTH_GSS); | |
3038 | ADJUST_ARGS(); | |
3039 | RESERVE_SPACE(4 + gm->gm_oid.len); | |
3040 | WRITE32(gm->gm_oid.len); | |
3041 | WRITEMEM(gm->gm_oid.data, gm->gm_oid.len); | |
3042 | ADJUST_ARGS(); | |
3043 | RESERVE_SPACE(4); | |
3044 | WRITE32(0); /* qop */ | |
3045 | ADJUST_ARGS(); | |
3046 | RESERVE_SPACE(4); | |
3047 | WRITE32(gss_pseudoflavor_to_service(gm, flav)); | |
3048 | ADJUST_ARGS(); | |
3049 | gss_mech_put(gm); | |
3050 | } else { | |
3051 | RESERVE_SPACE(4); | |
3052 | WRITE32(flav); | |
3053 | ADJUST_ARGS(); | |
3054 | } | |
3055 | } | |
3056 | out: | |
3057 | if (exp) | |
3058 | exp_put(exp); | |
695e12f8 | 3059 | return nfserr; |
dcb488a3 AA |
3060 | } |
3061 | ||
22b6dee8 MJ |
3062 | static __be32 |
3063 | nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr, | |
3064 | struct nfsd4_secinfo *secinfo) | |
3065 | { | |
3066 | return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp); | |
3067 | } | |
3068 | ||
3069 | static __be32 | |
3070 | nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr, | |
3071 | struct nfsd4_secinfo_no_name *secinfo) | |
3072 | { | |
3073 | return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp); | |
3074 | } | |
3075 | ||
1da177e4 LT |
3076 | /* |
3077 | * The SETATTR encode routine is special -- it always encodes a bitmap, | |
3078 | * regardless of the error status. | |
3079 | */ | |
695e12f8 | 3080 | static __be32 |
b37ad28b | 3081 | nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr) |
1da177e4 | 3082 | { |
bc749ca4 | 3083 | __be32 *p; |
1da177e4 LT |
3084 | |
3085 | RESERVE_SPACE(12); | |
3086 | if (nfserr) { | |
3087 | WRITE32(2); | |
3088 | WRITE32(0); | |
3089 | WRITE32(0); | |
3090 | } | |
3091 | else { | |
3092 | WRITE32(2); | |
3093 | WRITE32(setattr->sa_bmval[0]); | |
3094 | WRITE32(setattr->sa_bmval[1]); | |
3095 | } | |
3096 | ADJUST_ARGS(); | |
695e12f8 | 3097 | return nfserr; |
1da177e4 LT |
3098 | } |
3099 | ||
695e12f8 | 3100 | static __be32 |
b37ad28b | 3101 | nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd) |
1da177e4 | 3102 | { |
bc749ca4 | 3103 | __be32 *p; |
1da177e4 LT |
3104 | |
3105 | if (!nfserr) { | |
3106 | RESERVE_SPACE(8 + sizeof(nfs4_verifier)); | |
3107 | WRITEMEM(&scd->se_clientid, 8); | |
3108 | WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier)); | |
3109 | ADJUST_ARGS(); | |
3110 | } | |
3111 | else if (nfserr == nfserr_clid_inuse) { | |
3112 | RESERVE_SPACE(8); | |
3113 | WRITE32(0); | |
3114 | WRITE32(0); | |
3115 | ADJUST_ARGS(); | |
3116 | } | |
695e12f8 | 3117 | return nfserr; |
1da177e4 LT |
3118 | } |
3119 | ||
695e12f8 | 3120 | static __be32 |
b37ad28b | 3121 | nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write) |
1da177e4 | 3122 | { |
bc749ca4 | 3123 | __be32 *p; |
1da177e4 LT |
3124 | |
3125 | if (!nfserr) { | |
3126 | RESERVE_SPACE(16); | |
3127 | WRITE32(write->wr_bytes_written); | |
3128 | WRITE32(write->wr_how_written); | |
3129 | WRITEMEM(write->wr_verifier.data, 8); | |
3130 | ADJUST_ARGS(); | |
3131 | } | |
695e12f8 | 3132 | return nfserr; |
1da177e4 LT |
3133 | } |
3134 | ||
2db134eb AA |
3135 | static __be32 |
3136 | nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, int nfserr, | |
3137 | struct nfsd4_exchange_id *exid) | |
3138 | { | |
bc749ca4 | 3139 | __be32 *p; |
0733d213 AA |
3140 | char *major_id; |
3141 | char *server_scope; | |
3142 | int major_id_sz; | |
3143 | int server_scope_sz; | |
3144 | uint64_t minor_id = 0; | |
3145 | ||
3146 | if (nfserr) | |
3147 | return nfserr; | |
3148 | ||
3149 | major_id = utsname()->nodename; | |
3150 | major_id_sz = strlen(major_id); | |
3151 | server_scope = utsname()->nodename; | |
3152 | server_scope_sz = strlen(server_scope); | |
3153 | ||
3154 | RESERVE_SPACE( | |
3155 | 8 /* eir_clientid */ + | |
3156 | 4 /* eir_sequenceid */ + | |
3157 | 4 /* eir_flags */ + | |
3158 | 4 /* spr_how (SP4_NONE) */ + | |
3159 | 8 /* so_minor_id */ + | |
3160 | 4 /* so_major_id.len */ + | |
3161 | (XDR_QUADLEN(major_id_sz) * 4) + | |
3162 | 4 /* eir_server_scope.len */ + | |
3163 | (XDR_QUADLEN(server_scope_sz) * 4) + | |
3164 | 4 /* eir_server_impl_id.count (0) */); | |
3165 | ||
3166 | WRITEMEM(&exid->clientid, 8); | |
3167 | WRITE32(exid->seqid); | |
3168 | WRITE32(exid->flags); | |
3169 | ||
3170 | /* state_protect4_r. Currently only support SP4_NONE */ | |
3171 | BUG_ON(exid->spa_how != SP4_NONE); | |
3172 | WRITE32(exid->spa_how); | |
3173 | ||
3174 | /* The server_owner struct */ | |
3175 | WRITE64(minor_id); /* Minor id */ | |
3176 | /* major id */ | |
3177 | WRITE32(major_id_sz); | |
3178 | WRITEMEM(major_id, major_id_sz); | |
3179 | ||
3180 | /* Server scope */ | |
3181 | WRITE32(server_scope_sz); | |
3182 | WRITEMEM(server_scope, server_scope_sz); | |
3183 | ||
3184 | /* Implementation id */ | |
3185 | WRITE32(0); /* zero length nfs_impl_id4 array */ | |
3186 | ADJUST_ARGS(); | |
3187 | return 0; | |
2db134eb AA |
3188 | } |
3189 | ||
3190 | static __be32 | |
3191 | nfsd4_encode_create_session(struct nfsd4_compoundres *resp, int nfserr, | |
3192 | struct nfsd4_create_session *sess) | |
3193 | { | |
bc749ca4 | 3194 | __be32 *p; |
ec6b5d7b AA |
3195 | |
3196 | if (nfserr) | |
3197 | return nfserr; | |
3198 | ||
3199 | RESERVE_SPACE(24); | |
3200 | WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN); | |
3201 | WRITE32(sess->seqid); | |
3202 | WRITE32(sess->flags); | |
3203 | ADJUST_ARGS(); | |
3204 | ||
3205 | RESERVE_SPACE(28); | |
3206 | WRITE32(0); /* headerpadsz */ | |
3207 | WRITE32(sess->fore_channel.maxreq_sz); | |
3208 | WRITE32(sess->fore_channel.maxresp_sz); | |
3209 | WRITE32(sess->fore_channel.maxresp_cached); | |
3210 | WRITE32(sess->fore_channel.maxops); | |
3211 | WRITE32(sess->fore_channel.maxreqs); | |
3212 | WRITE32(sess->fore_channel.nr_rdma_attrs); | |
3213 | ADJUST_ARGS(); | |
3214 | ||
3215 | if (sess->fore_channel.nr_rdma_attrs) { | |
3216 | RESERVE_SPACE(4); | |
3217 | WRITE32(sess->fore_channel.rdma_attrs); | |
3218 | ADJUST_ARGS(); | |
3219 | } | |
3220 | ||
3221 | RESERVE_SPACE(28); | |
3222 | WRITE32(0); /* headerpadsz */ | |
3223 | WRITE32(sess->back_channel.maxreq_sz); | |
3224 | WRITE32(sess->back_channel.maxresp_sz); | |
3225 | WRITE32(sess->back_channel.maxresp_cached); | |
3226 | WRITE32(sess->back_channel.maxops); | |
3227 | WRITE32(sess->back_channel.maxreqs); | |
3228 | WRITE32(sess->back_channel.nr_rdma_attrs); | |
3229 | ADJUST_ARGS(); | |
3230 | ||
3231 | if (sess->back_channel.nr_rdma_attrs) { | |
3232 | RESERVE_SPACE(4); | |
3233 | WRITE32(sess->back_channel.rdma_attrs); | |
3234 | ADJUST_ARGS(); | |
3235 | } | |
3236 | return 0; | |
2db134eb AA |
3237 | } |
3238 | ||
3239 | static __be32 | |
3240 | nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, int nfserr, | |
3241 | struct nfsd4_destroy_session *destroy_session) | |
3242 | { | |
2db134eb AA |
3243 | return nfserr; |
3244 | } | |
3245 | ||
e1ca12df BS |
3246 | static __be32 |
3247 | nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, int nfserr, | |
3248 | struct nfsd4_free_stateid *free_stateid) | |
3249 | { | |
3250 | __be32 *p; | |
3251 | ||
3252 | if (nfserr) | |
3253 | return nfserr; | |
3254 | ||
3255 | RESERVE_SPACE(4); | |
3256 | WRITE32(nfserr); | |
3257 | ADJUST_ARGS(); | |
3258 | return nfserr; | |
3259 | } | |
3260 | ||
c47d832b | 3261 | static __be32 |
2db134eb AA |
3262 | nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr, |
3263 | struct nfsd4_sequence *seq) | |
3264 | { | |
bc749ca4 | 3265 | __be32 *p; |
b85d4c01 BH |
3266 | |
3267 | if (nfserr) | |
3268 | return nfserr; | |
3269 | ||
3270 | RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20); | |
3271 | WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN); | |
3272 | WRITE32(seq->seqid); | |
3273 | WRITE32(seq->slotid); | |
b7d7ca35 BF |
3274 | /* Note slotid's are numbered from zero: */ |
3275 | WRITE32(seq->maxslots - 1); /* sr_highest_slotid */ | |
3276 | WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */ | |
0d7bb719 | 3277 | WRITE32(seq->status_flags); |
b85d4c01 BH |
3278 | |
3279 | ADJUST_ARGS(); | |
557ce264 | 3280 | resp->cstate.datap = p; /* DRC cache data pointer */ |
b85d4c01 | 3281 | return 0; |
2db134eb AA |
3282 | } |
3283 | ||
17456804 BS |
3284 | __be32 |
3285 | nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, int nfserr, | |
3286 | struct nfsd4_test_stateid *test_stateid) | |
3287 | { | |
3288 | struct nfsd4_compoundargs *argp; | |
3289 | stateid_t si; | |
3290 | __be32 *p; | |
3291 | int i; | |
3292 | int valid; | |
3293 | ||
3294 | restore_buf(test_stateid->ts_saved_args, &test_stateid->ts_savedp); | |
3295 | argp = test_stateid->ts_saved_args; | |
3296 | ||
3297 | RESERVE_SPACE(4); | |
3298 | *p++ = htonl(test_stateid->ts_num_ids); | |
3299 | resp->p = p; | |
3300 | ||
3301 | nfs4_lock_state(); | |
3302 | for (i = 0; i < test_stateid->ts_num_ids; i++) { | |
3303 | nfsd4_decode_stateid(argp, &si); | |
3304 | valid = nfs4_validate_stateid(&si, test_stateid->ts_has_session); | |
3305 | RESERVE_SPACE(4); | |
3306 | *p++ = htonl(valid); | |
3307 | resp->p = p; | |
3308 | } | |
3309 | nfs4_unlock_state(); | |
3310 | ||
3311 | return nfserr; | |
3312 | } | |
3313 | ||
695e12f8 BH |
3314 | static __be32 |
3315 | nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p) | |
3316 | { | |
3317 | return nfserr; | |
3318 | } | |
3319 | ||
3320 | typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *); | |
3321 | ||
2db134eb AA |
3322 | /* |
3323 | * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1 | |
3324 | * since we don't need to filter out obsolete ops as this is | |
3325 | * done in the decoding phase. | |
3326 | */ | |
695e12f8 | 3327 | static nfsd4_enc nfsd4_enc_ops[] = { |
ad1060c8 BF |
3328 | [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access, |
3329 | [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close, | |
3330 | [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit, | |
3331 | [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create, | |
3332 | [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop, | |
3333 | [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop, | |
3334 | [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr, | |
3335 | [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh, | |
3336 | [OP_LINK] = (nfsd4_enc)nfsd4_encode_link, | |
3337 | [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock, | |
3338 | [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt, | |
3339 | [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku, | |
3340 | [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop, | |
3341 | [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop, | |
3342 | [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop, | |
3343 | [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open, | |
84f09f46 | 3344 | [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop, |
ad1060c8 BF |
3345 | [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm, |
3346 | [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade, | |
3347 | [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop, | |
3348 | [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop, | |
3349 | [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop, | |
3350 | [OP_READ] = (nfsd4_enc)nfsd4_encode_read, | |
3351 | [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir, | |
3352 | [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink, | |
3353 | [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove, | |
3354 | [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename, | |
3355 | [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop, | |
3356 | [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop, | |
3357 | [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop, | |
3358 | [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo, | |
3359 | [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr, | |
3360 | [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid, | |
3361 | [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop, | |
3362 | [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop, | |
3363 | [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write, | |
3364 | [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop, | |
2db134eb AA |
3365 | |
3366 | /* NFSv4.1 operations */ | |
3367 | [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop, | |
1d1bc8f2 | 3368 | [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session, |
2db134eb AA |
3369 | [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id, |
3370 | [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session, | |
3371 | [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session, | |
e1ca12df | 3372 | [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_free_stateid, |
2db134eb AA |
3373 | [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop, |
3374 | [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop, | |
3375 | [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop, | |
3376 | [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop, | |
3377 | [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop, | |
3378 | [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop, | |
22b6dee8 | 3379 | [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name, |
2db134eb AA |
3380 | [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence, |
3381 | [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop, | |
17456804 | 3382 | [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid, |
2db134eb AA |
3383 | [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop, |
3384 | [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop, | |
3385 | [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop, | |
695e12f8 BH |
3386 | }; |
3387 | ||
496c262c AA |
3388 | /* |
3389 | * Calculate the total amount of memory that the compound response has taken | |
58e7b33a | 3390 | * after encoding the current operation with pad. |
496c262c | 3391 | * |
58e7b33a MJ |
3392 | * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop() |
3393 | * which was specified at nfsd4_operation, else pad is zero. | |
496c262c | 3394 | * |
58e7b33a | 3395 | * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached. |
496c262c AA |
3396 | * |
3397 | * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so | |
3398 | * will be at least a page and will therefore hold the xdr_buf head. | |
3399 | */ | |
58e7b33a | 3400 | int nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad) |
496c262c | 3401 | { |
496c262c | 3402 | struct xdr_buf *xb = &resp->rqstp->rq_res; |
496c262c AA |
3403 | struct nfsd4_session *session = NULL; |
3404 | struct nfsd4_slot *slot = resp->cstate.slot; | |
58e7b33a | 3405 | u32 length, tlen = 0; |
496c262c AA |
3406 | |
3407 | if (!nfsd4_has_session(&resp->cstate)) | |
58e7b33a | 3408 | return 0; |
496c262c AA |
3409 | |
3410 | session = resp->cstate.session; | |
58e7b33a MJ |
3411 | if (session == NULL) |
3412 | return 0; | |
496c262c AA |
3413 | |
3414 | if (xb->page_len == 0) { | |
3415 | length = (char *)resp->p - (char *)xb->head[0].iov_base + pad; | |
3416 | } else { | |
3417 | if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0) | |
3418 | tlen = (char *)resp->p - (char *)xb->tail[0].iov_base; | |
3419 | ||
3420 | length = xb->head[0].iov_len + xb->page_len + tlen + pad; | |
3421 | } | |
3422 | dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__, | |
3423 | length, xb->page_len, tlen, pad); | |
3424 | ||
58e7b33a MJ |
3425 | if (length > session->se_fchannel.maxresp_sz) |
3426 | return nfserr_rep_too_big; | |
3427 | ||
3428 | if (slot->sl_cachethis == 1 && | |
3429 | length > session->se_fchannel.maxresp_cached) | |
496c262c | 3430 | return nfserr_rep_too_big_to_cache; |
58e7b33a MJ |
3431 | |
3432 | return 0; | |
496c262c AA |
3433 | } |
3434 | ||
1da177e4 LT |
3435 | void |
3436 | nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op) | |
3437 | { | |
2ebbc012 | 3438 | __be32 *statp; |
bc749ca4 | 3439 | __be32 *p; |
1da177e4 LT |
3440 | |
3441 | RESERVE_SPACE(8); | |
3442 | WRITE32(op->opnum); | |
3443 | statp = p++; /* to be backfilled at the end */ | |
3444 | ADJUST_ARGS(); | |
3445 | ||
695e12f8 BH |
3446 | if (op->opnum == OP_ILLEGAL) |
3447 | goto status; | |
3448 | BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) || | |
3449 | !nfsd4_enc_ops[op->opnum]); | |
3450 | op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u); | |
496c262c | 3451 | /* nfsd4_check_drc_limit guarantees enough room for error status */ |
58e7b33a MJ |
3452 | if (!op->status) |
3453 | op->status = nfsd4_check_resp_size(resp, 0); | |
695e12f8 | 3454 | status: |
1da177e4 LT |
3455 | /* |
3456 | * Note: We write the status directly, instead of using WRITE32(), | |
3457 | * since it is already in network byte order. | |
3458 | */ | |
3459 | *statp = op->status; | |
3460 | } | |
3461 | ||
3462 | /* | |
3463 | * Encode the reply stored in the stateowner reply cache | |
3464 | * | |
3465 | * XDR note: do not encode rp->rp_buflen: the buffer contains the | |
3466 | * previously sent already encoded operation. | |
3467 | * | |
3468 | * called with nfs4_lock_state() held | |
3469 | */ | |
3470 | void | |
3471 | nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op) | |
3472 | { | |
bc749ca4 | 3473 | __be32 *p; |
1da177e4 LT |
3474 | struct nfs4_replay *rp = op->replay; |
3475 | ||
3476 | BUG_ON(!rp); | |
3477 | ||
3478 | RESERVE_SPACE(8); | |
3479 | WRITE32(op->opnum); | |
3480 | *p++ = rp->rp_status; /* already xdr'ed */ | |
3481 | ADJUST_ARGS(); | |
3482 | ||
3483 | RESERVE_SPACE(rp->rp_buflen); | |
3484 | WRITEMEM(rp->rp_buf, rp->rp_buflen); | |
3485 | ADJUST_ARGS(); | |
3486 | } | |
3487 | ||
1da177e4 | 3488 | int |
2ebbc012 | 3489 | nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy) |
1da177e4 LT |
3490 | { |
3491 | return xdr_ressize_check(rqstp, p); | |
3492 | } | |
3493 | ||
3e98abff | 3494 | int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp) |
1da177e4 | 3495 | { |
3e98abff BF |
3496 | struct svc_rqst *rqstp = rq; |
3497 | struct nfsd4_compoundargs *args = rqstp->rq_argp; | |
3498 | ||
1da177e4 LT |
3499 | if (args->ops != args->iops) { |
3500 | kfree(args->ops); | |
3501 | args->ops = args->iops; | |
3502 | } | |
f99d49ad JJ |
3503 | kfree(args->tmpp); |
3504 | args->tmpp = NULL; | |
1da177e4 LT |
3505 | while (args->to_free) { |
3506 | struct tmpbuf *tb = args->to_free; | |
3507 | args->to_free = tb->next; | |
3508 | tb->release(tb->buf); | |
3509 | kfree(tb); | |
3510 | } | |
3e98abff | 3511 | return 1; |
1da177e4 LT |
3512 | } |
3513 | ||
3514 | int | |
2ebbc012 | 3515 | nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args) |
1da177e4 | 3516 | { |
1da177e4 LT |
3517 | args->p = p; |
3518 | args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len; | |
3519 | args->pagelist = rqstp->rq_arg.pages; | |
3520 | args->pagelen = rqstp->rq_arg.page_len; | |
3521 | args->tmpp = NULL; | |
3522 | args->to_free = NULL; | |
3523 | args->ops = args->iops; | |
3524 | args->rqstp = rqstp; | |
3525 | ||
3e98abff | 3526 | return !nfsd4_decode_compound(args); |
1da177e4 LT |
3527 | } |
3528 | ||
3529 | int | |
2ebbc012 | 3530 | nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp) |
1da177e4 LT |
3531 | { |
3532 | /* | |
3533 | * All that remains is to write the tag and operation count... | |
3534 | */ | |
557ce264 | 3535 | struct nfsd4_compound_state *cs = &resp->cstate; |
1da177e4 LT |
3536 | struct kvec *iov; |
3537 | p = resp->tagp; | |
3538 | *p++ = htonl(resp->taglen); | |
3539 | memcpy(p, resp->tag, resp->taglen); | |
3540 | p += XDR_QUADLEN(resp->taglen); | |
3541 | *p++ = htonl(resp->opcnt); | |
3542 | ||
3543 | if (rqstp->rq_res.page_len) | |
3544 | iov = &rqstp->rq_res.tail[0]; | |
3545 | else | |
3546 | iov = &rqstp->rq_res.head[0]; | |
3547 | iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base; | |
3548 | BUG_ON(iov->iov_len > PAGE_SIZE); | |
26c0c75e BF |
3549 | if (nfsd4_has_session(cs)) { |
3550 | if (cs->status != nfserr_replay_cache) { | |
3551 | nfsd4_store_cache_entry(resp); | |
3552 | dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__); | |
dbd65a7e | 3553 | cs->slot->sl_inuse = false; |
26c0c75e | 3554 | } |
d7682988 BH |
3555 | /* Renew the clientid on success and on replay */ |
3556 | release_session_client(cs->session); | |
76407f76 | 3557 | nfsd4_put_session(cs->session); |
da3846a2 | 3558 | } |
1da177e4 LT |
3559 | return 1; |
3560 | } | |
3561 | ||
3562 | /* | |
3563 | * Local variables: | |
3564 | * c-basic-offset: 8 | |
3565 | * End: | |
3566 | */ |