blob: 55e26fd8088694308aeee3ceff1d11b91d6b1fb5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ncp_fs_sb.h
3 *
4 * Copyright (C) 1995, 1996 by Volker Lendecke
5 *
6 */
7
8#ifndef _NCP_FS_SB
9#define _NCP_FS_SB
10
11#include <linux/types.h>
12#include <linux/ncp_mount.h>
13#include <linux/net.h>
Ingo Molnar8e3f9042006-03-23 03:00:43 -080014#include <linux/mutex.h>
Jens Axboef1970c72010-04-22 12:31:11 +020015#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/workqueue.h>
17
18#define NCP_DEFAULT_OPTIONS 0 /* 2 for packet signatures */
19
20struct sock;
21
Al Viro32c419d2011-01-12 17:37:47 -050022struct 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
Eric W. Biederman1ac7fd82012-02-07 16:28:28 -080026 kuid_t mounted_uid; /* Who may umount() this filesystem? */
Al Viro32c419d2011-01-12 17:37:47 -050027 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];
Eric W. Biederman1ac7fd82012-02-07 16:28:28 -080033 kuid_t uid;
34 kgid_t gid;
Al Viro16767652012-05-19 09:54:29 -040035 umode_t file_mode;
36 umode_t dir_mode;
Al Viro32c419d2011-01-12 17:37:47 -050037 int info_fd;
38};
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040struct ncp_server {
Al Viro1dcddd42013-10-03 13:22:44 -040041 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 struct ncp_mount_data_kernel m; /* Nearly all of the mount data is of
43 interest for us later, so we store
44 it completely. */
45
46 __u8 name_space[NCP_NUMBER_OF_VOLUMES + 2];
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct socket *ncp_sock;/* ncp socket */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct socket *info_sock;
50
51 u8 sequence;
52 u8 task;
53 u16 connection; /* Remote connection number */
54
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. */
59
60 int buffer_size; /* Negotiated bufsize */
61
62 int reply_size; /* Size of last reply */
63
64 int packet_size;
65 unsigned char *packet; /* Here we prepare requests and
66 receive replies */
Pierre Ossmanc5f93cf2007-02-19 11:34:43 +010067 unsigned char *txbuf; /* Storage for current request */
68 unsigned char *rxbuf; /* Storage for reply to current request */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 int lock; /* To prevent mismatch in protocols. */
Ingo Molnar8e3f9042006-03-23 03:00:43 -080071 struct mutex mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 int current_size; /* for packet preparation */
74 int has_subfunction;
75 int ncp_reply_size;
76
77 int root_setuped;
Petr Vandrovec2e54eb92010-09-27 01:47:33 +020078 struct mutex root_setup_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
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 */
84 char sign_last[16];
85
86 /* Authentication info: NDS or BINDERY, username */
87 struct {
88 int auth_type;
89 size_t object_name_len;
90 void* object_name;
91 int object_type;
92 } auth;
93 /* Password info */
94 struct {
95 size_t len;
96 void* data;
97 } priv;
Petr Vandrovec2e54eb92010-09-27 01:47:33 +020098 struct rw_semaphore auth_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* nls info: codepage for volume and charset for I/O */
101 struct nls_table *nls_vol;
102 struct nls_table *nls_io;
103
104 /* maximum age in jiffies */
Petr Vandrovec2e54eb92010-09-27 01:47:33 +0200105 atomic_t dentry_ttl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 /* miscellaneous */
108 unsigned int flags;
109
110 spinlock_t requests_lock; /* Lock accesses to tx.requests, tx.creq and rcv.creq when STREAM mode */
111
David S. Miller676d2362014-04-11 16:15:36 -0400112 void (*data_ready)(struct sock* sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 void (*error_report)(struct sock* sk);
114 void (*write_space)(struct sock* sk); /* STREAM mode only */
115 struct {
116 struct work_struct tq; /* STREAM/DGRAM: data/error ready */
117 struct ncp_request_reply* creq; /* STREAM/DGRAM: awaiting reply from this request */
Ingo Molnar8e3f9042006-03-23 03:00:43 -0800118 struct mutex creq_mutex; /* DGRAM only: lock accesses to rcv.creq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 unsigned int state; /* STREAM only: receiver state */
121 struct {
Eric Dumazetbc105022010-06-03 03:21:52 -0700122 __u32 magic __packed;
123 __u32 len __packed;
124 __u16 type __packed;
125 __u16 p1 __packed;
126 __u16 p2 __packed;
127 __u16 p3 __packed;
128 __u16 type2 __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 } 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 */
132 } rcv;
133 struct {
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 */
137 } tx;
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 */
142 struct {
143 size_t len;
144 __u8 data[128];
145 } unexpected_packet;
Jens Axboef1970c72010-04-22 12:31:11 +0200146 struct backing_dev_info bdi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
David Howellsc4028952006-11-22 14:57:56 +0000149extern void ncp_tcp_rcv_proc(struct work_struct *work);
150extern void ncp_tcp_tx_proc(struct work_struct *work);
151extern void ncpdgram_rcv_proc(struct work_struct *work);
152extern void ncpdgram_timeout_proc(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153extern void ncpdgram_timeout_call(unsigned long server);
David S. Miller676d2362014-04-11 16:15:36 -0400154extern void ncp_tcp_data_ready(struct sock* sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155extern void ncp_tcp_write_space(struct sock* sk);
156extern void ncp_tcp_error_report(struct sock* sk);
157
158#define NCP_FLAG_UTF8 1
159
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))
163
164static inline int ncp_conn_valid(struct ncp_server *server)
165{
166 return ((server->conn_status & 0x11) == 0);
167}
168
169static inline void ncp_invalidate_conn(struct ncp_server *server)
170{
171 server->conn_status |= 0x01;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#endif