nfsfh.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

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.  *  Possible future encodings:
  66.  *     1  - 4 byte user specified identifier
  67.  *
  68.  * The fileid_type identified how the file within the filesystem is encoded.
  69.  * This is (will be) passed to, and set by, the underlying filesystem if it supports
  70.  * filehandle operations.  The filesystem must not use the value '0' or '0xff' and may
  71.  * only use the values 1 and 2 as defined below:
  72.  *  Current values:
  73.  *    0   - The root, or export point, of the filesystem.  fb_fileid is 0 bytes.
  74.  *    1   - 32bit inode number, 32 bit generation number.
  75.  *    2   - 32bit inode number, 32 bit generation number, 32 bit parent directory inode number.
  76.  *
  77.  */
  78. struct nfs_fhbase_new {
  79. __u8 fb_version; /* == 1, even => nfs_fhbase_old */
  80. __u8 fb_auth_type;
  81. __u8 fb_fsid_type;
  82. __u8 fb_fileid_type;
  83. __u32 fb_auth[1];
  84. /* __u32 fb_fsid[0]; floating */
  85. /* __u32 fb_fileid[0]; floating */
  86. };
  87. struct knfsd_fh {
  88. unsigned int fh_size; /* significant for NFSv3.
  89.  * Points to the current size while building
  90.  * a new file handle
  91.  */
  92. union {
  93. struct nfs_fhbase_old fh_old;
  94. __u32 fh_pad[NFS3_FHSIZE/4];
  95. struct nfs_fhbase_new fh_new;
  96. } fh_base;
  97. };
  98. #define ofh_dcookie fh_base.fh_old.fb_dcookie
  99. #define ofh_ino fh_base.fh_old.fb_ino
  100. #define ofh_dirino fh_base.fh_old.fb_dirino
  101. #define ofh_dev fh_base.fh_old.fb_dev
  102. #define ofh_xdev fh_base.fh_old.fb_xdev
  103. #define ofh_xino fh_base.fh_old.fb_xino
  104. #define ofh_generation fh_base.fh_old.fb_generation
  105. #define fh_version fh_base.fh_new.fb_version
  106. #define fh_fsid_type fh_base.fh_new.fb_fsid_type
  107. #define fh_auth_type fh_base.fh_new.fb_auth_type
  108. #define fh_fileid_type fh_base.fh_new.fb_fileid_type
  109. #define fh_auth fh_base.fh_new.fb_auth
  110. #ifdef __KERNEL__
  111. /*
  112.  * Conversion macros for the filehandle fields.
  113.  */
  114. static inline __u32 kdev_t_to_u32(kdev_t dev)
  115. {
  116. return (__u32) dev;
  117. }
  118. static inline kdev_t u32_to_kdev_t(__u32 udev)
  119. {
  120. return (kdev_t) udev;
  121. }
  122. static inline __u32 ino_t_to_u32(ino_t ino)
  123. {
  124. return (__u32) ino;
  125. }
  126. static inline ino_t u32_to_ino_t(__u32 uino)
  127. {
  128. return (ino_t) uino;
  129. }
  130. /*
  131.  * This is the internal representation of an NFS handle used in knfsd.
  132.  * pre_mtime/post_version will be used to support wcc_attr's in NFSv3.
  133.  */
  134. typedef struct svc_fh {
  135. struct knfsd_fh fh_handle; /* FH data */
  136. struct dentry * fh_dentry; /* validated dentry */
  137. struct svc_export * fh_export; /* export pointer */
  138. int fh_maxsize; /* max size for fh_handle */
  139. unsigned char fh_locked; /* inode locked by us */
  140. #ifdef CONFIG_NFSD_V3
  141. unsigned char fh_post_saved; /* post-op attrs saved */
  142. unsigned char fh_pre_saved; /* pre-op attrs saved */
  143. /* Pre-op attributes saved during fh_lock */
  144. __u64 fh_pre_size; /* size before operation */
  145. time_t fh_pre_mtime; /* mtime before oper */
  146. time_t fh_pre_ctime; /* ctime before oper */
  147. /* Post-op attributes saved in fh_unlock */
  148. umode_t fh_post_mode; /* i_mode */
  149. nlink_t fh_post_nlink; /* i_nlink */
  150. uid_t fh_post_uid; /* i_uid */
  151. gid_t fh_post_gid; /* i_gid */
  152. __u64 fh_post_size; /* i_size */
  153. unsigned long fh_post_blocks; /* i_blocks */
  154. unsigned long fh_post_blksize;/* i_blksize */
  155. kdev_t fh_post_rdev; /* i_rdev */
  156. time_t fh_post_atime; /* i_atime */
  157. time_t fh_post_mtime; /* i_mtime */
  158. time_t fh_post_ctime; /* i_ctime */
  159. #endif /* CONFIG_NFSD_V3 */
  160. } svc_fh;
  161. /*
  162.  * Shorthand for dprintk()'s
  163.  */
  164. inline static char * SVCFH_fmt(struct svc_fh *fhp)
  165. {
  166. struct knfsd_fh *fh = &fhp->fh_handle;
  167. static char buf[80];
  168. sprintf(buf, "%d: %08x %08x %08x %08x %08x %08x",
  169. fh->fh_size,
  170. fh->fh_base.fh_pad[0],
  171. fh->fh_base.fh_pad[1],
  172. fh->fh_base.fh_pad[2],
  173. fh->fh_base.fh_pad[3],
  174. fh->fh_base.fh_pad[4],
  175. fh->fh_base.fh_pad[5]);
  176. return buf;
  177. }
  178. /*
  179.  * Function prototypes
  180.  */
  181. u32 fh_verify(struct svc_rqst *, struct svc_fh *, int, int);
  182. int fh_compose(struct svc_fh *, struct svc_export *, struct dentry *, struct svc_fh *);
  183. int fh_update(struct svc_fh *);
  184. void fh_put(struct svc_fh *);
  185. static __inline__ struct svc_fh *
  186. fh_copy(struct svc_fh *dst, struct svc_fh *src)
  187. {
  188. if (src->fh_dentry || src->fh_locked) {
  189. struct dentry *dentry = src->fh_dentry;
  190. printk(KERN_ERR "fh_copy: copying %s/%s, already verified!n",
  191. dentry->d_parent->d_name.name, dentry->d_name.name);
  192. }
  193. *dst = *src;
  194. return dst;
  195. }
  196. static __inline__ struct svc_fh *
  197. fh_init(struct svc_fh *fhp, int maxsize)
  198. {
  199. memset(fhp, 0, sizeof(*fhp));
  200. fhp->fh_maxsize = maxsize;
  201. return fhp;
  202. }
  203. #ifdef CONFIG_NFSD_V3
  204. /*
  205.  * Fill in the pre_op attr for the wcc data
  206.  */
  207. static inline void
  208. fill_pre_wcc(struct svc_fh *fhp)
  209. {
  210. struct inode    *inode;
  211. inode = fhp->fh_dentry->d_inode;
  212. if (!fhp->fh_pre_saved) {
  213. fhp->fh_pre_mtime = inode->i_mtime;
  214. fhp->fh_pre_ctime = inode->i_ctime;
  215. fhp->fh_pre_size  = inode->i_size;
  216. fhp->fh_pre_saved = 1;
  217. }
  218. }
  219. /*
  220.  * Fill in the post_op attr for the wcc data
  221.  */
  222. static inline void
  223. fill_post_wcc(struct svc_fh *fhp)
  224. {
  225. struct inode    *inode = fhp->fh_dentry->d_inode;
  226. if (fhp->fh_post_saved)
  227. printk("nfsd: inode locked twice during operation.n");
  228. fhp->fh_post_mode       = inode->i_mode;
  229. fhp->fh_post_nlink      = inode->i_nlink;
  230. fhp->fh_post_uid = inode->i_uid;
  231. fhp->fh_post_gid = inode->i_gid;
  232. fhp->fh_post_size       = inode->i_size;
  233. if (inode->i_blksize) {
  234. fhp->fh_post_blksize    = inode->i_blksize;
  235. fhp->fh_post_blocks     = inode->i_blocks;
  236. } else {
  237. fhp->fh_post_blksize    = BLOCK_SIZE;
  238. /* how much do we care for accuracy with MinixFS? */
  239. fhp->fh_post_blocks     = (inode->i_size+511) >> 9;
  240. }
  241. fhp->fh_post_rdev       = inode->i_rdev;
  242. fhp->fh_post_atime      = inode->i_atime;
  243. fhp->fh_post_mtime      = inode->i_mtime;
  244. fhp->fh_post_ctime      = inode->i_ctime;
  245. fhp->fh_post_saved      = 1;
  246. }
  247. #else
  248. #define fill_pre_wcc(ignored)
  249. #define fill_post_wcc(notused)
  250. #endif /* CONFIG_NFSD_V3 */
  251. /*
  252.  * Lock a file handle/inode
  253.  * NOTE: both fh_lock and fh_unlock are done "by hand" in
  254.  * vfs.c:nfsd_rename as it needs to grab 2 i_sem's at once
  255.  * so, any changes here should be reflected there.
  256.  */
  257. static inline void
  258. fh_lock(struct svc_fh *fhp)
  259. {
  260. struct dentry *dentry = fhp->fh_dentry;
  261. struct inode *inode;
  262. dfprintk(FILEOP, "nfsd: fh_lock(%s) locked = %dn",
  263. SVCFH_fmt(fhp), fhp->fh_locked);
  264. if (!fhp->fh_dentry) {
  265. printk(KERN_ERR "fh_lock: fh not verified!n");
  266. return;
  267. }
  268. if (fhp->fh_locked) {
  269. printk(KERN_WARNING "fh_lock: %s/%s already locked!n",
  270. dentry->d_parent->d_name.name, dentry->d_name.name);
  271. return;
  272. }
  273. inode = dentry->d_inode;
  274. down(&inode->i_sem);
  275. fill_pre_wcc(fhp);
  276. fhp->fh_locked = 1;
  277. }
  278. /*
  279.  * Unlock a file handle/inode
  280.  */
  281. static inline void
  282. fh_unlock(struct svc_fh *fhp)
  283. {
  284. if (!fhp->fh_dentry)
  285. printk(KERN_ERR "fh_unlock: fh not verified!n");
  286. if (fhp->fh_locked) {
  287. fill_post_wcc(fhp);
  288. up(&fhp->fh_dentry->d_inode->i_sem);
  289. fhp->fh_locked = 0;
  290. }
  291. }
  292. #endif /* __KERNEL__ */
  293. #endif /* _LINUX_NFSD_FH_H */