2 * drivers/s390/char/tape_char.c
3 * character device frontend for tape device driver
5 * S390 and zSeries version
6 * Copyright IBM Corp. 2001,2006
7 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 * Michael Holzheu <holzheu@de.ibm.com>
9 * Tuan Ngo-Anh <ngoanh@de.ibm.com>
10 * Martin Schwidefsky <schwidefsky@de.ibm.com>
13 #define KMSG_COMPONENT "tape"
14 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
16 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/proc_fs.h>
19 #include <linux/mtio.h>
20 #include <linux/smp_lock.h>
21 #include <linux/compat.h>
23 #include <asm/uaccess.h>
25 #define TAPE_DBF_AREA tape_core_dbf
29 #include "tape_class.h"
31 #define TAPECHAR_MAJOR 0 /* get dynamic major */
34 * file operation structure for tape character frontend
36 static ssize_t
tapechar_read(struct file
*, char __user
*, size_t, loff_t
*);
37 static ssize_t
tapechar_write(struct file
*, const char __user
*, size_t, loff_t
*);
38 static int tapechar_open(struct inode
*,struct file
*);
39 static int tapechar_release(struct inode
*,struct file
*);
40 static long tapechar_ioctl(struct file
*, unsigned int, unsigned long);
42 static long tapechar_compat_ioctl(struct file
*, unsigned int, unsigned long);
45 static const struct file_operations tape_fops
=
48 .read
= tapechar_read
,
49 .write
= tapechar_write
,
50 .unlocked_ioctl
= tapechar_ioctl
,
52 .compat_ioctl
= tapechar_compat_ioctl
,
54 .open
= tapechar_open
,
55 .release
= tapechar_release
,
58 static int tapechar_major
= TAPECHAR_MAJOR
;
61 * This function is called for every new tapedevice
64 tapechar_setup_device(struct tape_device
* device
)
68 sprintf(device_name
, "ntibm%i", device
->first_minor
/ 2);
69 device
->nt
= register_tape_dev(
71 MKDEV(tapechar_major
, device
->first_minor
),
77 device
->rt
= register_tape_dev(
79 MKDEV(tapechar_major
, device
->first_minor
+ 1),
89 tapechar_cleanup_device(struct tape_device
*device
)
91 unregister_tape_dev(&device
->cdev
->dev
, device
->rt
);
93 unregister_tape_dev(&device
->cdev
->dev
, device
->nt
);
98 tapechar_check_idalbuffer(struct tape_device
*device
, size_t block_size
)
100 struct idal_buffer
*new;
102 if (device
->char_data
.idal_buf
!= NULL
&&
103 device
->char_data
.idal_buf
->size
== block_size
)
106 if (block_size
> MAX_BLOCKSIZE
) {
107 DBF_EVENT(3, "Invalid blocksize (%zd > %d)\n",
108 block_size
, MAX_BLOCKSIZE
);
112 /* The current idal buffer is not correct. Allocate a new one. */
113 new = idal_buffer_alloc(block_size
, 0);
117 if (device
->char_data
.idal_buf
!= NULL
)
118 idal_buffer_free(device
->char_data
.idal_buf
);
120 device
->char_data
.idal_buf
= new;
126 * Tape device read function
129 tapechar_read(struct file
*filp
, char __user
*data
, size_t count
, loff_t
*ppos
)
131 struct tape_device
*device
;
132 struct tape_request
*request
;
136 DBF_EVENT(6, "TCHAR:read\n");
137 device
= (struct tape_device
*) filp
->private_data
;
140 * If the tape isn't terminated yet, do it now. And since we then
141 * are at the end of the tape there wouldn't be anything to read
142 * anyways. So we return immediatly.
144 if(device
->required_tapemarks
) {
145 return tape_std_terminate_write(device
);
148 /* Find out block size to use */
149 if (device
->char_data
.block_size
!= 0) {
150 if (count
< device
->char_data
.block_size
) {
151 DBF_EVENT(3, "TCHAR:read smaller than block "
152 "size was requested\n");
155 block_size
= device
->char_data
.block_size
;
160 rc
= tapechar_check_idalbuffer(device
, block_size
);
164 #ifdef CONFIG_S390_TAPE_BLOCK
165 /* Changes position. */
166 device
->blk_data
.medium_changed
= 1;
169 DBF_EVENT(6, "TCHAR:nbytes: %lx\n", block_size
);
170 /* Let the discipline build the ccw chain. */
171 request
= device
->discipline
->read_block(device
, block_size
);
173 return PTR_ERR(request
);
175 rc
= tape_do_io(device
, request
);
177 rc
= block_size
- request
->rescnt
;
178 DBF_EVENT(6, "TCHAR:rbytes: %x\n", rc
);
179 /* Copy data from idal buffer to user space. */
180 if (idal_buffer_to_user(device
->char_data
.idal_buf
,
184 tape_free_request(request
);
189 * Tape device write function
192 tapechar_write(struct file
*filp
, const char __user
*data
, size_t count
, loff_t
*ppos
)
194 struct tape_device
*device
;
195 struct tape_request
*request
;
201 DBF_EVENT(6, "TCHAR:write\n");
202 device
= (struct tape_device
*) filp
->private_data
;
203 /* Find out block size and number of blocks */
204 if (device
->char_data
.block_size
!= 0) {
205 if (count
< device
->char_data
.block_size
) {
206 DBF_EVENT(3, "TCHAR:write smaller than block "
207 "size was requested\n");
210 block_size
= device
->char_data
.block_size
;
211 nblocks
= count
/ block_size
;
217 rc
= tapechar_check_idalbuffer(device
, block_size
);
221 #ifdef CONFIG_S390_TAPE_BLOCK
222 /* Changes position. */
223 device
->blk_data
.medium_changed
= 1;
226 DBF_EVENT(6,"TCHAR:nbytes: %lx\n", block_size
);
227 DBF_EVENT(6, "TCHAR:nblocks: %x\n", nblocks
);
228 /* Let the discipline build the ccw chain. */
229 request
= device
->discipline
->write_block(device
, block_size
);
231 return PTR_ERR(request
);
234 for (i
= 0; i
< nblocks
; i
++) {
235 /* Copy data from user space to idal buffer. */
236 if (idal_buffer_from_user(device
->char_data
.idal_buf
,
241 rc
= tape_do_io(device
, request
);
244 DBF_EVENT(6, "TCHAR:wbytes: %lx\n",
245 block_size
- request
->rescnt
);
246 written
+= block_size
- request
->rescnt
;
247 if (request
->rescnt
!= 0)
251 tape_free_request(request
);
254 * Ok, the device has no more space. It has NOT written
257 if (device
->discipline
->process_eov
)
258 device
->discipline
->process_eov(device
);
265 * After doing a write we always need two tapemarks to correctly
266 * terminate the tape (one to terminate the file, the second to
267 * flag the end of recorded data.
268 * Since process_eov positions the tape in front of the written
269 * tapemark it doesn't hurt to write two marks again.
272 device
->required_tapemarks
= 2;
274 return rc
? rc
: written
;
278 * Character frontend tape device open function.
281 tapechar_open (struct inode
*inode
, struct file
*filp
)
283 struct tape_device
*device
;
286 DBF_EVENT(6, "TCHAR:open: %i:%i\n",
287 imajor(filp
->f_path
.dentry
->d_inode
),
288 iminor(filp
->f_path
.dentry
->d_inode
));
290 if (imajor(filp
->f_path
.dentry
->d_inode
) != tapechar_major
)
293 minor
= iminor(filp
->f_path
.dentry
->d_inode
);
294 device
= tape_find_device(minor
/ TAPE_MINORS_PER_DEV
);
295 if (IS_ERR(device
)) {
296 DBF_EVENT(3, "TCHAR:open: tape_find_device() failed\n");
297 return PTR_ERR(device
);
300 rc
= tape_open(device
);
302 filp
->private_data
= device
;
303 nonseekable_open(inode
, filp
);
305 tape_put_device(device
);
311 * Character frontend tape device release function.
315 tapechar_release(struct inode
*inode
, struct file
*filp
)
317 struct tape_device
*device
;
319 DBF_EVENT(6, "TCHAR:release: %x\n", iminor(inode
));
320 device
= (struct tape_device
*) filp
->private_data
;
323 * If this is the rewinding tape minor then rewind. In that case we
324 * write all required tapemarks. Otherwise only one to terminate the
327 if ((iminor(inode
) & 1) != 0) {
328 if (device
->required_tapemarks
)
329 tape_std_terminate_write(device
);
330 tape_mtop(device
, MTREW
, 1);
332 if (device
->required_tapemarks
> 1) {
333 if (tape_mtop(device
, MTWEOF
, 1) == 0)
334 device
->required_tapemarks
--;
338 if (device
->char_data
.idal_buf
!= NULL
) {
339 idal_buffer_free(device
->char_data
.idal_buf
);
340 device
->char_data
.idal_buf
= NULL
;
342 tape_release(device
);
343 filp
->private_data
= NULL
;
344 tape_put_device(device
);
350 * Tape device io controls.
353 __tapechar_ioctl(struct tape_device
*device
,
354 unsigned int no
, unsigned long data
)
358 if (no
== MTIOCTOP
) {
361 if (copy_from_user(&op
, (char __user
*) data
, sizeof(op
)) != 0)
367 * Operations that change tape position should write final
382 #ifdef CONFIG_S390_TAPE_BLOCK
383 device
->blk_data
.medium_changed
= 1;
385 if (device
->required_tapemarks
)
386 tape_std_terminate_write(device
);
390 rc
= tape_mtop(device
, op
.mt_op
, op
.mt_count
);
392 if (op
.mt_op
== MTWEOF
&& rc
== 0) {
393 if (op
.mt_count
> device
->required_tapemarks
)
394 device
->required_tapemarks
= 0;
396 device
->required_tapemarks
-= op
.mt_count
;
400 if (no
== MTIOCPOS
) {
401 /* MTIOCPOS: query the tape position. */
404 rc
= tape_mtop(device
, MTTELL
, 1);
408 if (copy_to_user((char __user
*) data
, &pos
, sizeof(pos
)) != 0)
412 if (no
== MTIOCGET
) {
413 /* MTIOCGET: query the tape drive status. */
416 memset(&get
, 0, sizeof(get
));
417 get
.mt_type
= MT_ISUNKNOWN
;
418 get
.mt_resid
= 0 /* device->devstat.rescnt */;
419 get
.mt_dsreg
= device
->tape_state
;
420 /* FIXME: mt_gstat, mt_erreg, mt_fileno */
424 get
.mt_gstat
= device
->tape_generic_status
;
426 if (device
->medium_state
== MS_LOADED
) {
427 rc
= tape_mtop(device
, MTTELL
, 1);
433 get
.mt_gstat
|= GMT_BOT(~0);
438 if (copy_to_user((char __user
*) data
, &get
, sizeof(get
)) != 0)
443 /* Try the discipline ioctl function. */
444 if (device
->discipline
->ioctl_fn
== NULL
)
446 return device
->discipline
->ioctl_fn(device
, no
, data
);
450 tapechar_ioctl(struct file
*filp
, unsigned int no
, unsigned long data
)
452 struct tape_device
*device
;
455 DBF_EVENT(6, "TCHAR:ioct\n");
457 device
= (struct tape_device
*) filp
->private_data
;
458 mutex_lock(&device
->mutex
);
459 rc
= __tapechar_ioctl(device
, no
, data
);
460 mutex_unlock(&device
->mutex
);
466 tapechar_compat_ioctl(struct file
*filp
, unsigned int no
, unsigned long data
)
468 struct tape_device
*device
= filp
->private_data
;
469 int rval
= -ENOIOCTLCMD
;
472 /* The 'arg' argument of any ioctl function may only be used for
473 * pointers because of the compat pointer conversion.
474 * Consider this when adding new ioctls.
476 argp
= (unsigned long) compat_ptr(data
);
477 if (device
->discipline
->ioctl_fn
) {
478 mutex_lock(&device
->mutex
);
479 rval
= device
->discipline
->ioctl_fn(device
, no
, argp
);
480 mutex_unlock(&device
->mutex
);
487 #endif /* CONFIG_COMPAT */
490 * Initialize character device frontend.
497 if (alloc_chrdev_region(&dev
, 0, 256, "tape") != 0)
500 tapechar_major
= MAJOR(dev
);
511 unregister_chrdev_region(MKDEV(tapechar_major
, 0), 256);