xref: /illumos-gate/usr/src/lib/smbsrv/libsmb/common/libsmb.h (revision c586600796766c83eb9485c446886fd9ed2359a9)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24 
25 #ifndef	_LIBSMB_H
26 #define	_LIBSMB_H
27 
28 #ifdef	__cplusplus
29 extern "C" {
30 #endif
31 
32 #include <sys/types.h>
33 #include <sys/list.h>
34 #include <sys/avl.h>
35 #include <arpa/inet.h>
36 #include <net/if.h>
37 #include <inet/tcp.h>
38 #include <uuid/uuid.h>
39 #include <netdb.h>
40 #include <stdlib.h>
41 #include <libscf.h>
42 #include <libshare.h>
43 #include <sqlite/sqlite.h>
44 #include <uuid/uuid.h>
45 #include <synch.h>
46 
47 #include <smbsrv/string.h>
48 #include <smbsrv/smb_idmap.h>
49 #include <smbsrv/netbios.h>
50 #include <smbsrv/smb_share.h>
51 #include <smbsrv/nterror.h>
52 #include <smbsrv/ntstatus.h>
53 #include <smbsrv/smb_door.h>
54 #include <smbsrv/alloc.h>
55 #include <smbsrv/hash_table.h>
56 #include <smbsrv/msgbuf.h>
57 #include <smbsrv/wintypes.h>
58 #include <smbsrv/smb_xdr.h>
59 #include <smbsrv/smbinfo.h>
60 #include <smbsrv/ntifs.h>
61 
62 #define	SMB_VARRUN_DIR "/var/run/smb"
63 #define	SMB_CCACHE_FILE "ccache"
64 #define	SMB_CCACHE_PATH SMB_VARRUN_DIR "/" SMB_CCACHE_FILE
65 
66 
67 /* Max value length of all SMB properties */
68 #define	MAX_VALUE_BUFLEN	512
69 
70 #define	SMBD_FMRI_PREFIX		"network/smb/server"
71 #define	SMBD_DEFAULT_INSTANCE_FMRI	"svc:/network/smb/server:default"
72 #define	SMBD_PG_NAME			"smbd"
73 #define	SMBD_PROTECTED_PG_NAME		"read"
74 #define	SMBD_EXEC_PG_NAME		"exec"
75 
76 #define	SMBD_SMF_OK		0
77 #define	SMBD_SMF_NO_MEMORY	1	/* no memory for data structures */
78 #define	SMBD_SMF_SYSTEM_ERR	2	/* system error, use errno */
79 #define	SMBD_SMF_NO_PERMISSION	3	/* no permission for operation */
80 #define	SMBD_SMF_INVALID_ARG	4
81 
82 #define	SCH_STATE_UNINIT	0
83 #define	SCH_STATE_INITIALIZING	1
84 #define	SCH_STATE_INIT		2
85 
86 typedef struct smb_scfhandle {
87 	scf_handle_t		*scf_handle;
88 	int			scf_state;
89 	scf_service_t		*scf_service;
90 	scf_scope_t		*scf_scope;
91 	scf_transaction_t	*scf_trans;
92 	scf_transaction_entry_t	*scf_entry;
93 	scf_propertygroup_t	*scf_pg;
94 	scf_instance_t		*scf_instance;
95 	scf_iter_t		*scf_inst_iter;
96 	scf_iter_t		*scf_pg_iter;
97 } smb_scfhandle_t;
98 
99 /*
100  * CIFS Configuration Management
101  */
102 typedef enum {
103 	SMB_CI_VERSION = 0,
104 	SMB_CI_OPLOCK_ENABLE,
105 
106 	SMB_CI_AUTOHOME_MAP,
107 
108 	SMB_CI_DOMAIN_SID,
109 	SMB_CI_DOMAIN_MEMB,
110 	SMB_CI_DOMAIN_NAME,
111 	SMB_CI_DOMAIN_FQDN,
112 	SMB_CI_DOMAIN_FOREST,
113 	SMB_CI_DOMAIN_GUID,
114 	SMB_CI_DOMAIN_SRV,
115 
116 	SMB_CI_WINS_SRV1,
117 	SMB_CI_WINS_SRV2,
118 	SMB_CI_WINS_EXCL,
119 
120 	SMB_CI_MAX_WORKERS,
121 	SMB_CI_MAX_CONNECTIONS,
122 	SMB_CI_KEEPALIVE,
123 	SMB_CI_RESTRICT_ANON,
124 
125 	SMB_CI_SIGNING_ENABLE,
126 	SMB_CI_SIGNING_REQD,
127 
128 	SMB_CI_SYNC_ENABLE,
129 
130 	SMB_CI_SECURITY,
131 	SMB_CI_NBSCOPE,
132 	SMB_CI_SYS_CMNT,
133 	SMB_CI_LM_LEVEL,
134 
135 	SMB_CI_ADS_SITE,
136 
137 	SMB_CI_DYNDNS_ENABLE,
138 
139 	SMB_CI_MACHINE_PASSWD,
140 	SMB_CI_KPASSWD_SRV,
141 	SMB_CI_KPASSWD_DOMAIN,
142 	SMB_CI_KPASSWD_SEQNUM,
143 	SMB_CI_NETLOGON_SEQNUM,
144 	SMB_CI_IPV6_ENABLE,
145 	SMB_CI_MAP,
146 	SMB_CI_UNMAP,
147 	SMB_CI_DISPOSITION,
148 	SMB_CI_MAX
149 } smb_cfg_id_t;
150 
151 /* SMF helper functions */
152 extern smb_scfhandle_t *smb_smf_scf_init(char *);
153 extern void smb_smf_scf_fini(smb_scfhandle_t *);
154 extern int smb_smf_start_transaction(smb_scfhandle_t *);
155 extern int smb_smf_end_transaction(smb_scfhandle_t *);
156 extern int smb_smf_set_string_property(smb_scfhandle_t *, char *, char *);
157 extern int smb_smf_get_string_property(smb_scfhandle_t *, char *,
158     char *, size_t);
159 extern int smb_smf_set_integer_property(smb_scfhandle_t *, char *, int64_t);
160 extern int smb_smf_get_integer_property(smb_scfhandle_t *, char *, int64_t *);
161 extern int smb_smf_set_boolean_property(smb_scfhandle_t *, char *, uint8_t);
162 extern int smb_smf_get_boolean_property(smb_scfhandle_t *, char *, uint8_t *);
163 extern int smb_smf_set_opaque_property(smb_scfhandle_t *, char *,
164     void *, size_t);
165 extern int smb_smf_get_opaque_property(smb_scfhandle_t *, char *,
166     void *, size_t);
167 extern int smb_smf_create_service_pgroup(smb_scfhandle_t *, char *);
168 extern int smb_smf_restart_service(void);
169 extern int smb_smf_maintenance_mode(void);
170 
171 /* ZFS interface */
172 int smb_getdataset(const char *, char *, size_t);
173 
174 /* Configuration management functions  */
175 extern int smb_config_get(smb_cfg_id_t, char *, int);
176 extern char *smb_config_getname(smb_cfg_id_t);
177 extern int smb_config_getstr(smb_cfg_id_t, char *, int);
178 extern int smb_config_getnum(smb_cfg_id_t, int64_t *);
179 extern boolean_t smb_config_getbool(smb_cfg_id_t);
180 
181 extern int smb_config_set(smb_cfg_id_t, char *);
182 extern int smb_config_setstr(smb_cfg_id_t, char *);
183 extern int smb_config_setnum(smb_cfg_id_t, int64_t);
184 extern int smb_config_setbool(smb_cfg_id_t, boolean_t);
185 
186 extern uint8_t smb_config_get_fg_flag(void);
187 extern char *smb_config_get_localsid(void);
188 extern int smb_config_secmode_fromstr(char *);
189 extern char *smb_config_secmode_tostr(int);
190 extern int smb_config_get_secmode(void);
191 extern int smb_config_set_secmode(int);
192 extern int smb_config_set_idmap_domain(char *);
193 extern int smb_config_refresh_idmap(void);
194 extern int smb_config_getip(smb_cfg_id_t, smb_inaddr_t *);
195 extern void smb_config_get_version(smb_version_t *);
196 
197 extern void smb_load_kconfig(smb_kmod_cfg_t *kcfg);
198 extern uint32_t smb_crc_gen(uint8_t *, size_t);
199 
200 extern boolean_t smb_match_netlogon_seqnum(void);
201 extern int smb_setdomainprops(char *, char *, char *);
202 extern void smb_update_netlogon_seqnum(void);
203 
204 /* maximum password length on Windows 2000 and above */
205 #define	SMB_PASSWD_MAXLEN	127
206 #define	SMB_USERNAME_MAXLEN	40
207 
208 typedef struct smb_joininfo {
209 	char domain_name[MAXHOSTNAMELEN];
210 	char domain_username[SMB_USERNAME_MAXLEN + 1];
211 	char domain_passwd[SMB_PASSWD_MAXLEN + 1];
212 	uint32_t mode;
213 } smb_joininfo_t;
214 
215 /* APIs to communicate with SMB daemon via door calls */
216 uint32_t smb_join(smb_joininfo_t *info);
217 bool_t smb_joininfo_xdr(XDR *, smb_joininfo_t *);
218 boolean_t smb_find_ads_server(char *, char *, int);
219 
220 extern void smb_config_getdomaininfo(char *, char *, char *, char *, char *);
221 extern void smb_config_setdomaininfo(char *, char *, char *, char *, char *);
222 extern uint32_t smb_get_dcinfo(char *, uint32_t, smb_inaddr_t *);
223 
224 /*
225  * buffer context structure. This is used to keep track of the buffer
226  * context.
227  *
228  * basep:  points to the beginning of the buffer
229  * curp:   points to the current offset
230  * endp:   points to the limit of the buffer
231  */
232 typedef struct {
233 	unsigned char *basep;
234 	unsigned char *curp;
235 	unsigned char *endp;
236 } smb_ctxbuf_t;
237 
238 extern int smb_ctxbuf_init(smb_ctxbuf_t *ctx, unsigned char *buf,
239     size_t buflen);
240 extern int smb_ctxbuf_len(smb_ctxbuf_t *ctx);
241 extern int smb_ctxbuf_printf(smb_ctxbuf_t *ctx, const char *fmt, ...);
242 
243 void smb_idmap_check(const char *, idmap_stat);
244 
245 /* Miscellaneous functions */
246 extern void hexdump(unsigned char *, int);
247 extern size_t bintohex(const char *, size_t, char *, size_t);
248 extern size_t hextobin(const char *, size_t, char *, size_t);
249 extern char *strstrip(char *, const char *);
250 extern char *strtrim(char *, const char *);
251 extern char *trim_whitespace(char *);
252 extern void randomize(char *, unsigned);
253 extern void rand_hash(unsigned char *, size_t, unsigned char *, size_t);
254 
255 extern int smb_getdomainname(char *, size_t);
256 extern int smb_getfqdomainname(char *, size_t);
257 
258 typedef enum smb_caseconv {
259 	SMB_CASE_PRESERVE = 0,
260 	SMB_CASE_UPPER,
261 	SMB_CASE_LOWER
262 } smb_caseconv_t;
263 
264 extern int smb_gethostname(char *, size_t, smb_caseconv_t);
265 extern int smb_getfqhostname(char *, size_t);
266 extern int smb_getnetbiosname(char *, size_t);
267 extern struct hostent *smb_gethostbyname(const char *, int *);
268 extern struct hostent *smb_gethostbyaddr(const char *, int, int, int *);
269 
270 #define	SMB_SAMACCT_MAXLEN	(NETBIOS_NAME_SZ + 1)
271 extern int smb_getsamaccount(char *, size_t);
272 
273 extern int smb_get_nameservers(smb_inaddr_t *, int);
274 extern void smb_tonetbiosname(char *, char *, char);
275 
276 extern int smb_chk_hostaccess(smb_inaddr_t *, char *);
277 
278 extern int smb_getnameinfo(smb_inaddr_t *, char *, int, int);
279 
280 void smb_trace(const char *s);
281 void smb_tracef(const char *fmt, ...);
282 
283 /*
284  * Authentication
285  */
286 
287 #define	SMBAUTH_LM_MAGIC_STR	"KGS!@#$%"
288 
289 #define	SMBAUTH_HASH_SZ		16	/* also LM/NTLM/NTLMv2 Hash size */
290 #define	SMBAUTH_LM_RESP_SZ	24	/* also NTLM Response size */
291 #define	SMBAUTH_LM_PWD_SZ	14	/* LM password size */
292 #define	SMBAUTH_V2_CLNT_CHALLENGE_SZ 8	/* both LMv2 and NTLMv2 */
293 #define	SMBAUTH_SESSION_KEY_SZ	SMBAUTH_HASH_SZ
294 #define	SMBAUTH_HEXHASH_SZ	(SMBAUTH_HASH_SZ * 2)
295 
296 #define	SMBAUTH_FAILURE		1
297 #define	SMBAUTH_SUCCESS		0
298 #define	MD_DIGEST_LEN		16
299 
300 /*
301  * Name Types
302  *
303  * The list of names near the end of the data blob (i.e. the ndb_names
304  * field of the smb_auth_data_blob_t data structure) can be classify into
305  * the following types:
306  *
307  * 0x0000 Indicates the end of the list.
308  * 0x0001 The name is a NetBIOS machine name (e.g. server name)
309  * 0x0002 The name is an NT Domain NetBIOS name.
310  * 0x0003 The name is the server's DNS hostname.
311  * 0x0004 The name is a W2K Domain name (a DNS name).
312  */
313 #define	SMBAUTH_NAME_TYPE_LIST_END		0x0000
314 #define	SMBAUTH_NAME_TYPE_SERVER_NETBIOS 	0x0001
315 #define	SMBAUTH_NAME_TYPE_DOMAIN_NETBIOS 	0x0002
316 #define	SMBAUTH_NAME_TYPE_SERVER_DNS		0x0003
317 #define	SMBAUTH_NAME_TYPE_DOMAIN_DNS 		0x0004
318 
319 /*
320  * smb_auth_name_entry_t
321  *
322  * Each name entry in the data blob consists of the following 3 fields:
323  *
324  * nne_type - name type
325  * nne_len  - the length of the name
326  * nne_name - the name, in uppercase UCS-2LE Unicode format
327  */
328 typedef struct smb_auth_name_entry {
329 	unsigned short nne_type;
330 	unsigned short nne_len;
331 	smb_wchar_t nne_name[SMB_PI_MAX_DOMAIN * 2];
332 } smb_auth_name_entry_t;
333 
334 /*
335  * smb_auth_data_blob
336  *
337  * The format of this NTLMv2 data blob structure is as follow:
338  *
339  *	- Blob Signature 0x01010000 (4 bytes)
340  * - Reserved (0x00000000) (4 bytes)
341  * - Timestamp Little-endian, 64-bit signed value representing
342  *   the number of tenths of a microsecond since January 1, 1601.
343  *   (8 bytes)
344  * - Client Challenge (8 bytes)
345  * - Unknown1 (4 bytes)
346  * - List of Target Information (variable length)
347  * - Unknown2 (4 bytes)
348  */
349 typedef struct smb_auth_data_blob {
350 	unsigned char ndb_signature[4];
351 	unsigned char ndb_reserved[4];
352 	uint64_t ndb_timestamp;
353 	unsigned char ndb_clnt_challenge[SMBAUTH_V2_CLNT_CHALLENGE_SZ];
354 	unsigned char ndb_unknown[4];
355 	smb_auth_name_entry_t ndb_names[2];
356 	unsigned char ndb_unknown2[4];
357 } smb_auth_data_blob_t;
358 
359 #define	SMBAUTH_BLOB_MAXLEN (sizeof (smb_auth_data_blob_t))
360 #define	SMBAUTH_CI_MAXLEN   SMBAUTH_LM_RESP_SZ
361 #define	SMBAUTH_CS_MAXLEN   (SMBAUTH_BLOB_MAXLEN + SMBAUTH_HASH_SZ)
362 
363 /*
364  * smb_auth_info_t
365  *
366  * The structure contains all the authentication information
367  * needed for the preparaton of the SMBSessionSetupAndx request
368  * and the user session key.
369  *
370  * hash      - NTLM hash
371  * hash_v2   - NTLMv2 hash
372  * ci_len    - the length of the case-insensitive password
373  * ci        - case-insensitive password
374  *             (If NTLMv2 authentication mechanism is used, it
375  *              represents the LMv2 response. Otherwise, it
376  *              is empty.)
377  * cs_len    - the length of the case-sensitive password
378  * cs        - case-sensitive password
379  *             (If NTLMv2 authentication mechanism is used, it
380  *              represents the NTLMv2 response. Otherwise, it
381  *              represents the NTLM response.)
382  * data_blob - NTLMv2 data blob
383  */
384 typedef struct smb_auth_info {
385 	unsigned char hash[SMBAUTH_HASH_SZ];
386 	unsigned char hash_v2[SMBAUTH_HASH_SZ];
387 	unsigned short ci_len;
388 	unsigned char ci[SMBAUTH_CI_MAXLEN];
389 	unsigned short cs_len;
390 	unsigned char cs[SMBAUTH_CS_MAXLEN];
391 	int lmcompatibility_lvl;
392 	smb_auth_data_blob_t data_blob;
393 } smb_auth_info_t;
394 
395 /*
396  * SMB password management
397  */
398 
399 #define	SMB_PWF_LM	0x01	/* LM hash is present */
400 #define	SMB_PWF_NT	0x02	/* NT hash is present */
401 #define	SMB_PWF_DISABLE	0x04	/* Account is disabled */
402 
403 typedef struct smb_passwd {
404 	uid_t		pw_uid;
405 	uint32_t	pw_flags;
406 	char		pw_name[SMB_USERNAME_MAXLEN];
407 	uint8_t		pw_lmhash[SMBAUTH_HASH_SZ];
408 	uint8_t		pw_nthash[SMBAUTH_HASH_SZ];
409 } smb_passwd_t;
410 
411 /*
412  * Control flags passed to smb_pwd_setcntl
413  */
414 #define	SMB_PWC_DISABLE	0x01
415 #define	SMB_PWC_ENABLE	0x02
416 #define	SMB_PWC_NOLM	0x04
417 
418 #define	SMB_PWE_SUCCESS		0
419 #define	SMB_PWE_USER_UNKNOWN	1
420 #define	SMB_PWE_USER_DISABLE	2
421 #define	SMB_PWE_CLOSE_FAILED	3
422 #define	SMB_PWE_OPEN_FAILED	4
423 #define	SMB_PWE_WRITE_FAILED	6
424 #define	SMB_PWE_UPDATE_FAILED	7
425 #define	SMB_PWE_STAT_FAILED	8
426 #define	SMB_PWE_BUSY		9
427 #define	SMB_PWE_DENIED		10
428 #define	SMB_PWE_SYSTEM_ERROR	11
429 #define	SMB_PWE_INVALID_PARAM	12
430 #define	SMB_PWE_NO_MEMORY	13
431 #define	SMB_PWE_MAX		14
432 
433 typedef struct smb_pwditer {
434 	void *spi_next;
435 } smb_pwditer_t;
436 
437 typedef struct smb_luser {
438 	char *su_name;
439 	char *su_fullname;
440 	char *su_desc;
441 	uint32_t su_rid;
442 	uint32_t su_ctrl;
443 } smb_luser_t;
444 
445 extern void smb_pwd_init(boolean_t);
446 extern void smb_pwd_fini(void);
447 extern smb_passwd_t *smb_pwd_getpwnam(const char *, smb_passwd_t *);
448 extern smb_passwd_t *smb_pwd_getpwuid(uid_t, smb_passwd_t *);
449 extern int smb_pwd_setpasswd(const char *, const char *);
450 extern int smb_pwd_setcntl(const char *, int);
451 
452 extern int smb_pwd_iteropen(smb_pwditer_t *);
453 extern smb_luser_t *smb_pwd_iterate(smb_pwditer_t *);
454 extern void smb_pwd_iterclose(smb_pwditer_t *);
455 
456 extern int smb_auth_qnd_unicode(smb_wchar_t *, const char *, int);
457 extern int smb_auth_hmac_md5(unsigned char *, int, unsigned char *, int,
458     unsigned char *);
459 
460 /*
461  * A variation on HMAC-MD5 known as HMACT64 is used by Windows systems.
462  * The HMACT64() function is the same as the HMAC-MD5() except that
463  * it truncates the input key to 64 bytes rather than hashing it down
464  * to 16 bytes using the MD5() function.
465  */
466 #define	SMBAUTH_HMACT64(D, Ds, K, Ks, digest) \
467 	smb_auth_hmac_md5(D, Ds, K, (Ks > 64) ? 64 : Ks, digest)
468 
469 extern int smb_auth_DES(unsigned char *, int, unsigned char *, int,
470     unsigned char *, int);
471 
472 extern int smb_auth_md4(unsigned char *, unsigned char *, int);
473 extern int smb_auth_lm_hash(const char *, unsigned char *);
474 extern int smb_auth_ntlm_hash(const char *, unsigned char *);
475 
476 extern int smb_auth_set_info(char *, char *,
477     unsigned char *, char *, unsigned char *,
478     int, int, smb_auth_info_t *);
479 
480 extern int smb_auth_ntlmv2_hash(unsigned char *,
481 	char *, char *, unsigned char *);
482 
483 extern int smb_auth_gen_session_key(smb_auth_info_t *, unsigned char *);
484 
485 boolean_t smb_auth_validate_lm(unsigned char *, uint32_t, smb_passwd_t *,
486     unsigned char *, int, char *, char *);
487 boolean_t smb_auth_validate_nt(unsigned char *, uint32_t, smb_passwd_t *,
488     unsigned char *, int, char *, char *, uchar_t *);
489 
490 /*
491  * SMB authenticated IPC
492  */
493 extern void smb_ipc_commit(void);
494 extern void smb_ipc_get_user(char *, size_t);
495 extern void smb_ipc_get_passwd(uint8_t *, size_t);
496 extern void smb_ipc_init(void);
497 extern void smb_ipc_rollback(void);
498 extern void smb_ipc_set(char *, uint8_t *);
499 
500 /*
501  * SMB MAC Signing
502  */
503 
504 #define	SMB_MAC_KEY_SZ	(SMBAUTH_SESSION_KEY_SZ + SMBAUTH_CS_MAXLEN)
505 #define	SMB_SIG_OFFS	14	/* signature field offset within header */
506 #define	SMB_SIG_SIZE	8	/* SMB signature size */
507 
508 /*
509  * Signing flags:
510  *
511  * SMB_SCF_ENABLE                 Signing is enabled.
512  *
513  * SMB_SCF_REQUIRED               Signing is enabled and required.
514  *                                This flag shouldn't be set if
515  *                                SMB_SCF_ENABLE isn't set.
516  *
517  * SMB_SCF_STARTED                Signing will start after receiving
518  *                                the first non-anonymous SessionSetup
519  *                                request.
520  *
521  * SMB_SCF_KEY_ISSET_THIS_LOGON   Indicates whether the MAC key has just
522  *                                been set for this logon. (prior to
523  *                                sending the SMBSessionSetup request)
524  *
525  */
526 #define	SMB_SCF_ENABLE		0x01
527 #define	SMB_SCF_REQUIRED	0x02
528 #define	SMB_SCF_STARTED		0x04
529 #define	SMB_SCF_KEY_ISSET_THIS_LOGON	0x08
530 
531 /*
532  * smb_sign_ctx
533  *
534  * SMB signing context.
535  *
536  *	ssc_seqnum				sequence number
537  *	ssc_keylen				mac key length
538  *	ssc_mid					multiplex id - reserved
539  *	ssc_flags				flags
540  *	ssc_mackey				mac key
541  *	ssc_sign				mac signature
542  *
543  */
544 typedef struct smb_sign_ctx {
545 	unsigned int ssc_seqnum;
546 	unsigned short ssc_keylen;
547 	unsigned short ssc_mid;
548 	unsigned int ssc_flags;
549 	unsigned char ssc_mackey[SMB_MAC_KEY_SZ];
550 	unsigned char ssc_sign[SMB_SIG_SIZE];
551 } smb_sign_ctx_t;
552 
553 extern int smb_mac_init(smb_sign_ctx_t *sign_ctx, smb_auth_info_t *auth);
554 extern int smb_mac_calc(smb_sign_ctx_t *sign_ctx,
555     const unsigned char *buf, size_t buf_len, unsigned char *mac_sign);
556 extern int smb_mac_chk(smb_sign_ctx_t *sign_ctx,
557     const unsigned char *buf, size_t buf_len);
558 extern int smb_mac_sign(smb_sign_ctx_t *sign_ctx,
559     unsigned char *buf, size_t buf_len);
560 extern void smb_mac_inc_seqnum(smb_sign_ctx_t *sign_ctx);
561 extern void smb_mac_dec_seqnum(smb_sign_ctx_t *sign_ctx);
562 
563 /*
564  * Each domain is categorized using the enum values below.
565  * The local domain refers to the local machine and is named
566  * after the local hostname. The primary domain is the domain
567  * that the system joined. All other domains are either
568  * trusted or untrusted, as defined by the primary domain PDC.
569  */
570 typedef enum smb_domain_type {
571 	SMB_DOMAIN_NULL,
572 	SMB_DOMAIN_BUILTIN,
573 	SMB_DOMAIN_LOCAL,
574 	SMB_DOMAIN_PRIMARY,
575 	SMB_DOMAIN_ACCOUNT,
576 	SMB_DOMAIN_TRUSTED,
577 	SMB_DOMAIN_UNTRUSTED,
578 	SMB_DOMAIN_NUM_TYPES
579 } smb_domain_type_t;
580 
581 /*
582  * Information specific to trusted domains
583  */
584 typedef struct smb_domain_trust {
585 	uint32_t		dti_trust_direction;
586 	uint32_t		dti_trust_type;
587 	uint32_t		dti_trust_attrs;
588 } smb_domain_trust_t;
589 
590 /*
591  * DNS information for domain types that this info is
592  * obtained/available. Currently this is only obtained
593  * for the primary domain.
594  */
595 typedef struct smb_domain_dns {
596 	char			ddi_forest[MAXHOSTNAMELEN];
597 	char			ddi_guid[UUID_PRINTABLE_STRING_LENGTH];
598 } smb_domain_dns_t;
599 
600 /*
601  * This is the information that is held about each domain.
602  */
603 typedef struct smb_domain {
604 	list_node_t		di_lnd;
605 	smb_domain_type_t	di_type;
606 	char			di_sid[SMB_SID_STRSZ];
607 	char			di_nbname[NETBIOS_NAME_SZ];
608 	char			di_fqname[MAXHOSTNAMELEN];
609 	smb_sid_t		*di_binsid;
610 	union {
611 		smb_domain_dns_t	di_dns;
612 		smb_domain_trust_t	di_trust;
613 	} di_u;
614 } smb_domain_t;
615 
616 typedef struct smb_trusted_domains {
617 	uint32_t	td_num;
618 	smb_domain_t	*td_domains;
619 } smb_trusted_domains_t;
620 
621 #define	SMB_DOMAIN_SUCCESS		0
622 #define	SMB_DOMAIN_NOMACHINE_SID	1
623 #define	SMB_DOMAIN_NODOMAIN_SID		2
624 #define	SMB_DOMAIN_NODOMAIN_NAME	3
625 #define	SMB_DOMAIN_INTERNAL_ERR		4
626 #define	SMB_DOMAIN_INVALID_ARG		5
627 #define	SMB_DOMAIN_NO_MEMORY		6
628 #define	SMB_DOMAIN_NO_CACHE		7
629 
630 /*
631  * This structure could contain information about
632  * the primary domain the name of selected domain controller
633  * for the primary domain and a list of trusted domains if
634  * any. The "ex" in the structure name stands for extended.
635  * This is to differentiate this structure from smb_domain_t
636  * which only contains information about a single domain.
637  */
638 typedef struct smb_domainex {
639 	char			d_dc[MAXHOSTNAMELEN];
640 	smb_domain_t		d_primary;
641 	smb_trusted_domains_t	d_trusted;
642 } smb_domainex_t;
643 
644 int smb_domain_init(uint32_t);
645 void smb_domain_fini(void);
646 void smb_domain_show(void);
647 void smb_domain_save(void);
648 boolean_t smb_domain_lookup_name(char *, smb_domain_t *);
649 boolean_t smb_domain_lookup_sid(smb_sid_t *, smb_domain_t *);
650 boolean_t smb_domain_lookup_type(smb_domain_type_t, smb_domain_t *);
651 boolean_t smb_domain_getinfo(smb_domainex_t *);
652 void smb_domain_update(smb_domainex_t *);
653 uint32_t smb_domain_start_update(void);
654 void smb_domain_end_update(void);
655 void smb_domain_set_basic_info(char *, char *, char *, smb_domain_t *);
656 void smb_domain_set_dns_info(char *, char *, char *, char *, char *,
657     smb_domain_t *);
658 void smb_domain_set_trust_info(char *, char *, char *,
659     uint32_t, uint32_t, uint32_t, smb_domain_t *);
660 
661 typedef struct smb_gsid {
662 	smb_sid_t *gs_sid;
663 	uint16_t gs_type;
664 } smb_gsid_t;
665 
666 typedef struct smb_giter {
667 	sqlite_vm	*sgi_vm;
668 	sqlite		*sgi_db;
669 	uint32_t	sgi_nerr;
670 } smb_giter_t;
671 
672 typedef struct smb_group {
673 	char			*sg_name;
674 	char			*sg_cmnt;
675 	uint32_t		sg_attr;
676 	uint32_t		sg_rid;
677 	smb_gsid_t		sg_id;
678 	smb_domain_type_t	sg_domain;
679 	smb_privset_t		*sg_privs;
680 	uint32_t		sg_nmembers;
681 	smb_gsid_t		*sg_members;
682 } smb_group_t;
683 
684 int smb_lgrp_start(void);
685 void smb_lgrp_stop(void);
686 int smb_lgrp_add(char *, char *);
687 int smb_lgrp_rename(char *, char *);
688 int smb_lgrp_delete(char *);
689 int smb_lgrp_setcmnt(char *, char *);
690 int smb_lgrp_getcmnt(char *, char **);
691 int smb_lgrp_getpriv(char *, uint8_t, boolean_t *);
692 int smb_lgrp_setpriv(char *, uint8_t, boolean_t);
693 int smb_lgrp_add_member(char *, smb_sid_t *, uint16_t);
694 int smb_lgrp_del_member(char *, smb_sid_t *, uint16_t);
695 int smb_lgrp_getbyname(char *, smb_group_t *);
696 int smb_lgrp_getbyrid(uint32_t, smb_domain_type_t, smb_group_t *);
697 void smb_lgrp_free(smb_group_t *);
698 uint32_t smb_lgrp_err_to_ntstatus(uint32_t);
699 boolean_t smb_lgrp_is_member(smb_group_t *, smb_sid_t *);
700 char *smb_lgrp_strerror(int);
701 int smb_lgrp_iteropen(smb_giter_t *);
702 void smb_lgrp_iterclose(smb_giter_t *);
703 boolean_t smb_lgrp_itererror(smb_giter_t *);
704 int smb_lgrp_iterate(smb_giter_t *, smb_group_t *);
705 
706 int smb_lookup_sid(const char *, lsa_account_t *);
707 int smb_lookup_name(const char *, sid_type_t, lsa_account_t *);
708 
709 #define	SMB_LGRP_SUCCESS		0
710 #define	SMB_LGRP_INVALID_ARG		1
711 #define	SMB_LGRP_INVALID_MEMBER		2
712 #define	SMB_LGRP_INVALID_NAME		3
713 #define	SMB_LGRP_NOT_FOUND		4
714 #define	SMB_LGRP_EXISTS			5
715 #define	SMB_LGRP_NO_SID			6
716 #define	SMB_LGRP_NO_LOCAL_SID		7
717 #define	SMB_LGRP_SID_NOTLOCAL		8
718 #define	SMB_LGRP_WKSID			9
719 #define	SMB_LGRP_NO_MEMORY		10
720 #define	SMB_LGRP_DB_ERROR		11
721 #define	SMB_LGRP_DBINIT_ERROR		12
722 #define	SMB_LGRP_INTERNAL_ERROR		13
723 #define	SMB_LGRP_MEMBER_IN_GROUP	14
724 #define	SMB_LGRP_MEMBER_NOT_IN_GROUP	15
725 #define	SMB_LGRP_NO_SUCH_PRIV		16
726 #define	SMB_LGRP_NO_SUCH_DOMAIN		17
727 #define	SMB_LGRP_PRIV_HELD		18
728 #define	SMB_LGRP_PRIV_NOT_HELD		19
729 #define	SMB_LGRP_BAD_DATA		20
730 #define	SMB_LGRP_NO_MORE		21
731 #define	SMB_LGRP_DBOPEN_FAILED		22
732 #define	SMB_LGRP_DBEXEC_FAILED		23
733 #define	SMB_LGRP_DBINIT_FAILED		24
734 #define	SMB_LGRP_DOMLKP_FAILED		25
735 #define	SMB_LGRP_DOMINS_FAILED		26
736 #define	SMB_LGRP_INSERT_FAILED		27
737 #define	SMB_LGRP_DELETE_FAILED		28
738 #define	SMB_LGRP_UPDATE_FAILED		29
739 #define	SMB_LGRP_LOOKUP_FAILED		30
740 #define	SMB_LGRP_NOT_SUPPORTED		31
741 #define	SMB_LGRP_OFFLINE		32
742 
743 #define	SMB_LGRP_COMMENT_MAX	256
744 
745 /*
746  * values for smb_nic_t.smbflags
747  */
748 #define	SMB_NICF_NBEXCL		0x01	/* Excluded from Netbios activities */
749 #define	SMB_NICF_ALIAS		0x02	/* This is an alias */
750 
751 /*
752  * smb_nic_t
753  *     nic_host		actual host name
754  *     nic_nbname	16-byte NetBIOS host name
755  */
756 typedef struct {
757 	char		nic_host[MAXHOSTNAMELEN];
758 	char		nic_nbname[NETBIOS_NAME_SZ];
759 	char		nic_cmnt[SMB_PI_MAX_COMMENT];
760 	char		nic_ifname[LIFNAMSIZ];
761 	smb_inaddr_t	nic_ip;
762 	uint32_t	nic_mask;
763 	uint32_t	nic_bcast;
764 	uint32_t	nic_smbflags;
765 	uint64_t	nic_sysflags;
766 } smb_nic_t;
767 
768 typedef struct smb_niciter {
769 	smb_nic_t ni_nic;
770 	int ni_cookie;
771 	int ni_seqnum;
772 } smb_niciter_t;
773 
774 /* NIC config functions */
775 int smb_nic_init(void);
776 void smb_nic_fini(void);
777 int smb_nic_getnum(char *);
778 int smb_nic_addhost(const char *, const char *, int, const char **);
779 int smb_nic_delhost(const char *);
780 int smb_nic_getfirst(smb_niciter_t *);
781 int smb_nic_getnext(smb_niciter_t *);
782 boolean_t smb_nic_is_local(smb_inaddr_t *);
783 boolean_t smb_nic_is_same_subnet(smb_inaddr_t *);
784 
785 #define	SMB_NIC_SUCCESS			0
786 #define	SMB_NIC_INVALID_ARG		1
787 #define	SMB_NIC_NOT_FOUND		2
788 #define	SMB_NIC_NO_HOST			3
789 #define	SMB_NIC_NO_MEMORY		4
790 #define	SMB_NIC_DB_ERROR		5
791 #define	SMB_NIC_DBINIT_ERROR		6
792 #define	SMB_NIC_BAD_DATA		7
793 #define	SMB_NIC_NO_MORE			8
794 #define	SMB_NIC_DBOPEN_FAILED		9
795 #define	SMB_NIC_DBEXEC_FAILED		10
796 #define	SMB_NIC_DBINIT_FAILED		11
797 #define	SMB_NIC_INSERT_FAILED		12
798 #define	SMB_NIC_DELETE_FAILED		13
799 #define	SMB_NIC_SOCK			14
800 #define	SMB_NIC_IOCTL			15
801 #define	SMB_NIC_CHANGED			16
802 
803 /* NIC Monitoring functions */
804 int smb_nicmon_start(const char *);
805 void smb_nicmon_stop(void);
806 
807 /*
808  * Well-known account structure
809  *
810  * A security identifier (SID) is a unique value of variable length that
811  * is used to identify a security principal or security group in
812  * Windows. Well-known SIDs are a group of SIDs that identify generic
813  * users or generic groups. Their values remain constant across all
814  * operating systems.
815  *
816  * This structure is defined to store these SIDs and other related
817  * information about them (e.g. account and domain names) in a
818  * predefined table.
819  */
820 typedef struct smb_wka {
821 	uint8_t		wka_domidx;
822 	char		*wka_sid;
823 	char		*wka_name;
824 	uint16_t	wka_type;
825 	uint16_t	wka_flags;
826 	char		*wka_desc;
827 	smb_sid_t	*wka_binsid;
828 } smb_wka_t;
829 
830 /*
831  * Defined values for smb_wka.wka_flags
832  *
833  * SMB_WKAFLG_LGRP_ENABLE		Can be added as local group
834  */
835 #define	SMB_WKAFLG_LGRP_ENABLE	0x1
836 
837 /*
838  * Well-known account interfaces
839  */
840 smb_wka_t *smb_wka_lookup_builtin(const char *);
841 smb_wka_t *smb_wka_lookup_name(const char *);
842 smb_wka_t *smb_wka_lookup_sid(smb_sid_t *);
843 smb_sid_t *smb_wka_get_sid(const char *);
844 char *smb_wka_get_domain(int);
845 uint32_t smb_wka_token_groups(uint32_t, smb_ids_t *);
846 
847 /*
848  * In memory account representation
849  */
850 typedef struct smb_account {
851 	char		*a_name;
852 	char		*a_domain;
853 	uint16_t	a_type;
854 	smb_sid_t	*a_sid;
855 	smb_sid_t	*a_domsid;
856 	uint32_t	a_rid;
857 } smb_account_t;
858 
859 uint32_t smb_sam_lookup_name(char *, char *, uint16_t, smb_account_t *);
860 uint32_t smb_sam_lookup_sid(smb_sid_t *, smb_account_t *);
861 int smb_sam_usr_cnt(void);
862 uint32_t smb_sam_usr_groups(smb_sid_t *, smb_ids_t *);
863 int smb_sam_grp_cnt(smb_domain_type_t);
864 void smb_account_free(smb_account_t *);
865 boolean_t smb_account_validate(smb_account_t *);
866 
867 /*
868  * Security Descriptor functions.
869  */
870 uint32_t smb_sd_read(char *path, smb_sd_t *, uint32_t);
871 uint32_t smb_sd_write(char *path, smb_sd_t *, uint32_t);
872 uint32_t smb_sd_fromfs(smb_fssd_t *, smb_sd_t *);
873 
874 /* Kernel Module Interface */
875 int smb_kmod_bind(void);
876 int smb_kmod_setcfg(smb_kmod_cfg_t *);
877 int smb_kmod_setgmtoff(int32_t);
878 int smb_kmod_start(int, int, int);
879 void smb_kmod_stop(void);
880 int smb_kmod_event_notify(uint32_t);
881 int smb_kmod_tcplisten(int);
882 int smb_kmod_nbtlisten(int);
883 int smb_kmod_tcpreceive(void);
884 int smb_kmod_nbtreceive(void);
885 void smb_kmod_unbind(void);
886 int smb_kmod_share(char *, char *);
887 int smb_kmod_unshare(char *, char *);
888 int smb_kmod_get_open_num(smb_opennum_t *);
889 int smb_kmod_enum(smb_netsvc_t *);
890 smb_netsvc_t *smb_kmod_enum_init(smb_svcenum_t *);
891 void smb_kmod_enum_fini(smb_netsvc_t *);
892 int smb_kmod_session_close(const char *, const char *);
893 int smb_kmod_file_close(uint32_t);
894 
895 void smb_name_parse(char *, char **, char **);
896 uint32_t smb_name_validate_share(const char *);
897 uint32_t smb_name_validate_account(const char *);
898 uint32_t smb_name_validate_domain(const char *);
899 uint32_t smb_name_validate_nbdomain(const char *);
900 uint32_t smb_name_validate_workgroup(const char *);
901 uint32_t smb_name_validate_rpath(const char *);
902 
903 /*
904  * Interposer library validation
905  */
906 #define	SMBEX_VERSION	1
907 #define	SMBEX_KEY	"82273fdc-e32a-18c3-3f78-827929dc23ea"
908 typedef struct smbex_version {
909 	uint32_t v_version;
910 	uuid_t v_uuid;
911 } smbex_version_t;
912 void *smb_dlopen(void);
913 void smb_dlclose(void *);
914 
915 /*
916  * General purpose multi-thread safe cache based on
917  * AVL tree
918  */
919 typedef struct smb_cache {
920 	avl_tree_t	ch_cache;
921 	rwlock_t	ch_cache_lck;
922 	uint32_t	ch_state;
923 	uint32_t	ch_nops;
924 	uint32_t	ch_wait;
925 	uint32_t	ch_sequence;
926 	size_t		ch_datasz;
927 	mutex_t		ch_mtx;
928 	cond_t		ch_cv;
929 	void		(*ch_free)(void *);
930 	void		(*ch_copy)(const void *, void *, size_t);
931 } smb_cache_t;
932 
933 typedef struct smb_cache_node {
934 	avl_node_t	cn_link;
935 	void		*cn_data;
936 } smb_cache_node_t;
937 
938 typedef struct smb_cache_cursor {
939 	void		*cc_next;
940 	uint32_t	cc_sequence;
941 } smb_cache_cursor_t;
942 
943 /*
944  * flags used with smb_cache_add()
945  *
946  * SMB_CACHE_ADD	If object doesn't exist add, otherwise fail
947  * SMB_CACHE_REPLACE	If object doesn't exist add, otherwise replace
948  */
949 #define	SMB_CACHE_ADD		1
950 #define	SMB_CACHE_REPLACE	2
951 
952 void smb_cache_create(smb_cache_t *, uint32_t,
953     int (*cmpfn) (const void *, const void *), void (*freefn)(void *),
954     void (*copyfn)(const void *, void *, size_t), size_t);
955 void smb_cache_destroy(smb_cache_t *);
956 void smb_cache_flush(smb_cache_t *);
957 uint32_t smb_cache_num(smb_cache_t *);
958 int smb_cache_refreshing(smb_cache_t *);
959 void smb_cache_ready(smb_cache_t *);
960 int smb_cache_add(smb_cache_t *, const void *, int);
961 void smb_cache_remove(smb_cache_t *, const void *);
962 void smb_cache_iterinit(smb_cache_t *, smb_cache_cursor_t *);
963 boolean_t smb_cache_iterate(smb_cache_t *, smb_cache_cursor_t *, void *);
964 
965 /*
966  * Values returned by smb_reparse_stat()
967  */
968 #define	SMB_REPARSE_NOTFOUND	1	/* object does not exist */
969 #define	SMB_REPARSE_NOTREPARSE	2	/* object is NOT a reparse point */
970 #define	SMB_REPARSE_ISREPARSE	3	/* object is a reparse point */
971 
972 /*
973  * Reparse Point API
974  */
975 int smb_reparse_stat(const char *, uint32_t *);
976 int smb_reparse_svcadd(const char *, const char *, const char *);
977 int smb_reparse_svcdel(const char *, const char *);
978 int smb_reparse_svcget(const char *, const char *, char **);
979 
980 #ifdef	__cplusplus
981 }
982 #endif
983 
984 #endif	/* _LIBSMB_H */
985