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