smb_fs.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * smb_fs.h
  3. *
  4. * Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
  5. * Copyright (C) 1997 by Volker Lendecke
  6. *
  7. */
  8. #ifndef _LINUX_SMB_FS_H
  9. #define _LINUX_SMB_FS_H
  10. #include <linux/jiffies.h>
  11. #include <linux/smb.h>
  12. /*
  13. * ioctl commands
  14. */
  15. #define SMB_IOC_GETMOUNTUID _IOR('u', 1, __kernel_old_uid_t)
  16. #define SMB_IOC_NEWCONN _IOW('u', 2, struct smb_conn_opt)
  17. /* __kernel_uid_t can never change, so we have to use __kernel_uid32_t */
  18. #define SMB_IOC_GETMOUNTUID32 _IOR('u', 3, __kernel_uid32_t)
  19. #ifdef __KERNEL__
  20. #include <linux/smb_fs_i.h>
  21. #include <linux/smb_fs_sb.h>
  22. #include <linux/fs.h>
  23. #include <linux/pagemap.h>
  24. #include <linux/vmalloc.h>
  25. #include <linux/smb_mount.h>
  26. #include <asm/unaligned.h>
  27. static inline struct smb_sb_info *SMB_SB(struct super_block *sb)
  28. {
  29. return sb->s_fs_info;
  30. }
  31. static inline struct smb_inode_info *SMB_I(struct inode *inode)
  32. {
  33. return container_of(inode, struct smb_inode_info, vfs_inode);
  34. }
  35. /* macro names are short for word, double-word, long value (?) */
  36. #define WVAL(buf,pos) \
  37. (le16_to_cpu(get_unaligned((__le16 *)((u8 *)(buf) + (pos)))))
  38. #define DVAL(buf,pos) \
  39. (le32_to_cpu(get_unaligned((__le32 *)((u8 *)(buf) + (pos)))))
  40. #define LVAL(buf,pos) \
  41. (le64_to_cpu(get_unaligned((__le64 *)((u8 *)(buf) + (pos)))))
  42. #define WSET(buf,pos,val) \
  43. put_unaligned(cpu_to_le16((u16)(val)), (__le16 *)((u8 *)(buf) + (pos)))
  44. #define DSET(buf,pos,val) \
  45. put_unaligned(cpu_to_le32((u32)(val)), (__le32 *)((u8 *)(buf) + (pos)))
  46. #define LSET(buf,pos,val) \
  47. put_unaligned(cpu_to_le64((u64)(val)), (__le64 *)((u8 *)(buf) + (pos)))
  48. /* where to find the base of the SMB packet proper */
  49. #define smb_base(buf) ((u8 *)(((u8 *)(buf))+4))
  50. /*
  51. * Flags for the in-memory inode
  52. */
  53. #define SMB_F_LOCALWRITE 0x02 /* file modified locally */
  54. /* NT1 protocol capability bits */
  55. #define SMB_CAP_RAW_MODE 0x00000001
  56. #define SMB_CAP_MPX_MODE 0x00000002
  57. #define SMB_CAP_UNICODE 0x00000004
  58. #define SMB_CAP_LARGE_FILES 0x00000008
  59. #define SMB_CAP_NT_SMBS 0x00000010
  60. #define SMB_CAP_RPC_REMOTE_APIS 0x00000020
  61. #define SMB_CAP_STATUS32 0x00000040
  62. #define SMB_CAP_LEVEL_II_OPLOCKS 0x00000080
  63. #define SMB_CAP_LOCK_AND_READ 0x00000100
  64. #define SMB_CAP_NT_FIND 0x00000200
  65. #define SMB_CAP_DFS 0x00001000
  66. #define SMB_CAP_LARGE_READX 0x00004000
  67. #define SMB_CAP_LARGE_WRITEX 0x00008000
  68. #define SMB_CAP_UNIX 0x00800000 /* unofficial ... */
  69. /*
  70. * This is the time we allow an inode, dentry or dir cache to live. It is bad
  71. * for performance to have shorter ttl on an inode than on the cache. It can
  72. * cause refresh on each inode for a dir listing ... one-by-one
  73. */
  74. #define SMB_MAX_AGE(server) (((server)->mnt->ttl * HZ) / 1000)
  75. static inline void
  76. smb_age_dentry(struct smb_sb_info *server, struct dentry *dentry)
  77. {
  78. dentry->d_time = jiffies - SMB_MAX_AGE(server);
  79. }
  80. struct smb_cache_head {
  81. time_t mtime; /* unused */
  82. unsigned long time; /* cache age */
  83. unsigned long end; /* last valid fpos in cache */
  84. int eof;
  85. };
  86. #define SMB_DIRCACHE_SIZE ((int)(PAGE_CACHE_SIZE/sizeof(struct dentry *)))
  87. union smb_dir_cache {
  88. struct smb_cache_head head;
  89. struct dentry *dentry[SMB_DIRCACHE_SIZE];
  90. };
  91. #define SMB_FIRSTCACHE_SIZE ((int)((SMB_DIRCACHE_SIZE * \
  92. sizeof(struct dentry *) - sizeof(struct smb_cache_head)) / \
  93. sizeof(struct dentry *)))
  94. #define SMB_DIRCACHE_START (SMB_DIRCACHE_SIZE - SMB_FIRSTCACHE_SIZE)
  95. struct smb_cache_control {
  96. struct smb_cache_head head;
  97. struct page *page;
  98. union smb_dir_cache *cache;
  99. unsigned long fpos, ofs;
  100. int filled, valid, idx;
  101. };
  102. #define SMB_OPS_NUM_STATIC 5
  103. struct smb_ops {
  104. int (*read)(struct inode *inode, loff_t offset, int count,
  105. char *data);
  106. int (*write)(struct inode *inode, loff_t offset, int count, const
  107. char *data);
  108. int (*readdir)(struct file *filp, void *dirent, filldir_t filldir,
  109. struct smb_cache_control *ctl);
  110. int (*getattr)(struct smb_sb_info *server, struct dentry *dir,
  111. struct smb_fattr *fattr);
  112. /* int (*setattr)(...); */ /* setattr is really icky! */
  113. int (*truncate)(struct inode *inode, loff_t length);
  114. /* --- --- --- end of "static" entries --- --- --- */
  115. int (*convert)(unsigned char *output, int olen,
  116. const unsigned char *input, int ilen,
  117. struct nls_table *nls_from,
  118. struct nls_table *nls_to);
  119. };
  120. static inline int
  121. smb_is_open(struct inode *i)
  122. {
  123. return (SMB_I(i)->open == server_from_inode(i)->generation);
  124. }
  125. extern void smb_install_null_ops(struct smb_ops *);
  126. #endif /* __KERNEL__ */
  127. #endif /* _LINUX_SMB_FS_H */