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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ncp_fs_sb.h
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Volker Lendecke
  5.  *
  6.  */
  7. #ifndef _NCP_FS_SB
  8. #define _NCP_FS_SB
  9. #include <linux/types.h>
  10. #include <linux/ncp_mount.h>
  11. #include <linux/net.h>
  12. #ifdef __KERNEL__
  13. #include <linux/workqueue.h>
  14. #define NCP_DEFAULT_OPTIONS 0 /* 2 for packet signatures */
  15. struct sock;
  16. struct ncp_server {
  17. struct ncp_mount_data_kernel m; /* Nearly all of the mount data is of
  18.    interest for us later, so we store
  19.    it completely. */
  20. __u8 name_space[NCP_NUMBER_OF_VOLUMES + 2];
  21. struct file *ncp_filp; /* File pointer to ncp socket */
  22. struct socket *ncp_sock;/* ncp socket */
  23. struct file *info_filp;
  24. struct socket *info_sock;
  25. u8 sequence;
  26. u8 task;
  27. u16 connection; /* Remote connection number */
  28. u8 completion; /* Status message from server */
  29. u8 conn_status; /* Bit 4 = 1 ==> Server going down, no
  30.    requests allowed anymore.
  31.    Bit 0 = 1 ==> Server is down. */
  32. int buffer_size; /* Negotiated bufsize */
  33. int reply_size; /* Size of last reply */
  34. int packet_size;
  35. unsigned char *packet; /* Here we prepare requests and
  36.    receive replies */
  37. int lock; /* To prevent mismatch in protocols. */
  38. struct semaphore sem;
  39. int current_size; /* for packet preparation */
  40. int has_subfunction;
  41. int ncp_reply_size;
  42. int root_setuped;
  43. /* info for packet signing */
  44. int sign_wanted; /* 1=Server needs signed packets */
  45. int sign_active; /* 0=don't do signing, 1=do */
  46. char sign_root[8]; /* generated from password and encr. key */
  47. char sign_last[16];
  48. /* Authentication info: NDS or BINDERY, username */
  49. struct {
  50. int auth_type;
  51. size_t object_name_len;
  52. void* object_name;
  53. int object_type;
  54. } auth;
  55. /* Password info */
  56. struct {
  57. size_t len;
  58. void* data;
  59. } priv;
  60. /* nls info: codepage for volume and charset for I/O */
  61. struct nls_table *nls_vol;
  62. struct nls_table *nls_io;
  63. /* maximum age in jiffies */
  64. int dentry_ttl;
  65. /* miscellaneous */
  66. unsigned int flags;
  67. spinlock_t requests_lock; /* Lock accesses to tx.requests, tx.creq and rcv.creq when STREAM mode */
  68. void (*data_ready)(struct sock* sk, int len);
  69. void (*error_report)(struct sock* sk);
  70. void (*write_space)(struct sock* sk); /* STREAM mode only */
  71. struct {
  72. struct work_struct tq; /* STREAM/DGRAM: data/error ready */
  73. struct ncp_request_reply* creq; /* STREAM/DGRAM: awaiting reply from this request */
  74. struct semaphore creq_sem; /* DGRAM only: lock accesses to rcv.creq */
  75. unsigned int state; /* STREAM only: receiver state */
  76. struct {
  77. __u32 magic __attribute__((packed));
  78. __u32 len __attribute__((packed));
  79. __u16 type __attribute__((packed));
  80. __u16 p1 __attribute__((packed));
  81. __u16 p2 __attribute__((packed));
  82. __u16 p3 __attribute__((packed));
  83. __u16 type2 __attribute__((packed));
  84. } buf; /* STREAM only: temporary buffer */
  85. unsigned char* ptr; /* STREAM only: pointer to data */
  86. size_t len; /* STREAM only: length of data to receive */
  87. } rcv;
  88. struct {
  89. struct list_head requests; /* STREAM only: queued requests */
  90. struct work_struct tq; /* STREAM only: transmitter ready */
  91. struct ncp_request_reply* creq; /* STREAM only: currently transmitted entry */
  92. } tx;
  93. struct timer_list timeout_tm; /* DGRAM only: timeout timer */
  94. struct work_struct timeout_tq; /* DGRAM only: associated queue, we run timers from process context */
  95. int timeout_last; /* DGRAM only: current timeout length */
  96. int timeout_retries; /* DGRAM only: retries left */
  97. struct {
  98. size_t len;
  99. __u8 data[128];
  100. } unexpected_packet;
  101. };
  102. extern void ncp_tcp_rcv_proc(void *server);
  103. extern void ncp_tcp_tx_proc(void *server);
  104. extern void ncpdgram_rcv_proc(void *server);
  105. extern void ncpdgram_timeout_proc(void *server);
  106. extern void ncpdgram_timeout_call(unsigned long server);
  107. extern void ncp_tcp_data_ready(struct sock* sk, int len);
  108. extern void ncp_tcp_write_space(struct sock* sk);
  109. extern void ncp_tcp_error_report(struct sock* sk);
  110. #define NCP_FLAG_UTF8 1
  111. #define NCP_CLR_FLAG(server, flag) ((server)->flags &= ~(flag))
  112. #define NCP_SET_FLAG(server, flag) ((server)->flags |= (flag))
  113. #define NCP_IS_FLAG(server, flag) ((server)->flags & (flag))
  114. static inline int ncp_conn_valid(struct ncp_server *server)
  115. {
  116. return ((server->conn_status & 0x11) == 0);
  117. }
  118. static inline void ncp_invalidate_conn(struct ncp_server *server)
  119. {
  120. server->conn_status |= 0x01;
  121. }
  122. #endif /* __KERNEL__ */
  123. #endif
  124.