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