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 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #include <sys/types.h>
27 #include <sys/ddi.h>
28 #include <sys/modctl.h>
29 #include <sys/cred.h>
30 #include <sys/ioccom.h>
31 #include <sys/policy.h>
32 #include <sys/cmn_err.h>
33 #include <smbsrv/smb_incl.h>
34 #include <smbsrv/mlsvc.h>
35 #include <smbsrv/smb_door_svc.h>
36 #include <smbsrv/smb_ioctl.h>
37 #include <smbsrv/smb_kproto.h>
38 
39 static int smb_drv_open(dev_t *, int, int, cred_t *);
40 static int smb_drv_close(dev_t, int, int, cred_t *);
41 static int smb_drv_ioctl(dev_t, int, intptr_t, int, cred_t *, int *);
42 static int smb_drv_attach(dev_info_t *, ddi_attach_cmd_t);
43 static int smb_drv_detach(dev_info_t *, ddi_detach_cmd_t);
44 static int smb_drv_getinfo(dev_info_t *, ddi_info_cmd_t, void *, void **);
45 
46 /*
47  * *****************************************************************************
48  * ****************************** Global Variables *****************************
49  * *****************************************************************************
50  *
51  * These variables can only be changed through the /etc/system file.
52  */
53 
54 /*
55  * Maximum buffer size for NT: configurable based on the client environment.
56  * IR104720 Experiments with Windows 2000 indicate that we achieve better
57  * SmbWriteX performance with a buffer size of 64KB instead of the 37KB used
58  * with Windows NT4.0. Previous experiments with NT4.0 resulted in directory
59  * listing problems so this buffer size is configurable based on the end-user
60  * environment. When in doubt use 37KB.
61  */
62 int	smb_maxbufsize = SMB_NT_MAXBUF;
63 clock_t	smb_oplock_timeout = OPLOCK_STD_TIMEOUT;
64 int	smb_flush_required = 1;
65 int	smb_dirsymlink_enable = 1;
66 int	smb_announce_quota = 0;
67 int	smb_sign_debug = 0;
68 
69 /*
70  * *****************************************************************************
71  * ********************** Static Variables / Module Linkage ********************
72  * *****************************************************************************
73  */
74 
75 static struct cb_ops cbops = {
76 	smb_drv_open,		/* cb_open */
77 	smb_drv_close,		/* cb_close */
78 	nodev,			/* cb_strategy */
79 	nodev,			/* cb_print */
80 	nodev,			/* cb_dump */
81 	nodev,			/* cb_read */
82 	nodev,			/* cb_write */
83 	smb_drv_ioctl,		/* cb_ioctl */
84 	nodev,			/* cb_devmap */
85 	nodev,			/* cb_mmap */
86 	nodev,			/* cb_segmap */
87 	nochpoll,		/* cb_chpoll */
88 	ddi_prop_op,		/* cb_prop_op */
89 	NULL,			/* cb_streamtab */
90 	D_MP,			/* cb_flag */
91 	CB_REV,			/* cb_rev */
92 	nodev,			/* cb_aread */
93 	nodev,			/* cb_awrite */
94 };
95 
96 static struct dev_ops devops = {
97 	DEVO_REV,		/* devo_rev */
98 	0,			/* devo_refcnt */
99 	smb_drv_getinfo,	/* devo_getinfo */
100 	nulldev,		/* devo_identify */
101 	nulldev,		/* devo_probe */
102 	smb_drv_attach,		/* devo_attach */
103 	smb_drv_detach,		/* devo_detach */
104 	nodev,			/* devo_reset */
105 	&cbops,			/* devo_cb_ops */
106 	NULL,			/* devo_bus_ops */
107 	NULL,			/* devo_power */
108 	ddi_quiesce_not_needed,		/* devo_quiesce */
109 };
110 
111 static struct modldrv modldrv = {
112 	&mod_driverops,					/* drv_modops */
113 	"CIFS Server Protocol",				/* drv_linkinfo */
114 	&devops,
115 };
116 
117 static struct modlinkage modlinkage = {
118 	MODREV_1,	/* revision of the module, must be: MODREV_1	*/
119 	&modldrv,	/* ptr to linkage structures			*/
120 	NULL,
121 };
122 
123 static dev_info_t *smb_drv_dip = NULL;
124 
125 /*
126  * ****************************************************************************
127  *				    Module Interface
128  * ****************************************************************************
129  */
130 
131 int
132 _init(void)
133 {
134 	return (mod_install(&modlinkage));
135 }
136 
137 int
138 _info(struct modinfo *modinfop)
139 {
140 	return (mod_info(&modlinkage, modinfop));
141 }
142 
143 int
144 _fini(void)
145 {
146 	return (mod_remove(&modlinkage));
147 }
148 
149 /*
150  * ****************************************************************************
151  *				Pseudo Device Entry Points
152  * ****************************************************************************
153  */
154 /* ARGSUSED */
155 static int
156 smb_drv_open(dev_t *devp, int flag, int otyp, cred_t *credp)
157 {
158 	/*
159 	 * Check caller's privileges.
160 	 */
161 	if (secpolicy_smb(credp) != 0)
162 		return (EPERM);
163 
164 	/*
165 	 * Start SMB service state machine
166 	 */
167 	return (smb_server_create());
168 }
169 
170 /* ARGSUSED */
171 static int
172 smb_drv_close(dev_t dev, int flag, int otyp, cred_t *credp)
173 {
174 	return (smb_server_delete());
175 }
176 
177 /* ARGSUSED */
178 static int
179 smb_drv_ioctl(dev_t drv, int cmd, intptr_t argp, int flag, cred_t *cred,
180     int *retval)
181 {
182 	int		rc = 0;
183 	smb_io_t	smb_io;
184 	uint32_t	crc1;
185 	uint32_t	crc2;
186 
187 	if (ddi_copyin((smb_io_t *)argp, &smb_io, sizeof (smb_io), flag) ||
188 	    (smb_io.sio_version != SMB_IOC_VERSION))
189 		return (EFAULT);
190 
191 	crc1 = smb_io.sio_crc;
192 	smb_io.sio_crc = 0;
193 	crc2 = smb_crc_gen((uint8_t *)&smb_io, sizeof (smb_io_t));
194 
195 	if (crc1 != crc2)
196 		return (EFAULT);
197 
198 	switch (cmd) {
199 	case SMB_IOC_CONFIG:
200 		rc = smb_server_configure(&smb_io.sio_data.cfg);
201 		break;
202 	case SMB_IOC_START:
203 		rc = smb_server_start(&smb_io.sio_data.start);
204 		break;
205 	case SMB_IOC_NBT_LISTEN:
206 		rc = smb_server_nbt_listen(smb_io.sio_data.error);
207 		break;
208 	case SMB_IOC_TCP_LISTEN:
209 		rc = smb_server_tcp_listen(smb_io.sio_data.error);
210 		break;
211 	case SMB_IOC_NBT_RECEIVE:
212 		rc = smb_server_nbt_receive();
213 		break;
214 	case SMB_IOC_TCP_RECEIVE:
215 		rc = smb_server_tcp_receive();
216 		break;
217 	case SMB_IOC_GMTOFF:
218 		rc = smb_server_set_gmtoff(smb_io.sio_data.gmtoff);
219 		break;
220 	default:
221 		rc = ENOTTY;
222 		break;
223 	}
224 
225 	return (rc);
226 }
227 
228 /*
229  * ****************************************************************************
230  *				Pseudo Device Operations
231  * ****************************************************************************
232  */
233 static int
234 smb_drv_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
235 {
236 	if (cmd == DDI_ATTACH) {
237 		/* we only allow instance 0 to attach */
238 		if (ddi_get_instance(dip) == 0) {
239 			/* create the minor node */
240 			if (ddi_create_minor_node(dip, "smbsrv", S_IFCHR, 0,
241 			    DDI_PSEUDO, 0) == DDI_SUCCESS) {
242 				if (smb_server_svc_init() == 0) {
243 					smb_drv_dip = dip;
244 					return (DDI_SUCCESS);
245 				}
246 				ddi_remove_minor_node(dip, NULL);
247 			} else {
248 				cmn_err(CE_WARN, "smb_drv_attach:"
249 				    " failed creating minor node");
250 			}
251 		}
252 	}
253 	return (DDI_FAILURE);
254 }
255 
256 static int
257 smb_drv_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
258 {
259 	if (cmd == DDI_DETACH) {
260 		ASSERT(dip == smb_drv_dip);
261 		if (smb_server_svc_fini() == 0) {
262 			ddi_remove_minor_node(dip, NULL);
263 			smb_drv_dip = NULL;
264 			return (DDI_SUCCESS);
265 		}
266 	}
267 	return (DDI_FAILURE);
268 }
269 
270 /* ARGSUSED */
271 static int
272 smb_drv_getinfo(dev_info_t *dip, ddi_info_cmd_t cmd, void *arg, void **result)
273 {
274 	ulong_t instance = getminor((dev_t)arg);
275 
276 	switch (cmd) {
277 	case DDI_INFO_DEVT2DEVINFO:
278 		*result = smb_drv_dip;
279 		return (DDI_SUCCESS);
280 
281 	case DDI_INFO_DEVT2INSTANCE:
282 		*result = (void *)instance;
283 		return (DDI_SUCCESS);
284 
285 	default:
286 		break;
287 	}
288 
289 	return (DDI_FAILURE);
290 }
291