Makefile client.c clientutil.c clitar.c nmbsync.c :
[samba.git] / source / include / smb.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-1997
6    Copyright (C) John H Terpstra 1996-1997
7    Copyright (C) Luke Kenneth Casson Leighton 1996-1997
8    Copyright (C) Paul Ashton 1997
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24 #ifndef _SMB_H
25 #define _SMB_H
26
27 #ifndef MAX_CONNECTIONS
28 #define MAX_CONNECTIONS 127
29 #endif
30
31 #ifndef MAX_OPEN_FILES
32 #define MAX_OPEN_FILES 50
33 #endif
34
35 #ifndef GUEST_ACCOUNT
36 #define GUEST_ACCOUNT "nobody"
37 #endif
38
39 #define BUFFER_SIZE (0xFFFF)
40 #define SAFETY_MARGIN 1024
41
42 /* Default size of shared memory used for share mode locking */
43 #ifndef SHMEM_SIZE
44 #define SHMEM_SIZE 102400
45 #endif
46
47 /* Default number of hash buckets used in shared memory share mode */
48 #ifndef SHMEM_HASH_SIZE
49 #define SHMEM_HASH_SIZE 113
50 #endif
51
52 #define NMB_PORT 137
53 #define DGRAM_PORT 138
54 #define SMB_PORT 139
55
56 #define False (0)
57 #define True (1)
58 #define BOOLSTR(b) ((b) ? "Yes" : "No")
59 #define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0)
60 #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
61 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
62
63 typedef int BOOL;
64
65 /* offset in shared memory */
66 #define NULL_OFFSET (int)(0)
67
68 /* limiting size of ipc replies */
69 #define REALLOC(ptr,size) Realloc(ptr,MAX((size),4*1024))
70
71 /*
72    Samba needs type definitions for int16, int32, uint16 and uint32.
73    
74    Normally these are signed and unsigned 16 and 32 bit integers, but
75    they actually only need to be at least 16 and 32 bits
76    respectively. Thus if your word size is 8 bytes just defining them
77    as signed and unsigned int will work.
78 */
79
80 /* afs/stds.h defines int16 and int32 */
81 #ifndef AFS_AUTH
82 typedef short int16;
83 typedef int int32;
84 #endif
85
86 #ifndef uint8
87 typedef unsigned char uint8;
88 #endif
89
90 #ifndef uint16
91 typedef unsigned short uint16;
92 #endif
93
94 #ifndef uint32
95 typedef unsigned int uint32;
96 #endif
97
98 #ifndef uchar
99 #define uchar unsigned char
100 #endif
101 #ifndef int16
102 #define int16 short
103 #endif
104 #ifndef uint16
105 #define uint16 unsigned short
106 #endif
107 #ifndef uint32
108 #define uint32 unsigned int
109 #endif
110
111 #define SIZEOFWORD 2
112
113 #ifndef DEF_CREATE_MASK
114 #define DEF_CREATE_MASK (0755)
115 #endif
116
117 /* how long to wait for secondary SMB packets (milli-seconds) */
118 #define SMB_SECONDARY_WAIT (60*1000)
119
120 /* debugging code */
121 #ifndef SYSLOG
122 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))?(Debug1 body):0)
123 #else
124 extern int syslog_level;
125
126 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))? (syslog_level = (level), Debug1 body):0)
127 #endif
128
129 /* this defines the error codes that receive_smb can put in smb_read_error */
130 #define READ_TIMEOUT 1
131 #define READ_EOF 2
132 #define READ_ERROR 3
133
134
135 #define DIR_STRUCT_SIZE 43
136
137 /* these define all the command types recognised by the server - there
138 are lots of gaps so probably there are some rare commands that are not
139 implemented */
140
141 #define pSETDIR '\377'
142
143 /* these define the attribute byte as seen by DOS */
144 #define aRONLY (1L<<0)
145 #define aHIDDEN (1L<<1)
146 #define aSYSTEM (1L<<2)
147 #define aVOLID (1L<<3)
148 #define aDIR (1L<<4)
149 #define aARCH (1L<<5)
150
151 /* deny modes */
152 #define DENY_DOS 0
153 #define DENY_ALL 1
154 #define DENY_WRITE 2
155 #define DENY_READ 3
156 #define DENY_NONE 4
157 #define DENY_FCB 7
158
159 /* share types */
160 #define STYPE_DISKTREE  0       /* Disk drive */
161 #define STYPE_PRINTQ    1       /* Spooler queue */
162 #define STYPE_DEVICE    2       /* Serial device */
163 #define STYPE_IPC       3       /* Interprocess communication (IPC) */
164 #define STYPE_HIDDEN    0x80000000 /* share is a hidden one (ends with $) */
165
166 /* SMB X/Open error codes for the ERRdos error class */
167 #define ERRbadfunc 1 /* Invalid function (or system call) */
168 #define ERRbadfile 2 /* File not found (pathname error) */
169 #define ERRbadpath 3 /* Directory not found */
170 #define ERRnofids 4 /* Too many open files */
171 #define ERRnoaccess 5 /* Access denied */
172 #define ERRbadfid 6 /* Invalid fid */
173 #define ERRnomem 8 /* Out of memory */
174 #define ERRbadmem 9 /* Invalid memory block address */
175 #define ERRbadenv 10 /* Invalid environment */
176 #define ERRbadaccess 12 /* Invalid open mode */
177 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
178 #define ERRres 14 /* reserved */
179 #define ERRbaddrive 15 /* Invalid drive */
180 #define ERRremcd 16 /* Attempt to delete current directory */
181 #define ERRdiffdevice 17 /* rename/move across different filesystems */
182 #define ERRnofiles 18 /* no more files found in file search */
183 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
184 #define ERRlock 33 /* Lock request conflicts with existing lock */
185 #define ERRfilexists 80 /* File in operation already exists */
186 #define ERRcannotopen 110 /* Cannot open the file specified */
187 #define ERRunknownlevel 124
188 #define ERRbadpipe 230 /* Named pipe invalid */
189 #define ERRpipebusy 231 /* All instances of pipe are busy */
190 #define ERRpipeclosing 232 /* named pipe close in progress */
191 #define ERRnotconnected 233 /* No process on other end of named pipe */
192 #define ERRmoredata 234 /* More data to be returned */
193 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
194 #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
195 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
196 #define ERRunknownipc 2142
197
198
199 /* here's a special one from observing NT */
200 #define ERRnoipc 66 /* don't support ipc */
201
202 /* Error codes for the ERRSRV class */
203
204 #define ERRerror 1 /* Non specific error code */
205 #define ERRbadpw 2 /* Bad password */
206 #define ERRbadtype 3 /* reserved */
207 #define ERRaccess 4 /* No permissions to do the requested operation */
208 #define ERRinvnid 5 /* tid invalid */
209 #define ERRinvnetname 6 /* Invalid servername */
210 #define ERRinvdevice 7 /* Invalid device */
211 #define ERRqfull 49 /* Print queue full */
212 #define ERRqtoobig 50 /* Queued item too big */
213 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
214 #define ERRsmbcmd 64 /* Unrecognised command */
215 #define ERRsrverror 65 /* smb server internal error */
216 #define ERRfilespecs 67 /* fid and pathname invalid combination */
217 #define ERRbadlink 68 /* reserved */
218 #define ERRbadpermits 69 /* Access specified for a file is not valid */
219 #define ERRbadpid 70 /* reserved */
220 #define ERRsetattrmode 71 /* attribute mode invalid */
221 #define ERRpaused 81 /* Message server paused */
222 #define ERRmsgoff 82 /* Not receiving messages */
223 #define ERRnoroom 83 /* No room for message */
224 #define ERRrmuns 87 /* too many remote usernames */
225 #define ERRtimeout 88 /* operation timed out */
226 #define ERRnoresource  89 /* No resources currently available for request. */
227 #define ERRtoomanyuids 90 /* too many userids */
228 #define ERRbaduid 91 /* bad userid */
229 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
230 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
231 #define ERRcontMPX 252 /* resume MPX mode */
232 #define ERRbadPW /* reserved */
233 #define ERRnosupport 0xFFFF
234 #define ERRunknownsmb 22 /* from NT 3.5 response */
235
236
237 /* Error codes for the ERRHRD class */
238
239 #define ERRnowrite 19 /* read only media */
240 #define ERRbadunit 20 /* Unknown device */
241 #define ERRnotready 21 /* Drive not ready */
242 #define ERRbadcmd 22 /* Unknown command */
243 #define ERRdata 23 /* Data (CRC) error */
244 #define ERRbadreq 24 /* Bad request structure length */
245 #define ERRseek 25
246 #define ERRbadmedia 26
247 #define ERRbadsector 27
248 #define ERRnopaper 28
249 #define ERRwrite 29 /* write fault */
250 #define ERRread 30 /* read fault */
251 #define ERRgeneral 31 /* General hardware failure */
252 #define ERRwrongdisk 34
253 #define ERRFCBunavail 35
254 #define ERRsharebufexc 36 /* share buffer exceeded */
255 #define ERRdiskfull 39
256
257
258 typedef char pstring[1024];
259 typedef char fstring[128];
260 typedef fstring string;
261
262
263 /* pipe strings */
264 #define PIPE_LANMAN   "\\PIPE\\LANMAN"
265 #define PIPE_SRVSVC   "\\PIPE\\srvsvc"
266 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
267 #define PIPE_NTLSA    "\\PIPE\\ntlsa"
268
269 /* NETLOGON opcodes and data structures */
270
271 #define NET_QUERYFORPDC      7 /* Query for PDC */
272 #define NET_QUERYFORPDC_R   12 /* Response to Query for PDC */
273 #define NET_SAMLOGON        18
274 #define NET_SAMLOGON_R      19
275
276 /* Allowable account control bits */
277 #define ACB_DISABLED   1 /* 1 = User account disabled */
278 #define ACB_HOMDIRREQ  2 /* 1 = Home directory required */
279 #define ACB_PWNOTREQ   4 /* 1 = User password not required */
280 #define ACB_TEMPDUP      /* 1 = Temporary duplicate account */
281 #define ACB_NORMAL       /* 1 = Normal user account */
282 #define ACB_MNS          /* 1 = MNS logon user account */
283 #define ACB_DOMTRUST     /* 1 = Interdomain trust account */
284 #define ACB_WSTRUST      /* 1 = Workstation trust account */
285 #define ACB_SVRTRUST     /* 1 = Server trust account */
286 #define ACB_PWNOEXP      /* 1 = User password does not expire */
287 #define ACB_AUTOLOCK     /* 1 = Account auto locked */
288
289 #define LSA_OPENPOLICY      0x2c
290 #define LSA_QUERYINFOPOLICY 0x07
291 #define LSA_ENUMTRUSTDOM    0x0d
292 #define LSA_REQCHAL         0x04
293 #define LSA_SRVPWSET        0x06
294 #define LSA_SAMLOGON        0x02
295 #define LSA_AUTH2           0x0f
296 #define LSA_CLOSE           0x00
297
298 /* unknown .... */
299 #define LSA_OPENSECRET      0xFF
300 #define LSA_LOOKUPSIDS      0xFE
301 #define LSA_LOOKUPNAMES     0xFD
302 #define LSA_SAMLOGOFF       0xFC
303
304 /* srvsvc pipe */
305 #define NETSERVERGETINFO 0x15
306 #define NETSHAREENUM     0x0f
307
308 /* well-known RIDs - Relative IDs */
309
310 /* RIDs - Well-known users ... */
311 #define DOMAIN_USER_RID_ADMIN          (0x000001F4L)
312 #define DOMAIN_USER_RID_GUEST          (0x000001F5L)
313
314 /* RIDs - well-known groups ... */
315 #define DOMAIN_GROUP_RID_ADMINS        (0x00000200L)
316 #define DOMAIN_GROUP_RID_USERS         (0x00000201L)
317 #define DOMAIN_GROUP_RID_GUESTS        (0x00000202L)
318
319 /* RIDs - well-known aliases ... */
320 #define DOMAIN_ALIAS_RID_ADMINS        (0x00000220L)
321 #define DOMAIN_ALIAS_RID_USERS         (0x00000221L)
322 #define DOMAIN_ALIAS_RID_GUESTS        (0x00000222L)
323 #define DOMAIN_ALIAS_RID_POWER_USERS   (0x00000223L)
324
325 #define DOMAIN_ALIAS_RID_ACCOUNT_OPS   (0x00000224L)
326 #define DOMAIN_ALIAS_RID_SYSTEM_OPS    (0x00000225L)
327 #define DOMAIN_ALIAS_RID_PRINT_OPS     (0x00000226L)
328 #define DOMAIN_ALIAS_RID_BACKUP_OPS    (0x00000227L)
329
330 #define DOMAIN_ALIAS_RID_REPLICATOR    (0x00000228L)
331
332
333
334 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
335 typedef struct time_info
336 {
337   uint32 time;
338
339 } UTIME;
340
341 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
342 typedef struct nttime_info
343 {
344   uint32 low;
345   uint32 high;
346
347 } NTTIME;
348  
349
350 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */
351
352 /* DOM_SID - security id */
353 typedef struct sid_info
354 {
355   uint8  sid_rev_num;             /* SID revision number */
356   uint8  num_auths;               /* number of sub-authorities */
357   uint8  id_auth[6];              /* Identifier Authority */
358   uint16 sub_auths[MAXSUBAUTHS];  /* pointer to sub-authorities. */
359
360 } DOM_SID;
361
362 /* UNIHDR - unicode string header */
363 typedef struct unihdr_info
364 {
365   uint16 uni_max_len;
366   uint16 uni_str_len;
367   uint32 undoc; /* usually has a value of 4 */
368
369 } UNIHDR;
370
371 /* UNIHDR2 - unicode string header and undocumented buffer */
372 typedef struct unihdr2_info
373 {
374   UNIHDR unihdr;
375   uint32 undoc_buffer; /* undocumented 32 bit buffer pointer */
376
377 } UNIHDR2;
378
379 /* clueless as to what maximum length should be */
380 #define MAX_UNISTRLEN 1024
381
382 /* UNISTR - unicode string size and buffer */
383 typedef struct unistr_info
384 {
385   uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. ***MUST*** be null-terminated */
386
387 } UNISTR;
388
389 /* UNISTR2 - unicode string size and buffer */
390 typedef struct unistr2_info
391 {
392   uint32 uni_max_len;
393   uint32 undoc;
394   uint32 uni_str_len;
395   uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. **NOT** necessarily null-terminated */
396
397 } UNISTR2;
398
399 /* DOM_SID2 - domain SID structure - SIDs stored in unicode */
400 typedef struct domsid2_info
401 {
402   uint32 type; /* value is 5 */
403   uint32 undoc; /* value is 0 */
404
405   UNIHDR2 hdr; /* XXXX conflict between hdr and str for length */
406   UNISTR  str; /* XXXX conflict between hdr and str for length */
407
408 } DOM_SID2;
409
410 /* DOM_RID2 - domain RID structure */
411 typedef struct domrid2_info
412 {
413   uint32 type; /* value is 5 */
414   uint32 undoc; /* value is 5 */
415   uint32 rid;
416   uint32 rid_idx; /* don't know what this is */
417
418 } DOM_RID2;
419
420 /* DOM_CLNT_SRV - client / server names */
421 typedef struct clnt_srv_info
422 {
423   uint32  undoc_buffer; /* undocumented 32 bit buffer pointer */
424   UNISTR2 uni_logon_srv; /* logon server name */
425   uint32  undoc_buffer2; /* undocumented 32 bit buffer pointer */
426   UNISTR2 uni_comp_name; /* client machine name */
427
428 } DOM_CLNT_SRV;
429
430 /* DOM_LOG_INFO - login info */
431 typedef struct log_info
432 {
433   uint32  undoc_buffer; /* undocumented 32 bit buffer pointer */
434   UNISTR2 uni_logon_srv; /* logon server name */
435   UNISTR2 uni_acct_name; /* account name */
436   uint16  sec_chan;      /* secure channel type */
437   UNISTR2 uni_comp_name; /* client machine name */
438
439 } DOM_LOG_INFO;
440
441 /* DOM_CHAL - challenge info */
442 typedef struct chal_info
443 {
444   uint32 data[2]; /* credentials */
445
446 } DOM_CHAL;
447
448 /* DOM_CREDs - timestamped client or server credentials */
449 typedef struct cred_info
450 {
451   DOM_CHAL challenge; /* credentials */
452   UTIME timestamp;    /* credential time-stamp */
453
454 } DOM_CRED;
455
456 /* DOM_CLNT_INFO - client info */
457 typedef struct clnt_info
458 {
459   DOM_LOG_INFO login;
460   DOM_CRED     cred;
461
462 } DOM_CLNT_INFO;
463
464 /* DOM_CLNT_INFO2 - client info */
465 typedef struct clnt_info2
466 {
467   DOM_CLNT_SRV login;
468   uint32        ptr_cred;
469   DOM_CRED      cred;
470
471 } DOM_CLNT_INFO2;
472
473 /* DOM_LOGON_ID - logon id */
474 typedef struct logon_info
475 {
476   uint32 low;
477   uint32 high;
478
479 } DOM_LOGON_ID;
480
481 /* ARC4_OWF */
482 typedef struct arc4_owf_info
483 {
484   uint8 data[16];
485
486 } ARC4_OWF;
487
488
489 /* DOM_ID_INFO_1 */
490 typedef struct id_info_1
491 {
492   uint32            ptr_id_info1;        /* pointer to id_info_1 */
493   UNIHDR            hdr_domain_name;     /* domain name unicode header */
494   uint32            param_ctrl;          /* param control */
495   DOM_LOGON_ID      logon_id;            /* logon ID */
496   UNIHDR            hdr_user_name;       /* user name unicode header */
497   UNIHDR            hdr_workgroup_name;  /* workgroup name unicode header */
498   ARC4_OWF          arc4_lm_owf;         /* arc4 LM OWF Password */
499   ARC4_OWF          arc4_nt_owf;         /* arc4 NT OWF Password */
500   UNISTR2           uni_domain_name;     /* domain name unicode string */
501   UNISTR2           uni_user_name;       /* user name unicode string */
502   UNISTR2           uni_workgroup_name;  /* workgroup name unicode string */
503
504 } DOM_ID_INFO_1;
505
506 /* SAM_INFO - sam logon/off id structure */
507 typedef struct sam_info
508 {
509   DOM_CLNT_INFO2 client;
510   uint32         ptr_rtn_cred; /* pointer to return credentials */
511   DOM_CRED       rtn_cred; /* return credentials */
512   uint16         logon_level;
513   uint16         switch_value;
514   
515   union
516   {
517     DOM_ID_INFO_1 id1; /* auth-level 1 */
518
519   } auth;
520   
521 } DOM_SAM_INFO;
522
523 /* DOM_GID - group id + user attributes */
524 typedef struct gid_info
525 {
526   uint32 g_rid;  /* a group RID */
527   uint32 attr;
528
529 } DOM_GID;
530
531 /* RPC_HDR - ms rpc header */
532 typedef struct rpc_hdr_info
533 {
534   uint8  major; /* 5 - RPC major version */
535   uint8  minor; /* 0 - RPC minor version */
536   uint8  pkt_type; /* 2 - RPC response packet */
537   uint8  frag; /* 3 - first frag + last frag */
538   uint32 pack_type; /* 0x1000 0000 - packed data representation */
539   uint16 frag_len; /* fragment length - data size (bytes) inc header and tail. */
540   uint16 auth_len; /* 0 - authentication length  */
541   uint32 call_id; /* call identifier.  matches 12th uint32 of incoming RPC data. */
542   uint32 alloc_hint; /* allocation hint - data size (bytes) minus header and tail. */
543   uint16 context_id; /* 0 - presentation context identifier */
544   uint8  cancel_count; /* 0 - cancel count */
545   uint8  reserved; /* 0 - reserved */
546
547 } RPC_HDR;
548
549 /* DOM_QUERY - info class 3 and 5 LSA Query response */
550 typedef struct dom_query_info
551 {
552   uint16 uni_dom_max_len; /* domain name string length * 2 */
553   uint16 uni_dom_str_len; /* domain name string length * 2 */
554   uint32 buffer_dom_name; /* undocumented domain name string buffer pointer */
555   uint32 buffer_dom_sid; /* undocumented domain SID string buffer pointer */
556   UNISTR2 uni_domain_name; /* domain name (unicode string) */
557   DOM_SID dom_sid; /* domain SID */
558
559 } DOM_QUERY;
560
561 /* level 5 is same as level 3.  we hope. */
562 typedef DOM_QUERY DOM_QUERY_3;
563 typedef DOM_QUERY DOM_QUERY_5;
564
565 #define POL_HND_SIZE 20
566
567 /* LSA_POL_HND */
568 typedef struct lsa_policy_info
569 {
570   uint8 data[POL_HND_SIZE]; /* policy handle */
571
572 } LSA_POL_HND;
573
574
575 /* LSA_R_OPEN_POL - response to LSA Open Policy */
576 typedef struct lsa_r_open_pol_info
577 {
578         LSA_POL_HND pol; /* policy handle */
579
580         uint32 status; /* return code */
581
582 } LSA_R_OPEN_POL;
583
584 /* LSA_Q_QUERY_INFO - LSA query info policy */
585 typedef struct lsa_query_info
586 {
587         LSA_POL_HND pol; /* policy handle */
588     uint16 info_class; /* info class */
589
590 } LSA_Q_QUERY_INFO;
591
592 /* LSA_R_QUERY_INFO - response to LSA query info policy */
593 typedef struct lsa_r_query_info
594 {
595     uint32 undoc_buffer; /* undocumented buffer pointer */
596     uint16 info_class; /* info class (same as info class in request) */
597     
598         union
599     {
600         DOM_QUERY_3 id3;
601                 DOM_QUERY_5 id5;
602
603     } dom;
604
605   uint32 status; /* return code */
606
607 } LSA_R_QUERY_INFO;
608
609 #define MAX_REF_DOMAINS 10
610
611 /* DOM_R_REF */
612 typedef struct dom_ref_info
613 {
614     uint32 undoc_buffer; /* undocumented buffer pointer. */
615     uint32 num_ref_doms_1; /* num referenced domains? */
616     uint32 buffer_dom_name; /* undocumented domain name buffer pointer. */
617     uint32 max_entries; /* 32 - max number of entries */
618     uint32 num_ref_doms_2; /* 4 - num referenced domains? */
619
620     UNIHDR2 hdr_dom_name; /* domain name unicode string header */
621     UNIHDR2 hdr_ref_dom[MAX_REF_DOMAINS]; /* referenced domain unicode string headers */
622
623     UNISTR uni_dom_name; /* domain name unicode string */
624     DOM_SID ref_dom[MAX_REF_DOMAINS]; /* referenced domain SIDs */
625
626 } DOM_R_REF;
627
628 #define MAX_LOOKUP_SIDS 10
629
630 /* LSA_Q_LOOKUP_SIDS - LSA Lookup SIDs */
631 typedef struct lsa_q_lookup_sids
632 {
633     LSA_POL_HND pol_hnd; /* policy handle */
634     uint32 num_entries;
635     uint32 buffer_dom_sid; /* undocumented domain SID buffer pointer */
636     uint32 buffer_dom_name; /* undocumented domain name buffer pointer */
637     uint32 buffer_lookup_sids[MAX_LOOKUP_SIDS]; /* undocumented domain SID pointers to be looked up. */
638     DOM_SID dom_sids[MAX_LOOKUP_SIDS]; /* domain SIDs to be looked up. */
639     uint8 undoc[16]; /* completely undocumented 16 bytes */
640
641 } LSA_Q_LOOKUP_SIDS;
642
643 /* LSA_R_LOOKUP_SIDS - response to LSA Lookup SIDs */
644 typedef struct lsa_r_lookup_sids
645 {
646     DOM_R_REF dom_ref; /* domain reference info */
647
648     uint32 num_entries;
649     uint32 undoc_buffer; /* undocumented buffer pointer */
650     uint32 num_entries2; 
651
652     DOM_SID2 dom_sid[MAX_LOOKUP_SIDS]; /* domain SIDs being looked up */
653
654     uint32 num_entries3; 
655
656   uint32 status; /* return code */
657
658 } LSA_R_LOOKUP_SIDS;
659
660 /* DOM_NAME - XXXX not sure about this structure */
661 typedef struct dom_name_info
662 {
663     uint32 uni_str_len;
664         UNISTR str;
665
666 } DOM_NAME;
667
668
669 #define UNKNOWN_LEN 1
670
671 /* LSA_Q_LOOKUP_RIDS - LSA Lookup RIDs */
672 typedef struct lsa_q_lookup_rids
673 {
674
675     LSA_POL_HND pol_hnd; /* policy handle */
676     uint32 num_entries;
677     uint32 num_entries2;
678     uint32 buffer_dom_sid; /* undocumented domain SID buffer pointer */
679     uint32 buffer_dom_name; /* undocumented domain name buffer pointer */
680     DOM_NAME lookup_name[MAX_LOOKUP_SIDS]; /* names to be looked up */
681     uint8 undoc[UNKNOWN_LEN]; /* completely undocumented bytes of unknown length */
682
683 } LSA_Q_LOOKUP_RIDS;
684
685 /* LSA_R_LOOKUP_RIDS - response to LSA Lookup Names */
686 typedef struct lsa_r_lookup_rids
687 {
688     DOM_R_REF dom_ref; /* domain reference info */
689
690     uint32 num_entries;
691     uint32 undoc_buffer; /* undocumented buffer pointer */
692
693     uint32 num_entries2; 
694     DOM_RID2 dom_rid[MAX_LOOKUP_SIDS]; /* domain RIDs being looked up */
695
696     uint32 num_entries3; 
697
698   uint32 status; /* return code */
699
700 } LSA_R_LOOKUP_RIDS;
701
702
703
704 /* NEG_FLAGS */
705 typedef struct lsa_neg_flags_info
706 {
707     uint32 neg_flags; /* negotiated flags */
708
709 } NEG_FLAGS;
710
711
712 /* LSA_Q_REQ_CHAL */
713 typedef struct lsa_q_req_chal_info
714 {
715     uint32  undoc_buffer; /* undocumented buffer pointer */
716     UNISTR2 uni_logon_srv; /* logon server unicode string */
717     UNISTR2 uni_logon_clnt; /* logon client unicode string */
718     DOM_CHAL clnt_chal; /* client challenge */
719
720 } LSA_Q_REQ_CHAL;
721
722
723 /* LSA_R_REQ_CHAL */
724 typedef struct lsa_r_req_chal_info
725 {
726     DOM_CHAL srv_chal; /* server challenge */
727
728   uint32 status; /* return code */
729
730 } LSA_R_REQ_CHAL;
731
732
733
734 /* LSA_Q_AUTH_2 */
735 typedef struct lsa_q_auth2_info
736 {
737     DOM_LOG_INFO clnt_id; /* client identification info */
738     DOM_CHAL clnt_chal;     /* client-calculated credentials */
739
740     NEG_FLAGS clnt_flgs; /* usually 0x0000 01ff */
741
742 } LSA_Q_AUTH_2;
743
744
745 /* LSA_R_AUTH_2 */
746 typedef struct lsa_r_auth2_info
747 {
748     DOM_CHAL srv_chal;     /* server-calculated credentials */
749     NEG_FLAGS srv_flgs; /* usually 0x0000 01ff */
750
751   uint32 status; /* return code */
752
753 } LSA_R_AUTH_2;
754
755
756 /* LSA_Q_SRV_PWSET */
757 typedef struct lsa_q_srv_pwset_info
758 {
759     DOM_CLNT_INFO clnt_id; /* client identification/authentication info */
760     char pwd[16]; /* new password - undocumented. */
761
762 } LSA_Q_SRV_PWSET;
763     
764 /* LSA_R_SRV_PWSET */
765 typedef struct lsa_r_srv_pwset_info
766 {
767     DOM_CRED srv_cred;     /* server-calculated credentials */
768
769   uint32 status; /* return code */
770
771 } LSA_R_SRV_PWSET;
772
773 #define LSA_MAX_GROUPS 32
774 #define LSA_MAX_SIDS 32
775
776 /* LSA_USER_INFO */
777 typedef struct lsa_q_user_info
778 {
779         uint32 ptr_user_info;
780
781         NTTIME logon_time;            /* logon time */
782         NTTIME logoff_time;           /* logoff time */
783         NTTIME kickoff_time;          /* kickoff time */
784         NTTIME pass_last_set_time;    /* password last set time */
785         NTTIME pass_can_change_time;  /* password can change time */
786         NTTIME pass_must_change_time; /* password must change time */
787
788         UNIHDR hdr_user_name;    /* username unicode string header */
789         UNIHDR hdr_full_name;    /* user's full name unicode string header */
790         UNIHDR hdr_logon_script; /* logon script unicode string header */
791         UNIHDR hdr_profile_path; /* profile path unicode string header */
792         UNIHDR hdr_home_dir;     /* home directory unicode string header */
793         UNIHDR hdr_dir_drive;    /* home directory drive unicode string header */
794
795         uint16 logon_count;  /* logon count */
796         uint16 bad_pw_count; /* bad password count */
797
798         uint32 user_id;       /* User ID */
799         uint32 group_id;      /* Group ID */
800         uint32 num_groups;    /* num groups */
801         uint32 buffer_groups; /* undocumented buffer pointer to groups. */
802         uint32 user_flgs;     /* user flags */
803
804         char sess_key[16]; /* unused user session key */
805
806         UNIHDR hdr_logon_srv; /* logon server unicode string header */
807         UNIHDR hdr_logon_dom; /* logon domain unicode string header */
808
809         uint32 buffer_dom_id; /* undocumented logon domain id pointer */
810         char padding[40];    /* unused padding bytes.  expansion room */
811
812         uint32 num_other_sids; /* 0 - num_sids */
813         uint32 buffer_other_sids; /* NULL - undocumented pointer to SIDs. */
814         
815         UNISTR2 uni_user_name;    /* username unicode string */
816         UNISTR2 uni_full_name;    /* user's full name unicode string */
817         UNISTR2 uni_logon_script; /* logon script unicode string */
818         UNISTR2 uni_profile_path; /* profile path unicode string */
819         UNISTR2 uni_home_dir;     /* home directory unicode string */
820         UNISTR2 uni_dir_drive;    /* home directory drive unicode string */
821
822         uint32 num_groups2;        /* num groups */
823         DOM_GID gids[LSA_MAX_GROUPS]; /* group info */
824
825         UNISTR2 uni_logon_srv; /* logon server unicode string */
826         UNISTR2 uni_logon_dom; /* logon domain unicode string */
827
828         DOM_SID dom_sid;           /* domain SID */
829         DOM_SID other_sids[LSA_MAX_SIDS]; /* undocumented - domain SIDs */
830
831 } LSA_USER_INFO;
832
833
834 /* LSA_Q_SAM_LOGON */
835 typedef struct lsa_q_sam_logon_info
836 {
837     DOM_SAM_INFO sam_id;
838
839 } LSA_Q_SAM_LOGON;
840
841 /* LSA_R_SAM_LOGON */
842 typedef struct lsa_r_sam_logon_info
843 {
844     uint32 buffer_creds; /* undocumented buffer pointer */
845     DOM_CRED srv_creds; /* server credentials.  server time stamp appears to be ignored. */
846     
847         uint16 switch_value; /* 3 - indicates type of USER INFO */
848     LSA_USER_INFO *user;
849
850     uint32 auth_resp; /* 1 - Authoritative response; 0 - Non-Auth? */
851
852   uint32 status; /* return code */
853
854 } LSA_R_SAM_LOGON;
855
856
857 /* LSA_Q_SAM_LOGOFF */
858 typedef struct lsa_q_sam_logoff_info
859 {
860     DOM_SAM_INFO sam_id;
861
862 } LSA_Q_SAM_LOGOFF;
863
864 /* LSA_R_SAM_LOGOFF */
865 typedef struct lsa_r_sam_logoff_info
866 {
867     uint32 buffer_creds; /* undocumented buffer pointer */
868     DOM_CRED srv_creds; /* server credentials.  server time stamp appears to be ignored. */
869     
870   uint32 status; /* return code */
871
872 } LSA_R_SAM_LOGOFF;
873
874
875 /* SH_INFO_1 (pointers to level 1 share info strings) */
876 typedef struct ptr_share_info1
877 {
878         uint32 ptr_netname; /* pointer to net name. */
879         uint32 type;        /* type of share.  0 - undocumented. */
880         uint32 ptr_remark;  /* pointer to comment. */
881
882 } SH_INFO_1;
883
884 /* SH_INFO_1_STR (level 1 share info strings) */
885 typedef struct str_share_info1
886 {
887         UNISTR2 uni_netname; /* unicode string of net name */
888         UNISTR2 uni_remark;  /* unicode string of comment. */
889
890 } SH_INFO_1_STR;
891
892 /* oops - this is going to take up a *massive* amount of stack. */
893 /* the UNISTR2s already have 1024 uint16 chars in them... */
894 #define MAX_SHARE_ENTRIES 32
895
896 /* SHARE_INFO_1_CONTAINER  */
897 typedef struct share_info_ctr
898 {
899         uint32 num_entries_read;                     /* EntriesRead */
900         uint32 ptr_share_info;                       /* Buffer */
901         uint32 num_entries_read2;                    /* EntriesRead */
902         SH_INFO_1     info_1    [MAX_SHARE_ENTRIES]; /* share entry pointers */
903         SH_INFO_1_STR info_1_str[MAX_SHARE_ENTRIES]; /* share entry strings */
904         uint32 num_entries_read3;                    /* EntriesRead2 */
905         uint32 padding;                              /* padding */
906
907 } SHARE_INFO_1_CTR;
908
909
910 /* SRV_Q_NET_SHARE_ENUM */
911 typedef struct q_net_share_enum_info
912 {
913         uint32 ptr_srv_name;         /* pointer (to server name?) */
914         UNISTR2 uni_srv_name;        /* server name */
915
916         uint32 share_level;          /* share level */
917         uint32 switch_value;         /* switch value */
918
919         uint32 ptr_share_info;       /* pointer to SHARE_INFO_1_CTR */
920
921         union
922     {
923                 SHARE_INFO_1_CTR info1; /* share info with 0 entries */
924
925     } share;
926
927         uint32 preferred_len;        /* preferred maximum length (0xffff ffff) */
928
929 } SRV_Q_NET_SHARE_ENUM;
930
931
932 /* SRV_R_NET_SHARE_ENUM */
933 typedef struct r_net_share_enum_info
934 {
935         uint32 share_level;          /* share level */
936         uint32 switch_value;         /* switch value */
937
938         uint32 ptr_share_info;       /* pointer to SHARE_INFO_1_CTR */
939         union
940     {
941                 SHARE_INFO_1_CTR info1; /* share info container */
942
943     } share;
944
945         uint32 status;               /* return status */
946
947 } SRV_R_NET_SHARE_ENUM;
948
949
950
951 /*
952
953 Yet to be turned into structures:
954
955 6) \\MAILSLOT\NET\NTLOGON
956 -------------------------
957
958 6.1) Query for PDC
959 ------------------
960
961 Request:
962
963     uint16         0x0007 - Query for PDC
964     STR            machine name
965     STR            response mailslot
966     uint8[]        padding to 2-byte align with start of mailslot.
967     UNISTR         machine name
968     uint32         NTversion
969     uint16         LMNTtoken
970     uint16         LM20token
971
972 Response:
973
974     uint16         0x000A - Respose to Query for PDC
975     STR            machine name (in uppercase)
976     uint8[]        padding to 2-byte align with start of mailslot.
977     UNISTR         machine name
978     UNISTR         domain name
979     uint32         NTversion (same as received in request)
980     uint16         LMNTtoken (same as received in request)
981     uint16         LM20token (same as received in request)
982
983
984 6.2) SAM Logon
985 --------------
986
987 Request:
988
989     uint16         0x0012 - SAM Logon
990     uint16         request count
991     UNISTR         machine name
992     UNISTR         user name
993     STR            response mailslot
994     uint32         alloweable account
995     uint32         domain SID size
996     char[sid_size] domain SID, of sid_size bytes.
997     uint8[]        ???? padding to 4? 2? -byte align with start of mailslot.
998     uint32         NTversion
999     uint16         LMNTtoken
1000     uint16         LM20token
1001     
1002 Response:
1003
1004     uint16         0x0013 - Response to SAM Logon
1005     UNISTR         machine name
1006     UNISTR         user name - workstation trust account
1007     UNISTR         domain name 
1008     uint32         NTversion
1009     uint16         LMNTtoken
1010     uint16         LM20token
1011
1012 */
1013
1014
1015 struct smb_passwd
1016 {
1017         int smb_userid;
1018         char *smb_name;
1019         unsigned char *smb_passwd; /* Null if no password */
1020         unsigned char *smb_nt_passwd; /* Null if no password */
1021         /* Other fields / flags may be added later */
1022 };
1023
1024
1025 struct cli_state {
1026         int fd;
1027         int cnum;
1028         int pid;
1029         int mid;
1030         int uid;
1031         int protocol;
1032         int sec_mode;
1033         int error;
1034         int privilages;
1035         fstring eff_name;
1036         fstring desthost;
1037         char cryptkey[8];
1038         uint32 sesskey;
1039         int serverzone;
1040         uint32 servertime;
1041         int readbraw_supported;
1042         int writebraw_supported;
1043         int timeout;
1044         int max_xmit;
1045         char *outbuf;
1046         char *inbuf;
1047         int bufsize;
1048         int initialised;
1049 };
1050
1051 struct current_user
1052 {
1053   int cnum, id;
1054   int uid, gid;
1055   int ngroups;
1056   gid_t *groups;
1057   int *igroups;
1058   int *attrs;
1059 };
1060
1061 typedef struct
1062 {
1063   int size;
1064   int mode;
1065   int uid;
1066   int gid;
1067   /* these times are normally kept in GMT */
1068   time_t mtime;
1069   time_t atime;
1070   time_t ctime;
1071   pstring name;
1072
1073 } file_info;
1074
1075
1076 /* Structure used when SMBwritebmpx is active */
1077 typedef struct
1078         {
1079         int   wr_total_written; /* So we know when to discard this */
1080         int32 wr_timeout;
1081         int32 wr_errclass;
1082         int32 wr_error; /* Cached errors */
1083         BOOL  wr_mode; /* write through mode) */
1084         BOOL  wr_discard; /* discard all further data */
1085         } write_bmpx_struct;
1086
1087 /*
1088  * Structure used to indirect fd's from the files_struct.
1089  * Needed as POSIX locking is based on file and process, not
1090  * file descriptor and process.
1091  */
1092
1093 typedef struct
1094 {
1095   uint16 ref_count;
1096   uint32 dev;
1097   uint32 inode;
1098   int fd;
1099   int fd_readonly;
1100   int fd_writeonly;
1101   int real_open_flags;
1102 } file_fd_struct;
1103
1104 typedef struct
1105 {
1106   int cnum;
1107   file_fd_struct *fd_ptr;
1108   int pos;
1109   uint32 size;
1110   int mode;
1111   int uid;
1112   char *mmap_ptr;
1113   uint32 mmap_size;
1114   write_bmpx_struct *wbmpx_ptr;
1115   struct timeval open_time;
1116   BOOL open;
1117   BOOL can_lock;
1118   BOOL can_read;
1119   BOOL can_write;
1120   BOOL share_mode;
1121   BOOL print_file;
1122   BOOL modified;
1123   BOOL granted_oplock;
1124   char *name;
1125 } files_struct;
1126
1127
1128 struct uid_cache {
1129   int entries;
1130   int list[UID_CACHE_SIZE];
1131 };
1132
1133 typedef struct
1134 {
1135   char *name;
1136   BOOL is_wild;
1137 } name_compare_entry;
1138
1139 typedef struct
1140 {
1141   int service;
1142   BOOL force_user;
1143   struct uid_cache uid_cache;
1144   void *dirptr;
1145   BOOL open;
1146   BOOL printer;
1147   BOOL ipc;
1148   BOOL read_only;
1149   BOOL admin_user;
1150   char *dirpath;
1151   char *connectpath;
1152   char *origpath;
1153   char *user; /* name of user who *opened* this connection */
1154   int uid; /* uid of user who *opened* this connection */
1155   int gid; /* gid of user who *opened* this connection */
1156
1157   uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
1158
1159   /* following groups stuff added by ih */
1160
1161   /* This groups info is valid for the user that *opened* the connection */
1162   int ngroups;
1163   gid_t *groups;
1164   int *igroups; /* an integer version - some OSes are broken :-( */
1165   int *attrs;
1166
1167   time_t lastused;
1168   BOOL used;
1169   int num_files_open;
1170   name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
1171   name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
1172
1173 } connection_struct;
1174
1175 /* Domain controller authentication protocol info */
1176 struct dcinfo
1177 {
1178   DOM_CHAL clnt_chal; /* Initial challenge received from client */
1179   DOM_CHAL srv_chal;  /* Initial server challenge */
1180   DOM_CHAL clnt_cred; /* Last client credential */
1181   DOM_CHAL srv_cred;  /* Last server credential */
1182
1183   uint32 sess_key[2]; /* Session key */
1184   uchar  md4pw[16];   /* md4(machine password) */
1185 };
1186
1187 typedef struct
1188 {
1189   int uid; /* uid of a validated user */
1190   int gid; /* gid of a validated user */
1191
1192   fstring name; /* name of a validated user */
1193   fstring real_name;   /* to store real name from password file - simeon */
1194   BOOL guest;
1195
1196   /* following groups stuff added by ih */
1197   /* This groups info is needed for when we become_user() for this uid */
1198   int n_groups;
1199   gid_t *groups;
1200   int *igroups; /* an integer version - some OSes are broken :-( */
1201   int *attrs; /* attributes associated with each gid */
1202
1203   int n_sids;
1204   int *sids;
1205
1206   /* per-user authentication information on NT RPCs */
1207   struct dcinfo dc;
1208
1209 } user_struct;
1210
1211
1212 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
1213
1214 typedef struct
1215 {
1216   int job;
1217   int size;
1218   int status;
1219   int priority;
1220   time_t time;
1221   char user[30];
1222   char file[100];
1223 } print_queue_struct;
1224
1225 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
1226
1227 typedef struct
1228 {
1229   fstring message;
1230   int status;
1231 }  print_status_struct;
1232
1233 /* used for server information: client, nameserv and ipc */
1234 struct server_info_struct
1235 {
1236   fstring name;
1237   uint32 type;
1238   fstring comment;
1239   fstring domain; /* used ONLY in ipc.c NOT namework.c */
1240   BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
1241 };
1242
1243
1244 /* used for network interfaces */
1245 struct interface
1246 {
1247         struct interface *next;
1248         struct in_addr ip;
1249         struct in_addr bcast;
1250         struct in_addr nmask;
1251 };
1252
1253 /* struct returned by get_share_modes */
1254 typedef struct
1255 {
1256   int pid;
1257   uint16 op_port;
1258   uint16 op_type;
1259   int share_mode;
1260   struct timeval time;
1261 } share_mode_entry;
1262
1263
1264 /* Conversion to hash entry index from device and inode numbers. */
1265 #define HASH_ENTRY(dev,ino) ((( (uint32)(dev) )* ( (uint32)(ino) )) % lp_shmem_hash_size())
1266
1267 /* each implementation of the share mode code needs
1268    to support the following operations */
1269 struct share_ops {
1270         BOOL (*stop_mgmt)(void);
1271         BOOL (*lock_entry)(int , uint32 , uint32 , int *);
1272         BOOL (*unlock_entry)(int , uint32 , uint32 , int );
1273         BOOL (*get_entries)(int , int , uint32 , uint32 , share_mode_entry **);
1274         void (*del_entry)(int , int );
1275         BOOL (*set_entry)(int , int , uint16 , uint16 );
1276         BOOL (*remove_oplock)(int , int);
1277         int (*forall)(void (*)(share_mode_entry *, char *));
1278         void (*status)(FILE *);
1279 };
1280
1281 /* each implementation of the shared memory code needs
1282    to support the following operations */
1283 struct shmem_ops {
1284         BOOL (*open)(char *, int );
1285         BOOL (*close)( void );
1286         int (*alloc)(int );
1287         BOOL (*free)(int );
1288         int (*get_userdef_off)(void);
1289         void *(*offset2addr)(int );
1290         int (*addr2offset)(void *addr);
1291         BOOL (*lock_hash_entry)(unsigned int);
1292         BOOL (*unlock_hash_entry)( unsigned int );
1293         BOOL (*get_usage)(int *,int *,int *);
1294 };
1295
1296
1297 /* this is used for smbstatus */
1298 struct connect_record
1299 {
1300   int magic;
1301   int pid;
1302   int cnum;
1303   int uid;
1304   int gid;
1305   char name[24];
1306   char addr[24];
1307   char machine[128];
1308   time_t start;
1309 };
1310
1311 #ifndef LOCKING_VERSION
1312 #define LOCKING_VERSION 4
1313 #endif /* LOCKING_VERSION */
1314
1315 /* these are useful macros for checking validity of handles */
1316 #define VALID_FNUM(fnum)   (((fnum) >= 0) && ((fnum) < MAX_OPEN_FILES))
1317 #define OPEN_FNUM(fnum)    (VALID_FNUM(fnum) && Files[fnum].open)
1318 #define VALID_CNUM(cnum)   (((cnum) >= 0) && ((cnum) < MAX_CONNECTIONS))
1319 #define OPEN_CNUM(cnum)    (VALID_CNUM(cnum) && Connections[cnum].open)
1320 #define IS_IPC(cnum)       (VALID_CNUM(cnum) && Connections[cnum].ipc)
1321 #define IS_PRINT(cnum)       (VALID_CNUM(cnum) && Connections[cnum].printer)
1322 #define FNUM_OK(fnum,c) (OPEN_FNUM(fnum) && (c)==Files[fnum].cnum)
1323
1324 #define CHECK_FNUM(fnum,c) if (!FNUM_OK(fnum,c)) \
1325                                return(ERROR(ERRDOS,ERRbadfid))
1326 #define CHECK_READ(fnum) if (!Files[fnum].can_read) \
1327                                return(ERROR(ERRDOS,ERRbadaccess))
1328 #define CHECK_WRITE(fnum) if (!Files[fnum].can_write) \
1329                                return(ERROR(ERRDOS,ERRbadaccess))
1330 #define CHECK_ERROR(fnum) if (HAS_CACHED_ERROR(fnum)) \
1331                                return(CACHED_ERROR(fnum))
1332
1333 /* translates a connection number into a service number */
1334 #define SNUM(cnum)         (Connections[cnum].service)
1335
1336 /* access various service details */
1337 #define SERVICE(snum)      (lp_servicename(snum))
1338 #define PRINTCAP           (lp_printcapname())
1339 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
1340 #define PRINTERNAME(snum)  (lp_printername(snum))
1341 #define CAN_WRITE(cnum)    (OPEN_CNUM(cnum) && !Connections[cnum].read_only)
1342 #define VALID_SNUM(snum)   (lp_snum_ok(snum))
1343 #define GUEST_OK(snum)     (VALID_SNUM(snum) && lp_guest_ok(snum))
1344 #define GUEST_ONLY(snum)   (VALID_SNUM(snum) && lp_guest_only(snum))
1345 #define CAN_SETDIR(snum)   (!lp_no_set_dir(snum))
1346 #define CAN_PRINT(cnum)    (OPEN_CNUM(cnum) && lp_print_ok(SNUM(cnum)))
1347 #define POSTSCRIPT(cnum)   (OPEN_CNUM(cnum) && lp_postscript(SNUM(cnum)))
1348 #define MAP_HIDDEN(cnum)   (OPEN_CNUM(cnum) && lp_map_hidden(SNUM(cnum)))
1349 #define MAP_SYSTEM(cnum)   (OPEN_CNUM(cnum) && lp_map_system(SNUM(cnum)))
1350 #define MAP_ARCHIVE(cnum)   (OPEN_CNUM(cnum) && lp_map_archive(SNUM(cnum)))
1351 #define IS_HIDDEN_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].hide_list))
1352 #define IS_VETO_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].veto_list))
1353
1354 #define SMBENCRYPT()       (lp_encrypted_passwords())
1355
1356 /* the basic packet size, assuming no words or bytes */
1357 #define smb_size 39
1358
1359 /* offsets into message for common items */
1360 #define smb_com 8
1361 #define smb_rcls 9
1362 #define smb_reh 10
1363 #define smb_err 11
1364 #define smb_flg 13
1365 #define smb_flg2 14
1366 #define smb_reb 13
1367 #define smb_tid 28
1368 #define smb_pid 30
1369 #define smb_uid 32
1370 #define smb_mid 34
1371 #define smb_wct 36
1372 #define smb_vwv 37
1373 #define smb_vwv0 37
1374 #define smb_vwv1 39
1375 #define smb_vwv2 41
1376 #define smb_vwv3 43
1377 #define smb_vwv4 45
1378 #define smb_vwv5 47
1379 #define smb_vwv6 49
1380 #define smb_vwv7 51
1381 #define smb_vwv8 53
1382 #define smb_vwv9 55
1383 #define smb_vwv10 57
1384 #define smb_vwv11 59
1385 #define smb_vwv12 61
1386 #define smb_vwv13 63
1387 #define smb_vwv14 65
1388 #define smb_vwv15 67
1389 #define smb_vwv16 69
1390 #define smb_vwv17 71
1391
1392
1393 /* the complete */
1394 #define SMBmkdir      0x00   /* create directory */
1395 #define SMBrmdir      0x01   /* delete directory */
1396 #define SMBopen       0x02   /* open file */
1397 #define SMBcreate     0x03   /* create file */
1398 #define SMBclose      0x04   /* close file */
1399 #define SMBflush      0x05   /* flush file */
1400 #define SMBunlink     0x06   /* delete file */
1401 #define SMBmv         0x07   /* rename file */
1402 #define SMBgetatr     0x08   /* get file attributes */
1403 #define SMBsetatr     0x09   /* set file attributes */
1404 #define SMBread       0x0A   /* read from file */
1405 #define SMBwrite      0x0B   /* write to file */
1406 #define SMBlock       0x0C   /* lock byte range */
1407 #define SMBunlock     0x0D   /* unlock byte range */
1408 #define SMBctemp      0x0E   /* create temporary file */
1409 #define SMBmknew      0x0F   /* make new file */
1410 #define SMBchkpth     0x10   /* check directory path */
1411 #define SMBexit       0x11   /* process exit */
1412 #define SMBlseek      0x12   /* seek */
1413 #define SMBtcon       0x70   /* tree connect */
1414 #define SMBtconX      0x75   /* tree connect and X*/
1415 #define SMBtdis       0x71   /* tree disconnect */
1416 #define SMBnegprot    0x72   /* negotiate protocol */
1417 #define SMBdskattr    0x80   /* get disk attributes */
1418 #define SMBsearch     0x81   /* search directory */
1419 #define SMBsplopen    0xC0   /* open print spool file */
1420 #define SMBsplwr      0xC1   /* write to print spool file */
1421 #define SMBsplclose   0xC2   /* close print spool file */
1422 #define SMBsplretq    0xC3   /* return print queue */
1423 #define SMBsends      0xD0   /* send single block message */
1424 #define SMBsendb      0xD1   /* send broadcast message */
1425 #define SMBfwdname    0xD2   /* forward user name */
1426 #define SMBcancelf    0xD3   /* cancel forward */
1427 #define SMBgetmac     0xD4   /* get machine name */
1428 #define SMBsendstrt   0xD5   /* send start of multi-block message */
1429 #define SMBsendend    0xD6   /* send end of multi-block message */
1430 #define SMBsendtxt    0xD7   /* send text of multi-block message */
1431
1432 /* Core+ protocol */
1433 #define SMBlockread       0x13   /* Lock a range and read */
1434 #define SMBwriteunlock 0x14 /* Unlock a range then write */
1435 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
1436 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
1437 #define SMBwritec     0x20  /* secondary write request */
1438 #define SMBwriteclose 0x2c  /* write a file then close it */
1439
1440 /* dos extended protocol */
1441 #define SMBreadBraw      0x1A   /* read block raw */
1442 #define SMBreadBmpx      0x1B   /* read block multiplexed */
1443 #define SMBreadBs        0x1C   /* read block (secondary response) */
1444 #define SMBwriteBraw     0x1D   /* write block raw */
1445 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
1446 #define SMBwriteBs       0x1F   /* write block (secondary request) */
1447 #define SMBwriteC        0x20   /* write complete response */
1448 #define SMBsetattrE      0x22   /* set file attributes expanded */
1449 #define SMBgetattrE      0x23   /* get file attributes expanded */
1450 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
1451 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
1452 #define SMBtranss        0x26   /* transaction (secondary request/response) */
1453 #define SMBioctl         0x27   /* IOCTL */
1454 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
1455 #define SMBcopy          0x29   /* copy */
1456 #define SMBmove          0x2A   /* move */
1457 #define SMBecho          0x2B   /* echo */
1458 #define SMBopenX         0x2D   /* open and X */
1459 #define SMBreadX         0x2E   /* read and X */
1460 #define SMBwriteX        0x2F   /* write and X */
1461 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
1462 #define SMBffirst        0x82   /* find first */
1463 #define SMBfunique       0x83   /* find unique */
1464 #define SMBfclose        0x84   /* find close */
1465 #define SMBinvalid       0xFE   /* invalid command */
1466
1467 /* Extended 2.0 protocol */
1468 #define SMBtrans2        0x32   /* TRANS2 protocol set */
1469 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
1470 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
1471 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
1472 #define SMBulogoffX      0x74   /* user logoff */
1473
1474 /* NT SMB extensions. */
1475 #define SMBnttrans       0xA0   /* NT transact */
1476 #define SMBnttranss      0xA1   /* NT transact secondary */
1477 #define SMBntcreateX     0xA2   /* NT create and X */
1478 #define SMBntcancel      0xA4   /* NT cancel */
1479
1480 /* These are the TRANS2 sub commands */
1481 #define TRANSACT2_OPEN                        0
1482 #define TRANSACT2_FINDFIRST                   1
1483 #define TRANSACT2_FINDNEXT                    2
1484 #define TRANSACT2_QFSINFO                     3
1485 #define TRANSACT2_SETFSINFO                   4
1486 #define TRANSACT2_QPATHINFO                   5
1487 #define TRANSACT2_SETPATHINFO                 6
1488 #define TRANSACT2_QFILEINFO                   7
1489 #define TRANSACT2_SETFILEINFO                 8
1490 #define TRANSACT2_FSCTL                       9
1491 #define TRANSACT2_IOCTL                     0xA
1492 #define TRANSACT2_FINDNOTIFYFIRST           0xB
1493 #define TRANSACT2_FINDNOTIFYNEXT            0xC
1494 #define TRANSACT2_MKDIR                     0xD
1495 #define TRANSACT2_SESSION_SETUP             0xE
1496 #define TRANSACT2_GET_DFS_REFERRAL         0x10
1497 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
1498
1499 /* These are the NT transact sub commands. */
1500 #define NT_TRANSACT_CREATE                1
1501 #define NT_TRANSACT_IOCTL                 2
1502 #define NT_TRANSACT_SET_SECURITY_DESC     3
1503 #define NT_TRANSACT_NOTIFY_CHANGE         4
1504 #define NT_TRANSACT_RENAME                5
1505 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
1506
1507 /* these are the trans2 sub fields for primary requests */
1508 #define smb_tpscnt smb_vwv0
1509 #define smb_tdscnt smb_vwv1
1510 #define smb_mprcnt smb_vwv2
1511 #define smb_mdrcnt smb_vwv3
1512 #define smb_msrcnt smb_vwv4
1513 #define smb_flags smb_vwv5
1514 #define smb_timeout smb_vwv6
1515 #define smb_pscnt smb_vwv9
1516 #define smb_psoff smb_vwv10
1517 #define smb_dscnt smb_vwv11
1518 #define smb_dsoff smb_vwv12
1519 #define smb_suwcnt smb_vwv13
1520 #define smb_setup smb_vwv14
1521 #define smb_setup0 smb_setup
1522 #define smb_setup1 (smb_setup+2)
1523 #define smb_setup2 (smb_setup+4)
1524
1525 /* these are for the secondary requests */
1526 #define smb_spscnt smb_vwv2
1527 #define smb_spsoff smb_vwv3
1528 #define smb_spsdisp smb_vwv4
1529 #define smb_sdscnt smb_vwv5
1530 #define smb_sdsoff smb_vwv6
1531 #define smb_sdsdisp smb_vwv7
1532 #define smb_sfid smb_vwv8
1533
1534 /* and these for responses */
1535 #define smb_tprcnt smb_vwv0
1536 #define smb_tdrcnt smb_vwv1
1537 #define smb_prcnt smb_vwv3
1538 #define smb_proff smb_vwv4
1539 #define smb_prdisp smb_vwv5
1540 #define smb_drcnt smb_vwv6
1541 #define smb_droff smb_vwv7
1542 #define smb_drdisp smb_vwv8
1543
1544 /* where to find the base of the SMB packet proper */
1545 #define smb_base(buf) (((char *)(buf))+4)
1546
1547
1548 #define SUCCESS 0  /* The request was successful. */
1549 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
1550 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
1551 #define ERRHRD 0x03  /* Error is an hardware error. */
1552 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
1553
1554 #ifdef __STDC__
1555 int Debug1(char *, ...);
1556 #else
1557 int Debug1();
1558 #endif
1559
1560 #ifdef DFS_AUTH
1561 void dfs_unlogin(void);
1562 extern int dcelogin_atmost_once;
1563 #endif
1564
1565 #if AJT
1566 void ajt_panic(void);
1567 #endif
1568
1569 #ifdef NOSTRDUP
1570 char *strdup(char *s);
1571 #endif
1572
1573 #ifdef REPLACE_STRLEN
1574 int Strlen(char *);
1575 #endif
1576
1577 #ifdef REPLACE_STRSTR
1578 char *Strstr(char *s, char *p);
1579 #endif
1580
1581 #ifndef MIN
1582 #define MIN(a,b) ((a)<(b)?(a):(b))
1583 #endif
1584 #ifndef MAX
1585 #define MAX(a,b) ((a)>(b)?(a):(b))
1586 #endif
1587
1588 #ifndef ABS
1589 #define ABS(a) ((a)>0?(a):(-(a)))
1590 #endif
1591
1592 #ifndef SIGNAL_CAST
1593 #define SIGNAL_CAST
1594 #endif
1595
1596 #ifndef SELECT_CAST
1597 #define SELECT_CAST
1598 #endif
1599
1600
1601 /* Some POSIX definitions for those without */
1602  
1603 #ifndef S_IFDIR
1604 #define S_IFDIR         0x4000
1605 #endif
1606 #ifndef S_ISDIR
1607 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
1608 #endif
1609 #ifndef S_IRWXU
1610 #define S_IRWXU 00700           /* read, write, execute: owner */
1611 #endif
1612 #ifndef S_IRUSR
1613 #define S_IRUSR 00400           /* read permission: owner */
1614 #endif
1615 #ifndef S_IWUSR
1616 #define S_IWUSR 00200           /* write permission: owner */
1617 #endif
1618 #ifndef S_IXUSR
1619 #define S_IXUSR 00100           /* execute permission: owner */
1620 #endif
1621 #ifndef S_IRWXG
1622 #define S_IRWXG 00070           /* read, write, execute: group */
1623 #endif
1624 #ifndef S_IRGRP
1625 #define S_IRGRP 00040           /* read permission: group */
1626 #endif
1627 #ifndef S_IWGRP
1628 #define S_IWGRP 00020           /* write permission: group */
1629 #endif
1630 #ifndef S_IXGRP
1631 #define S_IXGRP 00010           /* execute permission: group */
1632 #endif
1633 #ifndef S_IRWXO
1634 #define S_IRWXO 00007           /* read, write, execute: other */
1635 #endif
1636 #ifndef S_IROTH
1637 #define S_IROTH 00004           /* read permission: other */
1638 #endif
1639 #ifndef S_IWOTH
1640 #define S_IWOTH 00002           /* write permission: other */
1641 #endif
1642 #ifndef S_IXOTH
1643 #define S_IXOTH 00001           /* execute permission: other */
1644 #endif
1645
1646
1647 /* these are used in NetServerEnum to choose what to receive */
1648 #define SV_TYPE_WORKSTATION         0x00000001
1649 #define SV_TYPE_SERVER              0x00000002
1650 #define SV_TYPE_SQLSERVER           0x00000004
1651 #define SV_TYPE_DOMAIN_CTRL         0x00000008
1652 #define SV_TYPE_DOMAIN_BAKCTRL      0x00000010
1653 #define SV_TYPE_TIME_SOURCE         0x00000020
1654 #define SV_TYPE_AFP                 0x00000040
1655 #define SV_TYPE_NOVELL              0x00000080
1656 #define SV_TYPE_DOMAIN_MEMBER       0x00000100
1657 #define SV_TYPE_PRINTQ_SERVER       0x00000200
1658 #define SV_TYPE_DIALIN_SERVER       0x00000400
1659 #define SV_TYPE_SERVER_UNIX         0x00000800
1660 #define SV_TYPE_NT                  0x00001000
1661 #define SV_TYPE_WFW                 0x00002000
1662 #define SV_TYPE_SERVER_MFPN         0x00004000
1663 #define SV_TYPE_SERVER_NT           0x00008000
1664 #define SV_TYPE_POTENTIAL_BROWSER   0x00010000
1665 #define SV_TYPE_BACKUP_BROWSER      0x00020000
1666 #define SV_TYPE_MASTER_BROWSER      0x00040000
1667 #define SV_TYPE_DOMAIN_MASTER       0x00080000
1668 #define SV_TYPE_SERVER_OSF          0x00100000
1669 #define SV_TYPE_SERVER_VMS          0x00200000
1670 #define SV_TYPE_WIN95_PLUS          0x00400000
1671 #define SV_TYPE_ALTERNATE_XPORT     0x20000000  
1672 #define SV_TYPE_LOCAL_LIST_ONLY     0x40000000  
1673 #define SV_TYPE_DOMAIN_ENUM         0x80000000
1674 #define SV_TYPE_ALL                 0xFFFFFFFF  
1675
1676 /* what server type are we currently  - JHT Says we ARE 4.20 */
1677 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1678 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1679 /* History: */
1680 /* Version 4.0 - never made public */
1681 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1682 /*              - Reappeared in 1.9.16p11 with fixed smbd services */
1683 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1684
1685 #define DEFAULT_MAJOR_VERSION 0x04
1686 #define DEFAULT_MINOR_VERSION 0x02
1687
1688 /* Browser Election Values */
1689 #define BROWSER_ELECTION_VERSION        0x010f
1690 #define BROWSER_CONSTANT        0xaa55
1691
1692
1693 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1694
1695 #define CAP_RAW_MODE         0x0001
1696 #define CAP_MPX_MODE         0x0002
1697 #define CAP_UNICODE          0x0004
1698 #define CAP_LARGE_FILES      0x0008
1699 #define CAP_NT_SMBS          0x0010
1700 #define CAP_RPC_REMOTE_APIS  0x0020
1701 #define CAP_STATUS32         0x0040
1702 #define CAP_LEVEL_II_OPLOCKS 0x0080
1703 #define CAP_LOCK_AND_READ    0x0100
1704 #define CAP_NT_FIND          0x0200
1705 #define CAP_DFS              0x1000
1706 #define CAP_LARGE_READX      0x4000
1707
1708 /* protocol types. It assumes that higher protocols include lower protocols
1709    as subsets */
1710 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1711
1712 /* security levels */
1713 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER};
1714
1715 /* printing types */
1716 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1717                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG};
1718
1719 /* Remote architectures we know about. */
1720 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_SAMBA};
1721
1722 /* case handling */
1723 enum case_handling {CASE_LOWER,CASE_UPPER};
1724
1725
1726 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
1727    structures. We cannot define these as actual structures
1728    due to possible differences in structure packing
1729    on different machines/compilers. */
1730
1731 #define SMB_LPID_OFFSET(indx) (10 * (indx))
1732 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
1733 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
1734
1735 /* Macro to cache an error in a write_bmpx_struct */
1736 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
1737                             w->wr_discard = True, -1)
1738 /* Macro to test if an error has been cached for this fnum */
1739 #define HAS_CACHED_ERROR(fnum) (Files[(fnum)].open && \
1740                                 Files[(fnum)].wbmpx_ptr && \
1741                                 Files[(fnum)].wbmpx_ptr->wr_discard)
1742 /* Macro to turn the cached error into an error packet */
1743 #define CACHED_ERROR(fnum) cached_error_packet(inbuf,outbuf,fnum,__LINE__)
1744
1745 /* these are the datagram types */
1746 #define DGRAM_DIRECT_UNIQUE 0x10
1747
1748 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
1749
1750 /* this is how errors are generated */
1751 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
1752
1753 #define ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
1754
1755 /*
1756  * Global value meaing that the smb_uid field should be
1757  * ingored (in share level security and protocol level == CORE)
1758  */
1759
1760 #define UID_FIELD_INVALID 0
1761 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1762
1763 #endif 
1764
1765 /* Defines needed for multi-codepage support. */
1766 #define KANJI_CODEPAGE 932
1767
1768 #ifdef KANJI
1769 /* 
1770  * Default client code page - Japanese 
1771  */
1772 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1773 #else /* KANJI */
1774 /* 
1775  * Default client code page - 850 - Western European 
1776  */
1777 #define DEFAULT_CLIENT_CODE_PAGE 850
1778 #endif /* KANJI */
1779
1780 /* 
1781  * Size of buffer to use when moving files across filesystems. 
1782  */
1783 #define COPYBUF_SIZE (8*1024)
1784
1785 /* 
1786  * Integers used to override error codes. 
1787  */
1788 extern int unix_ERR_class;
1789 extern int unix_ERR_code;
1790
1791 /*
1792  * Map the Core and Extended Oplock requesst bits down
1793  * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1794  */
1795
1796 /*
1797  * Core protocol.
1798  */
1799 #define CORE_OPLOCK_REQUEST(inbuf) (((CVAL(inbuf,smb_flg)|(1<<5))>>5) | \
1800                                     ((CVAL(inbuf,smb_flg)|(1<<6))>>5))
1801
1802 /*
1803  * Extended protocol.
1804  */
1805 #define EXTENDED_OPLOCK_REQUEST(inbuf) (((SVAL(inbuf,smb_vwv2)|(1<<1))>>1) | \
1806                                         ((SVAL(inbuf,smb_vwv2)|(1<<2))>>1))
1807
1808 /* Lock types. */
1809 #define LOCKING_ANDX_SHARED_LOCK 0x1
1810 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1811 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1812 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1813 #define LOCKING_ANDX_LARGE_FILES 0x10
1814
1815 /* Oplock levels */
1816 #define OPLOCKLEVEL_NONE 0
1817 #define OPLOCKLEVEL_II 1
1818
1819 /*
1820  * Bits we test with.
1821  */
1822 #define EXCLUSIVE_OPLOCK 1
1823 #define BATCH_OPLOCK 2
1824
1825 #define CORE_OPLOCK_GRANTED (1<<5)
1826 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1827
1828 /*
1829  * Loopback command offsets.
1830  */
1831
1832 #define UDP_CMD_LEN_OFFSET 0
1833 #define UDP_CMD_PORT_OFFSET 4
1834 #define UDP_CMD_HEADER_LEN 6
1835
1836 #define UDP_MESSAGE_CMD_OFFSET 0
1837
1838 /*
1839  * Oplock break command code to send over the udp socket.
1840  * 
1841  * Form of this is :
1842  *
1843  *  0     2       6        10       14      18       22
1844  *  +----+--------+--------+--------+-------+--------+
1845  *  | cmd| pid    | dev    | inode  | sec   |  usec  |
1846  *  +----+--------+--------+--------+-------+--------+
1847  */
1848
1849 #define OPLOCK_BREAK_CMD 0x1
1850 #define OPLOCK_BREAK_PID_OFFSET 2
1851 #define OPLOCK_BREAK_DEV_OFFSET 6
1852 #define OPLOCK_BREAK_INODE_OFFSET 10
1853 #define OPLOCK_BREAK_SEC_OFFSET 14
1854 #define OPLOCK_BREAK_USEC_OFFSET 18
1855 #define OPLOCK_BREAK_MSG_LEN 22
1856
1857
1858 #define CMD_REPLY 0x8000
1859
1860 /* _SMB_H */