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