xdr4.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  include/linux/nfsd/xdr4.h
  3.  *
  4.  *  Server-side types for NFSv4.
  5.  *
  6.  *  Copyright (c) 2002 The Regents of the University of Michigan.
  7.  *  All rights reserved.
  8.  *
  9.  *  Kendrick Smith <kmsmith@umich.edu>
  10.  *  Andy Adamson   <andros@umich.edu>
  11.  *
  12.  *  Redistribution and use in source and binary forms, with or without
  13.  *  modification, are permitted provided that the following conditions
  14.  *  are met:
  15.  *
  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.
  24.  *
  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.
  36.  *
  37.  */
  38. #ifndef _LINUX_NFSD_XDR4_H
  39. #define _LINUX_NFSD_XDR4_H
  40. #include <linux/nfs4.h>
  41. #define NFSD4_MAX_TAGLEN 128
  42. #define XDR_LEN(n)                     (((n) + 3) & ~3)
  43. struct nfsd4_change_info {
  44. u32 atomic;
  45. u32 before_ctime_sec;
  46. u32 before_ctime_nsec;
  47. u32 after_ctime_sec;
  48. u32 after_ctime_nsec;
  49. };
  50. struct nfsd4_access {
  51. u32 ac_req_access;      /* request */
  52. u32 ac_supported;       /* response */
  53. u32 ac_resp_access;     /* response */
  54. };
  55. struct nfsd4_close {
  56. u32 cl_seqid;           /* request */
  57. stateid_t cl_stateid;         /* request+response */
  58. struct nfs4_stateowner * cl_stateowner; /* response */
  59. };
  60. struct nfsd4_commit {
  61. u64 co_offset;          /* request */
  62. u32 co_count;           /* request */
  63. nfs4_verifier co_verf;            /* response */
  64. };
  65. struct nfsd4_create {
  66. u32 cr_namelen;         /* request */
  67. char * cr_name;            /* request */
  68. u32 cr_type;            /* request */
  69. union {                             /* request */
  70. struct {
  71. u32 namelen;
  72. char *name;
  73. } link;   /* NF4LNK */
  74. struct {
  75. u32 specdata1;
  76. u32 specdata2;
  77. } dev;    /* NF4BLK, NF4CHR */
  78. } u;
  79. u32 cr_bmval[2];        /* request */
  80. struct iattr cr_iattr;           /* request */
  81. struct nfsd4_change_info  cr_cinfo; /* response */
  82. struct nfs4_acl *cr_acl;
  83. };
  84. #define cr_linklen u.link.namelen
  85. #define cr_linkname u.link.name
  86. #define cr_specdata1 u.dev.specdata1
  87. #define cr_specdata2 u.dev.specdata2
  88. struct nfsd4_delegreturn {
  89. stateid_t dr_stateid;
  90. };
  91. struct nfsd4_getattr {
  92. u32 ga_bmval[2];        /* request */
  93. struct svc_fh *ga_fhp;            /* response */
  94. };
  95. struct nfsd4_link {
  96. u32 li_namelen;         /* request */
  97. char * li_name;            /* request */
  98. struct nfsd4_change_info  li_cinfo; /* response */
  99. };
  100. struct nfsd4_lock_denied {
  101. clientid_t ld_clientid;
  102. struct nfs4_stateowner   *ld_sop;
  103. u64             ld_start;
  104. u64             ld_length;
  105. u32             ld_type;
  106. };
  107. struct nfsd4_lock {
  108. /* request */
  109. u32             lk_type;
  110. u32             lk_reclaim;         /* boolean */
  111. u64             lk_offset;
  112. u64             lk_length;
  113. u32             lk_is_new;
  114. union {
  115. struct {
  116. u32             open_seqid;
  117. stateid_t       open_stateid;
  118. u32             lock_seqid;
  119. clientid_t      clientid;
  120. struct xdr_netobj owner;
  121. } new;
  122. struct {
  123. stateid_t       lock_stateid;
  124. u32             lock_seqid;
  125. } old;
  126. } v;
  127. /* response */
  128. union {
  129. struct {
  130. stateid_t               stateid;
  131. } ok;
  132. struct nfsd4_lock_denied        denied;
  133. } u;
  134. struct nfs4_stateowner *lk_stateowner;
  135. };
  136. #define lk_new_open_seqid       v.new.open_seqid
  137. #define lk_new_open_stateid     v.new.open_stateid
  138. #define lk_new_lock_seqid       v.new.lock_seqid
  139. #define lk_new_clientid         v.new.clientid
  140. #define lk_new_owner            v.new.owner
  141. #define lk_old_lock_stateid     v.old.lock_stateid
  142. #define lk_old_lock_seqid       v.old.lock_seqid
  143. #define lk_rflags       u.ok.rflags
  144. #define lk_resp_stateid u.ok.stateid
  145. #define lk_denied       u.denied
  146. struct nfsd4_lockt {
  147. u32 lt_type;
  148. clientid_t lt_clientid;
  149. struct xdr_netobj lt_owner;
  150. u64 lt_offset;
  151. u64 lt_length;
  152. struct nfs4_stateowner *  lt_stateowner;
  153. struct nfsd4_lock_denied   lt_denied;
  154. };
  155.  
  156. struct nfsd4_locku {
  157. u32             lu_type;
  158. u32             lu_seqid;
  159. stateid_t       lu_stateid;
  160. u64             lu_offset;
  161. u64             lu_length;
  162. struct nfs4_stateowner  *lu_stateowner;
  163. };
  164. struct nfsd4_lookup {
  165. u32 lo_len;             /* request */
  166. char * lo_name;            /* request */
  167. };
  168. struct nfsd4_putfh {
  169. u32 pf_fhlen;           /* request */
  170. char *pf_fhval;          /* request */
  171. };
  172. struct nfsd4_open {
  173. u32 op_claim_type;      /* request */
  174. struct xdr_netobj op_fname;     /* request - everything but CLAIM_PREV */
  175. u32 op_delegate_type;   /* request - CLAIM_PREV only */
  176. stateid_t       op_delegate_stateid; /* request - response */
  177. u32 op_create;          /* request */
  178. u32 op_createmode;      /* request */
  179. u32 op_bmval[2];        /* request */
  180. union {                             /* request */
  181. struct iattr iattr;                      /* UNCHECKED4,GUARDED4 */
  182. nfs4_verifier verf;                                /* EXCLUSIVE4 */
  183. } u;
  184. clientid_t op_clientid;        /* request */
  185. struct xdr_netobj op_owner;           /* request */
  186. u32 op_seqid;           /* request */
  187. u32 op_share_access;    /* request */
  188. u32 op_share_deny;      /* request */
  189. stateid_t op_stateid;         /* response */
  190. u32 op_recall;          /* recall */
  191. struct nfsd4_change_info  op_cinfo; /* response */
  192. u32 op_rflags;          /* response */
  193. int op_truncate;        /* used during processing */
  194. struct nfs4_stateowner *op_stateowner; /* used during processing */
  195. struct nfs4_acl *op_acl;
  196. };
  197. #define op_iattr u.iattr
  198. #define op_verf u.verf
  199. struct nfsd4_open_confirm {
  200. stateid_t oc_req_stateid /* request */;
  201. u32 oc_seqid     /* request */;
  202. stateid_t oc_resp_stateid /* response */;
  203. struct nfs4_stateowner * oc_stateowner; /* response */
  204. };
  205. struct nfsd4_open_downgrade {
  206. stateid_t       od_stateid;
  207. u32             od_seqid;
  208. u32             od_share_access;
  209. u32             od_share_deny;
  210. struct nfs4_stateowner *od_stateowner;
  211. };
  212. struct nfsd4_read {
  213. stateid_t rd_stateid;         /* request */
  214. u64 rd_offset;          /* request */
  215. u32 rd_length;          /* request */
  216. struct kvec rd_iov[RPCSVC_MAXPAGES];
  217. int rd_vlen;
  218. struct file     *rd_filp;
  219. struct svc_rqst *rd_rqstp;          /* response */
  220. struct svc_fh * rd_fhp;             /* response */
  221. };
  222. struct nfsd4_readdir {
  223. u64 rd_cookie;          /* request */
  224. nfs4_verifier rd_verf;            /* request */
  225. u32 rd_dircount;        /* request */
  226. u32 rd_maxcount;        /* request */
  227. u32 rd_bmval[2];        /* request */
  228. struct svc_rqst *rd_rqstp;          /* response */
  229. struct svc_fh * rd_fhp;             /* response */
  230. struct readdir_cd common;
  231. u32 * buffer;
  232. int buflen;
  233. u32 * offset;
  234. };
  235. struct nfsd4_release_lockowner {
  236. clientid_t        rl_clientid;
  237. struct xdr_netobj rl_owner;
  238. };
  239. struct nfsd4_readlink {
  240. struct svc_rqst *rl_rqstp;          /* request */
  241. struct svc_fh * rl_fhp;             /* request */
  242. };
  243. struct nfsd4_remove {
  244. u32 rm_namelen;         /* request */
  245. char * rm_name;            /* request */
  246. struct nfsd4_change_info  rm_cinfo; /* response */
  247. };
  248. struct nfsd4_rename {
  249. u32 rn_snamelen;        /* request */
  250. char * rn_sname;           /* request */
  251. u32 rn_tnamelen;        /* request */
  252. char * rn_tname;           /* request */
  253. struct nfsd4_change_info  rn_sinfo; /* response */
  254. struct nfsd4_change_info  rn_tinfo; /* response */
  255. };
  256. struct nfsd4_setattr {
  257. stateid_t sa_stateid;         /* request */
  258. u32 sa_bmval[2];        /* request */
  259. struct iattr sa_iattr;           /* request */
  260. struct nfs4_acl *sa_acl;
  261. };
  262. struct nfsd4_setclientid {
  263. nfs4_verifier se_verf;            /* request */
  264. u32 se_namelen;         /* request */
  265. char * se_name;            /* request */
  266. u32 se_callback_prog;   /* request */
  267. u32 se_callback_netid_len;  /* request */
  268. char * se_callback_netid_val;  /* request */
  269. u32 se_callback_addr_len;   /* request */
  270. char * se_callback_addr_val;   /* request */
  271. u32 se_callback_ident;  /* request */
  272. clientid_t se_clientid;        /* response */
  273. nfs4_verifier se_confirm;         /* response */
  274. };
  275. struct nfsd4_setclientid_confirm {
  276. clientid_t sc_clientid;
  277. nfs4_verifier sc_confirm;
  278. };
  279. /* also used for NVERIFY */
  280. struct nfsd4_verify {
  281. u32 ve_bmval[2];        /* request */
  282. u32 ve_attrlen;         /* request */
  283. char * ve_attrval;         /* request */
  284. };
  285. struct nfsd4_write {
  286. stateid_t wr_stateid;         /* request */
  287. u64 wr_offset;          /* request */
  288. u32 wr_stable_how;      /* request */
  289. u32 wr_buflen;          /* request */
  290. struct kvec wr_vec[RPCSVC_MAXPAGES]; /* request */
  291. int wr_vlen;
  292. u32 wr_bytes_written;   /* response */
  293. u32 wr_how_written;     /* response */
  294. nfs4_verifier wr_verifier;        /* response */
  295. };
  296. struct nfsd4_op {
  297. int opnum;
  298. int status;
  299. union {
  300. struct nfsd4_access access;
  301. struct nfsd4_close close;
  302. struct nfsd4_commit commit;
  303. struct nfsd4_create create;
  304. struct nfsd4_delegreturn delegreturn;
  305. struct nfsd4_getattr getattr;
  306. struct svc_fh * getfh;
  307. struct nfsd4_link link;
  308. struct nfsd4_lock lock;
  309. struct nfsd4_lockt lockt;
  310. struct nfsd4_locku locku;
  311. struct nfsd4_lookup lookup;
  312. struct nfsd4_verify nverify;
  313. struct nfsd4_open open;
  314. struct nfsd4_open_confirm open_confirm;
  315. struct nfsd4_open_downgrade open_downgrade;
  316. struct nfsd4_putfh putfh;
  317. struct nfsd4_read read;
  318. struct nfsd4_readdir readdir;
  319. struct nfsd4_readlink readlink;
  320. struct nfsd4_remove remove;
  321. struct nfsd4_rename rename;
  322. clientid_t renew;
  323. struct nfsd4_setattr setattr;
  324. struct nfsd4_setclientid setclientid;
  325. struct nfsd4_setclientid_confirm setclientid_confirm;
  326. struct nfsd4_verify verify;
  327. struct nfsd4_write write;
  328. struct nfsd4_release_lockowner release_lockowner;
  329. } u;
  330. struct nfs4_replay * replay;
  331. };
  332. struct nfsd4_compoundargs {
  333. /* scratch variables for XDR decode */
  334. u32 * p;
  335. u32 * end;
  336. struct page ** pagelist;
  337. int pagelen;
  338. u32 tmp[8];
  339. u32 * tmpp;
  340. struct tmpbuf {
  341. struct tmpbuf *next;
  342. void (*release)(const void *);
  343. void *buf;
  344. } *to_free;
  345. struct svc_rqst *rqstp;
  346. u32 taglen;
  347. char * tag;
  348. u32 minorversion;
  349. u32 opcnt;
  350. struct nfsd4_op *ops;
  351. struct nfsd4_op iops[8];
  352. };
  353. struct nfsd4_compoundres {
  354. /* scratch variables for XDR encode */
  355. u32 * p;
  356. u32 * end;
  357. struct xdr_buf * xbuf;
  358. struct svc_rqst * rqstp;
  359. u32 taglen;
  360. char * tag;
  361. u32 opcnt;
  362. u32 * tagp; /* where to encode tag and  opcount */
  363. };
  364. #define NFS4_SVC_XDRSIZE sizeof(struct nfsd4_compoundargs)
  365. static inline void
  366. set_change_info(struct nfsd4_change_info *cinfo, struct svc_fh *fhp)
  367. {
  368. BUG_ON(!fhp->fh_pre_saved || !fhp->fh_post_saved);
  369. cinfo->atomic = 1;
  370. cinfo->before_ctime_sec = fhp->fh_pre_ctime.tv_sec;
  371. cinfo->before_ctime_nsec = fhp->fh_pre_ctime.tv_nsec;
  372. cinfo->after_ctime_sec = fhp->fh_post_ctime.tv_sec;
  373. cinfo->after_ctime_nsec = fhp->fh_post_ctime.tv_nsec;
  374. }
  375. int nfs4svc_encode_voidres(struct svc_rqst *, u32 *, void *);
  376. int nfs4svc_decode_compoundargs(struct svc_rqst *, u32 *, 
  377. struct nfsd4_compoundargs *);
  378. int nfs4svc_encode_compoundres(struct svc_rqst *, u32 *, 
  379. struct nfsd4_compoundres *);
  380. void nfsd4_encode_operation(struct nfsd4_compoundres *, struct nfsd4_op *);
  381. void nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op);
  382. int nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
  383.        struct dentry *dentry, u32 *buffer, int *countp, 
  384.        u32 *bmval, struct svc_rqst *);
  385. extern int nfsd4_setclientid(struct svc_rqst *rqstp, 
  386. struct nfsd4_setclientid *setclid);
  387. extern int nfsd4_setclientid_confirm(struct svc_rqst *rqstp, 
  388. struct nfsd4_setclientid_confirm *setclientid_confirm);
  389. extern int nfsd4_process_open1(struct nfsd4_open *open);
  390. extern int nfsd4_process_open2(struct svc_rqst *rqstp, 
  391. struct svc_fh *current_fh, struct nfsd4_open *open);
  392. extern int nfsd4_open_confirm(struct svc_rqst *rqstp, 
  393. struct svc_fh *current_fh, struct nfsd4_open_confirm *oc,
  394. struct nfs4_stateowner **);
  395. extern  int nfsd4_close(struct svc_rqst *rqstp, struct svc_fh *current_fh, 
  396. struct nfsd4_close *close,
  397. struct nfs4_stateowner **replay_owner);
  398. extern int nfsd4_open_downgrade(struct svc_rqst *rqstp, 
  399. struct svc_fh *current_fh, struct nfsd4_open_downgrade *od,
  400. struct nfs4_stateowner **replay_owner);
  401. extern int nfsd4_lock(struct svc_rqst *rqstp, struct svc_fh *current_fh, 
  402. struct nfsd4_lock *lock,
  403. struct nfs4_stateowner **replay_owner);
  404. extern int nfsd4_lockt(struct svc_rqst *rqstp, struct svc_fh *current_fh, 
  405. struct nfsd4_lockt *lockt);
  406. extern int nfsd4_locku(struct svc_rqst *rqstp, struct svc_fh *current_fh, 
  407. struct nfsd4_locku *locku,
  408. struct nfs4_stateowner **replay_owner);
  409. extern int
  410. nfsd4_release_lockowner(struct svc_rqst *rqstp,
  411. struct nfsd4_release_lockowner *rlockowner);
  412. extern void nfsd4_release_compoundargs(struct nfsd4_compoundargs *);
  413. extern int nfsd4_delegreturn(struct svc_rqst *rqstp,
  414. struct svc_fh *current_fh, struct nfsd4_delegreturn *dr);
  415. #endif
  416. /*
  417.  * Local variables:
  418.  *  c-basic-offset: 8
  419.  * End:
  420.  */