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