2 Unix SMB/Netbios implementation.
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
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.
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.
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.
27 /* Yves Gaige <yvesg@hptnodur.grenoble.hp.com> requested this */
28 #define MAXPRINTERLEN 15
30 #define BUFFER_SIZE (0xFFFF)
31 #define SAFETY_MARGIN 1024
34 #define DGRAM_PORT 138
39 #define BOOLSTR(b) ((b) ? "Yes" : "No")
40 #define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0)
41 #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
43 #define IS_BITS_SET_ALL(var,bit) (((var)&(bit))==(bit))
44 #define IS_BITS_SET_SOME(var,bit) (((var)&(bit))!=0)
45 #define IS_BITS_CLR_ALL(var,bit) (((var)&(~(bit)))==0)
47 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
51 /* limiting size of ipc replies */
52 #define REALLOC(ptr,size) Realloc(ptr,MAX((size),4*1024))
55 Samba needs type definitions for int16, int32, uint16 and uint32.
57 Normally these are signed and unsigned 16 and 32 bit integers, but
58 they actually only need to be at least 16 and 32 bits
59 respectively. Thus if your word size is 8 bytes just defining them
60 as signed and unsigned int will work.
63 /* afs/stds.h defines int16 and int32 */
70 typedef unsigned char uint8;
74 typedef unsigned short uint16;
78 typedef unsigned int uint32;
82 #define uchar unsigned char
88 #define uint16 unsigned short
91 #define uint32 unsigned int
96 #ifndef DEF_CREATE_MASK
97 #define DEF_CREATE_MASK (0755)
100 /* how long to wait for secondary SMB packets (milli-seconds) */
101 #define SMB_SECONDARY_WAIT (60*1000)
105 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))?(Debug1 body):0)
107 extern int syslog_level;
109 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))? (syslog_level = (level), Debug1 body):0)
112 /* this defines the error codes that receive_smb can put in smb_read_error */
113 #define READ_TIMEOUT 1
118 #define DIR_STRUCT_SIZE 43
120 /* these define all the command types recognised by the server - there
121 are lots of gaps so probably there are some rare commands that are not
124 #define pSETDIR '\377'
126 /* these define the attribute byte as seen by DOS */
127 #define aRONLY (1L<<0)
128 #define aHIDDEN (1L<<1)
129 #define aSYSTEM (1L<<2)
130 #define aVOLID (1L<<3)
132 #define aARCH (1L<<5)
143 #define STYPE_DISKTREE 0 /* Disk drive */
144 #define STYPE_PRINTQ 1 /* Spooler queue */
145 #define STYPE_DEVICE 2 /* Serial device */
146 #define STYPE_IPC 3 /* Interprocess communication (IPC) */
147 #define STYPE_HIDDEN 0x80000000 /* share is a hidden one (ends with $) */
149 /* SMB X/Open error codes for the ERRdos error class */
150 #define ERRbadfunc 1 /* Invalid function (or system call) */
151 #define ERRbadfile 2 /* File not found (pathname error) */
152 #define ERRbadpath 3 /* Directory not found */
153 #define ERRnofids 4 /* Too many open files */
154 #define ERRnoaccess 5 /* Access denied */
155 #define ERRbadfid 6 /* Invalid fid */
156 #define ERRnomem 8 /* Out of memory */
157 #define ERRbadmem 9 /* Invalid memory block address */
158 #define ERRbadenv 10 /* Invalid environment */
159 #define ERRbadaccess 12 /* Invalid open mode */
160 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
161 #define ERRres 14 /* reserved */
162 #define ERRbaddrive 15 /* Invalid drive */
163 #define ERRremcd 16 /* Attempt to delete current directory */
164 #define ERRdiffdevice 17 /* rename/move across different filesystems */
165 #define ERRnofiles 18 /* no more files found in file search */
166 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
167 #define ERRlock 33 /* Lock request conflicts with existing lock */
168 #define ERRfilexists 80 /* File in operation already exists */
169 #define ERRcannotopen 110 /* Cannot open the file specified */
170 #define ERRunknownlevel 124
171 #define ERRbadpipe 230 /* Named pipe invalid */
172 #define ERRpipebusy 231 /* All instances of pipe are busy */
173 #define ERRpipeclosing 232 /* named pipe close in progress */
174 #define ERRnotconnected 233 /* No process on other end of named pipe */
175 #define ERRmoredata 234 /* More data to be returned */
176 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
177 #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
178 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
179 #define ERRunknownipc 2142
182 /* here's a special one from observing NT */
183 #define ERRnoipc 66 /* don't support ipc */
185 /* Error codes for the ERRSRV class */
187 #define ERRerror 1 /* Non specific error code */
188 #define ERRbadpw 2 /* Bad password */
189 #define ERRbadtype 3 /* reserved */
190 #define ERRaccess 4 /* No permissions to do the requested operation */
191 #define ERRinvnid 5 /* tid invalid */
192 #define ERRinvnetname 6 /* Invalid servername */
193 #define ERRinvdevice 7 /* Invalid device */
194 #define ERRqfull 49 /* Print queue full */
195 #define ERRqtoobig 50 /* Queued item too big */
196 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
197 #define ERRsmbcmd 64 /* Unrecognised command */
198 #define ERRsrverror 65 /* smb server internal error */
199 #define ERRfilespecs 67 /* fid and pathname invalid combination */
200 #define ERRbadlink 68 /* reserved */
201 #define ERRbadpermits 69 /* Access specified for a file is not valid */
202 #define ERRbadpid 70 /* reserved */
203 #define ERRsetattrmode 71 /* attribute mode invalid */
204 #define ERRpaused 81 /* Message server paused */
205 #define ERRmsgoff 82 /* Not receiving messages */
206 #define ERRnoroom 83 /* No room for message */
207 #define ERRrmuns 87 /* too many remote usernames */
208 #define ERRtimeout 88 /* operation timed out */
209 #define ERRnoresource 89 /* No resources currently available for request. */
210 #define ERRtoomanyuids 90 /* too many userids */
211 #define ERRbaduid 91 /* bad userid */
212 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
213 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
214 #define ERRcontMPX 252 /* resume MPX mode */
215 #define ERRbadPW /* reserved */
216 #define ERRnosupport 0xFFFF
217 #define ERRunknownsmb 22 /* from NT 3.5 response */
220 /* Error codes for the ERRHRD class */
222 #define ERRnowrite 19 /* read only media */
223 #define ERRbadunit 20 /* Unknown device */
224 #define ERRnotready 21 /* Drive not ready */
225 #define ERRbadcmd 22 /* Unknown command */
226 #define ERRdata 23 /* Data (CRC) error */
227 #define ERRbadreq 24 /* Bad request structure length */
229 #define ERRbadmedia 26
230 #define ERRbadsector 27
231 #define ERRnopaper 28
232 #define ERRwrite 29 /* write fault */
233 #define ERRread 30 /* read fault */
234 #define ERRgeneral 31 /* General hardware failure */
235 #define ERRwrongdisk 34
236 #define ERRFCBunavail 35
237 #define ERRsharebufexc 36 /* share buffer exceeded */
238 #define ERRdiskfull 39
241 typedef char pstring[1024];
242 typedef char fstring[128];
243 typedef fstring string;
247 #define PIPE_LANMAN "\\PIPE\\LANMAN"
248 #define PIPE_SRVSVC "\\PIPE\\srvsvc"
249 #define PIPE_SAMR "\\PIPE\\samr"
250 #define PIPE_WKSSVC "\\PIPE\\wkssvc"
251 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
252 #define PIPE_NTLSA "\\PIPE\\ntlsa"
253 #define PIPE_NTSVCS "\\PIPE\\ntsvcs"
254 #define PIPE_LSASS "\\PIPE\\lsass"
255 #define PIPE_LSARPC "\\PIPE\\lsarpc"
257 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
258 typedef struct time_info
264 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
265 typedef struct nttime_info
272 /* Allowable account control bits */
273 #define ACB_DISABLED 0x0001 /* 1 = User account disabled */
274 #define ACB_HOMDIRREQ 0x0002 /* 1 = Home directory required */
275 #define ACB_PWNOTREQ 0x0004 /* 1 = User password not required */
276 #define ACB_TEMPDUP 0x0008 /* 1 = Temporary duplicate account */
277 #define ACB_NORMAL 0x0010 /* 1 = Normal user account */
278 #define ACB_MNS 0x0020 /* 1 = MNS logon user account */
279 #define ACB_DOMTRUST 0x0040 /* 1 = Interdomain trust account */
280 #define ACB_WSTRUST 0x0080 /* 1 = Workstation trust account */
281 #define ACB_SVRTRUST 0x0100 /* 1 = Server trust account */
282 #define ACB_PWNOEXP 0x0200 /* 1 = User password does not expire */
283 #define ACB_AUTOLOCK 0x0400 /* 1 = Account auto locked */
289 unsigned char *smb_passwd; /* Null if no password */
290 unsigned char *smb_nt_passwd; /* Null if no password */
291 /* Other fields / flags may be added later */
311 int readbraw_supported;
312 int writebraw_supported;
338 /* these times are normally kept in GMT */
347 /* Structure used when SMBwritebmpx is active */
350 int wr_total_written; /* So we know when to discard this */
353 int32 wr_error; /* Cached errors */
354 BOOL wr_mode; /* write through mode) */
355 BOOL wr_discard; /* discard all further data */
359 * Structure used to indirect fd's from the files_struct.
360 * Needed as POSIX locking is based on file and process, not
361 * file descriptor and process.
378 file_fd_struct *fd_ptr;
385 write_bmpx_struct *wbmpx_ptr;
386 struct timeval open_time;
395 BOOL sent_oplock_break;
403 int list[UID_CACHE_SIZE];
410 } name_compare_entry;
416 struct uid_cache uid_cache;
426 char *user; /* name of user who *opened* this connection */
427 int uid; /* uid of user who *opened* this connection */
428 int gid; /* gid of user who *opened* this connection */
430 uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
432 /* following groups stuff added by ih */
434 /* This groups info is valid for the user that *opened* the connection */
437 int *igroups; /* an integer version - some OSes are broken :-( */
443 name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
444 name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
445 name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */
449 /* DOM_CHAL - challenge info */
450 typedef struct chal_info
452 uchar data[8]; /* credentials */
455 /* DOM_CREDs - timestamped client or server credentials */
456 typedef struct cred_info
458 DOM_CHAL challenge; /* credentials */
459 UTIME timestamp; /* credential time-stamp */
463 /* Domain controller authentication protocol info */
466 DOM_CHAL clnt_chal; /* Initial challenge received from client */
467 DOM_CHAL srv_chal; /* Initial server challenge */
468 DOM_CRED clnt_cred; /* Last client credential */
469 DOM_CRED srv_cred; /* Last server credential */
471 uchar sess_key[8]; /* Session key */
472 uchar md4pw[16]; /* md4(machine password) */
477 int uid; /* uid of a validated user */
478 int gid; /* gid of a validated user */
480 fstring name; /* name of a validated user */
481 fstring real_name; /* to store real name from password file - simeon */
484 /* following groups stuff added by ih */
485 /* This groups info is needed for when we become_user() for this uid */
488 int *igroups; /* an integer version - some OSes are broken :-( */
489 int *attrs; /* attributes associated with each gid */
494 /* per-user authentication information on NT RPCs */
500 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
511 } print_queue_struct;
513 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
519 } print_status_struct;
521 /* used for server information: client, nameserv and ipc */
522 struct server_info_struct
527 fstring domain; /* used ONLY in ipc.c NOT namework.c */
528 BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
532 /* used for network interfaces */
535 struct interface *next;
537 struct in_addr bcast;
538 struct in_addr nmask;
541 /* struct returned by get_share_modes */
552 /* each implementation of the share mode code needs
553 to support the following operations */
555 BOOL (*stop_mgmt)(void);
556 BOOL (*lock_entry)(int , uint32 , uint32 , int *);
557 BOOL (*unlock_entry)(int , uint32 , uint32 , int );
558 int (*get_entries)(int , int , uint32 , uint32 , share_mode_entry **);
559 void (*del_entry)(int , int );
560 BOOL (*set_entry)(int , int , uint16 , uint16 );
561 BOOL (*remove_oplock)(int , int);
562 int (*forall)(void (*)(share_mode_entry *, char *));
563 void (*status)(FILE *);
566 /* each implementation of the shared memory code needs
567 to support the following operations */
569 BOOL (*shm_close)( void );
570 int (*shm_alloc)(int );
571 BOOL (*shm_free)(int );
572 int (*get_userdef_off)(void);
573 void *(*offset2addr)(int );
574 int (*addr2offset)(void *addr);
575 BOOL (*lock_hash_entry)(unsigned int);
576 BOOL (*unlock_hash_entry)( unsigned int );
577 BOOL (*get_usage)(int *,int *,int *);
578 unsigned (*hash_size)(void);
582 /* this is used for smbstatus */
583 struct connect_record
596 /* This is used by smbclient to send it to a smbfs mount point */
597 struct connection_options {
599 /* Connection-Options */
603 /* The following are LANMAN 1.0 options */
609 /* The following are NT LM 0.12 options */
615 /* the following are used by loadparm for option lists */
618 P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
619 P_STRING,P_USTRING,P_GSTRING,P_UGSTRING,P_ENUM,P_SEP
624 P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
639 struct enum_list *enum_list;
650 #define FLAG_BASIC 1 /* fundamental options */
651 #define FLAG_HIDE 2 /* options that should be hidden in SWAT */
652 #define FLAG_PRINT 4 /* printing options */
653 #define FLAG_GLOBAL 8 /* local options that should be globally settable in SWAT */
655 #ifndef LOCKING_VERSION
656 #define LOCKING_VERSION 4
657 #endif /* LOCKING_VERSION */
659 /* these are useful macros for checking validity of handles */
660 #define VALID_FNUM(fnum) (((fnum) >= 0) && ((fnum) < MAX_OPEN_FILES))
661 #define OPEN_FNUM(fnum) (VALID_FNUM(fnum) && Files[fnum].open)
662 #define VALID_CNUM(cnum) (((cnum) >= 0) && ((cnum) < MAX_CONNECTIONS))
663 #define OPEN_CNUM(cnum) (VALID_CNUM(cnum) && Connections[cnum].open)
664 #define IS_IPC(cnum) (VALID_CNUM(cnum) && Connections[cnum].ipc)
665 #define IS_PRINT(cnum) (VALID_CNUM(cnum) && Connections[cnum].printer)
666 #define FNUM_OK(fnum,c) (OPEN_FNUM(fnum) && (c)==Files[fnum].cnum)
668 #define CHECK_FNUM(fnum,c) if (!FNUM_OK(fnum,c)) \
669 return(ERROR(ERRDOS,ERRbadfid))
670 #define CHECK_READ(fnum) if (!Files[fnum].can_read) \
671 return(ERROR(ERRDOS,ERRbadaccess))
672 #define CHECK_WRITE(fnum) if (!Files[fnum].can_write) \
673 return(ERROR(ERRDOS,ERRbadaccess))
674 #define CHECK_ERROR(fnum) if (HAS_CACHED_ERROR(fnum)) \
675 return(CACHED_ERROR(fnum))
677 /* translates a connection number into a service number */
678 #define SNUM(cnum) (Connections[cnum].service)
680 /* access various service details */
681 #define SERVICE(snum) (lp_servicename(snum))
682 #define PRINTCAP (lp_printcapname())
683 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
684 #define PRINTERNAME(snum) (lp_printername(snum))
685 #define CAN_WRITE(cnum) (OPEN_CNUM(cnum) && !Connections[cnum].read_only)
686 #define VALID_SNUM(snum) (lp_snum_ok(snum))
687 #define GUEST_OK(snum) (VALID_SNUM(snum) && lp_guest_ok(snum))
688 #define GUEST_ONLY(snum) (VALID_SNUM(snum) && lp_guest_only(snum))
689 #define CAN_SETDIR(snum) (!lp_no_set_dir(snum))
690 #define CAN_PRINT(cnum) (OPEN_CNUM(cnum) && lp_print_ok(SNUM(cnum)))
691 #define POSTSCRIPT(cnum) (OPEN_CNUM(cnum) && lp_postscript(SNUM(cnum)))
692 #define MAP_HIDDEN(cnum) (OPEN_CNUM(cnum) && lp_map_hidden(SNUM(cnum)))
693 #define MAP_SYSTEM(cnum) (OPEN_CNUM(cnum) && lp_map_system(SNUM(cnum)))
694 #define MAP_ARCHIVE(cnum) (OPEN_CNUM(cnum) && lp_map_archive(SNUM(cnum)))
695 #define IS_HIDDEN_PATH(cnum,path) (is_in_path((path),Connections[(cnum)].hide_list))
696 #define IS_VETO_PATH(cnum,path) (is_in_path((path),Connections[(cnum)].veto_list))
697 #define IS_VETO_OPLOCK_PATH(cnum,path) (is_in_path((path),Connections[(cnum)].veto_oplock_list))
699 #define SMBENCRYPT() (lp_encrypted_passwords())
701 /* the basic packet size, assuming no words or bytes */
704 /* offsets into message for common items */
739 #define SMBmkdir 0x00 /* create directory */
740 #define SMBrmdir 0x01 /* delete directory */
741 #define SMBopen 0x02 /* open file */
742 #define SMBcreate 0x03 /* create file */
743 #define SMBclose 0x04 /* close file */
744 #define SMBflush 0x05 /* flush file */
745 #define SMBunlink 0x06 /* delete file */
746 #define SMBmv 0x07 /* rename file */
747 #define SMBgetatr 0x08 /* get file attributes */
748 #define SMBsetatr 0x09 /* set file attributes */
749 #define SMBread 0x0A /* read from file */
750 #define SMBwrite 0x0B /* write to file */
751 #define SMBlock 0x0C /* lock byte range */
752 #define SMBunlock 0x0D /* unlock byte range */
753 #define SMBctemp 0x0E /* create temporary file */
754 #define SMBmknew 0x0F /* make new file */
755 #define SMBchkpth 0x10 /* check directory path */
756 #define SMBexit 0x11 /* process exit */
757 #define SMBlseek 0x12 /* seek */
758 #define SMBtcon 0x70 /* tree connect */
759 #define SMBtconX 0x75 /* tree connect and X*/
760 #define SMBtdis 0x71 /* tree disconnect */
761 #define SMBnegprot 0x72 /* negotiate protocol */
762 #define SMBdskattr 0x80 /* get disk attributes */
763 #define SMBsearch 0x81 /* search directory */
764 #define SMBsplopen 0xC0 /* open print spool file */
765 #define SMBsplwr 0xC1 /* write to print spool file */
766 #define SMBsplclose 0xC2 /* close print spool file */
767 #define SMBsplretq 0xC3 /* return print queue */
768 #define SMBsends 0xD0 /* send single block message */
769 #define SMBsendb 0xD1 /* send broadcast message */
770 #define SMBfwdname 0xD2 /* forward user name */
771 #define SMBcancelf 0xD3 /* cancel forward */
772 #define SMBgetmac 0xD4 /* get machine name */
773 #define SMBsendstrt 0xD5 /* send start of multi-block message */
774 #define SMBsendend 0xD6 /* send end of multi-block message */
775 #define SMBsendtxt 0xD7 /* send text of multi-block message */
778 #define SMBlockread 0x13 /* Lock a range and read */
779 #define SMBwriteunlock 0x14 /* Unlock a range then write */
780 #define SMBreadbraw 0x1a /* read a block of data with no smb header */
781 #define SMBwritebraw 0x1d /* write a block of data with no smb header */
782 #define SMBwritec 0x20 /* secondary write request */
783 #define SMBwriteclose 0x2c /* write a file then close it */
785 /* dos extended protocol */
786 #define SMBreadBraw 0x1A /* read block raw */
787 #define SMBreadBmpx 0x1B /* read block multiplexed */
788 #define SMBreadBs 0x1C /* read block (secondary response) */
789 #define SMBwriteBraw 0x1D /* write block raw */
790 #define SMBwriteBmpx 0x1E /* write block multiplexed */
791 #define SMBwriteBs 0x1F /* write block (secondary request) */
792 #define SMBwriteC 0x20 /* write complete response */
793 #define SMBsetattrE 0x22 /* set file attributes expanded */
794 #define SMBgetattrE 0x23 /* get file attributes expanded */
795 #define SMBlockingX 0x24 /* lock/unlock byte ranges and X */
796 #define SMBtrans 0x25 /* transaction - name, bytes in/out */
797 #define SMBtranss 0x26 /* transaction (secondary request/response) */
798 #define SMBioctl 0x27 /* IOCTL */
799 #define SMBioctls 0x28 /* IOCTL (secondary request/response) */
800 #define SMBcopy 0x29 /* copy */
801 #define SMBmove 0x2A /* move */
802 #define SMBecho 0x2B /* echo */
803 #define SMBopenX 0x2D /* open and X */
804 #define SMBreadX 0x2E /* read and X */
805 #define SMBwriteX 0x2F /* write and X */
806 #define SMBsesssetupX 0x73 /* Session Set Up & X (including User Logon) */
807 #define SMBffirst 0x82 /* find first */
808 #define SMBfunique 0x83 /* find unique */
809 #define SMBfclose 0x84 /* find close */
810 #define SMBinvalid 0xFE /* invalid command */
812 /* Extended 2.0 protocol */
813 #define SMBtrans2 0x32 /* TRANS2 protocol set */
814 #define SMBtranss2 0x33 /* TRANS2 protocol set, secondary command */
815 #define SMBfindclose 0x34 /* Terminate a TRANSACT2_FINDFIRST */
816 #define SMBfindnclose 0x35 /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
817 #define SMBulogoffX 0x74 /* user logoff */
819 /* NT SMB extensions. */
820 #define SMBnttrans 0xA0 /* NT transact */
821 #define SMBnttranss 0xA1 /* NT transact secondary */
822 #define SMBntcreateX 0xA2 /* NT create and X */
823 #define SMBntcancel 0xA4 /* NT cancel */
825 /* These are the TRANS2 sub commands */
826 #define TRANSACT2_OPEN 0
827 #define TRANSACT2_FINDFIRST 1
828 #define TRANSACT2_FINDNEXT 2
829 #define TRANSACT2_QFSINFO 3
830 #define TRANSACT2_SETFSINFO 4
831 #define TRANSACT2_QPATHINFO 5
832 #define TRANSACT2_SETPATHINFO 6
833 #define TRANSACT2_QFILEINFO 7
834 #define TRANSACT2_SETFILEINFO 8
835 #define TRANSACT2_FSCTL 9
836 #define TRANSACT2_IOCTL 0xA
837 #define TRANSACT2_FINDNOTIFYFIRST 0xB
838 #define TRANSACT2_FINDNOTIFYNEXT 0xC
839 #define TRANSACT2_MKDIR 0xD
840 #define TRANSACT2_SESSION_SETUP 0xE
841 #define TRANSACT2_GET_DFS_REFERRAL 0x10
842 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
844 /* These are the NT transact sub commands. */
845 #define NT_TRANSACT_CREATE 1
846 #define NT_TRANSACT_IOCTL 2
847 #define NT_TRANSACT_SET_SECURITY_DESC 3
848 #define NT_TRANSACT_NOTIFY_CHANGE 4
849 #define NT_TRANSACT_RENAME 5
850 #define NT_TRANSACT_QUERY_SECURITY_DESC 6
852 /* these are the trans2 sub fields for primary requests */
853 #define smb_tpscnt smb_vwv0
854 #define smb_tdscnt smb_vwv1
855 #define smb_mprcnt smb_vwv2
856 #define smb_mdrcnt smb_vwv3
857 #define smb_msrcnt smb_vwv4
858 #define smb_flags smb_vwv5
859 #define smb_timeout smb_vwv6
860 #define smb_pscnt smb_vwv9
861 #define smb_psoff smb_vwv10
862 #define smb_dscnt smb_vwv11
863 #define smb_dsoff smb_vwv12
864 #define smb_suwcnt smb_vwv13
865 #define smb_setup smb_vwv14
866 #define smb_setup0 smb_setup
867 #define smb_setup1 (smb_setup+2)
868 #define smb_setup2 (smb_setup+4)
870 /* these are for the secondary requests */
871 #define smb_spscnt smb_vwv2
872 #define smb_spsoff smb_vwv3
873 #define smb_spsdisp smb_vwv4
874 #define smb_sdscnt smb_vwv5
875 #define smb_sdsoff smb_vwv6
876 #define smb_sdsdisp smb_vwv7
877 #define smb_sfid smb_vwv8
879 /* and these for responses */
880 #define smb_tprcnt smb_vwv0
881 #define smb_tdrcnt smb_vwv1
882 #define smb_prcnt smb_vwv3
883 #define smb_proff smb_vwv4
884 #define smb_prdisp smb_vwv5
885 #define smb_drcnt smb_vwv6
886 #define smb_droff smb_vwv7
887 #define smb_drdisp smb_vwv8
889 /* where to find the base of the SMB packet proper */
890 #define smb_base(buf) (((char *)(buf))+4)
893 #define SUCCESS 0 /* The request was successful. */
894 #define ERRDOS 0x01 /* Error is from the core DOS operating system set. */
895 #define ERRSRV 0x02 /* Error is generated by the server network file manager.*/
896 #define ERRHRD 0x03 /* Error is an hardware error. */
897 #define ERRCMD 0xFF /* Command was not in the "SMB" format. */
900 int Debug1(char *, ...);
906 void dfs_unlogin(void);
907 extern int dcelogin_atmost_once;
911 void ajt_panic(void);
915 char *strdup(char *s);
918 #ifdef REPLACE_STRLEN
922 #ifdef REPLACE_STRSTR
923 char *Strstr(char *s, char *p);
927 #define MIN(a,b) ((a)<(b)?(a):(b))
930 #define MAX(a,b) ((a)>(b)?(a):(b))
934 #define ABS(a) ((a)>0?(a):(-(a)))
946 /* Some POSIX definitions for those without */
949 #define S_IFDIR 0x4000
952 #define S_ISDIR(mode) ((mode & 0xF000) == S_IFDIR)
955 #define S_IRWXU 00700 /* read, write, execute: owner */
958 #define S_IRUSR 00400 /* read permission: owner */
961 #define S_IWUSR 00200 /* write permission: owner */
964 #define S_IXUSR 00100 /* execute permission: owner */
967 #define S_IRWXG 00070 /* read, write, execute: group */
970 #define S_IRGRP 00040 /* read permission: group */
973 #define S_IWGRP 00020 /* write permission: group */
976 #define S_IXGRP 00010 /* execute permission: group */
979 #define S_IRWXO 00007 /* read, write, execute: other */
982 #define S_IROTH 00004 /* read permission: other */
985 #define S_IWOTH 00002 /* write permission: other */
988 #define S_IXOTH 00001 /* execute permission: other */
992 /* these are used in NetServerEnum to choose what to receive */
993 #define SV_TYPE_WORKSTATION 0x00000001
994 #define SV_TYPE_SERVER 0x00000002
995 #define SV_TYPE_SQLSERVER 0x00000004
996 #define SV_TYPE_DOMAIN_CTRL 0x00000008
997 #define SV_TYPE_DOMAIN_BAKCTRL 0x00000010
998 #define SV_TYPE_TIME_SOURCE 0x00000020
999 #define SV_TYPE_AFP 0x00000040
1000 #define SV_TYPE_NOVELL 0x00000080
1001 #define SV_TYPE_DOMAIN_MEMBER 0x00000100
1002 #define SV_TYPE_PRINTQ_SERVER 0x00000200
1003 #define SV_TYPE_DIALIN_SERVER 0x00000400
1004 #define SV_TYPE_SERVER_UNIX 0x00000800
1005 #define SV_TYPE_NT 0x00001000
1006 #define SV_TYPE_WFW 0x00002000
1007 #define SV_TYPE_SERVER_MFPN 0x00004000
1008 #define SV_TYPE_SERVER_NT 0x00008000
1009 #define SV_TYPE_POTENTIAL_BROWSER 0x00010000
1010 #define SV_TYPE_BACKUP_BROWSER 0x00020000
1011 #define SV_TYPE_MASTER_BROWSER 0x00040000
1012 #define SV_TYPE_DOMAIN_MASTER 0x00080000
1013 #define SV_TYPE_SERVER_OSF 0x00100000
1014 #define SV_TYPE_SERVER_VMS 0x00200000
1015 #define SV_TYPE_WIN95_PLUS 0x00400000
1016 #define SV_TYPE_ALTERNATE_XPORT 0x20000000
1017 #define SV_TYPE_LOCAL_LIST_ONLY 0x40000000
1018 #define SV_TYPE_DOMAIN_ENUM 0x80000000
1019 #define SV_TYPE_ALL 0xFFFFFFFF
1021 /* what server type are we currently - JHT Says we ARE 4.20 */
1022 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1023 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1025 /* Version 4.0 - never made public */
1026 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1027 /* - Reappeared in 1.9.16p11 with fixed smbd services */
1028 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1030 #define DEFAULT_MAJOR_VERSION 0x04
1031 #define DEFAULT_MINOR_VERSION 0x02
1033 /* Browser Election Values */
1034 #define BROWSER_ELECTION_VERSION 0x010f
1035 #define BROWSER_CONSTANT 0xaa55
1037 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
1039 #define FLAGS2_LONG_PATH_COMPONENTS 0x0001
1040 #define FLAGS2_EXTENDED_ATTRIBUTES 0x0002
1041 #define FLAGS2_DFS_PATHNAMES 0x1000
1042 #define FLAGS2_READ_PERMIT_NO_EXECUTE 0x2000
1043 #define FLAGS2_32_BIT_ERROR_CODES 0x4000
1044 #define FLAGS2_UNICODE_STRINGS 0x8000
1046 /* Capabilities. see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1048 #define CAP_RAW_MODE 0x0001
1049 #define CAP_MPX_MODE 0x0002
1050 #define CAP_UNICODE 0x0004
1051 #define CAP_LARGE_FILES 0x0008
1052 #define CAP_NT_SMBS 0x0010
1053 #define CAP_RPC_REMOTE_APIS 0x0020
1054 #define CAP_STATUS32 0x0040
1055 #define CAP_LEVEL_II_OPLOCKS 0x0080
1056 #define CAP_LOCK_AND_READ 0x0100
1057 #define CAP_NT_FIND 0x0200
1058 #define CAP_DFS 0x1000
1059 #define CAP_LARGE_READX 0x4000
1061 /* protocol types. It assumes that higher protocols include lower protocols
1063 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1065 /* security levels */
1066 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER};
1068 /* printing types */
1069 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1070 PRINT_QNX,PRINT_PLP,PRINT_LPRNG};
1072 /* Remote architectures we know about. */
1073 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_SAMBA};
1076 enum case_handling {CASE_LOWER,CASE_UPPER};
1079 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
1080 structures. We cannot define these as actual structures
1081 due to possible differences in structure packing
1082 on different machines/compilers. */
1084 #define SMB_LPID_OFFSET(indx) (10 * (indx))
1085 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
1086 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
1088 /* Macro to cache an error in a write_bmpx_struct */
1089 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
1090 w->wr_discard = True, -1)
1091 /* Macro to test if an error has been cached for this fnum */
1092 #define HAS_CACHED_ERROR(fnum) (Files[(fnum)].open && \
1093 Files[(fnum)].wbmpx_ptr && \
1094 Files[(fnum)].wbmpx_ptr->wr_discard)
1095 /* Macro to turn the cached error into an error packet */
1096 #define CACHED_ERROR(fnum) cached_error_packet(inbuf,outbuf,fnum,__LINE__)
1098 /* these are the datagram types */
1099 #define DGRAM_DIRECT_UNIQUE 0x10
1101 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
1103 /* this is how errors are generated */
1104 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
1106 #define ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
1109 * Global value meaing that the smb_uid field should be
1110 * ingored (in share level security and protocol level == CORE)
1113 #define UID_FIELD_INVALID 0
1114 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1116 /* Defines needed for multi-codepage support. */
1117 #define MSDOS_LATIN_1_CODEPAGE 850
1118 #define KANJI_CODEPAGE 932
1119 #define HANGUL_CODEPAGE 949
1120 #define BIG5_CODEPAGE 950
1124 * Default client code page - Japanese
1126 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1129 * Default client code page - 850 - Western European
1131 #define DEFAULT_CLIENT_CODE_PAGE MSDOS_LATIN_1_CODEPAGE
1135 * Size of buffer to use when moving files across filesystems.
1137 #define COPYBUF_SIZE (8*1024)
1140 * Integers used to override error codes.
1142 extern int unix_ERR_class;
1143 extern int unix_ERR_code;
1146 * Map the Core and Extended Oplock requesst bits down
1147 * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1153 #define CORE_OPLOCK_REQUEST(inbuf) ((CVAL(inbuf,smb_flg)&((1<<5)|(1<<6)))>>5)
1156 * Extended protocol.
1158 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1161 #define LOCKING_ANDX_SHARED_LOCK 0x1
1162 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1163 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1164 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1165 #define LOCKING_ANDX_LARGE_FILES 0x10
1168 #define OPLOCKLEVEL_NONE 0
1169 #define OPLOCKLEVEL_II 1
1172 * Bits we test with.
1174 #define EXCLUSIVE_OPLOCK 1
1175 #define BATCH_OPLOCK 2
1177 #define CORE_OPLOCK_GRANTED (1<<5)
1178 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1181 * Loopback command offsets.
1184 #define UDP_CMD_LEN_OFFSET 0
1185 #define UDP_CMD_PORT_OFFSET 4
1186 #define UDP_CMD_HEADER_LEN 6
1188 #define UDP_MESSAGE_CMD_OFFSET 0
1191 * Oplock break command code to send over the udp socket.
1196 * +----+--------+--------+--------+-------+--------+
1197 * | cmd| pid | dev | inode | sec | usec |
1198 * +----+--------+--------+--------+-------+--------+
1201 #define OPLOCK_BREAK_CMD 0x1
1202 #define OPLOCK_BREAK_PID_OFFSET 2
1203 #define OPLOCK_BREAK_DEV_OFFSET 6
1204 #define OPLOCK_BREAK_INODE_OFFSET 10
1205 #define OPLOCK_BREAK_SEC_OFFSET 14
1206 #define OPLOCK_BREAK_USEC_OFFSET 18
1207 #define OPLOCK_BREAK_MSG_LEN 22
1210 #define CMD_REPLY 0x8000
1214 #include "ntdomain.h"