Fixed compile warning in locking.c:traverse_fn()
[kai/samba.git] / source3 / include / smb.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-1998
6    Copyright (C) John H Terpstra 1996-1998
7    Copyright (C) Luke Kenneth Casson Leighton 1996-1998
8    Copyright (C) Paul Ashton 1998
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25 #ifndef _SMB_H
26 #define _SMB_H
27
28 #define BUFFER_SIZE (0xFFFF)
29 #define SAFETY_MARGIN 1024
30
31 #define NMB_PORT 137
32 #define DGRAM_PORT 138
33 #define SMB_PORT 139
34
35 #define False (0)
36 #define True (1)
37
38 #ifndef _BOOL
39 typedef int BOOL;
40 #define _BOOL       /* So we don't typedef BOOL again in vfs.h */
41 #endif
42
43 /* limiting size of ipc replies */
44 #define REALLOC(ptr,size) Realloc(ptr,MAX((size),4*1024))
45
46 #define SIZEOFWORD 2
47
48 #ifndef DEF_CREATE_MASK
49 #define DEF_CREATE_MASK (0755)
50 #endif
51
52 /* how long to wait for secondary SMB packets (milli-seconds) */
53 #define SMB_SECONDARY_WAIT (60*1000)
54
55 /* Debugging stuff */
56
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 ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
174 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
175 #define ERROR_NOTIFY_ENUM_DIR 1022 /* Buffer too small to return change notify. */
176 #define ERRunknownipc 2142
177
178
179 /* here's a special one from observing NT */
180 #define ERRnoipc 66 /* don't support ipc */
181
182 /* Error codes for the ERRSRV class */
183
184 #define ERRerror 1 /* Non specific error code */
185 #define ERRbadpw 2 /* Bad password */
186 #define ERRbadtype 3 /* reserved */
187 #define ERRaccess 4 /* No permissions to do the requested operation */
188 #define ERRinvnid 5 /* tid invalid */
189 #define ERRinvnetname 6 /* Invalid servername */
190 #define ERRinvdevice 7 /* Invalid device */
191 #define ERRqfull 49 /* Print queue full */
192 #define ERRqtoobig 50 /* Queued item too big */
193 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
194 #define ERRsmbcmd 64 /* Unrecognised command */
195 #define ERRsrverror 65 /* smb server internal error */
196 #define ERRfilespecs 67 /* fid and pathname invalid combination */
197 #define ERRbadlink 68 /* reserved */
198 #define ERRbadpermits 69 /* Access specified for a file is not valid */
199 #define ERRbadpid 70 /* reserved */
200 #define ERRsetattrmode 71 /* attribute mode invalid */
201 #define ERRpaused 81 /* Message server paused */
202 #define ERRmsgoff 82 /* Not receiving messages */
203 #define ERRnoroom 83 /* No room for message */
204 #define ERRrmuns 87 /* too many remote usernames */
205 #define ERRtimeout 88 /* operation timed out */
206 #define ERRnoresource  89 /* No resources currently available for request. */
207 #define ERRtoomanyuids 90 /* too many userids */
208 #define ERRbaduid 91 /* bad userid */
209 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
210 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
211 #define ERRcontMPX 252 /* resume MPX mode */
212 #define ERRbadPW /* reserved */
213 #define ERRnosupport 0xFFFF
214 #define ERRunknownsmb 22 /* from NT 3.5 response */
215
216
217 /* Error codes for the ERRHRD class */
218
219 #define ERRnowrite 19 /* read only media */
220 #define ERRbadunit 20 /* Unknown device */
221 #define ERRnotready 21 /* Drive not ready */
222 #define ERRbadcmd 22 /* Unknown command */
223 #define ERRdata 23 /* Data (CRC) error */
224 #define ERRbadreq 24 /* Bad request structure length */
225 #define ERRseek 25
226 #define ERRbadmedia 26
227 #define ERRbadsector 27
228 #define ERRnopaper 28
229 #define ERRwrite 29 /* write fault */
230 #define ERRread 30 /* read fault */
231 #define ERRgeneral 31 /* General hardware failure */
232 #define ERRwrongdisk 34
233 #define ERRFCBunavail 35
234 #define ERRsharebufexc 36 /* share buffer exceeded */
235 #define ERRdiskfull 39
236
237 #ifndef _PSTRING
238
239 #define PSTRING_LEN 1024
240 #define FSTRING_LEN 128
241
242 typedef char pstring[PSTRING_LEN];
243 typedef char fstring[FSTRING_LEN];
244
245 #define _PSTRING
246
247 #endif
248
249 /*
250  * SMB UCS2 (16-bit unicode) internal type.
251  */
252
253 typedef uint16 smb_ucs2_t;
254
255 /* ucs2 string types. */
256 typedef smb_ucs2_t wpstring[1024];
257 typedef smb_ucs2_t wfstring[128];
258
259 /* pipe string names */
260 #define PIPE_LANMAN   "\\PIPE\\LANMAN"
261 #define PIPE_SRVSVC   "\\PIPE\\srvsvc"
262 #define PIPE_SAMR     "\\PIPE\\samr"
263 #define PIPE_WINREG   "\\PIPE\\winreg"
264 #define PIPE_WKSSVC   "\\PIPE\\wkssvc"
265 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
266 #define PIPE_NTLSA    "\\PIPE\\ntlsa"
267 #define PIPE_NTSVCS   "\\PIPE\\ntsvcs"
268 #define PIPE_LSASS    "\\PIPE\\lsass"
269 #define PIPE_LSARPC   "\\PIPE\\lsarpc"
270
271
272 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
273 typedef struct nttime_info
274 {
275   uint32 low;
276   uint32 high;
277
278 } NTTIME;
279
280 /* Allowable account control bits */
281 #define ACB_DISABLED   0x0001  /* 1 = User account disabled */
282 #define ACB_HOMDIRREQ  0x0002  /* 1 = Home directory required */
283 #define ACB_PWNOTREQ   0x0004  /* 1 = User password not required */
284 #define ACB_TEMPDUP    0x0008  /* 1 = Temporary duplicate account */
285 #define ACB_NORMAL     0x0010  /* 1 = Normal user account */
286 #define ACB_MNS        0x0020  /* 1 = MNS logon user account */
287 #define ACB_DOMTRUST   0x0040  /* 1 = Interdomain trust account */
288 #define ACB_WSTRUST    0x0080  /* 1 = Workstation trust account */
289 #define ACB_SVRTRUST   0x0100  /* 1 = Server trust account */
290 #define ACB_PWNOEXP    0x0200  /* 1 = User password does not expire */
291 #define ACB_AUTOLOCK   0x0400  /* 1 = Account auto locked */
292  
293 #define MAX_HOURS_LEN 32
294
295 struct sam_passwd
296 {
297         time_t logon_time;            /* logon time */
298         time_t logoff_time;           /* logoff time */
299         time_t kickoff_time;          /* kickoff time */
300         time_t pass_last_set_time;    /* password last set time */
301         time_t pass_can_change_time;  /* password can change time */
302         time_t pass_must_change_time; /* password must change time */
303
304         char *smb_name;     /* username string */
305         char *full_name;    /* user's full name string */
306         char *home_dir;     /* home directory string */
307         char *dir_drive;    /* home directory drive string */
308         char *logon_script; /* logon script string */
309         char *profile_path; /* profile path string */
310         char *acct_desc  ;  /* user description string */
311         char *workstations; /* login from workstations string */
312         char *unknown_str ; /* don't know what this is, yet. */
313         char *munged_dial ; /* munged path name and dial-back tel number */
314
315         uid_t smb_userid;       /* this is actually the unix uid_t */
316         gid_t smb_grpid;        /* this is actually the unix gid_t */
317         uint32 user_rid;      /* Primary User ID */
318         uint32 group_rid;     /* Primary Group ID */
319
320         unsigned char *smb_passwd; /* Null if no password */
321         unsigned char *smb_nt_passwd; /* Null if no password */
322
323         uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
324         uint32 unknown_3; /* 0x00ff ffff */
325
326         uint16 logon_divs; /* 168 - number of hours in a week */
327         uint32 hours_len; /* normally 21 bytes */
328         uint8 hours[MAX_HOURS_LEN];
329
330         uint32 unknown_5; /* 0x0002 0000 */
331         uint32 unknown_6; /* 0x0000 04ec */
332 };
333
334 struct smb_passwd
335 {
336         uid_t smb_userid;     /* this is actually the unix uid_t */
337         char *smb_name;     /* username string */
338
339         unsigned char *smb_passwd; /* Null if no password */
340         unsigned char *smb_nt_passwd; /* Null if no password */
341
342         uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
343         time_t pass_last_set_time;    /* password last set time */
344 };
345
346
347 struct sam_disp_info
348 {
349         uint32 user_rid;      /* Primary User ID */
350         char *smb_name;     /* username string */
351         char *full_name;    /* user's full name string */
352 };
353
354 struct use_info
355 {
356         BOOL connected;
357         char *srv_name;
358         char *user_name;
359         char *domain;
360 };
361
362 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */
363
364 /* DOM_SID - security id */
365 typedef struct sid_info
366 {
367   uint8  sid_rev_num;             /* SID revision number */
368   uint8  num_auths;               /* number of sub-authorities */
369   uint8  id_auth[6];              /* Identifier Authority */
370   /*
371    * Note that the values in these uint32's are in *native* byteorder,
372    * not neccessarily little-endian...... JRA.
373    */
374   uint32 sub_auths[MAXSUBAUTHS];  /* pointer to sub-authorities. */
375
376 } DOM_SID;
377
378
379 /*** query a local group, get a list of these: shows who is in that group ***/
380
381 /* local group member info */
382 typedef struct local_grp_member_info
383 {
384         DOM_SID sid    ; /* matches with name */
385         uint8   sid_use; /* usr=1 grp=2 dom=3 alias=4 wkng=5 del=6 inv=7 unk=8 */
386         fstring name   ; /* matches with sid: must be of the form "DOMAIN\account" */
387
388 } LOCAL_GRP_MEMBER;
389
390 /* enumerate these to get list of local groups */
391
392 /* local group info */
393 typedef struct local_grp_info
394 {
395         fstring name;
396         fstring comment;
397
398 } LOCAL_GRP;
399
400 /*** enumerate these to get list of domain groups ***/
401
402 /* domain group member info */
403 typedef struct domain_grp_info
404 {
405         fstring name;
406         fstring comment;
407         uint32  rid; /* group rid */
408         uint8   attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
409
410 } DOMAIN_GRP;
411
412 /*** query a domain group, get a list of these: shows who is in that group ***/
413
414 /* domain group info */
415 typedef struct domain_grp_member_info
416 {
417         fstring name;
418         uint8   attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
419
420 } DOMAIN_GRP_MEMBER;
421
422 /* DOM_CHAL - challenge info */
423 typedef struct chal_info
424 {
425   uchar data[8]; /* credentials */
426 } DOM_CHAL;
427
428 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
429 typedef struct time_info
430 {
431   uint32 time;
432 } UTIME;
433
434 /* DOM_CREDs - timestamped client or server credentials */
435 typedef struct cred_info
436 {  
437   DOM_CHAL challenge; /* credentials */
438   UTIME timestamp;    /* credential time-stamp */
439 } DOM_CRED;
440
441 /* Structure used when SMBwritebmpx is active */
442 typedef struct
443 {
444   size_t wr_total_written; /* So we know when to discard this */
445   int32 wr_timeout;
446   int32 wr_errclass;
447   int32 wr_error; /* Cached errors */
448   BOOL  wr_mode; /* write through mode) */
449   BOOL  wr_discard; /* discard all further data */
450 } write_bmpx_struct;
451
452 typedef struct write_cache
453 {
454     SMB_OFF_T file_size;
455     SMB_OFF_T offset;
456     size_t alloc_size;
457     size_t data_size;
458     char *data;
459 } write_cache;
460
461 /*
462  * Structure used to indirect fd's from the files_struct.
463  * Needed as POSIX locking is based on file and process, not
464  * file descriptor and process.
465  */
466
467 typedef struct file_fd_struct
468 {
469         struct file_fd_struct *next, *prev;
470         uint16 ref_count;
471         uint16 uid_cache_count;
472         uid_t uid_users_cache[10];
473         SMB_DEV_T dev;
474         SMB_INO_T inode;
475         int fd;
476         int fd_readonly;
477         int fd_writeonly;
478         int real_open_flags;
479         BOOL delete_on_close;
480 } file_fd_struct;
481
482 typedef struct files_struct
483 {
484         struct files_struct *next, *prev;
485         int fnum;
486         struct connection_struct *conn;
487         file_fd_struct *fd_ptr;
488         SMB_OFF_T pos;
489         SMB_OFF_T size;
490         mode_t mode;
491         uint16 vuid;
492         write_bmpx_struct *wbmpx_ptr;
493         write_cache *wcp;
494         struct timeval open_time;
495         int share_mode;
496         time_t pending_modtime;
497         int oplock_type;
498         int sent_oplock_break;
499         BOOL open;
500         BOOL can_lock;
501         BOOL can_read;
502         BOOL can_write;
503         BOOL print_file;
504         BOOL modified;
505         BOOL is_directory;
506         BOOL directory_delete_on_close;
507         BOOL stat_open;
508         char *fsp_name;
509 } files_struct;
510
511 /*
512  * Structure used to keep directory state information around.
513  * Used in NT change-notify code.
514  */
515
516 typedef struct
517 {
518   time_t modify_time;
519   time_t status_time;
520 } dir_status_struct;
521
522 struct uid_cache {
523   int entries;
524   uid_t list[UID_CACHE_SIZE];
525 };
526
527 typedef struct
528 {
529   char *name;
530   BOOL is_wild;
531 } name_compare_entry;
532
533 /* Include VFS stuff */
534
535 #include "vfs.h"
536
537 typedef struct connection_struct
538 {
539         struct connection_struct *next, *prev;
540         unsigned cnum; /* an index passed over the wire */
541         int service;
542         BOOL force_user;
543         struct uid_cache uid_cache;
544         void *dirptr;
545         BOOL printer;
546         BOOL ipc;
547         BOOL read_only;
548         BOOL admin_user;
549         char *dirpath;
550         char *connectpath;
551         char *origpath;
552
553         struct vfs_ops vfs_ops;                   /* Filesystem operations */
554         struct vfs_connection_struct *vfs_conn;   /* VFS specific connection stuff */
555
556         char *user; /* name of user who *opened* this connection */
557         uid_t uid; /* uid of user who *opened* this connection */
558         gid_t gid; /* gid of user who *opened* this connection */
559         char client_address[18]; /* String version of client IP address. */
560
561         uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
562
563         /* following groups stuff added by ih */
564
565         /* This groups info is valid for the user that *opened* the connection */
566         int ngroups;
567         gid_t *groups;
568         
569         time_t lastused;
570         BOOL used;
571         int num_files_open;
572         name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
573         name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
574         name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */       
575
576 } connection_struct;
577
578 struct current_user
579 {
580         connection_struct *conn;
581         uint16 vuid;
582         uid_t uid;
583         gid_t gid;
584         int ngroups;
585         gid_t *groups;
586 };
587
588 /*
589  * Reasons for cache flush.
590  */
591
592 #define NUM_FLUSH_REASONS 8 /* Keep this in sync with the enum below. */
593 enum flush_reason_enum { SEEK_FLUSH, READ_FLUSH, WRITE_FLUSH, READRAW_FLUSH,
594                          OPLOCK_RELEASE_FLUSH, CLOSE_FLUSH, SYNC_FLUSH, SIZECHANGE_FLUSH };     
595
596 /* Defines for the sent_oplock_break field above. */
597 #define NO_BREAK_SENT 0
598 #define EXCLUSIVE_BREAK_SENT 1
599 #define LEVEL_II_BREAK_SENT 2
600
601 /* Domain controller authentication protocol info */
602 struct dcinfo
603 {
604   DOM_CHAL clnt_chal; /* Initial challenge received from client */
605   DOM_CHAL srv_chal;  /* Initial server challenge */
606   DOM_CRED clnt_cred; /* Last client credential */
607   DOM_CRED srv_cred;  /* Last server credential */
608
609   uchar  sess_key[8]; /* Session key */
610   uchar  md4pw[16];   /* md4(machine password) */
611 };
612
613 typedef struct
614 {
615   uid_t uid; /* uid of a validated user */
616   gid_t gid; /* gid of a validated user */
617
618   fstring requested_name; /* user name from the client */
619   fstring name; /* unix user name of a validated user */
620   fstring real_name;   /* to store real name from password file - simeon */
621   BOOL guest;
622
623   /* following groups stuff added by ih */
624   /* This groups info is needed for when we become_user() for this uid */
625   int n_groups;
626   gid_t *groups;
627
628   int n_sids;
629   int *sids;
630
631   /* per-user authentication information on NT RPCs */
632   struct dcinfo dc;
633
634 } user_struct;
635
636
637 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
638
639 typedef struct
640 {
641   int job;
642   int size;
643   int status;
644   int priority;
645   time_t time;
646   char user[30];
647   char file[100];
648 } print_queue_struct;
649
650 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
651
652 typedef struct
653 {
654   fstring message;
655   int status;
656 }  print_status_struct;
657
658 /* used for server information: client, nameserv and ipc */
659 struct server_info_struct
660 {
661   fstring name;
662   uint32 type;
663   fstring comment;
664   fstring domain; /* used ONLY in ipc.c NOT namework.c */
665   BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
666 };
667
668
669 /* used for network interfaces */
670 struct interface
671 {
672         struct interface *next, *prev;
673         struct in_addr ip;
674         struct in_addr bcast;
675         struct in_addr nmask;
676 };
677
678 /* struct returned by get_share_modes */
679 typedef struct
680 {
681   pid_t pid;
682   uint16 op_port;
683   uint16 op_type;
684   int share_mode;
685   struct timeval time;
686 } share_mode_entry;
687
688
689 #define SHAREMODE_FN_CAST() \
690         void (*)(share_mode_entry *, char*)
691
692 #define SHAREMODE_FN(fn) \
693         void (*fn)(share_mode_entry *, char*)
694
695 /* each implementation of the share mode code needs
696    to support the following operations */
697 struct share_ops {
698         BOOL (*stop_mgmt)(void);
699         BOOL (*lock_entry)(connection_struct *, SMB_DEV_T , SMB_INO_T , int *);
700         BOOL (*unlock_entry)(connection_struct *, SMB_DEV_T , SMB_INO_T , int );
701         int (*get_entries)(connection_struct *, int , SMB_DEV_T , SMB_INO_T , share_mode_entry **);
702         void (*del_entry)(int , files_struct *);
703         BOOL (*set_entry)(int, files_struct *, uint16 , uint16 );
704     BOOL (*mod_entry)(int, files_struct *, void (*)(share_mode_entry *, SMB_DEV_T, SMB_INO_T, void *), void *);
705         int (*forall)(void (*)(share_mode_entry *, char *));
706         void (*status)(FILE *);
707 };
708
709 /* each implementation of the shared memory code needs
710    to support the following operations */
711 struct shmem_ops {
712         BOOL (*shm_close)( void );
713         int (*shm_alloc)(int );
714         BOOL (*shm_free)(int );
715         int (*get_userdef_off)(void);
716         void *(*offset2addr)(int );
717         int (*addr2offset)(void *addr);
718         BOOL (*lock_hash_entry)(unsigned int);
719         BOOL (*unlock_hash_entry)( unsigned int );
720         BOOL (*get_usage)(int *,int *,int *);
721         unsigned (*hash_size)(void);
722 };
723
724 /*
725  * Each implementation of the password database code needs
726  * to support the following operations.
727  */
728
729 struct passdb_ops {
730   /*
731    * Password database ops.
732    */
733   void *(*startsmbpwent)(BOOL);
734   void (*endsmbpwent)(void *);
735   SMB_BIG_UINT (*getsmbpwpos)(void *);
736   BOOL (*setsmbpwpos)(void *, SMB_BIG_UINT);
737
738   /*
739    * smb password database query functions.
740    */
741   struct smb_passwd *(*getsmbpwnam)(char *);
742   struct smb_passwd *(*getsmbpwuid)(uid_t);
743   struct smb_passwd *(*getsmbpwrid)(uint32);
744   struct smb_passwd *(*getsmbpwent)(void *);
745
746   /*
747    * smb password database modification functions.
748    */
749   BOOL (*add_smbpwd_entry)(struct smb_passwd *);
750   BOOL (*mod_smbpwd_entry)(struct smb_passwd *, BOOL);
751
752   /*
753    * Functions that manupulate a struct sam_passwd.
754    */
755   struct sam_passwd *(*getsam21pwent)(void *);
756
757   /*
758    * sam password database query functions.
759    */
760   struct sam_passwd *(*getsam21pwnam)(char *);
761   struct sam_passwd *(*getsam21pwuid)(uid_t);
762   struct sam_passwd *(*getsam21pwrid)(uint32);
763
764   /*
765    * sam password database modification functions.
766    */
767   BOOL (*add_sam21pwd_entry)(struct sam_passwd *);
768   BOOL (*mod_sam21pwd_entry)(struct sam_passwd *, BOOL);
769
770   /*
771    * sam query display info functions.
772    */
773   struct sam_disp_info *(*getsamdispnam)(char *);
774   struct sam_disp_info *(*getsamdisprid)(uint32);
775   struct sam_disp_info *(*getsamdispent)(void *);
776
777 #if 0
778   /*
779    * password checking functions
780    */
781   struct smb_passwd *(*smb_password_chal  )(char *username, char lm_pass[24], char nt_pass[24], char chal[8]);
782   struct smb_passwd *(*smb_password_check )(char *username, char lm_hash[16], char nt_hash[16]);
783   struct passwd     *(*unix_password_check)(char *username, char *pass, int pass_len);
784 #endif
785 };
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
1136 /* these are the constants used in the above call. */
1137 /* DesiredAccess */
1138 /* File Specific access rights. */
1139 #define FILE_READ_DATA        0x001
1140 #define FILE_WRITE_DATA       0x002
1141 #define FILE_APPEND_DATA      0x004
1142 #define FILE_READ_EA          0x008
1143 #define FILE_WRITE_EA         0x010
1144 #define FILE_EXECUTE          0x020
1145 #define FILE_DELETE_CHILD     0x040
1146 #define FILE_READ_ATTRIBUTES  0x080
1147 #define FILE_WRITE_ATTRIBUTES 0x100
1148
1149 #define FILE_ALL_ATTRIBUTES   0x1FF
1150  
1151 /* Generic access masks & rights. */
1152 #define SPECIFIC_RIGHTS_MASK 0x00FFFFL
1153 #define STANDARD_RIGHTS_MASK 0xFF0000L
1154 #define DELETE_ACCESS        (1L<<16)
1155 #define READ_CONTROL_ACCESS  (1L<<17)
1156 #define WRITE_DAC_ACCESS     (1L<<18)
1157 #define WRITE_OWNER_ACCESS   (1L<<19)
1158 #define SYNCHRONIZE_ACCESS   (1L<<20)
1159
1160 #define SYSTEM_SECURITY_ACCESS (1L<<24)
1161 #define GENERIC_ALL_ACCESS   (1<<28)
1162 #define GENERIC_EXECUTE_ACCESS  (1<<29)
1163 #define GENERIC_WRITE_ACCESS   (1<<30)
1164 #define GENERIC_READ_ACCESS   (((unsigned)1)<<31)
1165
1166 #define FILE_ALL_STANDARD_ACCESS 0x1F0000
1167
1168 /* Mapping of access rights to UNIX perms. */
1169 #if 0 /* Don't use all here... JRA. */
1170 #define UNIX_ACCESS_RWX (FILE_ALL_ATTRIBUTES|FILE_ALL_STANDARD_ACCESS)
1171 #else
1172 #define UNIX_ACCESS_RWX (UNIX_ACCESS_R|UNIX_ACCESS_W|UNIX_ACCESS_X)
1173 #endif
1174
1175 #define UNIX_ACCESS_R (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
1176                         FILE_READ_ATTRIBUTES|FILE_READ_EA|FILE_READ_DATA)
1177 #define UNIX_ACCESS_W (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
1178                         FILE_WRITE_ATTRIBUTES|FILE_WRITE_EA|\
1179                         FILE_APPEND_DATA|FILE_WRITE_DATA)
1180 #define UNIX_ACCESS_X (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
1181                         FILE_EXECUTE|FILE_READ_ATTRIBUTES)
1182
1183 #define UNIX_ACCESS_NONE (WRITE_OWNER_ACCESS)
1184
1185 /* Flags field. */
1186 #define REQUEST_OPLOCK 2
1187 #define REQUEST_BATCH_OPLOCK 4
1188 #define OPEN_DIRECTORY 8
1189
1190 /* ShareAccess field. */
1191 #define FILE_SHARE_NONE 0 /* Cannot be used in bitmask. */
1192 #define FILE_SHARE_READ 1
1193 #define FILE_SHARE_WRITE 2
1194 #define FILE_SHARE_DELETE 4
1195
1196 /* FileAttributesField */
1197 #define FILE_ATTRIBUTE_READONLY aRONLY
1198 #define FILE_ATTRIBUTE_HIDDEN aHIDDEN
1199 #define FILE_ATTRIBUTE_SYSTEM aSYSTEM
1200 #define FILE_ATTRIBUTE_DIRECTORY aDIR
1201 #define FILE_ATTRIBUTE_ARCHIVE aARCH
1202 #define FILE_ATTRIBUTE_NORMAL 0x80L
1203 #define FILE_ATTRIBUTE_TEMPORARY 0x100L
1204 #define FILE_ATTRIBUTE_COMPRESSED 0x800L
1205 #define SAMBA_ATTRIBUTES_MASK 0x7F
1206
1207 /* Flags - combined with attributes. */
1208 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
1209 #define FILE_FLAG_NO_BUFFERING     0x20000000L
1210 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
1211 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
1212 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
1213 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L
1214 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
1215
1216 /* CreateDisposition field. */
1217 #define FILE_SUPERSEDE 0
1218 #define FILE_OPEN 1
1219 #define FILE_CREATE 2
1220 #define FILE_OPEN_IF 3
1221 #define FILE_OVERWRITE 4
1222 #define FILE_OVERWRITE_IF 5
1223
1224 /* CreateOptions field. */
1225 #define FILE_DIRECTORY_FILE       0x0001
1226 #define FILE_WRITE_THROUGH        0x0002
1227 #define FILE_SEQUENTIAL_ONLY      0x0004
1228 #define FILE_NON_DIRECTORY_FILE   0x0040
1229 #define FILE_NO_EA_KNOWLEDGE      0x0200
1230 #define FILE_EIGHT_DOT_THREE_ONLY 0x0400
1231 #define FILE_RANDOM_ACCESS        0x0800
1232 #define FILE_DELETE_ON_CLOSE      0x1000
1233
1234 /* Responses when opening a file. */
1235 #define FILE_WAS_OPENED 1
1236 #define FILE_WAS_CREATED 2
1237 #define FILE_WAS_OVERWRITTEN 3
1238
1239 /* File type flags */
1240 #define FILE_TYPE_DISK  0
1241 #define FILE_TYPE_BYTE_MODE_PIPE 1
1242 #define FILE_TYPE_MESSAGE_MODE_PIPE 2
1243 #define FILE_TYPE_PRINTER 3
1244 #define FILE_TYPE_COMM_DEVICE 4
1245 #define FILE_TYPE_UNKNOWN 0xFFFF
1246
1247 /* Flag for NT transact rename call. */
1248 #define RENAME_REPLACE_IF_EXISTS 1
1249
1250 /* Filesystem Attributes. */
1251 #define FILE_CASE_SENSITIVE_SEARCH 0x1
1252 #define FILE_CASE_PRESERVED_NAMES 0x2
1253 #define FILE_UNICODE_ON_DISK 0x4
1254 #define FILE_PERSISTENT_ACLS 0x8
1255
1256 /* ChangeNotify flags. */
1257 #define FILE_NOTIFY_CHANGE_FILE_NAME   0x001
1258 #define FILE_NOTIFY_CHANGE_DIR_NAME    0x002
1259 #define FILE_NOTIFY_CHANGE_ATTRIBUTES  0x004
1260 #define FILE_NOTIFY_CHANGE_SIZE        0x008
1261 #define FILE_NOTIFY_CHANGE_LAST_WRITE  0x010
1262 #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x020
1263 #define FILE_NOTIFY_CHANGE_CREATION    0x040
1264 #define FILE_NOTIFY_CHANGE_EA          0x080
1265 #define FILE_NOTIFY_CHANGE_SECURITY    0x100
1266
1267 /* where to find the base of the SMB packet proper */
1268 #define smb_base(buf) (((char *)(buf))+4)
1269
1270 /* we don't allow server strings to be longer than 48 characters as
1271    otherwise NT will not honour the announce packets */
1272 #define MAX_SERVER_STRING_LENGTH 48
1273
1274
1275 #define SMB_SUCCESS 0  /* The request was successful. */
1276 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
1277 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
1278 #define ERRHRD 0x03  /* Error is an hardware error. */
1279 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
1280
1281 #ifdef HAVE_STDARG_H
1282 int slprintf(char *str, int n, char *format, ...)
1283 #ifdef __GNUC__
1284      __attribute__ ((format (printf, 3, 4)))
1285 #endif
1286 ;
1287 #else
1288 int slprintf();
1289 #endif
1290
1291 #ifdef WITH_DFS
1292 void dfs_unlogin(void);
1293 extern int dcelogin_atmost_once;
1294 #endif
1295
1296 #ifdef NOSTRDUP
1297 char *strdup(char *s);
1298 #endif
1299
1300 #ifndef SIGNAL_CAST
1301 #define SIGNAL_CAST (RETSIGTYPE (*)(int))
1302 #endif
1303
1304 #ifndef SELECT_CAST
1305 #define SELECT_CAST
1306 #endif
1307
1308
1309 /* Some POSIX definitions for those without */
1310  
1311 #ifndef S_IFDIR
1312 #define S_IFDIR         0x4000
1313 #endif
1314 #ifndef S_ISDIR
1315 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
1316 #endif
1317 #ifndef S_IRWXU
1318 #define S_IRWXU 00700           /* read, write, execute: owner */
1319 #endif
1320 #ifndef S_IRUSR
1321 #define S_IRUSR 00400           /* read permission: owner */
1322 #endif
1323 #ifndef S_IWUSR
1324 #define S_IWUSR 00200           /* write permission: owner */
1325 #endif
1326 #ifndef S_IXUSR
1327 #define S_IXUSR 00100           /* execute permission: owner */
1328 #endif
1329 #ifndef S_IRWXG
1330 #define S_IRWXG 00070           /* read, write, execute: group */
1331 #endif
1332 #ifndef S_IRGRP
1333 #define S_IRGRP 00040           /* read permission: group */
1334 #endif
1335 #ifndef S_IWGRP
1336 #define S_IWGRP 00020           /* write permission: group */
1337 #endif
1338 #ifndef S_IXGRP
1339 #define S_IXGRP 00010           /* execute permission: group */
1340 #endif
1341 #ifndef S_IRWXO
1342 #define S_IRWXO 00007           /* read, write, execute: other */
1343 #endif
1344 #ifndef S_IROTH
1345 #define S_IROTH 00004           /* read permission: other */
1346 #endif
1347 #ifndef S_IWOTH
1348 #define S_IWOTH 00002           /* write permission: other */
1349 #endif
1350 #ifndef S_IXOTH
1351 #define S_IXOTH 00001           /* execute permission: other */
1352 #endif
1353
1354
1355 /* these are used in NetServerEnum to choose what to receive */
1356 #define SV_TYPE_WORKSTATION         0x00000001
1357 #define SV_TYPE_SERVER              0x00000002
1358 #define SV_TYPE_SQLSERVER           0x00000004
1359 #define SV_TYPE_DOMAIN_CTRL         0x00000008
1360 #define SV_TYPE_DOMAIN_BAKCTRL      0x00000010
1361 #define SV_TYPE_TIME_SOURCE         0x00000020
1362 #define SV_TYPE_AFP                 0x00000040
1363 #define SV_TYPE_NOVELL              0x00000080
1364 #define SV_TYPE_DOMAIN_MEMBER       0x00000100
1365 #define SV_TYPE_PRINTQ_SERVER       0x00000200
1366 #define SV_TYPE_DIALIN_SERVER       0x00000400
1367 #define SV_TYPE_SERVER_UNIX         0x00000800
1368 #define SV_TYPE_NT                  0x00001000
1369 #define SV_TYPE_WFW                 0x00002000
1370 #define SV_TYPE_SERVER_MFPN         0x00004000
1371 #define SV_TYPE_SERVER_NT           0x00008000
1372 #define SV_TYPE_POTENTIAL_BROWSER   0x00010000
1373 #define SV_TYPE_BACKUP_BROWSER      0x00020000
1374 #define SV_TYPE_MASTER_BROWSER      0x00040000
1375 #define SV_TYPE_DOMAIN_MASTER       0x00080000
1376 #define SV_TYPE_SERVER_OSF          0x00100000
1377 #define SV_TYPE_SERVER_VMS          0x00200000
1378 #define SV_TYPE_WIN95_PLUS          0x00400000
1379 #define SV_TYPE_ALTERNATE_XPORT     0x20000000  
1380 #define SV_TYPE_LOCAL_LIST_ONLY     0x40000000  
1381 #define SV_TYPE_DOMAIN_ENUM         0x80000000
1382 #define SV_TYPE_ALL                 0xFFFFFFFF  
1383
1384 /* what server type are we currently  - JHT Says we ARE 4.20 */
1385 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1386 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1387 /* History: */
1388 /* Version 4.0 - never made public */
1389 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1390 /*              - Reappeared in 1.9.16p11 with fixed smbd services */
1391 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1392
1393 #define DEFAULT_MAJOR_VERSION 0x04
1394 #define DEFAULT_MINOR_VERSION 0x02
1395
1396 /* Browser Election Values */
1397 #define BROWSER_ELECTION_VERSION        0x010f
1398 #define BROWSER_CONSTANT        0xaa55
1399
1400 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
1401    
1402 #define FLAGS2_LONG_PATH_COMPONENTS   0x0001
1403 #define FLAGS2_EXTENDED_ATTRIBUTES    0x0002
1404 #define FLAGS2_DFS_PATHNAMES          0x1000
1405 #define FLAGS2_READ_PERMIT_NO_EXECUTE 0x2000
1406 #define FLAGS2_32_BIT_ERROR_CODES     0x4000 
1407 #define FLAGS2_UNICODE_STRINGS        0x8000
1408
1409 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1410
1411 #define CAP_RAW_MODE         0x0001
1412 #define CAP_MPX_MODE         0x0002
1413 #define CAP_UNICODE          0x0004
1414 #define CAP_LARGE_FILES      0x0008
1415 #define CAP_NT_SMBS          0x0010
1416 #define CAP_RPC_REMOTE_APIS  0x0020
1417 #define CAP_STATUS32         0x0040
1418 #define CAP_LEVEL_II_OPLOCKS 0x0080
1419 #define CAP_LOCK_AND_READ    0x0100
1420 #define CAP_NT_FIND          0x0200
1421 #define CAP_DFS              0x1000
1422 #define CAP_LARGE_READX      0x4000
1423
1424 /* protocol types. It assumes that higher protocols include lower protocols
1425    as subsets */
1426 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1427
1428 /* security levels */
1429 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN};
1430
1431 /* printing types */
1432 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1433                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ,PRINT_CUPS};
1434
1435 /* Remote architectures we know about. */
1436 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_WIN2K, RA_SAMBA};
1437
1438 /* case handling */
1439 enum case_handling {CASE_LOWER,CASE_UPPER};
1440
1441 #ifdef WITH_SSL
1442 /* SSL version options */
1443 enum ssl_version_enum {SMB_SSL_V2,SMB_SSL_V3,SMB_SSL_V23,SMB_SSL_TLS1};
1444 #endif /* WITH_SSL */
1445
1446 /*
1447  * Global value meaing that the smb_uid field should be
1448  * ingored (in share level security and protocol level == CORE)
1449  */
1450
1451 #define UID_FIELD_INVALID 0
1452 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1453
1454 /* Defines needed for multi-codepage support. */
1455 #define MSDOS_LATIN_1_CODEPAGE 850
1456 #define KANJI_CODEPAGE 932
1457 #define HANGUL_CODEPAGE 949
1458 #define BIG5_CODEPAGE 950
1459 #define SIMPLIFIED_CHINESE_CODEPAGE 936
1460
1461 #ifdef KANJI
1462 /* 
1463  * Default client code page - Japanese 
1464  */
1465 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1466 #else /* KANJI */
1467 /* 
1468  * Default client code page - 850 - Western European 
1469  */
1470 #define DEFAULT_CLIENT_CODE_PAGE MSDOS_LATIN_1_CODEPAGE
1471 #endif /* KANJI */
1472
1473 /* Global val set if multibyte codepage. */
1474 extern int global_is_multibyte_codepage;
1475
1476 #define get_character_len(x) (global_is_multibyte_codepage ? skip_multibyte_char((x)) : 0)
1477
1478 /* 
1479  * Size of buffer to use when moving files across filesystems. 
1480  */
1481 #define COPYBUF_SIZE (8*1024)
1482
1483 /* 
1484  * Integers used to override error codes. 
1485  */
1486 extern int unix_ERR_class;
1487 extern int unix_ERR_code;
1488
1489 /*
1490  * Used in chaining code.
1491  */
1492 extern int chain_size;
1493
1494 /*
1495  * Map the Core and Extended Oplock requesst bits down
1496  * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1497  */
1498
1499 /*
1500  * Core protocol.
1501  */
1502 #define CORE_OPLOCK_REQUEST(inbuf) \
1503     ((CVAL(inbuf,smb_flg)&(FLAG_REQUEST_OPLOCK|FLAG_REQUEST_BATCH_OPLOCK))>>5)
1504
1505 /*
1506  * Extended protocol.
1507  */
1508 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1509
1510 /* Lock types. */
1511 #define LOCKING_ANDX_SHARED_LOCK 0x1
1512 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1513 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1514 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1515 #define LOCKING_ANDX_LARGE_FILES 0x10
1516
1517 /* Oplock levels */
1518 #define OPLOCKLEVEL_NONE 0
1519 #define OPLOCKLEVEL_II 1
1520
1521 /*
1522  * Bits we test with.
1523  */
1524
1525 #define NO_OPLOCK 0
1526 #define EXCLUSIVE_OPLOCK 1
1527 #define BATCH_OPLOCK 2
1528 #define LEVEL_II_OPLOCK 4
1529
1530 #define EXCLUSIVE_OPLOCK_TYPE(lck) ((lck) & (EXCLUSIVE_OPLOCK|BATCH_OPLOCK))
1531 #define BATCH_OPLOCK_TYPE(lck) ((lck) & BATCH_OPLOCK)
1532 #define LEVEL_II_OPLOCK_TYPE(lck) ((lck) & LEVEL_II_OPLOCK)
1533
1534 #define CORE_OPLOCK_GRANTED (1<<5)
1535 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1536
1537 /*
1538  * Return values for oplock types.
1539  */
1540
1541 #define NO_OPLOCK_RETURN 0
1542 #define EXCLUSIVE_OPLOCK_RETURN 1
1543 #define BATCH_OPLOCK_RETURN 2
1544 #define LEVEL_II_OPLOCK_RETURN 3
1545
1546 /*
1547  * Loopback command offsets.
1548  */
1549
1550 #define OPBRK_CMD_LEN_OFFSET 0
1551 #define OPBRK_CMD_PORT_OFFSET 4
1552 #define OPBRK_CMD_HEADER_LEN 6
1553
1554 #define OPBRK_MESSAGE_CMD_OFFSET 0
1555
1556 /*
1557  * Oplock break command code to send over the udp socket.
1558  * The same message is sent for both exlusive and level II breaks. 
1559  * 
1560  * The form of this is :
1561  *
1562  *  0     2       6        10       14    14+devsize 14+devsize+inodesize
1563  *  +----+--------+--------+--------+-------+--------+
1564  *  | cmd| pid    | sec    | usec   | dev   |  inode |
1565  *  +----+--------+--------+--------+-------+--------+
1566  */
1567
1568 #define OPLOCK_BREAK_CMD 0x1
1569 #define OPLOCK_BREAK_PID_OFFSET 2
1570 #define OPLOCK_BREAK_SEC_OFFSET (OPLOCK_BREAK_PID_OFFSET + sizeof(pid_t))
1571 #define OPLOCK_BREAK_USEC_OFFSET (OPLOCK_BREAK_SEC_OFFSET + sizeof(time_t))
1572 #define OPLOCK_BREAK_DEV_OFFSET (OPLOCK_BREAK_USEC_OFFSET + sizeof(long))
1573 #define OPLOCK_BREAK_INODE_OFFSET (OPLOCK_BREAK_DEV_OFFSET + sizeof(SMB_DEV_T))
1574 #define OPLOCK_BREAK_MSG_LEN (OPLOCK_BREAK_INODE_OFFSET + sizeof(SMB_INO_T))
1575
1576 #define LEVEL_II_OPLOCK_BREAK_CMD 0x3
1577
1578 /*
1579  * Capabilities abstracted for different systems.
1580  */
1581
1582 #define KERNEL_OPLOCK_CAPABILITY 0x1
1583
1584 #if defined(HAVE_KERNEL_OPLOCKS)
1585 /*
1586  * Oplock break command code sent via the kernel interface.
1587  *
1588  * Form of this is :
1589  *
1590  *  0     2       2+devsize 2+devsize+inodesize
1591  *  +----+--------+--------+
1592  *  | cmd| dev    |  inode |
1593  *  +----+--------+--------+
1594  */
1595
1596 #define KERNEL_OPLOCK_BREAK_CMD 0x2
1597 #define KERNEL_OPLOCK_BREAK_DEV_OFFSET 2
1598 #define KERNEL_OPLOCK_BREAK_INODE_OFFSET (KERNEL_OPLOCK_BREAK_DEV_OFFSET + sizeof(SMB_DEV_T))
1599 #define KERNEL_OPLOCK_BREAK_MSG_LEN (KERNEL_OPLOCK_BREAK_INODE_OFFSET + sizeof(SMB_INO_T))
1600
1601 #endif /* HAVE_KERNEL_OPLOCKS */
1602
1603 #define CMD_REPLY 0x8000
1604
1605 #include "smb_macros.h"
1606
1607 #include "ntdomain.h"
1608
1609 /* A netbios name structure. */
1610 struct nmb_name {
1611   char         name[17];
1612   char         scope[64];
1613   unsigned int name_type;
1614 };
1615
1616 #define AGENT_CMD_CON       0
1617 #define AGENT_CMD_CON_ANON  2
1618 #define AGENT_CMD_CON_REUSE 1
1619
1620 struct pwd_info
1621 {
1622         BOOL null_pwd;
1623         BOOL cleartext;
1624         BOOL crypted;
1625
1626         fstring password;
1627
1628         uchar smb_lm_pwd[16];
1629         uchar smb_nt_pwd[16];
1630
1631         uchar smb_lm_owf[24];
1632         uchar smb_nt_owf[128];
1633         size_t nt_owf_len;
1634
1635         uchar lm_cli_chal[8];
1636         uchar nt_cli_chal[128];
1637         size_t nt_cli_chal_len;
1638
1639         uchar sess_key[16];
1640 };
1641
1642 #include "rpc_creds.h"
1643
1644 struct ntdom_info
1645 {
1646         unsigned char sess_key[16];        /* Current session key. */
1647         unsigned char ntlmssp_hash[258];   /* ntlmssp data. */
1648         uint32 ntlmssp_cli_flgs;           /* ntlmssp client flags */
1649         uint32 ntlmssp_srv_flgs;           /* ntlmssp server flags */
1650         uint32 ntlmssp_seq_num;            /* ntlmssp sequence number */
1651         DOM_CRED clnt_cred;                /* Client credential. */
1652
1653         int max_recv_frag;
1654         int max_xmit_frag;
1655 };
1656
1657 struct msrpc_state
1658 {
1659         fstring pipe_name;
1660         struct user_creds usr;
1661         struct ntdom_info nt;
1662
1663         int fd;
1664         BOOL redirect;
1665         BOOL initialised;
1666         char *inbuf;
1667         char *outbuf;
1668
1669         uint32 pid;
1670 };
1671 #include "client.h"
1672 #include "rpcclient.h"
1673
1674 /*
1675  * Size of new password account encoding string. DO NOT CHANGE.
1676  */
1677
1678 #define NEW_PW_FORMAT_SPACE_PADDED_LEN 14
1679
1680 /*
1681    Do you want session setups at user level security with a invalid
1682    password to be rejected or allowed in as guest? WinNT rejects them
1683    but it can be a pain as it means "net view" needs to use a password
1684
1685    You have 3 choices in the setting of map_to_guest:
1686
1687    "NEVER_MAP_TO_GUEST" means session setups with an invalid password
1688    are rejected. This is the default.
1689
1690    "MAP_TO_GUEST_ON_BAD_USER" means session setups with an invalid password
1691    are rejected, unless the username does not exist, in which case it
1692    is treated as a guest login
1693
1694    "MAP_TO_GUEST_ON_BAD_PASSWORD" means session setups with an invalid password
1695    are treated as a guest login
1696
1697    Note that map_to_guest only has an effect in user or server
1698    level security.
1699 */
1700
1701 #define NEVER_MAP_TO_GUEST 0
1702 #define MAP_TO_GUEST_ON_BAD_USER 1
1703 #define MAP_TO_GUEST_ON_BAD_PASSWORD 2
1704
1705 #endif /* _SMB_H */