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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/nfsd/nfsfh.h
  3.  *
  4.  * This file describes the layout of the file handles as passed
  5.  * over the wire.
  6.  *
  7.  * Earlier versions of knfsd used to sign file handles using keyed MD5
  8.  * or SHA. I've removed this code, because it doesn't give you more
  9.  * security than blocking external access to port 2049 on your firewall.
  10.  *
  11.  * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
  12.  */
  13. #ifndef _LINUX_NFSD_FH_H
  14. #define _LINUX_NFSD_FH_H
  15. #include <asm/types.h>
  16. #ifdef __KERNEL__
  17. # include <linux/config.h>
  18. # include <linux/types.h>
  19. # include <linux/string.h>
  20. # include <linux/fs.h>
  21. #endif
  22. #include <linux/nfsd/const.h>
  23. #include <linux/nfsd/debug.h>
  24. /*
  25.  * This is the old "dentry style" Linux NFSv2 file handle.
  26.  *
  27.  * The xino and xdev fields are currently used to transport the
  28.  * ino/dev of the exported inode.
  29.  */
  30. struct nfs_fhbase_old {
  31. __u32 fb_dcookie; /* dentry cookie - always 0xfeebbaca */
  32. __u32 fb_ino; /* our inode number */
  33. __u32 fb_dirino; /* dir inode number, 0 for directories */
  34. __u32 fb_dev; /* our device */
  35. __u32 fb_xdev;
  36. __u32 fb_xino;
  37. __u32 fb_generation;
  38. };
  39. /*
  40.  * This is the new flexible, extensible style NFSv2/v3 file handle.
  41.  * by Neil Brown <neilb@cse.unsw.edu.au> - March 2000
  42.  *
  43.  * The file handle is seens as a list of 4byte words.
  44.  * The first word contains a version number (1) and four descriptor bytes
  45.  * that tell how the remaining 3 variable length fields should be handled.
  46.  * These three bytes are auth_type, fsid_type and fileid_type.
  47.  *
  48.  * All 4byte values are in host-byte-order.
  49.  *
  50.  * The auth_type field specifies how the filehandle can be authenticated
  51.  * This might allow a file to be confirmed to be in a writable part of a
  52.  * filetree without checking the path from it upto the root.
  53.  * Current values:
  54.  *     0  - No authentication.  fb_auth is 0 bytes long
  55.  * Possible future values:
  56.  *     1  - 4 bytes taken from MD5 hash of the remainer of the file handle
  57.  *          prefixed by a secret and with the important export flags.
  58.  *
  59.  * The fsid_type identifies how the filesystem (or export point) is
  60.  *    encoded.
  61.  *  Current values:
  62.  *     0  - 4 byte device id (ms-2-bytes major, ls-2-bytes minor), 4byte inode number
  63.  *        NOTE: we cannot use the kdev_t device id value, because kdev_t.h
  64.  *              says we mustn't.  We must break it up and reassemble.
  65.  *     1  - 4 byte user specified identifier
  66.  *     2  - 4 byte major, 4 byte minor, 4 byte inode number - DEPRECATED
  67.  *     3  - 4 byte device id, encoded for user-space, 4 byte inode number
  68.  *
  69.  * The fileid_type identified how the file within the filesystem is encoded.
  70.  * This is (will be) passed to, and set by, the underlying filesystem if it supports
  71.  * filehandle operations.  The filesystem must not use the value '0' or '0xff' and may
  72.  * only use the values 1 and 2 as defined below:
  73.  *  Current values:
  74.  *    0   - The root, or export point, of the filesystem.  fb_fileid is 0 bytes.
  75.  *    1   - 32bit inode number, 32 bit generation number.
  76.  *    2   - 32bit inode number, 32 bit generation number, 32 bit parent directory inode number.
  77.  *
  78.  */
  79. struct nfs_fhbase_new {
  80. __u8 fb_version; /* == 1, even => nfs_fhbase_old */
  81. __u8 fb_auth_type;
  82. __u8 fb_fsid_type;
  83. __u8 fb_fileid_type;
  84. __u32 fb_auth[1];
  85. /* __u32 fb_fsid[0]; floating */
  86. /* __u32 fb_fileid[0]; floating */
  87. };
  88. struct knfsd_fh {
  89. unsigned int fh_size; /* significant for NFSv3.
  90.  * Points to the current size while building
  91.  * a new file handle
  92.  */
  93. union {
  94. struct nfs_fhbase_old fh_old;
  95. __u32 fh_pad[NFS4_FHSIZE/4];
  96. struct nfs_fhbase_new fh_new;
  97. } fh_base;
  98. };
  99. #define ofh_dcookie fh_base.fh_old.fb_dcookie
  100. #define ofh_ino fh_base.fh_old.fb_ino
  101. #define ofh_dirino fh_base.fh_old.fb_dirino
  102. #define ofh_dev fh_base.fh_old.fb_dev
  103. #define ofh_xdev fh_base.fh_old.fb_xdev
  104. #define ofh_xino fh_base.fh_old.fb_xino
  105. #define ofh_generation fh_base.fh_old.fb_generation
  106. #define fh_version fh_base.fh_new.fb_version
  107. #define fh_fsid_type fh_base.fh_new.fb_fsid_type
  108. #define fh_auth_type fh_base.fh_new.fb_auth_type
  109. #define fh_fileid_type fh_base.fh_new.fb_fileid_type
  110. #define fh_auth fh_base.fh_new.fb_auth
  111. #define fh_fsid fh_base.fh_new.fb_auth
  112. #ifdef __KERNEL__
  113. static inline __u32 ino_t_to_u32(ino_t ino)
  114. {
  115. return (__u32) ino;
  116. }
  117. static inline ino_t u32_to_ino_t(__u32 uino)
  118. {
  119. return (ino_t) uino;
  120. }
  121. /*
  122.  * This is the internal representation of an NFS handle used in knfsd.
  123.  * pre_mtime/post_version will be used to support wcc_attr's in NFSv3.
  124.  */
  125. typedef struct svc_fh {
  126. struct knfsd_fh fh_handle; /* FH data */
  127. struct dentry * fh_dentry; /* validated dentry */
  128. struct svc_export * fh_export; /* export pointer */
  129. int fh_maxsize; /* max size for fh_handle */
  130. unsigned char fh_locked; /* inode locked by us */
  131. #ifdef CONFIG_NFSD_V3
  132. unsigned char fh_post_saved; /* post-op attrs saved */
  133. unsigned char fh_pre_saved; /* pre-op attrs saved */
  134. /* Pre-op attributes saved during fh_lock */
  135. __u64 fh_pre_size; /* size before operation */
  136. struct timespec fh_pre_mtime; /* mtime before oper */
  137. struct timespec fh_pre_ctime; /* ctime before oper */
  138. /* Post-op attributes saved in fh_unlock */
  139. umode_t fh_post_mode; /* i_mode */
  140. nlink_t fh_post_nlink; /* i_nlink */
  141. uid_t fh_post_uid; /* i_uid */
  142. gid_t fh_post_gid; /* i_gid */
  143. __u64 fh_post_size; /* i_size */
  144. unsigned long fh_post_blocks; /* i_blocks */
  145. unsigned long fh_post_blksize;/* i_blksize */
  146. __u32 fh_post_rdev[2];/* i_rdev */
  147. struct timespec fh_post_atime; /* i_atime */
  148. struct timespec fh_post_mtime; /* i_mtime */
  149. struct timespec fh_post_ctime; /* i_ctime */
  150. #endif /* CONFIG_NFSD_V3 */
  151. } svc_fh;
  152. static inline void mk_fsid_v0(u32 *fsidv, dev_t dev, ino_t ino)
  153. {
  154. fsidv[0] = htonl((MAJOR(dev)<<16) |
  155. MINOR(dev));
  156. fsidv[1] = ino_t_to_u32(ino);
  157. }
  158. static inline void mk_fsid_v1(u32 *fsidv, u32 fsid)
  159. {
  160. fsidv[0] = fsid;
  161. }
  162. static inline void mk_fsid_v2(u32 *fsidv, dev_t dev, ino_t ino)
  163. {
  164. fsidv[0] = htonl(MAJOR(dev));
  165. fsidv[1] = htonl(MINOR(dev));
  166. fsidv[2] = ino_t_to_u32(ino);
  167. }
  168. static inline void mk_fsid_v3(u32 *fsidv, dev_t dev, ino_t ino)
  169. {
  170. fsidv[0] = new_encode_dev(dev);
  171. fsidv[1] = ino_t_to_u32(ino);
  172. }
  173. static inline int key_len(int type)
  174. {
  175. switch(type) {
  176. case 0: return 8;
  177. case 1: return 4;
  178. case 2: return 12;
  179. case 3: return 8;
  180. default: return 0;
  181. }
  182. }
  183. /*
  184.  * Shorthand for dprintk()'s
  185.  */
  186. extern char * SVCFH_fmt(struct svc_fh *fhp);
  187. /*
  188.  * Function prototypes
  189.  */
  190. u32 fh_verify(struct svc_rqst *, struct svc_fh *, int, int);
  191. int fh_compose(struct svc_fh *, struct svc_export *, struct dentry *, struct svc_fh *);
  192. int fh_update(struct svc_fh *);
  193. void fh_put(struct svc_fh *);
  194. static __inline__ struct svc_fh *
  195. fh_copy(struct svc_fh *dst, struct svc_fh *src)
  196. {
  197. if (src->fh_dentry || src->fh_locked) {
  198. struct dentry *dentry = src->fh_dentry;
  199. printk(KERN_ERR "fh_copy: copying %s/%s, already verified!n",
  200. dentry->d_parent->d_name.name, dentry->d_name.name);
  201. }
  202. *dst = *src;
  203. return dst;
  204. }
  205. static __inline__ struct svc_fh *
  206. fh_init(struct svc_fh *fhp, int maxsize)
  207. {
  208. memset(fhp, 0, sizeof(*fhp));
  209. fhp->fh_maxsize = maxsize;
  210. return fhp;
  211. }
  212. #ifdef CONFIG_NFSD_V3
  213. /*
  214.  * Fill in the pre_op attr for the wcc data
  215.  */
  216. static inline void
  217. fill_pre_wcc(struct svc_fh *fhp)
  218. {
  219. struct inode    *inode;
  220. inode = fhp->fh_dentry->d_inode;
  221. if (!fhp->fh_pre_saved) {
  222. fhp->fh_pre_mtime = inode->i_mtime;
  223. fhp->fh_pre_ctime = inode->i_ctime;
  224. fhp->fh_pre_size  = inode->i_size;
  225. fhp->fh_pre_saved = 1;
  226. }
  227. }
  228. /*
  229.  * Fill in the post_op attr for the wcc data
  230.  */
  231. static inline void
  232. fill_post_wcc(struct svc_fh *fhp)
  233. {
  234. struct inode    *inode = fhp->fh_dentry->d_inode;
  235. if (fhp->fh_post_saved)
  236. printk("nfsd: inode locked twice during operation.n");
  237. fhp->fh_post_mode       = inode->i_mode;
  238. fhp->fh_post_nlink      = inode->i_nlink;
  239. fhp->fh_post_uid = inode->i_uid;
  240. fhp->fh_post_gid = inode->i_gid;
  241. fhp->fh_post_size       = inode->i_size;
  242. if (inode->i_blksize) {
  243. fhp->fh_post_blksize    = inode->i_blksize;
  244. fhp->fh_post_blocks     = inode->i_blocks;
  245. } else {
  246. fhp->fh_post_blksize    = BLOCK_SIZE;
  247. /* how much do we care for accuracy with MinixFS? */
  248. fhp->fh_post_blocks     = (inode->i_size+511) >> 9;
  249. }
  250. fhp->fh_post_rdev[0]    = htonl((u32)imajor(inode));
  251. fhp->fh_post_rdev[1]    = htonl((u32)iminor(inode));
  252. fhp->fh_post_atime      = inode->i_atime;
  253. fhp->fh_post_mtime      = inode->i_mtime;
  254. fhp->fh_post_ctime      = inode->i_ctime;
  255. fhp->fh_post_saved      = 1;
  256. }
  257. #else
  258. #define fill_pre_wcc(ignored)
  259. #define fill_post_wcc(notused)
  260. #endif /* CONFIG_NFSD_V3 */
  261. /*
  262.  * Lock a file handle/inode
  263.  * NOTE: both fh_lock and fh_unlock are done "by hand" in
  264.  * vfs.c:nfsd_rename as it needs to grab 2 i_sem's at once
  265.  * so, any changes here should be reflected there.
  266.  */
  267. static inline void
  268. fh_lock(struct svc_fh *fhp)
  269. {
  270. struct dentry *dentry = fhp->fh_dentry;
  271. struct inode *inode;
  272. dfprintk(FILEOP, "nfsd: fh_lock(%s) locked = %dn",
  273. SVCFH_fmt(fhp), fhp->fh_locked);
  274. if (!fhp->fh_dentry) {
  275. printk(KERN_ERR "fh_lock: fh not verified!n");
  276. return;
  277. }
  278. if (fhp->fh_locked) {
  279. printk(KERN_WARNING "fh_lock: %s/%s already locked!n",
  280. dentry->d_parent->d_name.name, dentry->d_name.name);
  281. return;
  282. }
  283. inode = dentry->d_inode;
  284. down(&inode->i_sem);
  285. fill_pre_wcc(fhp);
  286. fhp->fh_locked = 1;
  287. }
  288. /*
  289.  * Unlock a file handle/inode
  290.  */
  291. static inline void
  292. fh_unlock(struct svc_fh *fhp)
  293. {
  294. if (!fhp->fh_dentry)
  295. printk(KERN_ERR "fh_unlock: fh not verified!n");
  296. if (fhp->fh_locked) {
  297. fill_post_wcc(fhp);
  298. up(&fhp->fh_dentry->d_inode->i_sem);
  299. fhp->fh_locked = 0;
  300. }
  301. }
  302. #endif /* __KERNEL__ */
  303. #endif /* _LINUX_NFSD_FH_H */