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