xref: /illumos-gate/usr/src/uts/common/smbsrv/smb2_kproto.h (revision 148d1a4158dc830f7b293a2ceb62ee54c2ebd72f)
1 /*
2  * This file and its contents are supplied under the terms of the
3  * Common Development and Distribution License ("CDDL"), version 1.0.
4  * You may only use this file in accordance with the terms of version
5  * 1.0 of the CDDL.
6  *
7  * A full copy of the text of the CDDL should have accompanied this
8  * source.  A copy of the CDDL is also available via the Internet at
9  * http://www.illumos.org/license/CDDL.
10  */
11 
12 /*
13  * Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
14  */
15 
16 #ifndef _SMB2_KPROTO_H_
17 #define	_SMB2_KPROTO_H_
18 
19 #include <smbsrv/smb_kproto.h>
20 #include <smbsrv/smb2.h>
21 
22 #ifdef	__cplusplus
23 extern "C" {
24 #endif
25 
26 extern uint32_t smb2_tcp_rcvbuf;
27 extern uint32_t smb2_max_rwsize;
28 extern uint32_t smb2_max_trans;
29 
30 extern int smb2_aapl_use_file_ids;
31 extern uint32_t smb2_dh_def_timeout;
32 extern uint32_t smb2_dh_max_timeout;
33 extern uint32_t smb2_res_def_timeout;
34 extern uint32_t smb2_res_max_timeout;
35 extern int smb2_enable_dh;
36 
37 void	smb2_dispatch_stats_init(smb_server_t *);
38 void	smb2_dispatch_stats_fini(smb_server_t *);
39 void	smb2_dispatch_stats_update(smb_server_t *,
40 		smb_kstat_req_t *, int, int);
41 
42 int	smb2sr_newrq(smb_request_t *);
43 void	smb2sr_work(smb_request_t *);
44 uint32_t smb2sr_go_async(smb_request_t *);
45 
46 int smb2_decode_header(smb_request_t *);
47 int smb2_encode_header(smb_request_t *, boolean_t);
48 void smb2_send_reply(smb_request_t *);
49 void smb2sr_put_error(smb_request_t *, uint32_t);
50 void smb2sr_put_error_data(smb_request_t *, uint32_t, mbuf_chain_t *);
51 void smb2sr_put_errno(struct smb_request *, int);
52 uint32_t smb2sr_lookup_fid(smb_request_t *, smb2fid_t *);
53 
54 /* SMB2 signing routines - smb2_signing.c */
55 int smb2_sign_check_request(smb_request_t *);
56 void smb2_sign_reply(smb_request_t *);
57 void smb2_sign_init_mech(smb_session_t *);
58 
59 uint32_t smb2_fsctl_vneginfo(smb_request_t *, smb_fsctl_t *);
60 uint32_t smb2_fsctl_resiliency(smb_request_t *, smb_fsctl_t *);
61 
62 smb_sdrc_t smb2_negotiate(smb_request_t *);
63 smb_sdrc_t smb2_session_setup(smb_request_t *);
64 smb_sdrc_t smb2_logoff(smb_request_t *);
65 smb_sdrc_t smb2_tree_connect(smb_request_t *);
66 smb_sdrc_t smb2_tree_disconn(smb_request_t *);
67 smb_sdrc_t smb2_create(smb_request_t *);
68 smb_sdrc_t smb2_close(smb_request_t *);
69 smb_sdrc_t smb2_flush(smb_request_t *);
70 smb_sdrc_t smb2_read(smb_request_t *);
71 smb_sdrc_t smb2_write(smb_request_t *);
72 smb_sdrc_t smb2_lock(smb_request_t *);
73 smb_sdrc_t smb2_ioctl(smb_request_t *);
74 smb_sdrc_t smb2_cancel(smb_request_t *);
75 smb_sdrc_t smb2_echo(smb_request_t *);
76 smb_sdrc_t smb2_query_dir(smb_request_t *);
77 smb_sdrc_t smb2_change_notify(smb_request_t *);
78 smb_sdrc_t smb2_query_info(smb_request_t *);
79 smb_sdrc_t smb2_set_info(smb_request_t *);
80 smb_sdrc_t smb2_oplock_break_ack(smb_request_t *);
81 
82 int smb2_newrq_negotiate(smb_request_t *);
83 int smb2_newrq_cancel(smb_request_t *);
84 
85 uint32_t smb2_aapl_crctx(smb_request_t *,
86 	mbuf_chain_t *, mbuf_chain_t *);
87 
88 uint32_t smb2_ofile_getattr(smb_request_t *, smb_ofile_t *, smb_attr_t *);
89 uint32_t smb2_ofile_getstd(smb_ofile_t *, smb_queryinfo_t *);
90 uint32_t smb2_ofile_getname(smb_ofile_t *, smb_queryinfo_t *);
91 
92 uint32_t smb2_qinfo_file(smb_request_t *, smb_queryinfo_t *);
93 uint32_t smb2_qinfo_fs(smb_request_t *, smb_queryinfo_t *);
94 uint32_t smb2_qinfo_sec(smb_request_t *, smb_queryinfo_t *);
95 uint32_t smb2_qinfo_quota(smb_request_t *, smb_queryinfo_t *);
96 uint32_t smb2_qinfo_stream(smb_request_t *, smb_queryinfo_t *);
97 
98 uint32_t smb2_setinfo_file(smb_request_t *, smb_setinfo_t *, int);
99 uint32_t smb2_setinfo_fs(smb_request_t *, smb_setinfo_t *, int);
100 uint32_t smb2_setinfo_sec(smb_request_t *, smb_setinfo_t *, uint32_t);
101 uint32_t smb2_setinfo_quota(smb_request_t *, smb_setinfo_t *);
102 
103 void smb2_durable_timers(smb_server_t *);
104 
105 uint32_t smb2_dh_reconnect(smb_request_t *);
106 boolean_t smb_dh_should_save(smb_ofile_t *);
107 extern void smb2_dh_shutdown(smb_server_t *);
108 
109 #ifdef	__cplusplus
110 }
111 #endif
112 
113 #endif /* _SMB2_KPROTO_H_ */
114