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