blob: 6a8c7d1bee8cef1ec48a14facd60867fd8c49c94 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifsglob.h
3 *
Steve French67010fb2005-04-28 22:41:09 -07004 * Copyright (C) International Business Machines Corp., 2002,2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 */
18#include <linux/in.h>
19#include <linux/in6.h>
20#include "cifs_fs_sb.h"
21/*
22 * The sizes of various internal tables and strings
23 */
24#define MAX_UID_INFO 16
25#define MAX_SES_INFO 2
26#define MAX_TCON_INFO 4
27
28#define MAX_TREE_SIZE 2 + MAX_SERVER_SIZE + 1 + MAX_SHARE_SIZE + 1
29#define MAX_SERVER_SIZE 15
30#define MAX_SHARE_SIZE 64 /* used to be 20 - this should still be enough */
31#define MAX_USERNAME_SIZE 32 /* 32 is to allow for 15 char names + null
32 termination then *2 for unicode versions */
33#define MAX_PASSWORD_SIZE 16
34
35#define CIFS_MIN_RCV_POOL 4
36
37/*
38 * MAX_REQ is the maximum number of requests that WE will send
39 * on one socket concurently. It also matches the most common
40 * value of max multiplex returned by servers. We may
41 * eventually want to use the negotiated value (in case
42 * future servers can handle more) when we are more confident that
43 * we will not have problems oveloading the socket with pending
44 * write data.
45 */
46#define CIFS_MAX_REQ 50
47
48#define SERVER_NAME_LENGTH 15
49#define SERVER_NAME_LEN_WITH_NULL (SERVER_NAME_LENGTH + 1)
50
51/* used to define string lengths for reversing unicode strings */
52/* (256+1)*2 = 514 */
53/* (max path length + 1 for null) * 2 for unicode */
54#define MAX_NAME 514
55
56#include "cifspdu.h"
57
58#ifndef FALSE
59#define FALSE 0
60#endif
61
62#ifndef TRUE
63#define TRUE 1
64#endif
65
66#ifndef XATTR_DOS_ATTRIB
67#define XATTR_DOS_ATTRIB "user.DOSATTRIB"
68#endif
69
70/*
71 * This information is kept on every Server we know about.
72 *
73 * Some things to note:
74 *
75 */
76#define SERVER_NAME_LEN_WITH_NULL (SERVER_NAME_LENGTH + 1)
77
78/*
79 * CIFS vfs client Status information (based on what we know.)
80 */
81
82 /* associated with each tcp and smb session */
83enum statusEnum {
84 CifsNew = 0,
85 CifsGood,
86 CifsExiting,
87 CifsNeedReconnect
88};
89
90enum securityEnum {
91 NTLM = 0, /* Legacy NTLM012 auth with NTLM hash */
92 NTLMv2, /* Legacy NTLM auth with NTLMv2 hash */
93 RawNTLMSSP, /* NTLMSSP without SPNEGO */
94 NTLMSSP, /* NTLMSSP via SPNEGO */
95 Kerberos /* Kerberos via SPNEGO */
96};
97
98enum protocolEnum {
99 IPV4 = 0,
100 IPV6,
101 SCTP
102 /* Netbios frames protocol not supported at this time */
103};
104
105/*
106 *****************************************************************
107 * Except the CIFS PDUs themselves all the
108 * globally interesting structs should go here
109 *****************************************************************
110 */
111
112struct TCP_Server_Info {
Steve Frenchd3485d32005-08-19 11:04:29 -0700113 char server_Name[SERVER_NAME_LEN_WITH_NULL]; /* 15 chars + X'20' 16th */
114 char unicode_server_Name[SERVER_NAME_LEN_WITH_NULL * 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct socket *ssocket;
116 union {
117 struct sockaddr_in sockAddr;
118 struct sockaddr_in6 sockAddr6;
119 } addr;
120 wait_queue_head_t response_q;
121 wait_queue_head_t request_q; /* if more than maxmpx to srvr must block*/
122 struct list_head pending_mid_q;
123 void *Server_NlsInfo; /* BB - placeholder for future NLS info */
124 unsigned short server_codepage; /* codepage for the server */
125 unsigned long ip_address; /* IP addr for the server if known */
126 enum protocolEnum protocolType;
127 char versionMajor;
128 char versionMinor;
129 unsigned svlocal:1; /* local server or remote */
130 atomic_t socketUseCount; /* number of open cifs sessions on socket */
131 atomic_t inFlight; /* number of requests on the wire to server */
132 enum statusEnum tcpStatus; /* what we think the status is */
133 struct semaphore tcpSem;
134 struct task_struct *tsk;
135 char server_GUID[16];
136 char secMode;
137 enum securityEnum secType;
138 unsigned int maxReq; /* Clients should submit no more */
139 /* than maxReq distinct unanswered SMBs to the server when using */
140 /* multiplexed reads or writes */
141 unsigned int maxBuf; /* maxBuf specifies the maximum */
142 /* message size the server can send or receive for non-raw SMBs */
143 unsigned int maxRw; /* maxRw specifies the maximum */
144 /* message size the server can send or receive for */
145 /* SMB_COM_WRITE_RAW or SMB_COM_READ_RAW. */
146 char sessid[4]; /* unique token id for this session */
147 /* (returned on Negotiate */
148 int capabilities; /* allow selective disabling of caps by smb sess */
149 __u16 timeZone;
Steve French1982c342005-08-17 12:38:22 -0700150 __u16 CurrentMid; /* multiplex id - rotating counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 char cryptKey[CIFS_CRYPTO_KEY_SIZE];
152 char workstation_RFC1001_name[16]; /* 16th byte is always zero */
Steve Frenchad009ac2005-04-28 22:41:05 -0700153 __u32 sequence_number; /* needed for CIFS PDU signature */
154 char mac_signing_key[CIFS_SESSION_KEY_SIZE + 16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
157/*
158 * The following is our shortcut to user information. We surface the uid,
159 * and name. We always get the password on the fly in case it
160 * has changed. We also hang a list of sessions owned by this user off here.
161 */
162struct cifsUidInfo {
163 struct list_head userList;
164 struct list_head sessionList; /* SMB sessions for this user */
165 uid_t linux_uid;
166 char user[MAX_USERNAME_SIZE + 1]; /* ascii name of user */
167 /* BB may need ptr or callback for PAM or WinBind info */
168};
169
170/*
171 * Session structure. One of these for each uid session with a particular host
172 */
173struct cifsSesInfo {
174 struct list_head cifsSessionList;
175 struct semaphore sesSem;
176 struct cifsUidInfo *uidInfo; /* pointer to user info */
177 struct TCP_Server_Info *server; /* pointer to server info */
178 atomic_t inUse; /* # of mounts (tree connections) on this ses */
179 enum statusEnum status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 __u16 ipc_tid; /* special tid for connection to IPC share */
181 __u16 flags;
Steve Frenchad009ac2005-04-28 22:41:05 -0700182 char *serverOS; /* name of operating system underlying server */
183 char *serverNOS; /* name of network operating system of server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 char *serverDomain; /* security realm of server */
185 int Suid; /* remote smb uid */
186 uid_t linux_uid; /* local Linux uid */
187 int capabilities;
Steve Frenchad009ac2005-04-28 22:41:05 -0700188 char serverName[SERVER_NAME_LEN_WITH_NULL * 2]; /* BB make bigger for
189 TCP names - will ipv6 and sctp addresses fit? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 char userName[MAX_USERNAME_SIZE + 1];
191 char domainName[MAX_USERNAME_SIZE + 1];
192 char * password;
193};
194/* session flags */
195#define CIFS_SES_NT4 1
196
197/*
198 * there is one of these for each connection to a resource on a particular
199 * session
200 */
201struct cifsTconInfo {
202 struct list_head cifsConnectionList;
203 struct list_head openFileList;
204 struct semaphore tconSem;
205 struct cifsSesInfo *ses; /* pointer to session associated with */
206 char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource (in ASCII not UTF) */
207 char *nativeFileSystem;
208 __u16 tid; /* The 2 byte tree id */
209 __u16 Flags; /* optional support bits */
210 enum statusEnum tidStatus;
211 atomic_t useCount; /* how many mounts (explicit or implicit) to this share */
212#ifdef CONFIG_CIFS_STATS
213 atomic_t num_smbs_sent;
214 atomic_t num_writes;
215 atomic_t num_reads;
216 atomic_t num_oplock_brks;
217 atomic_t num_opens;
Steve Frencha5a2b482005-08-20 21:42:53 -0700218 atomic_t num_closes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 atomic_t num_deletes;
220 atomic_t num_mkdirs;
221 atomic_t num_rmdirs;
222 atomic_t num_renames;
223 atomic_t num_t2renames;
Steve Frenchdfb75332005-06-22 17:13:47 -0700224 atomic_t num_ffirst;
225 atomic_t num_fnext;
226 atomic_t num_fclose;
Steve Frencha5a2b482005-08-20 21:42:53 -0700227 atomic_t num_hardlinks;
228 atomic_t num_symlinks;
229 atomic_t num_locks;
230#ifdef CONFIG_CIFS_STATS2
231 unsigned long long time_writes;
232 unsigned long long time_reads;
233 unsigned long long time_opens;
234 unsigned long long time_deletes;
235 unsigned long long time_closes;
236 unsigned long long time_mkdirs;
237 unsigned long long time_rmdirs;
238 unsigned long long time_renames;
239 unsigned long long time_t2renames;
240 unsigned long long time_ffirst;
241 unsigned long long time_fnext;
242 unsigned long long time_fclose;
243#endif /* CONFIG_CIFS_STATS2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 __u64 bytes_read;
245 __u64 bytes_written;
246 spinlock_t stat_lock;
Steve Frencha5a2b482005-08-20 21:42:53 -0700247#endif /* CONFIG_CIFS_STATS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 FILE_SYSTEM_DEVICE_INFO fsDevInfo;
249 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if file system name truncated */
250 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
251 unsigned retry:1;
Steve Frenchd3485d32005-08-19 11:04:29 -0700252 unsigned nocase:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* BB add field for back pointer to sb struct? */
254};
255
256/*
257 * This info hangs off the cifsFileInfo structure. This is used to track
258 * byte stream locks on the file
259 */
260struct cifsLockInfo {
261 struct cifsLockInfo *next;
262 int start;
263 int length;
264 int type;
265};
266
267/*
268 * One of these for each open instance of a file
269 */
270struct cifs_search_info {
271 loff_t index_of_last_entry;
272 __u16 entries_in_buffer;
273 __u16 info_level;
274 __u32 resume_key;
275 char * ntwrk_buf_start;
276 char * srch_entries_start;
277 char * presume_name;
278 unsigned int resume_name_len;
279 unsigned endOfSearch:1;
280 unsigned emptyDir:1;
281 unsigned unicode:1;
282};
283
284struct cifsFileInfo {
285 struct list_head tlist; /* pointer to next fid owned by tcon */
286 struct list_head flist; /* next fid (file instance) for this inode */
287 unsigned int uid; /* allows finding which FileInfo structure */
288 __u32 pid; /* process id who opened file */
289 __u16 netfid; /* file id from remote */
290 /* BB add lock scope info here if needed */ ;
291 /* lock scope id (0 if none) */
292 struct file * pfile; /* needed for writepage */
293 struct inode * pInode; /* needed for oplock break */
294 unsigned closePend:1; /* file is marked to close */
295 unsigned invalidHandle:1; /* file closed via session abend */
296 struct semaphore fh_sem; /* prevents reopen race after dead ses*/
297 char * search_resume_name; /* BB removeme BB */
298 unsigned int resume_name_length; /* BB removeme - field renamed and moved BB */
299 struct cifs_search_info srch_inf;
300};
301
302/*
303 * One of these for each file inode
304 */
305
306struct cifsInodeInfo {
307 struct list_head lockList;
308 /* BB add in lists for dirty pages - i.e. write caching info for oplock */
309 struct list_head openFileList;
310 int write_behind_rc;
311 __u32 cifsAttrs; /* e.g. DOS archive bit, sparse, compressed, system */
312 atomic_t inUse; /* num concurrent users (local openers cifs) of file*/
313 unsigned long time; /* jiffies of last update/check of inode */
314 unsigned clientCanCacheRead:1; /* read oplock */
315 unsigned clientCanCacheAll:1; /* read and writebehind oplock */
316 unsigned oplockPending:1;
317 struct inode vfs_inode;
318};
319
320static inline struct cifsInodeInfo *
321CIFS_I(struct inode *inode)
322{
323 return container_of(inode, struct cifsInodeInfo, vfs_inode);
324}
325
326static inline struct cifs_sb_info *
327CIFS_SB(struct super_block *sb)
328{
329 return sb->s_fs_info;
330}
331
Jeremy Allisonac670552005-06-22 17:26:35 -0700332static inline const char CIFS_DIR_SEP(const struct cifs_sb_info *cifs_sb)
333{
334 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
335 return '/';
336 else
337 return '\\';
338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340/* one of these for every pending CIFS request to the server */
341struct mid_q_entry {
342 struct list_head qhead; /* mids waiting on reply from this server */
343 __u16 mid; /* multiplex id */
344 __u16 pid; /* process id */
345 __u32 sequence_number; /* for CIFS signing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct timeval when_sent; /* time when smb sent */
347 struct cifsSesInfo *ses; /* smb was sent to this server */
348 struct task_struct *tsk; /* task waiting for response */
349 struct smb_hdr *resp_buf; /* response buffer */
350 int midState; /* wish this were enum but can not pass to wait_event */
Steve Frenchc81156d2005-04-28 22:41:07 -0700351 __u8 command; /* smb command code */
352 unsigned multiPart:1; /* multiple responses to one SMB request */
353 unsigned largeBuf:1; /* if valid response, is pointer to large buf */
Steve French79944bf2005-04-28 22:41:09 -0700354 unsigned multiResp:1; /* multiple trans2 responses for one request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355};
356
357struct oplock_q_entry {
358 struct list_head qhead;
359 struct inode * pinode;
360 struct cifsTconInfo * tcon;
361 __u16 netfid;
362};
363
364#define MID_FREE 0
365#define MID_REQUEST_ALLOCATED 1
366#define MID_REQUEST_SUBMITTED 2
367#define MID_RESPONSE_RECEIVED 4
368#define MID_RETRY_NEEDED 8 /* session closed while this request out */
369#define MID_NO_RESP_NEEDED 0x10
370#define MID_SMALL_BUFFER 0x20 /* 112 byte response buffer instead of 4K */
371
372/*
373 *****************************************************************
374 * All constants go here
375 *****************************************************************
376 */
377
378#define UID_HASH (16)
379
380/*
381 * Note that ONE module should define _DECLARE_GLOBALS_HERE to cause the
382 * following to be declared.
383 */
384
385/****************************************************************************
386 * Locking notes. All updates to global variables and lists should be
387 * protected by spinlocks or semaphores.
388 *
389 * Spinlocks
390 * ---------
391 * GlobalMid_Lock protects:
392 * list operations on pending_mid_q and oplockQ
393 * updates to XID counters, multiplex id and SMB sequence numbers
394 * GlobalSMBSesLock protects:
395 * list operations on tcp and SMB session lists and tCon lists
396 * f_owner.lock protects certain per file struct operations
397 * mapping->page_lock protects certain per page operations
398 *
399 * Semaphores
400 * ----------
401 * sesSem operations on smb session
402 * tconSem operations on tree connection
403 * fh_sem file handle reconnection operations
404 *
405 ****************************************************************************/
406
407#ifdef DECLARE_GLOBALS_HERE
408#define GLOBAL_EXTERN
409#else
410#define GLOBAL_EXTERN extern
411#endif
412
413/*
414 * The list of servers that did not respond with NT LM 0.12.
415 * This list helps improve performance and eliminate the messages indicating
416 * that we had a communications error talking to the server in this list.
417 */
418GLOBAL_EXTERN struct servers_not_supported *NotSuppList; /*@z4a */
419
420/*
421 * The following is a hash table of all the users we know about.
422 */
423GLOBAL_EXTERN struct smbUidInfo *GlobalUidList[UID_HASH];
424
425GLOBAL_EXTERN struct list_head GlobalServerList; /* BB not implemented yet */
426GLOBAL_EXTERN struct list_head GlobalSMBSessionList;
427GLOBAL_EXTERN struct list_head GlobalTreeConnectionList;
428GLOBAL_EXTERN rwlock_t GlobalSMBSeslock; /* protects list inserts on 3 above */
429
430GLOBAL_EXTERN struct list_head GlobalOplock_Q;
431
432/*
433 * Global transaction id (XID) information
434 */
435GLOBAL_EXTERN unsigned int GlobalCurrentXid; /* protected by GlobalMid_Sem */
436GLOBAL_EXTERN unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Sem */
437GLOBAL_EXTERN unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Sem */
438GLOBAL_EXTERN spinlock_t GlobalMid_Lock; /* protects above and list operations */
439 /* on midQ entries */
440GLOBAL_EXTERN char Local_System_Name[15];
441
442/*
443 * Global counters, updated atomically
444 */
445GLOBAL_EXTERN atomic_t sesInfoAllocCount;
446GLOBAL_EXTERN atomic_t tconInfoAllocCount;
447GLOBAL_EXTERN atomic_t tcpSesAllocCount;
448GLOBAL_EXTERN atomic_t tcpSesReconnectCount;
449GLOBAL_EXTERN atomic_t tconInfoReconnectCount;
450
451/* Various Debug counters to remove someday (BB) */
452GLOBAL_EXTERN atomic_t bufAllocCount;
453GLOBAL_EXTERN atomic_t smBufAllocCount;
454GLOBAL_EXTERN atomic_t midCount;
455
456/* Misc globals */
457GLOBAL_EXTERN unsigned int multiuser_mount; /* if enabled allows new sessions
458 to be established on existing mount if we
459 have the uid/password or Kerberos credential
460 or equivalent for current user */
461GLOBAL_EXTERN unsigned int oplockEnabled;
462GLOBAL_EXTERN unsigned int experimEnabled;
463GLOBAL_EXTERN unsigned int lookupCacheEnabled;
464GLOBAL_EXTERN unsigned int extended_security; /* if on, session setup sent
465 with more secure ntlmssp2 challenge/resp */
466GLOBAL_EXTERN unsigned int ntlmv2_support; /* better optional password hash */
467GLOBAL_EXTERN unsigned int sign_CIFS_PDUs; /* enable smb packet signing */
468GLOBAL_EXTERN unsigned int linuxExtEnabled;/*enable Linux/Unix CIFS extensions*/
469GLOBAL_EXTERN unsigned int CIFSMaxBufSize; /* max size not including hdr */
470GLOBAL_EXTERN unsigned int cifs_min_rcv; /* min size of big ntwrk buf pool */
471GLOBAL_EXTERN unsigned int cifs_min_small; /* min size of small buf pool */
472GLOBAL_EXTERN unsigned int cifs_max_pending; /* MAX requests at once to server*/
473