50d8c080a3e565ea25625abd69d800700617a246
[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-1998
6    Copyright (C) John H Terpstra 1996-1998
7    Copyright (C) Luke Kenneth Casson Leighton 1996-1998
8    Copyright (C) Paul Ashton 1998
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 #define BUFFER_SIZE (0xFFFF)
28 #define SAFETY_MARGIN 1024
29
30 #define NMB_PORT 137
31 #define DGRAM_PORT 138
32 #define SMB_PORT 139
33
34 #define False (0)
35 #define True (1)
36 #define BOOLSTR(b) ((b) ? "Yes" : "No")
37 #define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0)
38 #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
39
40 #define IS_BITS_SET_ALL(var,bit) (((var)&(bit))==(bit))
41 #define IS_BITS_SET_SOME(var,bit) (((var)&(bit))!=0)
42 #define IS_BITS_CLR_ALL(var,bit) (((var)&(~(bit)))==0)
43
44 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((const char *)(p1)) - (const char *)(p2)))
45
46 typedef int BOOL;
47
48 /* limiting size of ipc replies */
49 #define REALLOC(ptr,size) Realloc(ptr,MAX((size),4*1024))
50
51 #define SIZEOFWORD 2
52
53 #ifndef DEF_CREATE_MASK
54 #define DEF_CREATE_MASK (0755)
55 #endif
56
57 /* how long to wait for secondary SMB packets (milli-seconds) */
58 #define SMB_SECONDARY_WAIT (60*1000)
59
60 /* -------------------------------------------------------------------------- **
61  * Debugging code.  See also debug.c
62  */
63
64 /* mkproto.awk has trouble with ifdef'd function definitions (it ignores
65  * the #ifdef directive and will read both definitions, thus creating two
66  * diffferent prototype declarations), so we must do these by hand.
67  */
68 /* I know the __attribute__ stuff is ugly, but it does ensure we get the 
69    arguemnts to DEBUG() right. We have got them wrong too often in the 
70    past */
71 #ifdef HAVE_STDARG_H
72 int  Debug1( char *, ... )
73 #ifdef __GNUC__
74      __attribute__ ((format (printf, 1, 2)))
75 #endif
76 ;
77 BOOL dbgtext( char *, ... )
78 #ifdef __GNUC__
79      __attribute__ ((format (printf, 1, 2)))
80 #endif
81 ;
82 #else
83 int  Debug1();
84 BOOL dbgtext();
85 #endif
86
87 /* If we have these macros, we can add additional info to the header. */
88 #ifdef HAVE_FILE_MACRO
89 #define FILE_MACRO (__FILE__)
90 #else
91 #define FILE_MACRO ("")
92 #endif
93
94 #ifdef HAVE_FUNCTION_MACRO
95 #define FUNCTION_MACRO  (__FUNCTION__)
96 #else
97 #define FUNCTION_MACRO  ("")
98 #endif
99
100 /* Debugging macros. 
101  *  DEBUGLVL() - If level is <= the system-wide DEBUGLEVEL then generate a
102  *               header using the default macros for file, line, and
103  *               function name.
104  *               Returns True if the debug level was <= DEBUGLEVEL.
105  *               Example usage:
106  *                 if( DEBUGLVL( 2 ) )
107  *                   dbgtext( "Some text.\n" );
108  *  DEGUG()    - Good old DEBUG().  Each call to DEBUG() will generate a new
109  *               header *unless* the previous debug output was unterminated
110  *               (i.e., no '\n').  See debug.c:dbghdr() for more info.
111  *               Example usage:
112  *                 DEBUG( 2, ("Some text.\n") );
113  *  DEBUGADD() - If level <= DEBUGLEVEL, then the text is appended to the
114  *               current message (i.e., no header).
115  *               Usage:
116  *                 DEBUGADD( 2, ("Some additional text.\n") );
117  */
118 #define DEBUGLVL( level ) \
119   ( (DEBUGLEVEL >= (level)) \
120    && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) )
121
122 #define DEBUG( level, body ) \
123   (void)( (DEBUGLEVEL >= (level)) \
124        && (dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) )) \
125        && (dbgtext body) )
126
127 #define DEBUGADD( level, body ) \
128   (void)( (DEBUGLEVEL >= (level)) && (dbgtext body) )
129
130 /* End Debugging code section.
131  * -------------------------------------------------------------------------- **
132  */
133
134 /* this defines the error codes that receive_smb can put in smb_read_error */
135 #define READ_TIMEOUT 1
136 #define READ_EOF 2
137 #define READ_ERROR 3
138
139
140 #define DIR_STRUCT_SIZE 43
141
142 /* these define all the command types recognised by the server - there
143 are lots of gaps so probably there are some rare commands that are not
144 implemented */
145
146 #define pSETDIR '\377'
147
148 /* these define the attribute byte as seen by DOS */
149 #define aRONLY (1L<<0)
150 #define aHIDDEN (1L<<1)
151 #define aSYSTEM (1L<<2)
152 #define aVOLID (1L<<3)
153 #define aDIR (1L<<4)
154 #define aARCH (1L<<5)
155
156 /* for readability... */
157 #define IS_DOS_READONLY(test_mode) (((test_mode) & aRONLY) != 0)
158 #define IS_DOS_DIR(test_mode) (((test_mode) & aDIR) != 0)
159 #define IS_DOS_ARCHIVE(test_mode) (((test_mode) & aARCH) != 0)
160 #define IS_DOS_SYSTEM(test_mode) (((test_mode) & aSYSTEM) != 0)
161 #define IS_DOS_HIDDEN(test_mode) (((test_mode) & aHIDDEN) != 0)
162
163 /* deny modes */
164 #define DENY_DOS 0
165 #define DENY_ALL 1
166 #define DENY_WRITE 2
167 #define DENY_READ 3
168 #define DENY_NONE 4
169 #define DENY_FCB 7
170
171 /* open modes */
172 #define DOS_OPEN_RDONLY 0
173 #define DOS_OPEN_WRONLY 1
174 #define DOS_OPEN_RDWR 2
175 #define DOS_OPEN_FCB 0xF
176
177 /* define shifts and masks for share and open modes. */
178 #define OPEN_MODE_MASK 0xF
179 #define SHARE_MODE_SHIFT 4
180 #define SHARE_MODE_MASK 0x7
181 #define GET_OPEN_MODE(x) ((x) & OPEN_MODE_MASK)
182 #define SET_OPEN_MODE(x) ((x) & OPEN_MODE_MASK)
183 #define GET_DENY_MODE(x) (((x)>>SHARE_MODE_SHIFT) & SHARE_MODE_MASK)
184 #define SET_DENY_MODE(x) ((x)<<SHARE_MODE_SHIFT)
185
186 /* Sync on open file (not sure if used anymore... ?) */
187 #define FILE_SYNC_OPENMODE (1<<14)
188 #define GET_FILE_SYNC_OPENMODE(x) (((x) & FILE_SYNC_OPENMODE) ? True : False)
189
190 /* allow delete on open file mode (used by NT SMB's). */
191 #define ALLOW_SHARE_DELETE (1<<15)
192 #define GET_ALLOW_SHARE_DELETE(x) (((x) & ALLOW_SHARE_DELETE) ? True : False)
193 #define SET_ALLOW_SHARE_DELETE(x) ((x) ? ALLOW_SHARE_DELETE : 0)
194
195 /* delete on close flag (used by NT SMB's). */
196 #define DELETE_ON_CLOSE_FLAG (1<<16)
197 #define GET_DELETE_ON_CLOSE_FLAG(x) (((x) & DELETE_ON_CLOSE_FLAG) ? True : False)
198 #define SET_DELETE_ON_CLOSE_FLAG(x) ((x) ? DELETE_ON_CLOSE_FLAG : 0)
199
200 /* open disposition values */
201 #define FILE_EXISTS_FAIL 0
202 #define FILE_EXISTS_OPEN 1
203 #define FILE_EXISTS_TRUNCATE 2
204
205 /* mask for open disposition. */
206 #define FILE_OPEN_MASK 0x3
207
208 #define GET_FILE_OPEN_DISPOSITION(x) ((x) & FILE_OPEN_MASK)
209 #define SET_FILE_OPEN_DISPOSITION(x) ((x) & FILE_OPEN_MASK)
210
211 /* The above can be OR'ed with... */
212 #define FILE_CREATE_IF_NOT_EXIST 0x10
213 #define FILE_FAIL_IF_NOT_EXIST 0
214
215 #define GET_FILE_CREATE_DISPOSITION(x) ((x) & (FILE_CREATE_IF_NOT_EXIST|FILE_FAIL_IF_NOT_EXIST))
216
217 /* share types */
218 #define STYPE_DISKTREE  0       /* Disk drive */
219 #define STYPE_PRINTQ    1       /* Spooler queue */
220 #define STYPE_DEVICE    2       /* Serial device */
221 #define STYPE_IPC       3       /* Interprocess communication (IPC) */
222 #define STYPE_HIDDEN    0x80000000 /* share is a hidden one (ends with $) */
223
224 /* SMB X/Open error codes for the ERRDOS error class */
225 #define ERRbadfunc 1 /* Invalid function (or system call) */
226 #define ERRbadfile 2 /* File not found (pathname error) */
227 #define ERRbadpath 3 /* Directory not found */
228 #define ERRnofids 4 /* Too many open files */
229 #define ERRnoaccess 5 /* Access denied */
230 #define ERRbadfid 6 /* Invalid fid */
231 #define ERRnomem 8 /* Out of memory */
232 #define ERRbadmem 9 /* Invalid memory block address */
233 #define ERRbadenv 10 /* Invalid environment */
234 #define ERRbadaccess 12 /* Invalid open mode */
235 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
236 #define ERRres 14 /* reserved */
237 #define ERRbaddrive 15 /* Invalid drive */
238 #define ERRremcd 16 /* Attempt to delete current directory */
239 #define ERRdiffdevice 17 /* rename/move across different filesystems */
240 #define ERRnofiles 18 /* no more files found in file search */
241 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
242 #define ERRlock 33 /* Lock request conflicts with existing lock */
243 #define ERRunsup 50 /* Request unsupported, returned by Win 95, RJS 20Jun98 */
244 #define ERRfilexists 80 /* File in operation already exists */
245 #define ERRcannotopen 110 /* Cannot open the file specified */
246 #define ERRunknownlevel 124
247 #define ERRrename 183
248 #define ERRbadpipe 230 /* Named pipe invalid */
249 #define ERRpipebusy 231 /* All instances of pipe are busy */
250 #define ERRpipeclosing 232 /* named pipe close in progress */
251 #define ERRnotconnected 233 /* No process on other end of named pipe */
252 #define ERRmoredata 234 /* More data to be returned */
253 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
254 #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
255 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
256 #define ERROR_NOTIFY_ENUM_DIR 1022 /* Buffer too small to return change notify. */
257 #define ERRunknownipc 2142
258
259
260 /* here's a special one from observing NT */
261 #define ERRnoipc 66 /* don't support ipc */
262
263 /* Error codes for the ERRSRV class */
264
265 #define ERRerror 1 /* Non specific error code */
266 #define ERRbadpw 2 /* Bad password */
267 #define ERRbadtype 3 /* reserved */
268 #define ERRaccess 4 /* No permissions to do the requested operation */
269 #define ERRinvnid 5 /* tid invalid */
270 #define ERRinvnetname 6 /* Invalid servername */
271 #define ERRinvdevice 7 /* Invalid device */
272 #define ERRqfull 49 /* Print queue full */
273 #define ERRqtoobig 50 /* Queued item too big */
274 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
275 #define ERRsmbcmd 64 /* Unrecognised command */
276 #define ERRsrverror 65 /* smb server internal error */
277 #define ERRfilespecs 67 /* fid and pathname invalid combination */
278 #define ERRbadlink 68 /* reserved */
279 #define ERRbadpermits 69 /* Access specified for a file is not valid */
280 #define ERRbadpid 70 /* reserved */
281 #define ERRsetattrmode 71 /* attribute mode invalid */
282 #define ERRpaused 81 /* Message server paused */
283 #define ERRmsgoff 82 /* Not receiving messages */
284 #define ERRnoroom 83 /* No room for message */
285 #define ERRrmuns 87 /* too many remote usernames */
286 #define ERRtimeout 88 /* operation timed out */
287 #define ERRnoresource  89 /* No resources currently available for request. */
288 #define ERRtoomanyuids 90 /* too many userids */
289 #define ERRbaduid 91 /* bad userid */
290 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
291 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
292 #define ERRcontMPX 252 /* resume MPX mode */
293 #define ERRbadPW /* reserved */
294 #define ERRnosupport 0xFFFF
295 #define ERRunknownsmb 22 /* from NT 3.5 response */
296
297
298 /* Error codes for the ERRHRD class */
299
300 #define ERRnowrite 19 /* read only media */
301 #define ERRbadunit 20 /* Unknown device */
302 #define ERRnotready 21 /* Drive not ready */
303 #define ERRbadcmd 22 /* Unknown command */
304 #define ERRdata 23 /* Data (CRC) error */
305 #define ERRbadreq 24 /* Bad request structure length */
306 #define ERRseek 25
307 #define ERRbadmedia 26
308 #define ERRbadsector 27
309 #define ERRnopaper 28
310 #define ERRwrite 29 /* write fault */
311 #define ERRread 30 /* read fault */
312 #define ERRgeneral 31 /* General hardware failure */
313 #define ERRwrongdisk 34
314 #define ERRFCBunavail 35
315 #define ERRsharebufexc 36 /* share buffer exceeded */
316 #define ERRdiskfull 39
317
318
319 typedef char pstring[1024];
320 typedef char fstring[128];
321
322 /* pipe string names */
323 #define PIPE_LANMAN   "\\PIPE\\LANMAN"
324 #define PIPE_SRVSVC   "\\PIPE\\srvsvc"
325 #define PIPE_SAMR     "\\PIPE\\samr"
326 #define PIPE_WINREG   "\\PIPE\\winreg"
327 #define PIPE_WKSSVC   "\\PIPE\\wkssvc"
328 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
329 #define PIPE_NTLSA    "\\PIPE\\ntlsa"
330 #define PIPE_NTSVCS   "\\PIPE\\ntsvcs"
331 #define PIPE_LSASS    "\\PIPE\\lsass"
332 #define PIPE_LSARPC   "\\PIPE\\lsarpc"
333
334
335 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
336 typedef struct nttime_info
337 {
338   uint32 low;
339   uint32 high;
340
341 } NTTIME;
342
343 /* Allowable account control bits */
344 #define ACB_DISABLED   0x0001  /* 1 = User account disabled */
345 #define ACB_HOMDIRREQ  0x0002  /* 1 = Home directory required */
346 #define ACB_PWNOTREQ   0x0004  /* 1 = User password not required */
347 #define ACB_TEMPDUP    0x0008  /* 1 = Temporary duplicate account */
348 #define ACB_NORMAL     0x0010  /* 1 = Normal user account */
349 #define ACB_MNS        0x0020  /* 1 = MNS logon user account */
350 #define ACB_DOMTRUST   0x0040  /* 1 = Interdomain trust account */
351 #define ACB_WSTRUST    0x0080  /* 1 = Workstation trust account */
352 #define ACB_SVRTRUST   0x0100  /* 1 = Server trust account */
353 #define ACB_PWNOEXP    0x0200  /* 1 = User password does not expire */
354 #define ACB_AUTOLOCK   0x0400  /* 1 = Account auto locked */
355  
356 #define MAX_HOURS_LEN 32
357
358 struct sam_passwd
359 {
360         time_t logon_time;            /* logon time */
361         time_t logoff_time;           /* logoff time */
362         time_t kickoff_time;          /* kickoff time */
363         time_t pass_last_set_time;    /* password last set time */
364         time_t pass_can_change_time;  /* password can change time */
365         time_t pass_must_change_time; /* password must change time */
366
367         char *smb_name;     /* username string */
368         char *full_name;    /* user's full name string */
369         char *home_dir;     /* home directory string */
370         char *dir_drive;    /* home directory drive string */
371         char *logon_script; /* logon script string */
372         char *profile_path; /* profile path string */
373         char *acct_desc  ;  /* user description string */
374         char *workstations; /* login from workstations string */
375         char *unknown_str ; /* don't know what this is, yet. */
376         char *munged_dial ; /* munged path name and dial-back tel number */
377
378         uid_t smb_userid;       /* this is actually the unix uid_t */
379         gid_t smb_grpid;        /* this is actually the unix gid_t */
380         uint32 user_rid;      /* Primary User ID */
381         uint32 group_rid;     /* Primary Group ID */
382
383         unsigned char *smb_passwd; /* Null if no password */
384         unsigned char *smb_nt_passwd; /* Null if no password */
385
386         uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
387         uint32 unknown_3; /* 0x00ff ffff */
388
389         uint16 logon_divs; /* 168 - number of hours in a week */
390         uint32 hours_len; /* normally 21 bytes */
391         uint8 hours[MAX_HOURS_LEN];
392
393         uint32 unknown_5; /* 0x0002 0000 */
394         uint32 unknown_6; /* 0x0000 04ec */
395 };
396
397 struct smb_passwd
398 {
399         uid_t smb_userid;     /* this is actually the unix uid_t */
400         char *smb_name;     /* username string */
401
402         unsigned char *smb_passwd; /* Null if no password */
403         unsigned char *smb_nt_passwd; /* Null if no password */
404
405         uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
406         time_t pass_last_set_time;    /* password last set time */
407 };
408
409
410 struct sam_disp_info
411 {
412         uint32 user_rid;      /* Primary User ID */
413         char *smb_name;     /* username string */
414         char *full_name;    /* user's full name string */
415 };
416
417 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */
418
419 /* DOM_SID - security id */
420 typedef struct sid_info
421 {
422   uint8  sid_rev_num;             /* SID revision number */
423   uint8  num_auths;               /* number of sub-authorities */
424   uint8  id_auth[6];              /* Identifier Authority */
425   /*
426    * Note that the values in these uint32's are in *native* byteorder,
427    * not neccessarily little-endian...... JRA.
428    */
429   uint32 sub_auths[MAXSUBAUTHS];  /* pointer to sub-authorities. */
430
431 } DOM_SID;
432
433
434 /*** query a local group, get a list of these: shows who is in that group ***/
435
436 /* local group member info */
437 typedef struct local_grp_member_info
438 {
439         DOM_SID sid    ; /* matches with name */
440         uint8   sid_use; /* usr=1 grp=2 dom=3 alias=4 wkng=5 del=6 inv=7 unk=8 */
441         fstring name   ; /* matches with sid: must be of the form "DOMAIN\account" */
442
443 } LOCAL_GRP_MEMBER;
444
445 /* enumerate these to get list of local groups */
446
447 /* local group info */
448 typedef struct local_grp_info
449 {
450         fstring name;
451         fstring comment;
452         uint32  rid; /* alias rid */
453
454 } LOCAL_GRP;
455
456 /*** query a domain group, get a list of these: shows who is in that group ***/
457
458 /* domain group info */
459 typedef struct domain_grp_member_info
460 {
461         fstring name;
462         uint8   attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
463
464 } DOMAIN_GRP_MEMBER;
465
466 /*** enumerate these to get list of domain groups ***/
467
468 /* domain group member info */
469 typedef struct domain_grp_info
470 {
471         fstring name;
472         fstring comment;
473         uint32  rid; /* group rid */
474         uint8   attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
475
476 } DOMAIN_GRP;
477
478 /* DOM_CHAL - challenge info */
479 typedef struct chal_info
480 {
481   uchar data[8]; /* credentials */
482 } DOM_CHAL;
483
484 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
485 typedef struct time_info
486 {
487   uint32 time;
488 } UTIME;
489
490 /* DOM_CREDs - timestamped client or server credentials */
491 typedef struct cred_info
492 {  
493   DOM_CHAL challenge; /* credentials */
494   UTIME timestamp;    /* credential time-stamp */
495 } DOM_CRED;
496
497 /* Structure used when SMBwritebmpx is active */
498 typedef struct
499 {
500   size_t wr_total_written; /* So we know when to discard this */
501   int32 wr_timeout;
502   int32 wr_errclass;
503   int32 wr_error; /* Cached errors */
504   BOOL  wr_mode; /* write through mode) */
505   BOOL  wr_discard; /* discard all further data */
506 } write_bmpx_struct;
507
508 /*
509  * Structure used to indirect fd's from the files_struct.
510  * Needed as POSIX locking is based on file and process, not
511  * file descriptor and process.
512  */
513
514 typedef struct file_fd_struct
515 {
516         struct file_fd_struct *next, *prev;
517         uint16 ref_count;
518         uint16 uid_cache_count;
519         uid_t uid_users_cache[10];
520         SMB_DEV_T dev;
521         SMB_INO_T inode;
522         int fd;
523         int fd_readonly;
524         int fd_writeonly;
525         int real_open_flags;
526         BOOL delete_on_close;
527 } file_fd_struct;
528
529 /*
530  * Structure used to keep directory state information around.
531  * Used in NT change-notify code.
532  */
533
534 typedef struct
535 {
536   time_t modify_time;
537   time_t status_time;
538 } dir_status_struct;
539
540 struct uid_cache {
541   int entries;
542   uid_t list[UID_CACHE_SIZE];
543 };
544
545 typedef struct
546 {
547   char *name;
548   BOOL is_wild;
549 } name_compare_entry;
550
551 typedef struct connection_struct
552 {
553         struct connection_struct *next, *prev;
554         unsigned cnum; /* an index passed over the wire */
555         int service;
556         BOOL force_user;
557         struct uid_cache uid_cache;
558         void *dirptr;
559         BOOL printer;
560         BOOL ipc;
561         BOOL read_only;
562         BOOL admin_user;
563         char *dirpath;
564         char *connectpath;
565         char *origpath;
566         char *user; /* name of user who *opened* this connection */
567         uid_t uid; /* uid of user who *opened* this connection */
568         gid_t gid; /* gid of user who *opened* this connection */
569
570         uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
571
572         /* following groups stuff added by ih */
573
574         /* This groups info is valid for the user that *opened* the connection */
575         int ngroups;
576         gid_t *groups;
577         
578         time_t lastused;
579         BOOL used;
580         int num_files_open;
581         name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
582         name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
583         name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */       
584
585 } connection_struct;
586
587 struct current_user
588 {
589         connection_struct *conn;
590         uint16 vuid;
591         uid_t uid;
592         gid_t gid;
593         int ngroups;
594         gid_t *groups;
595 };
596
597 typedef struct files_struct
598 {
599         struct files_struct *next, *prev;
600         int fnum;
601         connection_struct *conn;
602         file_fd_struct *fd_ptr;
603         SMB_OFF_T pos;
604         SMB_OFF_T size;
605         mode_t mode;
606         uint16 vuid;
607         char *mmap_ptr;
608         SMB_OFF_T mmap_size;
609         write_bmpx_struct *wbmpx_ptr;
610         struct timeval open_time;
611         int share_mode;
612         time_t pending_modtime;
613         BOOL open;
614         BOOL can_lock;
615         BOOL can_read;
616         BOOL can_write;
617         BOOL print_file;
618         BOOL modified;
619         BOOL granted_oplock;
620         BOOL sent_oplock_break;
621         BOOL is_directory;
622         char *fsp_name;
623 } files_struct;
624
625 /* Domain controller authentication protocol info */
626 struct dcinfo
627 {
628   DOM_CHAL clnt_chal; /* Initial challenge received from client */
629   DOM_CHAL srv_chal;  /* Initial server challenge */
630   DOM_CRED clnt_cred; /* Last client credential */
631   DOM_CRED srv_cred;  /* Last server credential */
632
633   uchar  sess_key[8]; /* Session key */
634   uchar  md4pw[16];   /* md4(machine password) */
635 };
636
637 typedef struct
638 {
639   uid_t uid; /* uid of a validated user */
640   gid_t gid; /* gid of a validated user */
641
642   fstring requested_name; /* user name from the client */
643   fstring name; /* unix user name of a validated user */
644   fstring real_name;   /* to store real name from password file - simeon */
645   BOOL guest;
646
647   /* following groups stuff added by ih */
648   /* This groups info is needed for when we become_user() for this uid */
649   int n_groups;
650   gid_t *groups;
651
652   int n_sids;
653   int *sids;
654
655   /* per-user authentication information on NT RPCs */
656   struct dcinfo dc;
657
658 } user_struct;
659
660
661 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
662
663 typedef struct
664 {
665   int job;
666   int size;
667   int status;
668   int priority;
669   time_t time;
670   char user[30];
671   char file[100];
672 } print_queue_struct;
673
674 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
675
676 typedef struct
677 {
678   fstring message;
679   int status;
680 }  print_status_struct;
681
682 /* used for server information: client, nameserv and ipc */
683 struct server_info_struct
684 {
685   fstring name;
686   uint32 type;
687   fstring comment;
688   fstring domain; /* used ONLY in ipc.c NOT namework.c */
689   BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
690 };
691
692
693 /* used for network interfaces */
694 struct interface
695 {
696         struct interface *next;
697         struct in_addr ip;
698         struct in_addr bcast;
699         struct in_addr nmask;
700 };
701
702 /* struct returned by get_share_modes */
703 typedef struct
704 {
705   int pid;
706   uint16 op_port;
707   uint16 op_type;
708   int share_mode;
709   struct timeval time;
710 } share_mode_entry;
711
712
713 /* each implementation of the share mode code needs
714    to support the following operations */
715 struct share_ops {
716         BOOL (*stop_mgmt)(void);
717         BOOL (*lock_entry)(connection_struct *, SMB_DEV_T , SMB_INO_T , int *);
718         BOOL (*unlock_entry)(connection_struct *, SMB_DEV_T , SMB_INO_T , int );
719         int (*get_entries)(connection_struct *, int , SMB_DEV_T , SMB_INO_T , share_mode_entry **);
720         void (*del_entry)(int , files_struct *);
721         BOOL (*set_entry)(int, files_struct *, uint16 , uint16 );
722     BOOL (*mod_entry)(int, files_struct *, void (*)(share_mode_entry *, SMB_DEV_T, SMB_INO_T, void *), void *);
723         int (*forall)(void (*)(share_mode_entry *, char *));
724         void (*status)(FILE *);
725 };
726
727 /* each implementation of the shared memory code needs
728    to support the following operations */
729 struct shmem_ops {
730         BOOL (*shm_close)( void );
731         int (*shm_alloc)(int );
732         BOOL (*shm_free)(int );
733         int (*get_userdef_off)(void);
734         void *(*offset2addr)(int );
735         int (*addr2offset)(void *addr);
736         BOOL (*lock_hash_entry)(unsigned int);
737         BOOL (*unlock_hash_entry)( unsigned int );
738         BOOL (*get_usage)(int *,int *,int *);
739         unsigned (*hash_size)(void);
740 };
741
742 /*
743  * Each implementation of the password database code needs
744  * to support the following operations.
745  */
746
747 struct passdb_ops {
748   /*
749    * Password database ops.
750    */
751   void *(*startsmbpwent)(BOOL);
752   void (*endsmbpwent)(void *);
753   SMB_BIG_UINT (*getsmbpwpos)(void *);
754   BOOL (*setsmbpwpos)(void *, SMB_BIG_UINT);
755
756   /*
757    * smb password database query functions.
758    */
759   struct smb_passwd *(*getsmbpwnam)(const char *);
760   struct smb_passwd *(*getsmbpwuid)(uid_t);
761   struct smb_passwd *(*getsmbpwrid)(uint32);
762   struct smb_passwd *(*getsmbpwent)(void *);
763
764   /*
765    * smb password database modification functions.
766    */
767   BOOL (*add_smbpwd_entry)(struct smb_passwd *);
768   BOOL (*mod_smbpwd_entry)(struct smb_passwd *, BOOL);
769
770   /*
771    * Functions that manupulate a struct sam_passwd.
772    */
773   struct sam_passwd *(*getsam21pwent)(void *);
774
775   /*
776    * sam password database query functions.
777    */
778   struct sam_passwd *(*getsam21pwnam)(const char *);
779   struct sam_passwd *(*getsam21pwuid)(uid_t);
780   struct sam_passwd *(*getsam21pwrid)(uint32);
781
782   /*
783    * sam password database modification functions.
784    */
785   BOOL (*add_sam21pwd_entry)(struct sam_passwd *);
786   BOOL (*mod_sam21pwd_entry)(struct sam_passwd *, BOOL);
787
788   /*
789    * sam query display info functions.
790    */
791   struct sam_disp_info *(*getsamdispnam)(const char *);
792   struct sam_disp_info *(*getsamdisprid)(uint32);
793   struct sam_disp_info *(*getsamdispent)(void *);
794
795 #if 0
796   /*
797    * password checking functions
798    */
799   struct smb_passwd *(*smb_password_chal  )(const char *username, const char lm_pass[24], const char nt_pass[24], char chal[8]);
800   struct smb_passwd *(*smb_password_check )(const char *username, const char lm_hash[16], const char nt_hash[16]);
801   struct passwd     *(*unix_password_check)(const char *username, const char *pass, int pass_len);
802 #endif
803 };
804
805 /*
806  * Each implementation of the passgrp database code needs
807  * to support the following operations.
808  */
809
810 struct passgrp_ops {
811   /*
812    * Password database ops.
813    */
814   void *(*startsmbgrpent)(BOOL);
815   void (*endsmbgrpent)(void *);
816   SMB_BIG_UINT (*getsmbgrppos)(void *);
817   BOOL (*setsmbgrppos)(void *, SMB_BIG_UINT);
818
819   /*
820    * smb passgrp database query functions.
821    */
822   struct smb_passwd *(*getsmbgrpnam)(char *, uint32**, int*, uint32**, int*);
823   struct smb_passwd *(*getsmbgrpuid)(uid_t , uint32**, int*, uint32**, int*);
824   struct smb_passwd *(*getsmbgrprid)(uint32, uint32**, int*, uint32**, int*);
825   struct smb_passwd *(*getsmbgrpent)(void *, uint32**, int*, uint32**, int*);
826
827 };
828
829 /*
830  * Each implementation of the group database code needs
831  * to support the following operations.
832  *
833  * This allows enumeration, modification and addition of groups.  there
834  * is _no_ deletion of groups: you can only modify them to a status of
835  * "deleted" (this by the way is a requirement of c2 rating)
836  */
837
838 struct groupdb_ops
839 {
840         /*
841          * Group database ops.
842          */
843         void *(*startgroupent)(BOOL);
844         void (*endgroupent)(void *);
845         SMB_BIG_UINT (*getgrouppos)(void *);
846         BOOL (*setgrouppos)(void *, SMB_BIG_UINT);
847
848         /*
849          * group database query functions. set the BOOL to Tru
850          * if you want the members in the group as well.
851          */
852         DOMAIN_GRP *(*getgroupnam)(char *, DOMAIN_GRP_MEMBER **, int *);
853         DOMAIN_GRP *(*getgroupgid)(gid_t , DOMAIN_GRP_MEMBER **, int *);
854         DOMAIN_GRP *(*getgrouprid)(uint32, DOMAIN_GRP_MEMBER **, int *);
855         DOMAIN_GRP *(*getgroupent)(void *, DOMAIN_GRP_MEMBER **, int *);
856
857         /*
858          * group database modification functions.
859          */
860         BOOL (*add_group_entry)(DOMAIN_GRP *);
861         BOOL (*mod_group_entry)(DOMAIN_GRP *);
862
863         /*
864          * user group functions
865          */
866         BOOL (*getusergroupsnam)(char *, DOMAIN_GRP **, int *);
867 };
868
869 /*
870  * Each implementation of the alias database code needs
871  * to support the following operations.
872  *
873  * This allows enumeration, modification and addition of aliases.  there
874  * is _no_ deletion of aliases: you can only modify them to a status of
875  * "deleted" (this by the way is a requirement of c2 rating)
876  */
877
878 struct aliasdb_ops
879 {
880         /*
881          * Alias database ops.
882          */
883         void *(*startaliasent)(BOOL);
884         void (*endaliasent)(void *);
885         SMB_BIG_UINT (*getaliaspos)(void *);
886         BOOL (*setaliaspos)(void *, SMB_BIG_UINT);
887
888         /*
889          * alias database query functions. set the BOOL to Tru
890          * if you want the members in the alias as well.
891          */
892         LOCAL_GRP *(*getaliasnam)(char *, LOCAL_GRP_MEMBER **, int *);
893         LOCAL_GRP *(*getaliasgid)(gid_t , LOCAL_GRP_MEMBER **, int *);
894         LOCAL_GRP *(*getaliasrid)(uint32, LOCAL_GRP_MEMBER **, int *);
895         LOCAL_GRP *(*getaliasent)(void *, LOCAL_GRP_MEMBER **, int *);
896
897         /*
898          * alias database modification functions.
899          */
900         BOOL (*add_alias_entry)(LOCAL_GRP *);
901         BOOL (*mod_alias_entry)(LOCAL_GRP *);
902
903         /*
904          * user alias functions
905          */
906         BOOL (*getuseraliasnam)(char *, LOCAL_GRP **, int *);
907 };
908
909 /* this is used for smbstatus */
910
911 struct connect_record
912 {
913   int magic;
914   int pid;
915   int cnum;
916   uid_t uid;
917   gid_t gid;
918   char name[24];
919   char addr[24];
920   char machine[128];
921   time_t start;
922 };
923
924 /* This is used by smbclient to send it to a smbfs mount point */
925 struct connection_options {
926   int protocol;
927   /* Connection-Options */
928   uint32 max_xmit;
929   uint16 server_vuid;
930   uint16 tid;
931   /* The following are LANMAN 1.0 options */
932   uint16 sec_mode;
933   uint16 max_mux;
934   uint16 max_vcs;
935   uint16 rawmode;
936   uint32 sesskey;
937   /* The following are NT LM 0.12 options */
938   uint32 maxraw;
939   uint32 capabilities;
940   uint16 serverzone;
941 };
942
943 /* the following are used by loadparm for option lists */
944 typedef enum
945 {
946   P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
947   P_STRING,P_USTRING,P_GSTRING,P_UGSTRING,P_ENUM,P_SEP
948 } parm_type;
949
950 typedef enum
951 {
952   P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
953 } parm_class;
954
955 struct enum_list {
956         int value;
957         char *name;
958 };
959
960 struct parm_struct
961 {
962         char *label;
963         parm_type type;
964         parm_class class;
965         void *ptr;
966         BOOL (*special)(char *, char **);
967         struct enum_list *enum_list;
968         unsigned flags;
969         union {
970                 BOOL bvalue;
971                 int ivalue;
972                 char *svalue;
973                 char cvalue;
974         } def;
975 };
976
977 struct bitmap {
978         uint32 *b;
979         int n;
980 };
981
982 #define FLAG_BASIC 1 /* fundamental options */
983 #define FLAG_HIDE  2 /* options that should be hidden in SWAT */
984 #define FLAG_PRINT 4 /* printing options */
985 #define FLAG_GLOBAL 8 /* local options that should be globally settable in SWAT */
986 #define FLAG_DEPRECATED 0x10 /* options that should no longer be used */
987
988 #ifndef LOCKING_VERSION
989 #define LOCKING_VERSION 4
990 #endif /* LOCKING_VERSION */
991
992 /* these are useful macros for checking validity of handles */
993 #define OPEN_FSP(fsp)    ((fsp) && (fsp)->open && !(fsp)->is_directory)
994 #define OPEN_CONN(conn)    ((conn) && (conn)->open)
995 #define IS_IPC(conn)       ((conn) && (conn)->ipc)
996 #define IS_PRINT(conn)       ((conn) && (conn)->printer)
997 #define FNUM_OK(fsp,c) (OPEN_FSP(fsp) && (c)==(fsp)->conn)
998
999 #define CHECK_FSP(fsp,conn) if (!FNUM_OK(fsp,conn)) \
1000                                return(ERROR(ERRDOS,ERRbadfid))
1001 #define CHECK_READ(fsp) if (!(fsp)->can_read) \
1002                                return(ERROR(ERRDOS,ERRbadaccess))
1003 #define CHECK_WRITE(fsp) if (!(fsp)->can_write) \
1004                                return(ERROR(ERRDOS,ERRbadaccess))
1005 #define CHECK_ERROR(fsp) if (HAS_CACHED_ERROR(fsp)) \
1006                                return(CACHED_ERROR(fsp))
1007
1008 /* translates a connection number into a service number */
1009 #define SNUM(conn)         ((conn)?(conn)->service:-1)
1010
1011 /* access various service details */
1012 #define SERVICE(snum)      (lp_servicename(snum))
1013 #define PRINTCAP           (lp_printcapname())
1014 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
1015 #define PRINTERNAME(snum)  (lp_printername(snum))
1016 #define CAN_WRITE(conn)    (!conn->read_only)
1017 #define VALID_SNUM(snum)   (lp_snum_ok(snum))
1018 #define GUEST_OK(snum)     (VALID_SNUM(snum) && lp_guest_ok(snum))
1019 #define GUEST_ONLY(snum)   (VALID_SNUM(snum) && lp_guest_only(snum))
1020 #define CAN_SETDIR(snum)   (!lp_no_set_dir(snum))
1021 #define CAN_PRINT(conn)    ((conn) && lp_print_ok((conn)->service))
1022 #define MAP_HIDDEN(conn)   ((conn) && lp_map_hidden((conn)->service))
1023 #define MAP_SYSTEM(conn)   ((conn) && lp_map_system((conn)->service))
1024 #define MAP_ARCHIVE(conn)   ((conn) && lp_map_archive((conn)->service))
1025 #define IS_HIDDEN_PATH(conn,path)  ((conn) && is_in_path((path),(conn)->hide_list))
1026 #define IS_VETO_PATH(conn,path)  ((conn) && is_in_path((path),(conn)->veto_list))
1027 #define IS_VETO_OPLOCK_PATH(conn,path)  ((conn) && is_in_path((path),(conn)->veto_oplock_list))
1028
1029 /* 
1030  * Used by the stat cache code to check if a returned
1031  * stat structure is valid.
1032  */
1033
1034 #define VALID_STAT(st) (st.st_nlink != 0)  
1035 #define VALID_STAT_OF_DIR(st) (VALID_STAT(st) && S_ISDIR(st.st_mode))
1036
1037 #define SMBENCRYPT()       (lp_encrypted_passwords())
1038
1039 /* the basic packet size, assuming no words or bytes */
1040 #define smb_size 39
1041
1042 /* offsets into message for common items */
1043 #define smb_com 8
1044 #define smb_rcls 9
1045 #define smb_reh 10
1046 #define smb_err 11
1047 #define smb_flg 13
1048 #define smb_flg2 14
1049 #define smb_reb 13
1050 #define smb_tid 28
1051 #define smb_pid 30
1052 #define smb_uid 32
1053 #define smb_mid 34
1054 #define smb_wct 36
1055 #define smb_vwv 37
1056 #define smb_vwv0 37
1057 #define smb_vwv1 39
1058 #define smb_vwv2 41
1059 #define smb_vwv3 43
1060 #define smb_vwv4 45
1061 #define smb_vwv5 47
1062 #define smb_vwv6 49
1063 #define smb_vwv7 51
1064 #define smb_vwv8 53
1065 #define smb_vwv9 55
1066 #define smb_vwv10 57
1067 #define smb_vwv11 59
1068 #define smb_vwv12 61
1069 #define smb_vwv13 63
1070 #define smb_vwv14 65
1071 #define smb_vwv15 67
1072 #define smb_vwv16 69
1073 #define smb_vwv17 71
1074
1075 /* flag defines. CIFS spec 3.1.1 */
1076 #define FLAG_SUPPORT_LOCKREAD       0x01
1077 #define FLAG_CLIENT_BUF_AVAIL       0x02
1078 #define FLAG_RESERVED               0x04
1079 #define FLAG_CASELESS_PATHNAMES     0x08
1080 #define FLAG_CANONICAL_PATHNAMES    0x10
1081 #define FLAG_REQUEST_OPLOCK         0x20
1082 #define FLAG_REQUEST_BATCH_OPLOCK   0x40
1083 #define FLAG_REPLY                  0x80
1084
1085 /* the complete */
1086 #define SMBmkdir      0x00   /* create directory */
1087 #define SMBrmdir      0x01   /* delete directory */
1088 #define SMBopen       0x02   /* open file */
1089 #define SMBcreate     0x03   /* create file */
1090 #define SMBclose      0x04   /* close file */
1091 #define SMBflush      0x05   /* flush file */
1092 #define SMBunlink     0x06   /* delete file */
1093 #define SMBmv         0x07   /* rename file */
1094 #define SMBgetatr     0x08   /* get file attributes */
1095 #define SMBsetatr     0x09   /* set file attributes */
1096 #define SMBread       0x0A   /* read from file */
1097 #define SMBwrite      0x0B   /* write to file */
1098 #define SMBlock       0x0C   /* lock byte range */
1099 #define SMBunlock     0x0D   /* unlock byte range */
1100 #define SMBctemp      0x0E   /* create temporary file */
1101 #define SMBmknew      0x0F   /* make new file */
1102 #define SMBchkpth     0x10   /* check directory path */
1103 #define SMBexit       0x11   /* process exit */
1104 #define SMBlseek      0x12   /* seek */
1105 #define SMBtcon       0x70   /* tree connect */
1106 #define SMBtconX      0x75   /* tree connect and X*/
1107 #define SMBtdis       0x71   /* tree disconnect */
1108 #define SMBnegprot    0x72   /* negotiate protocol */
1109 #define SMBdskattr    0x80   /* get disk attributes */
1110 #define SMBsearch     0x81   /* search directory */
1111 #define SMBsplopen    0xC0   /* open print spool file */
1112 #define SMBsplwr      0xC1   /* write to print spool file */
1113 #define SMBsplclose   0xC2   /* close print spool file */
1114 #define SMBsplretq    0xC3   /* return print queue */
1115 #define SMBsends      0xD0   /* send single block message */
1116 #define SMBsendb      0xD1   /* send broadcast message */
1117 #define SMBfwdname    0xD2   /* forward user name */
1118 #define SMBcancelf    0xD3   /* cancel forward */
1119 #define SMBgetmac     0xD4   /* get machine name */
1120 #define SMBsendstrt   0xD5   /* send start of multi-block message */
1121 #define SMBsendend    0xD6   /* send end of multi-block message */
1122 #define SMBsendtxt    0xD7   /* send text of multi-block message */
1123
1124 /* Core+ protocol */
1125 #define SMBlockread       0x13   /* Lock a range and read */
1126 #define SMBwriteunlock 0x14 /* Unlock a range then write */
1127 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
1128 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
1129 #define SMBwritec     0x20  /* secondary write request */
1130 #define SMBwriteclose 0x2c  /* write a file then close it */
1131
1132 /* dos extended protocol */
1133 #define SMBreadBraw      0x1A   /* read block raw */
1134 #define SMBreadBmpx      0x1B   /* read block multiplexed */
1135 #define SMBreadBs        0x1C   /* read block (secondary response) */
1136 #define SMBwriteBraw     0x1D   /* write block raw */
1137 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
1138 #define SMBwriteBs       0x1F   /* write block (secondary request) */
1139 #define SMBwriteC        0x20   /* write complete response */
1140 #define SMBsetattrE      0x22   /* set file attributes expanded */
1141 #define SMBgetattrE      0x23   /* get file attributes expanded */
1142 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
1143 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
1144 #define SMBtranss        0x26   /* transaction (secondary request/response) */
1145 #define SMBioctl         0x27   /* IOCTL */
1146 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
1147 #define SMBcopy          0x29   /* copy */
1148 #define SMBmove          0x2A   /* move */
1149 #define SMBecho          0x2B   /* echo */
1150 #define SMBopenX         0x2D   /* open and X */
1151 #define SMBreadX         0x2E   /* read and X */
1152 #define SMBwriteX        0x2F   /* write and X */
1153 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
1154 #define SMBffirst        0x82   /* find first */
1155 #define SMBfunique       0x83   /* find unique */
1156 #define SMBfclose        0x84   /* find close */
1157 #define SMBinvalid       0xFE   /* invalid command */
1158
1159 /* Extended 2.0 protocol */
1160 #define SMBtrans2        0x32   /* TRANS2 protocol set */
1161 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
1162 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
1163 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
1164 #define SMBulogoffX      0x74   /* user logoff */
1165
1166 /* NT SMB extensions. */
1167 #define SMBnttrans       0xA0   /* NT transact */
1168 #define SMBnttranss      0xA1   /* NT transact secondary */
1169 #define SMBntcreateX     0xA2   /* NT create and X */
1170 #define SMBntcancel      0xA4   /* NT cancel */
1171
1172 /* These are the TRANS2 sub commands */
1173 #define TRANSACT2_OPEN                        0
1174 #define TRANSACT2_FINDFIRST                   1
1175 #define TRANSACT2_FINDNEXT                    2
1176 #define TRANSACT2_QFSINFO                     3
1177 #define TRANSACT2_SETFSINFO                   4
1178 #define TRANSACT2_QPATHINFO                   5
1179 #define TRANSACT2_SETPATHINFO                 6
1180 #define TRANSACT2_QFILEINFO                   7
1181 #define TRANSACT2_SETFILEINFO                 8
1182 #define TRANSACT2_FSCTL                       9
1183 #define TRANSACT2_IOCTL                     0xA
1184 #define TRANSACT2_FINDNOTIFYFIRST           0xB
1185 #define TRANSACT2_FINDNOTIFYNEXT            0xC
1186 #define TRANSACT2_MKDIR                     0xD
1187 #define TRANSACT2_SESSION_SETUP             0xE
1188 #define TRANSACT2_GET_DFS_REFERRAL         0x10
1189 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
1190
1191 /* These are the NT transact sub commands. */
1192 #define NT_TRANSACT_CREATE                1
1193 #define NT_TRANSACT_IOCTL                 2
1194 #define NT_TRANSACT_SET_SECURITY_DESC     3
1195 #define NT_TRANSACT_NOTIFY_CHANGE         4
1196 #define NT_TRANSACT_RENAME                5
1197 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
1198
1199 /* these are the trans2 sub fields for primary requests */
1200 #define smb_tpscnt smb_vwv0
1201 #define smb_tdscnt smb_vwv1
1202 #define smb_mprcnt smb_vwv2
1203 #define smb_mdrcnt smb_vwv3
1204 #define smb_msrcnt smb_vwv4
1205 #define smb_flags smb_vwv5
1206 #define smb_timeout smb_vwv6
1207 #define smb_pscnt smb_vwv9
1208 #define smb_psoff smb_vwv10
1209 #define smb_dscnt smb_vwv11
1210 #define smb_dsoff smb_vwv12
1211 #define smb_suwcnt smb_vwv13
1212 #define smb_setup smb_vwv14
1213 #define smb_setup0 smb_setup
1214 #define smb_setup1 (smb_setup+2)
1215 #define smb_setup2 (smb_setup+4)
1216
1217 /* these are for the secondary requests */
1218 #define smb_spscnt smb_vwv2
1219 #define smb_spsoff smb_vwv3
1220 #define smb_spsdisp smb_vwv4
1221 #define smb_sdscnt smb_vwv5
1222 #define smb_sdsoff smb_vwv6
1223 #define smb_sdsdisp smb_vwv7
1224 #define smb_sfid smb_vwv8
1225
1226 /* and these for responses */
1227 #define smb_tprcnt smb_vwv0
1228 #define smb_tdrcnt smb_vwv1
1229 #define smb_prcnt smb_vwv3
1230 #define smb_proff smb_vwv4
1231 #define smb_prdisp smb_vwv5
1232 #define smb_drcnt smb_vwv6
1233 #define smb_droff smb_vwv7
1234 #define smb_drdisp smb_vwv8
1235
1236 /* these are for the NT trans primary request. */
1237 #define smb_nt_MaxSetupCount smb_vwv0
1238 #define smb_nt_Flags (smb_vwv0 + 1)
1239 #define smb_nt_TotalParameterCount (smb_vwv0 + 3)
1240 #define smb_nt_TotalDataCount (smb_vwv0 + 7)
1241 #define smb_nt_MaxParameterCount (smb_vwv0 + 11)
1242 #define smb_nt_MaxDataCount (smb_vwv0 + 15)
1243 #define smb_nt_ParameterCount (smb_vwv0 + 19)
1244 #define smb_nt_ParameterOffset (smb_vwv0 + 23)
1245 #define smb_nt_DataCount (smb_vwv0 + 27)
1246 #define smb_nt_DataOffset (smb_vwv0 + 31)
1247 #define smb_nt_SetupCount (smb_vwv0 + 35)
1248 #define smb_nt_Function (smb_vwv0 + 36)
1249 #define smb_nt_SetupStart (smb_vwv0 + 38)
1250
1251 /* these are for the NT trans secondary request. */
1252 #define smb_nts_TotalParameterCount (smb_vwv0 + 3)
1253 #define smb_nts_TotalDataCount (smb_vwv0 + 7)
1254 #define smb_nts_ParameterCount (smb_vwv0 + 11)
1255 #define smb_nts_ParameterOffset (smb_vwv0 + 15)
1256 #define smb_nts_ParameterDisplacement (smb_vwv0 + 19)
1257 #define smb_nts_DataCount (smb_vwv0 + 23)
1258 #define smb_nts_DataOffset (smb_vwv0 + 27)
1259 #define smb_nts_DataDisplacement (smb_vwv0 + 31)
1260
1261 /* these are for the NT trans reply. */
1262 #define smb_ntr_TotalParameterCount (smb_vwv0 + 3)
1263 #define smb_ntr_TotalDataCount (smb_vwv0 + 7)
1264 #define smb_ntr_ParameterCount (smb_vwv0 + 11)
1265 #define smb_ntr_ParameterOffset (smb_vwv0 + 15)
1266 #define smb_ntr_ParameterDisplacement (smb_vwv0 + 19)
1267 #define smb_ntr_DataCount (smb_vwv0 + 23)
1268 #define smb_ntr_DataOffset (smb_vwv0 + 27)
1269 #define smb_ntr_DataDisplacement (smb_vwv0 + 31)
1270
1271 /* these are for the NT create_and_X */
1272 #define smb_ntcreate_NameLength (smb_vwv0 + 5)
1273 #define smb_ntcreate_Flags (smb_vwv0 + 7)
1274 #define smb_ntcreate_RootDirectoryFid (smb_vwv0 + 11)
1275 #define smb_ntcreate_DesiredAccess (smb_vwv0 + 15)
1276 #define smb_ntcreate_AllocationSize (smb_vwv0 + 19)
1277 #define smb_ntcreate_FileAttributes (smb_vwv0 + 27)
1278 #define smb_ntcreate_ShareAccess (smb_vwv0 + 31)
1279 #define smb_ntcreate_CreateDisposition (smb_vwv0 + 35)
1280 #define smb_ntcreate_CreateOptions (smb_vwv0 + 39)
1281 #define smb_ntcreate_ImpersonationLevel (smb_vwv0 + 43)
1282 #define smb_ntcreate_SecurityFlags (smb_vwv0 + 47)
1283
1284 /* this is used on a TConX. I'm not sure the name is very helpful though */
1285 #define SMB_SUPPORT_SEARCH_BITS        0x0001
1286
1287 /* these are the constants used in the above call. */
1288 /* DesiredAccess */
1289 /* File Specific access rights. */
1290 #define FILE_READ_DATA        0x001
1291 #define FILE_WRITE_DATA       0x002
1292 #define FILE_APPEND_DATA      0x004
1293 #define FILE_READ_EA          0x008
1294 #define FILE_WRITE_EA         0x010
1295 #define FILE_EXECUTE          0x020
1296 #define FILE_DELETE_CHILD     0x040
1297 #define FILE_READ_ATTRIBUTES  0x080
1298 #define FILE_WRITE_ATTRIBUTES 0x100
1299  
1300 /* Generic access masks & rights. */
1301 #define SPECIFIC_RIGHTS_MASK 0x00FFFFL
1302 #define STANDARD_RIGHTS_MASK 0xFF0000L
1303 #define DELETE_ACCESS        (1L<<16)
1304 #define READ_CONTROL_ACCESS  (1L<<17)
1305 #define WRITE_DAC_ACCESS     (1L<<18)
1306 #define WRITE_OWNER_ACCESS   (1L<<19)
1307 #define SYNCHRONIZE_ACCESS   (1L<<20)
1308 #define SYSTEM_SECURITY_ACCESS (1L<<24)
1309
1310 /* Flags field. */
1311 #define REQUEST_OPLOCK 2
1312 #define REQUEST_BATCH_OPLOCK 4
1313 #define OPEN_DIRECTORY 8
1314
1315 /* ShareAccess field. */
1316 #define FILE_SHARE_NONE 0 /* Cannot be used in bitmask. */
1317 #define FILE_SHARE_READ 1
1318 #define FILE_SHARE_WRITE 2
1319 #define FILE_SHARE_DELETE 4
1320
1321 /* FileAttributesField */
1322 #define FILE_ATTRIBUTE_READONLY aRONLY
1323 #define FILE_ATTRIBUTE_HIDDEN aHIDDEN
1324 #define FILE_ATTRIBUTE_SYSTEM aSYSTEM
1325 #define FILE_ATTRIBUTE_DIRECTORY aDIR
1326 #define FILE_ATTRIBUTE_ARCHIVE aARCH
1327 #define FILE_ATTRIBUTE_NORMAL 0x80L
1328 #define FILE_ATTRIBUTE_TEMPORARY 0x100L
1329 #define FILE_ATTRIBUTE_COMPRESSED 0x800L
1330 #define SAMBA_ATTRIBUTES_MASK 0x7F
1331
1332 /* Flags - combined with attributes. */
1333 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
1334 #define FILE_FLAG_NO_BUFFERING     0x20000000L
1335 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
1336 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
1337 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
1338 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L
1339 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
1340
1341 /* CreateDisposition field. */
1342 #define FILE_SUPERSEDE 0
1343 #define FILE_OPEN 1
1344 #define FILE_CREATE 2
1345 #define FILE_OPEN_IF 3
1346 #define FILE_OVERWRITE 4
1347 #define FILE_OVERWRITE_IF 5
1348
1349 /* CreateOptions field. */
1350 #define FILE_DIRECTORY_FILE       0x0001
1351 #define FILE_WRITE_THROUGH        0x0002
1352 #define FILE_SEQUENTIAL_ONLY      0x0004
1353 #define FILE_NON_DIRECTORY_FILE   0x0040
1354 #define FILE_NO_EA_KNOWLEDGE      0x0200
1355 #define FILE_EIGHT_DOT_THREE_ONLY 0x0400
1356 #define FILE_RANDOM_ACCESS        0x0800
1357 #define FILE_DELETE_ON_CLOSE      0x1000
1358
1359 /* Responses when opening a file. */
1360 #define FILE_WAS_OPENED 1
1361 #define FILE_WAS_CREATED 2
1362 #define FILE_WAS_OVERWRITTEN 3
1363
1364 /* File type flags */
1365 #define FILE_TYPE_DISK  0
1366 #define FILE_TYPE_BYTE_MODE_PIPE 1
1367 #define FILE_TYPE_MESSAGE_MODE_PIPE 2
1368 #define FILE_TYPE_PRINTER 3
1369 #define FILE_TYPE_COMM_DEVICE 4
1370 #define FILE_TYPE_UNKNOWN 0xFFFF
1371
1372 /* Flag for NT transact rename call. */
1373 #define RENAME_REPLACE_IF_EXISTS 1
1374
1375 /* Filesystem Attributes. */
1376 #define FILE_CASE_SENSITIVE_SEARCH 0x1
1377 #define FILE_CASE_PRESERVED_NAMES 0x2
1378 #define FILE_UNICODE_ON_DISK 0x4
1379 #define FILE_PERISITANT_ACLS 0x8
1380
1381 /* ChangeNotify flags. */
1382 #define FILE_NOTIFY_CHANGE_FILE_NAME   0x001
1383 #define FILE_NOTIFY_CHANGE_DIR_NAME    0x002
1384 #define FILE_NOTIFY_CHANGE_ATTRIBUTES  0x004
1385 #define FILE_NOTIFY_CHANGE_SIZE        0x008
1386 #define FILE_NOTIFY_CHANGE_LAST_WRITE  0x010
1387 #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x020
1388 #define FILE_NOTIFY_CHANGE_CREATION    0x040
1389 #define FILE_NOTIFY_CHANGE_EA          0x080
1390 #define FILE_NOTIFY_CHANGE_SECURITY    0x100
1391
1392 /* where to find the base of the SMB packet proper */
1393 #define smb_base(buf) (((char *)(buf))+4)
1394
1395
1396 #define SMB_SUCCESS 0  /* The request was successful. */
1397 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
1398 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
1399 #define ERRHRD 0x03  /* Error is an hardware error. */
1400 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
1401
1402 #ifdef HAVE_STDARG_H
1403 int slprintf(char *str, int n, char *format, ...)
1404 #ifdef __GNUC__
1405      __attribute__ ((format (printf, 3, 4)))
1406 #endif
1407 ;
1408 #else
1409 int slprintf();
1410 #endif
1411
1412 #ifdef WITH_DFS
1413 void dfs_unlogin(void);
1414 extern int dcelogin_atmost_once;
1415 #endif
1416
1417 #ifdef NOSTRDUP
1418 char *strdup(char *s);
1419 #endif
1420
1421 #ifndef MIN
1422 #define MIN(a,b) ((a)<(b)?(a):(b))
1423 #endif
1424 #ifndef MAX
1425 #define MAX(a,b) ((a)>(b)?(a):(b))
1426 #endif
1427
1428 #ifndef ABS
1429 #define ABS(a) ((a)>0?(a):(-(a)))
1430 #endif
1431
1432 #ifndef SIGNAL_CAST
1433 #define SIGNAL_CAST (RETSIGTYPE (*)(int))
1434 #endif
1435
1436 #ifndef SELECT_CAST
1437 #define SELECT_CAST
1438 #endif
1439
1440
1441 /* Some POSIX definitions for those without */
1442  
1443 #ifndef S_IFDIR
1444 #define S_IFDIR         0x4000
1445 #endif
1446 #ifndef S_ISDIR
1447 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
1448 #endif
1449 #ifndef S_IRWXU
1450 #define S_IRWXU 00700           /* read, write, execute: owner */
1451 #endif
1452 #ifndef S_IRUSR
1453 #define S_IRUSR 00400           /* read permission: owner */
1454 #endif
1455 #ifndef S_IWUSR
1456 #define S_IWUSR 00200           /* write permission: owner */
1457 #endif
1458 #ifndef S_IXUSR
1459 #define S_IXUSR 00100           /* execute permission: owner */
1460 #endif
1461 #ifndef S_IRWXG
1462 #define S_IRWXG 00070           /* read, write, execute: group */
1463 #endif
1464 #ifndef S_IRGRP
1465 #define S_IRGRP 00040           /* read permission: group */
1466 #endif
1467 #ifndef S_IWGRP
1468 #define S_IWGRP 00020           /* write permission: group */
1469 #endif
1470 #ifndef S_IXGRP
1471 #define S_IXGRP 00010           /* execute permission: group */
1472 #endif
1473 #ifndef S_IRWXO
1474 #define S_IRWXO 00007           /* read, write, execute: other */
1475 #endif
1476 #ifndef S_IROTH
1477 #define S_IROTH 00004           /* read permission: other */
1478 #endif
1479 #ifndef S_IWOTH
1480 #define S_IWOTH 00002           /* write permission: other */
1481 #endif
1482 #ifndef S_IXOTH
1483 #define S_IXOTH 00001           /* execute permission: other */
1484 #endif
1485
1486
1487 /* these are used in NetServerEnum to choose what to receive */
1488 #define SV_TYPE_WORKSTATION         0x00000001
1489 #define SV_TYPE_SERVER              0x00000002
1490 #define SV_TYPE_SQLSERVER           0x00000004
1491 #define SV_TYPE_DOMAIN_CTRL         0x00000008
1492 #define SV_TYPE_DOMAIN_BAKCTRL      0x00000010
1493 #define SV_TYPE_TIME_SOURCE         0x00000020
1494 #define SV_TYPE_AFP                 0x00000040
1495 #define SV_TYPE_NOVELL              0x00000080
1496 #define SV_TYPE_DOMAIN_MEMBER       0x00000100
1497 #define SV_TYPE_PRINTQ_SERVER       0x00000200
1498 #define SV_TYPE_DIALIN_SERVER       0x00000400
1499 #define SV_TYPE_SERVER_UNIX         0x00000800
1500 #define SV_TYPE_NT                  0x00001000
1501 #define SV_TYPE_WFW                 0x00002000
1502 #define SV_TYPE_SERVER_MFPN         0x00004000
1503 #define SV_TYPE_SERVER_NT           0x00008000
1504 #define SV_TYPE_POTENTIAL_BROWSER   0x00010000
1505 #define SV_TYPE_BACKUP_BROWSER      0x00020000
1506 #define SV_TYPE_MASTER_BROWSER      0x00040000
1507 #define SV_TYPE_DOMAIN_MASTER       0x00080000
1508 #define SV_TYPE_SERVER_OSF          0x00100000
1509 #define SV_TYPE_SERVER_VMS          0x00200000
1510 #define SV_TYPE_WIN95_PLUS          0x00400000
1511 #define SV_TYPE_ALTERNATE_XPORT     0x20000000  
1512 #define SV_TYPE_LOCAL_LIST_ONLY     0x40000000  
1513 #define SV_TYPE_DOMAIN_ENUM         0x80000000
1514 #define SV_TYPE_ALL                 0xFFFFFFFF  
1515
1516 /* what server type are we currently  - JHT Says we ARE 4.20 */
1517 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1518 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1519 /* History: */
1520 /* Version 4.0 - never made public */
1521 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1522 /*              - Reappeared in 1.9.16p11 with fixed smbd services */
1523 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1524
1525 #define DEFAULT_MAJOR_VERSION 0x04
1526 #define DEFAULT_MINOR_VERSION 0x02
1527
1528 /* Browser Election Values */
1529 #define BROWSER_ELECTION_VERSION        0x010f
1530 #define BROWSER_CONSTANT        0xaa55
1531
1532 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
1533    
1534 #define FLAGS2_LONG_PATH_COMPONENTS   0x0001
1535 #define FLAGS2_EXTENDED_ATTRIBUTES    0x0002
1536 #define FLAGS2_DFS_PATHNAMES          0x1000
1537 #define FLAGS2_READ_PERMIT_NO_EXECUTE 0x2000
1538 #define FLAGS2_32_BIT_ERROR_CODES     0x4000 
1539 #define FLAGS2_UNICODE_STRINGS        0x8000
1540
1541 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1542
1543 #define CAP_RAW_MODE         0x0001
1544 #define CAP_MPX_MODE         0x0002
1545 #define CAP_UNICODE          0x0004
1546 #define CAP_LARGE_FILES      0x0008
1547 #define CAP_NT_SMBS          0x0010
1548 #define CAP_RPC_REMOTE_APIS  0x0020
1549 #define CAP_STATUS32         0x0040
1550 #define CAP_LEVEL_II_OPLOCKS 0x0080
1551 #define CAP_LOCK_AND_READ    0x0100
1552 #define CAP_NT_FIND          0x0200
1553 #define CAP_DFS              0x1000
1554 #define CAP_LARGE_READX      0x4000
1555
1556 /* protocol types. It assumes that higher protocols include lower protocols
1557    as subsets */
1558 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1559
1560 /* security levels */
1561 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN};
1562
1563 /* server roles */
1564 enum server_types
1565 {
1566         ROLE_DOMAIN_NONE,
1567         ROLE_DOMAIN_MEMBER,
1568         ROLE_DOMAIN_BDC,
1569         ROLE_DOMAIN_PDC
1570 };
1571
1572 /* printing types */
1573 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1574                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ};
1575
1576 /* Remote architectures we know about. */
1577 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_SAMBA};
1578
1579 /* case handling */
1580 enum case_handling {CASE_LOWER,CASE_UPPER};
1581
1582 #ifdef WITH_SSL
1583 /* SSL version options */
1584 enum ssl_version_enum {SMB_SSL_V2,SMB_SSL_V3,SMB_SSL_V23,SMB_SSL_TLS1};
1585 #endif /* WITH_SSL */
1586
1587 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
1588    structures. We cannot define these as actual structures
1589    due to possible differences in structure packing
1590    on different machines/compilers. */
1591
1592 #define SMB_LPID_OFFSET(indx) (10 * (indx))
1593 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
1594 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
1595 #define SMB_LARGE_LKOFF_OFFSET_HIGH(indx) (4 + (20 * (indx)))
1596 #define SMB_LARGE_LKOFF_OFFSET_LOW(indx) (8 + (20 * (indx)))
1597 #define SMB_LARGE_LKLEN_OFFSET_HIGH(indx) (12 + (20 * (indx)))
1598 #define SMB_LARGE_LKLEN_OFFSET_LOW(indx) (16 + (20 * (indx)))
1599
1600 /* Macro to cache an error in a write_bmpx_struct */
1601 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
1602                             w->wr_discard = True, -1)
1603 /* Macro to test if an error has been cached for this fnum */
1604 #define HAS_CACHED_ERROR(fsp) ((fsp)->open && (fsp)->wbmpx_ptr && \
1605                                 (fsp)->wbmpx_ptr->wr_discard)
1606 /* Macro to turn the cached error into an error packet */
1607 #define CACHED_ERROR(fsp) cached_error_packet(inbuf,outbuf,fsp,__LINE__)
1608
1609 /* these are the datagram types */
1610 #define DGRAM_DIRECT_UNIQUE 0x10
1611
1612 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
1613
1614 /* this is how errors are generated */
1615 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
1616
1617 #define SMB_ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
1618
1619 /*
1620  * Global value meaing that the smb_uid field should be
1621  * ingored (in share level security and protocol level == CORE)
1622  */
1623
1624 #define UID_FIELD_INVALID 0
1625 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1626
1627 /* Defines needed for multi-codepage support. */
1628 #define MSDOS_LATIN_1_CODEPAGE 850
1629 #define KANJI_CODEPAGE 932
1630 #define HANGUL_CODEPAGE 949
1631 #define BIG5_CODEPAGE 950
1632 #define SIMPLIFIED_CHINESE_CODEPAGE 936
1633
1634 #ifdef KANJI
1635 /* 
1636  * Default client code page - Japanese 
1637  */
1638 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1639 #else /* KANJI */
1640 /* 
1641  * Default client code page - 850 - Western European 
1642  */
1643 #define DEFAULT_CLIENT_CODE_PAGE MSDOS_LATIN_1_CODEPAGE
1644 #endif /* KANJI */
1645
1646 /* 
1647  * Size of buffer to use when moving files across filesystems. 
1648  */
1649 #define COPYBUF_SIZE (8*1024)
1650
1651 /* 
1652  * Integers used to override error codes. 
1653  */
1654 extern int unix_ERR_class;
1655 extern int unix_ERR_code;
1656
1657 /*
1658  * Map the Core and Extended Oplock requesst bits down
1659  * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1660  */
1661
1662 /*
1663  * Core protocol.
1664  */
1665 #define CORE_OPLOCK_REQUEST(inbuf) \
1666     ((CVAL(inbuf,smb_flg)&(FLAG_REQUEST_OPLOCK|FLAG_REQUEST_BATCH_OPLOCK))>>5)
1667
1668 /*
1669  * Extended protocol.
1670  */
1671 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1672
1673 /* Lock types. */
1674 #define LOCKING_ANDX_SHARED_LOCK 0x1
1675 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1676 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1677 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1678 #define LOCKING_ANDX_LARGE_FILES 0x10
1679
1680 /* Oplock levels */
1681 #define OPLOCKLEVEL_NONE 0
1682 #define OPLOCKLEVEL_II 1
1683
1684 /*
1685  * Bits we test with.
1686  */
1687 #define EXCLUSIVE_OPLOCK 1
1688 #define BATCH_OPLOCK 2
1689
1690 #define CORE_OPLOCK_GRANTED (1<<5)
1691 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1692
1693 /*
1694  * Loopback command offsets.
1695  */
1696
1697 #define OPBRK_CMD_LEN_OFFSET 0
1698 #define OPBRK_CMD_PORT_OFFSET 4
1699 #define OPBRK_CMD_HEADER_LEN 6
1700
1701 #define OPBRK_MESSAGE_CMD_OFFSET 0
1702
1703 /*
1704  * Oplock break command code to send over the udp socket.
1705  * 
1706  * Form of this is :
1707  *
1708  *  0     2       6        10       14    14+devsize 14+devsize+inodesize
1709  *  +----+--------+--------+--------+-------+--------+
1710  *  | cmd| pid    | sec    | usec   | dev   |  inode |
1711  *  +----+--------+--------+--------+-------+--------+
1712  */
1713
1714 #define OPLOCK_BREAK_CMD 0x1
1715 #define OPLOCK_BREAK_PID_OFFSET 2
1716 #define OPLOCK_BREAK_SEC_OFFSET 6
1717 #define OPLOCK_BREAK_USEC_OFFSET 10
1718 #define OPLOCK_BREAK_DEV_OFFSET 14
1719 #define OPLOCK_BREAK_INODE_OFFSET (OPLOCK_BREAK_DEV_OFFSET + sizeof(SMB_DEV_T))
1720 #define OPLOCK_BREAK_MSG_LEN (OPLOCK_BREAK_INODE_OFFSET + sizeof(SMB_INO_T))
1721
1722 /*
1723  * Capabilities abstracted for different systems.
1724  */
1725
1726 #define KERNEL_OPLOCK_CAPABILITY 0x1
1727
1728 #if defined(HAVE_KERNEL_OPLOCKS)
1729 /*
1730  * Oplock break command code sent via the kernel interface.
1731  *
1732  * Form of this is :
1733  *
1734  *  0     2       2+devsize 2+devsize+inodesize
1735  *  +----+--------+--------+
1736  *  | cmd| dev    |  inode |
1737  *  +----+--------+--------+
1738  */
1739
1740 #define KERNEL_OPLOCK_BREAK_CMD 0x2
1741 #define KERNEL_OPLOCK_BREAK_DEV_OFFSET 2
1742 #define KERNEL_OPLOCK_BREAK_INODE_OFFSET (KERNEL_OPLOCK_BREAK_DEV_OFFSET + sizeof(SMB_DEV_T))
1743 #define KERNEL_OPLOCK_BREAK_MSG_LEN (KERNEL_OPLOCK_BREAK_INODE_OFFSET + sizeof(SMB_INO_T))
1744
1745 #endif /* HAVE_KERNEL_OPLOCKS */
1746
1747 #define CMD_REPLY 0x8000
1748
1749 /* useful macros */
1750
1751 /* zero a structure */
1752 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
1753
1754 /* zero a structure given a pointer to the structure */
1755 #define ZERO_STRUCTP(x) { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); }
1756
1757 /* zero an array - note that sizeof(array) must work - ie. it must not be a 
1758    pointer */
1759 #define ZERO_ARRAY(x) memset((char *)(x), 0, sizeof(x))
1760
1761 #define SMB_ASSERT(b) ((b)?(void)0: \
1762         (DEBUG(0,("PANIC: assert failed at %s(%d)\n", \
1763                  __FILE__, __LINE__)), smb_panic("assert failed")))
1764 #define SMB_ASSERT_ARRAY(a,n) SMB_ASSERT((sizeof(a)/sizeof((a)[0])) >= (n))
1765
1766 #include "ntdomain.h"
1767
1768 /* A netbios name structure. */
1769 struct nmb_name {
1770   char         name[17];
1771   char         scope[64];
1772   unsigned int name_type;
1773 };
1774
1775 #include "client.h"
1776 #include "rpcclient.h"
1777
1778 /*
1779  * Size of new password account encoding string. DO NOT CHANGE.
1780  */
1781
1782 #define NEW_PW_FORMAT_SPACE_PADDED_LEN 14
1783
1784 /*
1785    Do you want session setups at user level security with a invalid
1786    password to be rejected or allowed in as guest? WinNT rejects them
1787    but it can be a pain as it means "net view" needs to use a password
1788
1789    You have 3 choices in the setting of map_to_guest:
1790
1791    "NEVER_MAP_TO_GUEST" means session setups with an invalid password
1792    are rejected. This is the default.
1793
1794    "MAP_TO_GUEST_ON_BAD_USER" means session setups with an invalid password
1795    are rejected, unless the username does not exist, in which case it
1796    is treated as a guest login
1797
1798    "MAP_TO_GUEST_ON_BAD_PASSWORD" means session setups with an invalid password
1799    are treated as a guest login
1800
1801    Note that map_to_guest only has an effect in user or server
1802    level security.
1803 */
1804
1805 #define NEVER_MAP_TO_GUEST 0
1806 #define MAP_TO_GUEST_ON_BAD_USER 1
1807 #define MAP_TO_GUEST_ON_BAD_PASSWORD 2
1808
1809 #endif /* _SMB_H */
1810
1811 /* _SMB_H */