genrand.c: Improved generation of random values, more secure.
[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 #ifndef _SMB_H
25 #define _SMB_H
26
27 #define BUFFER_SIZE (0xFFFF)
28 #define SAFETY_MARGIN 1024
29
30 #define NMB_PORT 137
31 #define DGRAM_PORT 138
32 #define SMB_PORT 139
33
34 #define False (0)
35 #define True (1)
36 #define BOOLSTR(b) ((b) ? "Yes" : "No")
37 #define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0)
38 #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
39
40 #define IS_BITS_SET_ALL(var,bit) (((var)&(bit))==(bit))
41 #define IS_BITS_SET_SOME(var,bit) (((var)&(bit))!=0)
42 #define IS_BITS_CLR_ALL(var,bit) (((var)&(~(bit)))==0)
43
44 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
45
46 typedef int BOOL;
47
48 /* limiting size of ipc replies */
49 #define REALLOC(ptr,size) Realloc(ptr,MAX((size),4*1024))
50
51 /*
52    Samba needs type definitions for int16, int32, uint16 and uint32.
53    
54    Normally these are signed and unsigned 16 and 32 bit integers, but
55    they actually only need to be at least 16 and 32 bits
56    respectively. Thus if your word size is 8 bytes just defining them
57    as signed and unsigned int will work.
58 */
59
60 /* afs/stds.h defines int16 and int32 */
61 #ifndef AFS_AUTH
62 typedef short int16;
63 typedef int int32;
64 #endif
65
66 #ifndef uint8
67 typedef unsigned char uint8;
68 #endif
69
70 #ifndef uint16
71 typedef unsigned short uint16;
72 #endif
73
74 #ifndef uint32
75 typedef unsigned int uint32;
76 #endif
77
78 #ifndef uchar
79 #define uchar unsigned char
80 #endif
81 #ifndef int16
82 #define int16 short
83 #endif
84 #ifndef uint16
85 #define uint16 unsigned short
86 #endif
87 #ifndef uint32
88 #define uint32 unsigned int
89 #endif
90
91 #define SIZEOFWORD 2
92
93 #ifndef DEF_CREATE_MASK
94 #define DEF_CREATE_MASK (0755)
95 #endif
96
97 /* how long to wait for secondary SMB packets (milli-seconds) */
98 #define SMB_SECONDARY_WAIT (60*1000)
99
100 /* debugging code */
101 #ifndef SYSLOG
102 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))?(Debug1 body):0)
103 #else
104 extern int syslog_level;
105
106 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))? (syslog_level = (level), Debug1 body):0)
107 #endif
108
109 /* this defines the error codes that receive_smb can put in smb_read_error */
110 #define READ_TIMEOUT 1
111 #define READ_EOF 2
112 #define READ_ERROR 3
113
114
115 #define DIR_STRUCT_SIZE 43
116
117 /* these define all the command types recognised by the server - there
118 are lots of gaps so probably there are some rare commands that are not
119 implemented */
120
121 #define pSETDIR '\377'
122
123 /* these define the attribute byte as seen by DOS */
124 #define aRONLY (1L<<0)
125 #define aHIDDEN (1L<<1)
126 #define aSYSTEM (1L<<2)
127 #define aVOLID (1L<<3)
128 #define aDIR (1L<<4)
129 #define aARCH (1L<<5)
130
131 /* deny modes */
132 #define DENY_DOS 0
133 #define DENY_ALL 1
134 #define DENY_WRITE 2
135 #define DENY_READ 3
136 #define DENY_NONE 4
137 #define DENY_FCB 7
138
139 /* share types */
140 #define STYPE_DISKTREE  0       /* Disk drive */
141 #define STYPE_PRINTQ    1       /* Spooler queue */
142 #define STYPE_DEVICE    2       /* Serial device */
143 #define STYPE_IPC       3       /* Interprocess communication (IPC) */
144 #define STYPE_HIDDEN    0x80000000 /* share is a hidden one (ends with $) */
145
146 /* SMB X/Open error codes for the ERRdos error class */
147 #define ERRbadfunc 1 /* Invalid function (or system call) */
148 #define ERRbadfile 2 /* File not found (pathname error) */
149 #define ERRbadpath 3 /* Directory not found */
150 #define ERRnofids 4 /* Too many open files */
151 #define ERRnoaccess 5 /* Access denied */
152 #define ERRbadfid 6 /* Invalid fid */
153 #define ERRnomem 8 /* Out of memory */
154 #define ERRbadmem 9 /* Invalid memory block address */
155 #define ERRbadenv 10 /* Invalid environment */
156 #define ERRbadaccess 12 /* Invalid open mode */
157 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
158 #define ERRres 14 /* reserved */
159 #define ERRbaddrive 15 /* Invalid drive */
160 #define ERRremcd 16 /* Attempt to delete current directory */
161 #define ERRdiffdevice 17 /* rename/move across different filesystems */
162 #define ERRnofiles 18 /* no more files found in file search */
163 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
164 #define ERRlock 33 /* Lock request conflicts with existing lock */
165 #define ERRfilexists 80 /* File in operation already exists */
166 #define ERRcannotopen 110 /* Cannot open the file specified */
167 #define ERRunknownlevel 124
168 #define ERRbadpipe 230 /* Named pipe invalid */
169 #define ERRpipebusy 231 /* All instances of pipe are busy */
170 #define ERRpipeclosing 232 /* named pipe close in progress */
171 #define ERRnotconnected 233 /* No process on other end of named pipe */
172 #define ERRmoredata 234 /* More data to be returned */
173 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
174 #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
175 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
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
238 typedef char pstring[1024];
239 typedef char fstring[128];
240 typedef fstring string;
241
242
243 /* pipe strings */
244 #define PIPE_LANMAN   "\\PIPE\\LANMAN"
245 #define PIPE_SRVSVC   "\\PIPE\\srvsvc"
246 #define PIPE_SAMR     "\\PIPE\\samr"
247 #define PIPE_WKSSVC   "\\PIPE\\wkssvc"
248 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
249 #define PIPE_NTLSA    "\\PIPE\\ntlsa"
250 #define PIPE_NTSVCS   "\\PIPE\\ntsvcs"
251 #define PIPE_LSASS    "\\PIPE\\lsass"
252 #define PIPE_LSARPC   "\\PIPE\\lsarpc"
253
254 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
255 typedef struct time_info
256 {
257   uint32 time;
258
259 } UTIME;
260
261 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
262 typedef struct nttime_info
263 {
264   uint32 low;
265   uint32 high;
266
267 } NTTIME;
268
269 /* Allowable account control bits */
270 #define ACB_DISABLED   0x0001  /* 1 = User account disabled */
271 #define ACB_HOMDIRREQ  0x0002  /* 1 = Home directory required */
272 #define ACB_PWNOTREQ   0x0004  /* 1 = User password not required */
273 #define ACB_TEMPDUP    0x0008  /* 1 = Temporary duplicate account */
274 #define ACB_NORMAL     0x0010  /* 1 = Normal user account */
275 #define ACB_MNS        0x0020  /* 1 = MNS logon user account */
276 #define ACB_DOMTRUST   0x0040  /* 1 = Interdomain trust account */
277 #define ACB_WSTRUST    0x0080  /* 1 = Workstation trust account */
278 #define ACB_SVRTRUST   0x0100  /* 1 = Server trust account */
279 #define ACB_PWNOEXP    0x0200  /* 1 = User password does not expire */
280 #define ACB_AUTOLOCK   0x0400  /* 1 = Account auto locked */
281  
282 struct smb_passwd
283 {
284         int smb_userid;
285         char *smb_name;
286         unsigned char *smb_passwd; /* Null if no password */
287         unsigned char *smb_nt_passwd; /* Null if no password */
288         /* Other fields / flags may be added later */
289         uint16 acct_ctrl;
290         time_t last_change_time;
291 };
292
293 struct cli_state {
294         int fd;
295         int cnum;
296         int pid;
297         int mid;
298         int uid;
299         int protocol;
300         int sec_mode;
301         int error;
302         int privilages;
303         fstring eff_name;
304         fstring desthost;
305         char cryptkey[8];
306         uint32 sesskey;
307         int serverzone;
308         uint32 servertime;
309         int readbraw_supported;
310         int writebraw_supported;
311         int timeout;
312         int max_xmit;
313         char *outbuf;
314         char *inbuf;
315         int bufsize;
316         int initialised;
317 };
318
319
320 struct current_user
321 {
322   int cnum, vuid;
323   int uid, gid;
324   int ngroups;
325   gid_t *groups;
326   int *igroups;
327   int *attrs;
328 };
329
330 typedef struct
331 {
332   int size;
333   int mode;
334   int uid;
335   int gid;
336   /* these times are normally kept in GMT */
337   time_t mtime;
338   time_t atime;
339   time_t ctime;
340   pstring name;
341
342 } file_info;
343
344
345 /* Structure used when SMBwritebmpx is active */
346 typedef struct
347         {
348         int   wr_total_written; /* So we know when to discard this */
349         int32 wr_timeout;
350         int32 wr_errclass;
351         int32 wr_error; /* Cached errors */
352         BOOL  wr_mode; /* write through mode) */
353         BOOL  wr_discard; /* discard all further data */
354         } write_bmpx_struct;
355
356 /*
357  * Structure used to indirect fd's from the files_struct.
358  * Needed as POSIX locking is based on file and process, not
359  * file descriptor and process.
360  */
361
362 typedef struct
363 {
364   uint16 ref_count;
365   uint32 dev;
366   uint32 inode;
367   int fd;
368   int fd_readonly;
369   int fd_writeonly;
370   int real_open_flags;
371 } file_fd_struct;
372
373 typedef struct
374 {
375   int cnum;
376   file_fd_struct *fd_ptr;
377   int pos;
378   uint32 size;
379   int mode;
380   int vuid;
381   char *mmap_ptr;
382   uint32 mmap_size;
383   write_bmpx_struct *wbmpx_ptr;
384   struct timeval open_time;
385   BOOL open;
386   BOOL can_lock;
387   BOOL can_read;
388   BOOL can_write;
389   BOOL share_mode;
390   BOOL print_file;
391   BOOL modified;
392   BOOL granted_oplock;
393   BOOL sent_oplock_break;
394   BOOL reserved;
395   char *name;
396 } files_struct;
397
398
399 struct uid_cache {
400   int entries;
401   int list[UID_CACHE_SIZE];
402 };
403
404 typedef struct
405 {
406   char *name;
407   BOOL is_wild;
408 } name_compare_entry;
409
410 typedef struct
411 {
412   int service;
413   BOOL force_user;
414   struct uid_cache uid_cache;
415   void *dirptr;
416   BOOL open;
417   BOOL printer;
418   BOOL ipc;
419   BOOL read_only;
420   BOOL admin_user;
421   char *dirpath;
422   char *connectpath;
423   char *origpath;
424   char *user; /* name of user who *opened* this connection */
425   int uid; /* uid of user who *opened* this connection */
426   int gid; /* gid of user who *opened* this connection */
427
428   uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
429
430   /* following groups stuff added by ih */
431
432   /* This groups info is valid for the user that *opened* the connection */
433   int ngroups;
434   gid_t *groups;
435   int *igroups; /* an integer version - some OSes are broken :-( */
436   int *attrs;
437
438   time_t lastused;
439   BOOL used;
440   int num_files_open;
441   name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
442   name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
443   name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */
444
445 } connection_struct;
446
447 /* DOM_CHAL - challenge info */
448 typedef struct chal_info
449 {
450   uchar data[8]; /* credentials */
451 } DOM_CHAL;
452
453 /* DOM_CREDs - timestamped client or server credentials */
454 typedef struct cred_info
455 {  
456   DOM_CHAL challenge; /* credentials */
457   UTIME timestamp;    /* credential time-stamp */
458
459 } DOM_CRED;
460
461 /* Domain controller authentication protocol info */
462 struct dcinfo
463 {
464   DOM_CHAL clnt_chal; /* Initial challenge received from client */
465   DOM_CHAL srv_chal;  /* Initial server challenge */
466   DOM_CRED clnt_cred; /* Last client credential */
467   DOM_CRED srv_cred;  /* Last server credential */
468
469   uchar  sess_key[8]; /* Session key */
470   uchar  md4pw[16];   /* md4(machine password) */
471 };
472
473 typedef struct
474 {
475   int uid; /* uid of a validated user */
476   int gid; /* gid of a validated user */
477
478   fstring name; /* name of a validated user */
479   fstring real_name;   /* to store real name from password file - simeon */
480   BOOL guest;
481
482   /* following groups stuff added by ih */
483   /* This groups info is needed for when we become_user() for this uid */
484   int n_groups;
485   gid_t *groups;
486   int *igroups; /* an integer version - some OSes are broken :-( */
487   int *attrs; /* attributes associated with each gid */
488
489   int n_sids;
490   int *sids;
491
492   /* per-user authentication information on NT RPCs */
493   struct dcinfo dc;
494
495 } user_struct;
496
497
498 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
499
500 typedef struct
501 {
502   int job;
503   int size;
504   int status;
505   int priority;
506   time_t time;
507   char user[30];
508   char file[100];
509 } print_queue_struct;
510
511 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
512
513 typedef struct
514 {
515   fstring message;
516   int status;
517 }  print_status_struct;
518
519 /* used for server information: client, nameserv and ipc */
520 struct server_info_struct
521 {
522   fstring name;
523   uint32 type;
524   fstring comment;
525   fstring domain; /* used ONLY in ipc.c NOT namework.c */
526   BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
527 };
528
529
530 /* used for network interfaces */
531 struct interface
532 {
533         struct interface *next;
534         struct in_addr ip;
535         struct in_addr bcast;
536         struct in_addr nmask;
537 };
538
539 /* struct returned by get_share_modes */
540 typedef struct
541 {
542   int pid;
543   uint16 op_port;
544   uint16 op_type;
545   int share_mode;
546   struct timeval time;
547 } share_mode_entry;
548
549
550 /* each implementation of the share mode code needs
551    to support the following operations */
552 struct share_ops {
553         BOOL (*stop_mgmt)(void);
554         BOOL (*lock_entry)(int , uint32 , uint32 , int *);
555         BOOL (*unlock_entry)(int , uint32 , uint32 , int );
556         int (*get_entries)(int , int , uint32 , uint32 , share_mode_entry **);
557         void (*del_entry)(int , int );
558         BOOL (*set_entry)(int , int , uint16 , uint16 );
559         BOOL (*remove_oplock)(int , int);
560         int (*forall)(void (*)(share_mode_entry *, char *));
561         void (*status)(FILE *);
562 };
563
564 /* each implementation of the shared memory code needs
565    to support the following operations */
566 struct shmem_ops {
567         BOOL (*shm_close)( void );
568         int (*shm_alloc)(int );
569         BOOL (*shm_free)(int );
570         int (*get_userdef_off)(void);
571         void *(*offset2addr)(int );
572         int (*addr2offset)(void *addr);
573         BOOL (*lock_hash_entry)(unsigned int);
574         BOOL (*unlock_hash_entry)( unsigned int );
575         BOOL (*get_usage)(int *,int *,int *);
576         unsigned (*hash_size)(void);
577 };
578
579
580 /* this is used for smbstatus */
581 struct connect_record
582 {
583   int magic;
584   int pid;
585   int cnum;
586   int uid;
587   int gid;
588   char name[24];
589   char addr[24];
590   char machine[128];
591   time_t start;
592 };
593
594 /* This is used by smbclient to send it to a smbfs mount point */
595 struct connection_options {
596   int protocol;
597   /* Connection-Options */
598   uint32 max_xmit;
599   uint16 server_uid;
600   uint16 tid;
601   /* The following are LANMAN 1.0 options */
602   uint16 sec_mode;
603   uint16 max_mux;
604   uint16 max_vcs;
605   uint16 rawmode;
606   uint32 sesskey;
607   /* The following are NT LM 0.12 options */
608   uint32 maxraw;
609   uint32 capabilities;
610   uint16 serverzone;
611 };
612
613 /* the following are used by loadparm for option lists */
614 typedef enum
615 {
616   P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
617   P_STRING,P_USTRING,P_GSTRING,P_UGSTRING,P_ENUM,P_SEP
618 } parm_type;
619
620 typedef enum
621 {
622   P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
623 } parm_class;
624
625 struct enum_list {
626         int value;
627         char *name;
628 };
629
630 struct parm_struct
631 {
632         char *label;
633         parm_type type;
634         parm_class class;
635         void *ptr;
636         BOOL (*special)(char *, char **);
637         struct enum_list *enum_list;
638         unsigned flags;
639         union {
640                 BOOL bvalue;
641                 int ivalue;
642                 char *svalue;
643                 char cvalue;
644         } def;
645 };
646
647
648 #define FLAG_BASIC 1 /* fundamental options */
649 #define FLAG_HIDE  2 /* options that should be hidden in SWAT */
650 #define FLAG_PRINT 4 /* printing options */
651 #define FLAG_GLOBAL 8 /* local options that should be globally settable in SWAT */
652
653 #ifndef LOCKING_VERSION
654 #define LOCKING_VERSION 4
655 #endif /* LOCKING_VERSION */
656
657 /* these are useful macros for checking validity of handles */
658 #define VALID_FNUM(fnum)   (((fnum) >= 0) && ((fnum) < MAX_OPEN_FILES))
659 #define OPEN_FNUM(fnum)    (VALID_FNUM(fnum) && Files[fnum].open)
660 #define VALID_CNUM(cnum)   (((cnum) >= 0) && ((cnum) < MAX_CONNECTIONS))
661 #define OPEN_CNUM(cnum)    (VALID_CNUM(cnum) && Connections[cnum].open)
662 #define IS_IPC(cnum)       (VALID_CNUM(cnum) && Connections[cnum].ipc)
663 #define IS_PRINT(cnum)       (VALID_CNUM(cnum) && Connections[cnum].printer)
664 #define FNUM_OK(fnum,c) (OPEN_FNUM(fnum) && (c)==Files[fnum].cnum)
665
666 #define CHECK_FNUM(fnum,c) if (!FNUM_OK(fnum,c)) \
667                                return(ERROR(ERRDOS,ERRbadfid))
668 #define CHECK_READ(fnum) if (!Files[fnum].can_read) \
669                                return(ERROR(ERRDOS,ERRbadaccess))
670 #define CHECK_WRITE(fnum) if (!Files[fnum].can_write) \
671                                return(ERROR(ERRDOS,ERRbadaccess))
672 #define CHECK_ERROR(fnum) if (HAS_CACHED_ERROR(fnum)) \
673                                return(CACHED_ERROR(fnum))
674
675 /* translates a connection number into a service number */
676 #define SNUM(cnum)         (Connections[cnum].service)
677
678 /* access various service details */
679 #define SERVICE(snum)      (lp_servicename(snum))
680 #define PRINTCAP           (lp_printcapname())
681 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
682 #define PRINTERNAME(snum)  (lp_printername(snum))
683 #define CAN_WRITE(cnum)    (OPEN_CNUM(cnum) && !Connections[cnum].read_only)
684 #define VALID_SNUM(snum)   (lp_snum_ok(snum))
685 #define GUEST_OK(snum)     (VALID_SNUM(snum) && lp_guest_ok(snum))
686 #define GUEST_ONLY(snum)   (VALID_SNUM(snum) && lp_guest_only(snum))
687 #define CAN_SETDIR(snum)   (!lp_no_set_dir(snum))
688 #define CAN_PRINT(cnum)    (OPEN_CNUM(cnum) && lp_print_ok(SNUM(cnum)))
689 #define POSTSCRIPT(cnum)   (OPEN_CNUM(cnum) && lp_postscript(SNUM(cnum)))
690 #define MAP_HIDDEN(cnum)   (OPEN_CNUM(cnum) && lp_map_hidden(SNUM(cnum)))
691 #define MAP_SYSTEM(cnum)   (OPEN_CNUM(cnum) && lp_map_system(SNUM(cnum)))
692 #define MAP_ARCHIVE(cnum)   (OPEN_CNUM(cnum) && lp_map_archive(SNUM(cnum)))
693 #define IS_HIDDEN_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].hide_list))
694 #define IS_VETO_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].veto_list))
695 #define IS_VETO_OPLOCK_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].veto_oplock_list))
696
697 #define SMBENCRYPT()       (lp_encrypted_passwords())
698
699 /* the basic packet size, assuming no words or bytes */
700 #define smb_size 39
701
702 /* offsets into message for common items */
703 #define smb_com 8
704 #define smb_rcls 9
705 #define smb_reh 10
706 #define smb_err 11
707 #define smb_flg 13
708 #define smb_flg2 14
709 #define smb_reb 13
710 #define smb_tid 28
711 #define smb_pid 30
712 #define smb_uid 32
713 #define smb_mid 34
714 #define smb_wct 36
715 #define smb_vwv 37
716 #define smb_vwv0 37
717 #define smb_vwv1 39
718 #define smb_vwv2 41
719 #define smb_vwv3 43
720 #define smb_vwv4 45
721 #define smb_vwv5 47
722 #define smb_vwv6 49
723 #define smb_vwv7 51
724 #define smb_vwv8 53
725 #define smb_vwv9 55
726 #define smb_vwv10 57
727 #define smb_vwv11 59
728 #define smb_vwv12 61
729 #define smb_vwv13 63
730 #define smb_vwv14 65
731 #define smb_vwv15 67
732 #define smb_vwv16 69
733 #define smb_vwv17 71
734
735
736 /* the complete */
737 #define SMBmkdir      0x00   /* create directory */
738 #define SMBrmdir      0x01   /* delete directory */
739 #define SMBopen       0x02   /* open file */
740 #define SMBcreate     0x03   /* create file */
741 #define SMBclose      0x04   /* close file */
742 #define SMBflush      0x05   /* flush file */
743 #define SMBunlink     0x06   /* delete file */
744 #define SMBmv         0x07   /* rename file */
745 #define SMBgetatr     0x08   /* get file attributes */
746 #define SMBsetatr     0x09   /* set file attributes */
747 #define SMBread       0x0A   /* read from file */
748 #define SMBwrite      0x0B   /* write to file */
749 #define SMBlock       0x0C   /* lock byte range */
750 #define SMBunlock     0x0D   /* unlock byte range */
751 #define SMBctemp      0x0E   /* create temporary file */
752 #define SMBmknew      0x0F   /* make new file */
753 #define SMBchkpth     0x10   /* check directory path */
754 #define SMBexit       0x11   /* process exit */
755 #define SMBlseek      0x12   /* seek */
756 #define SMBtcon       0x70   /* tree connect */
757 #define SMBtconX      0x75   /* tree connect and X*/
758 #define SMBtdis       0x71   /* tree disconnect */
759 #define SMBnegprot    0x72   /* negotiate protocol */
760 #define SMBdskattr    0x80   /* get disk attributes */
761 #define SMBsearch     0x81   /* search directory */
762 #define SMBsplopen    0xC0   /* open print spool file */
763 #define SMBsplwr      0xC1   /* write to print spool file */
764 #define SMBsplclose   0xC2   /* close print spool file */
765 #define SMBsplretq    0xC3   /* return print queue */
766 #define SMBsends      0xD0   /* send single block message */
767 #define SMBsendb      0xD1   /* send broadcast message */
768 #define SMBfwdname    0xD2   /* forward user name */
769 #define SMBcancelf    0xD3   /* cancel forward */
770 #define SMBgetmac     0xD4   /* get machine name */
771 #define SMBsendstrt   0xD5   /* send start of multi-block message */
772 #define SMBsendend    0xD6   /* send end of multi-block message */
773 #define SMBsendtxt    0xD7   /* send text of multi-block message */
774
775 /* Core+ protocol */
776 #define SMBlockread       0x13   /* Lock a range and read */
777 #define SMBwriteunlock 0x14 /* Unlock a range then write */
778 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
779 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
780 #define SMBwritec     0x20  /* secondary write request */
781 #define SMBwriteclose 0x2c  /* write a file then close it */
782
783 /* dos extended protocol */
784 #define SMBreadBraw      0x1A   /* read block raw */
785 #define SMBreadBmpx      0x1B   /* read block multiplexed */
786 #define SMBreadBs        0x1C   /* read block (secondary response) */
787 #define SMBwriteBraw     0x1D   /* write block raw */
788 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
789 #define SMBwriteBs       0x1F   /* write block (secondary request) */
790 #define SMBwriteC        0x20   /* write complete response */
791 #define SMBsetattrE      0x22   /* set file attributes expanded */
792 #define SMBgetattrE      0x23   /* get file attributes expanded */
793 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
794 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
795 #define SMBtranss        0x26   /* transaction (secondary request/response) */
796 #define SMBioctl         0x27   /* IOCTL */
797 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
798 #define SMBcopy          0x29   /* copy */
799 #define SMBmove          0x2A   /* move */
800 #define SMBecho          0x2B   /* echo */
801 #define SMBopenX         0x2D   /* open and X */
802 #define SMBreadX         0x2E   /* read and X */
803 #define SMBwriteX        0x2F   /* write and X */
804 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
805 #define SMBffirst        0x82   /* find first */
806 #define SMBfunique       0x83   /* find unique */
807 #define SMBfclose        0x84   /* find close */
808 #define SMBinvalid       0xFE   /* invalid command */
809
810 /* Extended 2.0 protocol */
811 #define SMBtrans2        0x32   /* TRANS2 protocol set */
812 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
813 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
814 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
815 #define SMBulogoffX      0x74   /* user logoff */
816
817 /* NT SMB extensions. */
818 #define SMBnttrans       0xA0   /* NT transact */
819 #define SMBnttranss      0xA1   /* NT transact secondary */
820 #define SMBntcreateX     0xA2   /* NT create and X */
821 #define SMBntcancel      0xA4   /* NT cancel */
822
823 /* These are the TRANS2 sub commands */
824 #define TRANSACT2_OPEN                        0
825 #define TRANSACT2_FINDFIRST                   1
826 #define TRANSACT2_FINDNEXT                    2
827 #define TRANSACT2_QFSINFO                     3
828 #define TRANSACT2_SETFSINFO                   4
829 #define TRANSACT2_QPATHINFO                   5
830 #define TRANSACT2_SETPATHINFO                 6
831 #define TRANSACT2_QFILEINFO                   7
832 #define TRANSACT2_SETFILEINFO                 8
833 #define TRANSACT2_FSCTL                       9
834 #define TRANSACT2_IOCTL                     0xA
835 #define TRANSACT2_FINDNOTIFYFIRST           0xB
836 #define TRANSACT2_FINDNOTIFYNEXT            0xC
837 #define TRANSACT2_MKDIR                     0xD
838 #define TRANSACT2_SESSION_SETUP             0xE
839 #define TRANSACT2_GET_DFS_REFERRAL         0x10
840 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
841
842 /* These are the NT transact sub commands. */
843 #define NT_TRANSACT_CREATE                1
844 #define NT_TRANSACT_IOCTL                 2
845 #define NT_TRANSACT_SET_SECURITY_DESC     3
846 #define NT_TRANSACT_NOTIFY_CHANGE         4
847 #define NT_TRANSACT_RENAME                5
848 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
849
850 /* these are the trans2 sub fields for primary requests */
851 #define smb_tpscnt smb_vwv0
852 #define smb_tdscnt smb_vwv1
853 #define smb_mprcnt smb_vwv2
854 #define smb_mdrcnt smb_vwv3
855 #define smb_msrcnt smb_vwv4
856 #define smb_flags smb_vwv5
857 #define smb_timeout smb_vwv6
858 #define smb_pscnt smb_vwv9
859 #define smb_psoff smb_vwv10
860 #define smb_dscnt smb_vwv11
861 #define smb_dsoff smb_vwv12
862 #define smb_suwcnt smb_vwv13
863 #define smb_setup smb_vwv14
864 #define smb_setup0 smb_setup
865 #define smb_setup1 (smb_setup+2)
866 #define smb_setup2 (smb_setup+4)
867
868 /* these are for the secondary requests */
869 #define smb_spscnt smb_vwv2
870 #define smb_spsoff smb_vwv3
871 #define smb_spsdisp smb_vwv4
872 #define smb_sdscnt smb_vwv5
873 #define smb_sdsoff smb_vwv6
874 #define smb_sdsdisp smb_vwv7
875 #define smb_sfid smb_vwv8
876
877 /* and these for responses */
878 #define smb_tprcnt smb_vwv0
879 #define smb_tdrcnt smb_vwv1
880 #define smb_prcnt smb_vwv3
881 #define smb_proff smb_vwv4
882 #define smb_prdisp smb_vwv5
883 #define smb_drcnt smb_vwv6
884 #define smb_droff smb_vwv7
885 #define smb_drdisp smb_vwv8
886
887 /* where to find the base of the SMB packet proper */
888 #define smb_base(buf) (((char *)(buf))+4)
889
890
891 #define SMB_SUCCESS 0  /* The request was successful. */
892 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
893 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
894 #define ERRHRD 0x03  /* Error is an hardware error. */
895 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
896
897 #ifdef __STDC__
898 int Debug1(char *, ...);
899 #else
900 int Debug1();
901 #endif
902
903 #ifdef DFS_AUTH
904 void dfs_unlogin(void);
905 extern int dcelogin_atmost_once;
906 #endif
907
908 #if AJT
909 void ajt_panic(void);
910 #endif
911
912 #ifdef NOSTRDUP
913 char *strdup(char *s);
914 #endif
915
916 #ifdef REPLACE_STRLEN
917 int Strlen(char *);
918 #endif
919
920 #ifdef REPLACE_STRSTR
921 char *Strstr(char *s, char *p);
922 #endif
923
924 #ifndef MIN
925 #define MIN(a,b) ((a)<(b)?(a):(b))
926 #endif
927 #ifndef MAX
928 #define MAX(a,b) ((a)>(b)?(a):(b))
929 #endif
930
931 #ifndef ABS
932 #define ABS(a) ((a)>0?(a):(-(a)))
933 #endif
934
935 #ifndef SIGNAL_CAST
936 #define SIGNAL_CAST
937 #endif
938
939 #ifndef SELECT_CAST
940 #define SELECT_CAST
941 #endif
942
943
944 /* Some POSIX definitions for those without */
945  
946 #ifndef S_IFDIR
947 #define S_IFDIR         0x4000
948 #endif
949 #ifndef S_ISDIR
950 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
951 #endif
952 #ifndef S_IRWXU
953 #define S_IRWXU 00700           /* read, write, execute: owner */
954 #endif
955 #ifndef S_IRUSR
956 #define S_IRUSR 00400           /* read permission: owner */
957 #endif
958 #ifndef S_IWUSR
959 #define S_IWUSR 00200           /* write permission: owner */
960 #endif
961 #ifndef S_IXUSR
962 #define S_IXUSR 00100           /* execute permission: owner */
963 #endif
964 #ifndef S_IRWXG
965 #define S_IRWXG 00070           /* read, write, execute: group */
966 #endif
967 #ifndef S_IRGRP
968 #define S_IRGRP 00040           /* read permission: group */
969 #endif
970 #ifndef S_IWGRP
971 #define S_IWGRP 00020           /* write permission: group */
972 #endif
973 #ifndef S_IXGRP
974 #define S_IXGRP 00010           /* execute permission: group */
975 #endif
976 #ifndef S_IRWXO
977 #define S_IRWXO 00007           /* read, write, execute: other */
978 #endif
979 #ifndef S_IROTH
980 #define S_IROTH 00004           /* read permission: other */
981 #endif
982 #ifndef S_IWOTH
983 #define S_IWOTH 00002           /* write permission: other */
984 #endif
985 #ifndef S_IXOTH
986 #define S_IXOTH 00001           /* execute permission: other */
987 #endif
988
989
990 /* these are used in NetServerEnum to choose what to receive */
991 #define SV_TYPE_WORKSTATION         0x00000001
992 #define SV_TYPE_SERVER              0x00000002
993 #define SV_TYPE_SQLSERVER           0x00000004
994 #define SV_TYPE_DOMAIN_CTRL         0x00000008
995 #define SV_TYPE_DOMAIN_BAKCTRL      0x00000010
996 #define SV_TYPE_TIME_SOURCE         0x00000020
997 #define SV_TYPE_AFP                 0x00000040
998 #define SV_TYPE_NOVELL              0x00000080
999 #define SV_TYPE_DOMAIN_MEMBER       0x00000100
1000 #define SV_TYPE_PRINTQ_SERVER       0x00000200
1001 #define SV_TYPE_DIALIN_SERVER       0x00000400
1002 #define SV_TYPE_SERVER_UNIX         0x00000800
1003 #define SV_TYPE_NT                  0x00001000
1004 #define SV_TYPE_WFW                 0x00002000
1005 #define SV_TYPE_SERVER_MFPN         0x00004000
1006 #define SV_TYPE_SERVER_NT           0x00008000
1007 #define SV_TYPE_POTENTIAL_BROWSER   0x00010000
1008 #define SV_TYPE_BACKUP_BROWSER      0x00020000
1009 #define SV_TYPE_MASTER_BROWSER      0x00040000
1010 #define SV_TYPE_DOMAIN_MASTER       0x00080000
1011 #define SV_TYPE_SERVER_OSF          0x00100000
1012 #define SV_TYPE_SERVER_VMS          0x00200000
1013 #define SV_TYPE_WIN95_PLUS          0x00400000
1014 #define SV_TYPE_ALTERNATE_XPORT     0x20000000  
1015 #define SV_TYPE_LOCAL_LIST_ONLY     0x40000000  
1016 #define SV_TYPE_DOMAIN_ENUM         0x80000000
1017 #define SV_TYPE_ALL                 0xFFFFFFFF  
1018
1019 /* what server type are we currently  - JHT Says we ARE 4.20 */
1020 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1021 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1022 /* History: */
1023 /* Version 4.0 - never made public */
1024 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1025 /*              - Reappeared in 1.9.16p11 with fixed smbd services */
1026 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1027
1028 #define DEFAULT_MAJOR_VERSION 0x04
1029 #define DEFAULT_MINOR_VERSION 0x02
1030
1031 /* Browser Election Values */
1032 #define BROWSER_ELECTION_VERSION        0x010f
1033 #define BROWSER_CONSTANT        0xaa55
1034
1035 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
1036    
1037 #define FLAGS2_LONG_PATH_COMPONENTS   0x0001
1038 #define FLAGS2_EXTENDED_ATTRIBUTES    0x0002
1039 #define FLAGS2_DFS_PATHNAMES          0x1000
1040 #define FLAGS2_READ_PERMIT_NO_EXECUTE 0x2000
1041 #define FLAGS2_32_BIT_ERROR_CODES     0x4000 
1042 #define FLAGS2_UNICODE_STRINGS        0x8000
1043
1044 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1045
1046 #define CAP_RAW_MODE         0x0001
1047 #define CAP_MPX_MODE         0x0002
1048 #define CAP_UNICODE          0x0004
1049 #define CAP_LARGE_FILES      0x0008
1050 #define CAP_NT_SMBS          0x0010
1051 #define CAP_RPC_REMOTE_APIS  0x0020
1052 #define CAP_STATUS32         0x0040
1053 #define CAP_LEVEL_II_OPLOCKS 0x0080
1054 #define CAP_LOCK_AND_READ    0x0100
1055 #define CAP_NT_FIND          0x0200
1056 #define CAP_DFS              0x1000
1057 #define CAP_LARGE_READX      0x4000
1058
1059 /* protocol types. It assumes that higher protocols include lower protocols
1060    as subsets */
1061 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1062
1063 /* security levels */
1064 #ifdef DOMAIN_CLIENT
1065 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN};
1066 #else /* DOMAIN_CLIENT */
1067 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER};
1068 #endif /* DOMAIN_CLIENT */
1069
1070 /* printing types */
1071 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1072                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ};
1073
1074 /* Remote architectures we know about. */
1075 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_SAMBA};
1076
1077 /* case handling */
1078 enum case_handling {CASE_LOWER,CASE_UPPER};
1079
1080
1081 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
1082    structures. We cannot define these as actual structures
1083    due to possible differences in structure packing
1084    on different machines/compilers. */
1085
1086 #define SMB_LPID_OFFSET(indx) (10 * (indx))
1087 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
1088 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
1089
1090 /* Macro to cache an error in a write_bmpx_struct */
1091 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
1092                             w->wr_discard = True, -1)
1093 /* Macro to test if an error has been cached for this fnum */
1094 #define HAS_CACHED_ERROR(fnum) (Files[(fnum)].open && \
1095                                 Files[(fnum)].wbmpx_ptr && \
1096                                 Files[(fnum)].wbmpx_ptr->wr_discard)
1097 /* Macro to turn the cached error into an error packet */
1098 #define CACHED_ERROR(fnum) cached_error_packet(inbuf,outbuf,fnum,__LINE__)
1099
1100 /* these are the datagram types */
1101 #define DGRAM_DIRECT_UNIQUE 0x10
1102
1103 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
1104
1105 /* this is how errors are generated */
1106 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
1107
1108 #define ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
1109
1110 /*
1111  * Global value meaing that the smb_uid field should be
1112  * ingored (in share level security and protocol level == CORE)
1113  */
1114
1115 #define UID_FIELD_INVALID 0
1116 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1117
1118 /* Defines needed for multi-codepage support. */
1119 #define MSDOS_LATIN_1_CODEPAGE 850
1120 #define KANJI_CODEPAGE 932
1121 #define HANGUL_CODEPAGE 949
1122 #define BIG5_CODEPAGE 950
1123 #define SIMPLIFIED_CHINESE_CODEPAGE 936
1124
1125 #ifdef KANJI
1126 /* 
1127  * Default client code page - Japanese 
1128  */
1129 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1130 #else /* KANJI */
1131 /* 
1132  * Default client code page - 850 - Western European 
1133  */
1134 #define DEFAULT_CLIENT_CODE_PAGE MSDOS_LATIN_1_CODEPAGE
1135 #endif /* KANJI */
1136
1137 /* 
1138  * Size of buffer to use when moving files across filesystems. 
1139  */
1140 #define COPYBUF_SIZE (8*1024)
1141
1142 /* 
1143  * Integers used to override error codes. 
1144  */
1145 extern int unix_ERR_class;
1146 extern int unix_ERR_code;
1147
1148 /*
1149  * Map the Core and Extended Oplock requesst bits down
1150  * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1151  */
1152
1153 /*
1154  * Core protocol.
1155  */
1156 #define CORE_OPLOCK_REQUEST(inbuf) ((CVAL(inbuf,smb_flg)&((1<<5)|(1<<6)))>>5)
1157
1158 /*
1159  * Extended protocol.
1160  */
1161 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1162
1163 /* Lock types. */
1164 #define LOCKING_ANDX_SHARED_LOCK 0x1
1165 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1166 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1167 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1168 #define LOCKING_ANDX_LARGE_FILES 0x10
1169
1170 /* Oplock levels */
1171 #define OPLOCKLEVEL_NONE 0
1172 #define OPLOCKLEVEL_II 1
1173
1174 /*
1175  * Bits we test with.
1176  */
1177 #define EXCLUSIVE_OPLOCK 1
1178 #define BATCH_OPLOCK 2
1179
1180 #define CORE_OPLOCK_GRANTED (1<<5)
1181 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1182
1183 /*
1184  * Loopback command offsets.
1185  */
1186
1187 #define UDP_CMD_LEN_OFFSET 0
1188 #define UDP_CMD_PORT_OFFSET 4
1189 #define UDP_CMD_HEADER_LEN 6
1190
1191 #define UDP_MESSAGE_CMD_OFFSET 0
1192
1193 /*
1194  * Oplock break command code to send over the udp socket.
1195  * 
1196  * Form of this is :
1197  *
1198  *  0     2       6        10       14      18       22
1199  *  +----+--------+--------+--------+-------+--------+
1200  *  | cmd| pid    | dev    | inode  | sec   |  usec  |
1201  *  +----+--------+--------+--------+-------+--------+
1202  */
1203
1204 #define OPLOCK_BREAK_CMD 0x1
1205 #define OPLOCK_BREAK_PID_OFFSET 2
1206 #define OPLOCK_BREAK_DEV_OFFSET 6
1207 #define OPLOCK_BREAK_INODE_OFFSET 10
1208 #define OPLOCK_BREAK_SEC_OFFSET 14
1209 #define OPLOCK_BREAK_USEC_OFFSET 18
1210 #define OPLOCK_BREAK_MSG_LEN 22
1211
1212
1213 #define CMD_REPLY 0x8000
1214
1215 #endif /* _SMB_H */
1216
1217 #include "ntdomain.h"
1218
1219 /* _SMB_H */