st.c revision 1.22 1 1.1 cgd /*
2 1.20 mycroft * Copyright (c) 1994 Charles Hannum. All rights reserved.
3 1.20 mycroft *
4 1.20 mycroft * Redistribution and use in source and binary forms, with or without
5 1.20 mycroft * modification, are permitted provided that the following conditions
6 1.20 mycroft * are met:
7 1.20 mycroft * 1. Redistributions of source code must retain the above copyright
8 1.20 mycroft * notice, this list of conditions and the following disclaimer.
9 1.20 mycroft * 2. Redistributions in binary form must reproduce the above copyright
10 1.20 mycroft * notice, this list of conditions and the following disclaimer in the
11 1.20 mycroft * documentation and/or other materials provided with the distribution.
12 1.20 mycroft * 3. All advertising materials mentioning features or use of this software
13 1.20 mycroft * must display the following acknowledgement:
14 1.20 mycroft * This product includes software developed by Charles Hannum.
15 1.20 mycroft * 4. The name of the author may not be used to endorse or promote products
16 1.20 mycroft * derived from this software without specific prior written permission.
17 1.20 mycroft *
18 1.20 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.20 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.20 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.20 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.20 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 1.20 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 1.20 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 1.20 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 1.20 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 1.20 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 1.20 mycroft *
29 1.22 mycroft * $Id: st.c,v 1.22 1994/04/05 21:59:49 mycroft Exp $
30 1.20 mycroft */
31 1.20 mycroft
32 1.20 mycroft /*
33 1.20 mycroft * Originally written by Julian Elischer (julian (at) tfs.com)
34 1.7 deraadt * for TRW Financial Systems for use under the MACH(2.5) operating system.
35 1.1 cgd *
36 1.1 cgd * TRW Financial Systems, in accordance with their agreement with Carnegie
37 1.1 cgd * Mellon University, makes this software available to CMU to distribute
38 1.1 cgd * or use in any manner that they see fit as long as this message is kept with
39 1.1 cgd * the software. For this reason TFS also grants any other persons or
40 1.1 cgd * organisations permission to use or modify this software.
41 1.1 cgd *
42 1.1 cgd * TFS supplies this software to be publicly redistributed
43 1.1 cgd * on the understanding that TFS is not responsible for the correct
44 1.1 cgd * functioning of this software in any circumstances.
45 1.8 cgd *
46 1.20 mycroft * Ported to run under 386BSD by Julian Elischer (julian (at) tfs.com) Sept 1992
47 1.20 mycroft * major changes by Julian Elischer (julian (at) jules.dialix.oz.au) May 1993
48 1.1 cgd */
49 1.1 cgd
50 1.1 cgd /*
51 1.1 cgd * To do:
52 1.1 cgd * work out some better way of guessing what a good timeout is going
53 1.1 cgd * to be depending on whether we expect to retension or not.
54 1.1 cgd */
55 1.1 cgd
56 1.17 mycroft #include <sys/types.h>
57 1.17 mycroft #include <sys/param.h>
58 1.17 mycroft #include <sys/systm.h>
59 1.20 mycroft #include <sys/fcntl.h>
60 1.17 mycroft #include <sys/errno.h>
61 1.20 mycroft #include <sys/ioctl.h>
62 1.17 mycroft #include <sys/malloc.h>
63 1.17 mycroft #include <sys/buf.h>
64 1.17 mycroft #include <sys/proc.h>
65 1.17 mycroft #include <sys/user.h>
66 1.17 mycroft #include <sys/mtio.h>
67 1.20 mycroft #include <sys/device.h>
68 1.17 mycroft
69 1.17 mycroft #include <scsi/scsi_all.h>
70 1.17 mycroft #include <scsi/scsi_tape.h>
71 1.17 mycroft #include <scsi/scsiconf.h>
72 1.1 cgd
73 1.20 mycroft /* Defines for device specific stuff */
74 1.20 mycroft #define PAGE_0_SENSE_DATA_SIZE 12
75 1.20 mycroft #define DEF_FIXED_BSIZE 512
76 1.20 mycroft #define ST_RETRIES 4 /* only on non IO commands */
77 1.20 mycroft
78 1.20 mycroft #define STMODE(z) ( minor(z) & 0x03)
79 1.20 mycroft #define STDSTY(z) ((minor(z) >> 2) & 0x03)
80 1.20 mycroft #define STUNIT(z) ((minor(z) >> 4) )
81 1.20 mycroft #define CTLMODE 3
82 1.1 cgd
83 1.20 mycroft #define SCSI_2_MAX_DENSITY_CODE 0x17 /* maximum density code specified
84 1.20 mycroft * in SCSI II spec. */
85 1.20 mycroft /*
86 1.20 mycroft * Define various devices that we know mis-behave in some way,
87 1.20 mycroft * and note how they are bad, so we can correct for them
88 1.20 mycroft */
89 1.20 mycroft struct modes {
90 1.20 mycroft u_int blksiz;
91 1.20 mycroft u_int quirks; /* same definitions as in rogues */
92 1.20 mycroft char density;
93 1.20 mycroft char spare[3];
94 1.20 mycroft };
95 1.20 mycroft
96 1.20 mycroft struct rogues {
97 1.20 mycroft char *manu;
98 1.20 mycroft char *model;
99 1.20 mycroft char *version;
100 1.20 mycroft u_int quirks; /* valid for all modes */
101 1.20 mycroft struct modes modes[4];
102 1.20 mycroft };
103 1.20 mycroft
104 1.20 mycroft /* define behaviour codes (quirks) */
105 1.20 mycroft #define ST_Q_NEEDS_PAGE_0 0x00001
106 1.20 mycroft #define ST_Q_FORCE_FIXED_MODE 0x00002
107 1.20 mycroft #define ST_Q_FORCE_VAR_MODE 0x00004
108 1.20 mycroft #define ST_Q_SNS_HLP 0x00008 /* must do READ for good MODE SENSE */
109 1.20 mycroft #define ST_Q_IGNORE_LOADS 0x00010
110 1.20 mycroft #define ST_Q_BLKSIZ 0x00020 /* variable-block media_blksiz > 0 */
111 1.1 cgd
112 1.20 mycroft static struct rogues gallery[] = /* ends with an all-null entry */
113 1.20 mycroft {
114 1.20 mycroft {"pre-scsi", " unknown model ", "????",
115 1.20 mycroft 0,
116 1.20 mycroft {
117 1.21 mycroft {512, ST_Q_FORCE_FIXED_MODE, 0}, /* minor 0-3 */
118 1.21 mycroft {512, ST_Q_FORCE_FIXED_MODE, QIC_24}, /* minor 4-7 */
119 1.21 mycroft {0, ST_Q_FORCE_VAR_MODE, HALFINCH_1600}, /* minor 8-11 */
120 1.21 mycroft {0, ST_Q_FORCE_VAR_MODE, HALFINCH_6250} /* minor 12-15 */
121 1.20 mycroft }
122 1.20 mycroft },
123 1.20 mycroft {"TANDBERG", " TDC 3600", "????",
124 1.20 mycroft ST_Q_NEEDS_PAGE_0,
125 1.20 mycroft {
126 1.21 mycroft {0, 0, 0}, /* minor 0-3 */
127 1.21 mycroft {0, ST_Q_FORCE_VAR_MODE, QIC_525}, /* minor 4-7 */
128 1.21 mycroft {0, 0, QIC_150}, /* minor 8-11 */
129 1.21 mycroft {0, 0, QIC_120} /* minor 12-15 */
130 1.20 mycroft }
131 1.20 mycroft },
132 1.21 mycroft /*
133 1.21 mycroft * At least -005 and -007 need this. I'll assume they all do unless I
134 1.21 mycroft * hear otherwise. - mycroft, 31MAR94
135 1.21 mycroft */
136 1.21 mycroft {"ARCHIVE ", "VIPER 2525 25462", "????",
137 1.20 mycroft 0,
138 1.20 mycroft {
139 1.21 mycroft {0, ST_Q_SNS_HLP, 0}, /* minor 0-3 */
140 1.21 mycroft {0, ST_Q_SNS_HLP, QIC_525}, /* minor 4-7 */
141 1.21 mycroft {0, 0, QIC_150}, /* minor 8-11 */
142 1.21 mycroft {0, 0, QIC_120} /* minor 12-15 */
143 1.20 mycroft }
144 1.20 mycroft },
145 1.22 mycroft #if 0
146 1.22 mycroft /* One of these is probably fine. */
147 1.22 mycroft {"SANKYO ", "CP525", "????",
148 1.22 mycroft 0,
149 1.22 mycroft {
150 1.22 mycroft {0, ST_Q_SNS_HLP, 0}, /* minor 0-3 */
151 1.22 mycroft {0, ST_Q_SNS_HLP, QIC_525}, /* minor 4-7 */
152 1.22 mycroft {0, 0, QIC_150}, /* minor 8-11 */
153 1.22 mycroft {0, 0, QIC_120} /* minor 12-15 */
154 1.22 mycroft }
155 1.22 mycroft },
156 1.22 mycroft {"SANKYO ", "CP525", "????",
157 1.22 mycroft 0,
158 1.22 mycroft {
159 1.22 mycroft {512, ST_Q_FORCE_FIXED_MODE, 0}, /* minor 0-3 */
160 1.22 mycroft {512, ST_Q_FORCE_FIXED_MODE, QIC_525}, /* minor 4-7 */
161 1.22 mycroft {0, 0, QIC_150}, /* minor 8-11 */
162 1.22 mycroft {0, 0, QIC_120} /* minor 12-15 */
163 1.22 mycroft }
164 1.22 mycroft },
165 1.22 mycroft #endif
166 1.20 mycroft {"ARCHIVE ", "VIPER 150", "????",
167 1.20 mycroft ST_Q_NEEDS_PAGE_0,
168 1.20 mycroft {
169 1.21 mycroft {0, 0, 0}, /* minor 0-3 */
170 1.21 mycroft {0, 0, QIC_150}, /* minor 4-7 */
171 1.21 mycroft {0, 0, QIC_120}, /* minor 8-11 */
172 1.21 mycroft {0, 0, QIC_24} /* minor 12-15 */
173 1.20 mycroft }
174 1.20 mycroft },
175 1.20 mycroft {"WANGTEK ", "5525ES SCSI REV7", "????",
176 1.20 mycroft 0,
177 1.20 mycroft {
178 1.21 mycroft {0, 0, 0}, /* minor 0-3 */
179 1.21 mycroft {0, ST_Q_BLKSIZ, QIC_525}, /* minor 4-7 */
180 1.21 mycroft {0, 0, QIC_150}, /* minor 8-11 */
181 1.21 mycroft {0, 0, QIC_120} /* minor 12-15 */
182 1.20 mycroft }
183 1.20 mycroft },
184 1.20 mycroft {"WangDAT ", "Model 1300", "????",
185 1.20 mycroft 0,
186 1.20 mycroft {
187 1.21 mycroft {0, 0, 0}, /* minor 0-3 */
188 1.21 mycroft {512, ST_Q_FORCE_FIXED_MODE, 0x13}, /* minor 4-7 */
189 1.21 mycroft {1024, ST_Q_FORCE_FIXED_MODE, 0x13}, /* minor 8-11 */
190 1.21 mycroft {0, ST_Q_FORCE_VAR_MODE, 0x13} /* minor 12-15 */
191 1.20 mycroft }
192 1.20 mycroft },
193 1.20 mycroft {(char *) 0}
194 1.20 mycroft };
195 1.20 mycroft
196 1.20 mycroft #define NOEJECT 0
197 1.20 mycroft #define EJECT 1
198 1.20 mycroft
199 1.20 mycroft struct st_data {
200 1.20 mycroft struct device sc_dev;
201 1.20 mycroft /*--------------------present operating parameters, flags etc.----------------*/
202 1.20 mycroft u_int flags; /* see below */
203 1.20 mycroft u_int blksiz; /* blksiz we are using */
204 1.20 mycroft u_int density; /* present density */
205 1.20 mycroft u_int quirks; /* quirks for the open mode */
206 1.20 mycroft u_int last_dsty; /* last density openned */
207 1.20 mycroft /*--------------------device/scsi parameters----------------------------------*/
208 1.20 mycroft struct scsi_link *sc_link; /* our link to the adpter etc. */
209 1.20 mycroft /*--------------------parameters reported by the device ----------------------*/
210 1.20 mycroft u_int blkmin; /* min blk size */
211 1.20 mycroft u_int blkmax; /* max blk size */
212 1.20 mycroft struct rogues *rogues; /* if we have a rogue entry */
213 1.20 mycroft /*--------------------parameters reported by the device for this media--------*/
214 1.20 mycroft u_int numblks; /* nominal blocks capacity */
215 1.20 mycroft u_int media_blksiz; /* 0 if not ST_FIXEDBLOCKS */
216 1.20 mycroft u_int media_density; /* this is what it said when asked */
217 1.20 mycroft /*--------------------quirks for the whole drive------------------------------*/
218 1.20 mycroft u_int drive_quirks; /* quirks of this drive */
219 1.20 mycroft /*--------------------How we should set up when openning each minor device----*/
220 1.20 mycroft struct modes modes[4]; /* plus more for each mode */
221 1.20 mycroft u_int8 modeflags[4]; /* flags for the modes */
222 1.20 mycroft #define DENSITY_SET_BY_USER 0x01
223 1.20 mycroft #define DENSITY_SET_BY_QUIRK 0x02
224 1.20 mycroft #define BLKSIZE_SET_BY_USER 0x04
225 1.20 mycroft #define BLKSIZE_SET_BY_QUIRK 0x08
226 1.20 mycroft /*--------------------storage for sense data returned by the drive------------*/
227 1.20 mycroft u_char sense_data[12]; /*
228 1.20 mycroft * additional sense data needed
229 1.20 mycroft * for mode sense/select.
230 1.20 mycroft */
231 1.20 mycroft struct buf buf_queue; /* the queue of pending IO operations */
232 1.20 mycroft struct scsi_xfer scsi_xfer; /* scsi xfer struct for this drive */
233 1.20 mycroft u_int xfer_block_wait; /* is a process waiting? */
234 1.20 mycroft };
235 1.20 mycroft
236 1.20 mycroft void stattach __P((struct device *, struct device *, void *));
237 1.20 mycroft
238 1.20 mycroft struct cfdriver stcd = {
239 1.20 mycroft NULL, "st", scsi_targmatch, stattach, DV_TAPE, sizeof(struct st_data)
240 1.20 mycroft };
241 1.20 mycroft
242 1.20 mycroft int st_space __P((struct st_data *, int number, u_int what, u_int flags));
243 1.20 mycroft int st_rewind __P((struct st_data *, boolean immed, u_int flags));
244 1.20 mycroft int st_mode_sense __P((struct st_data *, u_int flags));
245 1.20 mycroft int st_decide_mode __P((struct st_data *, boolean first_read));
246 1.20 mycroft int st_rd_blk_lim __P((struct st_data *, u_int flags));
247 1.20 mycroft int st_touch_tape __P((struct st_data *));
248 1.20 mycroft int st_write_filemarks __P((struct st_data *, int number, u_int flags));
249 1.20 mycroft int st_load __P((struct st_data *, u_int type, u_int flags));
250 1.20 mycroft int st_mode_select __P((struct st_data *, u_int flags));
251 1.20 mycroft void ststrategy();
252 1.20 mycroft void stminphys();
253 1.20 mycroft int st_chkeod();
254 1.20 mycroft void ststart();
255 1.20 mycroft void st_unmount();
256 1.20 mycroft int st_mount_tape();
257 1.20 mycroft void st_loadquirks();
258 1.20 mycroft void st_identify_drive();
259 1.20 mycroft int st_interpret_sense();
260 1.20 mycroft
261 1.20 mycroft struct scsi_device st_switch = {
262 1.20 mycroft st_interpret_sense,
263 1.20 mycroft ststart,
264 1.20 mycroft NULL,
265 1.20 mycroft NULL,
266 1.20 mycroft "st",
267 1.20 mycroft 0
268 1.20 mycroft };
269 1.20 mycroft
270 1.20 mycroft #define ST_INITIALIZED 0x01
271 1.20 mycroft #define ST_INFO_VALID 0x02
272 1.20 mycroft #define ST_OPEN 0x04
273 1.20 mycroft #define ST_BLOCK_SET 0x08 /* block size, mode set by ioctl */
274 1.20 mycroft #define ST_WRITTEN 0x10 /* data have been written, EOD needed */
275 1.20 mycroft #define ST_FIXEDBLOCKS 0x20
276 1.20 mycroft #define ST_AT_FILEMARK 0x40
277 1.20 mycroft #define ST_EIO_PENDING 0x80 /* we couldn't report it then (had data) */
278 1.20 mycroft #define ST_NEW_MOUNT 0x100 /* still need to decide mode */
279 1.20 mycroft #define ST_READONLY 0x200 /* st_mode_sense says write protected */
280 1.20 mycroft #define ST_FM_WRITTEN 0x400 /*
281 1.20 mycroft * EOF file mark written -- used with
282 1.20 mycroft * ~ST_WRITTEN to indicate that multiple file
283 1.20 mycroft * marks have been written
284 1.20 mycroft */
285 1.20 mycroft #define ST_BLANK_READ 0x800 /* BLANK CHECK encountered already */
286 1.20 mycroft #define ST_2FM_AT_EOD 0x1000 /* write 2 file marks at EOD */
287 1.20 mycroft #define ST_MOUNTED 0x2000 /* Device is presently mounted */
288 1.20 mycroft
289 1.20 mycroft #define ST_PER_ACTION (ST_AT_FILEMARK | ST_EIO_PENDING | ST_BLANK_READ)
290 1.20 mycroft #define ST_PER_MOUNT (ST_INFO_VALID | ST_BLOCK_SET | ST_WRITTEN | \
291 1.20 mycroft ST_FIXEDBLOCKS | ST_READONLY | \
292 1.20 mycroft ST_FM_WRITTEN | ST_2FM_AT_EOD | ST_PER_ACTION)
293 1.1 cgd
294 1.3 deraadt /*
295 1.3 deraadt * The routine called by the low level scsi routine when it discovers
296 1.3 deraadt * A device suitable for this driver
297 1.3 deraadt */
298 1.20 mycroft void
299 1.20 mycroft stattach(parent, self, aux)
300 1.20 mycroft struct device *parent, *self;
301 1.20 mycroft void *aux;
302 1.1 cgd {
303 1.20 mycroft struct st_data *st = (void *)self;
304 1.20 mycroft struct scsi_link *sc_link = aux;
305 1.1 cgd
306 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB2, ("stattach: "));
307 1.1 cgd
308 1.20 mycroft sc_link->device = &st_switch;
309 1.20 mycroft sc_link->dev_unit = st->sc_dev.dv_unit;
310 1.1 cgd
311 1.20 mycroft /*
312 1.20 mycroft * Store information needed to contact our base driver
313 1.20 mycroft */
314 1.20 mycroft st->sc_link = sc_link;
315 1.3 deraadt
316 1.20 mycroft /*
317 1.20 mycroft * Check if the drive is a known criminal and take
318 1.20 mycroft * Any steps needed to bring it into line
319 1.20 mycroft */
320 1.20 mycroft st_identify_drive(st);
321 1.3 deraadt
322 1.3 deraadt /*
323 1.3 deraadt * Use the subdriver to request information regarding
324 1.3 deraadt * the drive. We cannot use interrupts yet, so the
325 1.3 deraadt * request must specify this.
326 1.3 deraadt */
327 1.20 mycroft printf(": %s", st->rogues ? "rogue, " : "");
328 1.20 mycroft if (st_mode_sense(st, SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT))
329 1.20 mycroft printf("drive offline\n");
330 1.20 mycroft else if (scsi_test_unit_ready(sc_link,
331 1.20 mycroft SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT))
332 1.20 mycroft printf("drive empty\n");
333 1.20 mycroft else {
334 1.20 mycroft printf("density code 0x%x, ", st->media_density);
335 1.20 mycroft if (st->media_blksiz)
336 1.20 mycroft printf("%d-byte", st->media_blksiz);
337 1.20 mycroft else
338 1.20 mycroft printf("variable");
339 1.20 mycroft printf(" blocks, write-%s\n",
340 1.20 mycroft (st->flags & ST_READONLY) ? "protected" : "enabled");
341 1.20 mycroft }
342 1.1 cgd
343 1.3 deraadt /*
344 1.20 mycroft * Set up the buf queue for this device
345 1.3 deraadt */
346 1.3 deraadt st->buf_queue.b_active = 0;
347 1.3 deraadt st->buf_queue.b_actf = 0;
348 1.19 mycroft st->buf_queue.b_actb = &st->buf_queue.b_actf;
349 1.20 mycroft st->flags |= ST_INITIALIZED;
350 1.20 mycroft }
351 1.20 mycroft
352 1.20 mycroft /*
353 1.20 mycroft * Use the inquiry routine in 'scsi_base' to get drive info so we can
354 1.20 mycroft * Further tailor our behaviour.
355 1.20 mycroft */
356 1.20 mycroft void
357 1.20 mycroft st_identify_drive(st)
358 1.20 mycroft struct st_data *st;
359 1.20 mycroft {
360 1.20 mycroft struct scsi_inquiry_data inqbuf;
361 1.20 mycroft struct rogues *finger;
362 1.20 mycroft char manu[32];
363 1.20 mycroft char model[32];
364 1.20 mycroft char model2[32];
365 1.20 mycroft char version[32];
366 1.20 mycroft u_int model_len;
367 1.20 mycroft
368 1.20 mycroft /*
369 1.20 mycroft * Get the device type information
370 1.20 mycroft */
371 1.20 mycroft if (scsi_inquire(st->sc_link, &inqbuf,
372 1.20 mycroft SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT) != 0) {
373 1.20 mycroft printf("%s: couldn't get device type, using default\n",
374 1.20 mycroft st->sc_dev.dv_xname);
375 1.20 mycroft return;
376 1.20 mycroft }
377 1.20 mycroft if ((inqbuf.version & SID_ANSII) == 0) {
378 1.20 mycroft /*
379 1.20 mycroft * If not advanced enough, use default values
380 1.20 mycroft */
381 1.20 mycroft strncpy(manu, "pre-scsi", 8);
382 1.20 mycroft manu[8] = 0;
383 1.20 mycroft strncpy(model, " unknown model ", 16);
384 1.20 mycroft model[16] = 0;
385 1.20 mycroft strncpy(version, "????", 4);
386 1.20 mycroft version[4] = 0;
387 1.20 mycroft } else {
388 1.20 mycroft strncpy(manu, inqbuf.vendor, 8);
389 1.20 mycroft manu[8] = 0;
390 1.20 mycroft strncpy(model, inqbuf.product, 16);
391 1.20 mycroft model[16] = 0;
392 1.20 mycroft strncpy(version, inqbuf.revision, 4);
393 1.20 mycroft version[4] = 0;
394 1.20 mycroft }
395 1.20 mycroft
396 1.20 mycroft /*
397 1.20 mycroft * Load the parameters for this kind of device, so we
398 1.20 mycroft * treat it as appropriate for each operating mode.
399 1.20 mycroft * Only check the number of characters in the array's
400 1.20 mycroft * model entry, not the entire model string returned.
401 1.20 mycroft */
402 1.20 mycroft finger = gallery;
403 1.20 mycroft while (finger->manu) {
404 1.20 mycroft model_len = 0;
405 1.20 mycroft while (finger->model[model_len] && (model_len < 32)) {
406 1.20 mycroft model2[model_len] = model[model_len];
407 1.20 mycroft model_len++;
408 1.20 mycroft }
409 1.20 mycroft model2[model_len] = 0;
410 1.20 mycroft if ((strcmp(manu, finger->manu) == 0) &&
411 1.20 mycroft (strcmp(model2, finger->model) == 0 ||
412 1.20 mycroft strcmp("????????????????", finger->model) == 0) &&
413 1.20 mycroft (strcmp(version, finger->version) == 0 ||
414 1.20 mycroft strcmp("????", finger->version) == 0)) {
415 1.20 mycroft st->rogues = finger;
416 1.20 mycroft st->drive_quirks = finger->quirks;
417 1.20 mycroft st->quirks = finger->quirks; /* start value */
418 1.20 mycroft st_loadquirks(st);
419 1.20 mycroft break;
420 1.20 mycroft } else
421 1.20 mycroft finger++; /* go to next suspect */
422 1.20 mycroft }
423 1.20 mycroft }
424 1.20 mycroft
425 1.20 mycroft /*
426 1.20 mycroft * initialise the subdevices to the default (QUIRK) state.
427 1.20 mycroft * this will remove any setting made by the system operator or previous
428 1.20 mycroft * operations.
429 1.20 mycroft */
430 1.20 mycroft void
431 1.20 mycroft st_loadquirks(st)
432 1.20 mycroft struct st_data *st;
433 1.20 mycroft {
434 1.20 mycroft int i;
435 1.20 mycroft struct modes *mode;
436 1.20 mycroft struct modes *mode2;
437 1.20 mycroft
438 1.20 mycroft if (!st->rogues)
439 1.20 mycroft return;
440 1.20 mycroft mode = st->rogues->modes;
441 1.20 mycroft mode2 = st->modes;
442 1.20 mycroft for (i = 0; i < 4; i++) {
443 1.20 mycroft bzero(mode2, sizeof(struct modes));
444 1.20 mycroft st->modeflags[i] &= ~(BLKSIZE_SET_BY_QUIRK |
445 1.20 mycroft DENSITY_SET_BY_QUIRK | BLKSIZE_SET_BY_USER |
446 1.20 mycroft DENSITY_SET_BY_USER);
447 1.20 mycroft if (mode->blksiz && ((mode->quirks | st->drive_quirks) &
448 1.20 mycroft ST_Q_FORCE_FIXED_MODE)) {
449 1.20 mycroft mode2->blksiz = mode->blksiz;
450 1.20 mycroft st->modeflags[i] |= BLKSIZE_SET_BY_QUIRK;
451 1.20 mycroft } else if ((mode->quirks | st->drive_quirks) &
452 1.20 mycroft ST_Q_FORCE_VAR_MODE) {
453 1.20 mycroft mode2->blksiz = 0;
454 1.20 mycroft st->modeflags[i] |= BLKSIZE_SET_BY_QUIRK;
455 1.20 mycroft }
456 1.20 mycroft if (mode->density) {
457 1.20 mycroft mode2->density = mode->density;
458 1.20 mycroft st->modeflags[i] |= DENSITY_SET_BY_QUIRK;
459 1.20 mycroft }
460 1.20 mycroft mode++;
461 1.20 mycroft mode2++;
462 1.20 mycroft }
463 1.1 cgd }
464 1.1 cgd
465 1.3 deraadt /*
466 1.20 mycroft * open the device.
467 1.20 mycroft */
468 1.20 mycroft int
469 1.20 mycroft stopen(dev, flags)
470 1.20 mycroft dev_t dev;
471 1.20 mycroft u_int flags;
472 1.1 cgd {
473 1.20 mycroft int unit;
474 1.20 mycroft u_int mode, dsty;
475 1.20 mycroft int error = 0;
476 1.1 cgd struct st_data *st;
477 1.20 mycroft struct scsi_link *sc_link;
478 1.1 cgd
479 1.20 mycroft unit = STUNIT(dev);
480 1.20 mycroft mode = STMODE(dev);
481 1.20 mycroft dsty = STDSTY(dev);
482 1.20 mycroft
483 1.20 mycroft if (unit >= stcd.cd_ndevs)
484 1.4 deraadt return ENXIO;
485 1.20 mycroft st = stcd.cd_devs[unit];
486 1.20 mycroft if (!st || !(st->flags & ST_INITIALIZED))
487 1.4 deraadt return ENXIO;
488 1.3 deraadt
489 1.20 mycroft sc_link = st->sc_link;
490 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB1, ("open: dev=0x%x (unit %d (of %d))\n", dev,
491 1.20 mycroft unit, stcd.cd_ndevs));
492 1.20 mycroft
493 1.20 mycroft if (st->flags & ST_OPEN)
494 1.20 mycroft return EBUSY;
495 1.20 mycroft
496 1.3 deraadt /*
497 1.20 mycroft * Throw out a dummy instruction to catch 'Unit attention
498 1.20 mycroft * errors (the error handling will invalidate all our
499 1.20 mycroft * device info if we get one, but otherwise, ignore it)
500 1.3 deraadt */
501 1.20 mycroft scsi_test_unit_ready(sc_link, SCSI_SILENT);
502 1.20 mycroft
503 1.20 mycroft sc_link->flags |= SDEV_OPEN; /* unit attn are now errors */
504 1.3 deraadt /*
505 1.20 mycroft * If the mode is 3 (e.g. minor = 3,7,11,15)
506 1.20 mycroft * then the device has been openned to set defaults
507 1.20 mycroft * This mode does NOT ALLOW I/O, only ioctls
508 1.3 deraadt */
509 1.20 mycroft if (mode == CTLMODE)
510 1.20 mycroft return 0;
511 1.20 mycroft
512 1.3 deraadt /*
513 1.20 mycroft * Check that the device is ready to use (media loaded?)
514 1.20 mycroft * This time take notice of the return result
515 1.20 mycroft */
516 1.20 mycroft if (error = (scsi_test_unit_ready(sc_link, 0))) {
517 1.20 mycroft printf("%s: not ready\n", st->sc_dev.dv_xname);
518 1.20 mycroft st_unmount(st, NOEJECT);
519 1.20 mycroft return error;
520 1.1 cgd }
521 1.3 deraadt
522 1.20 mycroft /*
523 1.20 mycroft * if it's a different mode, or if the media has been
524 1.20 mycroft * invalidated, unmount the tape from the previous
525 1.20 mycroft * session but continue with open processing
526 1.20 mycroft */
527 1.20 mycroft if (st->last_dsty != dsty || !(sc_link->flags & SDEV_MEDIA_LOADED))
528 1.20 mycroft st_unmount(st, NOEJECT);
529 1.3 deraadt
530 1.3 deraadt /*
531 1.20 mycroft * If we are not mounted, then we should start a new
532 1.20 mycroft * mount session.
533 1.3 deraadt */
534 1.20 mycroft if (!(st->flags & ST_MOUNTED)) {
535 1.20 mycroft st_mount_tape(dev, flags);
536 1.20 mycroft st->last_dsty = dsty;
537 1.3 deraadt }
538 1.1 cgd
539 1.3 deraadt /*
540 1.20 mycroft * Make sure that a tape opened in write-only mode will have
541 1.20 mycroft * file marks written on it when closed, even if not written to.
542 1.20 mycroft * This is for SUN compatibility
543 1.3 deraadt */
544 1.20 mycroft if ((flags & O_ACCMODE) == FWRITE)
545 1.20 mycroft st->flags |= ST_WRITTEN;
546 1.20 mycroft
547 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB2, ("Open complete\n"));
548 1.1 cgd
549 1.20 mycroft st->flags |= ST_OPEN;
550 1.20 mycroft return 0;
551 1.20 mycroft }
552 1.1 cgd
553 1.20 mycroft /*
554 1.20 mycroft * close the device.. only called if we are the LAST
555 1.20 mycroft * occurence of an open device
556 1.20 mycroft */
557 1.20 mycroft int
558 1.20 mycroft stclose(dev)
559 1.20 mycroft dev_t dev;
560 1.20 mycroft {
561 1.20 mycroft int unit, mode;
562 1.20 mycroft struct st_data *st;
563 1.20 mycroft struct scsi_link *sc_link;
564 1.1 cgd
565 1.20 mycroft unit = STUNIT(dev);
566 1.20 mycroft mode = STMODE(dev);
567 1.20 mycroft st = stcd.cd_devs[unit];
568 1.20 mycroft sc_link = st->sc_link;
569 1.20 mycroft
570 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB1, ("closing\n"));
571 1.20 mycroft if ((st->flags & (ST_WRITTEN | ST_FM_WRITTEN)) == ST_WRITTEN)
572 1.20 mycroft st_write_filemarks(st, 1, 0);
573 1.20 mycroft switch (mode & 0x3) {
574 1.20 mycroft case 0:
575 1.20 mycroft case 3: /* for now */
576 1.20 mycroft st_unmount(st, NOEJECT);
577 1.20 mycroft break;
578 1.20 mycroft case 1:
579 1.20 mycroft /* leave mounted unless media seems to have been removed */
580 1.20 mycroft if (!(sc_link->flags & SDEV_MEDIA_LOADED))
581 1.20 mycroft st_unmount(st, NOEJECT);
582 1.20 mycroft break;
583 1.20 mycroft case 2:
584 1.20 mycroft st_unmount(st, EJECT);
585 1.20 mycroft break;
586 1.20 mycroft }
587 1.20 mycroft sc_link->flags &= ~SDEV_OPEN;
588 1.20 mycroft st->flags &= ~ST_OPEN;
589 1.20 mycroft return 0;
590 1.20 mycroft }
591 1.1 cgd
592 1.20 mycroft /*
593 1.20 mycroft * Start a new mount session.
594 1.20 mycroft * Copy in all the default parameters from the selected device mode.
595 1.20 mycroft * and try guess any that seem to be defaulted.
596 1.20 mycroft */
597 1.20 mycroft int
598 1.20 mycroft st_mount_tape(dev, flags)
599 1.20 mycroft dev_t dev;
600 1.20 mycroft u_int flags;
601 1.20 mycroft {
602 1.20 mycroft int unit;
603 1.20 mycroft u_int mode, dsty;
604 1.20 mycroft struct st_data *st;
605 1.20 mycroft struct scsi_link *sc_link;
606 1.20 mycroft int error = 0;
607 1.1 cgd
608 1.20 mycroft unit = STUNIT(dev);
609 1.20 mycroft mode = STMODE(dev);
610 1.20 mycroft dsty = STDSTY(dev);
611 1.20 mycroft st = stcd.cd_devs[unit];
612 1.20 mycroft sc_link = st->sc_link;
613 1.1 cgd
614 1.20 mycroft if (st->flags & ST_MOUNTED)
615 1.20 mycroft return 0;
616 1.1 cgd
617 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB1, ("mounting\n "));
618 1.20 mycroft st->flags |= ST_NEW_MOUNT;
619 1.20 mycroft st->quirks = st->drive_quirks | st->modes[dsty].quirks;
620 1.20 mycroft /*
621 1.20 mycroft * If the media is new, then make sure we give it a chance to
622 1.20 mycroft * to do a 'load' instruction. (We assume it is new.)
623 1.20 mycroft */
624 1.20 mycroft if (error = st_load(st, LD_LOAD, 0))
625 1.20 mycroft return error;
626 1.20 mycroft /*
627 1.20 mycroft * Throw another dummy instruction to catch
628 1.20 mycroft * 'Unit attention' errors. Some drives appear to give
629 1.20 mycroft * these after doing a Load instruction.
630 1.20 mycroft * (noteably some DAT drives)
631 1.20 mycroft */
632 1.20 mycroft scsi_test_unit_ready(sc_link, SCSI_SILENT);
633 1.1 cgd
634 1.3 deraadt /*
635 1.20 mycroft * Some devices can't tell you much until they have been
636 1.20 mycroft * asked to look at the media. This quirk does this.
637 1.20 mycroft */
638 1.20 mycroft if (st->quirks & ST_Q_SNS_HLP)
639 1.20 mycroft if (error = st_touch_tape(st))
640 1.20 mycroft return error;
641 1.20 mycroft /*
642 1.3 deraadt * Load the physical device parameters
643 1.20 mycroft * loads: blkmin, blkmax
644 1.20 mycroft */
645 1.20 mycroft if (error = st_rd_blk_lim(st, 0))
646 1.20 mycroft return error;
647 1.20 mycroft /*
648 1.20 mycroft * Load the media dependent parameters
649 1.20 mycroft * includes: media_blksiz,media_density,numblks
650 1.20 mycroft * As we have a tape in, it should be reflected here.
651 1.20 mycroft * If not you may need the "quirk" above.
652 1.20 mycroft */
653 1.20 mycroft if (error = st_mode_sense(st, 0))
654 1.20 mycroft return error;
655 1.20 mycroft /*
656 1.20 mycroft * If we have gained a permanent density from somewhere,
657 1.20 mycroft * then use it in preference to the one supplied by
658 1.20 mycroft * default by the driver.
659 1.3 deraadt */
660 1.20 mycroft if (st->modeflags[dsty] & (DENSITY_SET_BY_QUIRK | DENSITY_SET_BY_USER))
661 1.20 mycroft st->density = st->modes[dsty].density;
662 1.20 mycroft else
663 1.20 mycroft st->density = st->media_density;
664 1.20 mycroft /*
665 1.20 mycroft * If we have gained a permanent blocksize
666 1.20 mycroft * then use it in preference to the one supplied by
667 1.20 mycroft * default by the driver.
668 1.20 mycroft */
669 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
670 1.20 mycroft if (st->modeflags[dsty] & (BLKSIZE_SET_BY_QUIRK | BLKSIZE_SET_BY_USER)) {
671 1.20 mycroft st->blksiz = st->modes[dsty].blksiz;
672 1.20 mycroft if (st->blksiz)
673 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
674 1.20 mycroft } else {
675 1.20 mycroft if (error = st_decide_mode(st, FALSE))
676 1.20 mycroft return error;
677 1.20 mycroft }
678 1.20 mycroft if (error = st_mode_select(st, 0)) {
679 1.20 mycroft printf("%s: cannot set selected mode\n", st->sc_dev.dv_xname);
680 1.20 mycroft return error;
681 1.20 mycroft }
682 1.20 mycroft scsi_prevent(sc_link, PR_PREVENT, 0); /* who cares if it fails? */
683 1.20 mycroft st->flags &= ~ST_NEW_MOUNT;
684 1.20 mycroft st->flags |= ST_MOUNTED;
685 1.20 mycroft sc_link->flags |= SDEV_MEDIA_LOADED; /* move earlier? */
686 1.1 cgd
687 1.20 mycroft return 0;
688 1.1 cgd }
689 1.1 cgd
690 1.3 deraadt /*
691 1.20 mycroft * End the present mount session.
692 1.20 mycroft * Rewind, and optionally eject the tape.
693 1.20 mycroft * Reset various flags to indicate that all new
694 1.20 mycroft * operations require another mount operation
695 1.20 mycroft */
696 1.20 mycroft void
697 1.20 mycroft st_unmount(st, eject)
698 1.20 mycroft struct st_data *st;
699 1.20 mycroft boolean eject;
700 1.1 cgd {
701 1.20 mycroft struct scsi_link *sc_link = st->sc_link;
702 1.20 mycroft int nmarks;
703 1.20 mycroft
704 1.20 mycroft if (!(st->flags & ST_MOUNTED))
705 1.20 mycroft return;
706 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB1, ("unmounting\n"));
707 1.20 mycroft st_chkeod(st, FALSE, &nmarks, SCSI_SILENT);
708 1.20 mycroft st_rewind(st, FALSE, SCSI_SILENT);
709 1.20 mycroft scsi_prevent(sc_link, PR_ALLOW, SCSI_SILENT);
710 1.20 mycroft if (eject)
711 1.20 mycroft st_load(st, LD_UNLOAD, SCSI_SILENT);
712 1.20 mycroft st->flags &= ~(ST_MOUNTED | ST_NEW_MOUNT);
713 1.20 mycroft sc_link->flags &= ~SDEV_MEDIA_LOADED;
714 1.20 mycroft }
715 1.20 mycroft
716 1.20 mycroft /*
717 1.20 mycroft * Given all we know about the device, media, mode, 'quirks' and
718 1.20 mycroft * initial operation, make a decision as to how we should be set
719 1.20 mycroft * to run (regarding blocking and EOD marks)
720 1.20 mycroft */
721 1.20 mycroft int
722 1.20 mycroft st_decide_mode(st, first_read)
723 1.3 deraadt struct st_data *st;
724 1.20 mycroft boolean first_read;
725 1.20 mycroft {
726 1.20 mycroft #ifdef SCSIDEBUG
727 1.20 mycroft struct scsi_link *sc_link = st->sc_link;
728 1.20 mycroft #endif
729 1.20 mycroft
730 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB2, ("starting block mode decision\n"));
731 1.20 mycroft
732 1.20 mycroft /*
733 1.20 mycroft * If the user hasn't already specified fixed or variable-length
734 1.20 mycroft * blocks and the block size (zero if variable-length), we'll
735 1.20 mycroft * have to try to figure them out ourselves.
736 1.20 mycroft *
737 1.20 mycroft * Our first shot at a method is, "The quirks made me do it!"
738 1.20 mycroft */
739 1.20 mycroft switch (st->quirks & (ST_Q_FORCE_FIXED_MODE | ST_Q_FORCE_VAR_MODE)) {
740 1.20 mycroft case (ST_Q_FORCE_FIXED_MODE | ST_Q_FORCE_VAR_MODE):
741 1.20 mycroft printf("%s: bad quirks\n", st->sc_dev.dv_xname);
742 1.20 mycroft return EINVAL;
743 1.20 mycroft case ST_Q_FORCE_FIXED_MODE: /*specified fixed, but not what size */
744 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
745 1.20 mycroft if (st->blkmin && (st->blkmin == st->blkmax))
746 1.20 mycroft st->blksiz = st->blkmin;
747 1.20 mycroft else if (st->media_blksiz > 0)
748 1.20 mycroft st->blksiz = st->media_blksiz;
749 1.20 mycroft else
750 1.20 mycroft st->blksiz = DEF_FIXED_BSIZE;
751 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3, ("Quirks force fixed mode(%d)\n",
752 1.20 mycroft st->blksiz));
753 1.20 mycroft goto done;
754 1.20 mycroft case ST_Q_FORCE_VAR_MODE:
755 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
756 1.20 mycroft st->blksiz = 0;
757 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3, ("Quirks force variable mode\n"));
758 1.20 mycroft goto done;
759 1.20 mycroft }
760 1.1 cgd
761 1.20 mycroft /*
762 1.20 mycroft * If the drive can only handle fixed-length blocks and only at
763 1.20 mycroft * one size, perhaps we should just do that.
764 1.20 mycroft */
765 1.20 mycroft if (st->blkmin && (st->blkmin == st->blkmax)) {
766 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
767 1.20 mycroft st->blksiz = st->blkmin;
768 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3,
769 1.20 mycroft ("blkmin == blkmax of %d\n", st->blkmin));
770 1.20 mycroft goto done;
771 1.20 mycroft }
772 1.20 mycroft /*
773 1.20 mycroft * If the tape density mandates (or even suggests) use of fixed
774 1.20 mycroft * or variable-length blocks, comply.
775 1.20 mycroft */
776 1.20 mycroft switch (st->density) {
777 1.20 mycroft case HALFINCH_800:
778 1.20 mycroft case HALFINCH_1600:
779 1.20 mycroft case HALFINCH_6250:
780 1.20 mycroft case DDS:
781 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
782 1.20 mycroft st->blksiz = 0;
783 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3, ("density specified variable\n"));
784 1.20 mycroft goto done;
785 1.20 mycroft case QIC_11:
786 1.20 mycroft case QIC_24:
787 1.20 mycroft case QIC_120:
788 1.20 mycroft case QIC_150:
789 1.20 mycroft case QIC_525:
790 1.20 mycroft case QIC_1320:
791 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
792 1.20 mycroft if (st->media_blksiz > 0)
793 1.20 mycroft st->blksiz = st->media_blksiz;
794 1.20 mycroft else
795 1.20 mycroft st->blksiz = DEF_FIXED_BSIZE;
796 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3, ("density specified fixed\n"));
797 1.20 mycroft goto done;
798 1.20 mycroft }
799 1.20 mycroft /*
800 1.20 mycroft * If we're about to read the tape, perhaps we should choose
801 1.20 mycroft * fixed or variable-length blocks and block size according to
802 1.20 mycroft * what the drive found on the tape.
803 1.20 mycroft */
804 1.20 mycroft if (first_read &&
805 1.20 mycroft (!(st->quirks & ST_Q_BLKSIZ) || (st->media_blksiz == 0) ||
806 1.20 mycroft (st->media_blksiz == DEF_FIXED_BSIZE) ||
807 1.20 mycroft (st->media_blksiz == 1024))) {
808 1.20 mycroft if (st->media_blksiz == 0)
809 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
810 1.20 mycroft else
811 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
812 1.20 mycroft st->blksiz = st->media_blksiz;
813 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3,
814 1.20 mycroft ("Used media_blksiz of %d\n", st->media_blksiz));
815 1.20 mycroft goto done;
816 1.20 mycroft }
817 1.20 mycroft /*
818 1.20 mycroft * We're getting no hints from any direction. Choose variable-
819 1.20 mycroft * length blocks arbitrarily.
820 1.20 mycroft */
821 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
822 1.20 mycroft st->blksiz = 0;
823 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3,
824 1.20 mycroft ("Give up and default to variable mode\n"));
825 1.20 mycroft done:
826 1.3 deraadt
827 1.20 mycroft /*
828 1.20 mycroft * Decide whether or not to write two file marks to signify end-
829 1.20 mycroft * of-data. Make the decision as a function of density. If
830 1.20 mycroft * the decision is not to use a second file mark, the SCSI BLANK
831 1.20 mycroft * CHECK condition code will be recognized as end-of-data when
832 1.20 mycroft * first read.
833 1.20 mycroft * (I think this should be a by-product of fixed/variable..julian)
834 1.20 mycroft */
835 1.20 mycroft switch (st->density) {
836 1.20 mycroft /* case 8 mm: What is the SCSI density code for 8 mm, anyway? */
837 1.20 mycroft case QIC_11:
838 1.20 mycroft case QIC_24:
839 1.20 mycroft case QIC_120:
840 1.20 mycroft case QIC_150:
841 1.20 mycroft case QIC_525:
842 1.20 mycroft case QIC_1320:
843 1.20 mycroft st->flags &= ~ST_2FM_AT_EOD;
844 1.1 cgd break;
845 1.1 cgd default:
846 1.20 mycroft st->flags |= ST_2FM_AT_EOD;
847 1.1 cgd }
848 1.3 deraadt return 0;
849 1.1 cgd }
850 1.1 cgd
851 1.3 deraadt /*
852 1.3 deraadt * trim the size of the transfer if needed,
853 1.3 deraadt * called by physio
854 1.20 mycroft * basically the smaller of our min and the scsi driver's
855 1.3 deraadt * minphys
856 1.3 deraadt */
857 1.20 mycroft void
858 1.20 mycroft stminphys(bp)
859 1.20 mycroft struct buf *bp;
860 1.1 cgd {
861 1.20 mycroft register struct st_data *st = stcd.cd_devs[STUNIT(bp->b_dev)];
862 1.20 mycroft
863 1.20 mycroft (st->sc_link->adapter->scsi_minphys) (bp);
864 1.1 cgd }
865 1.1 cgd
866 1.3 deraadt /*
867 1.3 deraadt * Actually translate the requested transfer into
868 1.3 deraadt * one the physical driver can understand
869 1.3 deraadt * The transfer is described by a buf and will include
870 1.3 deraadt * only one physical transfer.
871 1.3 deraadt */
872 1.20 mycroft void
873 1.20 mycroft ststrategy(bp)
874 1.20 mycroft struct buf *bp;
875 1.1 cgd {
876 1.20 mycroft struct buf *dp;
877 1.20 mycroft int unit;
878 1.20 mycroft int opri;
879 1.3 deraadt struct st_data *st;
880 1.1 cgd
881 1.20 mycroft unit = STUNIT(bp->b_dev);
882 1.20 mycroft st = stcd.cd_devs[unit];
883 1.20 mycroft SC_DEBUG(st->sc_link, SDEV_DB1,
884 1.20 mycroft ("ststrategy %d bytes @ blk %d\n", bp->b_bcount, bp->b_blkno));
885 1.20 mycroft /*
886 1.20 mycroft * If it's a null transfer, return immediatly
887 1.20 mycroft */
888 1.20 mycroft if (bp->b_bcount == 0) {
889 1.3 deraadt goto done;
890 1.20 mycroft }
891 1.3 deraadt /*
892 1.3 deraadt * Odd sized request on fixed drives are verboten
893 1.3 deraadt */
894 1.20 mycroft if (st->flags & ST_FIXEDBLOCKS) {
895 1.20 mycroft if (bp->b_bcount % st->blksiz) {
896 1.20 mycroft printf("%s: bad request, must be multiple of %d\n",
897 1.20 mycroft st->sc_dev.dv_xname, st->blksiz);
898 1.20 mycroft bp->b_error = EIO;
899 1.20 mycroft goto bad;
900 1.20 mycroft }
901 1.20 mycroft }
902 1.20 mycroft /*
903 1.20 mycroft * as are out-of-range requests on variable drives.
904 1.20 mycroft */
905 1.20 mycroft else if (bp->b_bcount < st->blkmin || bp->b_bcount > st->blkmax) {
906 1.20 mycroft printf("%s: bad request, must be between %d and %d\n",
907 1.20 mycroft st->sc_dev.dv_xname, st->blkmin, st->blkmax);
908 1.1 cgd bp->b_error = EIO;
909 1.1 cgd goto bad;
910 1.1 cgd }
911 1.1 cgd stminphys(bp);
912 1.1 cgd opri = splbio();
913 1.1 cgd
914 1.3 deraadt /*
915 1.20 mycroft * Place it in the queue of activities for this tape
916 1.20 mycroft * at the end (a bit silly because we only have on user..
917 1.20 mycroft * (but it could fork()))
918 1.3 deraadt */
919 1.20 mycroft dp = &st->buf_queue;
920 1.1 cgd bp->b_actf = NULL;
921 1.19 mycroft bp->b_actb = dp->b_actb;
922 1.19 mycroft *dp->b_actb = bp;
923 1.19 mycroft dp->b_actb = &bp->b_actf;
924 1.1 cgd
925 1.3 deraadt /*
926 1.3 deraadt * Tell the device to get going on the transfer if it's
927 1.20 mycroft * not doing anything, otherwise just wait for completion
928 1.20 mycroft * (All a bit silly if we're only allowing 1 open but..)
929 1.3 deraadt */
930 1.1 cgd ststart(unit);
931 1.1 cgd
932 1.1 cgd splx(opri);
933 1.1 cgd return;
934 1.1 cgd bad:
935 1.1 cgd bp->b_flags |= B_ERROR;
936 1.1 cgd done:
937 1.3 deraadt /*
938 1.3 deraadt * Correctly set the buf to indicate a completed xfer
939 1.3 deraadt */
940 1.1 cgd iodone(bp);
941 1.1 cgd return;
942 1.1 cgd }
943 1.1 cgd
944 1.3 deraadt /*
945 1.3 deraadt * ststart looks to see if there is a buf waiting for the device
946 1.3 deraadt * and that the device is not already busy. If both are true,
947 1.20 mycroft * It dequeues the buf and creates a scsi command to perform the
948 1.20 mycroft * transfer required. The transfer request will call scsi_done
949 1.3 deraadt * on completion, which will in turn call this routine again
950 1.3 deraadt * so that the next queued transfer is performed.
951 1.3 deraadt * The bufs are queued by the strategy routine (ststrategy)
952 1.3 deraadt *
953 1.3 deraadt * This routine is also called after other non-queued requests
954 1.3 deraadt * have been made of the scsi driver, to ensure that the queue
955 1.3 deraadt * continues to be drained.
956 1.20 mycroft * ststart() is called at splbio
957 1.20 mycroft */
958 1.20 mycroft void
959 1.20 mycroft ststart(unit)
960 1.20 mycroft int unit;
961 1.1 cgd {
962 1.20 mycroft struct st_data *st = stcd.cd_devs[unit];
963 1.20 mycroft struct scsi_link *sc_link = st->sc_link;
964 1.20 mycroft register struct buf *bp, *dp;
965 1.3 deraadt struct scsi_rw_tape cmd;
966 1.20 mycroft u_int flags;
967 1.3 deraadt
968 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB2, ("ststart "));
969 1.3 deraadt /*
970 1.3 deraadt * See if there is a buf to do and we are not already
971 1.3 deraadt * doing one
972 1.3 deraadt */
973 1.20 mycroft while (sc_link->opennings) {
974 1.20 mycroft /* if a special awaits, let it proceed first */
975 1.20 mycroft if (sc_link->flags & SDEV_WAITING) {
976 1.20 mycroft sc_link->flags &= ~SDEV_WAITING;
977 1.20 mycroft wakeup((caddr_t)sc_link);
978 1.20 mycroft return;
979 1.20 mycroft }
980 1.20 mycroft
981 1.20 mycroft bp = st->buf_queue.b_actf;
982 1.20 mycroft if (!bp)
983 1.20 mycroft return; /* no work to bother with */
984 1.20 mycroft if (dp = bp->b_actf)
985 1.20 mycroft dp->b_actb = bp->b_actb;
986 1.20 mycroft else
987 1.20 mycroft st->buf_queue.b_actb = bp->b_actb;
988 1.20 mycroft *bp->b_actb = dp;
989 1.20 mycroft
990 1.20 mycroft /*
991 1.20 mycroft * if the device has been unmounted byt the user
992 1.20 mycroft * then throw away all requests until done
993 1.20 mycroft */
994 1.20 mycroft if (!(st->flags & ST_MOUNTED) ||
995 1.20 mycroft !(sc_link->flags & SDEV_MEDIA_LOADED)) {
996 1.20 mycroft /* make sure that one implies the other.. */
997 1.20 mycroft sc_link->flags &= ~SDEV_MEDIA_LOADED;
998 1.20 mycroft goto badnews;
999 1.20 mycroft }
1000 1.20 mycroft /*
1001 1.20 mycroft * only FIXEDBLOCK devices have pending operations
1002 1.20 mycroft */
1003 1.20 mycroft if (st->flags & ST_FIXEDBLOCKS) {
1004 1.20 mycroft /*
1005 1.20 mycroft * If we are at a filemark but have not reported it yet
1006 1.20 mycroft * then we should report it now
1007 1.20 mycroft */
1008 1.20 mycroft if (st->flags & ST_AT_FILEMARK) {
1009 1.20 mycroft if ((bp->b_flags & B_READ) == B_WRITE) {
1010 1.20 mycroft /*
1011 1.20 mycroft * Handling of ST_AT_FILEMARK in
1012 1.20 mycroft * st_space will fill in the right file
1013 1.20 mycroft * mark count.
1014 1.20 mycroft * Back up over filemark
1015 1.20 mycroft */
1016 1.20 mycroft if (st_space(st, 0, SP_FILEMARKS, 0))
1017 1.20 mycroft goto badnews;
1018 1.20 mycroft } else {
1019 1.20 mycroft bp->b_resid = bp->b_bcount;
1020 1.20 mycroft bp->b_error = 0;
1021 1.20 mycroft bp->b_flags &= ~B_ERROR;
1022 1.20 mycroft st->flags &= ~ST_AT_FILEMARK;
1023 1.20 mycroft biodone(bp);
1024 1.20 mycroft continue; /* seek more work */
1025 1.20 mycroft }
1026 1.20 mycroft }
1027 1.20 mycroft /*
1028 1.20 mycroft * If we are at EIO (e.g. EOM) but have not reported it
1029 1.20 mycroft * yet then we should report it now
1030 1.20 mycroft */
1031 1.20 mycroft if (st->flags & ST_EIO_PENDING) {
1032 1.20 mycroft bp->b_resid = bp->b_bcount;
1033 1.20 mycroft bp->b_error = EIO;
1034 1.20 mycroft bp->b_flags |= B_ERROR;
1035 1.20 mycroft st->flags &= ~ST_EIO_PENDING;
1036 1.20 mycroft biodone(bp);
1037 1.20 mycroft continue; /* seek more work */
1038 1.20 mycroft }
1039 1.20 mycroft }
1040 1.20 mycroft /*
1041 1.20 mycroft * Fill out the scsi command
1042 1.20 mycroft */
1043 1.20 mycroft bzero(&cmd, sizeof(cmd));
1044 1.20 mycroft if ((bp->b_flags & B_READ) == B_WRITE) {
1045 1.20 mycroft cmd.op_code = WRITE_COMMAND_TAPE;
1046 1.20 mycroft st->flags &= ~ST_FM_WRITTEN;
1047 1.20 mycroft st->flags |= ST_WRITTEN;
1048 1.20 mycroft flags = SCSI_DATA_OUT;
1049 1.20 mycroft } else {
1050 1.20 mycroft cmd.op_code = READ_COMMAND_TAPE;
1051 1.20 mycroft flags = SCSI_DATA_IN;
1052 1.20 mycroft }
1053 1.20 mycroft /*
1054 1.20 mycroft * Handle "fixed-block-mode" tape drives by using the
1055 1.20 mycroft * block count instead of the length.
1056 1.20 mycroft */
1057 1.20 mycroft if (st->flags & ST_FIXEDBLOCKS) {
1058 1.20 mycroft cmd.byte2 |= SRWT_FIXED;
1059 1.20 mycroft lto3b(bp->b_bcount / st->blksiz, cmd.len);
1060 1.20 mycroft } else {
1061 1.20 mycroft lto3b(bp->b_bcount, cmd.len);
1062 1.20 mycroft }
1063 1.20 mycroft /*
1064 1.20 mycroft * go ask the adapter to do all this for us
1065 1.20 mycroft */
1066 1.20 mycroft if (scsi_scsi_cmd(sc_link, (struct scsi_generic *) &cmd,
1067 1.20 mycroft sizeof(cmd), (u_char *) bp->b_un.b_addr, bp->b_bcount, 0,
1068 1.20 mycroft 100000, bp, flags | SCSI_NOSLEEP) != SUCCESSFULLY_QUEUED) {
1069 1.20 mycroft badnews:
1070 1.20 mycroft printf("%s: not queued\n", st->sc_dev.dv_xname);
1071 1.20 mycroft bp->b_flags |= B_ERROR;
1072 1.20 mycroft bp->b_error = EIO;
1073 1.20 mycroft biodone(bp);
1074 1.20 mycroft }
1075 1.20 mycroft } /* go back and see if we can cram more work in.. */
1076 1.20 mycroft }
1077 1.1 cgd
1078 1.20 mycroft /*
1079 1.20 mycroft * Perform special action on behalf of the user;
1080 1.20 mycroft * knows about the internals of this device
1081 1.20 mycroft */
1082 1.20 mycroft int
1083 1.20 mycroft stioctl(dev, cmd, arg, flag)
1084 1.20 mycroft dev_t dev;
1085 1.20 mycroft int cmd;
1086 1.20 mycroft caddr_t arg;
1087 1.20 mycroft int flag;
1088 1.20 mycroft {
1089 1.20 mycroft int error = 0;
1090 1.20 mycroft int unit;
1091 1.20 mycroft int number, nmarks, dsty;
1092 1.20 mycroft u_int flags;
1093 1.20 mycroft struct st_data *st;
1094 1.20 mycroft u_int hold_blksiz;
1095 1.20 mycroft u_int hold_density;
1096 1.20 mycroft struct mtop *mt = (struct mtop *) arg;
1097 1.1 cgd
1098 1.3 deraadt /*
1099 1.20 mycroft * Find the device that the user is talking about
1100 1.3 deraadt */
1101 1.20 mycroft flags = 0; /* give error messages, act on errors etc. */
1102 1.20 mycroft unit = STUNIT(dev);
1103 1.20 mycroft dsty = STDSTY(dev);
1104 1.20 mycroft st = stcd.cd_devs[unit];
1105 1.20 mycroft hold_blksiz = st->blksiz;
1106 1.20 mycroft hold_density = st->density;
1107 1.20 mycroft
1108 1.20 mycroft switch (cmd) {
1109 1.20 mycroft
1110 1.20 mycroft case MTIOCGET: {
1111 1.20 mycroft struct mtget *g = (struct mtget *) arg;
1112 1.20 mycroft
1113 1.20 mycroft SC_DEBUG(st->sc_link, SDEV_DB1, ("[ioctl: get status]\n"));
1114 1.20 mycroft bzero(g, sizeof(struct mtget));
1115 1.20 mycroft g->mt_type = 0x7; /* Ultrix compat *//*? */
1116 1.20 mycroft g->mt_blksiz = st->blksiz;
1117 1.20 mycroft g->mt_density = st->density;
1118 1.20 mycroft g->mt_mblksiz[0] = st->modes[0].blksiz;
1119 1.20 mycroft g->mt_mblksiz[1] = st->modes[1].blksiz;
1120 1.20 mycroft g->mt_mblksiz[2] = st->modes[2].blksiz;
1121 1.20 mycroft g->mt_mblksiz[3] = st->modes[3].blksiz;
1122 1.20 mycroft g->mt_mdensity[0] = st->modes[0].density;
1123 1.20 mycroft g->mt_mdensity[1] = st->modes[1].density;
1124 1.20 mycroft g->mt_mdensity[2] = st->modes[2].density;
1125 1.20 mycroft g->mt_mdensity[3] = st->modes[3].density;
1126 1.20 mycroft break;
1127 1.1 cgd }
1128 1.20 mycroft case MTIOCTOP: {
1129 1.1 cgd
1130 1.20 mycroft SC_DEBUG(st->sc_link, SDEV_DB1,
1131 1.20 mycroft ("[ioctl: op=0x%x count=0x%x]\n", mt->mt_op, mt->mt_count));
1132 1.1 cgd
1133 1.1 cgd /* compat: in U*x it is a short */
1134 1.1 cgd number = mt->mt_count;
1135 1.20 mycroft switch ((short) (mt->mt_op)) {
1136 1.1 cgd case MTWEOF: /* write an end-of-file record */
1137 1.20 mycroft error = st_write_filemarks(st, number, flags);
1138 1.1 cgd break;
1139 1.20 mycroft case MTBSF: /* backward space file */
1140 1.20 mycroft number = -number;
1141 1.1 cgd case MTFSF: /* forward space file */
1142 1.20 mycroft error = st_chkeod(st, FALSE, &nmarks, flags);
1143 1.20 mycroft if (!error)
1144 1.20 mycroft error = st_space(st, number - nmarks,
1145 1.20 mycroft SP_FILEMARKS, flags);
1146 1.1 cgd break;
1147 1.20 mycroft case MTBSR: /* backward space record */
1148 1.20 mycroft number = -number;
1149 1.1 cgd case MTFSR: /* forward space record */
1150 1.20 mycroft error = st_chkeod(st, TRUE, &nmarks, flags);
1151 1.20 mycroft if (!error)
1152 1.20 mycroft error = st_space(st, number, SP_BLKS, flags);
1153 1.1 cgd break;
1154 1.1 cgd case MTREW: /* rewind */
1155 1.20 mycroft error = st_rewind(st, FALSE, flags);
1156 1.1 cgd break;
1157 1.1 cgd case MTOFFL: /* rewind and put the drive offline */
1158 1.20 mycroft st_unmount(st, EJECT);
1159 1.1 cgd break;
1160 1.1 cgd case MTNOP: /* no operation, sets status only */
1161 1.22 mycroft break;
1162 1.22 mycroft case MTEOM: /* forward space to end of media */
1163 1.22 mycroft error = st_chkeod(st, FALSE, &nmarks, flags);
1164 1.22 mycroft if (!error)
1165 1.22 mycroft error = st_space(st, 1, SP_EOM, flags);
1166 1.22 mycroft break;
1167 1.1 cgd case MTCACHE: /* enable controller cache */
1168 1.1 cgd case MTNOCACHE: /* disable controller cache */
1169 1.1 cgd break;
1170 1.20 mycroft case MTSETBSIZ: /* Set block size for device */
1171 1.20 mycroft #ifdef NOTYET
1172 1.20 mycroft if (!(st->flags & ST_NEW_MOUNT)) {
1173 1.20 mycroft uprintf("re-mount tape before changing blocksize");
1174 1.20 mycroft error = EINVAL;
1175 1.20 mycroft break;
1176 1.20 mycroft }
1177 1.20 mycroft #endif
1178 1.20 mycroft if (number == 0) {
1179 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
1180 1.20 mycroft } else {
1181 1.20 mycroft if ((st->blkmin || st->blkmax) &&
1182 1.20 mycroft (number < st->blkmin ||
1183 1.20 mycroft number > st->blkmax)) {
1184 1.20 mycroft error = EINVAL;
1185 1.20 mycroft break;
1186 1.20 mycroft }
1187 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
1188 1.20 mycroft }
1189 1.20 mycroft st->blksiz = number;
1190 1.20 mycroft st->flags |= ST_BLOCK_SET; /*XXX */
1191 1.20 mycroft goto try_new_value;
1192 1.20 mycroft
1193 1.20 mycroft case MTSETDNSTY: /* Set density for device and mode */
1194 1.20 mycroft if (number > SCSI_2_MAX_DENSITY_CODE)
1195 1.20 mycroft error = EINVAL;
1196 1.20 mycroft else
1197 1.20 mycroft st->density = number;
1198 1.20 mycroft goto try_new_value;
1199 1.20 mycroft
1200 1.1 cgd default:
1201 1.20 mycroft error = EINVAL;
1202 1.1 cgd }
1203 1.1 cgd break;
1204 1.20 mycroft }
1205 1.1 cgd case MTIOCIEOT:
1206 1.1 cgd case MTIOCEEOT:
1207 1.20 mycroft break;
1208 1.20 mycroft default:
1209 1.20 mycroft if (STMODE(dev) == CTLMODE)
1210 1.20 mycroft error = scsi_do_ioctl(st->sc_link,cmd,arg,flag);
1211 1.20 mycroft else
1212 1.20 mycroft error = ENOTTY;
1213 1.1 cgd break;
1214 1.1 cgd }
1215 1.20 mycroft return error;
1216 1.20 mycroft /*-----------------------------*/
1217 1.20 mycroft try_new_value:
1218 1.20 mycroft /*
1219 1.20 mycroft * Check that the mode being asked for is aggreeable to the
1220 1.20 mycroft * drive. If not, put it back the way it was.
1221 1.20 mycroft */
1222 1.20 mycroft if (error = st_mode_select(st, 0)) { /* put it back as it was */
1223 1.20 mycroft printf("%s: cannot set selected mode\n", st->sc_dev.dv_xname);
1224 1.20 mycroft st->density = hold_density;
1225 1.20 mycroft st->blksiz = hold_blksiz;
1226 1.20 mycroft if (st->blksiz)
1227 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
1228 1.20 mycroft else
1229 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
1230 1.20 mycroft return error;
1231 1.20 mycroft }
1232 1.20 mycroft /*
1233 1.20 mycroft * As the drive liked it, if we are setting a new default,
1234 1.20 mycroft * set it into the structures as such.
1235 1.20 mycroft *
1236 1.20 mycroft * The means for deciding this are not finalised yet
1237 1.20 mycroft */
1238 1.20 mycroft if (STMODE(dev) == 0x03) {
1239 1.20 mycroft /* special mode */
1240 1.20 mycroft /* XXX */
1241 1.20 mycroft switch ((short) (mt->mt_op)) {
1242 1.20 mycroft case MTSETBSIZ:
1243 1.20 mycroft st->modes[dsty].blksiz = st->blksiz;
1244 1.20 mycroft st->modeflags[dsty] |= BLKSIZE_SET_BY_USER;
1245 1.20 mycroft break;
1246 1.20 mycroft case MTSETDNSTY:
1247 1.20 mycroft st->modes[dsty].density = st->density;
1248 1.20 mycroft st->modeflags[dsty] |= DENSITY_SET_BY_USER;
1249 1.20 mycroft break;
1250 1.20 mycroft }
1251 1.20 mycroft }
1252 1.20 mycroft return 0;
1253 1.1 cgd }
1254 1.1 cgd
1255 1.3 deraadt /*
1256 1.20 mycroft * Do a synchronous read.
1257 1.20 mycroft */
1258 1.20 mycroft int
1259 1.20 mycroft st_read(st, buf, size, flags)
1260 1.20 mycroft struct st_data *st;
1261 1.20 mycroft u_int size;
1262 1.20 mycroft u_int flags;
1263 1.20 mycroft char *buf;
1264 1.1 cgd {
1265 1.20 mycroft struct scsi_rw_tape scsi_cmd;
1266 1.1 cgd
1267 1.20 mycroft /*
1268 1.20 mycroft * If it's a null transfer, return immediatly
1269 1.20 mycroft */
1270 1.20 mycroft if (size == 0)
1271 1.20 mycroft return 0;
1272 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1273 1.20 mycroft scsi_cmd.op_code = READ_COMMAND_TAPE;
1274 1.20 mycroft if (st->flags & ST_FIXEDBLOCKS) {
1275 1.20 mycroft scsi_cmd.byte2 |= SRWT_FIXED;
1276 1.20 mycroft lto3b(size / (st->blksiz ? st->blksiz : DEF_FIXED_BSIZE),
1277 1.20 mycroft scsi_cmd.len);
1278 1.20 mycroft } else
1279 1.20 mycroft lto3b(size, scsi_cmd.len);
1280 1.20 mycroft return scsi_scsi_cmd(st->sc_link, (struct scsi_generic *) &scsi_cmd,
1281 1.20 mycroft sizeof(scsi_cmd), (u_char *) buf, size, 0, 100000, NULL,
1282 1.20 mycroft flags | SCSI_DATA_IN);
1283 1.1 cgd }
1284 1.1 cgd
1285 1.1 cgd #ifdef __STDC__
1286 1.20 mycroft #define b2tol(a) (((unsigned)(a##_1) << 8) + (unsigned)a##_0)
1287 1.1 cgd #else
1288 1.20 mycroft #define b2tol(a) (((unsigned)(a/**/_1) << 8) + (unsigned)a/**/_0)
1289 1.1 cgd #endif
1290 1.1 cgd
1291 1.3 deraadt /*
1292 1.3 deraadt * Ask the drive what it's min and max blk sizes are.
1293 1.20 mycroft */
1294 1.20 mycroft int
1295 1.20 mycroft st_rd_blk_lim(st, flags)
1296 1.20 mycroft struct st_data *st;
1297 1.20 mycroft u_int flags;
1298 1.1 cgd {
1299 1.3 deraadt struct scsi_blk_limits scsi_cmd;
1300 1.1 cgd struct scsi_blk_limits_data scsi_blkl;
1301 1.20 mycroft int error;
1302 1.20 mycroft struct scsi_link *sc_link = st->sc_link;
1303 1.3 deraadt
1304 1.3 deraadt /*
1305 1.3 deraadt * First check if we have it all loaded
1306 1.3 deraadt */
1307 1.20 mycroft if ((sc_link->flags & SDEV_MEDIA_LOADED))
1308 1.20 mycroft return 0;
1309 1.3 deraadt
1310 1.3 deraadt /*
1311 1.3 deraadt * do a 'Read Block Limits'
1312 1.3 deraadt */
1313 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1314 1.1 cgd scsi_cmd.op_code = READ_BLK_LIMITS;
1315 1.1 cgd
1316 1.3 deraadt /*
1317 1.20 mycroft * do the command, update the global values
1318 1.3 deraadt */
1319 1.20 mycroft if (error = scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
1320 1.20 mycroft sizeof(scsi_cmd), (u_char *) & scsi_blkl, sizeof(scsi_blkl),
1321 1.20 mycroft ST_RETRIES, 5000, NULL, flags | SCSI_DATA_IN))
1322 1.20 mycroft return error;
1323 1.3 deraadt
1324 1.1 cgd st->blkmin = b2tol(scsi_blkl.min_length);
1325 1.1 cgd st->blkmax = _3btol(&scsi_blkl.max_length_2);
1326 1.1 cgd
1327 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3,
1328 1.20 mycroft ("(%d <= blksiz <= %d)\n", st->blkmin, st->blkmax));
1329 1.20 mycroft return 0;
1330 1.1 cgd }
1331 1.3 deraadt
1332 1.3 deraadt /*
1333 1.3 deraadt * Get the scsi driver to send a full inquiry to the
1334 1.3 deraadt * device and use the results to fill out the global
1335 1.3 deraadt * parameter structure.
1336 1.20 mycroft *
1337 1.20 mycroft * called from:
1338 1.20 mycroft * attach
1339 1.20 mycroft * open
1340 1.20 mycroft * ioctl (to reset original blksize)
1341 1.20 mycroft */
1342 1.20 mycroft int
1343 1.20 mycroft st_mode_sense(st, flags)
1344 1.20 mycroft struct st_data *st;
1345 1.20 mycroft u_int flags;
1346 1.1 cgd {
1347 1.20 mycroft u_int scsi_sense_len;
1348 1.20 mycroft int error;
1349 1.20 mycroft char *scsi_sense_ptr;
1350 1.3 deraadt struct scsi_mode_sense scsi_cmd;
1351 1.20 mycroft struct scsi_sense {
1352 1.20 mycroft struct scsi_mode_header header;
1353 1.20 mycroft struct blk_desc blk_desc;
1354 1.20 mycroft } scsi_sense;
1355 1.20 mycroft
1356 1.20 mycroft struct scsi_sense_page_0 {
1357 1.20 mycroft struct scsi_mode_header header;
1358 1.20 mycroft struct blk_desc blk_desc;
1359 1.20 mycroft u_char sense_data[PAGE_0_SENSE_DATA_SIZE];
1360 1.20 mycroft /* Tandberg tape drives returns page 00
1361 1.20 mycroft * with the sense data, whether or not
1362 1.20 mycroft * you want it (ie the don't like you
1363 1.20 mycroft * saying you want anything less!!!!!)
1364 1.20 mycroft * They also expect page 00
1365 1.20 mycroft * back when you issue a mode select
1366 1.20 mycroft */
1367 1.20 mycroft } scsi_sense_page_0;
1368 1.20 mycroft struct scsi_link *sc_link = st->sc_link;
1369 1.3 deraadt
1370 1.3 deraadt /*
1371 1.20 mycroft * Define what sort of structure we're working with
1372 1.3 deraadt */
1373 1.20 mycroft if (st->quirks & ST_Q_NEEDS_PAGE_0) {
1374 1.20 mycroft scsi_sense_len = sizeof(scsi_sense_page_0);
1375 1.20 mycroft scsi_sense_ptr = (char *) &scsi_sense_page_0;
1376 1.20 mycroft } else {
1377 1.20 mycroft scsi_sense_len = sizeof(scsi_sense);
1378 1.20 mycroft scsi_sense_ptr = (char *) &scsi_sense;
1379 1.20 mycroft }
1380 1.3 deraadt /*
1381 1.20 mycroft * Set up a mode sense
1382 1.3 deraadt */
1383 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1384 1.1 cgd scsi_cmd.op_code = MODE_SENSE;
1385 1.20 mycroft scsi_cmd.length = scsi_sense_len;
1386 1.3 deraadt
1387 1.3 deraadt /*
1388 1.3 deraadt * do the command, but we don't need the results
1389 1.20 mycroft * just print them for our interest's sake, if asked,
1390 1.20 mycroft * or if we need it as a template for the mode select
1391 1.20 mycroft * store it away.
1392 1.20 mycroft */
1393 1.20 mycroft if (error = scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
1394 1.20 mycroft sizeof(scsi_cmd), (u_char *) scsi_sense_ptr, scsi_sense_len,
1395 1.20 mycroft ST_RETRIES, 5000, NULL, flags | SCSI_DATA_IN))
1396 1.20 mycroft return error;
1397 1.20 mycroft
1398 1.20 mycroft st->numblks = _3btol(((struct scsi_sense *)scsi_sense_ptr)->blk_desc.nblocks);
1399 1.20 mycroft st->media_blksiz = _3btol(((struct scsi_sense *)scsi_sense_ptr)->blk_desc.blklen);
1400 1.20 mycroft st->media_density = ((struct scsi_sense *) scsi_sense_ptr)->blk_desc.density;
1401 1.20 mycroft if (((struct scsi_sense *) scsi_sense_ptr)->header.dev_spec &
1402 1.20 mycroft SMH_DSP_WRITE_PROT)
1403 1.20 mycroft st->flags |= ST_READONLY;
1404 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3,
1405 1.20 mycroft ("density code 0x%x, %d-byte blocks, write-%s, ",
1406 1.20 mycroft st->media_density, st->media_blksiz,
1407 1.20 mycroft st->flags & ST_READONLY ? "protected" : "enabled"));
1408 1.20 mycroft SC_DEBUG(sc_link, SDEV_DB3,
1409 1.20 mycroft ("%sbuffered\n",
1410 1.20 mycroft ((struct scsi_sense *) scsi_sense_ptr)->header.dev_spec &
1411 1.20 mycroft SMH_DSP_BUFF_MODE ? "" : "un"));
1412 1.20 mycroft if (st->quirks & ST_Q_NEEDS_PAGE_0)
1413 1.20 mycroft bcopy(((struct scsi_sense_page_0 *) scsi_sense_ptr)->sense_data,
1414 1.20 mycroft st->sense_data,
1415 1.20 mycroft sizeof(((struct scsi_sense_page_0 *) scsi_sense_ptr)->sense_data));
1416 1.20 mycroft sc_link->flags |= SDEV_MEDIA_LOADED;
1417 1.20 mycroft return 0;
1418 1.1 cgd }
1419 1.1 cgd
1420 1.3 deraadt /*
1421 1.20 mycroft * Send a filled out parameter structure to the drive to
1422 1.20 mycroft * set it into the desire modes etc.
1423 1.20 mycroft */
1424 1.20 mycroft int
1425 1.20 mycroft st_mode_select(st, flags)
1426 1.20 mycroft struct st_data *st;
1427 1.20 mycroft u_int flags;
1428 1.1 cgd {
1429 1.20 mycroft u_int dat_len;
1430 1.20 mycroft char *dat_ptr;
1431 1.1 cgd struct scsi_mode_select scsi_cmd;
1432 1.20 mycroft struct dat {
1433 1.20 mycroft struct scsi_mode_header header;
1434 1.20 mycroft struct blk_desc blk_desc;
1435 1.3 deraadt } dat;
1436 1.20 mycroft struct dat_page_0 {
1437 1.20 mycroft struct scsi_mode_header header;
1438 1.20 mycroft struct blk_desc blk_desc;
1439 1.20 mycroft u_char sense_data[PAGE_0_SENSE_DATA_SIZE];
1440 1.20 mycroft } dat_page_0;
1441 1.3 deraadt
1442 1.3 deraadt /*
1443 1.20 mycroft * Define what sort of structure we're working with
1444 1.20 mycroft */
1445 1.20 mycroft if (st->quirks & ST_Q_NEEDS_PAGE_0) {
1446 1.20 mycroft dat_len = sizeof(dat_page_0);
1447 1.20 mycroft dat_ptr = (char *) &dat_page_0;
1448 1.20 mycroft } else {
1449 1.20 mycroft dat_len = sizeof(dat);
1450 1.20 mycroft dat_ptr = (char *) &dat;
1451 1.20 mycroft }
1452 1.20 mycroft /*
1453 1.3 deraadt * Set up for a mode select
1454 1.3 deraadt */
1455 1.20 mycroft bzero(dat_ptr, dat_len);
1456 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1457 1.1 cgd scsi_cmd.op_code = MODE_SELECT;
1458 1.20 mycroft scsi_cmd.length = dat_len;
1459 1.20 mycroft ((struct dat *) dat_ptr)->header.blk_desc_len = sizeof(struct blk_desc);
1460 1.20 mycroft ((struct dat *) dat_ptr)->header.dev_spec |= SMH_DSP_BUFF_MODE_ON;
1461 1.20 mycroft ((struct dat *) dat_ptr)->blk_desc.density = st->density;
1462 1.20 mycroft if (st->flags & ST_FIXEDBLOCKS)
1463 1.20 mycroft lto3b(st->blksiz, ((struct dat *) dat_ptr)->blk_desc.blklen);
1464 1.20 mycroft if (st->quirks & ST_Q_NEEDS_PAGE_0) {
1465 1.20 mycroft bcopy(st->sense_data,
1466 1.20 mycroft ((struct dat_page_0 *) dat_ptr)->sense_data,
1467 1.20 mycroft sizeof(((struct dat_page_0 *) dat_ptr)->sense_data));
1468 1.20 mycroft /* the Tandberg tapes need the block size to */
1469 1.20 mycroft /* be set on each mode sense/select. */
1470 1.20 mycroft }
1471 1.3 deraadt /*
1472 1.3 deraadt * do the command
1473 1.3 deraadt */
1474 1.20 mycroft return scsi_scsi_cmd(st->sc_link, (struct scsi_generic *) &scsi_cmd,
1475 1.20 mycroft sizeof(scsi_cmd), (u_char *) dat_ptr, dat_len, ST_RETRIES, 5000,
1476 1.20 mycroft NULL, flags | SCSI_DATA_OUT);
1477 1.1 cgd }
1478 1.1 cgd
1479 1.3 deraadt /*
1480 1.3 deraadt * skip N blocks/filemarks/seq filemarks/eom
1481 1.20 mycroft */
1482 1.20 mycroft int
1483 1.20 mycroft st_space(st, number, what, flags)
1484 1.20 mycroft struct st_data *st;
1485 1.20 mycroft u_int what;
1486 1.20 mycroft u_int flags;
1487 1.20 mycroft int number;
1488 1.1 cgd {
1489 1.20 mycroft int error;
1490 1.1 cgd struct scsi_space scsi_cmd;
1491 1.1 cgd
1492 1.20 mycroft switch (what) {
1493 1.20 mycroft case SP_BLKS:
1494 1.20 mycroft if (st->flags & ST_PER_ACTION) {
1495 1.20 mycroft if (number > 0) {
1496 1.20 mycroft st->flags &= ~ST_PER_ACTION;
1497 1.20 mycroft return EIO;
1498 1.20 mycroft } else if (number < 0) {
1499 1.20 mycroft if (st->flags & ST_AT_FILEMARK) {
1500 1.20 mycroft /*
1501 1.20 mycroft * Handling of ST_AT_FILEMARK
1502 1.20 mycroft * in st_space will fill in the
1503 1.20 mycroft * right file mark count.
1504 1.20 mycroft */
1505 1.20 mycroft error = st_space(st, 0, SP_FILEMARKS,
1506 1.20 mycroft flags);
1507 1.20 mycroft if (error)
1508 1.20 mycroft return error;
1509 1.20 mycroft }
1510 1.20 mycroft if (st->flags & ST_BLANK_READ) {
1511 1.20 mycroft st->flags &= ~ST_BLANK_READ;
1512 1.20 mycroft return EIO;
1513 1.20 mycroft }
1514 1.20 mycroft st->flags &= ~ST_EIO_PENDING;
1515 1.20 mycroft }
1516 1.20 mycroft }
1517 1.20 mycroft break;
1518 1.20 mycroft case SP_FILEMARKS:
1519 1.20 mycroft if (st->flags & ST_EIO_PENDING) {
1520 1.20 mycroft if (number > 0) {
1521 1.22 mycroft /* pretend we just discovered the error */
1522 1.20 mycroft st->flags &= ~ST_EIO_PENDING;
1523 1.20 mycroft return EIO;
1524 1.20 mycroft } else if (number < 0) {
1525 1.20 mycroft /* back away from the error */
1526 1.20 mycroft st->flags &= ~ST_EIO_PENDING;
1527 1.20 mycroft }
1528 1.20 mycroft }
1529 1.20 mycroft if (st->flags & ST_AT_FILEMARK) {
1530 1.20 mycroft st->flags &= ~ST_AT_FILEMARK;
1531 1.20 mycroft number--;
1532 1.20 mycroft }
1533 1.20 mycroft if ((st->flags & ST_BLANK_READ) && (number < 0)) {
1534 1.20 mycroft /* back away from unwritten tape */
1535 1.20 mycroft st->flags &= ~ST_BLANK_READ;
1536 1.20 mycroft number++; /* XXX dubious */
1537 1.20 mycroft }
1538 1.22 mycroft break;
1539 1.22 mycroft case SP_EOM:
1540 1.22 mycroft if (st->flags & ST_EIO_PENDING) {
1541 1.22 mycroft /* pretend we just discovered the error */
1542 1.22 mycroft st->flags &= ~ST_EIO_PENDING;
1543 1.22 mycroft return EIO;
1544 1.22 mycroft }
1545 1.22 mycroft if (st->flags & ST_AT_FILEMARK)
1546 1.22 mycroft st->flags &= ~ST_AT_FILEMARK;
1547 1.22 mycroft break;
1548 1.20 mycroft }
1549 1.20 mycroft if (number == 0)
1550 1.20 mycroft return 0;
1551 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1552 1.1 cgd scsi_cmd.op_code = SPACE;
1553 1.20 mycroft scsi_cmd.byte2 = what & SS_CODE;
1554 1.3 deraadt lto3b(number, scsi_cmd.number);
1555 1.20 mycroft return scsi_scsi_cmd(st->sc_link, (struct scsi_generic *) &scsi_cmd,
1556 1.20 mycroft sizeof(scsi_cmd), 0, 0, 0, 600000, NULL, flags);
1557 1.1 cgd }
1558 1.3 deraadt
1559 1.3 deraadt /*
1560 1.3 deraadt * write N filemarks
1561 1.20 mycroft */
1562 1.20 mycroft int
1563 1.20 mycroft st_write_filemarks(st, number, flags)
1564 1.20 mycroft struct st_data *st;
1565 1.20 mycroft u_int flags;
1566 1.20 mycroft int number;
1567 1.1 cgd {
1568 1.1 cgd struct scsi_write_filemarks scsi_cmd;
1569 1.1 cgd
1570 1.20 mycroft /*
1571 1.20 mycroft * It's hard to write a negative number of file marks.
1572 1.20 mycroft * Don't try.
1573 1.20 mycroft */
1574 1.20 mycroft if (number < 0)
1575 1.20 mycroft return EINVAL;
1576 1.20 mycroft switch (number) {
1577 1.20 mycroft case 0: /* really a command to sync the drive's buffers */
1578 1.20 mycroft break;
1579 1.20 mycroft case 1:
1580 1.20 mycroft if (st->flags & ST_FM_WRITTEN) /* already have one down */
1581 1.20 mycroft st->flags &= ~ST_WRITTEN;
1582 1.20 mycroft else
1583 1.20 mycroft st->flags |= ST_FM_WRITTEN;
1584 1.20 mycroft st->flags &= ~ST_PER_ACTION;
1585 1.20 mycroft break;
1586 1.20 mycroft default:
1587 1.20 mycroft st->flags &= ~(ST_PER_ACTION | ST_WRITTEN);
1588 1.20 mycroft }
1589 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1590 1.1 cgd scsi_cmd.op_code = WRITE_FILEMARKS;
1591 1.3 deraadt lto3b(number, scsi_cmd.number);
1592 1.20 mycroft return scsi_scsi_cmd(st->sc_link, (struct scsi_generic *) &scsi_cmd,
1593 1.20 mycroft sizeof(scsi_cmd), 0, 0, 0, 100000, NULL, flags);
1594 1.1 cgd }
1595 1.3 deraadt
1596 1.3 deraadt /*
1597 1.20 mycroft * Make sure the right number of file marks is on tape if the
1598 1.20 mycroft * tape has been written. If the position argument is true,
1599 1.20 mycroft * leave the tape positioned where it was originally.
1600 1.20 mycroft *
1601 1.20 mycroft * nmarks returns the number of marks to skip (or, if position
1602 1.20 mycroft * true, which were skipped) to get back original position.
1603 1.20 mycroft */
1604 1.20 mycroft int
1605 1.20 mycroft st_chkeod(st, position, nmarks, flags)
1606 1.20 mycroft struct st_data *st;
1607 1.20 mycroft boolean position;
1608 1.20 mycroft int *nmarks;
1609 1.20 mycroft u_int flags;
1610 1.1 cgd {
1611 1.20 mycroft int error;
1612 1.1 cgd
1613 1.20 mycroft switch (st->flags & (ST_WRITTEN | ST_FM_WRITTEN | ST_2FM_AT_EOD)) {
1614 1.20 mycroft default:
1615 1.20 mycroft *nmarks = 0;
1616 1.20 mycroft return 0;
1617 1.20 mycroft case ST_WRITTEN:
1618 1.20 mycroft case ST_WRITTEN | ST_FM_WRITTEN | ST_2FM_AT_EOD:
1619 1.20 mycroft *nmarks = 1;
1620 1.20 mycroft break;
1621 1.20 mycroft case ST_WRITTEN | ST_2FM_AT_EOD:
1622 1.20 mycroft *nmarks = 2;
1623 1.1 cgd }
1624 1.20 mycroft error = st_write_filemarks(st, *nmarks, flags);
1625 1.20 mycroft if (position && !error)
1626 1.20 mycroft error = st_space(st, -*nmarks, SP_FILEMARKS, flags);
1627 1.20 mycroft return error;
1628 1.1 cgd }
1629 1.3 deraadt
1630 1.3 deraadt /*
1631 1.20 mycroft * load/unload (with retension if true)
1632 1.20 mycroft */
1633 1.20 mycroft int
1634 1.20 mycroft st_load(st, type, flags)
1635 1.20 mycroft struct st_data *st;
1636 1.20 mycroft u_int type;
1637 1.20 mycroft u_int flags;
1638 1.1 cgd {
1639 1.20 mycroft struct scsi_load scsi_cmd;
1640 1.20 mycroft struct scsi_link *sc_link = st->sc_link;
1641 1.1 cgd
1642 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1643 1.20 mycroft if (type != LD_LOAD) {
1644 1.20 mycroft int error;
1645 1.20 mycroft int nmarks;
1646 1.20 mycroft
1647 1.20 mycroft error = st_chkeod(st, FALSE, &nmarks, flags);
1648 1.20 mycroft if (error)
1649 1.20 mycroft return error;
1650 1.20 mycroft sc_link->flags &= ~SDEV_MEDIA_LOADED;
1651 1.1 cgd }
1652 1.20 mycroft if (st->quirks & ST_Q_IGNORE_LOADS)
1653 1.20 mycroft return 0;
1654 1.20 mycroft scsi_cmd.op_code = LOAD_UNLOAD;
1655 1.20 mycroft scsi_cmd.how |= type;
1656 1.20 mycroft return scsi_scsi_cmd(st->sc_link, (struct scsi_generic *) &scsi_cmd,
1657 1.20 mycroft sizeof(scsi_cmd), 0, 0, ST_RETRIES, 300000, NULL, flags);
1658 1.1 cgd }
1659 1.3 deraadt
1660 1.3 deraadt /*
1661 1.3 deraadt * Rewind the device
1662 1.20 mycroft */
1663 1.20 mycroft int
1664 1.20 mycroft st_rewind(st, immed, flags)
1665 1.20 mycroft struct st_data *st;
1666 1.20 mycroft u_int flags;
1667 1.20 mycroft boolean immed;
1668 1.1 cgd {
1669 1.20 mycroft struct scsi_rewind scsi_cmd;
1670 1.20 mycroft int error;
1671 1.20 mycroft int nmarks;
1672 1.20 mycroft
1673 1.20 mycroft error = st_chkeod(st, FALSE, &nmarks, flags);
1674 1.20 mycroft if (error)
1675 1.20 mycroft return error;
1676 1.20 mycroft st->flags &= ~ST_PER_ACTION;
1677 1.1 cgd bzero(&scsi_cmd, sizeof(scsi_cmd));
1678 1.1 cgd scsi_cmd.op_code = REWIND;
1679 1.20 mycroft scsi_cmd.byte2 = immed ? SR_IMMED : 0;
1680 1.20 mycroft return scsi_scsi_cmd(st->sc_link, (struct scsi_generic *) &scsi_cmd,
1681 1.20 mycroft sizeof(scsi_cmd), 0, 0, ST_RETRIES, immed ? 5000 : 300000, NULL,
1682 1.20 mycroft flags);
1683 1.1 cgd }
1684 1.3 deraadt
1685 1.3 deraadt /*
1686 1.3 deraadt * Look at the returned sense and act on the error and detirmine
1687 1.3 deraadt * The unix error number to pass back... (0 = report no error)
1688 1.20 mycroft * (-1 = continue processing)
1689 1.20 mycroft */
1690 1.20 mycroft int
1691 1.20 mycroft st_interpret_sense(xs)
1692 1.20 mycroft struct scsi_xfer *xs;
1693 1.1 cgd {
1694 1.20 mycroft struct scsi_link *sc_link = xs->sc_link;
1695 1.20 mycroft struct scsi_sense_data *sense = &xs->sense;
1696 1.20 mycroft boolean silent = xs->flags & SCSI_SILENT;
1697 1.20 mycroft struct buf *bp = xs->bp;
1698 1.20 mycroft int unit = sc_link->dev_unit;
1699 1.20 mycroft struct st_data *st = stcd.cd_devs[unit];
1700 1.20 mycroft u_int key;
1701 1.20 mycroft int info;
1702 1.3 deraadt
1703 1.3 deraadt /*
1704 1.20 mycroft * Get the sense fields and work out what code
1705 1.3 deraadt */
1706 1.20 mycroft if (sense->error_code & SSD_ERRCODE_VALID)
1707 1.20 mycroft info = ntohl(*((int *) sense->ext.extended.info));
1708 1.20 mycroft else
1709 1.20 mycroft info = xs->datalen; /* bad choice if fixed blocks */
1710 1.20 mycroft if ((sense->error_code & SSD_ERRCODE) != 0x70)
1711 1.20 mycroft return -1; /* let the generic code handle it */
1712 1.20 mycroft if (st->flags & ST_FIXEDBLOCKS) {
1713 1.20 mycroft xs->resid = info * st->blksiz;
1714 1.20 mycroft if (sense->ext.extended.flags & SSD_EOM) {
1715 1.20 mycroft st->flags |= ST_EIO_PENDING;
1716 1.20 mycroft if (bp)
1717 1.20 mycroft bp->b_resid = xs->resid;
1718 1.20 mycroft }
1719 1.20 mycroft if (sense->ext.extended.flags & SSD_FILEMARK) {
1720 1.20 mycroft st->flags |= ST_AT_FILEMARK;
1721 1.20 mycroft if (bp)
1722 1.20 mycroft bp->b_resid = xs->resid;
1723 1.20 mycroft }
1724 1.20 mycroft if (sense->ext.extended.flags & SSD_ILI) {
1725 1.20 mycroft st->flags |= ST_EIO_PENDING;
1726 1.20 mycroft if (bp)
1727 1.20 mycroft bp->b_resid = xs->resid;
1728 1.20 mycroft if (sense->error_code & SSD_ERRCODE_VALID && !silent)
1729 1.20 mycroft printf("%s: block wrong size, %d blocks residual\n",
1730 1.20 mycroft st->sc_dev.dv_xname, info);
1731 1.3 deraadt
1732 1.20 mycroft /*
1733 1.20 mycroft * This quirk code helps the drive read
1734 1.20 mycroft * the first tape block, regardless of
1735 1.20 mycroft * format. That is required for these
1736 1.20 mycroft * drives to return proper MODE SENSE
1737 1.20 mycroft * information.
1738 1.20 mycroft */
1739 1.20 mycroft if ((st->quirks & ST_Q_SNS_HLP) &&
1740 1.20 mycroft !(sc_link->flags & SDEV_MEDIA_LOADED))
1741 1.20 mycroft st->blksiz -= 512;
1742 1.6 mycroft }
1743 1.3 deraadt /*
1744 1.20 mycroft * If no data was tranfered, do it immediatly
1745 1.3 deraadt */
1746 1.20 mycroft if (xs->resid >= xs->datalen) {
1747 1.20 mycroft if (st->flags & ST_EIO_PENDING)
1748 1.20 mycroft return EIO;
1749 1.20 mycroft if (st->flags & ST_AT_FILEMARK) {
1750 1.20 mycroft if (bp)
1751 1.20 mycroft bp->b_resid = xs->resid;
1752 1.20 mycroft return 0;
1753 1.20 mycroft }
1754 1.20 mycroft }
1755 1.20 mycroft } else { /* must be variable mode */
1756 1.20 mycroft xs->resid = xs->datalen; /* to be sure */
1757 1.20 mycroft if (sense->ext.extended.flags & SSD_EOM)
1758 1.20 mycroft return EIO;
1759 1.20 mycroft if (sense->ext.extended.flags & SSD_FILEMARK) {
1760 1.20 mycroft if (bp)
1761 1.20 mycroft bp->b_resid = bp->b_bcount;
1762 1.20 mycroft return 0;
1763 1.20 mycroft }
1764 1.20 mycroft if (sense->ext.extended.flags & SSD_ILI) {
1765 1.20 mycroft if (info < 0) {
1766 1.3 deraadt /*
1767 1.20 mycroft * the record was bigger than the read
1768 1.3 deraadt */
1769 1.20 mycroft if (!silent)
1770 1.20 mycroft printf("%s: %d-byte record too big\n",
1771 1.20 mycroft st->sc_dev.dv_xname,
1772 1.20 mycroft xs->datalen - info);
1773 1.20 mycroft return EIO;
1774 1.20 mycroft }
1775 1.20 mycroft xs->resid = info;
1776 1.20 mycroft if (bp)
1777 1.20 mycroft bp->b_resid = info;
1778 1.3 deraadt }
1779 1.20 mycroft }
1780 1.20 mycroft key = sense->ext.extended.flags & SSD_KEY;
1781 1.1 cgd
1782 1.20 mycroft if (key == 0x8) {
1783 1.20 mycroft /*
1784 1.20 mycroft * This quirk code helps the drive read the
1785 1.20 mycroft * first tape block, regardless of format. That
1786 1.20 mycroft * is required for these drives to return proper
1787 1.20 mycroft * MODE SENSE information.
1788 1.20 mycroft */
1789 1.20 mycroft if ((st->quirks & ST_Q_SNS_HLP) &&
1790 1.20 mycroft !(sc_link->flags & SDEV_MEDIA_LOADED)) {
1791 1.20 mycroft /* still starting */
1792 1.20 mycroft st->blksiz -= 512;
1793 1.20 mycroft } else if (!(st->flags & (ST_2FM_AT_EOD | ST_BLANK_READ))) {
1794 1.20 mycroft st->flags |= ST_BLANK_READ;
1795 1.20 mycroft xs->resid = xs->datalen;
1796 1.20 mycroft if (bp) {
1797 1.20 mycroft bp->b_resid = xs->resid;
1798 1.20 mycroft /* return an EOF */
1799 1.1 cgd }
1800 1.20 mycroft return 0;
1801 1.1 cgd }
1802 1.1 cgd }
1803 1.20 mycroft return -1; /* let the default/generic handler handle it */
1804 1.20 mycroft }
1805 1.20 mycroft
1806 1.20 mycroft /*
1807 1.20 mycroft * The quirk here is that the drive returns some value to st_mode_sense
1808 1.20 mycroft * incorrectly until the tape has actually passed by the head.
1809 1.20 mycroft *
1810 1.20 mycroft * The method is to set the drive to large fixed-block state (user-specified
1811 1.20 mycroft * density and 1024-byte blocks), then read and rewind to get it to sense the
1812 1.20 mycroft * tape. If that doesn't work, try 512-byte fixed blocks. If that doesn't
1813 1.20 mycroft * work, as a last resort, try variable- length blocks. The result will be
1814 1.20 mycroft * the ability to do an accurate st_mode_sense.
1815 1.20 mycroft *
1816 1.20 mycroft * We know we can do a rewind because we just did a load, which implies rewind.
1817 1.20 mycroft * Rewind seems preferable to space backward if we have a virgin tape.
1818 1.20 mycroft *
1819 1.20 mycroft * The rest of the code for this quirk is in ILI processing and BLANK CHECK
1820 1.20 mycroft * error processing, both part of st_interpret_sense.
1821 1.20 mycroft */
1822 1.20 mycroft int
1823 1.20 mycroft st_touch_tape(st)
1824 1.20 mycroft struct st_data *st;
1825 1.20 mycroft {
1826 1.20 mycroft char *buf;
1827 1.20 mycroft u_int readsiz;
1828 1.20 mycroft int error;
1829 1.20 mycroft
1830 1.20 mycroft buf = malloc(1024, M_TEMP, M_NOWAIT);
1831 1.20 mycroft if (!buf)
1832 1.20 mycroft return ENOMEM;
1833 1.20 mycroft
1834 1.20 mycroft if (error = st_mode_sense(st, 0))
1835 1.20 mycroft goto bad;
1836 1.20 mycroft st->blksiz = 1024;
1837 1.20 mycroft do {
1838 1.20 mycroft switch (st->blksiz) {
1839 1.20 mycroft case 512:
1840 1.20 mycroft case 1024:
1841 1.20 mycroft readsiz = st->blksiz;
1842 1.20 mycroft st->flags |= ST_FIXEDBLOCKS;
1843 1.20 mycroft break;
1844 1.20 mycroft default:
1845 1.20 mycroft readsiz = 1;
1846 1.20 mycroft st->flags &= ~ST_FIXEDBLOCKS;
1847 1.20 mycroft }
1848 1.20 mycroft if (error = st_mode_select(st, 0))
1849 1.20 mycroft goto bad;
1850 1.20 mycroft st_read(st, buf, readsiz, SCSI_SILENT);
1851 1.20 mycroft if (error = st_rewind(st, FALSE, 0)) {
1852 1.20 mycroft bad: free(buf, M_TEMP);
1853 1.20 mycroft return error;
1854 1.20 mycroft }
1855 1.20 mycroft } while (readsiz != 1 && readsiz > st->blksiz);
1856 1.20 mycroft free(buf, M_TEMP);
1857 1.3 deraadt return 0;
1858 1.1 cgd }
1859