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