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