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

Linux/Unix编程

开发平台:

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