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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright 2020 RackTop Systems, Inc.
24  * Copyright 2020 Tintri by DDN, Inc. All rights reserved.
25  */
26 
27 /*
28  * Structures and type definitions for the SMB module.
29  */
30 
31 #ifndef _SMBSRV_SMB_KTYPES_H
32 #define	_SMBSRV_SMB_KTYPES_H
33 
34 #ifdef	__cplusplus
35 extern "C" {
36 #endif
37 
38 #include <sys/note.h>
39 #include <sys/systm.h>
40 #include <sys/param.h>
41 #include <sys/types.h>
42 #include <sys/synch.h>
43 #include <sys/taskq.h>
44 #include <sys/socket.h>
45 #include <sys/acl.h>
46 #include <sys/sdt.h>
47 #include <sys/stat.h>
48 #include <sys/vnode.h>
49 #include <sys/cred.h>
50 #include <netinet/in.h>
51 #include <sys/ksocket.h>
52 #include <sys/fem.h>
53 #include <smbsrv/smb.h>
54 #include <smbsrv/smb2.h>
55 #include <smbsrv/smbinfo.h>
56 #include <smbsrv/mbuf.h>
57 #include <smbsrv/smb_sid.h>
58 #include <smbsrv/smb_xdr.h>
59 #include <smbsrv/netbios.h>
60 #include <smbsrv/smb_vops.h>
61 #include <smbsrv/smb_kstat.h>
62 
63 struct __door_handle;	/* <sys/door.h> */
64 struct edirent;		/* <sys/extdirent.h> */
65 struct nvlist;
66 
67 struct smb_disp_entry;
68 struct smb_request;
69 struct smb_server;
70 struct smb_event;
71 struct smb_export;
72 
73 /*
74  * Accumulated time and queue length statistics.
75  *
76  * Accumulated time statistics are kept as a running sum of "active" time.
77  * Queue length statistics are kept as a running sum of the product of queue
78  * length and elapsed time at that length -- i.e., a Riemann sum for queue
79  * length integrated against time.  (You can also think of the active time as a
80  * Riemann sum, for the boolean function (queue_length > 0) integrated against
81  * time, or you can think of it as the Lebesgue measure of the set on which
82  * queue_length > 0.)
83  *
84  *		^
85  *		|			_________
86  *		8			| i4	|
87  *		|			|	|
88  *	Queue	6			|	|
89  *	Length	|	_________	|	|
90  *		4	| i2	|_______|	|
91  *		|	|	    i3		|
92  *		2_______|			|
93  *		|    i1				|
94  *		|_______________________________|
95  *		Time->	t1	t2	t3	t4
96  *
97  * At each change of state (entry or exit from the queue), we add the elapsed
98  * time (since the previous state change) to the active time if the queue length
99  * was non-zero during that interval; and we add the product of the elapsed time
100  * times the queue length to the running length*time sum.
101  *
102  * This method is generalizable to measuring residency in any defined system:
103  * instead of queue lengths, think of "outstanding RPC calls to server X".
104  *
105  * A large number of I/O subsystems have at least two basic "lists" of
106  * transactions they manage: one for transactions that have been accepted for
107  * processing but for which processing has yet to begin, and one for
108  * transactions which are actively being processed (but not done). For this
109  * reason, two cumulative time statistics are defined here: wait (pre-service)
110  * time, and run (service) time.
111  *
112  * All times are 64-bit nanoseconds (hrtime_t), as returned by gethrtime().
113  *
114  * The units of cumulative busy time are accumulated nanoseconds. The units of
115  * cumulative length*time products are elapsed time times queue length.
116  *
117  * Updates to the fields below are performed implicitly by calls to
118  * these functions:
119  *
120  *	smb_srqueue_init()
121  *	smb_srqueue_destroy()
122  *	smb_srqueue_waitq_enter()
123  *	smb_srqueue_runq_exit()
124  *	smb_srqueue_waitq_to_runq()
125  *	smb_srqueue_update()
126  *
127  * These fields should never be updated by any other means.
128  */
129 typedef struct smb_srqueue {
130 	kmutex_t	srq_mutex;
131 	hrtime_t	srq_wlastupdate;
132 	hrtime_t	srq_wtime;
133 	hrtime_t	srq_wlentime;
134 	hrtime_t	srq_rlastupdate;
135 	hrtime_t	srq_rtime;
136 	hrtime_t	srq_rlentime;
137 	uint32_t	srq_wcnt;
138 	uint32_t	srq_rcnt;
139 } smb_srqueue_t;
140 
141 /*
142  * The fields with the prefix 'ly_a' contain the statistics collected since the
143  * server was last started ('a' for 'aggregated'). The fields with the prefix
144  * 'ly_d' contain the statistics collected since the last snapshot ('d' for
145  * 'delta').
146  */
147 typedef struct smb_latency {
148 	kmutex_t	ly_mutex;
149 	uint64_t	ly_a_nreq;
150 	hrtime_t	ly_a_sum;
151 	hrtime_t	ly_a_mean;
152 	hrtime_t	ly_a_stddev;
153 	uint64_t	ly_d_nreq;
154 	hrtime_t	ly_d_sum;
155 	hrtime_t	ly_d_mean;
156 	hrtime_t	ly_d_stddev;
157 } smb_latency_t;
158 
159 typedef struct smb_disp_stats {
160 	volatile uint64_t sdt_txb;
161 	volatile uint64_t sdt_rxb;
162 	smb_latency_t	sdt_lat;
163 } smb_disp_stats_t;
164 
165 int smb_noop(void *, size_t, int);
166 
167 #define	SMB_AUDIT_STACK_DEPTH	16
168 #define	SMB_AUDIT_BUF_MAX_REC	16
169 #define	SMB_AUDIT_NODE		0x00000001
170 
171 /*
172  * Maximum number of records returned in SMBsearch, SMBfind
173  * and SMBfindunique response. Value set to 10 for compatibility
174  * with Windows.
175  */
176 #define	SMB_MAX_SEARCH		10
177 
178 #define	SMB_SEARCH_ATTRIBUTES    \
179 	(FILE_ATTRIBUTE_HIDDEN | \
180 	FILE_ATTRIBUTE_SYSTEM |  \
181 	FILE_ATTRIBUTE_DIRECTORY)
182 
183 #define	SMB_SEARCH_HIDDEN(sattr) ((sattr) & FILE_ATTRIBUTE_HIDDEN)
184 #define	SMB_SEARCH_SYSTEM(sattr) ((sattr) & FILE_ATTRIBUTE_SYSTEM)
185 #define	SMB_SEARCH_DIRECTORY(sattr) ((sattr) & FILE_ATTRIBUTE_DIRECTORY)
186 #define	SMB_SEARCH_ALL(sattr) ((sattr) & SMB_SEARCH_ATTRIBUTES)
187 
188 typedef struct {
189 	uint32_t		anr_refcnt;
190 	int			anr_depth;
191 	pc_t			anr_stack[SMB_AUDIT_STACK_DEPTH];
192 } smb_audit_record_node_t;
193 
194 typedef struct {
195 	int			anb_index;
196 	int			anb_max_index;
197 	smb_audit_record_node_t	anb_records[SMB_AUDIT_BUF_MAX_REC];
198 } smb_audit_buf_node_t;
199 
200 /*
201  * Thread State Machine
202  * --------------------
203  *
204  *			    T5			   T0
205  * smb_thread_destroy()	<-------+		+------- smb_thread_init()
206  *                              |		|
207  *				|		v
208  *			+-----------------------------+
209  *			|   SMB_THREAD_STATE_EXITED   |<---+
210  *			+-----------------------------+	   |
211  *				      | T1		   |
212  *				      v			   |
213  *			+-----------------------------+	   |
214  *			|  SMB_THREAD_STATE_STARTING  |	   |
215  *			+-----------------------------+	   |
216  *				     | T2		   | T4
217  *				     v			   |
218  *			+-----------------------------+	   |
219  *			|  SMB_THREAD_STATE_RUNNING   |	   |
220  *			+-----------------------------+	   |
221  *				     | T3		   |
222  *				     v			   |
223  *			+-----------------------------+	   |
224  *			|  SMB_THREAD_STATE_EXITING   |----+
225  *			+-----------------------------+
226  *
227  * Transition T0
228  *
229  *    This transition is executed in smb_thread_init().
230  *
231  * Transition T1
232  *
233  *    This transition is executed in smb_thread_start().
234  *
235  * Transition T2
236  *
237  *    This transition is executed by the thread itself when it starts running.
238  *
239  * Transition T3
240  *
241  *    This transition is executed by the thread itself in
242  *    smb_thread_entry_point() just before calling thread_exit().
243  *
244  *
245  * Transition T4
246  *
247  *    This transition is executed in smb_thread_stop().
248  *
249  * Transition T5
250  *
251  *    This transition is executed in smb_thread_destroy().
252  */
253 typedef enum smb_thread_state {
254 	SMB_THREAD_STATE_STARTING = 0,
255 	SMB_THREAD_STATE_RUNNING,
256 	SMB_THREAD_STATE_EXITING,
257 	SMB_THREAD_STATE_EXITED,
258 	SMB_THREAD_STATE_FAILED
259 } smb_thread_state_t;
260 
261 struct _smb_thread;
262 
263 typedef void (*smb_thread_ep_t)(struct _smb_thread *, void *ep_arg);
264 
265 #define	SMB_THREAD_MAGIC	0x534D4254	/* SMBT */
266 
267 typedef struct _smb_thread {
268 	uint32_t		sth_magic;
269 	char			sth_name[32];
270 	smb_thread_state_t	sth_state;
271 	kthread_t		*sth_th;
272 	kt_did_t		sth_did;
273 	smb_thread_ep_t		sth_ep;
274 	void			*sth_ep_arg;
275 	pri_t			sth_pri;
276 	boolean_t		sth_kill;
277 	kmutex_t		sth_mtx;
278 	kcondvar_t		sth_cv;
279 } smb_thread_t;
280 
281 /*
282  * Pool of IDs
283  * -----------
284  *
285  *    A pool of IDs is a pool of 16 bit numbers. It is implemented as a bitmap.
286  *    A bit set to '1' indicates that that particular value has been allocated.
287  *    The allocation process is done shifting a bit through the whole bitmap.
288  *    The current position of that index bit is kept in the smb_idpool_t
289  *    structure and represented by a byte index (0 to buffer size minus 1) and
290  *    a bit index (0 to 7).
291  *
292  *    The pools start with a size of 8 bytes or 64 IDs. Each time the pool runs
293  *    out of IDs its current size is doubled until it reaches its maximum size
294  *    (8192 bytes or 65536 IDs). The IDs 0 and 65535 are never given out which
295  *    means that a pool can have a maximum number of 65534 IDs available.
296  */
297 #define	SMB_IDPOOL_MAGIC	0x4944504C	/* IDPL */
298 #define	SMB_IDPOOL_MIN_SIZE	64	/* Number of IDs to begin with */
299 #define	SMB_IDPOOL_MAX_SIZE	64 * 1024
300 
301 typedef struct smb_idpool {
302 	uint32_t	id_magic;
303 	kmutex_t	id_mutex;
304 	uint8_t		*id_pool;
305 	uint32_t	id_size;
306 	uint32_t	id_maxsize;
307 	uint8_t		id_bit;
308 	uint8_t		id_bit_idx;
309 	uint32_t	id_idx;
310 	uint32_t	id_idx_msk;
311 	uint32_t	id_free_counter;
312 	uint32_t	id_max_free_counter;
313 } smb_idpool_t;
314 
315 /*
316  * Maximum size of a Transport Data Unit when CAP_LARGE_READX and
317  * CAP_LARGE_WRITEX are not set.  CAP_LARGE_READX/CAP_LARGE_WRITEX
318  * allow the payload to exceed the negotiated buffer size.
319  *     4 --> NBT/TCP Transport Header.
320  *    32 --> SMB Header
321  *     1 --> Word Count byte
322  *   510 --> Maximum Number of bytes of the Word Table (2 * 255)
323  *     2 --> Byte count of the data
324  * 65535 --> Maximum size of the data
325  * -----
326  * 66084
327  */
328 #define	SMB_REQ_MAX_SIZE	66560		/* 65KB */
329 #define	SMB_XPRT_MAX_SIZE	(SMB_REQ_MAX_SIZE + NETBIOS_HDR_SZ)
330 
331 #define	SMB_TXREQ_MAGIC		0X54524251	/* 'TREQ' */
332 typedef struct {
333 	list_node_t	tr_lnd;
334 	uint32_t	tr_magic;
335 	int		tr_len;
336 	uint8_t		tr_buf[SMB_XPRT_MAX_SIZE];
337 } smb_txreq_t;
338 
339 #define	SMB_TXLST_MAGIC		0X544C5354	/* 'TLST' */
340 typedef struct {
341 	uint32_t	tl_magic;
342 	kmutex_t	tl_mutex;
343 	kcondvar_t	tl_wait_cv;
344 	boolean_t	tl_active;
345 } smb_txlst_t;
346 
347 /*
348  * Maximum buffer size for NT is 37KB.  If all clients are Windows 2000, this
349  * can be changed to 64KB.  37KB must be used with a mix of NT/Windows 2000
350  * clients because NT loses directory entries when values greater than 37KB are
351  * used.
352  *
353  * Note: NBT_MAXBUF will be subtracted from the specified max buffer size to
354  * account for the NBT header.
355  */
356 #define	NBT_MAXBUF		8
357 #define	SMB_NT_MAXBUF		(37 * 1024)
358 
359 #define	OUTBUFSIZE		(65 * 1024)
360 #define	SMBHEADERSIZE		32
361 #define	SMBND_HASH_MASK		(0xFF)
362 #define	MAX_IOVEC		512
363 #define	MAX_READREF		(8 * 1024)
364 
365 #define	SMB_WORKER_MIN		4
366 #define	SMB_WORKER_DEFAULT	64
367 #define	SMB_WORKER_MAX		1024
368 
369 /*
370  * Destructor object used in the locked-list delete queue.
371  */
372 #define	SMB_DTOR_MAGIC		0x44544F52	/* DTOR */
373 #define	SMB_DTOR_VALID(d)	\
374     ASSERT(((d) != NULL) && ((d)->dt_magic == SMB_DTOR_MAGIC))
375 
376 typedef void (*smb_dtorproc_t)(void *);
377 
378 typedef struct smb_dtor {
379 	list_node_t	dt_lnd;
380 	uint32_t	dt_magic;
381 	void		*dt_object;
382 	smb_dtorproc_t	dt_proc;
383 } smb_dtor_t;
384 
385 typedef struct smb_llist {
386 	krwlock_t	ll_lock;
387 	list_t		ll_list;
388 	uint32_t	ll_count;
389 	uint64_t	ll_wrop;
390 	kmutex_t	ll_mutex;
391 	list_t		ll_deleteq;
392 	uint32_t	ll_deleteq_count;
393 	boolean_t	ll_flushing;
394 } smb_llist_t;
395 
396 typedef struct smb_bucket {
397 	smb_llist_t	b_list;
398 	uint32_t	b_max_seen;
399 } smb_bucket_t;
400 
401 typedef struct smb_hash {
402 	uint32_t	rshift;
403 	uint32_t	num_buckets;
404 	smb_bucket_t	*buckets;
405 } smb_hash_t;
406 
407 typedef struct smb_slist {
408 	kmutex_t	sl_mutex;
409 	kcondvar_t	sl_cv;
410 	list_t		sl_list;
411 	uint32_t	sl_count;
412 	boolean_t	sl_waiting;
413 } smb_slist_t;
414 
415 /*
416  * smb_avl_t State Machine
417  * --------------------
418  *
419  *                      +-----------------------------+
420  *                      |     SMB_AVL_STATE_START     |
421  *                      +-----------------------------+
422  *                                    | T0
423  *                                    v
424  *                      +-----------------------------+
425  *                      |     SMB_AVL_STATE_READY     |
426  *                      +-----------------------------+
427  *                                    | T1
428  *                                    v
429  *                      +-----------------------------+
430  *                      |  SMB_AVL_STATE_DESTROYING   |
431  *                      +-----------------------------+
432  *
433  * Transition T0
434  *
435  *    This transition is executed in smb_avl_create().
436  *
437  * Transition T1
438  *
439  *    This transition is executed in smb_avl_destroy().
440  *
441  */
442 typedef enum {
443 	SMB_AVL_STATE_START = 0,
444 	SMB_AVL_STATE_READY,
445 	SMB_AVL_STATE_DESTROYING
446 } smb_avl_state_t;
447 
448 typedef struct smb_avl_nops {
449 	int		(*avln_cmp) (const void *, const void *);
450 	void		(*avln_hold)(const void *);
451 	boolean_t	(*avln_rele)(const void *);
452 	void		(*avln_destroy)(void *);
453 } smb_avl_nops_t;
454 
455 typedef struct smb_avl_cursor {
456 	void		*avlc_next;
457 	uint32_t	avlc_sequence;
458 } smb_avl_cursor_t;
459 
460 typedef struct smb_avl {
461 	krwlock_t	avl_lock;
462 	avl_tree_t	avl_tree;
463 	kmutex_t	avl_mutex;
464 	kcondvar_t	avl_cv;
465 	smb_avl_state_t	avl_state;
466 	uint32_t	avl_refcnt;
467 	uint32_t	avl_sequence;
468 	const smb_avl_nops_t	*avl_nops;
469 } smb_avl_t;
470 
471 typedef struct {
472 	kcondvar_t	rwx_cv;
473 	kmutex_t	rwx_mutex;
474 	krwlock_t	rwx_lock;
475 	boolean_t	rwx_waiting;
476 } smb_rwx_t;
477 
478 typedef struct smb_export {
479 	kmutex_t	e_mutex;
480 	boolean_t	e_ready;
481 	smb_avl_t	e_share_avl;
482 	smb_slist_t	e_unexport_list;
483 	smb_thread_t	e_unexport_thread;
484 } smb_export_t;
485 
486 /*
487  * NOTIFY CHANGE, a.k.a. File Change Notification (FCN)
488  */
489 
490 /*
491  * These FCN filter mask values are not from MS-FSCC, but
492  * must not overlap with any FILE_NOTIFY_VALID_MASK values.
493  */
494 #define	FILE_NOTIFY_CHANGE_EV_SUBDIR	0x00010000
495 #define	FILE_NOTIFY_CHANGE_EV_DELETE	0x00020000
496 #define	FILE_NOTIFY_CHANGE_EV_CLOSED	0x00040000
497 #define	FILE_NOTIFY_CHANGE_EV_OVERFLOW	0x00080000
498 
499 /*
500  * Note: These FCN action values are not from MS-FSCC, but must
501  * follow in sequence from FILE_ACTION_MODIFIED_STREAM.
502  *
503  * FILE_ACTION_SUBDIR_CHANGED is used internally for
504  * "watch tree" support, posted to all parents of a
505  * directory that had one of the changes above.
506  *
507  * FILE_ACTION_DELETE_PENDING is used internally to tell
508  * notify change requests when the "delete-on-close" flag
509  * has been set on the directory being watched.
510  *
511  * FILE_ACTION_HANDLE_CLOSED is used to wakeup notify change
512  * requests when the watched directory handle is closed.
513  */
514 #define	FILE_ACTION_SUBDIR_CHANGED	0x00000009
515 #define	FILE_ACTION_DELETE_PENDING	0x0000000a
516 #define	FILE_ACTION_HANDLE_CLOSED	0x0000000b
517 
518 /*
519  * Sub-struct within smb_ofile_t
520  */
521 typedef struct smb_notify {
522 	list_t			nc_waiters; /* Waiting SRs */
523 	mbuf_chain_t		nc_buffer;
524 	uint32_t		nc_filter;
525 	uint32_t		nc_events;
526 	int			nc_last_off;
527 	boolean_t		nc_subscribed;
528 } smb_notify_t;
529 
530 /*
531  * SMB operates over a NetBIOS-over-TCP transport (NBT) or directly
532  * over TCP, which is also known as direct hosted NetBIOS-less SMB
533  * or SMB-over-TCP.
534  *
535  * NBT messages have a 4-byte header that defines the message type
536  * (8-bits), a 7-bit flags field and a 17-bit length.
537  *
538  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
539  * |      TYPE     |     FLAGS   |E|            LENGTH             |
540  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
541  *
542  * 8-bit type      Defined in RFC 1002
543  * 7-bit flags     Bits 0-6 reserved (must be 0)
544  *                 Bit 7: Length extension bit (E)
545  * 17-bit length   Includes bit 7 of the flags byte
546  *
547  *
548  * SMB-over-TCP is defined to use a modified version of the NBT header
549  * containing an 8-bit message type and 24-bit message length.
550  *
551  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
552  * |      TYPE     |                  LENGTH                       |
553  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
554  *
555  * 8-bit type      Must be 0
556  * 24-bit length
557  *
558  * The following structure is used to represent a generic, in-memory
559  * SMB transport header; it is not intended to map directly to either
560  * of the over-the-wire formats.
561  */
562 typedef struct {
563 	uint8_t		xh_type;
564 	uint32_t	xh_length;
565 } smb_xprt_t;
566 
567 int MBC_LENGTH(struct mbuf_chain *);
568 int MBC_MAXBYTES(struct mbuf_chain *);
569 void MBC_SETUP(struct mbuf_chain *, uint32_t);
570 void MBC_INIT(struct mbuf_chain *, uint32_t);
571 void MBC_FLUSH(struct mbuf_chain *);
572 void MBC_ATTACH_MBUF(struct mbuf_chain *, struct mbuf *);
573 void MBC_APPEND_MBUF(struct mbuf_chain *, struct mbuf *);
574 void MBC_ATTACH_BUF(struct mbuf_chain *MBC, unsigned char *BUF, int LEN);
575 int MBC_SHADOW_CHAIN(struct mbuf_chain *SUBMBC, struct mbuf_chain *MBC,
576     int OFF, int LEN);
577 
578 #define	MBC_ROOM_FOR(b, n) (((b)->chain_offset + (n)) <= (b)->max_bytes)
579 
580 /*
581  * Per smb_node oplock state
582  */
583 typedef struct smb_oplock {
584 	kmutex_t		ol_mutex;
585 	boolean_t		ol_fem;		/* fem monitor installed? */
586 	struct smb_ofile	*excl_open;
587 	uint32_t		ol_state;
588 	int32_t			cnt_II;
589 	int32_t			cnt_R;
590 	int32_t			cnt_RH;
591 	int32_t			cnt_RHBQ;
592 	int32_t			waiters;
593 	kcondvar_t		WaitingOpenCV;
594 } smb_oplock_t;
595 
596 /*
597  * Per smb_ofile oplock state
598  */
599 typedef struct smb_oplock_grant {
600 	/* smb protocol-level state */
601 	uint32_t		og_state;	/* latest sent to client */
602 	uint32_t		og_breaking;	/* BREAK_TO... flags */
603 	uint16_t		og_dialect;	/* how to send breaks */
604 	boolean_t		og_closing;
605 	/* File-system level state */
606 	uint8_t			onlist_II;
607 	uint8_t			onlist_R;
608 	uint8_t			onlist_RH;
609 	uint8_t			onlist_RHBQ;
610 	uint8_t			BreakingToRead;
611 } smb_oplock_grant_t;
612 
613 #define	SMB_LEASE_KEY_SZ	16
614 
615 typedef struct smb_lease {
616 	list_node_t		ls_lnd;		/* sv_lease_ht */
617 	kmutex_t		ls_mutex;
618 	smb_llist_t		*ls_bucket;
619 	struct smb_node		*ls_node;
620 	/*
621 	 * With a lease, just one ofile has the oplock.
622 	 * This (used only for comparison) identifies which.
623 	 */
624 	void			*ls_oplock_ofile;
625 	uint32_t		ls_refcnt;
626 	uint32_t		ls_state;
627 	uint32_t		ls_breaking;	/* BREAK_TO... flags */
628 	uint16_t		ls_epoch;
629 	uint16_t		ls_version;
630 	uint8_t			ls_key[SMB_LEASE_KEY_SZ];
631 	uint8_t			ls_clnt[SMB_LEASE_KEY_SZ];
632 } smb_lease_t;
633 
634 #define	SMB_NODE_MAGIC		0x4E4F4445	/* 'NODE' */
635 #define	SMB_NODE_VALID(p)	ASSERT((p)->n_magic == SMB_NODE_MAGIC)
636 
637 typedef enum {
638 	SMB_NODE_STATE_AVAILABLE = 0,
639 	SMB_NODE_STATE_DESTROYING
640 } smb_node_state_t;
641 
642 /*
643  * waiting_event        # of clients requesting FCN
644  * n_timestamps         cached timestamps
645  * n_allocsz            cached file allocation size
646  * n_dnode              directory node
647  * n_unode              unnamed stream node
648  * delete_on_close_cred credentials for delayed delete
649  */
650 typedef struct smb_node {
651 	list_node_t		n_lnd;
652 	uint32_t		n_magic;
653 	krwlock_t		n_lock;
654 	kmutex_t		n_mutex;
655 	smb_node_state_t	n_state;
656 	uint32_t		n_refcnt;
657 	uint32_t		n_hashkey;
658 	smb_llist_t		*n_hash_bucket;
659 	uint32_t		n_open_count;
660 	uint32_t		n_opening_count;
661 	smb_llist_t		n_ofile_list;
662 	/* If entering both, go in order n_lock_list, n_wlock_list */
663 	smb_llist_t		n_lock_list;	/* active locks */
664 	smb_llist_t		n_wlock_list;	/* waiting locks */
665 	volatile int		flags;
666 	u_offset_t		n_allocsz;
667 	uint32_t		n_fcn_count;
668 	smb_oplock_t		n_oplock;
669 	struct smb_node		*n_dnode;
670 	struct smb_node		*n_unode;
671 	cred_t			*delete_on_close_cred;
672 	uint32_t		n_delete_on_close_flags;
673 	char			od_name[MAXNAMELEN];
674 	vnode_t			*vp;
675 	smb_audit_buf_node_t	*n_audit_buf;
676 } smb_node_t;
677 
678 #define	NODE_FLAGS_REPARSE		0x00001000
679 #define	NODE_FLAGS_DFSLINK		0x00002000
680 #define	NODE_FLAGS_VFSROOT		0x00004000
681 #define	NODE_FLAGS_SYSTEM		0x00008000
682 #define	NODE_FLAGS_WRITE_THROUGH	0x00100000
683 #define	NODE_XATTR_DIR			0x01000000
684 #define	NODE_FLAGS_DELETE_COMMITTED	0x20000000
685 #define	NODE_FLAGS_DELETE_ON_CLOSE	0x40000000
686 #define	NODE_FLAGS_EXECUTABLE		0x80000000
687 
688 #define	SMB_NODE_VFS(node)	((node)->vp->v_vfsp)
689 #define	SMB_NODE_FSID(node)	((node)->vp->v_vfsp->vfs_fsid)
690 
691 /* Maximum buffer size for encryption key */
692 #define	SMB_ENCRYPT_KEY_MAXLEN		32
693 
694 #define	SMB_SHARE_MAGIC		0x4B534852	/* KSHR */
695 
696 typedef struct smb_kshare {
697 	uint32_t	shr_magic;
698 	avl_node_t	shr_link;
699 	kmutex_t	shr_mutex;
700 	kcondvar_t	shr_cv;
701 	char		*shr_name;
702 	char		*shr_path;
703 	char		*shr_cmnt;
704 	char		*shr_container;
705 	char		*shr_oemname;
706 	uint32_t	shr_flags;
707 	uint32_t	shr_type;
708 	uint32_t	shr_refcnt;
709 	uint32_t	shr_autocnt;
710 	uid_t		shr_uid;
711 	gid_t		shr_gid;
712 	char		*shr_access_none;
713 	char		*shr_access_ro;
714 	char		*shr_access_rw;
715 	smb_node_t	*shr_root_node;
716 	smb_node_t	*shr_ca_dir;
717 	void		*shr_import_busy;
718 	smb_cfg_val_t	shr_encrypt; /* Share.EncryptData */
719 } smb_kshare_t;
720 
721 
722 typedef struct smb_arg_negotiate {
723 	char		*ni_name;
724 	int		ni_dialect;
725 	int		ni_index;
726 	uint32_t	ni_capabilities;
727 	uint16_t	ni_maxmpxcount;
728 	int16_t		ni_tzcorrection;
729 	uint8_t		ni_keylen;
730 	uint8_t		ni_key[SMB_ENCRYPT_KEY_MAXLEN];
731 	timestruc_t	ni_servertime;
732 } smb_arg_negotiate_t;
733 
734 typedef struct smb2_arg_negotiate {
735 	struct smb2_neg_ctxs	*neg_in_ctxs;
736 	struct smb2_neg_ctxs	*neg_out_ctxs;
737 } smb2_arg_negotiate_t;
738 
739 typedef enum {
740 	SMB_SSNSETUP_PRE_NTLM012 = 1,
741 	SMB_SSNSETUP_NTLM012_NOEXT,
742 	SMB_SSNSETUP_NTLM012_EXTSEC
743 } smb_ssnsetup_type_t;
744 
745 typedef struct smb_arg_sessionsetup {
746 	smb_ssnsetup_type_t ssi_type;
747 	char		*ssi_user;
748 	char		*ssi_domain;
749 	/* LM password hash, f.k.a. case-insensitive p/w */
750 	uint16_t	ssi_lmpwlen;
751 	uint8_t		*ssi_lmpwd;
752 	/* NT password hash, f.k.a. case-sensitive p/w */
753 	uint16_t	ssi_ntpwlen;
754 	uint8_t		*ssi_ntpwd;
755 	/* Incoming security blob */
756 	uint16_t	ssi_iseclen;
757 	uint8_t		*ssi_isecblob;
758 	/* Incoming security blob */
759 	uint16_t	ssi_oseclen;
760 	uint8_t		*ssi_osecblob;
761 	/* parameters */
762 	uint16_t	ssi_maxbufsize;
763 	uint16_t	ssi_maxmpxcount;
764 	uint32_t	ssi_capabilities;
765 	int		ssi_native_os;
766 	int		ssi_native_lm;
767 } smb_arg_sessionsetup_t;
768 
769 typedef struct tcon {
770 	char		*name;
771 	char		*path;
772 	char		*service;
773 	int		pwdlen;
774 	char		*password;
775 	uint16_t	flags;
776 	uint16_t	optional_support;
777 	smb_kshare_t	*si;
778 } smb_arg_tcon_t;
779 
780 /*
781  * Based on section 2.6.1.2 (Connection Management) of the June 13,
782  * 1996 CIFS spec, a server may terminate the transport connection
783  * due to inactivity. The client software is expected to be able to
784  * automatically reconnect to the server if this happens. Like much
785  * of the useful background information, this section appears to
786  * have been dropped from later revisions of the document.
787  *
788  * Each session has an activity timestamp that's updated whenever a
789  * request is dispatched. If the session is idle, i.e. receives no
790  * requests, for SMB_SESSION_INACTIVITY_TIMEOUT minutes it will be
791  * closed.
792  *
793  * Each session has an I/O semaphore to serialize communication with
794  * the client. For example, after receiving a raw-read request, the
795  * server is not allowed to send an oplock break to the client until
796  * after it has sent the raw-read data.
797  */
798 #define	SMB_SESSION_INACTIVITY_TIMEOUT		(15 * 60)
799 
800 /* SMB1 signing */
801 struct smb_sign {
802 	unsigned int flags;
803 	uint32_t seqnum;
804 	uint_t mackey_len;
805 	uint8_t *mackey;
806 };
807 
808 /*
809  * SMB2 signing
810  */
811 struct smb_key {
812 	uint_t len;
813 	uint8_t key[SMB2_SESSION_KEY_LEN];
814 };
815 
816 #define	SMB_SIGNING_ENABLED	1
817 #define	SMB_SIGNING_CHECK	2
818 
819 /*
820  * Locking notes:
821  * If you hold the mutex/lock on an object, don't flush the deleteq
822  * of the objects directly below it in the logical hierarchy
823  * (i.e. via smb_llist_exit()). I.e. don't drop s_tree_list when
824  * you hold u_mutex, because deleted trees need u_mutex to
825  * lower the refcnt.
826  *
827  * Note that this also applies to u_mutex and t_ofile_list.
828  */
829 
830 /*
831  * The "session" object.
832  *
833  * Note that the smb_session_t object here corresponds to what MS-SMB2
834  * calls a "connection".  Adding to the confusion, what MS calls a
835  * "session" corresponds to our smb_user_t (below).
836  */
837 
838 /*
839  * Session State Machine
840  * ---------------------
841  *
842  *
843  * +-----------------------------+	    +----------------------------+
844  * | SMB_SESSION_STATE_CONNECTED |	    | SMB_SESSION_STATE_SHUTDOWN |
845  * +-----------------------------+	    +----------------------------+
846  *		  |					     ^
847  *		  |					     |T6
848  *		  |			    +------------------------------+
849  *		  |			    | SMB_SESSION_STATE_TERMINATED |
850  *		T0|			    +------------------------------+
851  *		  +--------------------+		     ^
852  *		  v		       |T4                   |T5
853  * +-------------------------------+   |    +--------------------------------+
854  * | SMB_SESSION_STATE_ESTABLISHED |---+--->| SMB_SESSION_STATE_DISCONNECTED |
855  * +-------------------------------+        +--------------------------------+
856  *		T1|				^
857  *		  +----------+			|T3
858  *                           v			|
859  *                  +------------------------------+
860  *                  | SMB_SESSION_STATE_NEGOTIATED |
861  *                  +------------------------------+
862  *
863  *
864  * Transition T0
865  *
866  *
867  *
868  * Transition T1
869  *
870  *
871  *
872  * Transition T2
873  *
874  *
875  *
876  * Transition T3
877  *
878  *
879  *
880  * Transition T4
881  *
882  *
883  *
884  * Transition T5
885  *
886  *
887  *
888  * Transition T6
889  *
890  *
891  *
892  */
893 #define	SMB_SESSION_MAGIC	0x53455353	/* 'SESS' */
894 #define	SMB_SESSION_VALID(p)	\
895     ASSERT(((p) != NULL) && ((p)->s_magic == SMB_SESSION_MAGIC))
896 
897 #define	SMB_CHALLENGE_SZ	8
898 #define	SMB3_PREAUTH_HASHVAL_SZ	64
899 
900 typedef enum {
901 	SMB_SESSION_STATE_INITIALIZED = 0,
902 	SMB_SESSION_STATE_DISCONNECTED,
903 	SMB_SESSION_STATE_CONNECTED,
904 	SMB_SESSION_STATE_ESTABLISHED,
905 	SMB_SESSION_STATE_NEGOTIATED,
906 	SMB_SESSION_STATE_TERMINATED,
907 	SMB_SESSION_STATE_SHUTDOWN,
908 	SMB_SESSION_STATE_SENTINEL
909 } smb_session_state_t;
910 
911 /* Bits in s_flags below */
912 #define	SMB_SSN_AAPL_CCEXT	1	/* Saw "AAPL" create ctx. ext. */
913 #define	SMB_SSN_AAPL_READDIR	2	/* Wants MacOS ext. readdir */
914 
915 #define	SMB2_NEGOTIATE_MAX_DIALECTS	64
916 
917 typedef struct smb_session {
918 	list_node_t		s_lnd;
919 	uint32_t		s_magic;
920 	smb_rwx_t		s_lock;
921 	uint64_t		s_kid;
922 	smb_session_state_t	s_state;
923 	uint32_t		s_flags;
924 	taskqid_t		s_receiver_tqid;
925 	kthread_t		*s_thread;
926 	kt_did_t		s_ktdid;
927 	int	(*newrq_func)(struct smb_request *);
928 	struct smb_server	*s_server;
929 	smb_kmod_cfg_t		s_cfg;
930 	int32_t			s_gmtoff;
931 	uint32_t		keep_alive;
932 	uint64_t		opentime;
933 	uint16_t		s_local_port;
934 	uint16_t		s_remote_port;
935 	smb_inaddr_t		ipaddr;
936 	smb_inaddr_t		local_ipaddr;
937 	int			dialect;
938 	int			native_os;
939 	int			native_lm;
940 
941 	kmutex_t		s_credits_mutex;
942 	uint16_t		s_cur_credits;
943 	uint16_t		s_max_credits;
944 
945 	uint32_t		capabilities;
946 	uint32_t		srv_cap;
947 
948 	struct smb_sign		signing;	/* SMB1 */
949 	void			*sign_mech;	/* mechanism info */
950 	void			*enc_mech;
951 	void			*preauth_mech;
952 
953 	/* SMB2/SMB3 signing support */
954 	int			(*sign_calc)(struct smb_request *,
955 					struct mbuf_chain *, uint8_t *);
956 	void			(*sign_fini)(struct smb_session *);
957 
958 	ksocket_t		sock;
959 
960 	smb_slist_t		s_req_list;
961 	smb_llist_t		s_xa_list;
962 	smb_llist_t		s_user_list;
963 	smb_llist_t		s_tree_list;
964 	smb_idpool_t		s_uid_pool;
965 	smb_idpool_t		s_tid_pool;
966 	smb_txlst_t		s_txlst;
967 
968 	volatile uint32_t	s_tree_cnt;
969 	volatile uint32_t	s_file_cnt;
970 	volatile uint32_t	s_dir_cnt;
971 
972 	uint16_t		cli_secmode;
973 	uint16_t		srv_secmode;
974 	uint32_t		sesskey;
975 	uint32_t		challenge_len;
976 	unsigned char		challenge_key[SMB_CHALLENGE_SZ];
977 	int64_t			activity_timestamp;
978 	timeout_id_t		s_auth_tmo;
979 
980 	/*
981 	 * Client dialects
982 	 */
983 	uint16_t		cli_dialect_cnt;
984 	uint16_t		cli_dialects[SMB2_NEGOTIATE_MAX_DIALECTS];
985 	/*
986 	 * Maximum negotiated buffer sizes between SMB client and server
987 	 * in SMB_SESSION_SETUP_ANDX
988 	 */
989 	int			cmd_max_bytes;
990 	int			reply_max_bytes;
991 	uint16_t		smb_msg_size;
992 	uint16_t		smb_max_mpx;
993 	smb_srqueue_t		*s_srqueue;
994 	uint64_t		start_time;
995 
996 	uint16_t		smb31_enc_cipherid;
997 	uint16_t		smb31_preauth_hashid;
998 	uint8_t			smb31_preauth_hashval[SMB3_PREAUTH_HASHVAL_SZ];
999 
1000 	unsigned char		MAC_key[44];
1001 	char			ip_addr_str[INET6_ADDRSTRLEN];
1002 	uint8_t			clnt_uuid[16];
1003 	char			workstation[SMB_PI_MAX_HOST];
1004 } smb_session_t;
1005 
1006 /*
1007  * The "user" object.
1008  *
1009  * Note that smb_user_t object here corresponds to what MS-SMB2 calls
1010  * a "session".  (Our smb_session_t is something else -- see above).
1011  */
1012 
1013 #define	SMB_USER_MAGIC 0x55534552	/* 'USER' */
1014 #define	SMB_USER_VALID(u)	\
1015     ASSERT(((u) != NULL) && ((u)->u_magic == SMB_USER_MAGIC))
1016 
1017 /* These flags are all <= 0x00000010 */
1018 #define	SMB_USER_FLAG_GUEST			SMB_ATF_GUEST
1019 #define	SMB_USER_FLAG_ANON			SMB_ATF_ANON
1020 #define	SMB_USER_FLAG_ADMIN			SMB_ATF_ADMIN
1021 #define	SMB_USER_FLAG_POWER_USER		SMB_ATF_POWERUSER
1022 #define	SMB_USER_FLAG_BACKUP_OPERATOR		SMB_ATF_BACKUPOP
1023 
1024 #define	SMB_USER_IS_ADMIN(U)	(((U)->u_flags & SMB_USER_FLAG_ADMIN) != 0)
1025 #define	SMB_USER_IS_GUEST(U)	(((U)->u_flags & SMB_USER_FLAG_GUEST) != 0)
1026 
1027 /*
1028  * Internal privilege flags derived from smb_privilege.h numbers
1029  * Would rather not include that in this file.
1030  */
1031 #define	SMB_USER_PRIV_SECURITY		(1<<8)	/* SE_SECURITY_LUID */
1032 #define	SMB_USER_PRIV_TAKE_OWNERSHIP	(1<<9)	/* SE_TAKE_OWNERSHIP_LUID */
1033 #define	SMB_USER_PRIV_BACKUP		(1<<17)	/* SE_BACKUP_LUID */
1034 #define	SMB_USER_PRIV_RESTORE		(1<<18)	/* SE_RESTORE_LUID */
1035 #define	SMB_USER_PRIV_CHANGE_NOTIFY	(1<<23)	/* SE_CHANGE_NOTIFY_LUID */
1036 #define	SMB_USER_PRIV_READ_FILE		(1<<25)	/* SE_READ_FILE_LUID */
1037 #define	SMB_USER_PRIV_WRITE_FILE	(1<<26)	/* SE_WRITE_FILE_LUID */
1038 
1039 /*
1040  * See the long "User State Machine" comment in smb_user.c
1041  */
1042 typedef enum {
1043 	SMB_USER_STATE_LOGGING_ON = 0,
1044 	SMB_USER_STATE_LOGGED_ON,
1045 	SMB_USER_STATE_LOGGING_OFF,
1046 	SMB_USER_STATE_LOGGED_OFF,
1047 	SMB_USER_STATE_SENTINEL
1048 } smb_user_state_t;
1049 
1050 typedef enum {
1051 	SMB2_DH_PRESERVE_NONE = 0,
1052 	SMB2_DH_PRESERVE_SOME,
1053 	SMB2_DH_PRESERVE_ALL
1054 } smb_preserve_type_t;
1055 
1056 typedef struct smb_user {
1057 	list_node_t		u_lnd;
1058 	uint32_t		u_magic;
1059 	kmutex_t		u_mutex;
1060 	smb_user_state_t	u_state;
1061 
1062 	struct smb_server	*u_server;
1063 	smb_session_t		*u_session;
1064 	ksocket_t		u_authsock;
1065 	timeout_id_t		u_auth_tmo;
1066 	uint16_t		u_name_len;
1067 	char			*u_name;
1068 	uint16_t		u_domain_len;
1069 	char			*u_domain;
1070 	time_t			u_logon_time;
1071 	cred_t			*u_cred;
1072 	cred_t			*u_privcred;
1073 
1074 	uint64_t		u_ssnid;	/* unique server-wide */
1075 	uint32_t		u_refcnt;
1076 	uint32_t		u_flags;
1077 	smb_preserve_type_t	preserve_opens;
1078 	uint32_t		u_privileges;
1079 	uint16_t		u_uid;		/* unique per-session */
1080 	uint32_t		u_audit_sid;
1081 
1082 	uint32_t		u_sign_flags;
1083 	struct smb_key		u_sign_key;	/* SMB2 signing */
1084 
1085 	struct smb_key		u_enc_key;
1086 	struct smb_key		u_dec_key;
1087 	volatile uint64_t	u_nonce_cnt;
1088 	uint8_t			u_nonce_fixed[4];
1089 	uint64_t		u_salt;
1090 	smb_cfg_val_t		u_encrypt;
1091 
1092 	/* SMB 3.1.1 preauth session hashval */
1093 	uint8_t			u_preauth_hashval[SMB3_PREAUTH_HASHVAL_SZ];
1094 } smb_user_t;
1095 
1096 #define	SMB_TREE_MAGIC			0x54524545	/* 'TREE' */
1097 #define	SMB_TREE_VALID(p)	\
1098     ASSERT((p != NULL) && ((p)->t_magic == SMB_TREE_MAGIC))
1099 
1100 #define	SMB_TYPENAMELEN			_ST_FSTYPSZ
1101 #define	SMB_VOLNAMELEN			32
1102 
1103 #define	SMB_TREE_READONLY		0x00000001
1104 #define	SMB_TREE_SUPPORTS_ACLS		0x00000002
1105 #define	SMB_TREE_STREAMS		0x00000004
1106 #define	SMB_TREE_CASEINSENSITIVE	0x00000008
1107 #define	SMB_TREE_NO_CASESENSITIVE	0x00000010
1108 #define	SMB_TREE_NO_EXPORT		0x00000020
1109 #define	SMB_TREE_OPLOCKS		0x00000040
1110 #define	SMB_TREE_SHORTNAMES		0x00000080
1111 #define	SMB_TREE_XVATTR			0x00000100
1112 #define	SMB_TREE_DIRENTFLAGS		0x00000200
1113 #define	SMB_TREE_ACLONCREATE		0x00000400
1114 #define	SMB_TREE_ACEMASKONACCESS	0x00000800
1115 #define	SMB_TREE_NFS_MOUNTED		0x00001000
1116 #define	SMB_TREE_UNICODE_ON_DISK	0x00002000
1117 #define	SMB_TREE_CATIA			0x00004000
1118 #define	SMB_TREE_ABE			0x00008000
1119 #define	SMB_TREE_QUOTA			0x00010000
1120 #define	SMB_TREE_DFSROOT		0x00020000
1121 #define	SMB_TREE_SPARSE			0x00040000
1122 #define	SMB_TREE_TRAVERSE_MOUNTS	0x00080000
1123 #define	SMB_TREE_FORCE_L2_OPLOCK	0x00100000
1124 #define	SMB_TREE_CA			0x00200000
1125 /* Note: SMB_TREE_... in the mdb module too. */
1126 
1127 /*
1128  * See the long "Tree State Machine" comment in smb_tree.c
1129  */
1130 typedef enum {
1131 	SMB_TREE_STATE_CONNECTED = 0,
1132 	SMB_TREE_STATE_DISCONNECTING,
1133 	SMB_TREE_STATE_DISCONNECTED,
1134 	SMB_TREE_STATE_SENTINEL
1135 } smb_tree_state_t;
1136 
1137 typedef struct smb_tree {
1138 	list_node_t		t_lnd;
1139 	uint32_t		t_magic;
1140 	kmutex_t		t_mutex;
1141 	smb_tree_state_t	t_state;
1142 
1143 	struct smb_server	*t_server;
1144 	smb_session_t		*t_session;
1145 	/*
1146 	 * user whose uid was in the tree connect message
1147 	 * ("owner" in MS-CIFS parlance, see section 2.2.1.6 definition of FID)
1148 	 */
1149 	smb_user_t		*t_owner;
1150 	smb_node_t		*t_snode;
1151 
1152 	smb_llist_t		t_ofile_list;
1153 	smb_idpool_t		t_fid_pool;
1154 
1155 	smb_llist_t		t_odir_list;
1156 	smb_idpool_t		t_odid_pool;
1157 
1158 	uint32_t		t_refcnt;
1159 	uint32_t		t_flags;
1160 	int32_t			t_res_type;
1161 	uint16_t		t_tid;
1162 	uint16_t		t_umask;
1163 	char			t_sharename[MAXNAMELEN];
1164 	char			t_resource[MAXPATHLEN];
1165 	char			t_typename[SMB_TYPENAMELEN];
1166 	char			t_volume[SMB_VOLNAMELEN];
1167 	acl_type_t		t_acltype;
1168 	uint32_t		t_access;
1169 	uint32_t		t_execflags;
1170 	time_t			t_connect_time;
1171 	volatile uint32_t	t_open_files;
1172 	smb_cfg_val_t		t_encrypt; /* Share.EncryptData */
1173 	timestruc_t		t_create_time;
1174 } smb_tree_t;
1175 
1176 #define	SMB_TREE_VFS(tree)	((tree)->t_snode->vp->v_vfsp)
1177 #define	SMB_TREE_FSID(tree)	((tree)->t_snode->vp->v_vfsp->vfs_fsid)
1178 
1179 #define	SMB_TREE_IS_READONLY(sr)					\
1180 	((sr) != NULL && (sr)->tid_tree != NULL &&			\
1181 	!((sr)->tid_tree->t_access & ACE_ALL_WRITE_PERMS))
1182 
1183 #define	SMB_TREE_IS_CASEINSENSITIVE(sr)                                 \
1184 	(((sr) && (sr)->tid_tree) ?                                     \
1185 	smb_tree_has_feature((sr)->tid_tree, SMB_TREE_CASEINSENSITIVE) : 0)
1186 
1187 #define	SMB_TREE_HAS_ACCESS(sr, acemask)				\
1188 	((sr) == NULL ? ACE_ALL_PERMS : (				\
1189 	(((sr) && (sr)->tid_tree) ?					\
1190 	(((sr)->tid_tree->t_access) & (acemask)) : 0)))
1191 
1192 #define	SMB_TREE_SUPPORTS_CATIA(sr)					\
1193 	(((sr) && (sr)->tid_tree) ?                                     \
1194 	smb_tree_has_feature((sr)->tid_tree, SMB_TREE_CATIA) : 0)
1195 
1196 #define	SMB_TREE_SUPPORTS_ABE(sr)					\
1197 	(((sr) && (sr)->tid_tree) ?                                     \
1198 	smb_tree_has_feature((sr)->tid_tree, SMB_TREE_ABE) : 0)
1199 
1200 #define	SMB_TREE_IS_DFSROOT(sr)						\
1201 	(((sr) && (sr)->tid_tree) ?                                     \
1202 	smb_tree_has_feature((sr)->tid_tree, SMB_TREE_DFSROOT) : 0)
1203 
1204 #define	SMB_TREE_SUPPORTS_SHORTNAMES(sr)				\
1205 	(((sr) && (sr)->tid_tree) ?					\
1206 	smb_tree_has_feature((sr)->tid_tree, SMB_TREE_SHORTNAMES) : 0)
1207 
1208 /*
1209  * SMB_TREE_CONTAINS_NODE is used to check if a node is on the same
1210  * file system as the tree's root filesystem, or if mount point traversal
1211  * should be allowed.  Note that this is also called in some cases with
1212  * sr=NULL, where it is expected to evaluate to TRUE.
1213  */
1214 
1215 #define	SMB_TREE_CONTAINS_NODE(sr, node)                                \
1216 	((sr) == NULL || (sr)->tid_tree == NULL ||                      \
1217 	SMB_TREE_VFS((sr)->tid_tree) == SMB_NODE_VFS(node) ||           \
1218 	smb_tree_has_feature((sr)->tid_tree, SMB_TREE_TRAVERSE_MOUNTS))
1219 
1220 /*
1221  * SMB_PATHFILE_IS_READONLY indicates whether or not a file is
1222  * readonly when the caller has a path rather than an ofile.
1223  */
1224 #define	SMB_PATHFILE_IS_READONLY(sr, node)			\
1225 	(SMB_TREE_IS_READONLY((sr)) ||				\
1226 	smb_node_file_is_readonly((node)))
1227 
1228 #define	SMB_ODIR_MAGIC		0x4F444952	/* 'ODIR' */
1229 #define	SMB_ODIR_VALID(p)	\
1230     ASSERT((p != NULL) && ((p)->d_magic == SMB_ODIR_MAGIC))
1231 
1232 #define	SMB_ODIR_BUFSIZE	(8 * 1024)
1233 
1234 #define	SMB_ODIR_FLAG_WILDCARDS		0x0001
1235 #define	SMB_ODIR_FLAG_IGNORE_CASE	0x0002
1236 #define	SMB_ODIR_FLAG_XATTR		0x0004
1237 #define	SMB_ODIR_FLAG_EDIRENT		0x0008
1238 #define	SMB_ODIR_FLAG_CATIA		0x0010
1239 #define	SMB_ODIR_FLAG_ABE		0x0020
1240 #define	SMB_ODIR_FLAG_SHORTNAMES	0x0040
1241 
1242 typedef enum {
1243 	SMB_ODIR_STATE_OPEN = 0,
1244 	SMB_ODIR_STATE_IN_USE,
1245 	SMB_ODIR_STATE_CLOSING,
1246 	SMB_ODIR_STATE_CLOSED,
1247 	SMB_ODIR_STATE_SENTINEL
1248 } smb_odir_state_t;
1249 
1250 typedef enum {
1251 	SMB_ODIR_RESUME_CONT,
1252 	SMB_ODIR_RESUME_IDX,
1253 	SMB_ODIR_RESUME_COOKIE,
1254 	SMB_ODIR_RESUME_FNAME
1255 } smb_odir_resume_type_t;
1256 
1257 typedef struct smb_odir_resume {
1258 	smb_odir_resume_type_t	or_type;
1259 	int			or_idx;
1260 	uint32_t		or_cookie;
1261 	char			*or_fname;
1262 } smb_odir_resume_t;
1263 
1264 /*
1265  * Flags used when opening an odir
1266  */
1267 #define	SMB_ODIR_OPENF_BACKUP_INTENT	0x01
1268 
1269 typedef struct smb_odir {
1270 	list_node_t		d_lnd;
1271 	uint32_t		d_magic;
1272 	kmutex_t		d_mutex;
1273 	smb_odir_state_t	d_state;
1274 	smb_session_t		*d_session;
1275 	smb_user_t		*d_user;
1276 	smb_tree_t		*d_tree;
1277 	smb_node_t		*d_dnode;
1278 	cred_t			*d_cred;
1279 	uint32_t		d_opened_by_pid;
1280 	uint16_t		d_odid;
1281 	uint16_t		d_sattr;
1282 	uint32_t		d_refcnt;
1283 	uint32_t		d_flags;
1284 	boolean_t		d_eof;
1285 	int			d_bufsize;
1286 	uint64_t		d_offset;
1287 	union {
1288 		char		*u_bufptr;
1289 		struct edirent	*u_edp;
1290 		struct dirent64	*u_dp;
1291 	} d_u;
1292 	uint32_t		d_last_cookie;
1293 	uint32_t		d_cookies[SMB_MAX_SEARCH];
1294 	char			d_pattern[MAXNAMELEN];
1295 	char			d_buf[SMB_ODIR_BUFSIZE];
1296 	char			d_last_name[MAXNAMELEN];
1297 } smb_odir_t;
1298 #define	d_bufptr	d_u.u_bufptr
1299 #define	d_edp		d_u.u_edp
1300 #define	d_dp		d_u.u_dp
1301 
1302 typedef struct smb_odirent {
1303 	char		od_name[MAXNAMELEN];	/* on disk name */
1304 	ino64_t		od_ino;
1305 	uint32_t	od_eflags;
1306 } smb_odirent_t;
1307 
1308 #define	SMB_OPIPE_MAGIC		0x50495045	/* 'PIPE' */
1309 #define	SMB_OPIPE_VALID(p)	\
1310     ASSERT(((p) != NULL) && (p)->p_magic == SMB_OPIPE_MAGIC)
1311 #define	SMB_OPIPE_MAXNAME	32
1312 
1313 /*
1314  * Data structure for SMB_FTYPE_MESG_PIPE ofiles, which is used
1315  * at the interface between SMB and NDR RPC.
1316  */
1317 typedef struct smb_opipe {
1318 	uint32_t		p_magic;
1319 	kmutex_t		p_mutex;
1320 	kcondvar_t		p_cv;
1321 	struct smb_ofile	*p_ofile;
1322 	struct smb_server	*p_server;
1323 	uint32_t		p_refcnt;
1324 	ksocket_t		p_socket;
1325 	/* This is the "flat" name, without path prefix */
1326 	char			p_name[SMB_OPIPE_MAXNAME];
1327 } smb_opipe_t;
1328 
1329 /*
1330  * The of_ftype	of an open file should contain the SMB_FTYPE value
1331  * returned when the file/pipe was opened. The following
1332  * assumptions are currently made:
1333  *
1334  * File Type	    Node       PipeInfo
1335  * ---------	    --------   --------
1336  * SMB_FTYPE_DISK       Valid      Null
1337  * SMB_FTYPE_BYTE_PIPE  Undefined  Undefined
1338  * SMB_FTYPE_MESG_PIPE  Null       Valid
1339  * SMB_FTYPE_PRINTER    Undefined  Undefined
1340  * SMB_FTYPE_UNKNOWN    Undefined  Undefined
1341  */
1342 
1343 /*
1344  * Some flags for ofile structure
1345  *
1346  *	SMB_OFLAGS_SET_DELETE_ON_CLOSE
1347  *   Set this flag when the corresponding open operation whose
1348  *   DELETE_ON_CLOSE bit of the CreateOptions is set. If any
1349  *   open file instance has this bit set, the NODE_FLAGS_DELETE_ON_CLOSE
1350  *   will be set for the file node upon close.
1351  */
1352 
1353 /*	SMB_OFLAGS_READONLY		0x0001 (obsolete) */
1354 #define	SMB_OFLAGS_EXECONLY		0x0002
1355 #define	SMB_OFLAGS_SET_DELETE_ON_CLOSE	0x0004
1356 #define	SMB_OFLAGS_LLF_POS_VALID	0x0008
1357 
1358 #define	SMB_OFILE_MAGIC		0x4F464C45	/* 'OFLE' */
1359 #define	SMB_OFILE_VALID(p)	\
1360     ASSERT((p != NULL) && ((p)->f_magic == SMB_OFILE_MAGIC))
1361 
1362 /*
1363  * This is the size of the per-handle "Lock Sequence" array.
1364  * See LockSequenceIndex in [MS-SMB2] 2.2.26, and smb2_lock.c
1365  */
1366 #define	SMB_OFILE_LSEQ_MAX		64
1367 
1368 /* {arg_open,ofile}->dh_vers values */
1369 typedef enum {
1370 	SMB2_NOT_DURABLE = 0,
1371 	SMB2_DURABLE_V1,
1372 	SMB2_DURABLE_V2,
1373 	SMB2_RESILIENT,
1374 } smb_dh_vers_t;
1375 
1376 /*
1377  * See the long "Ofile State Machine" comment in smb_ofile.c
1378  */
1379 typedef enum {
1380 	SMB_OFILE_STATE_ALLOC = 0,
1381 	SMB_OFILE_STATE_OPEN,
1382 	SMB_OFILE_STATE_SAVE_DH,
1383 	SMB_OFILE_STATE_SAVING,
1384 	SMB_OFILE_STATE_CLOSING,
1385 	SMB_OFILE_STATE_CLOSED,
1386 	SMB_OFILE_STATE_ORPHANED,
1387 	SMB_OFILE_STATE_RECONNECT,
1388 	SMB_OFILE_STATE_EXPIRED,
1389 	SMB_OFILE_STATE_SENTINEL
1390 } smb_ofile_state_t;
1391 
1392 typedef struct smb_ofile {
1393 	list_node_t		f_tree_lnd;	/* t_ofile_list */
1394 	list_node_t		f_node_lnd;	/* n_ofile_list */
1395 	list_node_t		f_dh_lnd;	/* sv_persistid_ht */
1396 	uint32_t		f_magic;
1397 	kmutex_t		f_mutex;
1398 	smb_ofile_state_t	f_state;
1399 
1400 	struct smb_server	*f_server;
1401 	smb_session_t		*f_session;
1402 	smb_user_t		*f_user;
1403 	smb_tree_t		*f_tree;
1404 	smb_node_t		*f_node;
1405 	smb_odir_t		*f_odir;
1406 	smb_opipe_t		*f_pipe;
1407 
1408 	kcondvar_t		f_cv;
1409 	/*
1410 	 * Note: f_persistid == 0 means this ofile has no persistid
1411 	 * (same interpretation at the protocol level).  IFF non-zero,
1412 	 * this ofile is linked in the sv_persistid_ht hash table.
1413 	 */
1414 	uint64_t		f_persistid;
1415 	uint32_t		f_uniqid;
1416 	uint32_t		f_refcnt;
1417 	uint64_t		f_seek_pos;
1418 	uint32_t		f_flags;
1419 	uint32_t		f_granted_access;
1420 	uint32_t		f_share_access;
1421 	uint32_t		f_create_options;
1422 	uint32_t		f_opened_by_pid;
1423 	uint16_t		f_fid;
1424 	uint16_t		f_ftype;
1425 	uint64_t		f_llf_pos;
1426 	int			f_mode;
1427 	cred_t			*f_cr;
1428 	pid_t			f_pid;
1429 	smb_attr_t		f_pending_attr;
1430 	smb_oplock_grant_t	f_oplock;
1431 	uint8_t			TargetOplockKey[SMB_LEASE_KEY_SZ];
1432 	uint8_t			ParentOplockKey[SMB_LEASE_KEY_SZ];
1433 	struct smb_lease	*f_lease;
1434 
1435 	smb_notify_t		f_notify;
1436 
1437 	smb_dh_vers_t		dh_vers;
1438 	hrtime_t		dh_timeout_offset; /* time offset for timeout */
1439 	hrtime_t		dh_expire_time; /* time the handle expires */
1440 	boolean_t		dh_persist;
1441 	kmutex_t		dh_nvlock;
1442 	struct nvlist		*dh_nvlist;
1443 	smb_node_t		*dh_nvfile;
1444 
1445 	uint8_t			dh_create_guid[16];
1446 	char			f_quota_resume[SMB_SID_STRSZ];
1447 	uint8_t			f_lock_seq[SMB_OFILE_LSEQ_MAX];
1448 } smb_ofile_t;
1449 
1450 typedef struct smb_fileinfo {
1451 	char		fi_name[MAXNAMELEN];
1452 	char		fi_shortname[SMB_SHORTNAMELEN];
1453 	uint32_t	fi_cookie;	/* Dir offset (of next entry) */
1454 	uint32_t	fi_dosattr;	/* DOS attributes */
1455 	uint64_t	fi_nodeid;	/* file system node id */
1456 	uint64_t	fi_size;	/* file size in bytes */
1457 	uint64_t	fi_alloc_size;	/* allocation size in bytes */
1458 	timestruc_t	fi_atime;	/* last access */
1459 	timestruc_t	fi_mtime;	/* last modification */
1460 	timestruc_t	fi_ctime;	/* last status change */
1461 	timestruc_t	fi_crtime;	/* file creation */
1462 } smb_fileinfo_t;
1463 
1464 typedef struct smb_streaminfo {
1465 	uint64_t	si_size;
1466 	uint64_t	si_alloc_size;
1467 	char		si_name[MAXPATHLEN];
1468 } smb_streaminfo_t;
1469 
1470 #define	SMB_LOCK_MAGIC	0x4C4F434B	/* 'LOCK' */
1471 
1472 typedef struct smb_lock {
1473 	list_node_t		l_lnd;
1474 	uint32_t		l_magic;
1475 	kmutex_t		l_mutex;
1476 	kcondvar_t		l_cv;
1477 
1478 	smb_ofile_t		*l_file;
1479 
1480 	struct smb_lock		*l_blocked_by; /* Debug info only */
1481 
1482 	uint32_t		l_conflicts;
1483 	uint32_t		l_flags;
1484 	uint32_t		l_pid;
1485 	uint32_t		l_type;
1486 	uint64_t		l_start;
1487 	uint64_t		l_length;
1488 	clock_t			l_end_time;
1489 } smb_lock_t;
1490 
1491 #define	SMB_LOCK_FLAG_INDEFINITE	0x0004
1492 #define	SMB_LOCK_FLAG_CLOSED		0x0008
1493 #define	SMB_LOCK_FLAG_CANCELLED		0x0010
1494 
1495 #define	SMB_LOCK_TYPE_READWRITE		101
1496 #define	SMB_LOCK_TYPE_READONLY		102
1497 
1498 typedef struct vardata_block {
1499 	uint8_t			vdb_tag;
1500 	uint32_t		vdb_len;
1501 	struct uio		vdb_uio;
1502 	struct iovec		vdb_iovec[MAX_IOVEC];
1503 } smb_vdb_t;
1504 
1505 #define	SMB_WRMODE_WRITE_THRU	0x0001
1506 #define	SMB_WRMODE_IS_STABLE(M)	((M) & SMB_WRMODE_WRITE_THRU)
1507 
1508 #define	SMB_RW_MAGIC		0x52445257	/* 'RDRW' */
1509 
1510 typedef struct smb_rw_param {
1511 	uint32_t rw_magic;
1512 	smb_vdb_t rw_vdb;
1513 	uint64_t rw_offset;
1514 	uint32_t rw_last_write;
1515 	uint16_t rw_mode;
1516 	uint32_t rw_count;		/* bytes in this request */
1517 	uint16_t rw_mincnt;
1518 	uint32_t rw_total;		/* total bytes (write-raw) */
1519 	uint16_t rw_dsoff;		/* SMB data offset */
1520 	uint8_t rw_andx;		/* SMB secondary andx command */
1521 } smb_rw_param_t;
1522 
1523 typedef struct smb_pathname {
1524 	char	*pn_path;
1525 	char	*pn_pname;
1526 	char	*pn_fname;
1527 	char	*pn_sname;
1528 	char	*pn_stype;
1529 } smb_pathname_t;
1530 
1531 /*
1532  * fs_query_info
1533  */
1534 typedef struct smb_fqi {
1535 	smb_pathname_t	fq_path;
1536 	uint16_t	fq_sattr;
1537 	smb_node_t	*fq_dnode;
1538 	smb_node_t	*fq_fnode;
1539 	smb_attr_t	fq_fattr;
1540 	char		fq_last_comp[MAXNAMELEN];
1541 } smb_fqi_t;
1542 
1543 typedef struct dirop {
1544 	smb_fqi_t	fqi;
1545 	smb_fqi_t	dst_fqi;
1546 	uint16_t	info_level;
1547 	uint16_t	flags;
1548 } smb_arg_dirop_t;
1549 
1550 typedef struct smb_queryinfo {
1551 	smb_node_t	*qi_node;	/* NULL for pipes */
1552 	uint8_t qi_InfoType;
1553 	uint8_t qi_InfoClass;
1554 	uint8_t	qi_delete_on_close;
1555 	uint8_t qi_isdir;
1556 	uint32_t qi_AddlInfo;
1557 	uint32_t qi_Flags;
1558 	mbuf_chain_t in_data;
1559 	smb_attr_t	qi_attr;
1560 	uint32_t	qi_namelen;
1561 	char		qi_shortname[SMB_SHORTNAMELEN];
1562 	char		qi_name[MAXPATHLEN];
1563 } smb_queryinfo_t;
1564 
1565 typedef struct smb_setinfo {
1566 	smb_node_t *si_node;
1567 	mbuf_chain_t si_data;
1568 	smb_attr_t si_attr;
1569 } smb_setinfo_t;
1570 
1571 /*
1572  * smb_fssize_t
1573  * volume_units and volume avail are the total allocated and
1574  * available units on the volume.
1575  * caller_units and caller_avail are the allocated and available
1576  * units on the volume for the user associated with the calling
1577  * thread.
1578  */
1579 typedef struct smb_fssize {
1580 	uint64_t	fs_volume_units;
1581 	uint64_t	fs_volume_avail;
1582 	uint64_t	fs_caller_units;
1583 	uint64_t	fs_caller_avail;
1584 	uint32_t	fs_sectors_per_unit;
1585 	uint32_t	fs_bytes_per_sector;
1586 } smb_fssize_t;
1587 
1588 /*
1589  * SMB FsCtl operations (SMB2 Ioctl, and some SMB1 trans calls)
1590  */
1591 typedef struct {
1592 	uint32_t CtlCode;
1593 	uint32_t InputCount;
1594 	uint32_t OutputCount;
1595 	uint32_t MaxOutputResp;
1596 	mbuf_chain_t *in_mbc;
1597 	mbuf_chain_t *out_mbc;
1598 } smb_fsctl_t;
1599 
1600 typedef struct {
1601 	uint64_t	persistent;
1602 	uint64_t	temporal;
1603 } smb2fid_t;
1604 
1605 typedef struct {
1606 	uint32_t status;
1607 	uint16_t errcls;
1608 	uint16_t errcode;
1609 } smb_error_t;
1610 
1611 typedef struct open_param {
1612 	smb_fqi_t	fqi;
1613 	uint16_t	omode;
1614 	uint16_t	ofun;
1615 	uint32_t	nt_flags;
1616 	uint32_t	timeo;
1617 	uint32_t	dattr;
1618 	timestruc_t	crtime;
1619 	timestruc_t	mtime;
1620 	timestruc_t	timewarp;
1621 	/*
1622 	 * Careful: dsize is the desired (allocation) size before the
1623 	 * common open function, and the actual size afterwards.
1624 	 */
1625 	uint64_t	dsize;	/* alloc size, actual size */
1626 	uint32_t	desired_access;
1627 	uint32_t	maximum_access;
1628 	uint32_t	share_access;
1629 	uint32_t	create_options;
1630 	uint32_t	create_disposition;
1631 	boolean_t	create_timewarp;
1632 	boolean_t	created_readonly;
1633 	uint32_t	ftype;
1634 	uint32_t	devstate;
1635 	uint32_t	action_taken;
1636 	uint64_t	fileid;
1637 	uint32_t	rootdirfid;
1638 	fsid_t		op_fsid;
1639 	smb_ofile_t	*dir;
1640 	smb_opipe_t	*pipe;	/* for smb_opipe_open */
1641 	struct smb_sd	*sd;	/* for NTTransactCreate */
1642 	void		*create_ctx;
1643 
1644 	uint8_t		op_oplock_level;	/* requested/granted level */
1645 	uint32_t	op_oplock_state;	/* internal type+level */
1646 	uint32_t	lease_state;		/* SMB2_LEASE_... */
1647 	uint32_t	lease_flags;
1648 	uint16_t	lease_epoch;
1649 	uint16_t	lease_version;		/* 1 or 2 */
1650 	uint8_t		lease_key[SMB_LEASE_KEY_SZ];	/* from client */
1651 	uint8_t		parent_lease_key[SMB_LEASE_KEY_SZ]; /* for V2 */
1652 
1653 	smb_dh_vers_t	dh_vers;
1654 	smb2fid_t	dh_fileid;		/* for durable reconnect */
1655 	uint8_t		create_guid[16];
1656 	uint32_t	dh_v2_flags;
1657 	uint32_t	dh_timeout;
1658 } smb_arg_open_t;
1659 
1660 typedef struct smb_arg_lock {
1661 	void		*lvec;
1662 	uint32_t	lcnt;
1663 	uint32_t	lseq;
1664 } smb_arg_lock_t;
1665 
1666 typedef struct smb_arg_olbrk {
1667 	uint32_t	NewLevel;
1668 	boolean_t	AckRequired;
1669 } smb_arg_olbrk_t;
1670 
1671 /*
1672  * SMB Request State Machine
1673  * -------------------------
1674  *
1675  *                  T4               +------+		T0
1676  *      +--------------------------->| FREE |---------------------------+
1677  *      |                            +------+                           |
1678  * +-----------+                                                        |
1679  * | COMPLETED |                                                        |
1680  * +-----------+
1681  *      ^                                                               |
1682  *      | T15                      +-----------+                        v
1683  * +------------+        T6        |           |                +--------------+
1684  * | CLEANED_UP |<-----------------| CANCELLED |                | INITIALIZING |
1685  * +------------+                  |           |                +--------------+
1686  *      |    ^                     +-----------+                        |
1687  *      |    |                        ^  ^ ^ ^                          |
1688  *      |    |          +-------------+  | | |                          |
1689  *      |    |    T3    |                | | |               T13        | T1
1690  *      |    +-------------------------+ | | +----------------------+   |
1691  *      +----------------------------+ | | |                        |   |
1692  *         T16          |            | | | +-----------+            |   |
1693  *                      |           \/ | | T5          |            |   v
1694  * +-----------------+  |   T12     +--------+         |     T2    +-----------+
1695  * | EVENT_OCCURRED  |------------->| ACTIVE |<--------------------| SUBMITTED |
1696  * +-----------------+  |           +--------+         |           +-----------+
1697  *        ^             |              | ^ |           |
1698  *        |             |           T8 | | |  T7       |
1699  *        | T10      T9 |   +----------+ | +-------+   |  T11
1700  *        |             |   |            +-------+ |   |
1701  *        |             |   |               T14  | |   |
1702  *        |             |   v                    | v   |
1703  *      +----------------------+                +--------------+
1704  *	|     WAITING_EVENT    |                | WAITING_LOCK |
1705  *      +----------------------+                +--------------+
1706  *
1707  *
1708  *
1709  *
1710  *
1711  * Transition T0
1712  *
1713  * This transition occurs when the request is allocated and is still under the
1714  * control of the session thread.
1715  *
1716  * Transition T1
1717  *
1718  * This transition occurs when the session thread dispatches a task to treat the
1719  * request.
1720  *
1721  * Transition T2
1722  *
1723  *
1724  *
1725  * Transition T3
1726  *
1727  * A request completes and smbsr_cleanup is called to release resources
1728  * associated with the request (but not the smb_request_t itself).  This
1729  * includes references on smb_ofile_t, smb_node_t, and other structures.
1730  * CLEANED_UP state exists to detect if we attempt to cleanup a request
1731  * multiple times and to allow us to detect that we are accessing a
1732  * request that has already been cleaned up.
1733  *
1734  * Transition T4
1735  *
1736  *
1737  *
1738  * Transition T5
1739  *
1740  *
1741  *
1742  * Transition T6
1743  *
1744  *
1745  *
1746  * Transition T7
1747  *
1748  *
1749  *
1750  * Transition T8
1751  *
1752  *
1753  *
1754  * Transition T9
1755  *
1756  *
1757  *
1758  * Transition T10
1759  *
1760  *
1761  *
1762  * Transition T11
1763  *
1764  *
1765  *
1766  * Transition T12
1767  *
1768  *
1769  *
1770  * Transition T13
1771  *
1772  *
1773  *
1774  * Transition T14
1775  *
1776  *
1777  *
1778  * Transition T15
1779  *
1780  * Request processing is completed (control returns from smb_dispatch)
1781  *
1782  * Transition T16
1783  *
1784  * Multipart (andx) request was cleaned up with smbsr_cleanup but more "andx"
1785  * sections remain to be processed.
1786  *
1787  */
1788 
1789 #define	SMB_REQ_MAGIC		0x534D4252	/* 'SMBR' */
1790 #define	SMB_REQ_VALID(p)	ASSERT((p)->sr_magic == SMB_REQ_MAGIC)
1791 
1792 typedef enum smb_req_state {
1793 	SMB_REQ_STATE_FREE = 0,
1794 	SMB_REQ_STATE_INITIALIZING,
1795 	SMB_REQ_STATE_SUBMITTED,
1796 	SMB_REQ_STATE_ACTIVE,
1797 	SMB_REQ_STATE_WAITING_AUTH,
1798 	SMB_REQ_STATE_WAITING_FCN1,
1799 	SMB_REQ_STATE_WAITING_FCN2,
1800 	SMB_REQ_STATE_WAITING_LOCK,
1801 	SMB_REQ_STATE_WAITING_PIPE,
1802 	SMB_REQ_STATE_COMPLETED,
1803 	SMB_REQ_STATE_CANCEL_PENDING,
1804 	SMB_REQ_STATE_CANCELLED,
1805 	SMB_REQ_STATE_CLEANED_UP,
1806 	SMB_REQ_STATE_SENTINEL
1807 } smb_req_state_t;
1808 
1809 typedef struct smb_request {
1810 	list_node_t		sr_session_lnd;
1811 	uint32_t		sr_magic;
1812 	kmutex_t		sr_mutex;
1813 	smb_req_state_t		sr_state;
1814 	struct smb_server	*sr_server;
1815 	pid_t			*sr_pid;
1816 	int32_t			sr_gmtoff;
1817 	smb_session_t		*session;
1818 	smb_kmod_cfg_t		*sr_cfg;
1819 	void			(*cancel_method)(struct smb_request *);
1820 	void			*cancel_arg2;
1821 
1822 	/* Queue used by smb_request_append_postwork. */
1823 	struct smb_request	*sr_postwork;
1824 
1825 	list_node_t		sr_waiters;	/* smb_notify.c */
1826 
1827 	/* Info from session service header */
1828 	uint32_t		sr_req_length; /* Excluding NBT header */
1829 
1830 	/* Request buffer excluding NBT header */
1831 	void			*sr_request_buf;
1832 
1833 	struct mbuf_chain	command;
1834 	struct mbuf_chain	reply;
1835 	struct mbuf_chain	raw_data;
1836 	list_t			sr_storage;
1837 	struct smb_xa		*r_xa;
1838 	int			andx_prev_wct;
1839 	int			cur_reply_offset;
1840 	int			orig_request_hdr;
1841 	unsigned int		reply_seqnum;	/* reply sequence number */
1842 	unsigned char		first_smb_com;	/* command code */
1843 	unsigned char		smb_com;	/* command code */
1844 
1845 	uint8_t			smb_rcls;	/* error code class */
1846 	uint8_t			smb_reh;	/* rsvd (AH DOS INT-24 ERR) */
1847 	uint16_t		smb_err;	/* error code */
1848 	smb_error_t		smb_error;
1849 
1850 	uint8_t			smb_flg;	/* flags */
1851 	uint16_t		smb_flg2;	/* flags */
1852 	unsigned char		smb_sig[8];	/* signiture */
1853 	uint16_t		smb_tid;	/* tree id #  */
1854 	uint32_t		smb_pid;	/* caller's process id # */
1855 	uint16_t		smb_uid;	/* local (smb1) user id # */
1856 	uint16_t		smb_mid;	/* mutiplex id #  */
1857 	unsigned char		smb_wct;	/* count of parameter words */
1858 	uint16_t		smb_bcc;	/* data byte count */
1859 
1860 	/*
1861 	 * Beginning offsets (in the mbuf chain) for the
1862 	 * command and reply headers, and the next reply.
1863 	 */
1864 	uint32_t		smb2_cmd_hdr;
1865 	uint32_t		smb2_reply_hdr;
1866 	uint32_t		smb2_next_reply;
1867 
1868 	/*
1869 	 * SMB2 header fields.  [MS-SMB2 2.2.1.2]
1870 	 * XXX: Later do a union w smb1 members
1871 	 */
1872 	uint16_t		smb2_credit_charge;
1873 	uint16_t		smb2_chan_seq;	/* cmd only */
1874 	uint32_t		smb2_status;
1875 	uint16_t		smb2_cmd_code;
1876 	uint16_t		smb2_credit_request;
1877 	uint16_t		smb2_credit_response;
1878 	uint16_t		smb2_total_credits; /* in compound */
1879 	uint32_t		smb2_hdr_flags;
1880 	uint32_t		smb2_next_command;
1881 	uint64_t		smb2_messageid;
1882 	uint64_t		smb2_first_msgid;
1883 	/* uint32_t		smb2_pid; use smb_pid */
1884 	/* uint32_t		smb2_tid; use smb_tid */
1885 	uint64_t		smb2_ssnid;	/* See u_ssnid */
1886 	uint8_t			smb2_sig[16];	/* signature */
1887 
1888 	/*
1889 	 * SMB3 transform header fields. [MS-SMB2 2.2.41]
1890 	 */
1891 	uint64_t		smb3_tform_ssnid;
1892 	smb_user_t		*tform_ssn;
1893 	uint32_t		msgsize;
1894 	uint8_t			nonce[16];
1895 
1896 	boolean_t		encrypted;
1897 	boolean_t		dh_nvl_dirty;
1898 
1899 	boolean_t		smb2_async;
1900 	uint64_t		smb2_async_id;
1901 	/* Parameters */
1902 	struct mbuf_chain	smb_vwv;	/* variable width value */
1903 
1904 	/* Data */
1905 	struct mbuf_chain	smb_data;
1906 
1907 	uint16_t		smb_fid;	/* not in hdr, but common */
1908 
1909 	unsigned char		andx_com;
1910 	uint16_t		andx_off;
1911 
1912 	struct smb_tree		*tid_tree;
1913 	struct smb_ofile	*fid_ofile;
1914 	smb_user_t		*uid_user;
1915 
1916 	cred_t			*user_cr;
1917 	kthread_t		*sr_worker;
1918 	hrtime_t		sr_time_submitted;
1919 	hrtime_t		sr_time_active;
1920 	hrtime_t		sr_time_start;
1921 	int32_t			sr_txb;
1922 	uint32_t		sr_seqnum;
1923 
1924 	union {
1925 		smb2_arg_negotiate_t	nego2;
1926 		smb_arg_negotiate_t	*negprot;
1927 		smb_arg_sessionsetup_t	*ssetup;
1928 		smb_arg_tcon_t		tcon;
1929 		smb_arg_dirop_t		dirop;
1930 		smb_arg_open_t		open;
1931 		smb_arg_lock_t		lock;
1932 		smb_arg_olbrk_t		olbrk;	/* for async oplock break */
1933 		smb_rw_param_t		*rw;
1934 		int32_t			timestamp;
1935 		void			*other;
1936 	} arg;
1937 } smb_request_t;
1938 
1939 #define	sr_ssetup	arg.ssetup
1940 #define	sr_negprot	arg.negprot
1941 #define	sr_nego2	arg.nego2
1942 #define	sr_tcon		arg.tcon
1943 #define	sr_dirop	arg.dirop
1944 #define	sr_open		arg.open
1945 #define	sr_rw		arg.rw
1946 #define	sr_timestamp	arg.timestamp
1947 
1948 #define	SMB_READ_PROTOCOL(hdr) \
1949 	LE_IN32(((smb_hdr_t *)(hdr))->protocol)
1950 
1951 #define	SMB_PROTOCOL_MAGIC_INVALID(rd_sr) \
1952 	(SMB_READ_PROTOCOL((rd_sr)->sr_request_buf) != SMB_PROTOCOL_MAGIC)
1953 
1954 #define	SMB_READ_COMMAND(hdr) \
1955 	(((smb_hdr_t *)(hdr))->command)
1956 
1957 #define	SMB_IS_NT_CANCEL(rd_sr) \
1958 	(SMB_READ_COMMAND((rd_sr)->sr_request_buf) == SMB_COM_NT_CANCEL)
1959 
1960 #define	SMB_IS_SESSION_SETUP_ANDX(rd_sr) \
1961 	(SMB_READ_COMMAND((rd_sr)->sr_request_buf) == \
1962 	    SMB_COM_SESSION_SETUP_ANDX)
1963 
1964 #define	SMB_IS_NT_NEGOTIATE(rd_sr) \
1965 	(SMB_READ_COMMAND((rd_sr)->sr_request_buf) == SMB_COM_NEGOTIATE)
1966 
1967 #define	SMB_IS_TREE_CONNECT_ANDX(rd_sr) \
1968 	(SMB_READ_COMMAND((rd_sr)->sr_request_buf) == SMB_COM_TREE_CONNECT_ANDX)
1969 
1970 #define	SMB_XA_FLAG_OPEN	0x0001
1971 #define	SMB_XA_FLAG_CLOSE	0x0002
1972 #define	SMB_XA_FLAG_COMPLETE	0x0004
1973 #define	SMB_XA_CLOSED(xa) (!((xa)->xa_flags & SMB_XA_FLAG_OPEN))
1974 
1975 #define	SMB_XA_MAGIC		0x534D4258	/* 'SMBX' */
1976 
1977 typedef struct smb_xa {
1978 	list_node_t		xa_lnd;
1979 	uint32_t		xa_magic;
1980 	kmutex_t		xa_mutex;
1981 
1982 	uint32_t		xa_refcnt;
1983 	uint32_t		xa_flags;
1984 
1985 	struct smb_session	*xa_session;
1986 
1987 	unsigned char		smb_com;	/* which TRANS type */
1988 	unsigned char		smb_flg;	/* flags */
1989 	uint16_t		smb_flg2;	/* flags */
1990 	uint16_t		smb_tid;	/* tree id number */
1991 	uint32_t		smb_pid;	/* caller's process id */
1992 	uint16_t		smb_uid;	/* user id number */
1993 	uint32_t		smb_func;	/* NT_TRANS function */
1994 
1995 	uint16_t		xa_smb_mid;	/* mutiplex id number */
1996 	uint16_t		xa_smb_fid;	/* TRANS2 secondary */
1997 
1998 	unsigned int		reply_seqnum;	/* reply sequence number */
1999 
2000 	uint32_t	smb_tpscnt;	/* total parameter bytes being sent */
2001 	uint32_t	smb_tdscnt;	/* total data bytes being sent */
2002 	uint32_t	smb_mprcnt;	/* max parameter bytes to return */
2003 	uint32_t	smb_mdrcnt;	/* max data bytes to return */
2004 	uint32_t	smb_msrcnt;	/* max setup words to return */
2005 	uint32_t	smb_flags;	/* additional information: */
2006 				/*  bit 0 - if set, disconnect TID in smb_tid */
2007 				/*  bit 1 - if set, transaction is one way */
2008 				/*  (no final response) */
2009 	int32_t	smb_timeout;	/* number of milliseconds to await completion */
2010 	uint32_t	smb_suwcnt;	/* set up word count */
2011 
2012 	char			*xa_pipe_name;
2013 
2014 	/*
2015 	 * These are the param and data count received so far,
2016 	 * used to decide if the whole trans is here yet.
2017 	 */
2018 	int			req_disp_param;
2019 	int			req_disp_data;
2020 
2021 	struct mbuf_chain	req_setup_mb;
2022 	struct mbuf_chain	req_param_mb;
2023 	struct mbuf_chain	req_data_mb;
2024 
2025 	struct mbuf_chain	rep_setup_mb;
2026 	struct mbuf_chain	rep_param_mb;
2027 	struct mbuf_chain	rep_data_mb;
2028 } smb_xa_t;
2029 
2030 
2031 #define	SDDF_NO_FLAGS			0
2032 #define	SDDF_SUPPRESS_TID		0x0001
2033 #define	SDDF_SUPPRESS_UID		0x0002
2034 
2035 /*
2036  * SMB dispatch return codes.
2037  */
2038 typedef enum {
2039 	SDRC_SUCCESS = 0,
2040 	SDRC_ERROR,
2041 	SDRC_DROP_VC,
2042 	SDRC_NO_REPLY,
2043 	SDRC_SR_KEPT,
2044 	SDRC_NOT_IMPLEMENTED
2045 } smb_sdrc_t;
2046 
2047 #define	VAR_BCC		((short)-1)
2048 
2049 #define	SMB_SERVER_MAGIC	0x53534552	/* 'SSER' */
2050 #define	SMB_SERVER_VALID(s)	\
2051     ASSERT(((s) != NULL) && ((s)->sv_magic == SMB_SERVER_MAGIC))
2052 
2053 #define	SMB_LISTENER_MAGIC	0x4C53544E	/* 'LSTN' */
2054 #define	SMB_LISTENER_VALID(ld)	\
2055     ASSERT(((ld) != NULL) && ((ld)->ld_magic == SMB_LISTENER_MAGIC))
2056 
2057 typedef struct {
2058 	uint32_t		ld_magic;
2059 	struct smb_server	*ld_sv;
2060 	smb_thread_t		ld_thread;
2061 	ksocket_t		ld_so;
2062 	in_port_t		ld_port;
2063 	int			ld_family;
2064 	struct sockaddr_in	ld_sin;
2065 	struct sockaddr_in6	ld_sin6;
2066 } smb_listener_daemon_t;
2067 
2068 #define	SMB_SSETUP_CMD			"authentication"
2069 #define	SMB_TCON_CMD			"share mapping"
2070 #define	SMB_OPIPE_CMD			"pipe open"
2071 #define	SMB_THRESHOLD_REPORT_THROTTLE	50
2072 typedef struct smb_cmd_threshold {
2073 	char			*ct_cmd;
2074 	kmutex_t		ct_mutex;
2075 	volatile uint32_t	ct_active_cnt;
2076 	volatile uint32_t	ct_blocked_cnt;
2077 	uint32_t		ct_threshold;
2078 	uint32_t		ct_timeout; /* milliseconds */
2079 	kcondvar_t		ct_cond;
2080 } smb_cmd_threshold_t;
2081 
2082 typedef struct {
2083 	kstat_named_t		ls_files;
2084 	kstat_named_t		ls_trees;
2085 	kstat_named_t		ls_users;
2086 } smb_server_legacy_kstat_t;
2087 
2088 typedef enum smb_server_state {
2089 	SMB_SERVER_STATE_CREATED = 0,
2090 	SMB_SERVER_STATE_CONFIGURED,
2091 	SMB_SERVER_STATE_RUNNING,
2092 	SMB_SERVER_STATE_STOPPING,
2093 	SMB_SERVER_STATE_DELETING,
2094 	SMB_SERVER_STATE_SENTINEL
2095 } smb_server_state_t;
2096 
2097 typedef struct {
2098 	/* protected by sv_mutex */
2099 	kcondvar_t		sp_cv;
2100 	uint32_t		sp_cnt;
2101 	smb_llist_t		sp_list;
2102 	smb_llist_t		sp_fidlist;
2103 } smb_spool_t;
2104 
2105 #define	SMB_SERVER_STATE_VALID(S)               \
2106     ASSERT(((S) == SMB_SERVER_STATE_CREATED) || \
2107 	    ((S) == SMB_SERVER_STATE_CONFIGURED) || \
2108 	    ((S) == SMB_SERVER_STATE_RUNNING) ||    \
2109 	    ((S) == SMB_SERVER_STATE_STOPPING) ||   \
2110 	    ((S) == SMB_SERVER_STATE_DELETING))
2111 
2112 typedef struct smb_server {
2113 	list_node_t		sv_lnd;
2114 	uint32_t		sv_magic;
2115 	kcondvar_t		sv_cv;
2116 	kmutex_t		sv_mutex;
2117 	smb_server_state_t	sv_state;
2118 	uint32_t		sv_refcnt;
2119 	pid_t			sv_pid;
2120 	zoneid_t		sv_zid;
2121 	smb_listener_daemon_t	sv_nbt_daemon;
2122 	smb_listener_daemon_t	sv_tcp_daemon;
2123 	krwlock_t		sv_cfg_lock;
2124 	smb_kmod_cfg_t		sv_cfg;
2125 	smb_session_t		*sv_session;
2126 	smb_user_t		*sv_rootuser;
2127 	smb_llist_t		sv_session_list;
2128 	smb_hash_t		*sv_persistid_ht;
2129 	smb_hash_t		*sv_lease_ht;
2130 
2131 	smb_export_t		sv_export;
2132 	struct __door_handle	*sv_lmshrd;
2133 
2134 	/* Internal door for up-calls to smbd */
2135 	struct __door_handle	*sv_kdoor_hd;
2136 	int			sv_kdoor_id; /* init -1 */
2137 	uint64_t		sv_kdoor_ncall;
2138 	kmutex_t		sv_kdoor_mutex;
2139 	kcondvar_t		sv_kdoor_cv;
2140 
2141 	int32_t			si_gmtoff;
2142 
2143 	smb_thread_t		si_thread_timers;
2144 
2145 	taskq_t			*sv_worker_pool;
2146 	taskq_t			*sv_receiver_pool;
2147 
2148 	smb_node_t		*si_root_smb_node;
2149 	smb_llist_t		sv_opipe_list;
2150 	smb_llist_t		sv_event_list;
2151 
2152 	/* Statistics */
2153 	hrtime_t		sv_start_time;
2154 	kstat_t			*sv_ksp;
2155 	volatile uint32_t	sv_nbt_sess;
2156 	volatile uint32_t	sv_tcp_sess;
2157 	volatile uint32_t	sv_users;
2158 	volatile uint32_t	sv_trees;
2159 	volatile uint32_t	sv_files;
2160 	volatile uint32_t	sv_pipes;
2161 	volatile uint64_t	sv_txb;
2162 	volatile uint64_t	sv_rxb;
2163 	volatile uint64_t	sv_nreq;
2164 	smb_srqueue_t		sv_srqueue;
2165 	smb_spool_t		sp_info;
2166 	smb_cmd_threshold_t	sv_ssetup_ct;
2167 	smb_cmd_threshold_t	sv_tcon_ct;
2168 	smb_cmd_threshold_t	sv_opipe_ct;
2169 	kstat_t			*sv_legacy_ksp;
2170 	kmutex_t		sv_legacy_ksmtx;
2171 	smb_disp_stats_t	*sv_disp_stats1;
2172 	smb_disp_stats_t	*sv_disp_stats2;
2173 } smb_server_t;
2174 
2175 #define	SMB_EVENT_MAGIC		0x45564E54	/* EVNT */
2176 #define	SMB_EVENT_TIMEOUT	45		/* seconds */
2177 #define	SMB_EVENT_VALID(e)	\
2178     ASSERT(((e) != NULL) && ((e)->se_magic == SMB_EVENT_MAGIC))
2179 typedef struct smb_event {
2180 	list_node_t		se_lnd;
2181 	uint32_t		se_magic;
2182 	kmutex_t		se_mutex;
2183 	kcondvar_t		se_cv;
2184 	smb_server_t		*se_server;
2185 	uint32_t		se_txid;
2186 	boolean_t		se_notified;
2187 	int			se_waittime;
2188 	int			se_timeout;
2189 	int			se_errno;
2190 } smb_event_t;
2191 
2192 typedef struct smb_kspooldoc {
2193 	list_node_t	sd_lnd;
2194 	uint32_t	sd_magic;
2195 	smb_inaddr_t	sd_ipaddr;
2196 	uint32_t	sd_spool_num;
2197 	uint16_t	sd_fid;
2198 	char		sd_username[MAXNAMELEN];
2199 	char		sd_path[MAXPATHLEN];
2200 } smb_kspooldoc_t;
2201 
2202 typedef struct smb_spoolfid {
2203 	list_node_t	sf_lnd;
2204 	uint32_t	sf_magic;
2205 	uint16_t	sf_fid;
2206 } smb_spoolfid_t;
2207 
2208 #define	SMB_INFO_NETBIOS_SESSION_SVC_RUNNING	0x0001
2209 #define	SMB_INFO_NETBIOS_SESSION_SVC_FAILED	0x0002
2210 #define	SMB_INFO_USER_LEVEL_SECURITY		0x40000000
2211 #define	SMB_INFO_ENCRYPT_PASSWORDS		0x80000000
2212 
2213 #define	SMB_IS_STREAM(node) ((node)->n_unode)
2214 
2215 typedef struct smb_tsd {
2216 	void (*proc)();
2217 	void *arg;
2218 	char name[100];
2219 } smb_tsd_t;
2220 
2221 typedef struct smb_disp_entry {
2222 	char		sdt_name[KSTAT_STRLEN];
2223 	smb_sdrc_t	(*sdt_pre_op)(smb_request_t *);
2224 	smb_sdrc_t	(*sdt_function)(smb_request_t *);
2225 	void		(*sdt_post_op)(smb_request_t *);
2226 	uint8_t		sdt_com;
2227 	char		sdt_dialect;
2228 	uint8_t		sdt_flags;
2229 } smb_disp_entry_t;
2230 
2231 typedef struct smb_xlate {
2232 	int	code;
2233 	char	*str;
2234 } smb_xlate_t;
2235 
2236 /*
2237  * This structure is a helper for building RAP NetShareEnum response
2238  *
2239  * es_posix_uid UID of the user requesting the shares list which
2240  *              is used to detect if the user has any autohome
2241  * es_bufsize   size of the response buffer
2242  * es_buf       pointer to the response buffer
2243  * es_ntotal    total number of shares exported by server which
2244  *              their OEM names is less then 13 chars
2245  * es_nsent     number of shares that can fit in the specified buffer
2246  * es_datasize  actual data size (share's data) which was encoded
2247  *              in the response buffer
2248  */
2249 typedef struct smb_enumshare_info {
2250 	uid_t		es_posix_uid;
2251 	uint16_t	es_bufsize;
2252 	char		*es_buf;
2253 	uint16_t	es_ntotal;
2254 	uint16_t	es_nsent;
2255 	uint16_t	es_datasize;
2256 } smb_enumshare_info_t;
2257 
2258 /*
2259  * SMB 3.1.1 error id for error ctxs
2260  */
2261 enum smb2_error_id {
2262 	SMB2_ERROR_ID_DEFAULT		= 0,
2263 	SMB2_ERROR_ID_SHARE_REDIRECT	= 0x72645253	/* not used */
2264 };
2265 
2266 #ifdef	__cplusplus
2267 }
2268 #endif
2269 
2270 #endif /* _SMBSRV_SMB_KTYPES_H */
2271