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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ncp_fs.h
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Volker Lendecke
  5.  *
  6.  */
  7. #ifndef _LINUX_NCP_FS_H
  8. #define _LINUX_NCP_FS_H
  9. #include <linux/fs.h>
  10. #include <linux/in.h>
  11. #include <linux/types.h>
  12. #include <linux/ncp_fs_i.h>
  13. #include <linux/ncp_fs_sb.h>
  14. #include <linux/ipx.h>
  15. #include <linux/ncp_no.h>
  16. /*
  17.  * ioctl commands
  18.  */
  19. struct ncp_ioctl_request {
  20. unsigned int function;
  21. unsigned int size;
  22. char __user *data;
  23. };
  24. struct ncp_fs_info {
  25. int version;
  26. struct sockaddr_ipx addr;
  27. __kernel_uid_t mounted_uid;
  28. int connection; /* Connection number the server assigned us */
  29. int buffer_size; /* The negotiated buffer size, to be
  30.    used for read/write requests! */
  31. int volume_number;
  32. __le32 directory_id;
  33. };
  34. struct ncp_fs_info_v2 {
  35. int version;
  36. unsigned long mounted_uid;
  37. unsigned int connection;
  38. unsigned int buffer_size;
  39. unsigned int volume_number;
  40. __le32 directory_id;
  41. __u32 dummy1;
  42. __u32 dummy2;
  43. __u32 dummy3;
  44. };
  45. struct ncp_sign_init
  46. {
  47. char sign_root[8];
  48. char sign_last[16];
  49. };
  50. struct ncp_lock_ioctl
  51. {
  52. #define NCP_LOCK_LOG 0
  53. #define NCP_LOCK_SH 1
  54. #define NCP_LOCK_EX 2
  55. #define NCP_LOCK_CLEAR 256
  56. int cmd;
  57. int origin;
  58. unsigned int offset;
  59. unsigned int length;
  60. #define NCP_LOCK_DEFAULT_TIMEOUT 18
  61. #define NCP_LOCK_MAX_TIMEOUT 180
  62. int timeout;
  63. };
  64. struct ncp_setroot_ioctl
  65. {
  66. int volNumber;
  67. int namespace;
  68. __le32 dirEntNum;
  69. };
  70. struct ncp_objectname_ioctl
  71. {
  72. #define NCP_AUTH_NONE 0x00
  73. #define NCP_AUTH_BIND 0x31
  74. #define NCP_AUTH_NDS 0x32
  75. int auth_type;
  76. size_t object_name_len;
  77. void __user * object_name; /* an userspace data, in most cases user name */
  78. };
  79. struct ncp_privatedata_ioctl
  80. {
  81. size_t len;
  82. void __user * data; /* ~1000 for NDS */
  83. };
  84. /* NLS charsets by ioctl */
  85. #define NCP_IOCSNAME_LEN 20
  86. struct ncp_nls_ioctl
  87. {
  88. unsigned char codepage[NCP_IOCSNAME_LEN+1];
  89. unsigned char iocharset[NCP_IOCSNAME_LEN+1];
  90. };
  91. #define NCP_IOC_NCPREQUEST _IOR('n', 1, struct ncp_ioctl_request)
  92. #define NCP_IOC_GETMOUNTUID _IOW('n', 2, __kernel_old_uid_t)
  93. #define NCP_IOC_GETMOUNTUID2 _IOW('n', 2, unsigned long)
  94. #define NCP_IOC_CONN_LOGGED_IN          _IO('n', 3)
  95. #define NCP_GET_FS_INFO_VERSION    (1)
  96. #define NCP_IOC_GET_FS_INFO             _IOWR('n', 4, struct ncp_fs_info)
  97. #define NCP_GET_FS_INFO_VERSION_V2 (2)
  98. #define NCP_IOC_GET_FS_INFO_V2 _IOWR('n', 4, struct ncp_fs_info_v2)
  99. #define NCP_IOC_SIGN_INIT _IOR('n', 5, struct ncp_sign_init)
  100. #define NCP_IOC_SIGN_WANTED _IOR('n', 6, int)
  101. #define NCP_IOC_SET_SIGN_WANTED _IOW('n', 6, int)
  102. #define NCP_IOC_LOCKUNLOCK _IOR('n', 7, struct ncp_lock_ioctl)
  103. #define NCP_IOC_GETROOT _IOW('n', 8, struct ncp_setroot_ioctl)
  104. #define NCP_IOC_SETROOT _IOR('n', 8, struct ncp_setroot_ioctl)
  105. #define NCP_IOC_GETOBJECTNAME _IOWR('n', 9, struct ncp_objectname_ioctl)
  106. #define NCP_IOC_SETOBJECTNAME _IOR('n', 9, struct ncp_objectname_ioctl)
  107. #define NCP_IOC_GETPRIVATEDATA _IOWR('n', 10, struct ncp_privatedata_ioctl)
  108. #define NCP_IOC_SETPRIVATEDATA _IOR('n', 10, struct ncp_privatedata_ioctl)
  109. #define NCP_IOC_GETCHARSETS _IOWR('n', 11, struct ncp_nls_ioctl)
  110. #define NCP_IOC_SETCHARSETS _IOR('n', 11, struct ncp_nls_ioctl)
  111. #define NCP_IOC_GETDENTRYTTL _IOW('n', 12, __u32)
  112. #define NCP_IOC_SETDENTRYTTL _IOR('n', 12, __u32)
  113. /*
  114.  * The packet size to allocate. One page should be enough.
  115.  */
  116. #define NCP_PACKET_SIZE 4070
  117. #define NCP_MAXPATHLEN 255
  118. #define NCP_MAXNAMELEN 14
  119. #ifdef __KERNEL__
  120. #include <linux/config.h>
  121. /* undef because public define in umsdos_fs.h (ncp_fs.h isn't public) */
  122. #undef PRINTK
  123. /* define because it is easy to change PRINTK to {*}PRINTK */
  124. #define PRINTK(format, args...) printk(KERN_DEBUG format , ## args)
  125. #undef NCPFS_PARANOIA
  126. #ifdef NCPFS_PARANOIA
  127. #define PPRINTK(format, args...) PRINTK(format , ## args)
  128. #else
  129. #define PPRINTK(format, args...)
  130. #endif
  131. #ifndef DEBUG_NCP
  132. #define DEBUG_NCP 0
  133. #endif
  134. #if DEBUG_NCP > 0
  135. #define DPRINTK(format, args...) PRINTK(format , ## args)
  136. #else
  137. #define DPRINTK(format, args...)
  138. #endif
  139. #if DEBUG_NCP > 1
  140. #define DDPRINTK(format, args...) PRINTK(format , ## args)
  141. #else
  142. #define DDPRINTK(format, args...)
  143. #endif
  144. #define NCP_MAX_RPC_TIMEOUT (6*HZ)
  145. struct ncp_entry_info {
  146. struct nw_info_struct i;
  147. ino_t ino;
  148. int opened;
  149. int access;
  150. unsigned int volume;
  151. __u8 file_handle[6];
  152. };
  153. /* Guess, what 0x564c is :-) */
  154. #define NCP_SUPER_MAGIC  0x564c
  155. static inline struct ncp_server *NCP_SBP(struct super_block *sb)
  156. {
  157. return sb->s_fs_info;
  158. }
  159. #define NCP_SERVER(inode) NCP_SBP((inode)->i_sb)
  160. static inline struct ncp_inode_info *NCP_FINFO(struct inode *inode)
  161. {
  162. return container_of(inode, struct ncp_inode_info, vfs_inode);
  163. }
  164. #ifdef DEBUG_NCP_MALLOC
  165. #include <linux/slab.h>
  166. extern int ncp_malloced;
  167. extern int ncp_current_malloced;
  168. static inline void *
  169.  ncp_kmalloc(unsigned int size, int priority)
  170. {
  171. ncp_malloced += 1;
  172. ncp_current_malloced += 1;
  173. return kmalloc(size, priority);
  174. }
  175. static inline void ncp_kfree_s(void *obj, int size)
  176. {
  177. ncp_current_malloced -= 1;
  178. kfree(obj);
  179. }
  180. #else /* DEBUG_NCP_MALLOC */
  181. #define ncp_kmalloc(s,p) kmalloc(s,p)
  182. #define ncp_kfree_s(o,s) kfree(o)
  183. #endif /* DEBUG_NCP_MALLOC */
  184. /* linux/fs/ncpfs/inode.c */
  185. int ncp_notify_change(struct dentry *, struct iattr *);
  186. struct inode *ncp_iget(struct super_block *, struct ncp_entry_info *);
  187. void ncp_update_inode(struct inode *, struct ncp_entry_info *);
  188. void ncp_update_inode2(struct inode *, struct ncp_entry_info *);
  189. /* linux/fs/ncpfs/dir.c */
  190. extern struct inode_operations ncp_dir_inode_operations;
  191. extern struct file_operations ncp_dir_operations;
  192. int ncp_conn_logged_in(struct super_block *);
  193. int ncp_date_dos2unix(__le16 time, __le16 date);
  194. void ncp_date_unix2dos(int unix_date, __le16 * time, __le16 * date);
  195. /* linux/fs/ncpfs/ioctl.c */
  196. int ncp_ioctl(struct inode *, struct file *, unsigned int, unsigned long);
  197. /* linux/fs/ncpfs/sock.c */
  198. int ncp_request2(struct ncp_server *server, int function,
  199. void* reply, int max_reply_size);
  200. static inline int ncp_request(struct ncp_server *server, int function) {
  201. return ncp_request2(server, function, server->packet, server->packet_size);
  202. }
  203. int ncp_connect(struct ncp_server *server);
  204. int ncp_disconnect(struct ncp_server *server);
  205. void ncp_lock_server(struct ncp_server *server);
  206. void ncp_unlock_server(struct ncp_server *server);
  207. /* linux/fs/ncpfs/file.c */
  208. extern struct inode_operations ncp_file_inode_operations;
  209. extern struct file_operations ncp_file_operations;
  210. int ncp_make_open(struct inode *, int);
  211. /* linux/fs/ncpfs/mmap.c */
  212. int ncp_mmap(struct file *, struct vm_area_struct *);
  213. /* linux/fs/ncpfs/ncplib_kernel.c */
  214. int ncp_make_closed(struct inode *);
  215. #define ncp_namespace(i) (NCP_SERVER(i)->name_space[NCP_FINFO(i)->volNumber])
  216. static inline int ncp_preserve_entry_case(struct inode *i, __u32 nscreator)
  217. {
  218. #ifdef CONFIG_NCPFS_SMALLDOS
  219. int ns = ncp_namespace(i);
  220. if ((ns == NW_NS_DOS)
  221. #ifdef CONFIG_NCPFS_OS2_NS
  222. || ((ns == NW_NS_OS2) && (nscreator == NW_NS_DOS))
  223. #endif /* CONFIG_NCPFS_OS2_NS */
  224. )
  225. return 0;
  226. #endif /* CONFIG_NCPFS_SMALLDOS */
  227. return 1;
  228. }
  229. #define ncp_preserve_case(i) (ncp_namespace(i) != NW_NS_DOS)
  230. static inline int ncp_case_sensitive(struct inode *i)
  231. {
  232. #ifdef CONFIG_NCPFS_NFS_NS
  233. return ncp_namespace(i) == NW_NS_NFS;
  234. #else
  235. return 0;
  236. #endif /* CONFIG_NCPFS_NFS_NS */
  237. #endif /* __KERNEL__ */
  238. #endif /* _LINUX_NCP_FS_H */