File: | scsi/sd.c |
Warning: | line 398, column 5 Value stored to 'error' is never read |
Press '?' to see keyboard shortcuts
Keyboard shortcuts:
1 | /* $OpenBSD: sd.c,v 1.335 2023/11/10 17:43:39 krw Exp $ */ |
2 | /* $NetBSD: sd.c,v 1.111 1997/04/02 02:29:41 mycroft Exp $ */ |
3 | |
4 | /*- |
5 | * Copyright (c) 1998, 2003, 2004 The NetBSD Foundation, Inc. |
6 | * All rights reserved. |
7 | * |
8 | * This code is derived from software contributed to The NetBSD Foundation |
9 | * by Charles M. Hannum. |
10 | * |
11 | * Redistribution and use in source and binary forms, with or without |
12 | * modification, are permitted provided that the following conditions |
13 | * are met: |
14 | * 1. Redistributions of source code must retain the above copyright |
15 | * notice, this list of conditions and the following disclaimer. |
16 | * 2. Redistributions in binary form must reproduce the above copyright |
17 | * notice, this list of conditions and the following disclaimer in the |
18 | * documentation and/or other materials provided with the distribution. |
19 | * |
20 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
21 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
22 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
23 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
24 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
25 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
26 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
27 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
28 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
29 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
30 | * POSSIBILITY OF SUCH DAMAGE. |
31 | */ |
32 | |
33 | /* |
34 | * Originally written by Julian Elischer (julian@dialix.oz.au) |
35 | * for TRW Financial Systems for use under the MACH(2.5) operating system. |
36 | * |
37 | * TRW Financial Systems, in accordance with their agreement with Carnegie |
38 | * Mellon University, makes this software available to CMU to distribute |
39 | * or use in any manner that they see fit as long as this message is kept with |
40 | * the software. For this reason TFS also grants any other persons or |
41 | * organisations permission to use or modify this software. |
42 | * |
43 | * TFS supplies this software to be publicly redistributed |
44 | * on the understanding that TFS is not responsible for the correct |
45 | * functioning of this software in any circumstances. |
46 | * |
47 | * Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992 |
48 | */ |
49 | |
50 | #include <sys/stdint.h> |
51 | #include <sys/param.h> |
52 | #include <sys/systm.h> |
53 | #include <sys/timeout.h> |
54 | #include <sys/fcntl.h> |
55 | #include <sys/stat.h> |
56 | #include <sys/ioctl.h> |
57 | #include <sys/mtio.h> |
58 | #include <sys/mutex.h> |
59 | #include <sys/buf.h> |
60 | #include <sys/uio.h> |
61 | #include <sys/malloc.h> |
62 | #include <sys/pool.h> |
63 | #include <sys/errno.h> |
64 | #include <sys/device.h> |
65 | #include <sys/disklabel.h> |
66 | #include <sys/disk.h> |
67 | #include <sys/conf.h> |
68 | #include <sys/scsiio.h> |
69 | #include <sys/dkio.h> |
70 | #include <sys/reboot.h> |
71 | |
72 | #include <scsi/scsi_all.h> |
73 | #include <scsi/scsi_debug.h> |
74 | #include <scsi/scsi_disk.h> |
75 | #include <scsi/scsiconf.h> |
76 | #include <scsi/sdvar.h> |
77 | |
78 | #include <ufs/ffs/fs.h> /* for BBSIZE and SBSIZE */ |
79 | |
80 | #include <sys/vnode.h> |
81 | |
82 | int sdmatch(struct device *, void *, void *); |
83 | void sdattach(struct device *, struct device *, void *); |
84 | int sdactivate(struct device *, int); |
85 | int sddetach(struct device *, int); |
86 | |
87 | void sdminphys(struct buf *); |
88 | int sdgetdisklabel(dev_t, struct sd_softc *, struct disklabel *, int); |
89 | void sdstart(struct scsi_xfer *); |
90 | int sd_interpret_sense(struct scsi_xfer *); |
91 | int sd_read_cap_10(struct sd_softc *, int); |
92 | int sd_read_cap_16(struct sd_softc *, int); |
93 | int sd_read_cap(struct sd_softc *, int); |
94 | int sd_thin_pages(struct sd_softc *, int); |
95 | int sd_vpd_block_limits(struct sd_softc *, int); |
96 | int sd_vpd_thin(struct sd_softc *, int); |
97 | int sd_thin_params(struct sd_softc *, int); |
98 | int sd_get_parms(struct sd_softc *, int); |
99 | int sd_flush(struct sd_softc *, int); |
100 | |
101 | void viscpy(u_char *, u_char *, int); |
102 | |
103 | int sd_ioctl_inquiry(struct sd_softc *, struct dk_inquiry *); |
104 | int sd_ioctl_cache(struct sd_softc *, long, struct dk_cache *); |
105 | |
106 | int sd_cmd_rw6(struct scsi_generic *, int, u_int64_t, u_int32_t); |
107 | int sd_cmd_rw10(struct scsi_generic *, int, u_int64_t, u_int32_t); |
108 | int sd_cmd_rw12(struct scsi_generic *, int, u_int64_t, u_int32_t); |
109 | int sd_cmd_rw16(struct scsi_generic *, int, u_int64_t, u_int32_t); |
110 | |
111 | void sd_buf_done(struct scsi_xfer *); |
112 | |
113 | const struct cfattach sd_ca = { |
114 | sizeof(struct sd_softc), sdmatch, sdattach, |
115 | sddetach, sdactivate |
116 | }; |
117 | |
118 | struct cfdriver sd_cd = { |
119 | NULL((void *)0), "sd", DV_DISK |
120 | }; |
121 | |
122 | const struct scsi_inquiry_pattern sd_patterns[] = { |
123 | {T_DIRECT0x00, T_FIXED0, |
124 | "", "", ""}, |
125 | {T_DIRECT0x00, T_REMOV1, |
126 | "", "", ""}, |
127 | {T_RDIRECT0x0e, T_FIXED0, |
128 | "", "", ""}, |
129 | {T_RDIRECT0x0e, T_REMOV1, |
130 | "", "", ""}, |
131 | {T_OPTICAL0x07, T_FIXED0, |
132 | "", "", ""}, |
133 | {T_OPTICAL0x07, T_REMOV1, |
134 | "", "", ""}, |
135 | }; |
136 | |
137 | #define sdlookup(unit)(struct sd_softc *)disk_lookup(&sd_cd, (unit)) (struct sd_softc *)disk_lookup(&sd_cd, (unit)) |
138 | |
139 | int |
140 | sdmatch(struct device *parent, void *match, void *aux) |
141 | { |
142 | struct scsi_attach_args *sa = aux; |
143 | struct scsi_inquiry_data *inq = &sa->sa_sc_link->inqdata; |
144 | int priority; |
145 | |
146 | (void)scsi_inqmatch(inq, sd_patterns, nitems(sd_patterns)(sizeof((sd_patterns)) / sizeof((sd_patterns)[0])), |
147 | sizeof(sd_patterns[0]), &priority); |
148 | |
149 | return priority; |
150 | } |
151 | |
152 | /* |
153 | * The routine called by the low level scsi routine when it discovers |
154 | * a device suitable for this driver. |
155 | */ |
156 | void |
157 | sdattach(struct device *parent, struct device *self, void *aux) |
158 | { |
159 | struct dk_cache dkc; |
160 | struct sd_softc *sc = (struct sd_softc *)self; |
161 | struct scsi_attach_args *sa = aux; |
162 | struct disk_parms *dp = &sc->params; |
163 | struct scsi_link *link = sa->sa_sc_link; |
164 | int error, sd_autoconf; |
165 | int sortby = BUFQ_DEFAULT1; |
166 | |
167 | SC_DEBUG(link, SDEV_DB2, ("sdattach:\n")); |
168 | |
169 | sd_autoconf = scsi_autoconf | SCSI_SILENT0x00020 | |
170 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | SCSI_IGNORE_MEDIA_CHANGE0x00080; |
171 | |
172 | /* |
173 | * Store information needed to contact our base driver. |
174 | */ |
175 | sc->sc_link = link; |
176 | link->interpret_sense = sd_interpret_sense; |
177 | link->device_softc = sc; |
178 | |
179 | if (ISSET(link->flags, SDEV_ATAPI)((link->flags) & (0x0200)) && ISSET(link->flags,((link->flags) & (0x0001)) |
180 | SDEV_REMOVABLE)((link->flags) & (0x0001))) |
181 | SET(link->quirks, SDEV_NOSYNCCACHE)((link->quirks) |= (0x0010)); |
182 | |
183 | /* |
184 | * Use the subdriver to request information regarding the drive. We |
185 | * cannot use interrupts yet, so the request must specify this. |
186 | */ |
187 | printf("\n"); |
188 | |
189 | scsi_xsh_set(&sc->sc_xsh, link, sdstart); |
190 | |
191 | /* Spin up non-UMASS devices ready or not. */ |
192 | if (!ISSET(link->flags, SDEV_UMASS)((link->flags) & (0x0400))) |
193 | scsi_start(link, SSS_START0x01, sd_autoconf); |
194 | |
195 | /* |
196 | * Some devices (e.g. BlackBerry Pearl) won't admit they have |
197 | * media loaded unless its been locked in. |
198 | */ |
199 | if (ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) |
200 | scsi_prevent(link, PR_PREVENT0x01, sd_autoconf); |
201 | |
202 | /* Check that it is still responding and ok. */ |
203 | error = scsi_test_unit_ready(sc->sc_link, TEST_READY_RETRIES5 * 3, |
204 | sd_autoconf); |
205 | if (error == 0) |
206 | error = sd_get_parms(sc, sd_autoconf); |
207 | |
208 | if (ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) |
209 | scsi_prevent(link, PR_ALLOW0x00, sd_autoconf); |
210 | |
211 | if (error == 0) { |
212 | printf("%s: %lluMB, %u bytes/sector, %llu sectors", |
213 | sc->sc_dev.dv_xname, |
214 | dp->disksize / (1048576 / dp->secsize), dp->secsize, |
215 | dp->disksize); |
216 | if (ISSET(sc->flags, SDF_THIN)((sc->flags) & (0x01))) { |
217 | sortby = BUFQ_FIFO0; |
218 | printf(", thin"); |
219 | } |
220 | if (ISSET(link->flags, SDEV_READONLY)((link->flags) & (0x0004))) |
221 | printf(", readonly"); |
222 | printf("\n"); |
223 | } |
224 | |
225 | /* |
226 | * Initialize disk structures. |
227 | */ |
228 | sc->sc_dk.dk_name = sc->sc_dev.dv_xname; |
229 | bufq_init(&sc->sc_bufq, sortby); |
230 | |
231 | /* |
232 | * Enable write cache by default. |
233 | */ |
234 | memset(&dkc, 0, sizeof(dkc))__builtin_memset((&dkc), (0), (sizeof(dkc))); |
235 | if (sd_ioctl_cache(sc, DIOCGCACHE((unsigned long)0x40000000 | ((sizeof(struct dk_cache) & 0x1fff ) << 16) | ((('d')) << 8) | ((117))), &dkc) == 0 && dkc.wrcache == 0) { |
236 | dkc.wrcache = 1; |
237 | sd_ioctl_cache(sc, DIOCSCACHE((unsigned long)0x80000000 | ((sizeof(struct dk_cache) & 0x1fff ) << 16) | ((('d')) << 8) | ((118))), &dkc); |
238 | } |
239 | |
240 | /* Attach disk. */ |
241 | disk_attach(&sc->sc_dev, &sc->sc_dk); |
242 | } |
243 | |
244 | int |
245 | sdactivate(struct device *self, int act) |
246 | { |
247 | struct scsi_link *link; |
248 | struct sd_softc *sc = (struct sd_softc *)self; |
249 | |
250 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
251 | return ENXIO6; |
252 | link = sc->sc_link; |
253 | |
254 | switch (act) { |
255 | case DVACT_SUSPEND3: |
256 | /* |
257 | * We flush the cache, since we our next step before |
258 | * DVACT_POWERDOWN might be a hibernate operation. |
259 | */ |
260 | if (ISSET(sc->flags, SDF_DIRTY)((sc->flags) & (0x20))) |
261 | sd_flush(sc, SCSI_AUTOCONF0x00003); |
262 | break; |
263 | case DVACT_POWERDOWN6: |
264 | /* |
265 | * Stop the disk. Stopping the disk should flush the |
266 | * cache, but we are paranoid so we flush the cache |
267 | * first. We're cold at this point, so we poll for |
268 | * completion. |
269 | */ |
270 | if (ISSET(sc->flags, SDF_DIRTY)((sc->flags) & (0x20))) |
271 | sd_flush(sc, SCSI_AUTOCONF0x00003); |
272 | if (ISSET(boothowto, RB_POWERDOWN)((boothowto) & (0x01000))) |
273 | scsi_start(link, SSS_STOP0x00, |
274 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | |
275 | SCSI_IGNORE_NOT_READY0x00040 | SCSI_AUTOCONF0x00003); |
276 | break; |
277 | case DVACT_RESUME4: |
278 | scsi_start(link, SSS_START0x01, |
279 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | SCSI_AUTOCONF0x00003); |
280 | break; |
281 | case DVACT_DEACTIVATE1: |
282 | SET(sc->flags, SDF_DYING)((sc->flags) |= (0x40)); |
283 | scsi_xsh_del(&sc->sc_xsh); |
284 | break; |
285 | } |
286 | return 0; |
287 | } |
288 | |
289 | int |
290 | sddetach(struct device *self, int flags) |
291 | { |
292 | struct sd_softc *sc = (struct sd_softc *)self; |
293 | |
294 | bufq_drain(&sc->sc_bufq); |
295 | |
296 | disk_gone(sdopen, self->dv_unit); |
297 | |
298 | /* Detach disk. */ |
299 | bufq_destroy(&sc->sc_bufq); |
300 | disk_detach(&sc->sc_dk); |
301 | |
302 | return 0; |
303 | } |
304 | |
305 | /* |
306 | * Open the device. Make sure the partition info is as up-to-date as can be. |
307 | */ |
308 | int |
309 | sdopen(dev_t dev, int flag, int fmt, struct proc *p) |
310 | { |
311 | struct scsi_link *link; |
312 | struct sd_softc *sc; |
313 | int error = 0, part, rawopen, unit; |
314 | |
315 | unit = DISKUNIT(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) / 16); |
316 | part = DISKPART(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) % 16); |
317 | |
318 | rawopen = (part == RAW_PART2) && (fmt == S_IFCHR0020000); |
319 | |
320 | sc = sdlookup(unit)(struct sd_softc *)disk_lookup(&sd_cd, (unit)); |
321 | if (sc == NULL((void *)0)) |
322 | return ENXIO6; |
323 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
324 | device_unref(&sc->sc_dev); |
325 | return ENXIO6; |
326 | } |
327 | link = sc->sc_link; |
328 | |
329 | SC_DEBUG(link, SDEV_DB1, |
330 | ("sdopen: dev=0x%x (unit %d (of %d), partition %d)\n", dev, unit, |
331 | sd_cd.cd_ndevs, part)); |
332 | |
333 | if (ISSET(flag, FWRITE)((flag) & (0x0002)) && ISSET(link->flags, SDEV_READONLY)((link->flags) & (0x0004))) { |
334 | device_unref(&sc->sc_dev); |
335 | return EACCES13; |
336 | } |
337 | if ((error = disk_lock(&sc->sc_dk)) != 0) { |
338 | device_unref(&sc->sc_dev); |
339 | return error; |
340 | } |
341 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
342 | error = ENXIO6; |
343 | goto die; |
344 | } |
345 | |
346 | if (sc->sc_dk.dk_openmask != 0) { |
347 | /* |
348 | * If any partition is open, but the disk has been invalidated, |
349 | * disallow further opens of non-raw partition. |
350 | */ |
351 | if (!ISSET(link->flags, SDEV_MEDIA_LOADED)((link->flags) & (0x0002))) { |
352 | if (rawopen) |
353 | goto out; |
354 | error = EIO5; |
355 | goto bad; |
356 | } |
357 | } else { |
358 | /* Spin up non-UMASS devices ready or not. */ |
359 | if (!ISSET(link->flags, SDEV_UMASS)((link->flags) & (0x0400))) |
360 | scsi_start(link, SSS_START0x01, (rawopen ? SCSI_SILENT0x00020 : |
361 | 0) | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | |
362 | SCSI_IGNORE_MEDIA_CHANGE0x00080); |
363 | |
364 | /* |
365 | * Use sd_interpret_sense() for sense errors. |
366 | * |
367 | * But only after spinning the disk up! Just in case a broken |
368 | * device returns "Initialization command required." and causes |
369 | * a loop of scsi_start() calls. |
370 | */ |
371 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
372 | error = ENXIO6; |
373 | goto die; |
374 | } |
375 | SET(link->flags, SDEV_OPEN)((link->flags) |= (0x0008)); |
376 | |
377 | /* |
378 | * Try to prevent the unloading of a removable device while |
379 | * it's open. But allow the open to proceed if the device can't |
380 | * be locked in. |
381 | */ |
382 | if (ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) { |
383 | scsi_prevent(link, PR_PREVENT0x01, SCSI_SILENT0x00020 | |
384 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | |
385 | SCSI_IGNORE_MEDIA_CHANGE0x00080); |
386 | } |
387 | |
388 | /* Check that it is still responding and ok. */ |
389 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
390 | error = ENXIO6; |
391 | goto die; |
392 | } |
393 | error = scsi_test_unit_ready(link, |
394 | TEST_READY_RETRIES5, SCSI_SILENT0x00020 | |
395 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | SCSI_IGNORE_MEDIA_CHANGE0x00080); |
396 | if (error) { |
397 | if (rawopen) { |
398 | error = 0; |
Value stored to 'error' is never read | |
399 | goto out; |
400 | } else |
401 | goto bad; |
402 | } |
403 | |
404 | /* Load the physical device parameters. */ |
405 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
406 | error = ENXIO6; |
407 | goto die; |
408 | } |
409 | SET(link->flags, SDEV_MEDIA_LOADED)((link->flags) |= (0x0002)); |
410 | if (sd_get_parms(sc, (rawopen ? SCSI_SILENT0x00020 : 0)) == -1) { |
411 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
412 | error = ENXIO6; |
413 | goto die; |
414 | } |
415 | CLR(link->flags, SDEV_MEDIA_LOADED)((link->flags) &= ~(0x0002)); |
416 | error = ENXIO6; |
417 | goto bad; |
418 | } |
419 | SC_DEBUG(link, SDEV_DB3, ("Params loaded\n")); |
420 | |
421 | /* Load the partition info if not already loaded. */ |
422 | error = sdgetdisklabel(dev, sc, sc->sc_dk.dk_label, 0); |
423 | if (error == EIO5 || error == ENXIO6) |
424 | goto bad; |
425 | SC_DEBUG(link, SDEV_DB3, ("Disklabel loaded\n")); |
426 | } |
427 | |
428 | out: |
429 | if ((error = disk_openpart(&sc->sc_dk, part, fmt, 1)) != 0) |
430 | goto bad; |
431 | |
432 | SC_DEBUG(link, SDEV_DB3, ("open complete\n")); |
433 | |
434 | /* It's OK to fall through because dk_openmask is now non-zero. */ |
435 | bad: |
436 | if (sc->sc_dk.dk_openmask == 0) { |
437 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
438 | error = ENXIO6; |
439 | goto die; |
440 | } |
441 | if (ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) |
442 | scsi_prevent(link, PR_ALLOW0x00, SCSI_SILENT0x00020 | |
443 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | |
444 | SCSI_IGNORE_MEDIA_CHANGE0x00080); |
445 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
446 | error = ENXIO6; |
447 | goto die; |
448 | } |
449 | CLR(link->flags, SDEV_OPEN | SDEV_MEDIA_LOADED)((link->flags) &= ~(0x0008 | 0x0002)); |
450 | } |
451 | |
452 | die: |
453 | disk_unlock(&sc->sc_dk); |
454 | device_unref(&sc->sc_dev); |
455 | return error; |
456 | } |
457 | |
458 | /* |
459 | * Close the device. Only called if we are the last occurrence of an open |
460 | * device. Convenient now but usually a pain. |
461 | */ |
462 | int |
463 | sdclose(dev_t dev, int flag, int fmt, struct proc *p) |
464 | { |
465 | struct scsi_link *link; |
466 | struct sd_softc *sc; |
467 | int part = DISKPART(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) % 16); |
468 | int error = 0; |
469 | |
470 | sc = sdlookup(DISKUNIT(dev))(struct sd_softc *)disk_lookup(&sd_cd, ((((unsigned)((dev ) & 0xff) | (((dev) & 0xffff0000) >> 8)) / 16)) ); |
471 | if (sc == NULL((void *)0)) |
472 | return ENXIO6; |
473 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
474 | device_unref(&sc->sc_dev); |
475 | return ENXIO6; |
476 | } |
477 | link = sc->sc_link; |
478 | |
479 | disk_lock_nointr(&sc->sc_dk); |
480 | |
481 | disk_closepart(&sc->sc_dk, part, fmt); |
482 | |
483 | if ((ISSET(flag, FWRITE)((flag) & (0x0002)) || sc->sc_dk.dk_openmask == 0) && |
484 | ISSET(sc->flags, SDF_DIRTY)((sc->flags) & (0x20))) |
485 | sd_flush(sc, 0); |
486 | |
487 | if (sc->sc_dk.dk_openmask == 0) { |
488 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
489 | error = ENXIO6; |
490 | goto die; |
491 | } |
492 | if (ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) |
493 | scsi_prevent(link, PR_ALLOW0x00, |
494 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | |
495 | SCSI_IGNORE_NOT_READY0x00040 | SCSI_SILENT0x00020); |
496 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
497 | error = ENXIO6; |
498 | goto die; |
499 | } |
500 | CLR(link->flags, SDEV_OPEN | SDEV_MEDIA_LOADED)((link->flags) &= ~(0x0008 | 0x0002)); |
501 | |
502 | if (ISSET(link->flags, SDEV_EJECTING)((link->flags) & (0x0100))) { |
503 | scsi_start(link, SSS_STOP0x00|SSS_LOEJ0x02, 0); |
504 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
505 | error = ENXIO6; |
506 | goto die; |
507 | } |
508 | CLR(link->flags, SDEV_EJECTING)((link->flags) &= ~(0x0100)); |
509 | } |
510 | |
511 | scsi_xsh_del(&sc->sc_xsh); |
512 | } |
513 | |
514 | die: |
515 | disk_unlock(&sc->sc_dk); |
516 | device_unref(&sc->sc_dev); |
517 | return error; |
518 | } |
519 | |
520 | /* |
521 | * Actually translate the requested transfer into one the physical driver |
522 | * can understand. The transfer is described by a buf and will include |
523 | * only one physical transfer. |
524 | */ |
525 | void |
526 | sdstrategy(struct buf *bp) |
527 | { |
528 | struct scsi_link *link; |
529 | struct sd_softc *sc; |
530 | int s; |
531 | |
532 | sc = sdlookup(DISKUNIT(bp->b_dev))(struct sd_softc *)disk_lookup(&sd_cd, ((((unsigned)((bp-> b_dev) & 0xff) | (((bp->b_dev) & 0xffff0000) >> 8)) / 16))); |
533 | if (sc == NULL((void *)0)) { |
534 | bp->b_error = ENXIO6; |
535 | goto bad; |
536 | } |
537 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
538 | bp->b_error = ENXIO6; |
539 | goto bad; |
540 | } |
541 | link = sc->sc_link; |
542 | |
543 | SC_DEBUG(link, SDEV_DB2, ("sdstrategy: %ld bytes @ blk %lld\n", |
544 | bp->b_bcount, (long long)bp->b_blkno)); |
545 | /* |
546 | * If the device has been made invalid, error out. |
547 | */ |
548 | if (!ISSET(link->flags, SDEV_MEDIA_LOADED)((link->flags) & (0x0002))) { |
549 | if (ISSET(link->flags, SDEV_OPEN)((link->flags) & (0x0008))) |
550 | bp->b_error = EIO5; |
551 | else |
552 | bp->b_error = ENODEV19; |
553 | goto bad; |
554 | } |
555 | |
556 | /* Validate the request. */ |
557 | if (bounds_check_with_label(bp, sc->sc_dk.dk_label) == -1) |
558 | goto done; |
559 | |
560 | /* Place it in the queue of disk activities for this disk. */ |
561 | bufq_queue(&sc->sc_bufq, bp); |
562 | |
563 | /* |
564 | * Tell the device to get going on the transfer if it's |
565 | * not doing anything, otherwise just wait for completion |
566 | */ |
567 | scsi_xsh_add(&sc->sc_xsh); |
568 | |
569 | device_unref(&sc->sc_dev); |
570 | return; |
571 | |
572 | bad: |
573 | SET(bp->b_flags, B_ERROR)((bp->b_flags) |= (0x00000400)); |
574 | bp->b_resid = bp->b_bcount; |
575 | done: |
576 | s = splbio()splraise(0x3); |
577 | biodone(bp); |
578 | splx(s)spllower(s); |
579 | if (sc != NULL((void *)0)) |
580 | device_unref(&sc->sc_dev); |
581 | } |
582 | |
583 | int |
584 | sd_cmd_rw6(struct scsi_generic *generic, int read, u_int64_t secno, |
585 | u_int32_t nsecs) |
586 | { |
587 | struct scsi_rw *cmd = (struct scsi_rw *)generic; |
588 | |
589 | cmd->opcode = read ? READ_COMMAND0x08 : WRITE_COMMAND0x0a; |
590 | _lto3b(secno, cmd->addr); |
591 | cmd->length = nsecs; |
592 | |
593 | return sizeof(*cmd); |
594 | } |
595 | |
596 | int |
597 | sd_cmd_rw10(struct scsi_generic *generic, int read, u_int64_t secno, |
598 | u_int32_t nsecs) |
599 | { |
600 | struct scsi_rw_10 *cmd = (struct scsi_rw_10 *)generic; |
601 | |
602 | cmd->opcode = read ? READ_100x28 : WRITE_100x2a; |
603 | _lto4b(secno, cmd->addr); |
604 | _lto2b(nsecs, cmd->length); |
605 | |
606 | return sizeof(*cmd); |
607 | } |
608 | |
609 | int |
610 | sd_cmd_rw12(struct scsi_generic *generic, int read, u_int64_t secno, |
611 | u_int32_t nsecs) |
612 | { |
613 | struct scsi_rw_12 *cmd = (struct scsi_rw_12 *)generic; |
614 | |
615 | cmd->opcode = read ? READ_120xa8 : WRITE_120xaa; |
616 | _lto4b(secno, cmd->addr); |
617 | _lto4b(nsecs, cmd->length); |
618 | |
619 | return sizeof(*cmd); |
620 | } |
621 | |
622 | int |
623 | sd_cmd_rw16(struct scsi_generic *generic, int read, u_int64_t secno, |
624 | u_int32_t nsecs) |
625 | { |
626 | struct scsi_rw_16 *cmd = (struct scsi_rw_16 *)generic; |
627 | |
628 | cmd->opcode = read ? READ_160x88 : WRITE_160x8a; |
629 | _lto8b(secno, cmd->addr); |
630 | _lto4b(nsecs, cmd->length); |
631 | |
632 | return sizeof(*cmd); |
633 | } |
634 | |
635 | /* |
636 | * sdstart looks to see if there is a buf waiting for the device |
637 | * and that the device is not already busy. If both are true, |
638 | * It dequeues the buf and creates a scsi command to perform the |
639 | * transfer in the buf. The transfer request will call scsi_done |
640 | * on completion, which will in turn call this routine again |
641 | * so that the next queued transfer is performed. |
642 | * The bufs are queued by the strategy routine (sdstrategy) |
643 | * |
644 | * This routine is also called after other non-queued requests |
645 | * have been made of the scsi driver, to ensure that the queue |
646 | * continues to be drained. |
647 | */ |
648 | void |
649 | sdstart(struct scsi_xfer *xs) |
650 | { |
651 | struct scsi_link *link = xs->sc_link; |
652 | struct sd_softc *sc = link->device_softc; |
653 | struct buf *bp; |
654 | struct partition *p; |
655 | u_int64_t secno; |
656 | u_int32_t nsecs; |
657 | int read; |
658 | |
659 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
660 | scsi_xs_put(xs); |
661 | return; |
662 | } |
663 | if (!ISSET(link->flags, SDEV_MEDIA_LOADED)((link->flags) & (0x0002))) { |
664 | bufq_drain(&sc->sc_bufq); |
665 | scsi_xs_put(xs); |
666 | return; |
667 | } |
668 | |
669 | bp = bufq_dequeue(&sc->sc_bufq); |
670 | if (bp == NULL((void *)0)) { |
671 | scsi_xs_put(xs); |
672 | return; |
673 | } |
674 | read = ISSET(bp->b_flags, B_READ)((bp->b_flags) & (0x00008000)); |
675 | |
676 | SET(xs->flags, (read ? SCSI_DATA_IN : SCSI_DATA_OUT))((xs->flags) |= ((read ? 0x00800 : 0x01000))); |
677 | xs->timeout = 60000; |
678 | xs->data = bp->b_data; |
679 | xs->datalen = bp->b_bcount; |
680 | xs->done = sd_buf_done; |
681 | xs->cookie = bp; |
682 | xs->bp = bp; |
683 | |
684 | p = &sc->sc_dk.dk_label->d_partitions[DISKPART(bp->b_dev)(((unsigned)((bp->b_dev) & 0xff) | (((bp->b_dev) & 0xffff0000) >> 8)) % 16)]; |
685 | secno = DL_GETPOFFSET(p)(((u_int64_t)(p)->p_offseth << 32) + (p)->p_offset ) + DL_BLKTOSEC(sc->sc_dk.dk_label, bp->b_blkno)((bp->b_blkno) / ((sc->sc_dk.dk_label)->d_secsize / ( 1 << 9))); |
686 | nsecs = howmany(bp->b_bcount, sc->sc_dk.dk_label->d_secsize)(((bp->b_bcount) + ((sc->sc_dk.dk_label->d_secsize) - 1)) / (sc->sc_dk.dk_label->d_secsize)); |
687 | |
688 | if (!ISSET(link->flags, SDEV_ATAPI | SDEV_UMASS)((link->flags) & (0x0200 | 0x0400)) && |
689 | (SID_ANSII_REV(&link->inqdata)((&link->inqdata)->version & 0x07) < SCSI_REV_20x02) && |
690 | ((secno & 0x1fffff) == secno) && |
691 | ((nsecs & 0xff) == nsecs)) |
692 | xs->cmdlen = sd_cmd_rw6(&xs->cmd, read, secno, nsecs); |
693 | |
694 | else if (sc->params.disksize > UINT32_MAX0xffffffffU) |
695 | xs->cmdlen = sd_cmd_rw16(&xs->cmd, read, secno, nsecs); |
696 | |
697 | else if (nsecs <= UINT16_MAX0xffff) |
698 | xs->cmdlen = sd_cmd_rw10(&xs->cmd, read, secno, nsecs); |
699 | |
700 | else |
701 | xs->cmdlen = sd_cmd_rw12(&xs->cmd, read, secno, nsecs); |
702 | |
703 | disk_busy(&sc->sc_dk); |
704 | if (!read) |
705 | SET(sc->flags, SDF_DIRTY)((sc->flags) |= (0x20)); |
706 | scsi_xs_exec(xs); |
707 | |
708 | /* Move onto the next io. */ |
709 | if (bufq_peek(&sc->sc_bufq)) |
710 | scsi_xsh_add(&sc->sc_xsh); |
711 | } |
712 | |
713 | void |
714 | sd_buf_done(struct scsi_xfer *xs) |
715 | { |
716 | struct sd_softc *sc = xs->sc_link->device_softc; |
717 | struct buf *bp = xs->cookie; |
718 | int error, s; |
719 | |
720 | switch (xs->error) { |
721 | case XS_NOERROR0: |
722 | bp->b_error = 0; |
723 | CLR(bp->b_flags, B_ERROR)((bp->b_flags) &= ~(0x00000400)); |
724 | bp->b_resid = xs->resid; |
725 | break; |
726 | |
727 | case XS_SENSE1: |
728 | case XS_SHORTSENSE6: |
729 | SC_DEBUG_SENSE(xs); |
730 | error = sd_interpret_sense(xs); |
731 | if (error == 0) { |
732 | bp->b_error = 0; |
733 | CLR(bp->b_flags, B_ERROR)((bp->b_flags) &= ~(0x00000400)); |
734 | bp->b_resid = xs->resid; |
735 | break; |
736 | } |
737 | if (error != ERESTART-1) { |
738 | bp->b_error = error; |
739 | SET(bp->b_flags, B_ERROR)((bp->b_flags) |= (0x00000400)); |
740 | xs->retries = 0; |
741 | } |
742 | goto retry; |
743 | |
744 | case XS_BUSY5: |
745 | if (xs->retries) { |
746 | if (scsi_delay(xs, 1) != ERESTART-1) |
747 | xs->retries = 0; |
748 | } |
749 | goto retry; |
750 | |
751 | case XS_TIMEOUT4: |
752 | retry: |
753 | if (xs->retries--) { |
754 | scsi_xs_exec(xs); |
755 | return; |
756 | } |
757 | /* FALLTHROUGH */ |
758 | |
759 | default: |
760 | if (bp->b_error == 0) |
761 | bp->b_error = EIO5; |
762 | SET(bp->b_flags, B_ERROR)((bp->b_flags) |= (0x00000400)); |
763 | bp->b_resid = bp->b_bcount; |
764 | break; |
765 | } |
766 | |
767 | disk_unbusy(&sc->sc_dk, bp->b_bcount - xs->resid, bp->b_blkno, |
768 | bp->b_flags & B_READ0x00008000); |
769 | |
770 | s = splbio()splraise(0x3); |
771 | biodone(bp); |
772 | splx(s)spllower(s); |
773 | scsi_xs_put(xs); |
774 | } |
775 | |
776 | void |
777 | sdminphys(struct buf *bp) |
778 | { |
779 | struct scsi_link *link; |
780 | struct sd_softc *sc; |
781 | long max; |
782 | |
783 | sc = sdlookup(DISKUNIT(bp->b_dev))(struct sd_softc *)disk_lookup(&sd_cd, ((((unsigned)((bp-> b_dev) & 0xff) | (((bp->b_dev) & 0xffff0000) >> 8)) / 16))); |
784 | if (sc == NULL((void *)0)) |
785 | return; /* XXX - right way to fail this? */ |
786 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
787 | device_unref(&sc->sc_dev); |
788 | return; |
789 | } |
790 | link = sc->sc_link; |
791 | |
792 | /* |
793 | * If the device is ancient, we want to make sure that |
794 | * the transfer fits into a 6-byte cdb. |
795 | * |
796 | * XXX Note that the SCSI-I spec says that 256-block transfers |
797 | * are allowed in a 6-byte read/write, and are specified |
798 | * by setting the "length" to 0. However, we're conservative |
799 | * here, allowing only 255-block transfers in case an |
800 | * ancient device gets confused by length == 0. A length of 0 |
801 | * in a 10-byte read/write actually means 0 blocks. |
802 | */ |
803 | if (!ISSET(link->flags, SDEV_ATAPI | SDEV_UMASS)((link->flags) & (0x0200 | 0x0400)) && |
804 | SID_ANSII_REV(&link->inqdata)((&link->inqdata)->version & 0x07) < SCSI_REV_20x02) { |
805 | max = sc->sc_dk.dk_label->d_secsize * 0xff; |
806 | |
807 | if (bp->b_bcount > max) |
808 | bp->b_bcount = max; |
809 | } |
810 | |
811 | if (link->bus->sb_adapter->dev_minphys != NULL((void *)0)) |
812 | (*link->bus->sb_adapter->dev_minphys)(bp, link); |
813 | else |
814 | minphys(bp); |
815 | |
816 | device_unref(&sc->sc_dev); |
817 | } |
818 | |
819 | int |
820 | sdread(dev_t dev, struct uio *uio, int ioflag) |
821 | { |
822 | return physio(sdstrategy, dev, B_READ0x00008000, sdminphys, uio); |
823 | } |
824 | |
825 | int |
826 | sdwrite(dev_t dev, struct uio *uio, int ioflag) |
827 | { |
828 | return physio(sdstrategy, dev, B_WRITE0x00000000, sdminphys, uio); |
829 | } |
830 | |
831 | /* |
832 | * Perform special action on behalf of the user. Knows about the internals of |
833 | * this device |
834 | */ |
835 | int |
836 | sdioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p) |
837 | { |
838 | struct scsi_link *link; |
839 | struct sd_softc *sc; |
840 | struct disklabel *lp; |
841 | int error = 0; |
842 | int part = DISKPART(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) % 16); |
843 | |
844 | sc = sdlookup(DISKUNIT(dev))(struct sd_softc *)disk_lookup(&sd_cd, ((((unsigned)((dev ) & 0xff) | (((dev) & 0xffff0000) >> 8)) / 16)) ); |
845 | if (sc == NULL((void *)0)) |
846 | return ENXIO6; |
847 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
848 | device_unref(&sc->sc_dev); |
849 | return ENXIO6; |
850 | } |
851 | link = sc->sc_link; |
852 | |
853 | SC_DEBUG(link, SDEV_DB2, ("sdioctl 0x%lx\n", cmd)); |
854 | |
855 | /* |
856 | * If the device is not valid, abandon ship. |
857 | */ |
858 | if (!ISSET(link->flags, SDEV_MEDIA_LOADED)((link->flags) & (0x0002))) { |
859 | switch (cmd) { |
860 | case DIOCLOCK((unsigned long)0x80000000 | ((sizeof(int) & 0x1fff) << 16) | ((('d')) << 8) | ((113))): |
861 | case DIOCEJECT((unsigned long)0x20000000 | ((0 & 0x1fff) << 16) | ((('d')) << 8) | ((112))): |
862 | case SCIOCIDENTIFY((unsigned long)0x40000000 | ((sizeof(struct scsi_addr) & 0x1fff) << 16) | ((('Q')) << 8) | ((9))): |
863 | case SCIOCCOMMAND(((unsigned long)0x80000000|(unsigned long)0x40000000) | ((sizeof (scsireq_t) & 0x1fff) << 16) | ((('Q')) << 8) | ((1))): |
864 | case SCIOCDEBUG((unsigned long)0x80000000 | ((sizeof(int) & 0x1fff) << 16) | ((('Q')) << 8) | ((2))): |
865 | if (part == RAW_PART2) |
866 | break; |
867 | /* FALLTHROUGH */ |
868 | default: |
869 | if (!ISSET(link->flags, SDEV_OPEN)((link->flags) & (0x0008))) { |
870 | error = ENODEV19; |
871 | goto exit; |
872 | } else { |
873 | error = EIO5; |
874 | goto exit; |
875 | } |
876 | } |
877 | } |
878 | |
879 | switch (cmd) { |
880 | case DIOCRLDINFO((unsigned long)0x20000000 | ((0 & 0x1fff) << 16) | ((('d')) << 8) | ((115))): |
881 | lp = malloc(sizeof(*lp), M_TEMP127, M_WAITOK0x0001); |
882 | sdgetdisklabel(dev, sc, lp, 0); |
883 | memcpy(sc->sc_dk.dk_label, lp, sizeof(*lp))__builtin_memcpy((sc->sc_dk.dk_label), (lp), (sizeof(*lp)) ); |
884 | free(lp, M_TEMP127, sizeof(*lp)); |
885 | goto exit; |
886 | |
887 | case DIOCGPDINFO((unsigned long)0x40000000 | ((sizeof(struct disklabel) & 0x1fff) << 16) | ((('d')) << 8) | ((114))): |
888 | sdgetdisklabel(dev, sc, (struct disklabel *)addr, 1); |
889 | goto exit; |
890 | |
891 | case DIOCGDINFO((unsigned long)0x40000000 | ((sizeof(struct disklabel) & 0x1fff) << 16) | ((('d')) << 8) | ((101))): |
892 | *(struct disklabel *)addr = *(sc->sc_dk.dk_label); |
893 | goto exit; |
894 | |
895 | case DIOCGPART((unsigned long)0x80000000 | ((sizeof(struct partinfo) & 0x1fff ) << 16) | ((('d')) << 8) | ((104))): |
896 | ((struct partinfo *)addr)->disklab = sc->sc_dk.dk_label; |
897 | ((struct partinfo *)addr)->part = |
898 | &sc->sc_dk.dk_label->d_partitions[DISKPART(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) % 16)]; |
899 | goto exit; |
900 | |
901 | case DIOCWDINFO((unsigned long)0x80000000 | ((sizeof(struct disklabel) & 0x1fff) << 16) | ((('d')) << 8) | ((103))): |
902 | case DIOCSDINFO((unsigned long)0x80000000 | ((sizeof(struct disklabel) & 0x1fff) << 16) | ((('d')) << 8) | ((102))): |
903 | if (!ISSET(flag, FWRITE)((flag) & (0x0002))) { |
904 | error = EBADF9; |
905 | goto exit; |
906 | } |
907 | |
908 | if ((error = disk_lock(&sc->sc_dk)) != 0) |
909 | goto exit; |
910 | |
911 | error = setdisklabel(sc->sc_dk.dk_label, |
912 | (struct disklabel *)addr, sc->sc_dk.dk_openmask); |
913 | if (error == 0) { |
914 | if (cmd == DIOCWDINFO((unsigned long)0x80000000 | ((sizeof(struct disklabel) & 0x1fff) << 16) | ((('d')) << 8) | ((103)))) |
915 | error = writedisklabel(DISKLABELDEV(dev)((((dev_t)((((((((unsigned)(dev) >> 8) & 0xff))) & 0xff) << 8) | (((((((((unsigned)((dev) & 0xff) | ( ((dev) & 0xffff0000) >> 8)) / 16))) * 16) + ((2)))) & 0xff) | ((((((((((unsigned)((dev) & 0xff) | (((dev ) & 0xffff0000) >> 8)) / 16))) * 16) + ((2)))) & 0xffff00) << 8))))), |
916 | sdstrategy, sc->sc_dk.dk_label); |
917 | } |
918 | |
919 | disk_unlock(&sc->sc_dk); |
920 | goto exit; |
921 | |
922 | case DIOCLOCK((unsigned long)0x80000000 | ((sizeof(int) & 0x1fff) << 16) | ((('d')) << 8) | ((113))): |
923 | error = scsi_prevent(link, |
924 | (*(int *)addr) ? PR_PREVENT0x01 : PR_ALLOW0x00, 0); |
925 | goto exit; |
926 | |
927 | case MTIOCTOP((unsigned long)0x80000000 | ((sizeof(struct mtop) & 0x1fff ) << 16) | ((('m')) << 8) | ((1))): |
928 | if (((struct mtop *)addr)->mt_op != MTOFFL6) { |
929 | error = EIO5; |
930 | goto exit; |
931 | } |
932 | /* FALLTHROUGH */ |
933 | case DIOCEJECT((unsigned long)0x20000000 | ((0 & 0x1fff) << 16) | ((('d')) << 8) | ((112))): |
934 | if (!ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) { |
935 | error = ENOTTY25; |
936 | goto exit; |
937 | } |
938 | SET(link->flags, SDEV_EJECTING)((link->flags) |= (0x0100)); |
939 | goto exit; |
940 | |
941 | case DIOCINQ((unsigned long)0x40000000 | ((sizeof(struct dk_inquiry) & 0x1fff) << 16) | ((('d')) << 8) | ((116))): |
942 | error = scsi_do_ioctl(link, cmd, addr, flag); |
943 | if (error == ENOTTY25) |
944 | error = sd_ioctl_inquiry(sc, |
945 | (struct dk_inquiry *)addr); |
946 | goto exit; |
947 | |
948 | case DIOCSCACHE((unsigned long)0x80000000 | ((sizeof(struct dk_cache) & 0x1fff ) << 16) | ((('d')) << 8) | ((118))): |
949 | if (!ISSET(flag, FWRITE)((flag) & (0x0002))) { |
950 | error = EBADF9; |
951 | goto exit; |
952 | } |
953 | /* FALLTHROUGH */ |
954 | case DIOCGCACHE((unsigned long)0x40000000 | ((sizeof(struct dk_cache) & 0x1fff ) << 16) | ((('d')) << 8) | ((117))): |
955 | error = sd_ioctl_cache(sc, cmd, (struct dk_cache *)addr); |
956 | goto exit; |
957 | |
958 | case DIOCCACHESYNC((unsigned long)0x80000000 | ((sizeof(int) & 0x1fff) << 16) | ((('d')) << 8) | ((120))): |
959 | if (!ISSET(flag, FWRITE)((flag) & (0x0002))) { |
960 | error = EBADF9; |
961 | goto exit; |
962 | } |
963 | if (ISSET(sc->flags, SDF_DIRTY)((sc->flags) & (0x20)) || *(int *)addr != 0) |
964 | error = sd_flush(sc, 0); |
965 | goto exit; |
966 | |
967 | default: |
968 | if (part != RAW_PART2) { |
969 | error = ENOTTY25; |
970 | goto exit; |
971 | } |
972 | error = scsi_do_ioctl(link, cmd, addr, flag); |
973 | } |
974 | |
975 | exit: |
976 | device_unref(&sc->sc_dev); |
977 | return error; |
978 | } |
979 | |
980 | int |
981 | sd_ioctl_inquiry(struct sd_softc *sc, struct dk_inquiry *di) |
982 | { |
983 | struct scsi_link *link; |
984 | struct scsi_vpd_serial *vpd; |
985 | |
986 | vpd = dma_alloc(sizeof(*vpd), PR_WAITOK0x0001 | PR_ZERO0x0008); |
987 | |
988 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
989 | dma_free(vpd, sizeof(*vpd)); |
990 | return ENXIO6; |
991 | } |
992 | link = sc->sc_link; |
993 | |
994 | bzero(di, sizeof(struct dk_inquiry))__builtin_bzero((di), (sizeof(struct dk_inquiry))); |
995 | scsi_strvis(di->vendor, link->inqdata.vendor, |
996 | sizeof(link->inqdata.vendor)); |
997 | scsi_strvis(di->product, link->inqdata.product, |
998 | sizeof(link->inqdata.product)); |
999 | scsi_strvis(di->revision, link->inqdata.revision, |
1000 | sizeof(link->inqdata.revision)); |
1001 | |
1002 | /* the serial vpd page is optional */ |
1003 | if (scsi_inquire_vpd(link, vpd, sizeof(*vpd), SI_PG_SERIAL0x80, 0) == 0) |
1004 | scsi_strvis(di->serial, vpd->serial, sizeof(vpd->serial)); |
1005 | else |
1006 | strlcpy(di->serial, "(unknown)", sizeof(vpd->serial)); |
1007 | |
1008 | dma_free(vpd, sizeof(*vpd)); |
1009 | return 0; |
1010 | } |
1011 | |
1012 | int |
1013 | sd_ioctl_cache(struct sd_softc *sc, long cmd, struct dk_cache *dkc) |
1014 | { |
1015 | struct scsi_link *link; |
1016 | union scsi_mode_sense_buf *buf; |
1017 | struct page_caching_mode *mode = NULL((void *)0); |
1018 | u_int wrcache, rdcache; |
1019 | int big, rv; |
1020 | |
1021 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
1022 | return ENXIO6; |
1023 | link = sc->sc_link; |
1024 | |
1025 | if (ISSET(link->flags, SDEV_UMASS)((link->flags) & (0x0400))) |
1026 | return EOPNOTSUPP45; |
1027 | |
1028 | /* See if the adapter has special handling. */ |
1029 | rv = scsi_do_ioctl(link, cmd, (caddr_t)dkc, 0); |
1030 | if (rv != ENOTTY25) |
1031 | return rv; |
1032 | |
1033 | buf = dma_alloc(sizeof(*buf), PR_WAITOK0x0001); |
1034 | if (buf == NULL((void *)0)) |
1035 | return ENOMEM12; |
1036 | |
1037 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1038 | rv = ENXIO6; |
1039 | goto done; |
1040 | } |
1041 | rv = scsi_do_mode_sense(link, PAGE_CACHING_MODE8, buf, (void **)&mode, |
1042 | sizeof(*mode) - 4, scsi_autoconf | SCSI_SILENT0x00020, &big); |
1043 | if (rv == 0 && mode == NULL((void *)0)) |
1044 | rv = EIO5; |
1045 | if (rv != 0) |
1046 | goto done; |
1047 | |
1048 | wrcache = (ISSET(mode->flags, PG_CACHE_FL_WCE)((mode->flags) & ((1<<2))) ? 1 : 0); |
1049 | rdcache = (ISSET(mode->flags, PG_CACHE_FL_RCD)((mode->flags) & ((1<<0))) ? 0 : 1); |
1050 | |
1051 | switch (cmd) { |
1052 | case DIOCGCACHE((unsigned long)0x40000000 | ((sizeof(struct dk_cache) & 0x1fff ) << 16) | ((('d')) << 8) | ((117))): |
1053 | dkc->wrcache = wrcache; |
1054 | dkc->rdcache = rdcache; |
1055 | break; |
1056 | |
1057 | case DIOCSCACHE((unsigned long)0x80000000 | ((sizeof(struct dk_cache) & 0x1fff ) << 16) | ((('d')) << 8) | ((118))): |
1058 | if (dkc->wrcache == wrcache && dkc->rdcache == rdcache) |
1059 | break; |
1060 | |
1061 | if (dkc->wrcache) |
1062 | SET(mode->flags, PG_CACHE_FL_WCE)((mode->flags) |= ((1<<2))); |
1063 | else |
1064 | CLR(mode->flags, PG_CACHE_FL_WCE)((mode->flags) &= ~((1<<2))); |
1065 | |
1066 | if (dkc->rdcache) |
1067 | CLR(mode->flags, PG_CACHE_FL_RCD)((mode->flags) &= ~((1<<0))); |
1068 | else |
1069 | SET(mode->flags, PG_CACHE_FL_RCD)((mode->flags) |= ((1<<0))); |
1070 | |
1071 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1072 | rv = ENXIO6; |
1073 | goto done; |
1074 | } |
1075 | if (big) { |
1076 | rv = scsi_mode_select_big(link, SMS_PF0x10, |
1077 | &buf->hdr_big, scsi_autoconf | SCSI_SILENT0x00020, 20000); |
1078 | } else { |
1079 | rv = scsi_mode_select(link, SMS_PF0x10, |
1080 | &buf->hdr, scsi_autoconf | SCSI_SILENT0x00020, 20000); |
1081 | } |
1082 | break; |
1083 | } |
1084 | |
1085 | done: |
1086 | dma_free(buf, sizeof(*buf)); |
1087 | return rv; |
1088 | } |
1089 | |
1090 | /* |
1091 | * Load the label information on the named device. |
1092 | */ |
1093 | int |
1094 | sdgetdisklabel(dev_t dev, struct sd_softc *sc, struct disklabel *lp, |
1095 | int spoofonly) |
1096 | { |
1097 | char packname[sizeof(lp->d_packname) + 1]; |
1098 | char product[17], vendor[9]; |
1099 | struct scsi_link *link; |
1100 | size_t len; |
1101 | |
1102 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
1103 | return ENXIO6; |
1104 | link = sc->sc_link; |
1105 | |
1106 | bzero(lp, sizeof(struct disklabel))__builtin_bzero((lp), (sizeof(struct disklabel))); |
1107 | |
1108 | lp->d_secsize = sc->params.secsize; |
1109 | lp->d_ntracks = sc->params.heads; |
1110 | lp->d_nsectors = sc->params.sectors; |
1111 | lp->d_ncylinders = sc->params.cyls; |
1112 | lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors; |
1113 | if (lp->d_secpercyl == 0) { |
1114 | lp->d_secpercyl = 100; |
1115 | /* As long as it's not 0 - readdisklabel divides by it. */ |
1116 | } |
1117 | |
1118 | if (ISSET(link->flags, SDEV_UFI)((link->flags) & (0x2000))) { |
1119 | lp->d_type = DTYPE_FLOPPY10; |
1120 | strncpy(lp->d_typename, "USB floppy disk", |
1121 | sizeof(lp->d_typename)); |
1122 | } else { |
1123 | lp->d_type = DTYPE_SCSI4; |
1124 | if ((link->inqdata.device & SID_TYPE0x1f) == T_OPTICAL0x07) |
1125 | strncpy(lp->d_typename, "SCSI optical", |
1126 | sizeof(lp->d_typename)); |
1127 | else |
1128 | strncpy(lp->d_typename, "SCSI disk", |
1129 | sizeof(lp->d_typename)); |
1130 | } |
1131 | |
1132 | /* |
1133 | * Try to fit '<vendor> <product>' into d_packname. If that doesn't fit |
1134 | * then leave out '<vendor> ' and use only as much of '<product>' as |
1135 | * does fit. |
1136 | */ |
1137 | viscpy(vendor, link->inqdata.vendor, 8); |
1138 | viscpy(product, link->inqdata.product, 16); |
1139 | len = snprintf(packname, sizeof(packname), "%s %s", vendor, product); |
1140 | if (len > sizeof(lp->d_packname)) { |
1141 | strlcpy(packname, product, sizeof(packname)); |
1142 | len = strlen(packname); |
1143 | } |
1144 | /* |
1145 | * It is safe to use len as the count of characters to copy because |
1146 | * packname is sizeof(lp->d_packname)+1, the string in packname is |
1147 | * always null terminated and len does not count the terminating null. |
1148 | * d_packname is not a null terminated string. |
1149 | */ |
1150 | memcpy(lp->d_packname, packname, len)__builtin_memcpy((lp->d_packname), (packname), (len)); |
1151 | |
1152 | DL_SETDSIZE(lp, sc->params.disksize)do { u_int64_t __x = (sc->params.disksize); (lp)->d_secperunith = __x >> 32; (lp)->d_secperunit = __x; } while (0); |
1153 | lp->d_version = 1; |
1154 | |
1155 | lp->d_magic = DISKMAGIC((u_int32_t)0x82564557); |
1156 | lp->d_magic2 = DISKMAGIC((u_int32_t)0x82564557); |
1157 | lp->d_checksum = dkcksum(lp); |
1158 | |
1159 | /* |
1160 | * Call the generic disklabel extraction routine. |
1161 | */ |
1162 | return readdisklabel(DISKLABELDEV(dev)((((dev_t)((((((((unsigned)(dev) >> 8) & 0xff))) & 0xff) << 8) | (((((((((unsigned)((dev) & 0xff) | ( ((dev) & 0xffff0000) >> 8)) / 16))) * 16) + ((2)))) & 0xff) | ((((((((((unsigned)((dev) & 0xff) | (((dev ) & 0xffff0000) >> 8)) / 16))) * 16) + ((2)))) & 0xffff00) << 8))))), sdstrategy, lp, spoofonly); |
1163 | } |
1164 | |
1165 | |
1166 | /* |
1167 | * Check Errors. |
1168 | */ |
1169 | int |
1170 | sd_interpret_sense(struct scsi_xfer *xs) |
1171 | { |
1172 | struct scsi_sense_data *sense = &xs->sense; |
1173 | struct scsi_link *link = xs->sc_link; |
1174 | int retval; |
1175 | u_int8_t serr = sense->error_code & SSD_ERRCODE0x7F; |
1176 | |
1177 | /* |
1178 | * Let the generic code handle everything except a few categories of |
1179 | * LUN not ready errors on open devices. |
1180 | */ |
1181 | if ((!ISSET(link->flags, SDEV_OPEN)((link->flags) & (0x0008))) || |
1182 | (serr != SSD_ERRCODE_CURRENT0x70 && serr != SSD_ERRCODE_DEFERRED0x71) || |
1183 | ((sense->flags & SSD_KEY0x0F) != SKEY_NOT_READY0x02) || |
1184 | (sense->extra_len < 6)) |
1185 | return scsi_interpret_sense(xs); |
1186 | |
1187 | if (ISSET(xs->flags, SCSI_IGNORE_NOT_READY)((xs->flags) & (0x00040))) |
1188 | return 0; |
1189 | |
1190 | switch (ASC_ASCQ(sense)((sense->add_sense_code << 8) | sense->add_sense_code_qual )) { |
1191 | case SENSE_NOT_READY_BECOMING_READY0x0401: |
1192 | SC_DEBUG(link, SDEV_DB1, ("becoming ready.\n")); |
1193 | retval = scsi_delay(xs, 5); |
1194 | break; |
1195 | |
1196 | case SENSE_NOT_READY_INIT_REQUIRED0x0402: |
1197 | SC_DEBUG(link, SDEV_DB1, ("spinning up\n")); |
1198 | retval = scsi_start(link, SSS_START0x01, |
1199 | SCSI_IGNORE_ILLEGAL_REQUEST0x00100 | SCSI_NOSLEEP0x00001); |
1200 | if (retval == 0) |
1201 | retval = ERESTART-1; |
1202 | else if (retval == ENOMEM12) |
1203 | /* Can't issue the command. Fall back on a delay. */ |
1204 | retval = scsi_delay(xs, 5); |
1205 | else |
1206 | SC_DEBUG(link, SDEV_DB1, ("spin up failed (%#x)\n", |
1207 | retval)); |
1208 | break; |
1209 | |
1210 | default: |
1211 | retval = scsi_interpret_sense(xs); |
1212 | break; |
1213 | } |
1214 | |
1215 | return retval; |
1216 | } |
1217 | |
1218 | daddr_t |
1219 | sdsize(dev_t dev) |
1220 | { |
1221 | struct disklabel *lp; |
1222 | struct sd_softc *sc; |
1223 | daddr_t size; |
1224 | int part, omask; |
1225 | |
1226 | sc = sdlookup(DISKUNIT(dev))(struct sd_softc *)disk_lookup(&sd_cd, ((((unsigned)((dev ) & 0xff) | (((dev) & 0xffff0000) >> 8)) / 16)) ); |
1227 | if (sc == NULL((void *)0)) |
1228 | return -1; |
1229 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1230 | size = -1; |
1231 | goto exit; |
1232 | } |
1233 | |
1234 | part = DISKPART(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) % 16); |
1235 | omask = sc->sc_dk.dk_openmask & (1 << part); |
1236 | |
1237 | if (omask == 0 && sdopen(dev, 0, S_IFBLK0060000, NULL((void *)0)) != 0) { |
1238 | size = -1; |
1239 | goto exit; |
1240 | } |
1241 | |
1242 | lp = sc->sc_dk.dk_label; |
1243 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1244 | size = -1; |
1245 | goto exit; |
1246 | } |
1247 | if (!ISSET(sc->sc_link->flags, SDEV_MEDIA_LOADED)((sc->sc_link->flags) & (0x0002))) |
1248 | size = -1; |
1249 | else if (lp->d_partitions[part].p_fstype != FS_SWAP1) |
1250 | size = -1; |
1251 | else |
1252 | size = DL_SECTOBLK(lp, DL_GETPSIZE(&lp->d_partitions[part]))(((((u_int64_t)(&lp->d_partitions[part])->p_sizeh << 32) + (&lp->d_partitions[part])->p_size)) * ((lp)-> d_secsize / (1 << 9))); |
1253 | if (omask == 0 && sdclose(dev, 0, S_IFBLK0060000, NULL((void *)0)) != 0) |
1254 | size = -1; |
1255 | |
1256 | exit: |
1257 | device_unref(&sc->sc_dev); |
1258 | return size; |
1259 | } |
1260 | |
1261 | /* #define SD_DUMP_NOT_TRUSTED if you just want to watch. */ |
1262 | static int sddoingadump; |
1263 | |
1264 | /* |
1265 | * Dump all of physical memory into the partition specified, starting |
1266 | * at offset 'dumplo' into the partition. |
1267 | */ |
1268 | int |
1269 | sddump(dev_t dev, daddr_t blkno, caddr_t va, size_t size) |
1270 | { |
1271 | struct sd_softc *sc; |
1272 | struct disklabel *lp; |
1273 | struct scsi_xfer *xs; |
1274 | u_int64_t nsects; /* partition sectors */ |
1275 | u_int64_t sectoff; /* partition offset */ |
1276 | u_int64_t totwrt; /* sectors left */ |
1277 | int part, rv, unit; |
1278 | u_int32_t sectorsize; |
1279 | u_int32_t nwrt; /* sectors to write */ |
1280 | |
1281 | /* Check if recursive dump; if so, punt. */ |
1282 | if (sddoingadump) |
1283 | return EFAULT14; |
1284 | if (blkno < 0) |
1285 | return EINVAL22; |
1286 | |
1287 | /* Mark as active early. */ |
1288 | sddoingadump = 1; |
1289 | |
1290 | unit = DISKUNIT(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) / 16); /* Decompose unit & partition. */ |
1291 | part = DISKPART(dev)(((unsigned)((dev) & 0xff) | (((dev) & 0xffff0000) >> 8)) % 16); |
1292 | |
1293 | /* Check for acceptable drive number. */ |
1294 | if (unit >= sd_cd.cd_ndevs || (sc = sd_cd.cd_devs[unit]) == NULL((void *)0)) |
1295 | return ENXIO6; |
1296 | |
1297 | /* |
1298 | * XXX Can't do this check, since the media might have been |
1299 | * XXX marked `invalid' by successful unmounting of all |
1300 | * XXX filesystems. |
1301 | */ |
1302 | #if 0 |
1303 | /* Make sure it was initialized. */ |
1304 | if (!ISSET(sc->sc_link->flags, SDEV_MEDIA_LOADED)((sc->sc_link->flags) & (0x0002))) |
1305 | return ENXIO6; |
1306 | #endif /* 0 */ |
1307 | |
1308 | /* Convert to disk sectors. Request must be a multiple of size. */ |
1309 | lp = sc->sc_dk.dk_label; |
1310 | sectorsize = lp->d_secsize; |
1311 | if ((size % sectorsize) != 0) |
1312 | return EFAULT14; |
1313 | if ((blkno % DL_BLKSPERSEC(lp)((lp)->d_secsize / (1 << 9))) != 0) |
1314 | return EFAULT14; |
1315 | totwrt = size / sectorsize; |
1316 | blkno = DL_BLKTOSEC(lp, blkno)((blkno) / ((lp)->d_secsize / (1 << 9))); |
1317 | |
1318 | nsects = DL_GETPSIZE(&lp->d_partitions[part])(((u_int64_t)(&lp->d_partitions[part])->p_sizeh << 32) + (&lp->d_partitions[part])->p_size); |
1319 | sectoff = DL_GETPOFFSET(&lp->d_partitions[part])(((u_int64_t)(&lp->d_partitions[part])->p_offseth << 32) + (&lp->d_partitions[part])->p_offset); |
1320 | |
1321 | /* Check transfer bounds against partition size. */ |
1322 | if ((blkno + totwrt) > nsects) |
1323 | return EINVAL22; |
1324 | |
1325 | /* Offset block number to start of partition. */ |
1326 | blkno += sectoff; |
1327 | |
1328 | while (totwrt > 0) { |
1329 | if (totwrt > UINT32_MAX0xffffffffU) |
1330 | nwrt = UINT32_MAX0xffffffffU; |
1331 | else |
1332 | nwrt = totwrt; |
1333 | |
1334 | #ifndef SD_DUMP_NOT_TRUSTED |
1335 | xs = scsi_xs_get(sc->sc_link, SCSI_NOSLEEP0x00001 | SCSI_DATA_OUT0x01000); |
1336 | if (xs == NULL((void *)0)) |
1337 | return ENOMEM12; |
1338 | |
1339 | xs->timeout = 10000; |
1340 | xs->data = va; |
1341 | xs->datalen = nwrt * sectorsize; |
1342 | |
1343 | xs->cmdlen = sd_cmd_rw10(&xs->cmd, 0, blkno, nwrt); /* XXX */ |
1344 | |
1345 | rv = scsi_xs_sync(xs); |
1346 | scsi_xs_put(xs); |
1347 | if (rv != 0) |
1348 | return ENXIO6; |
1349 | #else /* SD_DUMP_NOT_TRUSTED */ |
1350 | /* Let's just talk about this first. */ |
1351 | printf("sd%d: dump addr 0x%x, blk %lld\n", unit, va, |
1352 | (long long)blkno); |
1353 | delay(500 * 1000)(*delay_func)(500 * 1000); /* 1/2 a second */ |
1354 | #endif /* ~SD_DUMP_NOT_TRUSTED */ |
1355 | |
1356 | /* Update block count. */ |
1357 | totwrt -= nwrt; |
1358 | blkno += nwrt; |
1359 | va += sectorsize * nwrt; |
1360 | } |
1361 | |
1362 | sddoingadump = 0; |
1363 | |
1364 | return 0; |
1365 | } |
1366 | |
1367 | /* |
1368 | * Copy up to len chars from src to dst, ignoring non-printables. |
1369 | * Must be room for len+1 chars in dst so we can write the NUL. |
1370 | * Does not assume src is NUL-terminated. |
1371 | */ |
1372 | void |
1373 | viscpy(u_char *dst, u_char *src, int len) |
1374 | { |
1375 | while (len > 0 && *src != '\0') { |
1376 | if (*src < 0x20 || *src >= 0x80) { |
1377 | src++; |
1378 | continue; |
1379 | } |
1380 | *dst++ = *src++; |
1381 | len--; |
1382 | } |
1383 | *dst = '\0'; |
1384 | } |
1385 | |
1386 | int |
1387 | sd_read_cap_10(struct sd_softc *sc, int flags) |
1388 | { |
1389 | struct scsi_read_cap_data *rdcap; |
1390 | int rv; |
1391 | |
1392 | rdcap = dma_alloc(sizeof(*rdcap), (ISSET(flags, SCSI_NOSLEEP)((flags) & (0x00001)) ? |
1393 | PR_NOWAIT0x0002 : PR_WAITOK0x0001) | PR_ZERO0x0008); |
1394 | if (rdcap == NULL((void *)0)) |
1395 | return -1; |
1396 | |
1397 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1398 | rv = -1; |
1399 | goto done; |
1400 | } |
1401 | |
1402 | rv = scsi_read_cap_10(sc->sc_link, rdcap, flags); |
1403 | if (rv == 0) { |
1404 | if (_4btol(rdcap->addr) == 0) { |
1405 | rv = -1; |
1406 | goto done; |
1407 | } |
1408 | sc->params.disksize = _4btol(rdcap->addr) + 1ll; |
1409 | sc->params.secsize = _4btol(rdcap->length); |
1410 | CLR(sc->flags, SDF_THIN)((sc->flags) &= ~(0x01)); |
1411 | } |
1412 | |
1413 | done: |
1414 | dma_free(rdcap, sizeof(*rdcap)); |
1415 | return rv; |
1416 | } |
1417 | |
1418 | int |
1419 | sd_read_cap_16(struct sd_softc *sc, int flags) |
1420 | { |
1421 | struct scsi_read_cap_data_16 *rdcap; |
1422 | int rv; |
1423 | |
1424 | rdcap = dma_alloc(sizeof(*rdcap), (ISSET(flags, SCSI_NOSLEEP)((flags) & (0x00001)) ? |
1425 | PR_NOWAIT0x0002 : PR_WAITOK0x0001) | PR_ZERO0x0008); |
1426 | if (rdcap == NULL((void *)0)) |
1427 | return -1; |
1428 | |
1429 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1430 | rv = -1; |
1431 | goto done; |
1432 | } |
1433 | |
1434 | rv = scsi_read_cap_16(sc->sc_link, rdcap, flags); |
1435 | if (rv == 0) { |
1436 | if (_8btol(rdcap->addr) == 0) { |
1437 | rv = -1; |
1438 | goto done; |
1439 | } |
1440 | sc->params.disksize = _8btol(rdcap->addr) + 1ll; |
1441 | sc->params.secsize = _4btol(rdcap->length); |
1442 | if (ISSET(_2btol(rdcap->lowest_aligned), READ_CAP_16_TPE)((_2btol(rdcap->lowest_aligned)) & (0x8000))) |
1443 | SET(sc->flags, SDF_THIN)((sc->flags) |= (0x01)); |
1444 | else |
1445 | CLR(sc->flags, SDF_THIN)((sc->flags) &= ~(0x01)); |
1446 | } |
1447 | |
1448 | done: |
1449 | dma_free(rdcap, sizeof(*rdcap)); |
1450 | return rv; |
1451 | } |
1452 | |
1453 | int |
1454 | sd_read_cap(struct sd_softc *sc, int flags) |
1455 | { |
1456 | int rv; |
1457 | |
1458 | CLR(flags, SCSI_IGNORE_ILLEGAL_REQUEST)((flags) &= ~(0x00100)); |
1459 | |
1460 | /* |
1461 | * post-SPC2 (i.e. post-SCSI-3) devices can start with 16 byte |
1462 | * read capacity commands. Older devices start with the 10 byte |
1463 | * version and move up to the 16 byte version if the device |
1464 | * says it has more sectors than can be reported via the 10 byte |
1465 | * read capacity. |
1466 | */ |
1467 | if (SID_ANSII_REV(&sc->sc_link->inqdata)((&sc->sc_link->inqdata)->version & 0x07) > SCSI_REV_SPC20x04) { |
1468 | rv = sd_read_cap_16(sc, flags); |
1469 | if (rv != 0) |
1470 | rv = sd_read_cap_10(sc, flags); |
1471 | } else { |
1472 | rv = sd_read_cap_10(sc, flags); |
1473 | if (rv == 0 && sc->params.disksize == 0x100000000ll) |
1474 | rv = sd_read_cap_16(sc, flags); |
1475 | } |
1476 | |
1477 | return rv; |
1478 | } |
1479 | |
1480 | int |
1481 | sd_thin_pages(struct sd_softc *sc, int flags) |
1482 | { |
1483 | struct scsi_vpd_hdr *pg; |
1484 | u_int8_t *pages; |
1485 | size_t len = 0; |
1486 | int i, rv, score = 0; |
1487 | |
1488 | pg = dma_alloc(sizeof(*pg), (ISSET(flags, SCSI_NOSLEEP)((flags) & (0x00001)) ? |
1489 | PR_NOWAIT0x0002 : PR_WAITOK0x0001) | PR_ZERO0x0008); |
1490 | if (pg == NULL((void *)0)) |
1491 | return ENOMEM12; |
1492 | |
1493 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1494 | rv = ENXIO6; |
1495 | goto done; |
1496 | } |
1497 | rv = scsi_inquire_vpd(sc->sc_link, pg, sizeof(*pg), |
1498 | SI_PG_SUPPORTED0x00, flags); |
1499 | if (rv != 0) |
1500 | goto done; |
1501 | |
1502 | len = _2btol(pg->page_length); |
1503 | |
1504 | dma_free(pg, sizeof(*pg)); |
1505 | pg = dma_alloc(sizeof(*pg) + len, (ISSET(flags, SCSI_NOSLEEP)((flags) & (0x00001)) ? |
1506 | PR_NOWAIT0x0002 : PR_WAITOK0x0001) | PR_ZERO0x0008); |
1507 | if (pg == NULL((void *)0)) |
1508 | return ENOMEM12; |
1509 | |
1510 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1511 | rv = ENXIO6; |
1512 | goto done; |
1513 | } |
1514 | rv = scsi_inquire_vpd(sc->sc_link, pg, sizeof(*pg) + len, |
1515 | SI_PG_SUPPORTED0x00, flags); |
1516 | if (rv != 0) |
1517 | goto done; |
1518 | |
1519 | pages = (u_int8_t *)(pg + 1); |
1520 | if (pages[0] != SI_PG_SUPPORTED0x00) { |
1521 | rv = EIO5; |
1522 | goto done; |
1523 | } |
1524 | |
1525 | for (i = 1; i < len; i++) { |
1526 | switch (pages[i]) { |
1527 | case SI_PG_DISK_LIMITS0xb0: |
1528 | case SI_PG_DISK_THIN0xb2: |
1529 | score++; |
1530 | break; |
1531 | } |
1532 | } |
1533 | |
1534 | if (score < 2) |
1535 | rv = EOPNOTSUPP45; |
1536 | |
1537 | done: |
1538 | dma_free(pg, sizeof(*pg) + len); |
1539 | return rv; |
1540 | } |
1541 | |
1542 | int |
1543 | sd_vpd_block_limits(struct sd_softc *sc, int flags) |
1544 | { |
1545 | struct scsi_vpd_disk_limits *pg; |
1546 | int rv; |
1547 | |
1548 | pg = dma_alloc(sizeof(*pg), (ISSET(flags, SCSI_NOSLEEP)((flags) & (0x00001)) ? |
1549 | PR_NOWAIT0x0002 : PR_WAITOK0x0001) | PR_ZERO0x0008); |
1550 | if (pg == NULL((void *)0)) |
1551 | return ENOMEM12; |
1552 | |
1553 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1554 | rv = ENXIO6; |
1555 | goto done; |
1556 | } |
1557 | rv = scsi_inquire_vpd(sc->sc_link, pg, sizeof(*pg), |
1558 | SI_PG_DISK_LIMITS0xb0, flags); |
1559 | if (rv != 0) |
1560 | goto done; |
1561 | |
1562 | if (_2btol(pg->hdr.page_length) == SI_PG_DISK_LIMITS_LEN_THIN0x3c) { |
1563 | sc->params.unmap_sectors = _4btol(pg->max_unmap_lba_count); |
1564 | sc->params.unmap_descs = _4btol(pg->max_unmap_desc_count); |
1565 | } else |
1566 | rv = EOPNOTSUPP45; |
1567 | |
1568 | done: |
1569 | dma_free(pg, sizeof(*pg)); |
1570 | return rv; |
1571 | } |
1572 | |
1573 | int |
1574 | sd_vpd_thin(struct sd_softc *sc, int flags) |
1575 | { |
1576 | struct scsi_vpd_disk_thin *pg; |
1577 | int rv; |
1578 | |
1579 | pg = dma_alloc(sizeof(*pg), (ISSET(flags, SCSI_NOSLEEP)((flags) & (0x00001)) ? |
1580 | PR_NOWAIT0x0002 : PR_WAITOK0x0001) | PR_ZERO0x0008); |
1581 | if (pg == NULL((void *)0)) |
1582 | return ENOMEM12; |
1583 | |
1584 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) { |
1585 | rv = ENXIO6; |
1586 | goto done; |
1587 | } |
1588 | rv = scsi_inquire_vpd(sc->sc_link, pg, sizeof(*pg), |
1589 | SI_PG_DISK_THIN0xb2, flags); |
1590 | if (rv != 0) |
1591 | goto done; |
1592 | |
1593 | #ifdef notyet |
1594 | if (ISSET(pg->flags, VPD_DISK_THIN_TPU)((pg->flags) & ((1 << 7)))) |
1595 | sc->sc_delete = sd_unmap; |
1596 | else if (ISSET(pg->flags, VPD_DISK_THIN_TPWS)((pg->flags) & ((1 << 6)))) { |
1597 | sc->sc_delete = sd_write_same_16; |
1598 | sc->params.unmap_descs = 1; /* WRITE SAME 16 only does one */ |
1599 | } else |
1600 | rv = EOPNOTSUPP45; |
1601 | #endif /* notyet */ |
1602 | |
1603 | done: |
1604 | dma_free(pg, sizeof(*pg)); |
1605 | return rv; |
1606 | } |
1607 | |
1608 | int |
1609 | sd_thin_params(struct sd_softc *sc, int flags) |
1610 | { |
1611 | int rv; |
1612 | |
1613 | rv = sd_thin_pages(sc, flags); |
1614 | if (rv != 0) |
1615 | return rv; |
1616 | |
1617 | rv = sd_vpd_block_limits(sc, flags); |
1618 | if (rv != 0) |
1619 | return rv; |
1620 | |
1621 | rv = sd_vpd_thin(sc, flags); |
1622 | if (rv != 0) |
1623 | return rv; |
1624 | |
1625 | return 0; |
1626 | } |
1627 | |
1628 | /* |
1629 | * Fill out the disk parameter structure. Return 0 if the structure is correctly |
1630 | * filled in, otherwise return -1. |
1631 | * |
1632 | * The caller is responsible for clearing the SDEV_MEDIA_LOADED flag if the |
1633 | * structure cannot be completed. |
1634 | */ |
1635 | int |
1636 | sd_get_parms(struct sd_softc *sc, int flags) |
1637 | { |
1638 | struct disk_parms dp; |
1639 | struct scsi_link *link = sc->sc_link; |
1640 | union scsi_mode_sense_buf *buf = NULL((void *)0); |
1641 | struct page_rigid_geometry *rigid = NULL((void *)0); |
1642 | struct page_flex_geometry *flex = NULL((void *)0); |
1643 | struct page_reduced_geometry *reduced = NULL((void *)0); |
1644 | u_char *page0 = NULL((void *)0); |
1645 | int big, err = 0; |
1646 | |
1647 | if (sd_read_cap(sc, flags) != 0) |
1648 | return -1; |
1649 | |
1650 | if (ISSET(sc->flags, SDF_THIN)((sc->flags) & (0x01)) && sd_thin_params(sc, flags) != 0) { |
1651 | /* we dont know the unmap limits, so we cant use thin shizz */ |
1652 | CLR(sc->flags, SDF_THIN)((sc->flags) &= ~(0x01)); |
1653 | } |
1654 | |
1655 | /* |
1656 | * Work on a copy of the values initialized by sd_read_cap() and |
1657 | * sd_thin_params(). |
1658 | */ |
1659 | dp = sc->params; |
1660 | |
1661 | buf = dma_alloc(sizeof(*buf), PR_NOWAIT0x0002); |
1662 | if (buf == NULL((void *)0)) |
1663 | goto validate; |
1664 | |
1665 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
1666 | goto die; |
1667 | |
1668 | /* |
1669 | * Ask for page 0 (vendor specific) mode sense data to find |
1670 | * READONLY info. The only thing USB devices will ask for. |
1671 | * |
1672 | * page0 == NULL is a valid situation. |
1673 | */ |
1674 | err = scsi_do_mode_sense(link, 0, buf, (void **)&page0, 1, |
1675 | flags | SCSI_SILENT0x00020, &big); |
1676 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
1677 | goto die; |
1678 | if (err == 0) { |
1679 | if (big && buf->hdr_big.dev_spec & SMH_DSP_WRITE_PROT0x80) |
1680 | SET(link->flags, SDEV_READONLY)((link->flags) |= (0x0004)); |
1681 | else if (!big && buf->hdr.dev_spec & SMH_DSP_WRITE_PROT0x80) |
1682 | SET(link->flags, SDEV_READONLY)((link->flags) |= (0x0004)); |
1683 | else |
1684 | CLR(link->flags, SDEV_READONLY)((link->flags) &= ~(0x0004)); |
1685 | } |
1686 | |
1687 | /* |
1688 | * Many UMASS devices choke when asked about their geometry. Most |
1689 | * don't have a meaningful geometry anyway, so just fake it if |
1690 | * sd_read_cap() worked. |
1691 | */ |
1692 | if (ISSET(link->flags, SDEV_UMASS)((link->flags) & (0x0400)) && dp.disksize > 0) |
1693 | goto validate; |
1694 | |
1695 | switch (link->inqdata.device & SID_TYPE0x1f) { |
1696 | case T_OPTICAL0x07: |
1697 | /* No more information needed or available. */ |
1698 | break; |
1699 | |
1700 | case T_RDIRECT0x0e: |
1701 | /* T_RDIRECT supports only PAGE_REDUCED_GEOMETRY (6). */ |
1702 | err = scsi_do_mode_sense(link, PAGE_REDUCED_GEOMETRY6, buf, |
1703 | (void **)&reduced, sizeof(*reduced), flags | SCSI_SILENT0x00020, |
1704 | &big); |
1705 | if (err == 0) { |
1706 | scsi_parse_blkdesc(link, buf, big, NULL((void *)0), NULL((void *)0), |
1707 | &dp.secsize); |
1708 | if (reduced != NULL((void *)0)) { |
1709 | if (dp.disksize == 0) |
1710 | dp.disksize = _5btol(reduced->sectors); |
1711 | if (dp.secsize == 0) |
1712 | dp.secsize = _2btol(reduced->bytes_s); |
1713 | } |
1714 | } |
1715 | break; |
1716 | |
1717 | default: |
1718 | /* |
1719 | * NOTE: Some devices leave off the last four bytes of |
1720 | * PAGE_RIGID_GEOMETRY and PAGE_FLEX_GEOMETRY mode sense pages. |
1721 | * The only information in those four bytes is RPM information |
1722 | * so accept the page. The extra bytes will be zero and RPM will |
1723 | * end up with the default value of 3600. |
1724 | */ |
1725 | err = 0; |
1726 | if (!ISSET(link->flags, SDEV_ATAPI)((link->flags) & (0x0200)) || |
1727 | !ISSET(link->flags, SDEV_REMOVABLE)((link->flags) & (0x0001))) |
1728 | err = scsi_do_mode_sense(link, PAGE_RIGID_GEOMETRY4, buf, |
1729 | (void **)&rigid, sizeof(*rigid) - 4, |
1730 | flags | SCSI_SILENT0x00020, &big); |
1731 | if (err == 0) { |
1732 | scsi_parse_blkdesc(link, buf, big, NULL((void *)0), NULL((void *)0), |
1733 | &dp.secsize); |
1734 | if (rigid != NULL((void *)0)) { |
1735 | dp.heads = rigid->nheads; |
1736 | dp.cyls = _3btol(rigid->ncyl); |
1737 | if (dp.heads * dp.cyls > 0) |
1738 | dp.sectors = dp.disksize / (dp.heads * |
1739 | dp.cyls); |
1740 | } |
1741 | } else { |
1742 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
1743 | goto die; |
1744 | err = scsi_do_mode_sense(link, PAGE_FLEX_GEOMETRY5, buf, |
1745 | (void **)&flex, sizeof(*flex) - 4, |
1746 | flags | SCSI_SILENT0x00020, &big); |
1747 | if (err == 0) { |
1748 | scsi_parse_blkdesc(link, buf, big, NULL((void *)0), NULL((void *)0), |
1749 | &dp.secsize); |
1750 | if (flex != NULL((void *)0)) { |
1751 | dp.sectors = flex->ph_sec_tr; |
1752 | dp.heads = flex->nheads; |
1753 | dp.cyls = _2btol(flex->ncyl); |
1754 | if (dp.secsize == 0) |
1755 | dp.secsize = |
1756 | _2btol(flex->bytes_s); |
1757 | if (dp.disksize == 0) |
1758 | dp.disksize = |
1759 | (u_int64_t)dp.cyls * |
1760 | dp.heads * dp.sectors; |
1761 | } |
1762 | } |
1763 | } |
1764 | break; |
1765 | } |
1766 | |
1767 | validate: |
1768 | if (buf) { |
1769 | dma_free(buf, sizeof(*buf)); |
1770 | buf = NULL((void *)0); |
1771 | } |
1772 | |
1773 | if (dp.disksize == 0) |
1774 | goto die; |
1775 | |
1776 | /* |
1777 | * Restrict secsize values to powers of two between 512 and 64k. |
1778 | */ |
1779 | switch (dp.secsize) { |
1780 | case 0: |
1781 | dp.secsize = DEV_BSIZE(1 << 9); |
1782 | break; |
1783 | case 0x200: /* == 512, == DEV_BSIZE on all architectures. */ |
1784 | case 0x400: |
1785 | case 0x800: |
1786 | case 0x1000: |
1787 | case 0x2000: |
1788 | case 0x4000: |
1789 | case 0x8000: |
1790 | case 0x10000: |
1791 | break; |
1792 | default: |
1793 | SC_DEBUG(sc->sc_link, SDEV_DB1, |
1794 | ("sd_get_parms: bad secsize: %#x\n", dp.secsize)); |
1795 | return -1; |
1796 | } |
1797 | |
1798 | /* |
1799 | * XXX THINK ABOUT THIS!! Using values such that sectors * heads * |
1800 | * cyls is <= disk_size can lead to wasted space. We need a more |
1801 | * careful calculation/validation to make everything work out |
1802 | * optimally. |
1803 | */ |
1804 | if (dp.disksize > 0xffffffff && (dp.heads * dp.sectors) < 0xffff) { |
1805 | dp.heads = 511; |
1806 | dp.sectors = 255; |
1807 | dp.cyls = 0; |
1808 | } |
1809 | |
1810 | /* |
1811 | * Use standard geometry values for anything we still don't |
1812 | * know. |
1813 | */ |
1814 | if (dp.heads == 0) |
1815 | dp.heads = 255; |
1816 | if (dp.sectors == 0) |
1817 | dp.sectors = 63; |
1818 | if (dp.cyls == 0) { |
1819 | dp.cyls = dp.disksize / (dp.heads * dp.sectors); |
1820 | if (dp.cyls == 0) { |
1821 | /* Put everything into one cylinder. */ |
1822 | dp.heads = dp.cyls = 1; |
1823 | dp.sectors = dp.disksize; |
1824 | } |
1825 | } |
1826 | |
1827 | #ifdef SCSIDEBUG |
1828 | if (dp.disksize != (u_int64_t)dp.cyls * dp.heads * dp.sectors) { |
1829 | sc_print_addr(sc->sc_link); |
1830 | printf("disksize (%llu) != cyls (%u) * heads (%u) * " |
1831 | "sectors/track (%u) (%llu)\n", dp.disksize, dp.cyls, |
1832 | dp.heads, dp.sectors, |
1833 | (u_int64_t)dp.cyls * dp.heads * dp.sectors); |
1834 | } |
1835 | #endif /* SCSIDEBUG */ |
1836 | |
1837 | sc->params = dp; |
1838 | return 0; |
1839 | |
1840 | die: |
1841 | dma_free(buf, sizeof(*buf)); |
1842 | return -1; |
1843 | } |
1844 | |
1845 | int |
1846 | sd_flush(struct sd_softc *sc, int flags) |
1847 | { |
1848 | struct scsi_link *link; |
1849 | struct scsi_xfer *xs; |
1850 | struct scsi_synchronize_cache *cmd; |
1851 | int error; |
1852 | |
1853 | if (ISSET(sc->flags, SDF_DYING)((sc->flags) & (0x40))) |
1854 | return ENXIO6; |
1855 | link = sc->sc_link; |
1856 | |
1857 | if (ISSET(link->quirks, SDEV_NOSYNCCACHE)((link->quirks) & (0x0010))) |
1858 | return 0; |
1859 | |
1860 | /* |
1861 | * Issue a SYNCHRONIZE CACHE. Address 0, length 0 means "all remaining |
1862 | * blocks starting at address 0". Ignore ILLEGAL REQUEST in the event |
1863 | * that the command is not supported by the device. |
1864 | */ |
1865 | |
1866 | xs = scsi_xs_get(link, flags | SCSI_IGNORE_ILLEGAL_REQUEST0x00100); |
1867 | if (xs == NULL((void *)0)) { |
1868 | SC_DEBUG(link, SDEV_DB1, ("cache sync failed to get xs\n")); |
1869 | return EIO5; |
1870 | } |
1871 | |
1872 | cmd = (struct scsi_synchronize_cache *)&xs->cmd; |
1873 | cmd->opcode = SYNCHRONIZE_CACHE0x35; |
1874 | |
1875 | xs->cmdlen = sizeof(*cmd); |
1876 | xs->timeout = 100000; |
1877 | |
1878 | error = scsi_xs_sync(xs); |
1879 | |
1880 | scsi_xs_put(xs); |
1881 | |
1882 | if (error) |
1883 | SC_DEBUG(link, SDEV_DB1, ("cache sync failed\n")); |
1884 | else |
1885 | CLR(sc->flags, SDF_DIRTY)((sc->flags) &= ~(0x20)); |
1886 | |
1887 | return error; |
1888 | } |