oprofile: reset bt_lost_no_mapping with other stats
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / nfsd / xdr4.h
blob2bacf75350696a18871ae94c4453f828f3a70116
1 /*
2 * include/linux/nfsd/xdr4.h
4 * Server-side types for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #ifndef _LINUX_NFSD_XDR4_H
40 #define _LINUX_NFSD_XDR4_H
42 #include <linux/nfs4.h>
44 #define NFSD4_MAX_TAGLEN 128
45 #define XDR_LEN(n) (((n) + 3) & ~3)
47 struct nfsd4_compound_state {
48 struct svc_fh current_fh;
49 struct svc_fh save_fh;
50 struct nfs4_stateowner *replay_owner;
51 /* For sessions DRC */
52 struct nfsd4_session *session;
53 struct nfsd4_slot *slot;
54 __be32 *statp;
55 size_t iovlen;
56 u32 minorversion;
57 u32 status;
60 static inline bool nfsd4_has_session(struct nfsd4_compound_state *cs)
62 return cs->slot != NULL;
65 struct nfsd4_change_info {
66 u32 atomic;
67 bool change_supported;
68 u32 before_ctime_sec;
69 u32 before_ctime_nsec;
70 u64 before_change;
71 u32 after_ctime_sec;
72 u32 after_ctime_nsec;
73 u64 after_change;
76 struct nfsd4_access {
77 u32 ac_req_access; /* request */
78 u32 ac_supported; /* response */
79 u32 ac_resp_access; /* response */
82 struct nfsd4_close {
83 u32 cl_seqid; /* request */
84 stateid_t cl_stateid; /* request+response */
85 struct nfs4_stateowner * cl_stateowner; /* response */
88 struct nfsd4_commit {
89 u64 co_offset; /* request */
90 u32 co_count; /* request */
91 nfs4_verifier co_verf; /* response */
94 struct nfsd4_create {
95 u32 cr_namelen; /* request */
96 char * cr_name; /* request */
97 u32 cr_type; /* request */
98 union { /* request */
99 struct {
100 u32 namelen;
101 char *name;
102 } link; /* NF4LNK */
103 struct {
104 u32 specdata1;
105 u32 specdata2;
106 } dev; /* NF4BLK, NF4CHR */
107 } u;
108 u32 cr_bmval[3]; /* request */
109 struct iattr cr_iattr; /* request */
110 struct nfsd4_change_info cr_cinfo; /* response */
111 struct nfs4_acl *cr_acl;
113 #define cr_linklen u.link.namelen
114 #define cr_linkname u.link.name
115 #define cr_specdata1 u.dev.specdata1
116 #define cr_specdata2 u.dev.specdata2
118 struct nfsd4_delegreturn {
119 stateid_t dr_stateid;
122 struct nfsd4_getattr {
123 u32 ga_bmval[3]; /* request */
124 struct svc_fh *ga_fhp; /* response */
127 struct nfsd4_link {
128 u32 li_namelen; /* request */
129 char * li_name; /* request */
130 struct nfsd4_change_info li_cinfo; /* response */
133 struct nfsd4_lock_denied {
134 clientid_t ld_clientid;
135 struct nfs4_stateowner *ld_sop;
136 u64 ld_start;
137 u64 ld_length;
138 u32 ld_type;
141 struct nfsd4_lock {
142 /* request */
143 u32 lk_type;
144 u32 lk_reclaim; /* boolean */
145 u64 lk_offset;
146 u64 lk_length;
147 u32 lk_is_new;
148 union {
149 struct {
150 u32 open_seqid;
151 stateid_t open_stateid;
152 u32 lock_seqid;
153 clientid_t clientid;
154 struct xdr_netobj owner;
155 } new;
156 struct {
157 stateid_t lock_stateid;
158 u32 lock_seqid;
159 } old;
160 } v;
162 /* response */
163 union {
164 struct {
165 stateid_t stateid;
166 } ok;
167 struct nfsd4_lock_denied denied;
168 } u;
169 /* The lk_replay_owner is the open owner in the open_to_lock_owner
170 * case and the lock owner otherwise: */
171 struct nfs4_stateowner *lk_replay_owner;
173 #define lk_new_open_seqid v.new.open_seqid
174 #define lk_new_open_stateid v.new.open_stateid
175 #define lk_new_lock_seqid v.new.lock_seqid
176 #define lk_new_clientid v.new.clientid
177 #define lk_new_owner v.new.owner
178 #define lk_old_lock_stateid v.old.lock_stateid
179 #define lk_old_lock_seqid v.old.lock_seqid
181 #define lk_rflags u.ok.rflags
182 #define lk_resp_stateid u.ok.stateid
183 #define lk_denied u.denied
186 struct nfsd4_lockt {
187 u32 lt_type;
188 clientid_t lt_clientid;
189 struct xdr_netobj lt_owner;
190 u64 lt_offset;
191 u64 lt_length;
192 struct nfs4_stateowner * lt_stateowner;
193 struct nfsd4_lock_denied lt_denied;
197 struct nfsd4_locku {
198 u32 lu_type;
199 u32 lu_seqid;
200 stateid_t lu_stateid;
201 u64 lu_offset;
202 u64 lu_length;
203 struct nfs4_stateowner *lu_stateowner;
207 struct nfsd4_lookup {
208 u32 lo_len; /* request */
209 char * lo_name; /* request */
212 struct nfsd4_putfh {
213 u32 pf_fhlen; /* request */
214 char *pf_fhval; /* request */
217 struct nfsd4_open {
218 u32 op_claim_type; /* request */
219 struct xdr_netobj op_fname; /* request - everything but CLAIM_PREV */
220 u32 op_delegate_type; /* request - CLAIM_PREV only */
221 stateid_t op_delegate_stateid; /* request - response */
222 u32 op_create; /* request */
223 u32 op_createmode; /* request */
224 u32 op_bmval[3]; /* request */
225 struct iattr iattr; /* UNCHECKED4, GUARDED4, EXCLUSIVE4_1 */
226 nfs4_verifier verf; /* EXCLUSIVE4 */
227 clientid_t op_clientid; /* request */
228 struct xdr_netobj op_owner; /* request */
229 u32 op_seqid; /* request */
230 u32 op_share_access; /* request */
231 u32 op_share_deny; /* request */
232 stateid_t op_stateid; /* response */
233 u32 op_recall; /* recall */
234 struct nfsd4_change_info op_cinfo; /* response */
235 u32 op_rflags; /* response */
236 int op_truncate; /* used during processing */
237 struct nfs4_stateowner *op_stateowner; /* used during processing */
238 struct nfs4_acl *op_acl;
240 #define op_iattr iattr
241 #define op_verf verf
243 struct nfsd4_open_confirm {
244 stateid_t oc_req_stateid /* request */;
245 u32 oc_seqid /* request */;
246 stateid_t oc_resp_stateid /* response */;
247 struct nfs4_stateowner * oc_stateowner; /* response */
250 struct nfsd4_open_downgrade {
251 stateid_t od_stateid;
252 u32 od_seqid;
253 u32 od_share_access;
254 u32 od_share_deny;
255 struct nfs4_stateowner *od_stateowner;
259 struct nfsd4_read {
260 stateid_t rd_stateid; /* request */
261 u64 rd_offset; /* request */
262 u32 rd_length; /* request */
263 int rd_vlen;
264 struct file *rd_filp;
266 struct svc_rqst *rd_rqstp; /* response */
267 struct svc_fh * rd_fhp; /* response */
270 struct nfsd4_readdir {
271 u64 rd_cookie; /* request */
272 nfs4_verifier rd_verf; /* request */
273 u32 rd_dircount; /* request */
274 u32 rd_maxcount; /* request */
275 u32 rd_bmval[3]; /* request */
276 struct svc_rqst *rd_rqstp; /* response */
277 struct svc_fh * rd_fhp; /* response */
279 struct readdir_cd common;
280 __be32 * buffer;
281 int buflen;
282 __be32 * offset;
285 struct nfsd4_release_lockowner {
286 clientid_t rl_clientid;
287 struct xdr_netobj rl_owner;
289 struct nfsd4_readlink {
290 struct svc_rqst *rl_rqstp; /* request */
291 struct svc_fh * rl_fhp; /* request */
294 struct nfsd4_remove {
295 u32 rm_namelen; /* request */
296 char * rm_name; /* request */
297 struct nfsd4_change_info rm_cinfo; /* response */
300 struct nfsd4_rename {
301 u32 rn_snamelen; /* request */
302 char * rn_sname; /* request */
303 u32 rn_tnamelen; /* request */
304 char * rn_tname; /* request */
305 struct nfsd4_change_info rn_sinfo; /* response */
306 struct nfsd4_change_info rn_tinfo; /* response */
309 struct nfsd4_secinfo {
310 u32 si_namelen; /* request */
311 char *si_name; /* request */
312 struct svc_export *si_exp; /* response */
315 struct nfsd4_setattr {
316 stateid_t sa_stateid; /* request */
317 u32 sa_bmval[3]; /* request */
318 struct iattr sa_iattr; /* request */
319 struct nfs4_acl *sa_acl;
322 struct nfsd4_setclientid {
323 nfs4_verifier se_verf; /* request */
324 u32 se_namelen; /* request */
325 char * se_name; /* request */
326 u32 se_callback_prog; /* request */
327 u32 se_callback_netid_len; /* request */
328 char * se_callback_netid_val; /* request */
329 u32 se_callback_addr_len; /* request */
330 char * se_callback_addr_val; /* request */
331 u32 se_callback_ident; /* request */
332 clientid_t se_clientid; /* response */
333 nfs4_verifier se_confirm; /* response */
336 struct nfsd4_setclientid_confirm {
337 clientid_t sc_clientid;
338 nfs4_verifier sc_confirm;
341 /* also used for NVERIFY */
342 struct nfsd4_verify {
343 u32 ve_bmval[3]; /* request */
344 u32 ve_attrlen; /* request */
345 char * ve_attrval; /* request */
348 struct nfsd4_write {
349 stateid_t wr_stateid; /* request */
350 u64 wr_offset; /* request */
351 u32 wr_stable_how; /* request */
352 u32 wr_buflen; /* request */
353 int wr_vlen;
355 u32 wr_bytes_written; /* response */
356 u32 wr_how_written; /* response */
357 nfs4_verifier wr_verifier; /* response */
360 struct nfsd4_exchange_id {
361 nfs4_verifier verifier;
362 struct xdr_netobj clname;
363 u32 flags;
364 clientid_t clientid;
365 u32 seqid;
366 int spa_how;
369 struct nfsd4_create_session {
370 clientid_t clientid;
371 struct nfs4_sessionid sessionid;
372 u32 seqid;
373 u32 flags;
374 struct nfsd4_channel_attrs fore_channel;
375 struct nfsd4_channel_attrs back_channel;
376 u32 callback_prog;
377 u32 uid;
378 u32 gid;
381 struct nfsd4_sequence {
382 struct nfs4_sessionid sessionid; /* request/response */
383 u32 seqid; /* request/response */
384 u32 slotid; /* request/response */
385 u32 maxslots; /* request/response */
386 u32 cachethis; /* request */
387 #if 0
388 u32 target_maxslots; /* response */
389 u32 status_flags; /* response */
390 #endif /* not yet */
393 struct nfsd4_destroy_session {
394 struct nfs4_sessionid sessionid;
397 struct nfsd4_op {
398 int opnum;
399 __be32 status;
400 union {
401 struct nfsd4_access access;
402 struct nfsd4_close close;
403 struct nfsd4_commit commit;
404 struct nfsd4_create create;
405 struct nfsd4_delegreturn delegreturn;
406 struct nfsd4_getattr getattr;
407 struct svc_fh * getfh;
408 struct nfsd4_link link;
409 struct nfsd4_lock lock;
410 struct nfsd4_lockt lockt;
411 struct nfsd4_locku locku;
412 struct nfsd4_lookup lookup;
413 struct nfsd4_verify nverify;
414 struct nfsd4_open open;
415 struct nfsd4_open_confirm open_confirm;
416 struct nfsd4_open_downgrade open_downgrade;
417 struct nfsd4_putfh putfh;
418 struct nfsd4_read read;
419 struct nfsd4_readdir readdir;
420 struct nfsd4_readlink readlink;
421 struct nfsd4_remove remove;
422 struct nfsd4_rename rename;
423 clientid_t renew;
424 struct nfsd4_secinfo secinfo;
425 struct nfsd4_setattr setattr;
426 struct nfsd4_setclientid setclientid;
427 struct nfsd4_setclientid_confirm setclientid_confirm;
428 struct nfsd4_verify verify;
429 struct nfsd4_write write;
430 struct nfsd4_release_lockowner release_lockowner;
432 /* NFSv4.1 */
433 struct nfsd4_exchange_id exchange_id;
434 struct nfsd4_create_session create_session;
435 struct nfsd4_destroy_session destroy_session;
436 struct nfsd4_sequence sequence;
437 } u;
438 struct nfs4_replay * replay;
441 struct nfsd4_compoundargs {
442 /* scratch variables for XDR decode */
443 __be32 * p;
444 __be32 * end;
445 struct page ** pagelist;
446 int pagelen;
447 __be32 tmp[8];
448 __be32 * tmpp;
449 struct tmpbuf {
450 struct tmpbuf *next;
451 void (*release)(const void *);
452 void *buf;
453 } *to_free;
455 struct svc_rqst *rqstp;
457 u32 taglen;
458 char * tag;
459 u32 minorversion;
460 u32 opcnt;
461 struct nfsd4_op *ops;
462 struct nfsd4_op iops[8];
465 struct nfsd4_compoundres {
466 /* scratch variables for XDR encode */
467 __be32 * p;
468 __be32 * end;
469 struct xdr_buf * xbuf;
470 struct svc_rqst * rqstp;
472 u32 taglen;
473 char * tag;
474 u32 opcnt;
475 __be32 * tagp; /* tag, opcount encode location */
476 struct nfsd4_compound_state cstate;
479 static inline bool nfsd4_is_solo_sequence(struct nfsd4_compoundres *resp)
481 struct nfsd4_compoundargs *args = resp->rqstp->rq_argp;
482 return args->opcnt == 1;
485 static inline bool nfsd4_not_cached(struct nfsd4_compoundres *resp)
487 return !resp->cstate.slot->sl_cache_entry.ce_cachethis ||
488 nfsd4_is_solo_sequence(resp);
491 #define NFS4_SVC_XDRSIZE sizeof(struct nfsd4_compoundargs)
493 static inline void
494 set_change_info(struct nfsd4_change_info *cinfo, struct svc_fh *fhp)
496 BUG_ON(!fhp->fh_pre_saved || !fhp->fh_post_saved);
497 cinfo->atomic = 1;
498 cinfo->change_supported = IS_I_VERSION(fhp->fh_dentry->d_inode);
499 if (cinfo->change_supported) {
500 cinfo->before_change = fhp->fh_pre_change;
501 cinfo->after_change = fhp->fh_post_change;
502 } else {
503 cinfo->before_ctime_sec = fhp->fh_pre_ctime.tv_sec;
504 cinfo->before_ctime_nsec = fhp->fh_pre_ctime.tv_nsec;
505 cinfo->after_ctime_sec = fhp->fh_post_attr.ctime.tv_sec;
506 cinfo->after_ctime_nsec = fhp->fh_post_attr.ctime.tv_nsec;
510 int nfs4svc_encode_voidres(struct svc_rqst *, __be32 *, void *);
511 int nfs4svc_decode_compoundargs(struct svc_rqst *, __be32 *,
512 struct nfsd4_compoundargs *);
513 int nfs4svc_encode_compoundres(struct svc_rqst *, __be32 *,
514 struct nfsd4_compoundres *);
515 void nfsd4_encode_operation(struct nfsd4_compoundres *, struct nfsd4_op *);
516 void nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op);
517 __be32 nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
518 struct dentry *dentry, __be32 *buffer, int *countp,
519 u32 *bmval, struct svc_rqst *, int ignore_crossmnt);
520 extern __be32 nfsd4_setclientid(struct svc_rqst *rqstp,
521 struct nfsd4_compound_state *,
522 struct nfsd4_setclientid *setclid);
523 extern __be32 nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
524 struct nfsd4_compound_state *,
525 struct nfsd4_setclientid_confirm *setclientid_confirm);
526 extern void nfsd4_store_cache_entry(struct nfsd4_compoundres *resp);
527 extern __be32 nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
528 struct nfsd4_sequence *seq);
529 extern __be32 nfsd4_exchange_id(struct svc_rqst *rqstp,
530 struct nfsd4_compound_state *,
531 struct nfsd4_exchange_id *);
532 extern __be32 nfsd4_create_session(struct svc_rqst *,
533 struct nfsd4_compound_state *,
534 struct nfsd4_create_session *);
535 extern __be32 nfsd4_sequence(struct svc_rqst *,
536 struct nfsd4_compound_state *,
537 struct nfsd4_sequence *);
538 extern __be32 nfsd4_destroy_session(struct svc_rqst *,
539 struct nfsd4_compound_state *,
540 struct nfsd4_destroy_session *);
541 extern __be32 nfsd4_process_open1(struct nfsd4_compound_state *,
542 struct nfsd4_open *open);
543 extern __be32 nfsd4_process_open2(struct svc_rqst *rqstp,
544 struct svc_fh *current_fh, struct nfsd4_open *open);
545 extern __be32 nfsd4_open_confirm(struct svc_rqst *rqstp,
546 struct nfsd4_compound_state *, struct nfsd4_open_confirm *oc);
547 extern __be32 nfsd4_close(struct svc_rqst *rqstp,
548 struct nfsd4_compound_state *,
549 struct nfsd4_close *close);
550 extern __be32 nfsd4_open_downgrade(struct svc_rqst *rqstp,
551 struct nfsd4_compound_state *,
552 struct nfsd4_open_downgrade *od);
553 extern __be32 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *,
554 struct nfsd4_lock *lock);
555 extern __be32 nfsd4_lockt(struct svc_rqst *rqstp,
556 struct nfsd4_compound_state *,
557 struct nfsd4_lockt *lockt);
558 extern __be32 nfsd4_locku(struct svc_rqst *rqstp,
559 struct nfsd4_compound_state *,
560 struct nfsd4_locku *locku);
561 extern __be32
562 nfsd4_release_lockowner(struct svc_rqst *rqstp,
563 struct nfsd4_compound_state *,
564 struct nfsd4_release_lockowner *rlockowner);
565 extern void nfsd4_release_compoundargs(struct nfsd4_compoundargs *);
566 extern __be32 nfsd4_delegreturn(struct svc_rqst *rqstp,
567 struct nfsd4_compound_state *, struct nfsd4_delegreturn *dr);
568 extern __be32 nfsd4_renew(struct svc_rqst *rqstp,
569 struct nfsd4_compound_state *, clientid_t *clid);
570 #endif
573 * Local variables:
574 * c-basic-offset: 8
575 * End: