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