4 * Copyright (C) 1995, 1996 by Volker Lendecke
11 #include <linux/types.h>
12 #include <linux/ncp_mount.h>
13 #include <linux/net.h>
14 #include <linux/mutex.h>
15 #include <linux/backing-dev.h>
16 #include <linux/workqueue.h>
18 #define NCP_DEFAULT_OPTIONS 0 /* 2 for packet signatures */
22 struct ncp_mount_data_kernel {
23 unsigned long flags; /* NCP_MOUNT_* flags */
24 unsigned int int_flags; /* internal flags */
25 #define NCP_IMOUNT_LOGGEDIN_POSSIBLE 0x0001
26 kuid_t mounted_uid; /* Who may umount() this filesystem? */
27 struct pid *wdog_pid; /* Who cares for our watchdog packets? */
28 unsigned int ncp_fd; /* The socket to the ncp port */
29 unsigned int time_out; /* How long should I wait after
30 sending a NCP request? */
31 unsigned int retry_count; /* And how often should I retry? */
32 unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
42 struct ncp_mount_data_kernel m; /* Nearly all of the mount data is of
43 interest for us later, so we store
46 __u8 name_space[NCP_NUMBER_OF_VOLUMES + 2];
48 struct socket *ncp_sock;/* ncp socket */
49 struct socket *info_sock;
53 u16 connection; /* Remote connection number */
55 u8 completion; /* Status message from server */
56 u8 conn_status; /* Bit 4 = 1 ==> Server going down, no
57 requests allowed anymore.
58 Bit 0 = 1 ==> Server is down. */
60 int buffer_size; /* Negotiated bufsize */
62 int reply_size; /* Size of last reply */
65 unsigned char *packet; /* Here we prepare requests and
67 unsigned char *txbuf; /* Storage for current request */
68 unsigned char *rxbuf; /* Storage for reply to current request */
70 int lock; /* To prevent mismatch in protocols. */
73 int current_size; /* for packet preparation */
78 struct mutex root_setup_lock;
80 /* info for packet signing */
81 int sign_wanted; /* 1=Server needs signed packets */
82 int sign_active; /* 0=don't do signing, 1=do */
83 char sign_root[8]; /* generated from password and encr. key */
86 /* Authentication info: NDS or BINDERY, username */
89 size_t object_name_len;
98 struct rw_semaphore auth_rwsem;
100 /* nls info: codepage for volume and charset for I/O */
101 struct nls_table *nls_vol;
102 struct nls_table *nls_io;
104 /* maximum age in jiffies */
110 spinlock_t requests_lock; /* Lock accesses to tx.requests, tx.creq and rcv.creq when STREAM mode */
112 void (*data_ready)(struct sock* sk);
113 void (*error_report)(struct sock* sk);
114 void (*write_space)(struct sock* sk); /* STREAM mode only */
116 struct work_struct tq; /* STREAM/DGRAM: data/error ready */
117 struct ncp_request_reply* creq; /* STREAM/DGRAM: awaiting reply from this request */
118 struct mutex creq_mutex; /* DGRAM only: lock accesses to rcv.creq */
120 unsigned int state; /* STREAM only: receiver state */
122 __u32 magic __packed;
128 __u16 type2 __packed;
129 } buf; /* STREAM only: temporary buffer */
130 unsigned char* ptr; /* STREAM only: pointer to data */
131 size_t len; /* STREAM only: length of data to receive */
134 struct list_head requests; /* STREAM only: queued requests */
135 struct work_struct tq; /* STREAM only: transmitter ready */
136 struct ncp_request_reply* creq; /* STREAM only: currently transmitted entry */
138 struct timer_list timeout_tm; /* DGRAM only: timeout timer */
139 struct work_struct timeout_tq; /* DGRAM only: associated queue, we run timers from process context */
140 int timeout_last; /* DGRAM only: current timeout length */
141 int timeout_retries; /* DGRAM only: retries left */
146 struct backing_dev_info bdi;
149 extern void ncp_tcp_rcv_proc(struct work_struct *work);
150 extern void ncp_tcp_tx_proc(struct work_struct *work);
151 extern void ncpdgram_rcv_proc(struct work_struct *work);
152 extern void ncpdgram_timeout_proc(struct work_struct *work);
153 extern void ncpdgram_timeout_call(unsigned long server);
154 extern void ncp_tcp_data_ready(struct sock* sk);
155 extern void ncp_tcp_write_space(struct sock* sk);
156 extern void ncp_tcp_error_report(struct sock* sk);
158 #define NCP_FLAG_UTF8 1
160 #define NCP_CLR_FLAG(server, flag) ((server)->flags &= ~(flag))
161 #define NCP_SET_FLAG(server, flag) ((server)->flags |= (flag))
162 #define NCP_IS_FLAG(server, flag) ((server)->flags & (flag))
164 static inline int ncp_conn_valid(struct ncp_server *server)
166 return ((server->conn_status & 0x11) == 0);
169 static inline void ncp_invalidate_conn(struct ncp_server *server)
171 server->conn_status |= 0x01;