2 Unix SMB/Netbios implementation.
4 SMB parameters and setup
5 Copyright (C) Andrew Tridgell 1992-1997
6 Copyright (C) John H Terpstra 1996-1997
7 Copyright (C) Luke Kenneth Casson Leighton 1996-1997
8 Copyright (C) Paul Ashton 1997
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 #ifndef MAX_CONNECTIONS
28 #define MAX_CONNECTIONS 127
31 #ifndef MAX_OPEN_FILES
32 #define MAX_OPEN_FILES 50
36 #define GUEST_ACCOUNT "nobody"
39 #define BUFFER_SIZE (0xFFFF)
40 #define SAFETY_MARGIN 1024
42 /* Default size of shared memory used for share mode locking */
44 #define SHMEM_SIZE 102400
47 /* Default number of hash buckets used in shared memory share mode */
48 #ifndef SHMEM_HASH_SIZE
50 #define SHMEM_HASH_SIZE (SEMMSL-1)
52 #define SHMEM_HASH_SIZE 15
57 #define DGRAM_PORT 138
62 #define BOOLSTR(b) ((b) ? "Yes" : "No")
63 #define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0)
64 #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
65 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
69 /* offset in shared memory */
70 #define NULL_OFFSET (int)(0)
72 /* limiting size of ipc replies */
73 #define REALLOC(ptr,size) Realloc(ptr,MAX((size),4*1024))
76 Samba needs type definitions for int16, int32, uint16 and uint32.
78 Normally these are signed and unsigned 16 and 32 bit integers, but
79 they actually only need to be at least 16 and 32 bits
80 respectively. Thus if your word size is 8 bytes just defining them
81 as signed and unsigned int will work.
84 /* afs/stds.h defines int16 and int32 */
91 typedef unsigned char uint8;
95 typedef unsigned short uint16;
99 typedef unsigned int uint32;
103 #define uchar unsigned char
109 #define uint16 unsigned short
112 #define uint32 unsigned int
117 #ifndef DEF_CREATE_MASK
118 #define DEF_CREATE_MASK (0755)
121 /* how long to wait for secondary SMB packets (milli-seconds) */
122 #define SMB_SECONDARY_WAIT (60*1000)
126 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))?(Debug1 body):0)
128 extern int syslog_level;
130 #define DEBUG(level,body) ((DEBUGLEVEL>=(level))? (syslog_level = (level), Debug1 body):0)
133 /* this defines the error codes that receive_smb can put in smb_read_error */
134 #define READ_TIMEOUT 1
139 #define DIR_STRUCT_SIZE 43
141 /* these define all the command types recognised by the server - there
142 are lots of gaps so probably there are some rare commands that are not
145 #define pSETDIR '\377'
147 /* these define the attribute byte as seen by DOS */
148 #define aRONLY (1L<<0)
149 #define aHIDDEN (1L<<1)
150 #define aSYSTEM (1L<<2)
151 #define aVOLID (1L<<3)
153 #define aARCH (1L<<5)
164 #define STYPE_DISKTREE 0 /* Disk drive */
165 #define STYPE_PRINTQ 1 /* Spooler queue */
166 #define STYPE_DEVICE 2 /* Serial device */
167 #define STYPE_IPC 3 /* Interprocess communication (IPC) */
168 #define STYPE_HIDDEN 0x80000000 /* share is a hidden one (ends with $) */
170 /* SMB X/Open error codes for the ERRdos error class */
171 #define ERRbadfunc 1 /* Invalid function (or system call) */
172 #define ERRbadfile 2 /* File not found (pathname error) */
173 #define ERRbadpath 3 /* Directory not found */
174 #define ERRnofids 4 /* Too many open files */
175 #define ERRnoaccess 5 /* Access denied */
176 #define ERRbadfid 6 /* Invalid fid */
177 #define ERRnomem 8 /* Out of memory */
178 #define ERRbadmem 9 /* Invalid memory block address */
179 #define ERRbadenv 10 /* Invalid environment */
180 #define ERRbadaccess 12 /* Invalid open mode */
181 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
182 #define ERRres 14 /* reserved */
183 #define ERRbaddrive 15 /* Invalid drive */
184 #define ERRremcd 16 /* Attempt to delete current directory */
185 #define ERRdiffdevice 17 /* rename/move across different filesystems */
186 #define ERRnofiles 18 /* no more files found in file search */
187 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
188 #define ERRlock 33 /* Lock request conflicts with existing lock */
189 #define ERRfilexists 80 /* File in operation already exists */
190 #define ERRcannotopen 110 /* Cannot open the file specified */
191 #define ERRunknownlevel 124
192 #define ERRbadpipe 230 /* Named pipe invalid */
193 #define ERRpipebusy 231 /* All instances of pipe are busy */
194 #define ERRpipeclosing 232 /* named pipe close in progress */
195 #define ERRnotconnected 233 /* No process on other end of named pipe */
196 #define ERRmoredata 234 /* More data to be returned */
197 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
198 #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
199 #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
200 #define ERRunknownipc 2142
203 /* here's a special one from observing NT */
204 #define ERRnoipc 66 /* don't support ipc */
206 /* Error codes for the ERRSRV class */
208 #define ERRerror 1 /* Non specific error code */
209 #define ERRbadpw 2 /* Bad password */
210 #define ERRbadtype 3 /* reserved */
211 #define ERRaccess 4 /* No permissions to do the requested operation */
212 #define ERRinvnid 5 /* tid invalid */
213 #define ERRinvnetname 6 /* Invalid servername */
214 #define ERRinvdevice 7 /* Invalid device */
215 #define ERRqfull 49 /* Print queue full */
216 #define ERRqtoobig 50 /* Queued item too big */
217 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
218 #define ERRsmbcmd 64 /* Unrecognised command */
219 #define ERRsrverror 65 /* smb server internal error */
220 #define ERRfilespecs 67 /* fid and pathname invalid combination */
221 #define ERRbadlink 68 /* reserved */
222 #define ERRbadpermits 69 /* Access specified for a file is not valid */
223 #define ERRbadpid 70 /* reserved */
224 #define ERRsetattrmode 71 /* attribute mode invalid */
225 #define ERRpaused 81 /* Message server paused */
226 #define ERRmsgoff 82 /* Not receiving messages */
227 #define ERRnoroom 83 /* No room for message */
228 #define ERRrmuns 87 /* too many remote usernames */
229 #define ERRtimeout 88 /* operation timed out */
230 #define ERRnoresource 89 /* No resources currently available for request. */
231 #define ERRtoomanyuids 90 /* too many userids */
232 #define ERRbaduid 91 /* bad userid */
233 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
234 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
235 #define ERRcontMPX 252 /* resume MPX mode */
236 #define ERRbadPW /* reserved */
237 #define ERRnosupport 0xFFFF
238 #define ERRunknownsmb 22 /* from NT 3.5 response */
241 /* Error codes for the ERRHRD class */
243 #define ERRnowrite 19 /* read only media */
244 #define ERRbadunit 20 /* Unknown device */
245 #define ERRnotready 21 /* Drive not ready */
246 #define ERRbadcmd 22 /* Unknown command */
247 #define ERRdata 23 /* Data (CRC) error */
248 #define ERRbadreq 24 /* Bad request structure length */
250 #define ERRbadmedia 26
251 #define ERRbadsector 27
252 #define ERRnopaper 28
253 #define ERRwrite 29 /* write fault */
254 #define ERRread 30 /* read fault */
255 #define ERRgeneral 31 /* General hardware failure */
256 #define ERRwrongdisk 34
257 #define ERRFCBunavail 35
258 #define ERRsharebufexc 36 /* share buffer exceeded */
259 #define ERRdiskfull 39
262 typedef char pstring[1024];
263 typedef char fstring[128];
264 typedef fstring string;
268 #define PIPE_LANMAN "\\PIPE\\LANMAN"
269 #define PIPE_SRVSVC "\\PIPE\\srvsvc"
270 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
271 #define PIPE_NTLSA "\\PIPE\\ntlsa"
272 #define PIPE_LSARPC "\\PIPE\\lsarpc"
274 /* NETLOGON opcodes and data structures */
284 #define NET_QUERYFORPDC 7 /* Query for PDC */
285 #define NET_QUERYFORPDC_R 12 /* Response to Query for PDC */
286 #define NET_SAMLOGON 18
287 #define NET_SAMLOGON_R 19
289 /* Allowable account control bits */
290 #define ACB_DISABLED 1 /* 1 = User account disabled */
291 #define ACB_HOMDIRREQ 2 /* 1 = Home directory required */
292 #define ACB_PWNOTREQ 4 /* 1 = User password not required */
293 #define ACB_TEMPDUP /* 1 = Temporary duplicate account */
294 #define ACB_NORMAL /* 1 = Normal user account */
295 #define ACB_MNS /* 1 = MNS logon user account */
296 #define ACB_DOMTRUST /* 1 = Interdomain trust account */
297 #define ACB_WSTRUST /* 1 = Workstation trust account */
298 #define ACB_SVRTRUST /* 1 = Server trust account */
299 #define ACB_PWNOEXP /* 1 = User password does not expire */
300 #define ACB_AUTOLOCK /* 1 = Account auto locked */
302 #define LSA_OPENPOLICY 0x2c
303 #define LSA_QUERYINFOPOLICY 0x07
304 #define LSA_ENUMTRUSTDOM 0x0d
305 #define LSA_REQCHAL 0x04
306 #define LSA_SRVPWSET 0x06
307 #define LSA_SAMLOGON 0x02
308 #define LSA_AUTH2 0x0f
309 #define LSA_CLOSE 0x00
312 #define LSA_OPENSECRET 0xFF
313 #define LSA_LOOKUPSIDS 0xFE
314 #define LSA_LOOKUPNAMES 0xFD
315 #define LSA_SAMLOGOFF 0xFC
318 #define NETSERVERGETINFO 0x15
319 #define NETSHAREENUM 0x0f
321 /* well-known RIDs - Relative IDs */
323 /* RIDs - Well-known users ... */
324 #define DOMAIN_USER_RID_ADMIN (0x000001F4L)
325 #define DOMAIN_USER_RID_GUEST (0x000001F5L)
327 /* RIDs - well-known groups ... */
328 #define DOMAIN_GROUP_RID_ADMINS (0x00000200L)
329 #define DOMAIN_GROUP_RID_USERS (0x00000201L)
330 #define DOMAIN_GROUP_RID_GUESTS (0x00000202L)
332 /* RIDs - well-known aliases ... */
333 #define DOMAIN_ALIAS_RID_ADMINS (0x00000220L)
334 #define DOMAIN_ALIAS_RID_USERS (0x00000221L)
335 #define DOMAIN_ALIAS_RID_GUESTS (0x00000222L)
336 #define DOMAIN_ALIAS_RID_POWER_USERS (0x00000223L)
338 #define DOMAIN_ALIAS_RID_ACCOUNT_OPS (0x00000224L)
339 #define DOMAIN_ALIAS_RID_SYSTEM_OPS (0x00000225L)
340 #define DOMAIN_ALIAS_RID_PRINT_OPS (0x00000226L)
341 #define DOMAIN_ALIAS_RID_BACKUP_OPS (0x00000227L)
343 #define DOMAIN_ALIAS_RID_REPLICATOR (0x00000228L)
347 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
348 typedef struct time_info
354 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
355 typedef struct nttime_info
363 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */
365 /* DOM_SID - security id */
366 typedef struct sid_info
368 uint8 sid_rev_num; /* SID revision number */
369 uint8 num_auths; /* number of sub-authorities */
370 uint8 id_auth[6]; /* Identifier Authority */
371 uint32 sub_auths[MAXSUBAUTHS]; /* pointer to sub-authorities. */
375 /* UNIHDR - unicode string header */
376 typedef struct unihdr_info
380 uint32 undoc; /* usually has a value of 4 */
384 /* UNIHDR2 - unicode string header and undocumented buffer */
385 typedef struct unihdr2_info
388 uint32 undoc_buffer; /* undocumented 32 bit buffer pointer */
392 /* clueless as to what maximum length should be */
393 #define MAX_UNISTRLEN 1024
395 /* UNISTR - unicode string size and buffer */
396 typedef struct unistr_info
398 uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. ***MUST*** be null-terminated */
402 /* UNISTR2 - unicode string size and buffer */
403 typedef struct unistr2_info
408 uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. **NOT** necessarily null-terminated */
412 /* DOM_SID2 - domain SID structure - SIDs stored in unicode */
413 typedef struct domsid2_info
415 uint32 type; /* value is 5 */
416 uint32 undoc; /* value is 0 */
418 UNIHDR2 hdr; /* XXXX conflict between hdr and str for length */
419 UNISTR str; /* XXXX conflict between hdr and str for length */
423 /* DOM_RID2 - domain RID structure */
424 typedef struct domrid2_info
426 uint32 type; /* value is 5 */
427 uint32 undoc; /* value is 5 */
429 uint32 rid_idx; /* don't know what this is */
433 /* DOM_CLNT_SRV - client / server names */
434 typedef struct clnt_srv_info
436 uint32 undoc_buffer; /* undocumented 32 bit buffer pointer */
437 UNISTR2 uni_logon_srv; /* logon server name */
438 uint32 undoc_buffer2; /* undocumented 32 bit buffer pointer */
439 UNISTR2 uni_comp_name; /* client machine name */
443 /* DOM_LOG_INFO - login info */
444 typedef struct log_info
446 uint32 undoc_buffer; /* undocumented 32 bit buffer pointer */
447 UNISTR2 uni_logon_srv; /* logon server name */
448 UNISTR2 uni_acct_name; /* account name */
449 uint16 sec_chan; /* secure channel type */
450 UNISTR2 uni_comp_name; /* client machine name */
454 /* DOM_CHAL - challenge info */
455 typedef struct chal_info
457 uint32 data[2]; /* credentials */
461 /* DOM_CREDs - timestamped client or server credentials */
462 typedef struct cred_info
464 DOM_CHAL challenge; /* credentials */
465 UTIME timestamp; /* credential time-stamp */
469 /* DOM_CLNT_INFO - client info */
470 typedef struct clnt_info
477 /* DOM_CLNT_INFO2 - client info */
478 typedef struct clnt_info2
486 /* DOM_LOGON_ID - logon id */
487 typedef struct logon_info
495 typedef struct arc4_owf_info
503 typedef struct id_info_1
505 uint32 ptr_id_info1; /* pointer to id_info_1 */
506 UNIHDR hdr_domain_name; /* domain name unicode header */
507 uint32 param_ctrl; /* param control */
508 DOM_LOGON_ID logon_id; /* logon ID */
509 UNIHDR hdr_user_name; /* user name unicode header */
510 UNIHDR hdr_wksta_name; /* workgroup name unicode header */
511 ARC4_OWF arc4_lm_owf; /* arc4 LM OWF Password */
512 ARC4_OWF arc4_nt_owf; /* arc4 NT OWF Password */
513 UNISTR2 uni_domain_name; /* domain name unicode string */
514 UNISTR2 uni_user_name; /* user name unicode string */
515 UNISTR2 uni_wksta_name; /* workgroup name unicode string */
519 /* SAM_INFO - sam logon/off id structure */
520 typedef struct sam_info
522 DOM_CLNT_INFO2 client;
523 uint32 ptr_rtn_cred; /* pointer to return credentials */
524 DOM_CRED rtn_cred; /* return credentials */
530 DOM_ID_INFO_1 *id1; /* auth-level 1 */
536 /* DOM_GID - group id + user attributes */
537 typedef struct gid_info
539 uint32 g_rid; /* a group RID */
544 /* RPC_HDR - ms rpc header */
545 typedef struct rpc_hdr_info
547 uint8 major; /* 5 - RPC major version */
548 uint8 minor; /* 0 - RPC minor version */
549 uint8 pkt_type; /* 2 - RPC response packet */
550 uint8 frag; /* 3 - first frag + last frag */
551 uint32 pack_type; /* 0x1000 0000 - packed data representation */
552 uint16 frag_len; /* fragment length - data size (bytes) inc header and tail. */
553 uint16 auth_len; /* 0 - authentication length */
554 uint32 call_id; /* call identifier. matches 12th uint32 of incoming RPC data. */
558 /* RPC_HDR_RR - ms request / response rpc header */
559 typedef struct rpc_hdr_rr_info
563 uint32 alloc_hint; /* allocation hint - data size (bytes) minus header and tail. */
564 uint16 context_id; /* 0 - presentation context identifier */
565 uint8 cancel_count; /* 0 - cancel count */
566 uint8 opnum; /* request: 0 - reserved. response: opnum */
570 /* the interfaces are numbered. as yet I haven't seen more than one interface
571 * used on the same pipe name
573 * abstract (0x4B324FC8, 0x01D31670, 0x475A7812, 0x88E16EBF, 0x00000003)
574 * transfer (0x8A885D04, 0x11C91CEB, 0x0008E89F, 0x6048102B, 0x00000002)
577 typedef struct rpc_iface_info
579 uint8 data[16]; /* 16 bytes of number */
580 uint32 version; /* the interface number */
585 /* this seems to be the same string name depending on the name of the pipe,
586 * but is more likely to be linked to the interface name
587 * "srvsvc", "\\PIPE\\ntsvcs"
588 * "samr", "\\PIPE\\lsass"
589 * "wkssvc", "\\PIPE\\wksvcs"
590 * "NETLOGON", "\\PIPE\\NETLOGON"
593 typedef struct rpc_addr_info
595 uint16 len; /* length of the string including null terminator */
596 fstring addr; /* the string above in single byte, null terminated form */
601 typedef struct rpc_hdr_bba_info
603 uint16 max_tsize; /* maximum transmission fragment size (0x1630) */
604 uint16 max_rsize; /* max receive fragment size (0x1630) */
605 uint32 assoc_gid; /* associated group id (0x0) */
609 /* RPC_BIND_REQ - ms req bind */
610 typedef struct rpc_bind_req_info
614 uint32 num_elements; /* the number of elements (0x1) */
615 uint16 context_id; /* presentation context identifier (0x0) */
616 uint8 num_syntaxes; /* the number of syntaxes (has always been 1?)(0x1) */
618 RPC_IFACE abstract; /* num and vers. of interface client is using */
619 RPC_IFACE transfer; /* num and vers. of interface to use for replies */
623 /* RPC_RESULTS - can only cope with one reason, right now... */
624 typedef struct rpc_results_info
626 /* uint8[] # 4-byte alignment padding, against SMB header */
628 uint8 num_results; /* the number of results (0x01) */
630 /* uint8[] # 4-byte alignment padding, against SMB header */
632 uint16 result; /* result (0x00 = accept) */
633 uint16 reason; /* reason (0x00 = no reason specified) */
638 typedef struct rpc_hdr_ba_info
642 RPC_ADDR_STR addr ; /* the secondary address string, as described earlier */
643 RPC_RESULTS res ; /* results and reasons */
644 RPC_IFACE transfer; /* the transfer syntax from the request */
649 /* DOM_QUERY - info class 3 and 5 LSA Query response */
650 typedef struct dom_query_info
652 uint16 uni_dom_max_len; /* domain name string length * 2 */
653 uint16 uni_dom_str_len; /* domain name string length * 2 */
654 uint32 buffer_dom_name; /* undocumented domain name string buffer pointer */
655 uint32 buffer_dom_sid; /* undocumented domain SID string buffer pointer */
656 UNISTR2 uni_domain_name; /* domain name (unicode string) */
657 DOM_SID dom_sid; /* domain SID */
661 /* level 5 is same as level 3. we hope. */
662 typedef DOM_QUERY DOM_QUERY_3;
663 typedef DOM_QUERY DOM_QUERY_5;
665 #define POL_HND_SIZE 20
668 typedef struct lsa_policy_info
670 uint8 data[POL_HND_SIZE]; /* policy handle */
674 /* OBJ_ATTR (object attributes) */
675 typedef struct object_attributes_info
677 uint32 len; /* 0x18 - length (in bytes) inc. the length field. */
678 uint32 ptr_root_dir; /* 0 - root directory (pointer) */
679 uint32 ptr_obj_name; /* 0 - object name (pointer) */
680 uint32 attributes; /* 0 - attributes (undocumented) */
681 uint32 ptr_sec_desc; /* 0 - security descriptior (pointer) */
682 uint32 sec_qos; /* 0 - security quality of service */
686 /* LSA_Q_OPEN_POL - LSA Query Open Policy */
687 typedef struct lsa_q_open_pol_info
689 UNISTR2 uni_server_name; /* server name, starting with two '\'s */
690 LSA_OBJ_ATTR attr ; /* object attributes */
692 uint32 des_access; /* desired access attributes */
696 /* LSA_R_OPEN_POL - response to LSA Open Policy */
697 typedef struct lsa_r_open_pol_info
699 LSA_POL_HND pol; /* policy handle */
701 uint32 status; /* return code */
705 /* LSA_Q_QUERY_INFO - LSA query info policy */
706 typedef struct lsa_query_info
708 LSA_POL_HND pol; /* policy handle */
709 uint16 info_class; /* info class */
713 /* LSA_R_QUERY_INFO - response to LSA query info policy */
714 typedef struct lsa_r_query_info
716 uint32 undoc_buffer; /* undocumented buffer pointer */
717 uint16 info_class; /* info class (same as info class in request) */
726 uint32 status; /* return code */
731 typedef struct lsa_q_close_info
733 LSA_POL_HND pol; /* policy handle */
738 typedef struct lsa_r_close_info
740 LSA_POL_HND pol; /* policy handle. should be all zeros. */
742 uint32 status; /* return code */
747 #define MAX_REF_DOMAINS 10
750 typedef struct dom_ref_info
752 uint32 undoc_buffer; /* undocumented buffer pointer. */
753 uint32 num_ref_doms_1; /* num referenced domains? */
754 uint32 buffer_dom_name; /* undocumented domain name buffer pointer. */
755 uint32 max_entries; /* 32 - max number of entries */
756 uint32 num_ref_doms_2; /* 4 - num referenced domains? */
758 UNIHDR2 hdr_dom_name; /* domain name unicode string header */
759 UNIHDR2 hdr_ref_dom[MAX_REF_DOMAINS]; /* referenced domain unicode string headers */
761 UNISTR uni_dom_name; /* domain name unicode string */
762 DOM_SID ref_dom[MAX_REF_DOMAINS]; /* referenced domain SIDs */
766 #define MAX_LOOKUP_SIDS 10
768 /* LSA_Q_LOOKUP_SIDS - LSA Lookup SIDs */
769 typedef struct lsa_q_lookup_sids
771 LSA_POL_HND pol_hnd; /* policy handle */
773 uint32 buffer_dom_sid; /* undocumented domain SID buffer pointer */
774 uint32 buffer_dom_name; /* undocumented domain name buffer pointer */
775 uint32 buffer_lookup_sids[MAX_LOOKUP_SIDS]; /* undocumented domain SID pointers to be looked up. */
776 DOM_SID dom_sids[MAX_LOOKUP_SIDS]; /* domain SIDs to be looked up. */
777 uint8 undoc[16]; /* completely undocumented 16 bytes */
781 /* LSA_R_LOOKUP_SIDS - response to LSA Lookup SIDs */
782 typedef struct lsa_r_lookup_sids
784 DOM_R_REF dom_ref; /* domain reference info */
787 uint32 undoc_buffer; /* undocumented buffer pointer */
790 DOM_SID2 dom_sid[MAX_LOOKUP_SIDS]; /* domain SIDs being looked up */
794 uint32 status; /* return code */
798 /* DOM_NAME - XXXX not sure about this structure */
799 typedef struct dom_name_info
807 #define UNKNOWN_LEN 1
809 /* LSA_Q_LOOKUP_RIDS - LSA Lookup RIDs */
810 typedef struct lsa_q_lookup_rids
813 LSA_POL_HND pol_hnd; /* policy handle */
816 uint32 buffer_dom_sid; /* undocumented domain SID buffer pointer */
817 uint32 buffer_dom_name; /* undocumented domain name buffer pointer */
818 DOM_NAME lookup_name[MAX_LOOKUP_SIDS]; /* names to be looked up */
819 uint8 undoc[UNKNOWN_LEN]; /* completely undocumented bytes of unknown length */
823 /* LSA_R_LOOKUP_RIDS - response to LSA Lookup Names */
824 typedef struct lsa_r_lookup_rids
826 DOM_R_REF dom_ref; /* domain reference info */
829 uint32 undoc_buffer; /* undocumented buffer pointer */
832 DOM_RID2 dom_rid[MAX_LOOKUP_SIDS]; /* domain RIDs being looked up */
836 uint32 status; /* return code */
843 typedef struct lsa_neg_flags_info
845 uint32 neg_flags; /* negotiated flags */
851 typedef struct lsa_q_req_chal_info
853 uint32 undoc_buffer; /* undocumented buffer pointer */
854 UNISTR2 uni_logon_srv; /* logon server unicode string */
855 UNISTR2 uni_logon_clnt; /* logon client unicode string */
856 DOM_CHAL clnt_chal; /* client challenge */
862 typedef struct lsa_r_req_chal_info
864 DOM_CHAL srv_chal; /* server challenge */
866 uint32 status; /* return code */
873 typedef struct lsa_q_auth2_info
875 DOM_LOG_INFO clnt_id; /* client identification info */
876 DOM_CHAL clnt_chal; /* client-calculated credentials */
878 NEG_FLAGS clnt_flgs; /* usually 0x0000 01ff */
884 typedef struct lsa_r_auth2_info
886 DOM_CHAL srv_chal; /* server-calculated credentials */
887 NEG_FLAGS srv_flgs; /* usually 0x0000 01ff */
889 uint32 status; /* return code */
894 /* LSA_Q_SRV_PWSET */
895 typedef struct lsa_q_srv_pwset_info
897 DOM_CLNT_INFO clnt_id; /* client identification/authentication info */
898 char pwd[16]; /* new password - undocumented. */
902 /* LSA_R_SRV_PWSET */
903 typedef struct lsa_r_srv_pwset_info
905 DOM_CRED srv_cred; /* server-calculated credentials */
907 uint32 status; /* return code */
911 #define LSA_MAX_GROUPS 32
912 #define LSA_MAX_SIDS 32
915 typedef struct lsa_q_user_info
917 uint32 ptr_user_info;
919 NTTIME logon_time; /* logon time */
920 NTTIME logoff_time; /* logoff time */
921 NTTIME kickoff_time; /* kickoff time */
922 NTTIME pass_last_set_time; /* password last set time */
923 NTTIME pass_can_change_time; /* password can change time */
924 NTTIME pass_must_change_time; /* password must change time */
926 UNIHDR hdr_user_name; /* username unicode string header */
927 UNIHDR hdr_full_name; /* user's full name unicode string header */
928 UNIHDR hdr_logon_script; /* logon script unicode string header */
929 UNIHDR hdr_profile_path; /* profile path unicode string header */
930 UNIHDR hdr_home_dir; /* home directory unicode string header */
931 UNIHDR hdr_dir_drive; /* home directory drive unicode string header */
933 uint16 logon_count; /* logon count */
934 uint16 bad_pw_count; /* bad password count */
936 uint32 user_id; /* User ID */
937 uint32 group_id; /* Group ID */
938 uint32 num_groups; /* num groups */
939 uint32 buffer_groups; /* undocumented buffer pointer to groups. */
940 uint32 user_flgs; /* user flags */
942 char user_sess_key[16]; /* unused user session key */
944 UNIHDR hdr_logon_srv; /* logon server unicode string header */
945 UNIHDR hdr_logon_dom; /* logon domain unicode string header */
947 uint32 buffer_dom_id; /* undocumented logon domain id pointer */
948 char padding[40]; /* unused padding bytes. expansion room */
950 uint32 num_other_sids; /* 0 - num_sids */
951 uint32 buffer_other_sids; /* NULL - undocumented pointer to SIDs. */
953 UNISTR2 uni_user_name; /* username unicode string */
954 UNISTR2 uni_full_name; /* user's full name unicode string */
955 UNISTR2 uni_logon_script; /* logon script unicode string */
956 UNISTR2 uni_profile_path; /* profile path unicode string */
957 UNISTR2 uni_home_dir; /* home directory unicode string */
958 UNISTR2 uni_dir_drive; /* home directory drive unicode string */
960 uint32 num_groups2; /* num groups */
961 DOM_GID gids[LSA_MAX_GROUPS]; /* group info */
963 UNISTR2 uni_logon_srv; /* logon server unicode string */
964 UNISTR2 uni_logon_dom; /* logon domain unicode string */
966 DOM_SID dom_sid; /* domain SID */
967 DOM_SID other_sids[LSA_MAX_SIDS]; /* undocumented - domain SIDs */
972 /* LSA_Q_SAM_LOGON */
973 typedef struct lsa_q_sam_logon_info
979 /* LSA_R_SAM_LOGON */
980 typedef struct lsa_r_sam_logon_info
982 uint32 buffer_creds; /* undocumented buffer pointer */
983 DOM_CRED srv_creds; /* server credentials. server time stamp appears to be ignored. */
985 uint16 switch_value; /* 3 - indicates type of USER INFO */
988 uint32 auth_resp; /* 1 - Authoritative response; 0 - Non-Auth? */
990 uint32 status; /* return code */
995 /* LSA_Q_SAM_LOGOFF */
996 typedef struct lsa_q_sam_logoff_info
1002 /* LSA_R_SAM_LOGOFF */
1003 typedef struct lsa_r_sam_logoff_info
1005 uint32 buffer_creds; /* undocumented buffer pointer */
1006 DOM_CRED srv_creds; /* server credentials. server time stamp appears to be ignored. */
1008 uint32 status; /* return code */
1013 /* SH_INFO_1 (pointers to level 1 share info strings) */
1014 typedef struct ptr_share_info1
1016 uint32 ptr_netname; /* pointer to net name. */
1017 uint32 type; /* type of share. 0 - undocumented. */
1018 uint32 ptr_remark; /* pointer to comment. */
1022 /* SH_INFO_1_STR (level 1 share info strings) */
1023 typedef struct str_share_info1
1025 UNISTR2 uni_netname; /* unicode string of net name */
1026 UNISTR2 uni_remark; /* unicode string of comment. */
1030 /* oops - this is going to take up a *massive* amount of stack. */
1031 /* the UNISTR2s already have 1024 uint16 chars in them... */
1032 #define MAX_SHARE_ENTRIES 32
1034 /* SHARE_INFO_1_CONTAINER */
1035 typedef struct share_info_ctr
1037 uint32 num_entries_read; /* EntriesRead */
1038 uint32 ptr_share_info; /* Buffer */
1039 uint32 num_entries_read2; /* EntriesRead */
1040 SH_INFO_1 info_1 [MAX_SHARE_ENTRIES]; /* share entry pointers */
1041 SH_INFO_1_STR info_1_str[MAX_SHARE_ENTRIES]; /* share entry strings */
1042 uint32 num_entries_read3; /* EntriesRead2 */
1043 uint32 padding; /* padding */
1048 /* SRV_Q_NET_SHARE_ENUM */
1049 typedef struct q_net_share_enum_info
1051 uint32 ptr_srv_name; /* pointer (to server name?) */
1052 UNISTR2 uni_srv_name; /* server name */
1054 uint32 share_level; /* share level */
1055 uint32 switch_value; /* switch value */
1057 uint32 ptr_share_info; /* pointer to SHARE_INFO_1_CTR */
1061 SHARE_INFO_1_CTR info1; /* share info with 0 entries */
1065 uint32 preferred_len; /* preferred maximum length (0xffff ffff) */
1067 } SRV_Q_NET_SHARE_ENUM;
1070 /* SRV_R_NET_SHARE_ENUM */
1071 typedef struct r_net_share_enum_info
1073 uint32 share_level; /* share level */
1074 uint32 switch_value; /* switch value */
1076 uint32 ptr_share_info; /* pointer to SHARE_INFO_1_CTR */
1079 SHARE_INFO_1_CTR info1; /* share info container */
1083 uint32 status; /* return status */
1085 } SRV_R_NET_SHARE_ENUM;
1091 Yet to be turned into structures:
1093 6) \\MAILSLOT\NET\NTLOGON
1094 -------------------------
1101 uint16 0x0007 - Query for PDC
1103 STR response mailslot
1104 uint8[] padding to 2-byte align with start of mailslot.
1112 uint16 0x000A - Respose to Query for PDC
1113 STR machine name (in uppercase)
1114 uint8[] padding to 2-byte align with start of mailslot.
1117 uint32 NTversion (same as received in request)
1118 uint16 LMNTtoken (same as received in request)
1119 uint16 LM20token (same as received in request)
1127 uint16 0x0012 - SAM Logon
1128 uint16 request count
1131 STR response mailslot
1132 uint32 alloweable account
1133 uint32 domain SID size
1134 char[sid_size] domain SID, of sid_size bytes.
1135 uint8[] ???? padding to 4? 2? -byte align with start of mailslot.
1142 uint16 0x0013 - Response to SAM Logon
1144 UNISTR user name - workstation trust account
1157 unsigned char *smb_passwd; /* Null if no password */
1158 unsigned char *smb_nt_passwd; /* Null if no password */
1159 /* Other fields / flags may be added later */
1179 int readbraw_supported;
1180 int writebraw_supported;
1205 /* these times are normally kept in GMT */
1214 /* Structure used when SMBwritebmpx is active */
1217 int wr_total_written; /* So we know when to discard this */
1220 int32 wr_error; /* Cached errors */
1221 BOOL wr_mode; /* write through mode) */
1222 BOOL wr_discard; /* discard all further data */
1223 } write_bmpx_struct;
1226 * Structure used to indirect fd's from the files_struct.
1227 * Needed as POSIX locking is based on file and process, not
1228 * file descriptor and process.
1239 int real_open_flags;
1245 file_fd_struct *fd_ptr;
1252 write_bmpx_struct *wbmpx_ptr;
1253 struct timeval open_time;
1261 BOOL granted_oplock;
1268 int list[UID_CACHE_SIZE];
1275 } name_compare_entry;
1281 struct uid_cache uid_cache;
1291 char *user; /* name of user who *opened* this connection */
1292 int uid; /* uid of user who *opened* this connection */
1293 int gid; /* gid of user who *opened* this connection */
1295 uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
1297 /* following groups stuff added by ih */
1299 /* This groups info is valid for the user that *opened* the connection */
1302 int *igroups; /* an integer version - some OSes are broken :-( */
1308 name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
1309 name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
1311 } connection_struct;
1313 /* Domain controller authentication protocol info */
1316 DOM_CHAL clnt_chal; /* Initial challenge received from client */
1317 DOM_CHAL srv_chal; /* Initial server challenge */
1318 DOM_CRED clnt_cred; /* Last client credential */
1319 DOM_CRED srv_cred; /* Last server credential */
1321 uint32 sess_key[2]; /* Session key */
1322 uchar md4pw[16]; /* md4(machine password) */
1327 int uid; /* uid of a validated user */
1328 int gid; /* gid of a validated user */
1330 fstring name; /* name of a validated user */
1331 fstring real_name; /* to store real name from password file - simeon */
1334 /* following groups stuff added by ih */
1335 /* This groups info is needed for when we become_user() for this uid */
1338 int *igroups; /* an integer version - some OSes are broken :-( */
1339 int *attrs; /* attributes associated with each gid */
1344 /* per-user authentication information on NT RPCs */
1350 enum {LPQ_QUEUED,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING};
1361 } print_queue_struct;
1363 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
1369 } print_status_struct;
1371 /* used for server information: client, nameserv and ipc */
1372 struct server_info_struct
1377 fstring domain; /* used ONLY in ipc.c NOT namework.c */
1378 BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
1382 /* used for network interfaces */
1385 struct interface *next;
1387 struct in_addr bcast;
1388 struct in_addr nmask;
1391 /* struct returned by get_share_modes */
1398 struct timeval time;
1402 /* each implementation of the share mode code needs
1403 to support the following operations */
1405 BOOL (*stop_mgmt)(void);
1406 BOOL (*lock_entry)(int , uint32 , uint32 , int *);
1407 BOOL (*unlock_entry)(int , uint32 , uint32 , int );
1408 BOOL (*get_entries)(int , int , uint32 , uint32 , share_mode_entry **);
1409 void (*del_entry)(int , int );
1410 BOOL (*set_entry)(int , int , uint16 , uint16 );
1411 BOOL (*remove_oplock)(int , int);
1412 int (*forall)(void (*)(share_mode_entry *, char *));
1413 void (*status)(FILE *);
1416 /* each implementation of the shared memory code needs
1417 to support the following operations */
1419 BOOL (*close)( void );
1422 int (*get_userdef_off)(void);
1423 void *(*offset2addr)(int );
1424 int (*addr2offset)(void *addr);
1425 BOOL (*lock_hash_entry)(unsigned int);
1426 BOOL (*unlock_hash_entry)( unsigned int );
1427 BOOL (*get_usage)(int *,int *,int *);
1431 /* this is used for smbstatus */
1432 struct connect_record
1445 #ifndef LOCKING_VERSION
1446 #define LOCKING_VERSION 4
1447 #endif /* LOCKING_VERSION */
1449 /* these are useful macros for checking validity of handles */
1450 #define VALID_FNUM(fnum) (((fnum) >= 0) && ((fnum) < MAX_OPEN_FILES))
1451 #define OPEN_FNUM(fnum) (VALID_FNUM(fnum) && Files[fnum].open)
1452 #define VALID_CNUM(cnum) (((cnum) >= 0) && ((cnum) < MAX_CONNECTIONS))
1453 #define OPEN_CNUM(cnum) (VALID_CNUM(cnum) && Connections[cnum].open)
1454 #define IS_IPC(cnum) (VALID_CNUM(cnum) && Connections[cnum].ipc)
1455 #define IS_PRINT(cnum) (VALID_CNUM(cnum) && Connections[cnum].printer)
1456 #define FNUM_OK(fnum,c) (OPEN_FNUM(fnum) && (c)==Files[fnum].cnum)
1458 #define CHECK_FNUM(fnum,c) if (!FNUM_OK(fnum,c)) \
1459 return(ERROR(ERRDOS,ERRbadfid))
1460 #define CHECK_READ(fnum) if (!Files[fnum].can_read) \
1461 return(ERROR(ERRDOS,ERRbadaccess))
1462 #define CHECK_WRITE(fnum) if (!Files[fnum].can_write) \
1463 return(ERROR(ERRDOS,ERRbadaccess))
1464 #define CHECK_ERROR(fnum) if (HAS_CACHED_ERROR(fnum)) \
1465 return(CACHED_ERROR(fnum))
1467 /* translates a connection number into a service number */
1468 #define SNUM(cnum) (Connections[cnum].service)
1470 /* access various service details */
1471 #define SERVICE(snum) (lp_servicename(snum))
1472 #define PRINTCAP (lp_printcapname())
1473 #define PRINTCOMMAND(snum) (lp_printcommand(snum))
1474 #define PRINTERNAME(snum) (lp_printername(snum))
1475 #define CAN_WRITE(cnum) (OPEN_CNUM(cnum) && !Connections[cnum].read_only)
1476 #define VALID_SNUM(snum) (lp_snum_ok(snum))
1477 #define GUEST_OK(snum) (VALID_SNUM(snum) && lp_guest_ok(snum))
1478 #define GUEST_ONLY(snum) (VALID_SNUM(snum) && lp_guest_only(snum))
1479 #define CAN_SETDIR(snum) (!lp_no_set_dir(snum))
1480 #define CAN_PRINT(cnum) (OPEN_CNUM(cnum) && lp_print_ok(SNUM(cnum)))
1481 #define POSTSCRIPT(cnum) (OPEN_CNUM(cnum) && lp_postscript(SNUM(cnum)))
1482 #define MAP_HIDDEN(cnum) (OPEN_CNUM(cnum) && lp_map_hidden(SNUM(cnum)))
1483 #define MAP_SYSTEM(cnum) (OPEN_CNUM(cnum) && lp_map_system(SNUM(cnum)))
1484 #define MAP_ARCHIVE(cnum) (OPEN_CNUM(cnum) && lp_map_archive(SNUM(cnum)))
1485 #define IS_HIDDEN_PATH(cnum,path) (is_in_path((path),Connections[(cnum)].hide_list))
1486 #define IS_VETO_PATH(cnum,path) (is_in_path((path),Connections[(cnum)].veto_list))
1488 #define SMBENCRYPT() (lp_encrypted_passwords())
1490 /* the basic packet size, assuming no words or bytes */
1493 /* offsets into message for common items */
1517 #define smb_vwv10 57
1518 #define smb_vwv11 59
1519 #define smb_vwv12 61
1520 #define smb_vwv13 63
1521 #define smb_vwv14 65
1522 #define smb_vwv15 67
1523 #define smb_vwv16 69
1524 #define smb_vwv17 71
1528 #define SMBmkdir 0x00 /* create directory */
1529 #define SMBrmdir 0x01 /* delete directory */
1530 #define SMBopen 0x02 /* open file */
1531 #define SMBcreate 0x03 /* create file */
1532 #define SMBclose 0x04 /* close file */
1533 #define SMBflush 0x05 /* flush file */
1534 #define SMBunlink 0x06 /* delete file */
1535 #define SMBmv 0x07 /* rename file */
1536 #define SMBgetatr 0x08 /* get file attributes */
1537 #define SMBsetatr 0x09 /* set file attributes */
1538 #define SMBread 0x0A /* read from file */
1539 #define SMBwrite 0x0B /* write to file */
1540 #define SMBlock 0x0C /* lock byte range */
1541 #define SMBunlock 0x0D /* unlock byte range */
1542 #define SMBctemp 0x0E /* create temporary file */
1543 #define SMBmknew 0x0F /* make new file */
1544 #define SMBchkpth 0x10 /* check directory path */
1545 #define SMBexit 0x11 /* process exit */
1546 #define SMBlseek 0x12 /* seek */
1547 #define SMBtcon 0x70 /* tree connect */
1548 #define SMBtconX 0x75 /* tree connect and X*/
1549 #define SMBtdis 0x71 /* tree disconnect */
1550 #define SMBnegprot 0x72 /* negotiate protocol */
1551 #define SMBdskattr 0x80 /* get disk attributes */
1552 #define SMBsearch 0x81 /* search directory */
1553 #define SMBsplopen 0xC0 /* open print spool file */
1554 #define SMBsplwr 0xC1 /* write to print spool file */
1555 #define SMBsplclose 0xC2 /* close print spool file */
1556 #define SMBsplretq 0xC3 /* return print queue */
1557 #define SMBsends 0xD0 /* send single block message */
1558 #define SMBsendb 0xD1 /* send broadcast message */
1559 #define SMBfwdname 0xD2 /* forward user name */
1560 #define SMBcancelf 0xD3 /* cancel forward */
1561 #define SMBgetmac 0xD4 /* get machine name */
1562 #define SMBsendstrt 0xD5 /* send start of multi-block message */
1563 #define SMBsendend 0xD6 /* send end of multi-block message */
1564 #define SMBsendtxt 0xD7 /* send text of multi-block message */
1566 /* Core+ protocol */
1567 #define SMBlockread 0x13 /* Lock a range and read */
1568 #define SMBwriteunlock 0x14 /* Unlock a range then write */
1569 #define SMBreadbraw 0x1a /* read a block of data with no smb header */
1570 #define SMBwritebraw 0x1d /* write a block of data with no smb header */
1571 #define SMBwritec 0x20 /* secondary write request */
1572 #define SMBwriteclose 0x2c /* write a file then close it */
1574 /* dos extended protocol */
1575 #define SMBreadBraw 0x1A /* read block raw */
1576 #define SMBreadBmpx 0x1B /* read block multiplexed */
1577 #define SMBreadBs 0x1C /* read block (secondary response) */
1578 #define SMBwriteBraw 0x1D /* write block raw */
1579 #define SMBwriteBmpx 0x1E /* write block multiplexed */
1580 #define SMBwriteBs 0x1F /* write block (secondary request) */
1581 #define SMBwriteC 0x20 /* write complete response */
1582 #define SMBsetattrE 0x22 /* set file attributes expanded */
1583 #define SMBgetattrE 0x23 /* get file attributes expanded */
1584 #define SMBlockingX 0x24 /* lock/unlock byte ranges and X */
1585 #define SMBtrans 0x25 /* transaction - name, bytes in/out */
1586 #define SMBtranss 0x26 /* transaction (secondary request/response) */
1587 #define SMBioctl 0x27 /* IOCTL */
1588 #define SMBioctls 0x28 /* IOCTL (secondary request/response) */
1589 #define SMBcopy 0x29 /* copy */
1590 #define SMBmove 0x2A /* move */
1591 #define SMBecho 0x2B /* echo */
1592 #define SMBopenX 0x2D /* open and X */
1593 #define SMBreadX 0x2E /* read and X */
1594 #define SMBwriteX 0x2F /* write and X */
1595 #define SMBsesssetupX 0x73 /* Session Set Up & X (including User Logon) */
1596 #define SMBffirst 0x82 /* find first */
1597 #define SMBfunique 0x83 /* find unique */
1598 #define SMBfclose 0x84 /* find close */
1599 #define SMBinvalid 0xFE /* invalid command */
1601 /* Extended 2.0 protocol */
1602 #define SMBtrans2 0x32 /* TRANS2 protocol set */
1603 #define SMBtranss2 0x33 /* TRANS2 protocol set, secondary command */
1604 #define SMBfindclose 0x34 /* Terminate a TRANSACT2_FINDFIRST */
1605 #define SMBfindnclose 0x35 /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
1606 #define SMBulogoffX 0x74 /* user logoff */
1608 /* NT SMB extensions. */
1609 #define SMBnttrans 0xA0 /* NT transact */
1610 #define SMBnttranss 0xA1 /* NT transact secondary */
1611 #define SMBntcreateX 0xA2 /* NT create and X */
1612 #define SMBntcancel 0xA4 /* NT cancel */
1614 /* These are the TRANS2 sub commands */
1615 #define TRANSACT2_OPEN 0
1616 #define TRANSACT2_FINDFIRST 1
1617 #define TRANSACT2_FINDNEXT 2
1618 #define TRANSACT2_QFSINFO 3
1619 #define TRANSACT2_SETFSINFO 4
1620 #define TRANSACT2_QPATHINFO 5
1621 #define TRANSACT2_SETPATHINFO 6
1622 #define TRANSACT2_QFILEINFO 7
1623 #define TRANSACT2_SETFILEINFO 8
1624 #define TRANSACT2_FSCTL 9
1625 #define TRANSACT2_IOCTL 0xA
1626 #define TRANSACT2_FINDNOTIFYFIRST 0xB
1627 #define TRANSACT2_FINDNOTIFYNEXT 0xC
1628 #define TRANSACT2_MKDIR 0xD
1629 #define TRANSACT2_SESSION_SETUP 0xE
1630 #define TRANSACT2_GET_DFS_REFERRAL 0x10
1631 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
1633 /* These are the NT transact sub commands. */
1634 #define NT_TRANSACT_CREATE 1
1635 #define NT_TRANSACT_IOCTL 2
1636 #define NT_TRANSACT_SET_SECURITY_DESC 3
1637 #define NT_TRANSACT_NOTIFY_CHANGE 4
1638 #define NT_TRANSACT_RENAME 5
1639 #define NT_TRANSACT_QUERY_SECURITY_DESC 6
1641 /* these are the trans2 sub fields for primary requests */
1642 #define smb_tpscnt smb_vwv0
1643 #define smb_tdscnt smb_vwv1
1644 #define smb_mprcnt smb_vwv2
1645 #define smb_mdrcnt smb_vwv3
1646 #define smb_msrcnt smb_vwv4
1647 #define smb_flags smb_vwv5
1648 #define smb_timeout smb_vwv6
1649 #define smb_pscnt smb_vwv9
1650 #define smb_psoff smb_vwv10
1651 #define smb_dscnt smb_vwv11
1652 #define smb_dsoff smb_vwv12
1653 #define smb_suwcnt smb_vwv13
1654 #define smb_setup smb_vwv14
1655 #define smb_setup0 smb_setup
1656 #define smb_setup1 (smb_setup+2)
1657 #define smb_setup2 (smb_setup+4)
1659 /* these are for the secondary requests */
1660 #define smb_spscnt smb_vwv2
1661 #define smb_spsoff smb_vwv3
1662 #define smb_spsdisp smb_vwv4
1663 #define smb_sdscnt smb_vwv5
1664 #define smb_sdsoff smb_vwv6
1665 #define smb_sdsdisp smb_vwv7
1666 #define smb_sfid smb_vwv8
1668 /* and these for responses */
1669 #define smb_tprcnt smb_vwv0
1670 #define smb_tdrcnt smb_vwv1
1671 #define smb_prcnt smb_vwv3
1672 #define smb_proff smb_vwv4
1673 #define smb_prdisp smb_vwv5
1674 #define smb_drcnt smb_vwv6
1675 #define smb_droff smb_vwv7
1676 #define smb_drdisp smb_vwv8
1678 /* where to find the base of the SMB packet proper */
1679 #define smb_base(buf) (((char *)(buf))+4)
1682 #define SUCCESS 0 /* The request was successful. */
1683 #define ERRDOS 0x01 /* Error is from the core DOS operating system set. */
1684 #define ERRSRV 0x02 /* Error is generated by the server network file manager.*/
1685 #define ERRHRD 0x03 /* Error is an hardware error. */
1686 #define ERRCMD 0xFF /* Command was not in the "SMB" format. */
1689 int Debug1(char *, ...);
1695 void dfs_unlogin(void);
1696 extern int dcelogin_atmost_once;
1700 void ajt_panic(void);
1704 char *strdup(char *s);
1707 #ifdef REPLACE_STRLEN
1711 #ifdef REPLACE_STRSTR
1712 char *Strstr(char *s, char *p);
1716 #define MIN(a,b) ((a)<(b)?(a):(b))
1719 #define MAX(a,b) ((a)>(b)?(a):(b))
1723 #define ABS(a) ((a)>0?(a):(-(a)))
1735 /* Some POSIX definitions for those without */
1738 #define S_IFDIR 0x4000
1741 #define S_ISDIR(mode) ((mode & 0xF000) == S_IFDIR)
1744 #define S_IRWXU 00700 /* read, write, execute: owner */
1747 #define S_IRUSR 00400 /* read permission: owner */
1750 #define S_IWUSR 00200 /* write permission: owner */
1753 #define S_IXUSR 00100 /* execute permission: owner */
1756 #define S_IRWXG 00070 /* read, write, execute: group */
1759 #define S_IRGRP 00040 /* read permission: group */
1762 #define S_IWGRP 00020 /* write permission: group */
1765 #define S_IXGRP 00010 /* execute permission: group */
1768 #define S_IRWXO 00007 /* read, write, execute: other */
1771 #define S_IROTH 00004 /* read permission: other */
1774 #define S_IWOTH 00002 /* write permission: other */
1777 #define S_IXOTH 00001 /* execute permission: other */
1781 /* these are used in NetServerEnum to choose what to receive */
1782 #define SV_TYPE_WORKSTATION 0x00000001
1783 #define SV_TYPE_SERVER 0x00000002
1784 #define SV_TYPE_SQLSERVER 0x00000004
1785 #define SV_TYPE_DOMAIN_CTRL 0x00000008
1786 #define SV_TYPE_DOMAIN_BAKCTRL 0x00000010
1787 #define SV_TYPE_TIME_SOURCE 0x00000020
1788 #define SV_TYPE_AFP 0x00000040
1789 #define SV_TYPE_NOVELL 0x00000080
1790 #define SV_TYPE_DOMAIN_MEMBER 0x00000100
1791 #define SV_TYPE_PRINTQ_SERVER 0x00000200
1792 #define SV_TYPE_DIALIN_SERVER 0x00000400
1793 #define SV_TYPE_SERVER_UNIX 0x00000800
1794 #define SV_TYPE_NT 0x00001000
1795 #define SV_TYPE_WFW 0x00002000
1796 #define SV_TYPE_SERVER_MFPN 0x00004000
1797 #define SV_TYPE_SERVER_NT 0x00008000
1798 #define SV_TYPE_POTENTIAL_BROWSER 0x00010000
1799 #define SV_TYPE_BACKUP_BROWSER 0x00020000
1800 #define SV_TYPE_MASTER_BROWSER 0x00040000
1801 #define SV_TYPE_DOMAIN_MASTER 0x00080000
1802 #define SV_TYPE_SERVER_OSF 0x00100000
1803 #define SV_TYPE_SERVER_VMS 0x00200000
1804 #define SV_TYPE_WIN95_PLUS 0x00400000
1805 #define SV_TYPE_ALTERNATE_XPORT 0x20000000
1806 #define SV_TYPE_LOCAL_LIST_ONLY 0x40000000
1807 #define SV_TYPE_DOMAIN_ENUM 0x80000000
1808 #define SV_TYPE_ALL 0xFFFFFFFF
1810 /* what server type are we currently - JHT Says we ARE 4.20 */
1811 /* this was set by JHT in liaison with Jeremy Allison early 1997 */
1812 /* setting to 4.20 at same time as announcing ourselves as NT Server */
1814 /* Version 4.0 - never made public */
1815 /* Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9 */
1816 /* - Reappeared in 1.9.16p11 with fixed smbd services */
1817 /* Version 4.20 - To indicate that nmbd and browsing now works better */
1819 #define DEFAULT_MAJOR_VERSION 0x04
1820 #define DEFAULT_MINOR_VERSION 0x02
1822 /* Browser Election Values */
1823 #define BROWSER_ELECTION_VERSION 0x010f
1824 #define BROWSER_CONSTANT 0xaa55
1827 /* Capabilities. see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
1829 #define CAP_RAW_MODE 0x0001
1830 #define CAP_MPX_MODE 0x0002
1831 #define CAP_UNICODE 0x0004
1832 #define CAP_LARGE_FILES 0x0008
1833 #define CAP_NT_SMBS 0x0010
1834 #define CAP_RPC_REMOTE_APIS 0x0020
1835 #define CAP_STATUS32 0x0040
1836 #define CAP_LEVEL_II_OPLOCKS 0x0080
1837 #define CAP_LOCK_AND_READ 0x0100
1838 #define CAP_NT_FIND 0x0200
1839 #define CAP_DFS 0x1000
1840 #define CAP_LARGE_READX 0x4000
1842 /* protocol types. It assumes that higher protocols include lower protocols
1844 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
1846 /* security levels */
1847 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER};
1849 /* printing types */
1850 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
1851 PRINT_QNX,PRINT_PLP,PRINT_LPRNG};
1853 /* Remote architectures we know about. */
1854 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_SAMBA};
1857 enum case_handling {CASE_LOWER,CASE_UPPER};
1860 /* Macros to get at offsets within smb_lkrng and smb_unlkrng
1861 structures. We cannot define these as actual structures
1862 due to possible differences in structure packing
1863 on different machines/compilers. */
1865 #define SMB_LPID_OFFSET(indx) (10 * (indx))
1866 #define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
1867 #define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
1869 /* Macro to cache an error in a write_bmpx_struct */
1870 #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \
1871 w->wr_discard = True, -1)
1872 /* Macro to test if an error has been cached for this fnum */
1873 #define HAS_CACHED_ERROR(fnum) (Files[(fnum)].open && \
1874 Files[(fnum)].wbmpx_ptr && \
1875 Files[(fnum)].wbmpx_ptr->wr_discard)
1876 /* Macro to turn the cached error into an error packet */
1877 #define CACHED_ERROR(fnum) cached_error_packet(inbuf,outbuf,fnum,__LINE__)
1879 /* these are the datagram types */
1880 #define DGRAM_DIRECT_UNIQUE 0x10
1882 #define ERROR(class,x) error_packet(inbuf,outbuf,class,x,__LINE__)
1884 /* this is how errors are generated */
1885 #define UNIXERROR(defclass,deferror) unix_error_packet(inbuf,outbuf,defclass,deferror,__LINE__)
1887 #define ROUNDUP(x,g) (((x)+((g)-1))&~((g)-1))
1890 * Global value meaing that the smb_uid field should be
1891 * ingored (in share level security and protocol level == CORE)
1894 #define UID_FIELD_INVALID 0
1895 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1899 /* Defines needed for multi-codepage support. */
1900 #define KANJI_CODEPAGE 932
1904 * Default client code page - Japanese
1906 #define DEFAULT_CLIENT_CODE_PAGE KANJI_CODEPAGE
1909 * Default client code page - 850 - Western European
1911 #define DEFAULT_CLIENT_CODE_PAGE 850
1915 * Size of buffer to use when moving files across filesystems.
1917 #define COPYBUF_SIZE (8*1024)
1920 * Integers used to override error codes.
1922 extern int unix_ERR_class;
1923 extern int unix_ERR_code;
1926 * Map the Core and Extended Oplock requesst bits down
1927 * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1933 #define CORE_OPLOCK_REQUEST(inbuf) ((CVAL(inbuf,smb_flg)&((1<<5)|(1<<6)))>>5)
1936 * Extended protocol.
1938 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1941 #define LOCKING_ANDX_SHARED_LOCK 0x1
1942 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
1943 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
1944 #define LOCKING_ANDX_CANCEL_LOCK 0x8
1945 #define LOCKING_ANDX_LARGE_FILES 0x10
1948 #define OPLOCKLEVEL_NONE 0
1949 #define OPLOCKLEVEL_II 1
1952 * Bits we test with.
1954 #define EXCLUSIVE_OPLOCK 1
1955 #define BATCH_OPLOCK 2
1957 #define CORE_OPLOCK_GRANTED (1<<5)
1958 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1961 * Loopback command offsets.
1964 #define UDP_CMD_LEN_OFFSET 0
1965 #define UDP_CMD_PORT_OFFSET 4
1966 #define UDP_CMD_HEADER_LEN 6
1968 #define UDP_MESSAGE_CMD_OFFSET 0
1971 * Oplock break command code to send over the udp socket.
1976 * +----+--------+--------+--------+-------+--------+
1977 * | cmd| pid | dev | inode | sec | usec |
1978 * +----+--------+--------+--------+-------+--------+
1981 #define OPLOCK_BREAK_CMD 0x1
1982 #define OPLOCK_BREAK_PID_OFFSET 2
1983 #define OPLOCK_BREAK_DEV_OFFSET 6
1984 #define OPLOCK_BREAK_INODE_OFFSET 10
1985 #define OPLOCK_BREAK_SEC_OFFSET 14
1986 #define OPLOCK_BREAK_USEC_OFFSET 18
1987 #define OPLOCK_BREAK_MSG_LEN 22
1990 #define CMD_REPLY 0x8000