9d6c8d7e29508558968608896ff43d3b953a77cb
[kai/samba.git] / source3 / include / smb.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-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)(((char *)(p1)) - (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 /*
52    Samba needs type definitions for int16, int32, uint16 and uint32.
53    
54    Normally these are signed and unsigned 16 and 32 bit integers, but
55    they actually only need to be at least 16 and 32 bits
56    respectively. Thus if your word size is 8 bytes just defining them
57    as signed and unsigned int will work.
58 */
59
60 #ifndef uint8
61 typedef unsigned char uint8;
62 #endif
63
64 #ifndef uint16
65 typedef unsigned short uint16;
66 #endif
67
68 #ifndef uchar
69 #define uchar unsigned char
70 #endif
71
72 #ifndef int16
73 #define int16 short
74 #endif
75
76 #ifndef uint16
77 #define uint16 unsigned short
78 #endif
79
80 #define SIZEOFWORD 2
81
82 #ifndef DEF_CREATE_MASK
83 #define DEF_CREATE_MASK (0755)
84 #endif
85
86 #ifndef PRINTCAP_NAME
87 #define PRINTCAP_NAME "/etc/printcap"
88 #endif
89
90 /* how long to wait for secondary SMB packets (milli-seconds) */
91 #define SMB_SECONDARY_WAIT (60*1000)
92
93 /* -------------------------------------------------------------------------- **
94  * Debugging code.  See also debug.c
95  */
96
97 /* mkproto.awk has trouble with ifdef'd function definitions (it ignores
98  * the #ifdef directive and will read both definitions, thus creating two
99  * diffferent prototype declarations), so we must do these by hand.
100  */
101 /* I know the __attribute__ stuff is ugly, but it does ensure we get the 
102    arguemnts to DEBUG() right. We have got them wrong too often in the 
103    past */
104 #ifdef HAVE_STDARG_H
105 int  Debug1( char *, ... )
106 #ifdef __GNUC__
107      __attribute__ ((format (printf, 1, 2)))
108 #endif
109 ;
110 BOOL dbgtext( char *, ... )
111 #ifdef __GNUC__
112      __attribute__ ((format (printf, 1, 2)))
113 #endif
114 ;
115 #else
116 int  Debug1();
117 BOOL dbgtext();
118 #endif
119
120 /* If we have these macros, we can add additional info to the header. */
121 #ifdef HAVE_FILE_MACRO
122 #define FILE_MACRO (__FILE__)
123 #else
124 #define FILE_MACRO ("")
125 #endif
126
127 #ifdef HAVE_FUNCTION_MACRO
128 #define FUNCTION_MACRO  (__FUNCTION__)
129 #else
130 #define FUNCTION_MACRO  ("")
131 #endif
132
133 /* Debugging macros. 
134  *  DEBUGLVL() - If level is <= the system-wide DEBUGLEVEL then generate a
135  *               header using the default macros for file, line, and
136  *               function name.
137  *               Returns True if the debug level was <= DEBUGLEVEL.
138  *               Example usage:
139  *                 if( DEBUGLVL( 2 ) )
140  *                   dbgtext( "Some text.\n" );
141  *  DEGUG()    - Good old DEBUG().  Each call to DEBUG() will generate a new
142  *               header *unless* the previous debug output was unterminated
143  *               (i.e., no '\n').  See debug.c:dbghdr() for more info.
144  *               Example usage:
145  *                 DEBUG( 2, ("Some text.\n") );
146  *  DEBUGADD() - If level <= DEBUGLEVEL, then the text is appended to the
147  *               current message (i.e., no header).
148  *               Usage:
149  *                 DEBUGADD( 2, ("Some additional text.\n") );
150  */
151 #define DEBUGLVL( level ) \
152   ( (DEBUGLEVEL >= (level)) \
153    && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) )
154
155 #if 0
156
157 #define DEBUG( level, body ) \
158   ( ( DEBUGLEVEL >= (level) \
159    && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) ) \
160       ? (void)(dbgtext body) : (void)0 )
161
162 #define DEBUGADD( level, body ) \
163      ( (DEBUGLEVEL >= (level)) ? (void)(dbgtext body) : (void)0 )
164
165 #else
166
167 #define DEBUG( level, body ) \
168   (void)( (DEBUGLEVEL >= (level)) \
169        && (dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) )) \
170        && (dbgtext body) )
171
172 #define DEBUGADD( level, body ) \
173   (void)( (DEBUGLEVEL >= (level)) && (dbgtext body) )
174
175 #endif
176
177 /* End Debugging code section.
178  * -------------------------------------------------------------------------- **
179  */
180
181 /* this defines the error codes that receive_smb can put in smb_read_error */
182 #define READ_TIMEOUT 1
183 #define READ_EOF 2
184 #define READ_ERROR 3
185
186
187 #define DIR_STRUCT_SIZE 43
188
189 /* these define all the command types recognised by the server - there
190 are lots of gaps so probably there are some rare commands that are not
191 implemented */
192
193 #define pSETDIR '\377'
194
195 /* these define the attribute byte as seen by DOS */
196 #define aRONLY (1L<<0)
197 #define aHIDDEN (1L<<1)
198 #define aSYSTEM (1L<<2)
199 #define aVOLID (1L<<3)
200 #define aDIR (1L<<4)
201 #define aARCH (1L<<5)
202
203 /* for readability... */
204 #define IS_DOS_READONLY(test_mode) (((test_mode) & aRONLY) != 0)
205 #define IS_DOS_DIR(test_mode) (((test_mode) & aDIR) != 0)
206 #define IS_DOS_ARCHIVE(test_mode) (((test_mode) & aARCH) != 0)
207 #define IS_DOS_SYSTEM(test_mode) (((test_mode) & aSYSTEM) != 0)
208 #define IS_DOS_HIDDEN(test_mode) (((test_mode) & aHIDDEN) != 0)
209
210 /* deny modes */
211 #define DENY_DOS 0
212 #define DENY_ALL 1
213 #define DENY_WRITE 2
214 #define DENY_READ 3
215 #define DENY_NONE 4
216 #define DENY_FCB 7
217
218 /* share types */
219 #define STYPE_DISKTREE  0       /* Disk drive */
220 #define STYPE_PRINTQ    1       /* Spooler queue */
221 #define STYPE_DEVICE    2       /* Serial device */
222 #define STYPE_IPC       3       /* Interprocess communication (IPC) */
223 #define STYPE_HIDDEN    0x80000000 /* share is a hidden one (ends with $) */
224
225 /* SMB X/Open error codes for the ERRDOS error class */
226 #define ERRbadfunc 1 /* Invalid function (or system call) */
227 #define ERRbadfile 2 /* File not found (pathname error) */
228 #define ERRbadpath 3 /* Directory not found */
229 #define ERRnofids 4 /* Too many open files */
230 #define ERRnoaccess 5 /* Access denied */
231 #define ERRbadfid 6 /* Invalid fid */
232 #define ERRnomem 8 /* Out of memory */
233 #define ERRbadmem 9 /* Invalid memory block address */
234 #define ERRbadenv 10 /* Invalid environment */
235 #define ERRbadaccess 12 /* Invalid open mode */
236 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
237 #define ERRres 14 /* reserved */
238 #define ERRbaddrive 15 /* Invalid drive */
239 #define ERRremcd 16 /* Attempt to delete current directory */
240 #define ERRdiffdevice 17 /* rename/move across different filesystems */
241 #define ERRnofiles 18 /* no more files found in file search */
242 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
243 #define ERRlock 33 /* Lock request conflicts with existing lock */
244 #define ERRunsup 50 /* Request unsupported, returned by Win 95, RJS 20Jun98 */
245 #define ERRfilexists 80 /* File in operation already exists */
246 #define ERRcannotopen 110 /* Cannot open the file specified */
247 #define ERRunknownlevel 124
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 strings */
323 #define PIPE_LANMAN   "\\PIPE\\LANMAN"
324 #define PIPE_SRVSVC   "\\PIPE\\srvsvc"
325 #define PIPE_SAMR     "\\PIPE\\samr"
326 #define PIPE_WKSSVC   "\\PIPE\\wkssvc"
327 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
328 #define PIPE_NTLSA    "\\PIPE\\ntlsa"
329 #define PIPE_NTSVCS   "\\PIPE\\ntsvcs"
330 #define PIPE_LSASS    "\\PIPE\\lsass"
331 #define PIPE_LSARPC   "\\PIPE\\lsarpc"
332
333
334 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
335 typedef struct nttime_info
336 {
337   uint32 low;
338   uint32 high;
339
340 } NTTIME;
341
342 /* Allowable account control bits */
343 #define ACB_DISABLED   0x0001  /* 1 = User account disabled */
344 #define ACB_HOMDIRREQ  0x0002  /* 1 = Home directory required */
345 #define ACB_PWNOTREQ   0x0004  /* 1 = User password not required */
346 #define ACB_TEMPDUP    0x0008  /* 1 = Temporary duplicate account */
347 #define ACB_NORMAL     0x0010  /* 1 = Normal user account */
348 #define ACB_MNS        0x0020  /* 1 = MNS logon user account */
349 #define ACB_DOMTRUST   0x0040  /* 1 = Interdomain trust account */
350 #define ACB_WSTRUST    0x0080  /* 1 = Workstation trust account */
351 #define ACB_SVRTRUST   0x0100  /* 1 = Server trust account */
352 #define ACB_PWNOEXP    0x0200  /* 1 = User password does not expire */
353 #define ACB_AUTOLOCK   0x0400  /* 1 = Account auto locked */
354  
355 #define MAX_HOURS_LEN 32
356
357 struct sam_passwd
358 {
359         time_t logon_time;            /* logon time */
360         time_t logoff_time;           /* logoff time */
361         time_t kickoff_time;          /* kickoff time */
362         time_t pass_last_set_time;    /* password last set time */
363         time_t pass_can_change_time;  /* password can change time */
364         time_t pass_must_change_time; /* password must change time */
365
366         char *smb_name;     /* username string */
367         char *full_name;    /* user's full name string */
368         char *home_dir;     /* home directory string */
369         char *dir_drive;    /* home directory drive string */
370         char *logon_script; /* logon script string */
371         char *profile_path; /* profile path string */
372         char *acct_desc  ;  /* user description string */
373         char *workstations; /* login from workstations string */
374         char *unknown_str ; /* don't know what this is, yet. */
375         char *munged_dial ; /* munged path name and dial-back tel number */
376
377         int smb_userid;       /* this is actually the unix uid_t */
378         int smb_grpid;        /* this is actually the unix gid_t */
379         uint32 user_rid;      /* Primary User ID */
380         uint32 group_rid;     /* Primary Group ID */
381
382         unsigned char *smb_passwd; /* Null if no password */
383         unsigned char *smb_nt_passwd; /* Null if no password */
384
385         uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
386         uint32 unknown_3; /* 0x00ff ffff */
387
388         uint16 logon_divs; /* 168 - number of hours in a week */
389         uint32 hours_len; /* normally 21 bytes */
390         uint8 hours[MAX_HOURS_LEN];
391
392         uint32 unknown_5; /* 0x0002 0000 */
393         uint32 unknown_6; /* 0x0000 04ec */
394 };
395
396 struct smb_passwd
397 {
398         int smb_userid;     /* this is actually the unix uid_t */
399         char *smb_name;     /* username string */
400
401         unsigned char *smb_passwd; /* Null if no password */
402         unsigned char *smb_nt_passwd; /* Null if no password */
403
404         uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
405         time_t pass_last_set_time;    /* password last set time */
406 };
407
408
409 struct sam_disp_info
410 {
411         uint32 user_rid;      /* Primary User ID */
412         char *smb_name;     /* username string */
413         char *full_name;    /* user's full name string */
414 };
415
416 /* DOM_CHAL - challenge info */
417 typedef struct chal_info
418 {
419   uchar data[8]; /* credentials */
420 } DOM_CHAL;
421
422 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
423 typedef struct time_info
424 {
425   uint32 time;
426 } UTIME;
427
428 /* DOM_CREDs - timestamped client or server credentials */
429 typedef struct cred_info
430 {  
431   DOM_CHAL challenge; /* credentials */
432   UTIME timestamp;    /* credential time-stamp */
433 } DOM_CRED;
434
435 struct cli_state {
436   int fd;
437   int cnum;
438   int pid;
439   int mid;
440   int uid;
441   int protocol;
442   int sec_mode;
443   int rap_error;
444   int privilages;
445   fstring eff_name;
446   fstring desthost;
447   char cryptkey[8];
448   uint32 sesskey;
449   int serverzone;
450   uint32 servertime;
451   int readbraw_supported;
452   int writebraw_supported;
453   int timeout;
454   int max_xmit;
455   char *outbuf;
456   char *inbuf;
457   int bufsize;
458   int initialised;
459   /*
460    * Only used in NT domain calls.
461    */
462   uint32 nt_error;                   /* NT RPC error code. */
463   uint16 nt_pipe_fnum;               /* Pipe handle. */
464   unsigned char sess_key[16];        /* Current session key. */
465   DOM_CRED clnt_cred;                /* Client credential. */
466   fstring mach_acct;                 /* MYNAME$. */
467   fstring srv_name_slash;            /* \\remote server. */
468   fstring clnt_name_slash;            /* \\local client. */
469 };
470
471
472 typedef struct
473 {
474   int size;
475   int mode;
476   int uid;
477   int gid;
478   /* these times are normally kept in GMT */
479   time_t mtime;
480   time_t atime;
481   time_t ctime;
482   pstring name;
483
484 } file_info;
485
486
487 /* Structure used when SMBwritebmpx is active */
488 typedef struct
489 {
490   int   wr_total_written; /* So we know when to discard this */
491   int32 wr_timeout;
492   int32 wr_errclass;
493   int32 wr_error; /* Cached errors */
494   BOOL  wr_mode; /* write through mode) */
495   BOOL  wr_discard; /* discard all further data */
496 } write_bmpx_struct;
497
498 /*
499  * Structure used to indirect fd's from the files_struct.
500  * Needed as POSIX locking is based on file and process, not
501  * file descriptor and process.
502  */
503
504 typedef struct file_fd_struct
505 {
506         struct file_fd_struct *next, *prev;
507         uint16 ref_count;
508         uint16 uid_cache_count;
509         uid_t uid_users_cache[10];
510         uint32 dev;
511         uint32 inode;
512         int fd;
513         int fdnum;
514         int fd_readonly;
515         int fd_writeonly;
516         int real_open_flags;
517 } file_fd_struct;
518
519 /*
520  * Structure used to keep directory state information around.
521  * Used in NT change-notify code.
522  */
523
524 typedef struct
525 {
526   time_t modify_time;
527   time_t status_time;
528 } dir_status_struct;
529
530 struct uid_cache {
531   int entries;
532   int list[UID_CACHE_SIZE];
533 };
534
535 typedef struct
536 {
537   char *name;
538   BOOL is_wild;
539 } name_compare_entry;
540
541 typedef struct connection_struct
542 {
543         struct connection_struct *next, *prev;
544         unsigned cnum; /* an index passed over the wire */
545         int service;
546         BOOL force_user;
547         struct uid_cache uid_cache;
548         void *dirptr;
549         BOOL printer;
550         BOOL ipc;
551         BOOL read_only;
552         BOOL admin_user;
553         char *dirpath;
554         char *connectpath;
555         char *origpath;
556         char *user; /* name of user who *opened* this connection */
557         int uid; /* uid of user who *opened* this connection */
558         int gid; /* gid of user who *opened* this connection */
559
560         uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
561
562         /* following groups stuff added by ih */
563
564         /* This groups info is valid for the user that *opened* the connection */
565         int ngroups;
566         GID_T *groups;
567         
568         time_t lastused;
569         BOOL used;
570         int num_files_open;
571         name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
572         name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
573         name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */       
574 } connection_struct;
575
576 struct current_user
577 {
578         connection_struct *conn;
579         int vuid;
580         int uid, gid;
581         int ngroups;
582         GID_T *groups;
583 };
584
585 typedef struct files_struct
586 {
587         struct files_struct *next, *prev;
588         int fnum;
589         connection_struct *conn;
590         file_fd_struct *fd_ptr;
591         int pos;
592         uint32 size;
593         int mode;
594         int vuid;
595         char *mmap_ptr;
596         uint32 mmap_size;
597         write_bmpx_struct *wbmpx_ptr;
598         struct timeval open_time;
599         BOOL open;
600         BOOL can_lock;
601         BOOL can_read;
602         BOOL can_write;
603         BOOL share_mode;
604         BOOL print_file;
605         BOOL modified;
606         BOOL granted_oplock;
607         BOOL sent_oplock_break;
608         BOOL is_directory;
609         char *fsp_name;
610 } files_struct;
611
612 /* Domain controller authentication protocol info */
613 struct dcinfo
614 {
615   DOM_CHAL clnt_chal; /* Initial challenge received from client */
616   DOM_CHAL srv_chal;  /* Initial server challenge */
617   DOM_CRED clnt_cred; /* Last client credential */
618   DOM_CRED srv_cred;  /* Last server credential */
619
620   uchar  sess_key[8]; /* Session key */
621   uchar  md4pw[16];   /* md4(machine password) */
622 };
623
624 typedef struct
625 {
626   int uid; /* uid of a validated user */
627   int gid; /* gid of a validated user */
628
629   fstring requested_name; /* user name from the client */
630   fstring name; /* unix user name of a validated user */
631   fstring real_name;   /* to store real name from password file - simeon */
632   BOOL guest;
633
634   /* following groups stuff added by ih */
635   /* This groups info is needed for when we become_user() for this uid */
636   int n_groups;
637   GID_T *groups;
638
639   int n_sids;
640   int *sids;
641
642   /* per-user authentication information on NT RPCs */
643   struct dcinfo dc;
644
645 } user_struct;
646
647
648 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
649
650 typedef struct
651 {
652   int job;
653   int size;
654   int status;
655   int priority;
656   time_t time;
657   char user[30];
658   char file[100];
659 } print_queue_struct;
660
661 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
662
663 typedef struct
664 {
665   fstring message;
666   int status;
667 }  print_status_struct;
668
669 /* used for server information: client, nameserv and ipc */
670 struct server_info_struct
671 {
672   fstring name;
673   uint32 type;
674   fstring comment;
675   fstring domain; /* used ONLY in ipc.c NOT namework.c */
676   BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
677 };
678
679
680 /* used for network interfaces */
681 struct interface
682 {
683         struct interface *next;
684         struct in_addr ip;
685         struct in_addr bcast;
686         struct in_addr nmask;
687 };
688
689 /* struct returned by get_share_modes */
690 typedef struct
691 {
692   int pid;
693   uint16 op_port;
694   uint16 op_type;
695   int share_mode;
696   struct timeval time;
697 } share_mode_entry;
698
699
700 /* each implementation of the share mode code needs
701    to support the following operations */
702 struct share_ops {
703         BOOL (*stop_mgmt)(void);
704         BOOL (*lock_entry)(connection_struct *, uint32 , uint32 , int *);
705         BOOL (*unlock_entry)(connection_struct *, uint32 , uint32 , int );
706         int (*get_entries)(connection_struct *, int , uint32 , uint32 , share_mode_entry **);
707         void (*del_entry)(int , files_struct *);
708         BOOL (*set_entry)(int, files_struct *, uint16 , uint16 );
709         BOOL (*remove_oplock)(files_struct *, int);
710         int (*forall)(void (*)(share_mode_entry *, char *));
711         void (*status)(FILE *);
712 };
713
714 /* each implementation of the shared memory code needs
715    to support the following operations */
716 struct shmem_ops {
717         BOOL (*shm_close)( void );
718         int (*shm_alloc)(int );
719         BOOL (*shm_free)(int );
720         int (*get_userdef_off)(void);
721         void *(*offset2addr)(int );
722         int (*addr2offset)(void *addr);
723         BOOL (*lock_hash_entry)(unsigned int);
724         BOOL (*unlock_hash_entry)( unsigned int );
725         BOOL (*get_usage)(int *,int *,int *);
726         unsigned (*hash_size)(void);
727 };
728
729 /*
730  * Each implementation of the password database code needs
731  * to support the following operations.
732  */
733
734 struct passdb_ops {
735   /*
736    * Password database ops.
737    */
738   void *(*startsmbpwent)(BOOL);
739   void (*endsmbpwent)(void *);
740   unsigned long (*getsmbpwpos)(void *);
741   BOOL (*setsmbpwpos)(void *, unsigned long);
742
743   /*
744    * smb password database query functions.
745    */
746   struct smb_passwd *(*getsmbpwnam)(char *);
747   struct smb_passwd *(*getsmbpwuid)(uid_t);
748   struct smb_passwd *(*getsmbpwent)(void *);
749
750   /*
751    * smb password database modification functions.
752    */
753   BOOL (*add_smbpwd_entry)(struct smb_passwd *);
754   BOOL (*mod_smbpwd_entry)(struct smb_passwd *, BOOL);
755
756   /*
757    * Functions that manupulate a struct sam_passwd.
758    */
759   struct sam_passwd *(*getsam21pwent)(void *);
760
761   /*
762    * sam password database query functions.
763    */
764   struct sam_passwd *(*getsam21pwnam)(char *);
765   struct sam_passwd *(*getsam21pwuid)(uid_t);
766   struct sam_passwd *(*getsam21pwrid)(uint32);
767
768   /*
769    * sam password database modification functions.
770    */
771   BOOL (*add_sam21pwd_entry)(struct sam_passwd *);
772   BOOL (*mod_sam21pwd_entry)(struct sam_passwd *, BOOL);
773
774   /*
775    * sam query display info functions.
776    */
777   struct sam_disp_info *(*getsamdispnam)(char *);
778   struct sam_disp_info *(*getsamdisprid)(uint32);
779   struct sam_disp_info *(*getsamdispent)(void *);
780
781 #if 0
782   /*
783    * password checking functions
784    */
785   struct smb_passwd *(*smb_password_chal  )(char *username, char lm_pass[24], char nt_pass[24], char chal[8]);
786   struct smb_passwd *(*smb_password_check )(char *username, char lm_hash[16], char nt_hash[16]);
787   struct passwd     *(*unix_password_check)(char *username, char *pass, int pass_len);
788 #endif
789 };
790
791 /* this is used for smbstatus */
792
793 struct connect_record
794 {
795   int magic;
796   int pid;
797   int cnum;
798   int uid;
799   int gid;
800   char name[24];
801   char addr[24];
802   char machine[128];
803   time_t start;
804 };
805
806 /* This is used by smbclient to send it to a smbfs mount point */
807 struct connection_options {
808   int protocol;
809   /* Connection-Options */
810   uint32 max_xmit;
811   uint16 server_uid;
812   uint16 tid;
813   /* The following are LANMAN 1.0 options */
814   uint16 sec_mode;
815   uint16 max_mux;
816   uint16 max_vcs;
817   uint16 rawmode;
818   uint32 sesskey;
819   /* The following are NT LM 0.12 options */
820   uint32 maxraw;
821   uint32 capabilities;
822   uint16 serverzone;
823 };
824
825 /* the following are used by loadparm for option lists */
826 typedef enum
827 {
828   P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
829   P_STRING,P_USTRING,P_GSTRING,P_UGSTRING,P_ENUM,P_SEP
830 } parm_type;
831
832 typedef enum
833 {
834   P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
835 } parm_class;
836
837 struct enum_list {
838         int value;
839         char *name;
840 };
841
842 struct parm_struct
843 {
844         char *label;
845         parm_type type;
846         parm_class class;
847         void *ptr;
848         BOOL (*special)(char *, char **);
849         struct enum_list *enum_list;
850         unsigned flags;
851         union {
852                 BOOL bvalue;
853                 int ivalue;
854                 char *svalue;
855                 char cvalue;
856         } def;
857 };
858
859 struct bitmap {
860         uint32 *b;
861         int n;
862 };
863
864 #define FLAG_BASIC 1 /* fundamental options */
865 #define FLAG_HIDE  2 /* options that should be hidden in SWAT */
866 #define FLAG_PRINT 4 /* printing options */
867 #define FLAG_GLOBAL 8 /* local options that should be globally settable in SWAT */
868
869 #ifndef LOCKING_VERSION
870 #define LOCKING_VERSION 4
871 #endif /* LOCKING_VERSION */
872
873 /* these are useful macros for checking validity of handles */
874 #define OPEN_FSP(fsp)    ((fsp) && (fsp)->open && !(fsp)->is_directory)
875 #define OPEN_CONN(conn)    ((conn) && (conn)->open)
876 #define IS_IPC(conn)       ((conn) && (conn)->ipc)
877 #define IS_PRINT(conn)       ((conn) && (conn)->printer)
878 #define FNUM_OK(fsp,c) (OPEN_FSP(fsp) && (c)==(fsp)->conn)
879
880 #define CHECK_FSP(fsp,conn) if (!FNUM_OK(fsp,conn)) \
881                                return(ERROR(ERRDOS,ERRbadfid))
882 #define CHECK_READ(fsp) if (!(fsp)->can_read) \
883                                return(ERROR(ERRDOS,ERRbadaccess))
884 #define CHECK_WRITE(fsp) if (!(fsp)->can_write) \
885                                return(ERROR(ERRDOS,ERRbadaccess))
886 #define CHECK_ERROR(fsp) if (HAS_CACHED_ERROR(fsp)) \
887                                return(CACHED_ERROR(fsp))
888
889 /* translates a connection number into a service number */
890 #define SNUM(conn)         ((conn)?(conn)->service:-1)
891
892 /* access various service details */
893 #define SERVICE(snum)      (lp_servicename(snum))
894 #define PRINTCAP           (lp_printcapname())
895 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
896 #define PRINTERNAME(snum)  (lp_printername(snum))
897 #define CAN_WRITE(conn)    (!conn->read_only)
898 #define VALID_SNUM(snum)   (lp_snum_ok(snum))
899 #define GUEST_OK(snum)     (VALID_SNUM(snum) && lp_guest_ok(snum))
900 #define GUEST_ONLY(snum)   (VALID_SNUM(snum) && lp_guest_only(snum))
901 #define CAN_SETDIR(snum)   (!lp_no_set_dir(snum))
902 #define CAN_PRINT(conn)    ((conn) && lp_print_ok((conn)->service))
903 #define MAP_HIDDEN(conn)   ((conn) && lp_map_hidden((conn)->service))
904 #define MAP_SYSTEM(conn)   ((conn) && lp_map_system((conn)->service))
905 #define MAP_ARCHIVE(conn)   ((conn) && lp_map_archive((conn)->service))
906 #define IS_HIDDEN_PATH(conn,path)  ((conn) && is_in_path((path),(conn)->hide_list))
907 #define IS_VETO_PATH(conn,path)  ((conn) && is_in_path((path),(conn)->veto_list))
908 #define IS_VETO_OPLOCK_PATH(conn,path)  ((conn) && is_in_path((path),(conn)->veto_oplock_list))
909
910 #define SMBENCRYPT()       (lp_encrypted_passwords())
911
912 /* the basic packet size, assuming no words or bytes */
913 #define smb_size 39
914
915 /* offsets into message for common items */
916 #define smb_com 8
917 #define smb_rcls 9
918 #define smb_reh 10
919 #define smb_err 11
920 #define smb_flg 13
921 #define smb_flg2 14
922 #define smb_reb 13
923 #define smb_tid 28
924 #define smb_pid 30
925 #define smb_uid 32
926 #define smb_mid 34
927 #define smb_wct 36
928 #define smb_vwv 37
929 #define smb_vwv0 37
930 #define smb_vwv1 39
931 #define smb_vwv2 41
932 #define smb_vwv3 43
933 #define smb_vwv4 45
934 #define smb_vwv5 47
935 #define smb_vwv6 49
936 #define smb_vwv7 51
937 #define smb_vwv8 53
938 #define smb_vwv9 55
939 #define smb_vwv10 57
940 #define smb_vwv11 59
941 #define smb_vwv12 61
942 #define smb_vwv13 63
943 #define smb_vwv14 65
944 #define smb_vwv15 67
945 #define smb_vwv16 69
946 #define smb_vwv17 71
947
948
949 /* the complete */
950 #define SMBmkdir      0x00   /* create directory */
951 #define SMBrmdir      0x01   /* delete directory */
952 #define SMBopen       0x02   /* open file */
953 #define SMBcreate     0x03   /* create file */
954 #define SMBclose      0x04   /* close file */
955 #define SMBflush      0x05   /* flush file */
956 #define SMBunlink     0x06   /* delete file */
957 #define SMBmv         0x07   /* rename file */
958 #define SMBgetatr     0x08   /* get file attributes */
959 #define SMBsetatr     0x09   /* set file attributes */
960 #define SMBread       0x0A   /* read from file */
961 #define SMBwrite      0x0B   /* write to file */
962 #define SMBlock       0x0C   /* lock byte range */
963 #define SMBunlock     0x0D   /* unlock byte range */
964 #define SMBctemp      0x0E   /* create temporary file */
965 #define SMBmknew      0x0F   /* make new file */
966 #define SMBchkpth     0x10   /* check directory path */
967 #define SMBexit       0x11   /* process exit */
968 #define SMBlseek      0x12   /* seek */
969 #define SMBtcon       0x70   /* tree connect */
970 #define SMBtconX      0x75   /* tree connect and X*/
971 #define SMBtdis       0x71   /* tree disconnect */
972 #define SMBnegprot    0x72   /* negotiate protocol */
973 #define SMBdskattr    0x80   /* get disk attributes */
974 #define SMBsearch     0x81   /* search directory */
975 #define SMBsplopen    0xC0   /* open print spool file */
976 #define SMBsplwr      0xC1   /* write to print spool file */
977 #define SMBsplclose   0xC2   /* close print spool file */
978 #define SMBsplretq    0xC3   /* return print queue */
979 #define SMBsends      0xD0   /* send single block message */
980 #define SMBsendb      0xD1   /* send broadcast message */
981 #define SMBfwdname    0xD2   /* forward user name */
982 #define SMBcancelf    0xD3   /* cancel forward */
983 #define SMBgetmac     0xD4   /* get machine name */
984 #define SMBsendstrt   0xD5   /* send start of multi-block message */
985 #define SMBsendend    0xD6   /* send end of multi-block message */
986 #define SMBsendtxt    0xD7   /* send text of multi-block message */
987
988 /* Core+ protocol */
989 #define SMBlockread       0x13   /* Lock a range and read */
990 #define SMBwriteunlock 0x14 /* Unlock a range then write */
991 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
992 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
993 #define SMBwritec     0x20  /* secondary write request */
994 #define SMBwriteclose 0x2c  /* write a file then close it */
995
996 /* dos extended protocol */
997 #define SMBreadBraw      0x1A   /* read block raw */
998 #define SMBreadBmpx      0x1B   /* read block multiplexed */
999 #define SMBreadBs        0x1C   /* read block (secondary response) */
1000 #define SMBwriteBraw     0x1D   /* write block raw */
1001 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
1002 #define SMBwriteBs       0x1F   /* write block (secondary request) */
1003 #define SMBwriteC        0x20   /* write complete response */
1004 #define SMBsetattrE      0x22   /* set file attributes expanded */
1005 #define SMBgetattrE      0x23   /* get file attributes expanded */
1006 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
1007 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
1008 #define SMBtranss        0x26   /* transaction (secondary request/response) */
1009 #define SMBioctl         0x27   /* IOCTL */
1010 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
1011 #define SMBcopy          0x29   /* copy */
1012 #define SMBmove          0x2A   /* move */
1013 #define SMBecho          0x2B   /* echo */
1014 #define SMBopenX         0x2D   /* open and X */
1015 #define SMBreadX         0x2E   /* read and X */
1016 #define SMBwriteX        0x2F   /* write and X */
1017 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
1018 #define SMBffirst        0x82   /* find first */
1019 #define SMBfunique       0x83   /* find unique */
1020 #define SMBfclose        0x84   /* find close */
1021 #define SMBinvalid       0xFE   /* invalid command */
1022
1023 /* Extended 2.0 protocol */
1024 #define SMBtrans2        0x32   /* TRANS2 protocol set */
1025 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
1026 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
1027 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
1028 #define SMBulogoffX      0x74   /* user logoff */
1029
1030 /* NT SMB extensions. */
1031 #define SMBnttrans       0xA0   /* NT transact */
1032 #define SMBnttranss      0xA1   /* NT transact secondary */
1033 #define SMBntcreateX     0xA2   /* NT create and X */
1034 #define SMBntcancel      0xA4   /* NT cancel */
1035
1036 /* These are the TRANS2 sub commands */
1037 #define TRANSACT2_OPEN                        0
1038 #define TRANSACT2_FINDFIRST                   1
1039 #define TRANSACT2_FINDNEXT                    2
1040 #define TRANSACT2_QFSINFO                     3
1041 #define TRANSACT2_SETFSINFO                   4
1042 #define TRANSACT2_QPATHINFO                   5
1043 #define TRANSACT2_SETPATHINFO                 6
1044 #define TRANSACT2_QFILEINFO                   7
1045 #define TRANSACT2_SETFILEINFO                 8
1046 #define TRANSACT2_FSCTL                       9
1047 #define TRANSACT2_IOCTL                     0xA
1048 #define TRANSACT2_FINDNOTIFYFIRST           0xB
1049 #define TRANSACT2_FINDNOTIFYNEXT            0xC
1050 #define TRANSACT2_MKDIR                     0xD
1051 #define TRANSACT2_SESSION_SETUP             0xE
1052 #define TRANSACT2_GET_DFS_REFERRAL         0x10
1053 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
1054
1055 /* These are the NT transact sub commands. */
1056 #define NT_TRANSACT_CREATE                1
1057 #define NT_TRANSACT_IOCTL                 2
1058 #define NT_TRANSACT_SET_SECURITY_DESC     3
1059 #define NT_TRANSACT_NOTIFY_CHANGE         4
1060 #define NT_TRANSACT_RENAME                5
1061 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
1062
1063 /* these are the trans2 sub fields for primary requests */
1064 #define smb_tpscnt smb_vwv0
1065 #define smb_tdscnt smb_vwv1
1066 #define smb_mprcnt smb_vwv2
1067 #define smb_mdrcnt smb_vwv3
1068 #define smb_msrcnt smb_vwv4
1069 #define smb_flags smb_vwv5
1070 #define smb_timeout smb_vwv6
1071 #define smb_pscnt smb_vwv9
1072 #define smb_psoff smb_vwv10
1073 #define smb_dscnt smb_vwv11
1074 #define smb_dsoff smb_vwv12
1075 #define smb_suwcnt smb_vwv13
1076 #define smb_setup smb_vwv14
1077 #define smb_setup0 smb_setup
1078 #define smb_setup1 (smb_setup+2)
1079 #define smb_setup2 (smb_setup+4)
1080
1081 /* these are for the secondary requests */
1082 #define smb_spscnt smb_vwv2
1083 #define smb_spsoff smb_vwv3
1084 #define smb_spsdisp smb_vwv4
1085 #define smb_sdscnt smb_vwv5
1086 #define smb_sdsoff smb_vwv6
1087 #define smb_sdsdisp smb_vwv7
1088 #define smb_sfid smb_vwv8
1089
1090 /* and these for responses */
1091 #define smb_tprcnt smb_vwv0
1092 #define smb_tdrcnt smb_vwv1
1093 #define smb_prcnt smb_vwv3
1094 #define smb_proff smb_vwv4
1095 #define smb_prdisp smb_vwv5
1096 #define smb_drcnt smb_vwv6
1097 #define smb_droff smb_vwv7
1098 #define smb_drdisp smb_vwv8
1099
1100 /* these are for the NT trans primary request. */
1101 #define smb_nt_MaxSetupCount smb_vwv0
1102 #define smb_nt_Flags (smb_vwv0 + 1)
1103 #define smb_nt_TotalParameterCount (smb_vwv0 + 3)
1104 #define smb_nt_TotalDataCount (smb_vwv0 + 7)
1105 #define smb_nt_MaxParameterCount (smb_vwv0 + 11)
1106 #define smb_nt_MaxDataCount (smb_vwv0 + 15)
1107 #define smb_nt_ParameterCount (smb_vwv0 + 19)
1108 #define smb_nt_ParameterOffset (smb_vwv0 + 23)
1109 #define smb_nt_DataCount (smb_vwv0 + 27)
1110 #define smb_nt_DataOffset (smb_vwv0 + 31)
1111 #define smb_nt_SetupCount (smb_vwv0 + 35)
1112 #define smb_nt_Function (smb_vwv0 + 36)
1113 #define smb_nt_SetupStart (smb_vwv0 + 38)
1114
1115 /* these are for the NT trans secondary request. */
1116 #define smb_nts_TotalParameterCount (smb_vwv0 + 3)
1117 #define smb_nts_TotalDataCount (smb_vwv0 + 7)
1118 #define smb_nts_ParameterCount (smb_vwv0 + 11)
1119 #define smb_nts_ParameterOffset (smb_vwv0 + 15)
1120 #define smb_nts_ParameterDisplacement (smb_vwv0 + 19)
1121 #define smb_nts_DataCount (smb_vwv0 + 23)
1122 #define smb_nts_DataOffset (smb_vwv0 + 27)
1123 #define smb_nts_DataDisplacement (smb_vwv0 + 31)
1124
1125 /* these are for the NT trans reply. */
1126 #define smb_ntr_TotalParameterCount (smb_vwv0 + 3)
1127 #define smb_ntr_TotalDataCount (smb_vwv0 + 7)
1128 #define smb_ntr_ParameterCount (smb_vwv0 + 11)
1129 #define smb_ntr_ParameterOffset (smb_vwv0 + 15)
1130 #define smb_ntr_ParameterDisplacement (smb_vwv0 + 19)
1131 #define smb_ntr_DataCount (smb_vwv0 + 23)
1132 #define smb_ntr_DataOffset (smb_vwv0 + 27)
1133 #define smb_ntr_DataDisplacement (smb_vwv0 + 31)
1134
1135 /* these are for the NT create_and_X */
1136 #define smb_ntcreate_NameLength (smb_vwv0 + 5)
1137 #define smb_ntcreate_Flags (smb_vwv0 + 7)
1138 #define smb_ntcreate_RootDirectoryFid (smb_wvw0 + 11)
1139 #define smb_ntcreate_DesiredAccess (smb_vwv0 + 15)
1140 #define smb_ntcreate_AllocationSize (smb_vwv0 + 19)
1141 #define smb_ntcreate_FileAttributes (smb_vwv0 + 27)
1142 #define smb_ntcreate_ShareAccess (smb_vwv0 + 31)
1143 #define smb_ntcreate_CreateDisposition (smb_vwv0 + 35)
1144 #define smb_ntcreate_CreateOptions (smb_vwv0 + 39)
1145 #define smb_ntcreate_ImpersonationLevel (smb_vwv0 + 43)
1146 #define smb_ntcreate_SecurityFlags (smb_vwv0 + 47)
1147
1148 /* these are the constants used in the above call. */
1149 /* DesiredAccess */
1150 /* File Specific access rights. */
1151 #define FILE_READ_DATA        0x001
1152 #define FILE_WRITE_DATA       0x002
1153 #define FILE_APPEND_DATA      0x004
1154 #define FILE_READ_EA          0x008
1155 #define FILE_WRITE_EA         0x010
1156 #define FILE_EXECUTE          0x020
1157 #define FILE_DELETE_CHILD     0x040
1158 #define FILE_READ_ATTRIBUTES  0x080
1159 #define FILE_WRITE_ATTRIBUTES 0x100
1160  
1161 /* Generic access masks & rights. */
1162 #define SPECIFIC_RIGHTS_MASK 0x00FFFFL
1163 #define STANDARD_RIGHTS_MASK 0xFF0000L
1164 #define DELETE_ACCESS        (1L<<16)
1165 #define READ_CONTROL_ACCESS  (1L<<17)
1166 #define WRITE_DAC_ACCESS     (1L<<18)
1167 #define WRITE_OWNER_ACCESS   (1L<<19)
1168 #define SYNCHRONIZE_ACCESS   (1L<<20)
1169 #define SYSTEM_SECURITY_ACCESS (1L<<24)
1170
1171 /* Flags field. */
1172 #define REQUEST_OPLOCK 2
1173 #define REQUEST_BATCH_OPLOCK 4
1174 #define OPEN_DIRECTORY 8
1175
1176 /* ShareAccess field. */
1177 #define FILE_SHARE_NONE 0 /* Cannot be used in bitmask. */
1178 #define FILE_SHARE_READ 1
1179 #define FILE_SHARE_WRITE 2
1180 #define FILE_SHARE_DELETE 4
1181
1182 /* FileAttributesField */
1183 #define FILE_ATTRIBUTE_READONLY aRONLY
1184 #define FILE_ATTRIBUTE_HIDDEN aHIDDEN
1185 #define FILE_ATTRIBUTE_SYSTEM aSYSTEM
1186 #define FILE_ATTRIBUTE_DIRECTORY aDIR
1187 #define FILE_ATTRIBUTE_ARCHIVE aARCH
1188 #define FILE_ATTRIBUTE_NORMAL 0x80L
1189 #define FILE_ATTRIBUTE_TEMPORARY 0x100L
1190 #define FILE_ATTRIBUTE_COMPRESSED 0x800L
1191 #define SAMBA_ATTRIBUTES_MASK 0x7F
1192
1193 /* Flags - combined with attributes. */
1194 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
1195 #define FILE_FLAG_NO_BUFFERING     0x20000000L
1196 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
1197 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
1198 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
1199 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L
1200 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
1201
1202 /* CreateDisposition field. */
1203 #define FILE_SUPERSEDE 0
1204 #define FILE_OPEN 1
1205 #define FILE_CREATE 2
1206 #define FILE_OPEN_IF 3
1207 #define FILE_OVERWRITE 4
1208 #define FILE_OVERWRITE_IF 5
1209
1210 /* Responses when opening a file. */
1211 #define FILE_WAS_OPENED 1
1212 #define FILE_WAS_CREATED 2
1213 #define FILE_WAS_OVERWRITTEN 3
1214
1215 /* File type flags */
1216 #define FILE_TYPE_DISK  0
1217 #define FILE_TYPE_BYTE_MODE_PIPE 1
1218 #define FILE_TYPE_MESSAGE_MODE_PIPE 2
1219 #define FILE_TYPE_PRINTER 3
1220 #define FILE_TYPE_COMM_DEVICE 4
1221 #define FILE_TYPE_UNKNOWN 0xFFFF
1222
1223 /* Flag for NT transact rename call. */
1224 #define RENAME_REPLACE_IF_EXISTS 1
1225
1226 /* Filesystem Attributes. */
1227 #define FILE_CASE_SENSITIVE_SEARCH 0x1
1228 #define FILE_CASE_PRESERVED_NAMES 0x2
1229 #define FILE_UNICODE_ON_DISK 0x4
1230 #define FILE_PERISITANT_ACLS 0x8
1231
1232 /* ChangeNotify flags. */
1233 #define FILE_NOTIFY_CHANGE_FILE_NAME   0x001
1234 #define FILE_NOTIFY_CHANGE_DIR_NAME    0x002
1235 #define FILE_NOTIFY_CHANGE_ATTRIBUTES  0x004
1236 #define FILE_NOTIFY_CHANGE_SIZE        0x008
1237 #define FILE_NOTIFY_CHANGE_LAST_WRITE  0x010
1238 #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x020
1239 #define FILE_NOTIFY_CHANGE_CREATION    0x040
1240 #define FILE_NOTIFY_CHANGE_EA          0x080
1241 #define FILE_NOTIFY_CHANGE_SECURITY    0x100
1242
1243 /* where to find the base of the SMB packet proper */
1244 #define smb_base(buf) (((char *)(buf))+4)
1245
1246
1247 #define SMB_SUCCESS 0  /* The request was successful. */
1248 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
1249 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
1250 #define ERRHRD 0x03  /* Error is an hardware error. */
1251 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
1252
1253 #ifdef HAVE_STDARG_H
1254 int slprintf(char *str, int n, char *format, ...)
1255 #ifdef __GNUC__
1256      __attribute__ ((format (printf, 3, 4)))
1257 #endif
1258 ;
1259 #else
1260 int slprintf();
1261 #endif
1262
1263 #ifdef WITH_DFS
1264 void dfs_unlogin(void);
1265 extern int dcelogin_atmost_once;
1266 #endif
1267
1268 #if AJT
1269 void ajt_panic(void);
1270 #endif
1271
1272 #ifdef NOSTRDUP
1273 char *strdup(char *s);
1274 #endif
1275
1276 #ifndef MIN
1277 #define MIN(a,b) ((a)<(b)?(a):(b))
1278 #endif
1279 #ifndef MAX
1280 #define MAX(a,b) ((a)>(b)?(a):(b))
1281 #endif
1282
1283 #ifndef ABS
1284 #define ABS(a) ((a)>0?(a):(-(a)))
1285 #endif
1286
1287 #ifndef SIGNAL_CAST
1288 #define SIGNAL_CAST (RETSIGTYPE (*)(int))
1289 #endif
1290
1291 #ifndef SELECT_CAST
1292 #define SELECT_CAST
1293 #endif
1294
1295
1296 /* Some POSIX definitions for those without */
1297  
1298 #ifndef S_IFDIR
1299 #define S_IFDIR         0x4000
1300 #endif
1301 #ifndef S_ISDIR
1302 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
1303 #endif
1304 #ifndef S_IRWXU
1305 #define S_IRWXU 00700           /* read, write, execute: owner */
1306 #endif
1307 #ifndef S_IRUSR
1308 #define S_IRUSR 00400           /* read permission: owner */
1309 #endif
1310 #ifndef S_IWUSR
1311 #define S_IWUSR 00200           /* write permission: owner */
1312 #endif
1313 #ifndef S_IXUSR
1314 #define S_IXUSR 00100           /* execute permission: owner */
1315 #endif
1316 #ifndef S_IRWXG
1317 #define S_IRWXG 00070           /* read, write, execute: group */
1318 #endif
1319 #ifndef S_IRGRP
1320 #define S_IRGRP 00040           /* read permission: group */
1321 #endif
1322 #ifndef S_IWGRP
1323 #define S_IWGRP 00020           /* write permission: group */
1324 #endif
1325 #ifndef S_IXGRP
1326 #define S_IXGRP 00010           /* execute permission: group */
1327 #endif
1328 #ifndef S_IRWXO
1329 #define S_IRWXO 00007           /* read, write, execute: other */
1330 #endif
1331 #ifndef S_IROTH
1332 #define S_IROTH 00004           /* read permission: other */
1333 #endif
1334 #ifndef S_IWOTH
1335 #define S_IWOTH 00002           /* write permission: other */
1336 #endif
1337 #ifndef S_IXOTH
1338 #define S_IXOTH 00001           /* execute permission: other */
1339 #endif
1340
1341
1342 /* these are used in NetServerEnum to choose what to receive */
1343 #define SV_TYPE_WORKSTATION         0x00000001
1344 #define SV_TYPE_SERVER              0x00000002
1345 #define SV_TYPE_SQLSERVER           0x00000004
1346 #define SV_TYPE_DOMAIN_CTRL         0x00000008
1347 #define SV_TYPE_DOMAIN_BAKCTRL      0x00000010
1348 #define SV_TYPE_TIME_SOURCE         0x00000020
1349 #define SV_TYPE_AFP                 0x00000040
1350 #define SV_TYPE_NOVELL              0x00000080
1351 #define SV_TYPE_DOMAIN_MEMBER       0x00000100
1352 #define SV_TYPE_PRINTQ_SERVER       0x00000200
1353 #define SV_TYPE_DIALIN_SERVER       0x00000400
1354 #define SV_TYPE_SERVER_UNIX         0x00000800
1355 #define SV_TYPE_NT                  0x00001000
1356 #define SV_TYPE_WFW                 0x00002000
1357 #define SV_TYPE_SERVER_MFPN         0x00004000
1358 #define SV_TYPE_SERVER_NT           0x00008000
1359 #define SV_TYPE_POTENTIAL_BROWSER   0x00010000
1360 #define SV_TYPE_BACKUP_BROWSER      0x00020000
1361 #define SV_TYPE_MASTER_BROWSER      0x00040000
1362 #define SV_TYPE_DOMAIN_MASTER       0x00080000
1363 #define SV_TYPE_SERVER_OSF          0x00100000
1364 #define SV_TYPE_SERVER_VMS          0x00200000
1365 #define SV_TYPE_WIN95_PLUS          0x00400000
1366 #define SV_TYPE_ALTERNATE_XPORT     0x20000000  
1367 #define SV_TYPE_LOCAL_LIST_ONLY     0x40000000  
1368 #define SV_TYPE_DOMAIN_ENUM         0x80000000
1369 #define SV_TYPE_ALL                 0xFFFFFFFF  
1370
1371 /* what server type are we currently  - JHT Says we ARE 4.20 */
1372 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1373 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1374 /* History: */
1375 /* Version 4.0 - never made public */
1376 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1377 /*              - Reappeared in 1.9.16p11 with fixed smbd services */
1378 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1379
1380 #define DEFAULT_MAJOR_VERSION 0x04
1381 #define DEFAULT_MINOR_VERSION 0x02
1382
1383 /* Browser Election Values */
1384 #define BROWSER_ELECTION_VERSION        0x010f
1385 #define BROWSER_CONSTANT        0xaa55
1386
1387 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
1388    
1389 #define FLAGS2_LONG_PATH_COMPONENTS   0x0001
1390 #define FLAGS2_EXTENDED_ATTRIBUTES    0x0002
1391 #define FLAGS2_DFS_PATHNAMES          0x1000
1392 #define FLAGS2_READ_PERMIT_NO_EXECUTE 0x2000
1393 #define FLAGS2_32_BIT_ERROR_CODES     0x4000 
1394 #define FLAGS2_UNICODE_STRINGS        0x8000
1395
1396 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1397
1398 #define CAP_RAW_MODE         0x0001
1399 #define CAP_MPX_MODE         0x0002
1400 #define CAP_UNICODE          0x0004
1401 #define CAP_LARGE_FILES      0x0008
1402 #define CAP_NT_SMBS          0x0010
1403 #define CAP_RPC_REMOTE_APIS  0x0020
1404 #define CAP_STATUS32         0x0040
1405 #define CAP_LEVEL_II_OPLOCKS 0x0080
1406 #define CAP_LOCK_AND_READ    0x0100
1407 #define CAP_NT_FIND          0x0200
1408 #define CAP_DFS              0x1000
1409 #define CAP_LARGE_READX      0x4000
1410
1411 /* protocol types. It assumes that higher protocols include lower protocols
1412    as subsets */
1413 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1414
1415 /* security levels */
1416 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN};
1417
1418 /* printing types */
1419 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1420                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ};
1421
1422 /* Remote architectures we know about. */
1423 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_SAMBA};
1424
1425 /* case handling */
1426 enum case_handling {CASE_LOWER,CASE_UPPER};
1427
1428 #ifdef WITH_SSL
1429 /* SSL version options */
1430 enum ssl_version_enum {SMB_SSL_V2,SMB_SSL_V3,SMB_SSL_V23,SMB_SSL_TLS1};
1431 #endif /* WITH_SSL */
1432
1433 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
1434    structures. We cannot define these as actual structures
1435    due to possible differences in structure packing
1436    on different machines/compilers. */
1437
1438 #define SMB_LPID_OFFSET(indx) (10 * (indx))
1439 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
1440 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
1441
1442 /* Macro to cache an error in a write_bmpx_struct */
1443 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
1444                             w->wr_discard = True, -1)
1445 /* Macro to test if an error has been cached for this fnum */
1446 #define HAS_CACHED_ERROR(fsp) ((fsp)->open && (fsp)->wbmpx_ptr && \
1447                                 (fsp)->wbmpx_ptr->wr_discard)
1448 /* Macro to turn the cached error into an error packet */
1449 #define CACHED_ERROR(fsp) cached_error_packet(inbuf,outbuf,fsp,__LINE__)
1450
1451 /* these are the datagram types */
1452 #define DGRAM_DIRECT_UNIQUE 0x10
1453
1454 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
1455
1456 /* this is how errors are generated */
1457 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
1458
1459 #define ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
1460
1461 /*
1462  * Global value meaing that the smb_uid field should be
1463  * ingored (in share level security and protocol level == CORE)
1464  */
1465
1466 #define UID_FIELD_INVALID 0
1467 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1468
1469 /* Defines needed for multi-codepage support. */
1470 #define MSDOS_LATIN_1_CODEPAGE 850
1471 #define KANJI_CODEPAGE 932
1472 #define HANGUL_CODEPAGE 949
1473 #define BIG5_CODEPAGE 950
1474 #define SIMPLIFIED_CHINESE_CODEPAGE 936
1475
1476 #ifdef KANJI
1477 /* 
1478  * Default client code page - Japanese 
1479  */
1480 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1481 #else /* KANJI */
1482 /* 
1483  * Default client code page - 850 - Western European 
1484  */
1485 #define DEFAULT_CLIENT_CODE_PAGE MSDOS_LATIN_1_CODEPAGE
1486 #endif /* KANJI */
1487
1488 /* 
1489  * Size of buffer to use when moving files across filesystems. 
1490  */
1491 #define COPYBUF_SIZE (8*1024)
1492
1493 /* 
1494  * Integers used to override error codes. 
1495  */
1496 extern int unix_ERR_class;
1497 extern int unix_ERR_code;
1498
1499 /*
1500  * Map the Core and Extended Oplock requesst bits down
1501  * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1502  */
1503
1504 /*
1505  * Core protocol.
1506  */
1507 #define CORE_OPLOCK_REQUEST(inbuf) ((CVAL(inbuf,smb_flg)&((1<<5)|(1<<6)))>>5)
1508
1509 /*
1510  * Extended protocol.
1511  */
1512 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1513
1514 /* Lock types. */
1515 #define LOCKING_ANDX_SHARED_LOCK 0x1
1516 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1517 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1518 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1519 #define LOCKING_ANDX_LARGE_FILES 0x10
1520
1521 /* Oplock levels */
1522 #define OPLOCKLEVEL_NONE 0
1523 #define OPLOCKLEVEL_II 1
1524
1525 /*
1526  * Bits we test with.
1527  */
1528 #define EXCLUSIVE_OPLOCK 1
1529 #define BATCH_OPLOCK 2
1530
1531 #define CORE_OPLOCK_GRANTED (1<<5)
1532 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1533
1534 /*
1535  * Loopback command offsets.
1536  */
1537
1538 #define UDP_CMD_LEN_OFFSET 0
1539 #define UDP_CMD_PORT_OFFSET 4
1540 #define UDP_CMD_HEADER_LEN 6
1541
1542 #define UDP_MESSAGE_CMD_OFFSET 0
1543
1544 /*
1545  * Oplock break command code to send over the udp socket.
1546  * 
1547  * Form of this is :
1548  *
1549  *  0     2       6        10       14      18       22
1550  *  +----+--------+--------+--------+-------+--------+
1551  *  | cmd| pid    | dev    | inode  | sec   |  usec  |
1552  *  +----+--------+--------+--------+-------+--------+
1553  */
1554
1555 #define OPLOCK_BREAK_CMD 0x1
1556 #define OPLOCK_BREAK_PID_OFFSET 2
1557 #define OPLOCK_BREAK_DEV_OFFSET 6
1558 #define OPLOCK_BREAK_INODE_OFFSET 10
1559 #define OPLOCK_BREAK_SEC_OFFSET 14
1560 #define OPLOCK_BREAK_USEC_OFFSET 18
1561 #define OPLOCK_BREAK_MSG_LEN 22
1562
1563
1564 #define CMD_REPLY 0x8000
1565
1566 /* useful macros */
1567 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
1568
1569 #endif /* _SMB_H */
1570
1571 #include "ntdomain.h"
1572
1573 /* _SMB_H */