2b6888b8a7fc009bb789f8c35faa6b8965cfc4a8
[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-1997
6    Copyright (C) John H Terpstra 1996-1997
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22 #ifndef _SMB_H
23 #define _SMB_H
24
25 #ifndef MAX_CONNECTIONS
26 #define MAX_CONNECTIONS 127
27 #endif
28
29 #ifndef MAX_OPEN_FILES
30 #define MAX_OPEN_FILES 50
31 #endif
32
33 #ifndef GUEST_ACCOUNT
34 #define GUEST_ACCOUNT "nobody"
35 #endif
36
37 #define BUFFER_SIZE (0xFFFF)
38 #define SAFETY_MARGIN 1024
39
40 /* Default size of shared memory used for share mode locking */
41 #ifndef SHMEM_SIZE
42 #define SHMEM_SIZE 102400
43 #endif
44
45 /* Default number of hash buckets used in shared memory share mode */
46 #ifndef SHMEM_HASH_SIZE
47 #define SHMEM_HASH_SIZE 113
48 #endif
49
50 #define NMB_PORT 137
51 #define DGRAM_PORT 138
52 #define SMB_PORT 139
53
54 #define False (0)
55 #define True (1)
56 #define BOOLSTR(b) ((b) ? "Yes" : "No")
57 #define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0)
58 #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
59 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
60
61 typedef int BOOL;
62
63 /* offset in shared memory */
64 typedef  int smb_shm_offset_t;
65 #define NULL_OFFSET (smb_shm_offset_t)(0)
66
67
68 /*
69    Samba needs type definitions for int16, int32, uint16 and uint32.
70    
71    Normally these are signed and unsigned 16 and 32 bit integers, but
72    they actually only need to be at least 16 and 32 bits
73    respectively. Thus if your word size is 8 bytes just defining them
74    as signed and unsigned int will work.
75 */
76
77 /* afs/stds.h defines int16 and int32 */
78 #ifndef AFS_AUTH
79 typedef short int16;
80 typedef int int32;
81 #endif
82
83 #ifndef uint16
84 typedef unsigned short uint16;
85 #endif
86
87 #ifndef uint32
88 typedef unsigned int uint32;
89 #endif
90
91 #ifndef uchar
92 #define uchar unsigned char
93 #endif
94 #ifndef int16
95 #define int16 short
96 #endif
97 #ifndef uint16
98 #define uint16 unsigned short
99 #endif
100 #ifndef uint32
101 #define uint32 unsigned int
102 #endif
103
104 #define SIZEOFWORD 2
105
106 #ifndef DEF_CREATE_MASK
107 #define DEF_CREATE_MASK (0755)
108 #endif
109
110 /* how long to wait for secondary SMB packets (milli-seconds) */
111 #define SMB_SECONDARY_WAIT (60*1000)
112
113 /* debugging code */
114 #ifndef SYSLOG
115 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))?(Debug1 body):0)
116 #else
117 extern int syslog_level;
118
119 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))? (syslog_level = (level), Debug1 body):0)
120 #endif
121
122 /* this defines the error codes that receive_smb can put in smb_read_error */
123 #define READ_TIMEOUT 1
124 #define READ_EOF 2
125 #define READ_ERROR 3
126
127
128 #define DIR_STRUCT_SIZE 43
129
130 /* these define all the command types recognised by the server - there
131 are lots of gaps so probably there are some rare commands that are not
132 implemented */
133
134 #define pSETDIR '\377'
135
136 /* these define the attribute byte as seen by DOS */
137 #define aRONLY (1L<<0)
138 #define aHIDDEN (1L<<1)
139 #define aSYSTEM (1L<<2)
140 #define aVOLID (1L<<3)
141 #define aDIR (1L<<4)
142 #define aARCH (1L<<5)
143
144 /* deny modes */
145 #define DENY_DOS 0
146 #define DENY_ALL 1
147 #define DENY_WRITE 2
148 #define DENY_READ 3
149 #define DENY_NONE 4
150 #define DENY_FCB 7
151
152 /* share types */
153 #define STYPE_DISKTREE  0       /* Disk drive */
154 #define STYPE_PRINTQ    1       /* Spooler queue */
155 #define STYPE_DEVICE    2       /* Serial device */
156 #define STYPE_IPC       3       /* Interprocess communication (IPC) */
157
158 /* SMB X/Open error codes for the ERRdos error class */
159 #define ERRbadfunc 1 /* Invalid function (or system call) */
160 #define ERRbadfile 2 /* File not found (pathname error) */
161 #define ERRbadpath 3 /* Directory not found */
162 #define ERRnofids 4 /* Too many open files */
163 #define ERRnoaccess 5 /* Access denied */
164 #define ERRbadfid 6 /* Invalid fid */
165 #define ERRnomem 8 /* Out of memory */
166 #define ERRbadmem 9 /* Invalid memory block address */
167 #define ERRbadenv 10 /* Invalid environment */
168 #define ERRbadaccess 12 /* Invalid open mode */
169 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
170 #define ERRres 14 /* reserved */
171 #define ERRbaddrive 15 /* Invalid drive */
172 #define ERRremcd 16 /* Attempt to delete current directory */
173 #define ERRdiffdevice 17 /* rename/move across different filesystems */
174 #define ERRnofiles 18 /* no more files found in file search */
175 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
176 #define ERRlock 33 /* Lock request conflicts with existing lock */
177 #define ERRfilexists 80 /* File in operation already exists */
178 #define ERRbadpipe 230 /* Named pipe invalid */
179 #define ERRpipebusy 231 /* All instances of pipe are busy */
180 #define ERRpipeclosing 232 /* named pipe close in progress */
181 #define ERRnotconnected 233 /* No process on other end of named pipe */
182 #define ERRmoredata 234 /* More data to be returned */
183 #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
184 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not suppored */
185 #define ERRunknownlevel 124
186 #define ERRunknownipc 2142
187
188
189 /* here's a special one from observing NT */
190 #define ERRnoipc 66 /* don't support ipc */
191
192 /* Error codes for the ERRSRV class */
193
194 #define ERRerror 1 /* Non specific error code */
195 #define ERRbadpw 2 /* Bad password */
196 #define ERRbadtype 3 /* reserved */
197 #define ERRaccess 4 /* No permissions to do the requested operation */
198 #define ERRinvnid 5 /* tid invalid */
199 #define ERRinvnetname 6 /* Invalid servername */
200 #define ERRinvdevice 7 /* Invalid device */
201 #define ERRqfull 49 /* Print queue full */
202 #define ERRqtoobig 50 /* Queued item too big */
203 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
204 #define ERRsmbcmd 64 /* Unrecognised command */
205 #define ERRsrverror 65 /* smb server internal error */
206 #define ERRfilespecs 67 /* fid and pathname invalid combination */
207 #define ERRbadlink 68 /* reserved */
208 #define ERRbadpermits 69 /* Access specified for a file is not valid */
209 #define ERRbadpid 70 /* reserved */
210 #define ERRsetattrmode 71 /* attribute mode invalid */
211 #define ERRpaused 81 /* Message server paused */
212 #define ERRmsgoff 82 /* Not receiving messages */
213 #define ERRnoroom 83 /* No room for message */
214 #define ERRrmuns 87 /* too many remote usernames */
215 #define ERRtimeout 88 /* operation timed out */
216 #define ERRnoresource  89 /* No resources currently available for request. */
217 #define ERRtoomanyuids 90 /* too many userids */
218 #define ERRbaduid 91 /* bad userid */
219 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
220 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
221 #define ERRcontMPX 252 /* resume MPX mode */
222 #define ERRbadPW /* reserved */
223 #define ERRnosupport 0xFFFF
224 #define ERRunknownsmb 22 /* from NT 3.5 response */
225
226
227 /* Error codes for the ERRHRD class */
228
229 #define ERRnowrite 19 /* read only media */
230 #define ERRbadunit 20 /* Unknown device */
231 #define ERRnotready 21 /* Drive not ready */
232 #define ERRbadcmd 22 /* Unknown command */
233 #define ERRdata 23 /* Data (CRC) error */
234 #define ERRbadreq 24 /* Bad request structure length */
235 #define ERRseek 25
236 #define ERRbadmedia 26
237 #define ERRbadsector 27
238 #define ERRnopaper 28
239 #define ERRwrite 29 /* write fault */
240 #define ERRread 30 /* read fault */
241 #define ERRgeneral 31 /* General hardware failure */
242 #define ERRwrongdisk 34
243 #define ERRFCBunavail 35
244 #define ERRsharebufexc 36 /* share buffer exceeded */
245 #define ERRdiskfull 39
246
247
248 typedef char pstring[1024];
249 typedef char fstring[128];
250 typedef fstring string;
251
252
253 struct smb_passwd {
254         int smb_userid;
255         char *smb_name;
256         unsigned char *smb_passwd; /* Null if no password */
257         unsigned char *smb_nt_passwd; /* Null if no password */
258         /* Other fields / flags may be added later */
259 };
260
261
262 struct current_user {
263   int cnum, id;
264   int uid, gid;
265   int ngroups;
266   gid_t *groups;
267   int *igroups;
268 };
269
270 typedef struct
271 {
272   int size;
273   int mode;
274   int uid;
275   int gid;
276   /* these times are normally kept in GMT */
277   time_t mtime;
278   time_t atime;
279   time_t ctime;
280   pstring name;
281 } file_info;
282
283
284 /* Structure used when SMBwritebmpx is active */
285 typedef struct
286         {
287         int   wr_total_written; /* So we know when to discard this */
288         int32 wr_timeout;
289         int32 wr_errclass;
290         int32 wr_error; /* Cached errors */
291         BOOL  wr_mode; /* write through mode) */
292         BOOL  wr_discard; /* discard all further data */
293         } write_bmpx_struct;
294
295 /*
296  * Structure used to indirect fd's from the files_struct.
297  * Needed as POSIX locking is based on file and process, not
298  * file descriptor and process.
299  */
300
301 typedef struct
302 {
303   uint16 ref_count;
304   uint32 dev;
305   uint32 inode;
306   int fd;
307   int fd_readonly;
308   int fd_writeonly;
309   int real_open_flags;
310 } file_fd_struct;
311
312 typedef struct
313 {
314   int cnum;
315   file_fd_struct *fd_ptr;
316   int pos;
317   int size;
318   int mode;
319   int uid;
320   char *mmap_ptr;
321   int mmap_size;
322   write_bmpx_struct *wbmpx_ptr;
323   struct timeval open_time;
324   BOOL open;
325   BOOL can_lock;
326   BOOL can_read;
327   BOOL can_write;
328   BOOL share_mode;
329   BOOL print_file;
330   BOOL modified;
331   char *name;
332 } files_struct;
333
334
335 struct uid_cache {
336   int entries;
337   int list[UID_CACHE_SIZE];
338 };
339
340 typedef struct
341 {
342   char *name;
343   BOOL is_wild;
344 } name_compare_entry;
345
346 typedef struct
347 {
348   int service;
349   BOOL force_user;
350   struct uid_cache uid_cache;
351   void *dirptr;
352   BOOL open;
353   BOOL printer;
354   BOOL ipc;
355   BOOL read_only;
356   BOOL admin_user;
357   char *dirpath;
358   char *connectpath;
359   char *origpath;
360   char *user; /* name of user who *opened* this connection */
361   int uid; /* uid of user who *opened* this connection */
362   int gid; /* gid of user who *opened* this connection */
363   uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
364   /* following groups stuff added by ih */
365   /* This groups info is valid for the user that *opened* the connection */
366   int ngroups;
367   gid_t *groups;
368   int *igroups; /* an integer version - some OSes are broken :-( */
369   time_t lastused;
370   BOOL used;
371   int num_files_open;
372   name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
373   name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
374 } connection_struct;
375
376
377 typedef struct
378 {
379   int uid; /* uid of a validated user */
380   int gid; /* gid of a validated user */
381   fstring name; /* name of a validated user */
382   BOOL guest;
383   /* following groups stuff added by ih */
384   /* This groups info is needed for when we become_user() for this uid */
385   int user_ngroups;
386   gid_t *user_groups;
387   int *user_igroups; /* an integer version - some OSes are broken :-( */
388 #if (defined(NETGROUP) && defined(AUTOMOUNT))
389   char *home_share;  /* to store NIS home of a user - simeon */
390 #endif
391   char *real_name;   /* to store real name from password file - simeon */
392 } user_struct;
393
394
395 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
396
397 typedef struct
398 {
399   int job;
400   int size;
401   int status;
402   int priority;
403   time_t time;
404   char user[30];
405   char file[100];
406 } print_queue_struct;
407
408 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
409
410 typedef struct
411 {
412   fstring message;
413   int status;
414 }  print_status_struct;
415
416 /* used for server information: client, nameserv and ipc */
417 struct server_info_struct
418 {
419   fstring name;
420   uint32 type;
421   fstring comment;
422   fstring domain; /* used ONLY in ipc.c NOT namework.c */
423   BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
424 };
425
426
427 /* used for network interfaces */
428 struct interface
429 {
430         struct interface *next;
431         struct in_addr ip;
432         struct in_addr bcast;
433         struct in_addr nmask;
434 };
435
436 /* share mode record pointed to in shared memory hash bucket */
437 typedef struct
438 {
439   smb_shm_offset_t next_offset; /* offset of next record in chain from hash bucket */
440   int locking_version;
441   int32 st_dev;
442   int32 st_ino;
443   int num_share_mode_entries;
444   smb_shm_offset_t share_mode_entries; /* Chain of share mode entries for this file */
445   char file_name[1];
446 } share_mode_record;
447
448 /* share mode entry pointed to by share_mode_record struct */
449 typedef struct
450 {
451   smb_shm_offset_t next_share_mode_entry;
452   int pid;
453   int share_mode;
454   struct timeval time;
455 } share_mode_entry;
456
457 /* struct returned by get_share_modes */
458 typedef struct
459 {
460   int pid;
461   int share_mode;
462   struct timeval time;
463 } min_share_mode_entry;
464
465 /* Token returned by lock_share_entry (actually ignored by FAST_SHARE_MODES code) */
466 typedef int share_lock_token;
467
468 /* Conversion to hash entry index from device and inode numbers. */
469 #define HASH_ENTRY(dev,ino) ((( (uint32)(dev) )* ( (uint32)(ino) )) % lp_shmem_hash_size())
470
471 /* this is used for smbstatus */
472 struct connect_record
473 {
474   int magic;
475   int pid;
476   int cnum;
477   int uid;
478   int gid;
479   char name[24];
480   char addr[24];
481   char machine[128];
482   time_t start;
483 };
484
485
486 #define LOCKING_VERSION 3
487
488 /* these are useful macros for checking validity of handles */
489 #define VALID_FNUM(fnum)   (((fnum) >= 0) && ((fnum) < MAX_OPEN_FILES))
490 #define OPEN_FNUM(fnum)    (VALID_FNUM(fnum) && Files[fnum].open)
491 #define VALID_CNUM(cnum)   (((cnum) >= 0) && ((cnum) < MAX_CONNECTIONS))
492 #define OPEN_CNUM(cnum)    (VALID_CNUM(cnum) && Connections[cnum].open)
493 #define IS_IPC(cnum)       (VALID_CNUM(cnum) && Connections[cnum].ipc)
494 #define IS_PRINT(cnum)       (VALID_CNUM(cnum) && Connections[cnum].printer)
495 #define FNUM_OK(fnum,c) (OPEN_FNUM(fnum) && (c)==Files[fnum].cnum)
496
497 #define CHECK_FNUM(fnum,c) if (!FNUM_OK(fnum,c)) \
498                                return(ERROR(ERRDOS,ERRbadfid))
499 #define CHECK_READ(fnum) if (!Files[fnum].can_read) \
500                                return(ERROR(ERRDOS,ERRbadaccess))
501 #define CHECK_WRITE(fnum) if (!Files[fnum].can_write) \
502                                return(ERROR(ERRDOS,ERRbadaccess))
503 #define CHECK_ERROR(fnum) if (HAS_CACHED_ERROR(fnum)) \
504                                return(CACHED_ERROR(fnum))
505
506 /* translates a connection number into a service number */
507 #define SNUM(cnum)         (Connections[cnum].service)
508
509 /* access various service details */
510 #define SERVICE(snum)      (lp_servicename(snum))
511 #define PRINTCAP           (lp_printcapname())
512 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
513 #define PRINTERNAME(snum)  (lp_printername(snum))
514 #define CAN_WRITE(cnum)    (OPEN_CNUM(cnum) && !Connections[cnum].read_only)
515 #define VALID_SNUM(snum)   (lp_snum_ok(snum))
516 #define GUEST_OK(snum)     (VALID_SNUM(snum) && lp_guest_ok(snum))
517 #define GUEST_ONLY(snum)   (VALID_SNUM(snum) && lp_guest_only(snum))
518 #define CAN_SETDIR(snum)   (!lp_no_set_dir(snum))
519 #define CAN_PRINT(cnum)    (OPEN_CNUM(cnum) && lp_print_ok(SNUM(cnum)))
520 #define POSTSCRIPT(cnum)   (OPEN_CNUM(cnum) && lp_postscript(SNUM(cnum)))
521 #define MAP_HIDDEN(cnum)   (OPEN_CNUM(cnum) && lp_map_hidden(SNUM(cnum)))
522 #define MAP_SYSTEM(cnum)   (OPEN_CNUM(cnum) && lp_map_system(SNUM(cnum)))
523 #define MAP_ARCHIVE(cnum)   (OPEN_CNUM(cnum) && lp_map_archive(SNUM(cnum)))
524 #define IS_HIDDEN_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].hide_list))
525 #define IS_VETO_PATH(cnum,path)  (is_in_path((path),Connections[(cnum)].veto_list))
526
527 #ifdef SMB_PASSWD
528 #define SMBENCRYPT()       (lp_encrypted_passwords())
529 #else
530 #define SMBENCRYPT() (False)
531 #endif
532
533 /* the basic packet size, assuming no words or bytes */
534 #define smb_size 39
535
536 /* offsets into message for common items */
537 #define smb_com 8
538 #define smb_rcls 9
539 #define smb_reh 10
540 #define smb_err 11
541 #define smb_flg 13
542 #define smb_flg2 14
543 #define smb_reb 13
544 #define smb_tid 28
545 #define smb_pid 30
546 #define smb_uid 32
547 #define smb_mid 34
548 #define smb_wct 36
549 #define smb_vwv 37
550 #define smb_vwv0 37
551 #define smb_vwv1 39
552 #define smb_vwv2 41
553 #define smb_vwv3 43
554 #define smb_vwv4 45
555 #define smb_vwv5 47
556 #define smb_vwv6 49
557 #define smb_vwv7 51
558 #define smb_vwv8 53
559 #define smb_vwv9 55
560 #define smb_vwv10 57
561 #define smb_vwv11 59
562 #define smb_vwv12 61
563 #define smb_vwv13 63
564 #define smb_vwv14 65
565 #define smb_vwv15 67
566 #define smb_vwv16 69
567 #define smb_vwv17 71
568
569
570 /* the complete */
571 #define SMBmkdir      0x00   /* create directory */
572 #define SMBrmdir      0x01   /* delete directory */
573 #define SMBopen       0x02   /* open file */
574 #define SMBcreate     0x03   /* create file */
575 #define SMBclose      0x04   /* close file */
576 #define SMBflush      0x05   /* flush file */
577 #define SMBunlink     0x06   /* delete file */
578 #define SMBmv         0x07   /* rename file */
579 #define SMBgetatr     0x08   /* get file attributes */
580 #define SMBsetatr     0x09   /* set file attributes */
581 #define SMBread       0x0A   /* read from file */
582 #define SMBwrite      0x0B   /* write to file */
583 #define SMBlock       0x0C   /* lock byte range */
584 #define SMBunlock     0x0D   /* unlock byte range */
585 #define SMBctemp      0x0E   /* create temporary file */
586 #define SMBmknew      0x0F   /* make new file */
587 #define SMBchkpth     0x10   /* check directory path */
588 #define SMBexit       0x11   /* process exit */
589 #define SMBlseek      0x12   /* seek */
590 #define SMBtcon       0x70   /* tree connect */
591 #define SMBtconX      0x75   /* tree connect and X*/
592 #define SMBtdis       0x71   /* tree disconnect */
593 #define SMBnegprot    0x72   /* negotiate protocol */
594 #define SMBdskattr    0x80   /* get disk attributes */
595 #define SMBsearch     0x81   /* search directory */
596 #define SMBsplopen    0xC0   /* open print spool file */
597 #define SMBsplwr      0xC1   /* write to print spool file */
598 #define SMBsplclose   0xC2   /* close print spool file */
599 #define SMBsplretq    0xC3   /* return print queue */
600 #define SMBsends      0xD0   /* send single block message */
601 #define SMBsendb      0xD1   /* send broadcast message */
602 #define SMBfwdname    0xD2   /* forward user name */
603 #define SMBcancelf    0xD3   /* cancel forward */
604 #define SMBgetmac     0xD4   /* get machine name */
605 #define SMBsendstrt   0xD5   /* send start of multi-block message */
606 #define SMBsendend    0xD6   /* send end of multi-block message */
607 #define SMBsendtxt    0xD7   /* send text of multi-block message */
608
609 /* Core+ protocol */
610 #define SMBlockread       0x13   /* Lock a range and read */
611 #define SMBwriteunlock 0x14 /* Unlock a range then write */
612 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
613 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
614 #define SMBwritec     0x20  /* secondary write request */
615 #define SMBwriteclose 0x2c  /* write a file then close it */
616
617 /* dos extended protocol */
618 #define SMBreadBraw      0x1A   /* read block raw */
619 #define SMBreadBmpx      0x1B   /* read block multiplexed */
620 #define SMBreadBs        0x1C   /* read block (secondary response) */
621 #define SMBwriteBraw     0x1D   /* write block raw */
622 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
623 #define SMBwriteBs       0x1F   /* write block (secondary request) */
624 #define SMBwriteC        0x20   /* write complete response */
625 #define SMBsetattrE      0x22   /* set file attributes expanded */
626 #define SMBgetattrE      0x23   /* get file attributes expanded */
627 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
628 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
629 #define SMBtranss        0x26   /* transaction (secondary request/response) */
630 #define SMBioctl         0x27   /* IOCTL */
631 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
632 #define SMBcopy          0x29   /* copy */
633 #define SMBmove          0x2A   /* move */
634 #define SMBecho          0x2B   /* echo */
635 #define SMBopenX         0x2D   /* open and X */
636 #define SMBreadX         0x2E   /* read and X */
637 #define SMBwriteX        0x2F   /* write and X */
638 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
639 #define SMBffirst        0x82   /* find first */
640 #define SMBfunique       0x83   /* find unique */
641 #define SMBfclose        0x84   /* find close */
642 #define SMBinvalid       0xFE   /* invalid command */
643
644 /* Extended 2.0 protocol */
645 #define SMBtrans2        0x32   /* TRANS2 protocol set */
646 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
647 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
648 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
649 #define SMBulogoffX      0x74   /* user logoff */
650
651
652 /* these are the TRANS2 sub commands */
653 #define TRANSACT2_OPEN          0
654 #define TRANSACT2_FINDFIRST     1
655 #define TRANSACT2_FINDNEXT      2
656 #define TRANSACT2_QFSINFO       3
657 #define TRANSACT2_SETFSINFO     4
658 #define TRANSACT2_QPATHINFO     5
659 #define TRANSACT2_SETPATHINFO   6
660 #define TRANSACT2_QFILEINFO     7
661 #define TRANSACT2_SETFILEINFO   8
662 #define TRANSACT2_FSCTL         9
663 #define TRANSACT2_IOCTL           10
664 #define TRANSACT2_FINDNOTIFYFIRST 11
665 #define TRANSACT2_FINDNOTIFYNEXT  12
666 #define TRANSACT2_MKDIR           13
667
668
669 /* these are the trans2 sub fields for primary requests */
670 #define smb_tpscnt smb_vwv0
671 #define smb_tdscnt smb_vwv1
672 #define smb_mprcnt smb_vwv2
673 #define smb_mdrcnt smb_vwv3
674 #define smb_msrcnt smb_vwv4
675 #define smb_flags smb_vwv5
676 #define smb_timeout smb_vwv6
677 #define smb_pscnt smb_vwv9
678 #define smb_psoff smb_vwv10
679 #define smb_dscnt smb_vwv11
680 #define smb_dsoff smb_vwv12
681 #define smb_suwcnt smb_vwv13
682 #define smb_setup smb_vwv14
683 #define smb_setup0 smb_setup
684 #define smb_setup1 (smb_setup+2)
685 #define smb_setup2 (smb_setup+4)
686
687 /* these are for the secondary requests */
688 #define smb_spscnt smb_vwv2
689 #define smb_spsoff smb_vwv3
690 #define smb_spsdisp smb_vwv4
691 #define smb_sdscnt smb_vwv5
692 #define smb_sdsoff smb_vwv6
693 #define smb_sdsdisp smb_vwv7
694 #define smb_sfid smb_vwv8
695
696 /* and these for responses */
697 #define smb_tprcnt smb_vwv0
698 #define smb_tdrcnt smb_vwv1
699 #define smb_prcnt smb_vwv3
700 #define smb_proff smb_vwv4
701 #define smb_prdisp smb_vwv5
702 #define smb_drcnt smb_vwv6
703 #define smb_droff smb_vwv7
704 #define smb_drdisp smb_vwv8
705
706 /* where to find the base of the SMB packet proper */
707 #define smb_base(buf) (((char *)(buf))+4)
708
709
710 #define SUCCESS 0  /* The request was successful. */
711 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
712 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
713 #define ERRHRD 0x03  /* Error is an hardware error. */
714 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
715
716 #ifdef __STDC__
717 int Debug1(char *, ...);
718 #else
719 int Debug1();
720 #endif
721
722 #ifdef DFS_AUTH
723 void dfs_unlogin(void);
724 extern int dcelogin_atmost_once;
725 #endif
726
727 #if AJT
728 void ajt_panic(void);
729 #endif
730
731 #ifdef NOSTRDUP
732 char *strdup(char *s);
733 #endif
734
735 #ifdef REPLACE_STRLEN
736 int Strlen(char *);
737 #endif
738
739 #ifdef REPLACE_STRSTR
740 char *Strstr(char *s, char *p);
741 #endif
742
743 #ifndef MIN
744 #define MIN(a,b) ((a)<(b)?(a):(b))
745 #endif
746 #ifndef MAX
747 #define MAX(a,b) ((a)>(b)?(a):(b))
748 #endif
749
750 #ifndef ABS
751 #define ABS(a) ((a)>0?(a):(-(a)))
752 #endif
753
754 #ifndef SIGNAL_CAST
755 #define SIGNAL_CAST
756 #endif
757
758 #ifndef SELECT_CAST
759 #define SELECT_CAST
760 #endif
761
762
763 /* Some POSIX definitions for those without */
764  
765 #ifndef S_IFDIR
766 #define S_IFDIR         0x4000
767 #endif
768 #ifndef S_ISDIR
769 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
770 #endif
771 #ifndef S_IRWXU
772 #define S_IRWXU 00700           /* read, write, execute: owner */
773 #endif
774 #ifndef S_IRUSR
775 #define S_IRUSR 00400           /* read permission: owner */
776 #endif
777 #ifndef S_IWUSR
778 #define S_IWUSR 00200           /* write permission: owner */
779 #endif
780 #ifndef S_IXUSR
781 #define S_IXUSR 00100           /* execute permission: owner */
782 #endif
783 #ifndef S_IRWXG
784 #define S_IRWXG 00070           /* read, write, execute: group */
785 #endif
786 #ifndef S_IRGRP
787 #define S_IRGRP 00040           /* read permission: group */
788 #endif
789 #ifndef S_IWGRP
790 #define S_IWGRP 00020           /* write permission: group */
791 #endif
792 #ifndef S_IXGRP
793 #define S_IXGRP 00010           /* execute permission: group */
794 #endif
795 #ifndef S_IRWXO
796 #define S_IRWXO 00007           /* read, write, execute: other */
797 #endif
798 #ifndef S_IROTH
799 #define S_IROTH 00004           /* read permission: other */
800 #endif
801 #ifndef S_IWOTH
802 #define S_IWOTH 00002           /* write permission: other */
803 #endif
804 #ifndef S_IXOTH
805 #define S_IXOTH 00001           /* execute permission: other */
806 #endif
807
808
809 /* these are used in NetServerEnum to choose what to receive */
810 #define SV_TYPE_WORKSTATION         0x00000001
811 #define SV_TYPE_SERVER              0x00000002
812 #define SV_TYPE_SQLSERVER           0x00000004
813 #define SV_TYPE_DOMAIN_CTRL         0x00000008
814 #define SV_TYPE_DOMAIN_BAKCTRL      0x00000010
815 #define SV_TYPE_TIME_SOURCE         0x00000020
816 #define SV_TYPE_AFP                 0x00000040
817 #define SV_TYPE_NOVELL              0x00000080
818 #define SV_TYPE_DOMAIN_MEMBER       0x00000100
819 #define SV_TYPE_PRINTQ_SERVER       0x00000200
820 #define SV_TYPE_DIALIN_SERVER       0x00000400
821 #define SV_TYPE_SERVER_UNIX         0x00000800
822 #define SV_TYPE_NT                  0x00001000
823 #define SV_TYPE_WFW                 0x00002000
824 #define SV_TYPE_SERVER_MFPN         0x00004000
825 #define SV_TYPE_SERVER_NT           0x00008000
826 #define SV_TYPE_POTENTIAL_BROWSER   0x00010000
827 #define SV_TYPE_BACKUP_BROWSER      0x00020000
828 #define SV_TYPE_MASTER_BROWSER      0x00040000
829 #define SV_TYPE_DOMAIN_MASTER       0x00080000
830 #define SV_TYPE_SERVER_OSF          0x00100000
831 #define SV_TYPE_SERVER_VMS          0x00200000
832 #define SV_TYPE_WIN95_PLUS          0x00400000
833 #define SV_TYPE_ALTERNATE_XPORT     0x20000000  
834 #define SV_TYPE_LOCAL_LIST_ONLY     0x40000000  
835 #define SV_TYPE_DOMAIN_ENUM         0x80000000
836 #define SV_TYPE_ALL                 0xFFFFFFFF  
837
838 /* what server type are we currently  - JHT Says we ARE 4.20 */
839 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
840 /* setting to 4.20 at same time as announcing ourselves as NT Server */
841 /* History: */
842 /* Version 4.0 - never made public */
843 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
844 /*              - Reappeared in 1.9.16p11 with fixed smbd services */
845 /* Version 4.20 - To indicate that nmbd and browsing now works better */
846
847 #define DEFAULT_MAJOR_VERSION 0x04
848 #define DEFAULT_MINOR_VERSION 0x02
849
850 /* Browser Election Values */
851 #define BROWSER_ELECTION_VERSION        0x010f
852 #define BROWSER_CONSTANT        0xaa55
853
854
855 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
856
857 #define CAP_RAW_MODE         0x0001
858 #define CAP_MPX_MODE         0x0002
859 #define CAP_UNICODE          0x0004
860 #define CAP_LARGE_FILES      0x0008
861 #define CAP_NT_SMBS          0x0010
862 #define CAP_RPC_REMOTE_APIS  0x0020
863 #define CAP_STATUS32         0x0040
864 #define CAP_LEVEL_II_OPLOCKS 0x0080
865 #define CAP_LOCK_AND_READ    0x0100
866 #define CAP_NT_FIND          0x0200
867 #define CAP_DFS              0x1000
868 #define CAP_LARGE_READX      0x4000
869
870 /* protocol types. It assumes that higher protocols include lower protocols
871    as subsets */
872 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
873
874 /* security levels */
875 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER};
876
877 /* printing types */
878 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
879                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG};
880
881
882 /* case handling */
883 enum case_handling {CASE_LOWER,CASE_UPPER};
884
885
886 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
887    structures. We cannot define these as actual structures
888    due to possible differences in structure packing
889    on different machines/compilers. */
890
891 #define SMB_LPID_OFFSET(indx) (10 * (indx))
892 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
893 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
894
895 /* Macro to cache an error in a write_bmpx_struct */
896 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
897                             w->wr_discard = True, -1)
898 /* Macro to test if an error has been cached for this fnum */
899 #define HAS_CACHED_ERROR(fnum) (Files[(fnum)].open && \
900                                 Files[(fnum)].wbmpx_ptr && \
901                                 Files[(fnum)].wbmpx_ptr->wr_discard)
902 /* Macro to turn the cached error into an error packet */
903 #define CACHED_ERROR(fnum) cached_error_packet(inbuf,outbuf,fnum,__LINE__)
904
905 /* these are the datagram types */
906 #define DGRAM_DIRECT_UNIQUE 0x10
907
908 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
909
910 /* this is how errors are generated */
911 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
912
913 #define ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
914
915 /*
916  * Global value meaing that the smb_uid field should be
917  * ingored (in share level security and protocol level == CORE)
918  */
919
920 #define UID_FIELD_INVALID 0
921 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
922
923 #endif 
924
925 /* Default client code page - 850 - Western European */
926 #define DEFAULT_CLIENT_CODE_PAGE 850
927
928 /* Size of buffer to use when moving files across filesystems. */
929 #define COPYBUF_SIZE (8*1024)
930
931 /* _SMB_H */