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