blob: aaa5da2b3d66950943bd6584ca454d02ad2c23f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000 Jens Axboe <axboe@suse.de>
3 * Copyright (C) 2001-2004 Peter Osterlund <petero2@telia.com>
Thomas Maieradb92502006-12-08 02:36:10 -08004 * Copyright (C) 2006 Thomas Maier <balagi@justmail.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
8 *
Peter Osterlunda676f8d2005-09-13 01:25:27 -07009 * Packet writing layer for ATAPI and SCSI CD-RW, DVD+RW, DVD-RW and
10 * DVD-RAM devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Theory of operation:
13 *
Peter Osterlunda676f8d2005-09-13 01:25:27 -070014 * At the lowest level, there is the standard driver for the CD/DVD device,
15 * typically ide-cd.c or sr.c. This driver can handle read and write requests,
16 * but it doesn't know anything about the special restrictions that apply to
17 * packet writing. One restriction is that write requests must be aligned to
18 * packet boundaries on the physical media, and the size of a write request
19 * must be equal to the packet size. Another restriction is that a
20 * GPCMD_FLUSH_CACHE command has to be issued to the drive before a read
21 * command, if the previous command was a write.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
Peter Osterlunda676f8d2005-09-13 01:25:27 -070023 * The purpose of the packet writing driver is to hide these restrictions from
24 * higher layers, such as file systems, and present a block device that can be
25 * randomly read and written using 2kB-sized blocks.
26 *
27 * The lowest layer in the packet writing driver is the packet I/O scheduler.
28 * Its data is defined by the struct packet_iosched and includes two bio
29 * queues with pending read and write requests. These queues are processed
30 * by the pkt_iosched_process_queue() function. The write requests in this
31 * queue are already properly aligned and sized. This layer is responsible for
32 * issuing the flush cache commands and scheduling the I/O in a good order.
33 *
34 * The next layer transforms unaligned write requests to aligned writes. This
35 * transformation requires reading missing pieces of data from the underlying
36 * block device, assembling the pieces to full packets and queuing them to the
37 * packet I/O scheduler.
38 *
39 * At the top layer there is a custom make_request_fn function that forwards
40 * read requests directly to the iosched queue and puts write requests in the
41 * unaligned write queue. A kernel thread performs the necessary read
42 * gathering to convert the unaligned writes to aligned writes and then feeds
43 * them to the packet I/O scheduler.
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 *
45 *************************************************************************/
46
Joe Perches99481332013-09-11 14:25:52 -070047#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/pktcdvd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/module.h>
51#include <linux/types.h>
52#include <linux/kernel.h>
Arnd Bergmannf80a0ca2010-04-28 14:36:41 +020053#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/kthread.h>
55#include <linux/errno.h>
56#include <linux/spinlock.h>
57#include <linux/file.h>
58#include <linux/proc_fs.h>
59#include <linux/seq_file.h>
60#include <linux/miscdevice.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080061#include <linux/freezer.h>
Jes Sorensen1657f822006-03-23 03:00:25 -080062#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <scsi/scsi_cmnd.h>
65#include <scsi/scsi_ioctl.h>
Peter Osterlundcef289632006-02-20 18:28:01 -080066#include <scsi/scsi.h>
Thomas Maier32694852006-12-08 02:36:12 -080067#include <linux/debugfs.h>
68#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include <asm/uaccess.h>
71
Thomas Maier78220822006-10-04 02:15:28 -070072#define DRIVER_NAME "pktcdvd"
73
Joe Perchescd3f2cd2013-09-11 14:25:53 -070074#define pkt_dbg(level, fmt, ...) \
75do { \
76 if (level == 2 && PACKET_DEBUG >= 2) \
77 pr_notice("%s: " fmt, __func__, ##__VA_ARGS__); \
78 else if (level == 1 && PACKET_DEBUG >= 1) \
79 pr_notice(fmt, ##__VA_ARGS__); \
80} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#define MAX_SPEED 0xffff
83
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020084static DEFINE_MUTEX(pktcdvd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static struct pktcdvd_device *pkt_devs[MAX_WRITERS];
86static struct proc_dir_entry *pkt_proc;
Thomas Maieradd21662006-10-04 02:15:30 -070087static int pktdev_major;
Thomas Maier0a0fc962006-12-08 02:36:11 -080088static int write_congestion_on = PKT_WRITE_CONGESTION_ON;
89static int write_congestion_off = PKT_WRITE_CONGESTION_OFF;
Jes Sorensen1657f822006-03-23 03:00:25 -080090static struct mutex ctl_mutex; /* Serialize open/close/setup/teardown */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static mempool_t *psd_pool;
92
Thomas Maier32694852006-12-08 02:36:12 -080093static struct class *class_pktcdvd = NULL; /* /sys/class/pktcdvd */
GeunSik Limea5ffff2009-09-07 21:39:25 +090094static struct dentry *pkt_debugfs_root = NULL; /* /sys/kernel/debug/pktcdvd */
Thomas Maier32694852006-12-08 02:36:12 -080095
96/* forward declaration */
97static int pkt_setup_dev(dev_t dev, dev_t* pkt_dev);
98static int pkt_remove_dev(dev_t pkt_dev);
99static int pkt_seq_show(struct seq_file *m, void *p);
100
Joe Perches5323fb72013-09-11 14:25:51 -0700101static sector_t get_zone(sector_t sector, struct pktcdvd_device *pd)
102{
103 return (sector + pd->offset) & ~(sector_t)(pd->settings.size - 1);
104}
Thomas Maier32694852006-12-08 02:36:12 -0800105
106/*
107 * create and register a pktcdvd kernel object.
108 */
109static struct pktcdvd_kobj* pkt_kobj_create(struct pktcdvd_device *pd,
110 const char* name,
111 struct kobject* parent,
112 struct kobj_type* ktype)
113{
114 struct pktcdvd_kobj *p;
Greg Kroah-Hartman89c42602007-12-17 15:54:39 -0400115 int error;
116
Thomas Maier32694852006-12-08 02:36:12 -0800117 p = kzalloc(sizeof(*p), GFP_KERNEL);
118 if (!p)
119 return NULL;
Thomas Maier32694852006-12-08 02:36:12 -0800120 p->pd = pd;
Greg Kroah-Hartman89c42602007-12-17 15:54:39 -0400121 error = kobject_init_and_add(&p->kobj, ktype, parent, "%s", name);
122 if (error) {
Dave Youngd17a18d2007-12-17 16:20:00 -0800123 kobject_put(&p->kobj);
Thomas Maier32694852006-12-08 02:36:12 -0800124 return NULL;
Dave Youngd17a18d2007-12-17 16:20:00 -0800125 }
Greg Kroah-Hartman89c42602007-12-17 15:54:39 -0400126 kobject_uevent(&p->kobj, KOBJ_ADD);
Thomas Maier32694852006-12-08 02:36:12 -0800127 return p;
128}
129/*
130 * remove a pktcdvd kernel object.
131 */
132static void pkt_kobj_remove(struct pktcdvd_kobj *p)
133{
134 if (p)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800135 kobject_put(&p->kobj);
Thomas Maier32694852006-12-08 02:36:12 -0800136}
137/*
138 * default release function for pktcdvd kernel objects.
139 */
140static void pkt_kobj_release(struct kobject *kobj)
141{
142 kfree(to_pktcdvdkobj(kobj));
143}
144
145
146/**********************************************************
147 *
148 * sysfs interface for pktcdvd
149 * by (C) 2006 Thomas Maier <balagi@justmail.de>
150 *
151 **********************************************************/
152
153#define DEF_ATTR(_obj,_name,_mode) \
Tejun Heo7b595752007-06-14 03:45:17 +0900154 static struct attribute _obj = { .name = _name, .mode = _mode }
Thomas Maier32694852006-12-08 02:36:12 -0800155
156/**********************************************************
157 /sys/class/pktcdvd/pktcdvd[0-7]/
158 stat/reset
159 stat/packets_started
160 stat/packets_finished
161 stat/kb_written
162 stat/kb_read
163 stat/kb_read_gather
164 write_queue/size
165 write_queue/congestion_off
166 write_queue/congestion_on
167 **********************************************************/
168
169DEF_ATTR(kobj_pkt_attr_st1, "reset", 0200);
170DEF_ATTR(kobj_pkt_attr_st2, "packets_started", 0444);
171DEF_ATTR(kobj_pkt_attr_st3, "packets_finished", 0444);
172DEF_ATTR(kobj_pkt_attr_st4, "kb_written", 0444);
173DEF_ATTR(kobj_pkt_attr_st5, "kb_read", 0444);
174DEF_ATTR(kobj_pkt_attr_st6, "kb_read_gather", 0444);
175
176static struct attribute *kobj_pkt_attrs_stat[] = {
177 &kobj_pkt_attr_st1,
178 &kobj_pkt_attr_st2,
179 &kobj_pkt_attr_st3,
180 &kobj_pkt_attr_st4,
181 &kobj_pkt_attr_st5,
182 &kobj_pkt_attr_st6,
183 NULL
184};
185
186DEF_ATTR(kobj_pkt_attr_wq1, "size", 0444);
187DEF_ATTR(kobj_pkt_attr_wq2, "congestion_off", 0644);
188DEF_ATTR(kobj_pkt_attr_wq3, "congestion_on", 0644);
189
190static struct attribute *kobj_pkt_attrs_wqueue[] = {
191 &kobj_pkt_attr_wq1,
192 &kobj_pkt_attr_wq2,
193 &kobj_pkt_attr_wq3,
194 NULL
195};
196
Thomas Maier32694852006-12-08 02:36:12 -0800197static ssize_t kobj_pkt_show(struct kobject *kobj,
198 struct attribute *attr, char *data)
199{
200 struct pktcdvd_device *pd = to_pktcdvdkobj(kobj)->pd;
201 int n = 0;
202 int v;
203 if (strcmp(attr->name, "packets_started") == 0) {
204 n = sprintf(data, "%lu\n", pd->stats.pkt_started);
205
206 } else if (strcmp(attr->name, "packets_finished") == 0) {
207 n = sprintf(data, "%lu\n", pd->stats.pkt_ended);
208
209 } else if (strcmp(attr->name, "kb_written") == 0) {
210 n = sprintf(data, "%lu\n", pd->stats.secs_w >> 1);
211
212 } else if (strcmp(attr->name, "kb_read") == 0) {
213 n = sprintf(data, "%lu\n", pd->stats.secs_r >> 1);
214
215 } else if (strcmp(attr->name, "kb_read_gather") == 0) {
216 n = sprintf(data, "%lu\n", pd->stats.secs_rg >> 1);
217
218 } else if (strcmp(attr->name, "size") == 0) {
219 spin_lock(&pd->lock);
220 v = pd->bio_queue_size;
221 spin_unlock(&pd->lock);
222 n = sprintf(data, "%d\n", v);
223
224 } else if (strcmp(attr->name, "congestion_off") == 0) {
225 spin_lock(&pd->lock);
226 v = pd->write_congestion_off;
227 spin_unlock(&pd->lock);
228 n = sprintf(data, "%d\n", v);
229
230 } else if (strcmp(attr->name, "congestion_on") == 0) {
231 spin_lock(&pd->lock);
232 v = pd->write_congestion_on;
233 spin_unlock(&pd->lock);
234 n = sprintf(data, "%d\n", v);
235 }
236 return n;
237}
238
239static void init_write_congestion_marks(int* lo, int* hi)
240{
241 if (*hi > 0) {
242 *hi = max(*hi, 500);
243 *hi = min(*hi, 1000000);
244 if (*lo <= 0)
245 *lo = *hi - 100;
246 else {
247 *lo = min(*lo, *hi - 100);
248 *lo = max(*lo, 100);
249 }
250 } else {
251 *hi = -1;
252 *lo = -1;
253 }
254}
255
256static ssize_t kobj_pkt_store(struct kobject *kobj,
257 struct attribute *attr,
258 const char *data, size_t len)
259{
260 struct pktcdvd_device *pd = to_pktcdvdkobj(kobj)->pd;
261 int val;
Thomas Maier32694852006-12-08 02:36:12 -0800262
Thomas Maier83f3aa32007-02-10 01:45:11 -0800263 if (strcmp(attr->name, "reset") == 0 && len > 0) {
Thomas Maier32694852006-12-08 02:36:12 -0800264 pd->stats.pkt_started = 0;
265 pd->stats.pkt_ended = 0;
266 pd->stats.secs_w = 0;
267 pd->stats.secs_rg = 0;
268 pd->stats.secs_r = 0;
269
270 } else if (strcmp(attr->name, "congestion_off") == 0
Thomas Maier83f3aa32007-02-10 01:45:11 -0800271 && sscanf(data, "%d", &val) == 1) {
Thomas Maier32694852006-12-08 02:36:12 -0800272 spin_lock(&pd->lock);
273 pd->write_congestion_off = val;
274 init_write_congestion_marks(&pd->write_congestion_off,
275 &pd->write_congestion_on);
276 spin_unlock(&pd->lock);
277
278 } else if (strcmp(attr->name, "congestion_on") == 0
Thomas Maier83f3aa32007-02-10 01:45:11 -0800279 && sscanf(data, "%d", &val) == 1) {
Thomas Maier32694852006-12-08 02:36:12 -0800280 spin_lock(&pd->lock);
281 pd->write_congestion_on = val;
282 init_write_congestion_marks(&pd->write_congestion_off,
283 &pd->write_congestion_on);
284 spin_unlock(&pd->lock);
285 }
286 return len;
287}
288
Emese Revfy52cf25d2010-01-19 02:58:23 +0100289static const struct sysfs_ops kobj_pkt_ops = {
Thomas Maier32694852006-12-08 02:36:12 -0800290 .show = kobj_pkt_show,
291 .store = kobj_pkt_store
292};
293static struct kobj_type kobj_pkt_type_stat = {
294 .release = pkt_kobj_release,
295 .sysfs_ops = &kobj_pkt_ops,
296 .default_attrs = kobj_pkt_attrs_stat
297};
298static struct kobj_type kobj_pkt_type_wqueue = {
299 .release = pkt_kobj_release,
300 .sysfs_ops = &kobj_pkt_ops,
301 .default_attrs = kobj_pkt_attrs_wqueue
302};
303
304static void pkt_sysfs_dev_new(struct pktcdvd_device *pd)
305{
306 if (class_pktcdvd) {
Kay Sieverscba76712008-12-06 04:38:11 +0100307 pd->dev = device_create(class_pktcdvd, NULL, MKDEV(0, 0), NULL,
Greg Kroah-Hartman1ff9f542008-07-21 20:03:34 -0700308 "%s", pd->name);
Tony Jones6013c122007-09-25 02:03:03 +0200309 if (IS_ERR(pd->dev))
310 pd->dev = NULL;
Thomas Maier32694852006-12-08 02:36:12 -0800311 }
Tony Jones6013c122007-09-25 02:03:03 +0200312 if (pd->dev) {
Thomas Maier32694852006-12-08 02:36:12 -0800313 pd->kobj_stat = pkt_kobj_create(pd, "stat",
Tony Jones6013c122007-09-25 02:03:03 +0200314 &pd->dev->kobj,
Thomas Maier32694852006-12-08 02:36:12 -0800315 &kobj_pkt_type_stat);
316 pd->kobj_wqueue = pkt_kobj_create(pd, "write_queue",
Tony Jones6013c122007-09-25 02:03:03 +0200317 &pd->dev->kobj,
Thomas Maier32694852006-12-08 02:36:12 -0800318 &kobj_pkt_type_wqueue);
319 }
320}
321
322static void pkt_sysfs_dev_remove(struct pktcdvd_device *pd)
323{
324 pkt_kobj_remove(pd->kobj_stat);
325 pkt_kobj_remove(pd->kobj_wqueue);
326 if (class_pktcdvd)
Thadeu Lima de Souza Cascardoca0bf642010-02-02 13:44:17 -0800327 device_unregister(pd->dev);
Thomas Maier32694852006-12-08 02:36:12 -0800328}
329
330
331/********************************************************************
332 /sys/class/pktcdvd/
333 add map block device
334 remove unmap packet dev
335 device_map show mappings
336 *******************************************************************/
337
338static void class_pktcdvd_release(struct class *cls)
339{
340 kfree(cls);
341}
Andi Kleen28812fe2010-01-05 12:48:07 +0100342static ssize_t class_pktcdvd_show_map(struct class *c,
343 struct class_attribute *attr,
344 char *data)
Thomas Maier32694852006-12-08 02:36:12 -0800345{
346 int n = 0;
347 int idx;
348 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
349 for (idx = 0; idx < MAX_WRITERS; idx++) {
350 struct pktcdvd_device *pd = pkt_devs[idx];
351 if (!pd)
352 continue;
353 n += sprintf(data+n, "%s %u:%u %u:%u\n",
354 pd->name,
355 MAJOR(pd->pkt_dev), MINOR(pd->pkt_dev),
356 MAJOR(pd->bdev->bd_dev),
357 MINOR(pd->bdev->bd_dev));
358 }
359 mutex_unlock(&ctl_mutex);
360 return n;
361}
362
Andi Kleen28812fe2010-01-05 12:48:07 +0100363static ssize_t class_pktcdvd_store_add(struct class *c,
364 struct class_attribute *attr,
365 const char *buf,
Thomas Maier32694852006-12-08 02:36:12 -0800366 size_t count)
367{
368 unsigned int major, minor;
Tejun Heofffe4872007-11-08 08:00:24 +0100369
Thomas Maier83f3aa32007-02-10 01:45:11 -0800370 if (sscanf(buf, "%u:%u", &major, &minor) == 2) {
Tejun Heofffe4872007-11-08 08:00:24 +0100371 /* pkt_setup_dev() expects caller to hold reference to self */
372 if (!try_module_get(THIS_MODULE))
373 return -ENODEV;
374
Thomas Maier32694852006-12-08 02:36:12 -0800375 pkt_setup_dev(MKDEV(major, minor), NULL);
Tejun Heofffe4872007-11-08 08:00:24 +0100376
377 module_put(THIS_MODULE);
378
Thomas Maier32694852006-12-08 02:36:12 -0800379 return count;
380 }
Tejun Heofffe4872007-11-08 08:00:24 +0100381
Thomas Maier32694852006-12-08 02:36:12 -0800382 return -EINVAL;
383}
384
Andi Kleen28812fe2010-01-05 12:48:07 +0100385static ssize_t class_pktcdvd_store_remove(struct class *c,
386 struct class_attribute *attr,
387 const char *buf,
Thomas Maier32694852006-12-08 02:36:12 -0800388 size_t count)
389{
390 unsigned int major, minor;
Thomas Maier83f3aa32007-02-10 01:45:11 -0800391 if (sscanf(buf, "%u:%u", &major, &minor) == 2) {
Thomas Maier32694852006-12-08 02:36:12 -0800392 pkt_remove_dev(MKDEV(major, minor));
393 return count;
394 }
395 return -EINVAL;
396}
397
398static struct class_attribute class_pktcdvd_attrs[] = {
399 __ATTR(add, 0200, NULL, class_pktcdvd_store_add),
400 __ATTR(remove, 0200, NULL, class_pktcdvd_store_remove),
401 __ATTR(device_map, 0444, class_pktcdvd_show_map, NULL),
402 __ATTR_NULL
403};
404
405
406static int pkt_sysfs_init(void)
407{
408 int ret = 0;
409
410 /*
411 * create control files in sysfs
412 * /sys/class/pktcdvd/...
413 */
414 class_pktcdvd = kzalloc(sizeof(*class_pktcdvd), GFP_KERNEL);
415 if (!class_pktcdvd)
416 return -ENOMEM;
417 class_pktcdvd->name = DRIVER_NAME;
418 class_pktcdvd->owner = THIS_MODULE;
419 class_pktcdvd->class_release = class_pktcdvd_release;
420 class_pktcdvd->class_attrs = class_pktcdvd_attrs;
421 ret = class_register(class_pktcdvd);
422 if (ret) {
423 kfree(class_pktcdvd);
424 class_pktcdvd = NULL;
Joe Perches99481332013-09-11 14:25:52 -0700425 pr_err("failed to create class pktcdvd\n");
Thomas Maier32694852006-12-08 02:36:12 -0800426 return ret;
427 }
428 return 0;
429}
430
431static void pkt_sysfs_cleanup(void)
432{
433 if (class_pktcdvd)
434 class_destroy(class_pktcdvd);
435 class_pktcdvd = NULL;
436}
437
438/********************************************************************
439 entries in debugfs
440
GeunSik Lim156f5a72009-06-02 15:01:37 +0900441 /sys/kernel/debug/pktcdvd[0-7]/
Thomas Maier32694852006-12-08 02:36:12 -0800442 info
443
444 *******************************************************************/
445
446static int pkt_debugfs_seq_show(struct seq_file *m, void *p)
447{
448 return pkt_seq_show(m, p);
449}
450
451static int pkt_debugfs_fops_open(struct inode *inode, struct file *file)
452{
453 return single_open(file, pkt_debugfs_seq_show, inode->i_private);
454}
455
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800456static const struct file_operations debug_fops = {
Thomas Maier32694852006-12-08 02:36:12 -0800457 .open = pkt_debugfs_fops_open,
458 .read = seq_read,
459 .llseek = seq_lseek,
460 .release = single_release,
461 .owner = THIS_MODULE,
462};
463
464static void pkt_debugfs_dev_new(struct pktcdvd_device *pd)
465{
466 if (!pkt_debugfs_root)
467 return;
468 pd->dfs_f_info = NULL;
469 pd->dfs_d_root = debugfs_create_dir(pd->name, pkt_debugfs_root);
470 if (IS_ERR(pd->dfs_d_root)) {
471 pd->dfs_d_root = NULL;
472 return;
473 }
474 pd->dfs_f_info = debugfs_create_file("info", S_IRUGO,
475 pd->dfs_d_root, pd, &debug_fops);
476 if (IS_ERR(pd->dfs_f_info)) {
477 pd->dfs_f_info = NULL;
478 return;
479 }
480}
481
482static void pkt_debugfs_dev_remove(struct pktcdvd_device *pd)
483{
484 if (!pkt_debugfs_root)
485 return;
486 if (pd->dfs_f_info)
487 debugfs_remove(pd->dfs_f_info);
488 pd->dfs_f_info = NULL;
489 if (pd->dfs_d_root)
490 debugfs_remove(pd->dfs_d_root);
491 pd->dfs_d_root = NULL;
492}
493
494static void pkt_debugfs_init(void)
495{
496 pkt_debugfs_root = debugfs_create_dir(DRIVER_NAME, NULL);
497 if (IS_ERR(pkt_debugfs_root)) {
498 pkt_debugfs_root = NULL;
499 return;
500 }
501}
502
503static void pkt_debugfs_cleanup(void)
504{
505 if (!pkt_debugfs_root)
506 return;
507 debugfs_remove(pkt_debugfs_root);
508 pkt_debugfs_root = NULL;
509}
510
511/* ----------------------------------------------------------*/
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514static void pkt_bio_finished(struct pktcdvd_device *pd)
515{
516 BUG_ON(atomic_read(&pd->cdrw.pending_bios) <= 0);
517 if (atomic_dec_and_test(&pd->cdrw.pending_bios)) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -0700518 pkt_dbg(2, "queue empty\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 atomic_set(&pd->iosched.attention, 1);
520 wake_up(&pd->wqueue);
521 }
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
525 * Allocate a packet_data struct
526 */
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800527static struct packet_data *pkt_alloc_packet_data(int frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 int i;
530 struct packet_data *pkt;
531
Peter Osterlund1107d2e2005-09-13 01:25:29 -0700532 pkt = kzalloc(sizeof(struct packet_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!pkt)
534 goto no_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800536 pkt->frames = frames;
Kent Overstreetccc5c9c2012-09-07 13:44:02 -0700537 pkt->w_bio = bio_kmalloc(GFP_KERNEL, frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!pkt->w_bio)
539 goto no_bio;
540
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800541 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 pkt->pages[i] = alloc_page(GFP_KERNEL|__GFP_ZERO);
543 if (!pkt->pages[i])
544 goto no_page;
545 }
546
547 spin_lock_init(&pkt->lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +0100548 bio_list_init(&pkt->orig_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800550 for (i = 0; i < frames; i++) {
Kent Overstreetccc5c9c2012-09-07 13:44:02 -0700551 struct bio *bio = bio_kmalloc(GFP_KERNEL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!bio)
553 goto no_rd_bio;
Kent Overstreetccc5c9c2012-09-07 13:44:02 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 pkt->r_bios[i] = bio;
556 }
557
558 return pkt;
559
560no_rd_bio:
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800561 for (i = 0; i < frames; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct bio *bio = pkt->r_bios[i];
563 if (bio)
564 bio_put(bio);
565 }
566
567no_page:
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800568 for (i = 0; i < frames / FRAMES_PER_PAGE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (pkt->pages[i])
570 __free_page(pkt->pages[i]);
571 bio_put(pkt->w_bio);
572no_bio:
573 kfree(pkt);
574no_pkt:
575 return NULL;
576}
577
578/*
579 * Free a packet_data struct
580 */
581static void pkt_free_packet_data(struct packet_data *pkt)
582{
583 int i;
584
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800585 for (i = 0; i < pkt->frames; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct bio *bio = pkt->r_bios[i];
587 if (bio)
588 bio_put(bio);
589 }
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800590 for (i = 0; i < pkt->frames / FRAMES_PER_PAGE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 __free_page(pkt->pages[i]);
592 bio_put(pkt->w_bio);
593 kfree(pkt);
594}
595
596static void pkt_shrink_pktlist(struct pktcdvd_device *pd)
597{
598 struct packet_data *pkt, *next;
599
600 BUG_ON(!list_empty(&pd->cdrw.pkt_active_list));
601
602 list_for_each_entry_safe(pkt, next, &pd->cdrw.pkt_free_list, list) {
603 pkt_free_packet_data(pkt);
604 }
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800605 INIT_LIST_HEAD(&pd->cdrw.pkt_free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static int pkt_grow_pktlist(struct pktcdvd_device *pd, int nr_packets)
609{
610 struct packet_data *pkt;
611
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800612 BUG_ON(!list_empty(&pd->cdrw.pkt_free_list));
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 while (nr_packets > 0) {
Peter Osterlunde1bc89b2006-02-04 23:27:47 -0800615 pkt = pkt_alloc_packet_data(pd->settings.size >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (!pkt) {
617 pkt_shrink_pktlist(pd);
618 return 0;
619 }
620 pkt->id = nr_packets;
621 pkt->pd = pd;
622 list_add(&pkt->list, &pd->cdrw.pkt_free_list);
623 nr_packets--;
624 }
625 return 1;
626}
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628static inline struct pkt_rb_node *pkt_rbtree_next(struct pkt_rb_node *node)
629{
630 struct rb_node *n = rb_next(&node->rb_node);
631 if (!n)
632 return NULL;
633 return rb_entry(n, struct pkt_rb_node, rb_node);
634}
635
Peter Osterlundac893962006-01-14 13:21:32 -0800636static void pkt_rbtree_erase(struct pktcdvd_device *pd, struct pkt_rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 rb_erase(&node->rb_node, &pd->bio_queue);
639 mempool_free(node, pd->rb_pool);
640 pd->bio_queue_size--;
641 BUG_ON(pd->bio_queue_size < 0);
642}
643
644/*
645 * Find the first node in the pd->bio_queue rb tree with a starting sector >= s.
646 */
647static struct pkt_rb_node *pkt_rbtree_find(struct pktcdvd_device *pd, sector_t s)
648{
649 struct rb_node *n = pd->bio_queue.rb_node;
650 struct rb_node *next;
651 struct pkt_rb_node *tmp;
652
653 if (!n) {
654 BUG_ON(pd->bio_queue_size > 0);
655 return NULL;
656 }
657
658 for (;;) {
659 tmp = rb_entry(n, struct pkt_rb_node, rb_node);
660 if (s <= tmp->bio->bi_sector)
661 next = n->rb_left;
662 else
663 next = n->rb_right;
664 if (!next)
665 break;
666 n = next;
667 }
668
669 if (s > tmp->bio->bi_sector) {
670 tmp = pkt_rbtree_next(tmp);
671 if (!tmp)
672 return NULL;
673 }
674 BUG_ON(s > tmp->bio->bi_sector);
675 return tmp;
676}
677
678/*
679 * Insert a node into the pd->bio_queue rb tree.
680 */
681static void pkt_rbtree_insert(struct pktcdvd_device *pd, struct pkt_rb_node *node)
682{
683 struct rb_node **p = &pd->bio_queue.rb_node;
684 struct rb_node *parent = NULL;
685 sector_t s = node->bio->bi_sector;
686 struct pkt_rb_node *tmp;
687
688 while (*p) {
689 parent = *p;
690 tmp = rb_entry(parent, struct pkt_rb_node, rb_node);
691 if (s < tmp->bio->bi_sector)
692 p = &(*p)->rb_left;
693 else
694 p = &(*p)->rb_right;
695 }
696 rb_link_node(&node->rb_node, parent, p);
697 rb_insert_color(&node->rb_node, &pd->bio_queue);
698 pd->bio_queue_size++;
699}
700
701/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * Send a packet_command to the underlying block device and
703 * wait for completion.
704 */
705static int pkt_generic_packet(struct pktcdvd_device *pd, struct packet_command *cgc)
706{
Jens Axboe165125e2007-07-24 09:28:11 +0200707 struct request_queue *q = bdev_get_queue(pd->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct request *rq;
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800709 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800711 rq = blk_get_request(q, (cgc->data_direction == CGC_DATA_WRITE) ?
712 WRITE : READ, __GFP_WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800714 if (cgc->buflen) {
715 if (blk_rq_map_kern(q, rq, cgc->buffer, cgc->buflen, __GFP_WAIT))
716 goto out;
717 }
718
Gerhard Dirschl91e4ee32007-02-20 13:57:56 -0800719 rq->cmd_len = COMMAND_SIZE(cgc->cmd[0]);
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800720 memcpy(rq->cmd, cgc->cmd, CDROM_PACKET_SIZE);
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 rq->timeout = 60*HZ;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200723 rq->cmd_type = REQ_TYPE_BLOCK_PC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (cgc->quiet)
Jens Axboe4aff5e22006-08-10 08:44:47 +0200725 rq->cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800727 blk_execute_rq(rq->q, pd->bdev->bd_disk, rq, 0);
Andrew Mortoncbc31a42007-04-25 13:01:21 -0700728 if (rq->errors)
729 ret = -EIO;
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800730out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 blk_put_request(rq);
Christoph Hellwig406c9b62007-01-05 16:36:26 -0800732 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Joe Perches99481332013-09-11 14:25:52 -0700735static const char *sense_key_string(__u8 index)
736{
737 static const char * const info[] = {
738 "No sense", "Recovered error", "Not ready",
739 "Medium error", "Hardware error", "Illegal request",
740 "Unit attention", "Data protect", "Blank check",
741 };
742
743 return index < ARRAY_SIZE(info) ? info[index] : "INVALID";
744}
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746/*
747 * A generic sense dump / resolve mechanism should be implemented across
748 * all ATAPI + SCSI devices.
749 */
750static void pkt_dump_sense(struct packet_command *cgc)
751{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct request_sense *sense = cgc->sense;
753
Joe Perches99481332013-09-11 14:25:52 -0700754 if (sense)
755 pr_err("%*ph - sense %02x.%02x.%02x (%s)\n",
756 CDROM_PACKET_SIZE, cgc->cmd,
757 sense->sense_key, sense->asc, sense->ascq,
758 sense_key_string(sense->sense_key));
759 else
760 pr_err("%*ph - no sense\n", CDROM_PACKET_SIZE, cgc->cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763/*
764 * flush the drive cache to media
765 */
766static int pkt_flush_cache(struct pktcdvd_device *pd)
767{
768 struct packet_command cgc;
769
770 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
771 cgc.cmd[0] = GPCMD_FLUSH_CACHE;
772 cgc.quiet = 1;
773
774 /*
775 * the IMMED bit -- we default to not setting it, although that
776 * would allow a much faster close, this is safer
777 */
778#if 0
779 cgc.cmd[1] = 1 << 1;
780#endif
781 return pkt_generic_packet(pd, &cgc);
782}
783
784/*
785 * speed is given as the normal factor, e.g. 4 for 4x
786 */
Peter Osterlund05680d82008-03-04 14:28:41 -0800787static noinline_for_stack int pkt_set_speed(struct pktcdvd_device *pd,
788 unsigned write_speed, unsigned read_speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 struct packet_command cgc;
791 struct request_sense sense;
792 int ret;
793
794 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
795 cgc.sense = &sense;
796 cgc.cmd[0] = GPCMD_SET_SPEED;
797 cgc.cmd[2] = (read_speed >> 8) & 0xff;
798 cgc.cmd[3] = read_speed & 0xff;
799 cgc.cmd[4] = (write_speed >> 8) & 0xff;
800 cgc.cmd[5] = write_speed & 0xff;
801
802 if ((ret = pkt_generic_packet(pd, &cgc)))
803 pkt_dump_sense(&cgc);
804
805 return ret;
806}
807
808/*
809 * Queue a bio for processing by the low-level CD device. Must be called
810 * from process context.
811 */
Peter Osterlund46c271b2005-06-23 00:10:02 -0700812static void pkt_queue_bio(struct pktcdvd_device *pd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 spin_lock(&pd->iosched.lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +0100815 if (bio_data_dir(bio) == READ)
816 bio_list_add(&pd->iosched.read_queue, bio);
817 else
818 bio_list_add(&pd->iosched.write_queue, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 spin_unlock(&pd->iosched.lock);
820
821 atomic_set(&pd->iosched.attention, 1);
822 wake_up(&pd->wqueue);
823}
824
825/*
826 * Process the queued read/write requests. This function handles special
827 * requirements for CDRW drives:
828 * - A cache flush command must be inserted before a read request if the
829 * previous request was a write.
Peter Osterlund46c271b2005-06-23 00:10:02 -0700830 * - Switching between reading and writing is slow, so don't do it more often
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * than necessary.
Peter Osterlund46c271b2005-06-23 00:10:02 -0700832 * - Optimize for throughput at the expense of latency. This means that streaming
833 * writes will never be interrupted by a read, but if the drive has to seek
834 * before the next write, switch to reading instead if there are any pending
835 * read requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 * - Set the read speed according to current usage pattern. When only reading
837 * from the device, it's best to use the highest possible read speed, but
838 * when switching often between reading and writing, it's better to have the
839 * same read and write speeds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
841static void pkt_iosched_process_queue(struct pktcdvd_device *pd)
842{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 if (atomic_read(&pd->iosched.attention) == 0)
845 return;
846 atomic_set(&pd->iosched.attention, 0);
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 for (;;) {
849 struct bio *bio;
Peter Osterlund46c271b2005-06-23 00:10:02 -0700850 int reads_queued, writes_queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 spin_lock(&pd->iosched.lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +0100853 reads_queued = !bio_list_empty(&pd->iosched.read_queue);
854 writes_queued = !bio_list_empty(&pd->iosched.write_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 spin_unlock(&pd->iosched.lock);
856
857 if (!reads_queued && !writes_queued)
858 break;
859
860 if (pd->iosched.writing) {
Peter Osterlund46c271b2005-06-23 00:10:02 -0700861 int need_write_seek = 1;
862 spin_lock(&pd->iosched.lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +0100863 bio = bio_list_peek(&pd->iosched.write_queue);
Peter Osterlund46c271b2005-06-23 00:10:02 -0700864 spin_unlock(&pd->iosched.lock);
865 if (bio && (bio->bi_sector == pd->iosched.last_write))
866 need_write_seek = 0;
867 if (need_write_seek && reads_queued) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (atomic_read(&pd->cdrw.pending_bios) > 0) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -0700869 pkt_dbg(2, "write, waiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 break;
871 }
872 pkt_flush_cache(pd);
873 pd->iosched.writing = 0;
874 }
875 } else {
876 if (!reads_queued && writes_queued) {
877 if (atomic_read(&pd->cdrw.pending_bios) > 0) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -0700878 pkt_dbg(2, "read, waiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
880 }
881 pd->iosched.writing = 1;
882 }
883 }
884
885 spin_lock(&pd->iosched.lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +0100886 if (pd->iosched.writing)
887 bio = bio_list_pop(&pd->iosched.write_queue);
888 else
889 bio = bio_list_pop(&pd->iosched.read_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 spin_unlock(&pd->iosched.lock);
891
892 if (!bio)
893 continue;
894
895 if (bio_data_dir(bio) == READ)
896 pd->iosched.successive_reads += bio->bi_size >> 10;
Peter Osterlund46c271b2005-06-23 00:10:02 -0700897 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 pd->iosched.successive_reads = 0;
Kent Overstreetf73a1c72012-09-25 15:05:12 -0700899 pd->iosched.last_write = bio_end_sector(bio);
Peter Osterlund46c271b2005-06-23 00:10:02 -0700900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (pd->iosched.successive_reads >= HI_SPEED_SWITCH) {
902 if (pd->read_speed == pd->write_speed) {
903 pd->read_speed = MAX_SPEED;
904 pkt_set_speed(pd, pd->write_speed, pd->read_speed);
905 }
906 } else {
907 if (pd->read_speed != pd->write_speed) {
908 pd->read_speed = pd->write_speed;
909 pkt_set_speed(pd, pd->write_speed, pd->read_speed);
910 }
911 }
912
913 atomic_inc(&pd->cdrw.pending_bios);
914 generic_make_request(bio);
915 }
916}
917
918/*
919 * Special care is needed if the underlying block device has a small
920 * max_phys_segments value.
921 */
Jens Axboe165125e2007-07-24 09:28:11 +0200922static int pkt_set_segment_merging(struct pktcdvd_device *pd, struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400924 if ((pd->settings.size << 9) / CD_FRAMESIZE
Martin K. Petersen8a783622010-02-26 00:20:39 -0500925 <= queue_max_segments(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 /*
927 * The cdrom device can handle one segment/frame
928 */
929 clear_bit(PACKET_MERGE_SEGS, &pd->flags);
930 return 0;
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400931 } else if ((pd->settings.size << 9) / PAGE_SIZE
Martin K. Petersen8a783622010-02-26 00:20:39 -0500932 <= queue_max_segments(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /*
934 * We can handle this case at the expense of some extra memory
935 * copies during write operations
936 */
937 set_bit(PACKET_MERGE_SEGS, &pd->flags);
938 return 0;
939 } else {
Joe Perches99481332013-09-11 14:25:52 -0700940 pr_err("cdrom max_phys_segments too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return -EIO;
942 }
943}
944
945/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 * Copy all data for this packet to pkt->pages[], so that
947 * a) The number of required segments for the write bio is minimized, which
948 * is necessary for some scsi controllers.
949 * b) The data can be used as cache to avoid read requests if we receive a
950 * new write request for the same zone.
951 */
Peter Osterlund72772322006-02-14 13:52:56 -0800952static void pkt_make_local_copy(struct packet_data *pkt, struct bio_vec *bvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 int f, p, offs;
955
956 /* Copy all data to pkt->pages[] */
957 p = 0;
958 offs = 0;
959 for (f = 0; f < pkt->frames; f++) {
Peter Osterlund72772322006-02-14 13:52:56 -0800960 if (bvec[f].bv_page != pkt->pages[p]) {
Cong Wangcfd80052011-11-25 23:14:18 +0800961 void *vfrom = kmap_atomic(bvec[f].bv_page) + bvec[f].bv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 void *vto = page_address(pkt->pages[p]) + offs;
963 memcpy(vto, vfrom, CD_FRAMESIZE);
Cong Wangcfd80052011-11-25 23:14:18 +0800964 kunmap_atomic(vfrom);
Peter Osterlund72772322006-02-14 13:52:56 -0800965 bvec[f].bv_page = pkt->pages[p];
966 bvec[f].bv_offset = offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 } else {
Peter Osterlund72772322006-02-14 13:52:56 -0800968 BUG_ON(bvec[f].bv_offset != offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
970 offs += CD_FRAMESIZE;
971 if (offs >= PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 offs = 0;
973 p++;
974 }
975 }
976}
977
NeilBrown6712ecf2007-09-27 12:47:43 +0200978static void pkt_end_io_read(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 struct packet_data *pkt = bio->bi_private;
981 struct pktcdvd_device *pd = pkt->pd;
982 BUG_ON(!pd);
983
Joe Perchescd3f2cd2013-09-11 14:25:53 -0700984 pkt_dbg(2, "bio=%p sec0=%llx sec=%llx err=%d\n",
985 bio, (unsigned long long)pkt->sector,
986 (unsigned long long)bio->bi_sector, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 if (err)
989 atomic_inc(&pkt->io_errors);
990 if (atomic_dec_and_test(&pkt->io_wait)) {
991 atomic_inc(&pkt->run_sm);
992 wake_up(&pd->wqueue);
993 }
994 pkt_bio_finished(pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
NeilBrown6712ecf2007-09-27 12:47:43 +0200997static void pkt_end_io_packet_write(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 struct packet_data *pkt = bio->bi_private;
1000 struct pktcdvd_device *pd = pkt->pd;
1001 BUG_ON(!pd);
1002
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001003 pkt_dbg(2, "id=%d, err=%d\n", pkt->id, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 pd->stats.pkt_ended++;
1006
1007 pkt_bio_finished(pd);
1008 atomic_dec(&pkt->io_wait);
1009 atomic_inc(&pkt->run_sm);
1010 wake_up(&pd->wqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
1013/*
1014 * Schedule reads for the holes in a packet
1015 */
1016static void pkt_gather_data(struct pktcdvd_device *pd, struct packet_data *pkt)
1017{
1018 int frames_read = 0;
1019 struct bio *bio;
1020 int f;
1021 char written[PACKET_MAX_SIZE];
1022
Akinobu Mitac5ecc482010-02-24 08:30:08 +01001023 BUG_ON(bio_list_empty(&pkt->orig_bios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 atomic_set(&pkt->io_wait, 0);
1026 atomic_set(&pkt->io_errors, 0);
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /*
1029 * Figure out which frames we need to read before we can write.
1030 */
1031 memset(written, 0, sizeof(written));
1032 spin_lock(&pkt->lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +01001033 bio_list_for_each(bio, &pkt->orig_bios) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 int first_frame = (bio->bi_sector - pkt->sector) / (CD_FRAMESIZE >> 9);
1035 int num_frames = bio->bi_size / CD_FRAMESIZE;
Peter Osterlund06e7ab52005-09-13 01:25:28 -07001036 pd->stats.secs_w += num_frames * (CD_FRAMESIZE >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 BUG_ON(first_frame < 0);
1038 BUG_ON(first_frame + num_frames > pkt->frames);
1039 for (f = first_frame; f < first_frame + num_frames; f++)
1040 written[f] = 1;
1041 }
1042 spin_unlock(&pkt->lock);
1043
Peter Osterlund06e7ab52005-09-13 01:25:28 -07001044 if (pkt->cache_valid) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001045 pkt_dbg(2, "zone %llx cached\n",
Peter Osterlund06e7ab52005-09-13 01:25:28 -07001046 (unsigned long long)pkt->sector);
1047 goto out_account;
1048 }
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 /*
1051 * Schedule reads for missing parts of the packet.
1052 */
1053 for (f = 0; f < pkt->frames; f++) {
1054 int p, offset;
Kent Overstreetccc5c9c2012-09-07 13:44:02 -07001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (written[f])
1057 continue;
Kent Overstreetccc5c9c2012-09-07 13:44:02 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 bio = pkt->r_bios[f];
Kent Overstreetccc5c9c2012-09-07 13:44:02 -07001060 bio_reset(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 bio->bi_sector = pkt->sector + f * (CD_FRAMESIZE >> 9);
1062 bio->bi_bdev = pd->bdev;
1063 bio->bi_end_io = pkt_end_io_read;
1064 bio->bi_private = pkt;
1065
1066 p = (f * CD_FRAMESIZE) / PAGE_SIZE;
1067 offset = (f * CD_FRAMESIZE) % PAGE_SIZE;
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001068 pkt_dbg(2, "Adding frame %d, page:%p offs:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 f, pkt->pages[p], offset);
1070 if (!bio_add_page(bio, pkt->pages[p], CD_FRAMESIZE, offset))
1071 BUG();
1072
1073 atomic_inc(&pkt->io_wait);
1074 bio->bi_rw = READ;
Peter Osterlund46c271b2005-06-23 00:10:02 -07001075 pkt_queue_bio(pd, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 frames_read++;
1077 }
1078
1079out_account:
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001080 pkt_dbg(2, "need %d frames for zone %llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 frames_read, (unsigned long long)pkt->sector);
1082 pd->stats.pkt_started++;
1083 pd->stats.secs_rg += frames_read * (CD_FRAMESIZE >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
1086/*
1087 * Find a packet matching zone, or the least recently used packet if
1088 * there is no match.
1089 */
1090static struct packet_data *pkt_get_packet_data(struct pktcdvd_device *pd, int zone)
1091{
1092 struct packet_data *pkt;
1093
1094 list_for_each_entry(pkt, &pd->cdrw.pkt_free_list, list) {
1095 if (pkt->sector == zone || pkt->list.next == &pd->cdrw.pkt_free_list) {
1096 list_del_init(&pkt->list);
1097 if (pkt->sector != zone)
1098 pkt->cache_valid = 0;
Peter Osterlund610827d2005-09-13 01:25:29 -07001099 return pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 }
Peter Osterlund610827d2005-09-13 01:25:29 -07001102 BUG();
1103 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
1106static void pkt_put_packet_data(struct pktcdvd_device *pd, struct packet_data *pkt)
1107{
1108 if (pkt->cache_valid) {
1109 list_add(&pkt->list, &pd->cdrw.pkt_free_list);
1110 } else {
1111 list_add_tail(&pkt->list, &pd->cdrw.pkt_free_list);
1112 }
1113}
1114
1115/*
1116 * recover a failed write, query for relocation if possible
1117 *
1118 * returns 1 if recovery is possible, or 0 if not
1119 *
1120 */
1121static int pkt_start_recovery(struct packet_data *pkt)
1122{
1123 /*
1124 * FIXME. We need help from the file system to implement
1125 * recovery handling.
1126 */
1127 return 0;
1128#if 0
1129 struct request *rq = pkt->rq;
1130 struct pktcdvd_device *pd = rq->rq_disk->private_data;
1131 struct block_device *pkt_bdev;
1132 struct super_block *sb = NULL;
1133 unsigned long old_block, new_block;
1134 sector_t new_sector;
1135
1136 pkt_bdev = bdget(kdev_t_to_nr(pd->pkt_dev));
1137 if (pkt_bdev) {
1138 sb = get_super(pkt_bdev);
1139 bdput(pkt_bdev);
1140 }
1141
1142 if (!sb)
1143 return 0;
1144
Al Viroe7f59092011-07-07 15:45:59 -04001145 if (!sb->s_op->relocate_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 goto out;
1147
1148 old_block = pkt->sector / (CD_FRAMESIZE >> 9);
1149 if (sb->s_op->relocate_blocks(sb, old_block, &new_block))
1150 goto out;
1151
1152 new_sector = new_block * (CD_FRAMESIZE >> 9);
1153 pkt->sector = new_sector;
1154
Kent Overstreetff8e0072012-09-05 14:11:38 -07001155 bio_reset(pkt->bio);
1156 pkt->bio->bi_bdev = pd->bdev;
1157 pkt->bio->bi_rw = REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 pkt->bio->bi_sector = new_sector;
Kent Overstreetff8e0072012-09-05 14:11:38 -07001159 pkt->bio->bi_size = pkt->frames * CD_FRAMESIZE;
1160 pkt->bio->bi_vcnt = pkt->frames;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Kent Overstreetff8e0072012-09-05 14:11:38 -07001162 pkt->bio->bi_end_io = pkt_end_io_packet_write;
1163 pkt->bio->bi_private = pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 drop_super(sb);
1166 return 1;
1167
1168out:
1169 drop_super(sb);
1170 return 0;
1171#endif
1172}
1173
1174static inline void pkt_set_state(struct packet_data *pkt, enum packet_data_state state)
1175{
1176#if PACKET_DEBUG > 1
1177 static const char *state_name[] = {
1178 "IDLE", "WAITING", "READ_WAIT", "WRITE_WAIT", "RECOVERY", "FINISHED"
1179 };
1180 enum packet_data_state old_state = pkt->state;
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001181 pkt_dbg(2, "pkt %2d : s=%6llx %s -> %s\n",
1182 pkt->id, (unsigned long long)pkt->sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 state_name[old_state], state_name[state]);
1184#endif
1185 pkt->state = state;
1186}
1187
1188/*
1189 * Scan the work queue to see if we can start a new packet.
1190 * returns non-zero if any work was done.
1191 */
1192static int pkt_handle_queue(struct pktcdvd_device *pd)
1193{
1194 struct packet_data *pkt, *p;
1195 struct bio *bio = NULL;
1196 sector_t zone = 0; /* Suppress gcc warning */
1197 struct pkt_rb_node *node, *first_node;
1198 struct rb_node *n;
Thomas Maier0a0fc962006-12-08 02:36:11 -08001199 int wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001201 pkt_dbg(2, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 atomic_set(&pd->scan_queue, 0);
1204
1205 if (list_empty(&pd->cdrw.pkt_free_list)) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001206 pkt_dbg(2, "no pkt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return 0;
1208 }
1209
1210 /*
1211 * Try to find a zone we are not already working on.
1212 */
1213 spin_lock(&pd->lock);
1214 first_node = pkt_rbtree_find(pd, pd->current_sector);
1215 if (!first_node) {
1216 n = rb_first(&pd->bio_queue);
1217 if (n)
1218 first_node = rb_entry(n, struct pkt_rb_node, rb_node);
1219 }
1220 node = first_node;
1221 while (node) {
1222 bio = node->bio;
Joe Perches5323fb72013-09-11 14:25:51 -07001223 zone = get_zone(bio->bi_sector, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 list_for_each_entry(p, &pd->cdrw.pkt_active_list, list) {
Peter Osterlund7baeb6a2005-05-16 21:53:42 -07001225 if (p->sector == zone) {
1226 bio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 goto try_next_bio;
Peter Osterlund7baeb6a2005-05-16 21:53:42 -07001228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230 break;
1231try_next_bio:
1232 node = pkt_rbtree_next(node);
1233 if (!node) {
1234 n = rb_first(&pd->bio_queue);
1235 if (n)
1236 node = rb_entry(n, struct pkt_rb_node, rb_node);
1237 }
1238 if (node == first_node)
1239 node = NULL;
1240 }
1241 spin_unlock(&pd->lock);
1242 if (!bio) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001243 pkt_dbg(2, "no bio\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return 0;
1245 }
1246
1247 pkt = pkt_get_packet_data(pd, zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 pd->current_sector = zone + pd->settings.size;
1250 pkt->sector = zone;
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08001251 BUG_ON(pkt->frames != pd->settings.size >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 pkt->write_size = 0;
1253
1254 /*
1255 * Scan work queue for bios in the same zone and link them
1256 * to this packet.
1257 */
1258 spin_lock(&pd->lock);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001259 pkt_dbg(2, "looking for zone %llx\n", (unsigned long long)zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 while ((node = pkt_rbtree_find(pd, zone)) != NULL) {
1261 bio = node->bio;
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001262 pkt_dbg(2, "found zone=%llx\n",
Joe Perches5323fb72013-09-11 14:25:51 -07001263 (unsigned long long)get_zone(bio->bi_sector, pd));
1264 if (get_zone(bio->bi_sector, pd) != zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 break;
1266 pkt_rbtree_erase(pd, node);
1267 spin_lock(&pkt->lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +01001268 bio_list_add(&pkt->orig_bios, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 pkt->write_size += bio->bi_size / CD_FRAMESIZE;
1270 spin_unlock(&pkt->lock);
1271 }
Thomas Maier0a0fc962006-12-08 02:36:11 -08001272 /* check write congestion marks, and if bio_queue_size is
1273 below, wake up any waiters */
1274 wakeup = (pd->write_congestion_on > 0
1275 && pd->bio_queue_size <= pd->write_congestion_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 spin_unlock(&pd->lock);
Jens Axboe8aa7e842009-07-09 14:52:32 +02001277 if (wakeup) {
1278 clear_bdi_congested(&pd->disk->queue->backing_dev_info,
1279 BLK_RW_ASYNC);
1280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 pkt->sleep_time = max(PACKET_WAIT_TIME, 1);
1283 pkt_set_state(pkt, PACKET_WAITING_STATE);
1284 atomic_set(&pkt->run_sm, 1);
1285
1286 spin_lock(&pd->cdrw.active_list_lock);
1287 list_add(&pkt->list, &pd->cdrw.pkt_active_list);
1288 spin_unlock(&pd->cdrw.active_list_lock);
1289
1290 return 1;
1291}
1292
1293/*
1294 * Assemble a bio to write one packet and queue the bio for processing
1295 * by the underlying block device.
1296 */
1297static void pkt_start_write(struct pktcdvd_device *pd, struct packet_data *pkt)
1298{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 int f;
Peter Osterlund72772322006-02-14 13:52:56 -08001300 struct bio_vec *bvec = pkt->w_bio->bi_io_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Kent Overstreetffb25dc2012-09-04 06:44:57 -07001302 bio_reset(pkt->w_bio);
1303 pkt->w_bio->bi_sector = pkt->sector;
1304 pkt->w_bio->bi_bdev = pd->bdev;
1305 pkt->w_bio->bi_end_io = pkt_end_io_packet_write;
1306 pkt->w_bio->bi_private = pkt;
1307
1308 /* XXX: locking? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 for (f = 0; f < pkt->frames; f++) {
Peter Osterlund72772322006-02-14 13:52:56 -08001310 bvec[f].bv_page = pkt->pages[(f * CD_FRAMESIZE) / PAGE_SIZE];
1311 bvec[f].bv_offset = (f * CD_FRAMESIZE) % PAGE_SIZE;
Kent Overstreetffb25dc2012-09-04 06:44:57 -07001312 if (!bio_add_page(pkt->w_bio, bvec[f].bv_page, CD_FRAMESIZE, bvec[f].bv_offset))
1313 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001315 pkt_dbg(2, "vcnt=%d\n", pkt->w_bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
Peter Osterlund72772322006-02-14 13:52:56 -08001318 * Fill-in bvec with data from orig_bios.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 spin_lock(&pkt->lock);
Kent Overstreetffb25dc2012-09-04 06:44:57 -07001321 bio_copy_data(pkt->w_bio, pkt->orig_bios.head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 pkt_set_state(pkt, PACKET_WRITE_WAIT_STATE);
1324 spin_unlock(&pkt->lock);
1325
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001326 pkt_dbg(2, "Writing %d frames for zone %llx\n",
Kent Overstreetffb25dc2012-09-04 06:44:57 -07001327 pkt->write_size, (unsigned long long)pkt->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (test_bit(PACKET_MERGE_SEGS, &pd->flags) || (pkt->write_size < pkt->frames)) {
Peter Osterlund72772322006-02-14 13:52:56 -08001330 pkt_make_local_copy(pkt, bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 pkt->cache_valid = 1;
1332 } else {
1333 pkt->cache_valid = 0;
1334 }
1335
1336 /* Start the write request */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 atomic_set(&pkt->io_wait, 1);
1338 pkt->w_bio->bi_rw = WRITE;
Peter Osterlund46c271b2005-06-23 00:10:02 -07001339 pkt_queue_bio(pd, pkt->w_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342static void pkt_finish_packet(struct packet_data *pkt, int uptodate)
1343{
Akinobu Mitac5ecc482010-02-24 08:30:08 +01001344 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 if (!uptodate)
1347 pkt->cache_valid = 0;
1348
1349 /* Finish all bios corresponding to this packet */
Akinobu Mitac5ecc482010-02-24 08:30:08 +01001350 while ((bio = bio_list_pop(&pkt->orig_bios)))
NeilBrown6712ecf2007-09-27 12:47:43 +02001351 bio_endio(bio, uptodate ? 0 : -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354static void pkt_run_state_machine(struct pktcdvd_device *pd, struct packet_data *pkt)
1355{
1356 int uptodate;
1357
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001358 pkt_dbg(2, "pkt %d\n", pkt->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 for (;;) {
1361 switch (pkt->state) {
1362 case PACKET_WAITING_STATE:
1363 if ((pkt->write_size < pkt->frames) && (pkt->sleep_time > 0))
1364 return;
1365
1366 pkt->sleep_time = 0;
1367 pkt_gather_data(pd, pkt);
1368 pkt_set_state(pkt, PACKET_READ_WAIT_STATE);
1369 break;
1370
1371 case PACKET_READ_WAIT_STATE:
1372 if (atomic_read(&pkt->io_wait) > 0)
1373 return;
1374
1375 if (atomic_read(&pkt->io_errors) > 0) {
1376 pkt_set_state(pkt, PACKET_RECOVERY_STATE);
1377 } else {
1378 pkt_start_write(pd, pkt);
1379 }
1380 break;
1381
1382 case PACKET_WRITE_WAIT_STATE:
1383 if (atomic_read(&pkt->io_wait) > 0)
1384 return;
1385
1386 if (test_bit(BIO_UPTODATE, &pkt->w_bio->bi_flags)) {
1387 pkt_set_state(pkt, PACKET_FINISHED_STATE);
1388 } else {
1389 pkt_set_state(pkt, PACKET_RECOVERY_STATE);
1390 }
1391 break;
1392
1393 case PACKET_RECOVERY_STATE:
1394 if (pkt_start_recovery(pkt)) {
1395 pkt_start_write(pd, pkt);
1396 } else {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001397 pkt_dbg(2, "No recovery possible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 pkt_set_state(pkt, PACKET_FINISHED_STATE);
1399 }
1400 break;
1401
1402 case PACKET_FINISHED_STATE:
1403 uptodate = test_bit(BIO_UPTODATE, &pkt->w_bio->bi_flags);
1404 pkt_finish_packet(pkt, uptodate);
1405 return;
1406
1407 default:
1408 BUG();
1409 break;
1410 }
1411 }
1412}
1413
1414static void pkt_handle_packets(struct pktcdvd_device *pd)
1415{
1416 struct packet_data *pkt, *next;
1417
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001418 pkt_dbg(2, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /*
1421 * Run state machine for active packets
1422 */
1423 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1424 if (atomic_read(&pkt->run_sm) > 0) {
1425 atomic_set(&pkt->run_sm, 0);
1426 pkt_run_state_machine(pd, pkt);
1427 }
1428 }
1429
1430 /*
1431 * Move no longer active packets to the free list
1432 */
1433 spin_lock(&pd->cdrw.active_list_lock);
1434 list_for_each_entry_safe(pkt, next, &pd->cdrw.pkt_active_list, list) {
1435 if (pkt->state == PACKET_FINISHED_STATE) {
1436 list_del(&pkt->list);
1437 pkt_put_packet_data(pd, pkt);
1438 pkt_set_state(pkt, PACKET_IDLE_STATE);
1439 atomic_set(&pd->scan_queue, 1);
1440 }
1441 }
1442 spin_unlock(&pd->cdrw.active_list_lock);
1443}
1444
1445static void pkt_count_states(struct pktcdvd_device *pd, int *states)
1446{
1447 struct packet_data *pkt;
1448 int i;
1449
Peter Osterlundae7642b2005-11-13 16:06:36 -08001450 for (i = 0; i < PACKET_NUM_STATES; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 states[i] = 0;
1452
1453 spin_lock(&pd->cdrw.active_list_lock);
1454 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1455 states[pkt->state]++;
1456 }
1457 spin_unlock(&pd->cdrw.active_list_lock);
1458}
1459
1460/*
1461 * kcdrwd is woken up when writes have been queued for one of our
1462 * registered devices
1463 */
1464static int kcdrwd(void *foobar)
1465{
1466 struct pktcdvd_device *pd = foobar;
1467 struct packet_data *pkt;
1468 long min_sleep_time, residue;
1469
1470 set_user_nice(current, -20);
Rafael J. Wysocki83144182007-07-17 04:03:35 -07001471 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 for (;;) {
1474 DECLARE_WAITQUEUE(wait, current);
1475
1476 /*
1477 * Wait until there is something to do
1478 */
1479 add_wait_queue(&pd->wqueue, &wait);
1480 for (;;) {
1481 set_current_state(TASK_INTERRUPTIBLE);
1482
1483 /* Check if we need to run pkt_handle_queue */
1484 if (atomic_read(&pd->scan_queue) > 0)
1485 goto work_to_do;
1486
1487 /* Check if we need to run the state machine for some packet */
1488 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1489 if (atomic_read(&pkt->run_sm) > 0)
1490 goto work_to_do;
1491 }
1492
1493 /* Check if we need to process the iosched queues */
1494 if (atomic_read(&pd->iosched.attention) != 0)
1495 goto work_to_do;
1496
1497 /* Otherwise, go to sleep */
1498 if (PACKET_DEBUG > 1) {
1499 int states[PACKET_NUM_STATES];
1500 pkt_count_states(pd, states);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001501 pkt_dbg(2, "i:%d ow:%d rw:%d ww:%d rec:%d fin:%d\n",
1502 states[0], states[1], states[2],
1503 states[3], states[4], states[5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505
1506 min_sleep_time = MAX_SCHEDULE_TIMEOUT;
1507 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1508 if (pkt->sleep_time && pkt->sleep_time < min_sleep_time)
1509 min_sleep_time = pkt->sleep_time;
1510 }
1511
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001512 pkt_dbg(2, "sleeping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 residue = schedule_timeout(min_sleep_time);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001514 pkt_dbg(2, "wake up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 /* make swsusp happy with our thread */
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001517 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1520 if (!pkt->sleep_time)
1521 continue;
1522 pkt->sleep_time -= min_sleep_time - residue;
1523 if (pkt->sleep_time <= 0) {
1524 pkt->sleep_time = 0;
1525 atomic_inc(&pkt->run_sm);
1526 }
1527 }
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (kthread_should_stop())
1530 break;
1531 }
1532work_to_do:
1533 set_current_state(TASK_RUNNING);
1534 remove_wait_queue(&pd->wqueue, &wait);
1535
1536 if (kthread_should_stop())
1537 break;
1538
1539 /*
1540 * if pkt_handle_queue returns true, we can queue
1541 * another request.
1542 */
1543 while (pkt_handle_queue(pd))
1544 ;
1545
1546 /*
1547 * Handle packet state machine
1548 */
1549 pkt_handle_packets(pd);
1550
1551 /*
1552 * Handle iosched queues
1553 */
1554 pkt_iosched_process_queue(pd);
1555 }
1556
1557 return 0;
1558}
1559
1560static void pkt_print_settings(struct pktcdvd_device *pd)
1561{
Joe Perches99481332013-09-11 14:25:52 -07001562 pr_info("%s packets, %u blocks, Mode-%c disc\n",
1563 pd->settings.fp ? "Fixed" : "Variable",
1564 pd->settings.size >> 2,
1565 pd->settings.block_mode == 8 ? '1' : '2');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
1568static int pkt_mode_sense(struct pktcdvd_device *pd, struct packet_command *cgc, int page_code, int page_control)
1569{
1570 memset(cgc->cmd, 0, sizeof(cgc->cmd));
1571
1572 cgc->cmd[0] = GPCMD_MODE_SENSE_10;
1573 cgc->cmd[2] = page_code | (page_control << 6);
1574 cgc->cmd[7] = cgc->buflen >> 8;
1575 cgc->cmd[8] = cgc->buflen & 0xff;
1576 cgc->data_direction = CGC_DATA_READ;
1577 return pkt_generic_packet(pd, cgc);
1578}
1579
1580static int pkt_mode_select(struct pktcdvd_device *pd, struct packet_command *cgc)
1581{
1582 memset(cgc->cmd, 0, sizeof(cgc->cmd));
1583 memset(cgc->buffer, 0, 2);
1584 cgc->cmd[0] = GPCMD_MODE_SELECT_10;
1585 cgc->cmd[1] = 0x10; /* PF */
1586 cgc->cmd[7] = cgc->buflen >> 8;
1587 cgc->cmd[8] = cgc->buflen & 0xff;
1588 cgc->data_direction = CGC_DATA_WRITE;
1589 return pkt_generic_packet(pd, cgc);
1590}
1591
1592static int pkt_get_disc_info(struct pktcdvd_device *pd, disc_information *di)
1593{
1594 struct packet_command cgc;
1595 int ret;
1596
1597 /* set up command and get the disc info */
1598 init_cdrom_command(&cgc, di, sizeof(*di), CGC_DATA_READ);
1599 cgc.cmd[0] = GPCMD_READ_DISC_INFO;
1600 cgc.cmd[8] = cgc.buflen = 2;
1601 cgc.quiet = 1;
1602
1603 if ((ret = pkt_generic_packet(pd, &cgc)))
1604 return ret;
1605
1606 /* not all drives have the same disc_info length, so requeue
1607 * packet with the length the drive tells us it can supply
1608 */
1609 cgc.buflen = be16_to_cpu(di->disc_information_length) +
1610 sizeof(di->disc_information_length);
1611
1612 if (cgc.buflen > sizeof(disc_information))
1613 cgc.buflen = sizeof(disc_information);
1614
1615 cgc.cmd[8] = cgc.buflen;
1616 return pkt_generic_packet(pd, &cgc);
1617}
1618
1619static int pkt_get_track_info(struct pktcdvd_device *pd, __u16 track, __u8 type, track_information *ti)
1620{
1621 struct packet_command cgc;
1622 int ret;
1623
1624 init_cdrom_command(&cgc, ti, 8, CGC_DATA_READ);
1625 cgc.cmd[0] = GPCMD_READ_TRACK_RZONE_INFO;
1626 cgc.cmd[1] = type & 3;
1627 cgc.cmd[4] = (track & 0xff00) >> 8;
1628 cgc.cmd[5] = track & 0xff;
1629 cgc.cmd[8] = 8;
1630 cgc.quiet = 1;
1631
1632 if ((ret = pkt_generic_packet(pd, &cgc)))
1633 return ret;
1634
1635 cgc.buflen = be16_to_cpu(ti->track_information_length) +
1636 sizeof(ti->track_information_length);
1637
1638 if (cgc.buflen > sizeof(track_information))
1639 cgc.buflen = sizeof(track_information);
1640
1641 cgc.cmd[8] = cgc.buflen;
1642 return pkt_generic_packet(pd, &cgc);
1643}
1644
Peter Osterlund05680d82008-03-04 14:28:41 -08001645static noinline_for_stack int pkt_get_last_written(struct pktcdvd_device *pd,
1646 long *last_written)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 disc_information di;
1649 track_information ti;
1650 __u32 last_track;
1651 int ret = -1;
1652
1653 if ((ret = pkt_get_disc_info(pd, &di)))
1654 return ret;
1655
1656 last_track = (di.last_track_msb << 8) | di.last_track_lsb;
1657 if ((ret = pkt_get_track_info(pd, last_track, 1, &ti)))
1658 return ret;
1659
1660 /* if this track is blank, try the previous. */
1661 if (ti.blank) {
1662 last_track--;
1663 if ((ret = pkt_get_track_info(pd, last_track, 1, &ti)))
1664 return ret;
1665 }
1666
1667 /* if last recorded field is valid, return it. */
1668 if (ti.lra_v) {
1669 *last_written = be32_to_cpu(ti.last_rec_address);
1670 } else {
1671 /* make it up instead */
1672 *last_written = be32_to_cpu(ti.track_start) +
1673 be32_to_cpu(ti.track_size);
1674 if (ti.free_blocks)
1675 *last_written -= (be32_to_cpu(ti.free_blocks) + 7);
1676 }
1677 return 0;
1678}
1679
1680/*
1681 * write mode select package based on pd->settings
1682 */
Peter Osterlund05680d82008-03-04 14:28:41 -08001683static noinline_for_stack int pkt_set_write_settings(struct pktcdvd_device *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
1685 struct packet_command cgc;
1686 struct request_sense sense;
1687 write_param_page *wp;
1688 char buffer[128];
1689 int ret, size;
1690
1691 /* doesn't apply to DVD+RW or DVD-RAM */
1692 if ((pd->mmc3_profile == 0x1a) || (pd->mmc3_profile == 0x12))
1693 return 0;
1694
1695 memset(buffer, 0, sizeof(buffer));
1696 init_cdrom_command(&cgc, buffer, sizeof(*wp), CGC_DATA_READ);
1697 cgc.sense = &sense;
1698 if ((ret = pkt_mode_sense(pd, &cgc, GPMODE_WRITE_PARMS_PAGE, 0))) {
1699 pkt_dump_sense(&cgc);
1700 return ret;
1701 }
1702
1703 size = 2 + ((buffer[0] << 8) | (buffer[1] & 0xff));
1704 pd->mode_offset = (buffer[6] << 8) | (buffer[7] & 0xff);
1705 if (size > sizeof(buffer))
1706 size = sizeof(buffer);
1707
1708 /*
1709 * now get it all
1710 */
1711 init_cdrom_command(&cgc, buffer, size, CGC_DATA_READ);
1712 cgc.sense = &sense;
1713 if ((ret = pkt_mode_sense(pd, &cgc, GPMODE_WRITE_PARMS_PAGE, 0))) {
1714 pkt_dump_sense(&cgc);
1715 return ret;
1716 }
1717
1718 /*
1719 * write page is offset header + block descriptor length
1720 */
1721 wp = (write_param_page *) &buffer[sizeof(struct mode_page_header) + pd->mode_offset];
1722
1723 wp->fp = pd->settings.fp;
1724 wp->track_mode = pd->settings.track_mode;
1725 wp->write_type = pd->settings.write_type;
1726 wp->data_block_type = pd->settings.block_mode;
1727
1728 wp->multi_session = 0;
1729
1730#ifdef PACKET_USE_LS
1731 wp->link_size = 7;
1732 wp->ls_v = 1;
1733#endif
1734
1735 if (wp->data_block_type == PACKET_BLOCK_MODE1) {
1736 wp->session_format = 0;
1737 wp->subhdr2 = 0x20;
1738 } else if (wp->data_block_type == PACKET_BLOCK_MODE2) {
1739 wp->session_format = 0x20;
1740 wp->subhdr2 = 8;
1741#if 0
1742 wp->mcn[0] = 0x80;
1743 memcpy(&wp->mcn[1], PACKET_MCN, sizeof(wp->mcn) - 1);
1744#endif
1745 } else {
1746 /*
1747 * paranoia
1748 */
Joe Perches99481332013-09-11 14:25:52 -07001749 pr_err("write mode wrong %d\n", wp->data_block_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return 1;
1751 }
1752 wp->packet_size = cpu_to_be32(pd->settings.size >> 2);
1753
1754 cgc.buflen = cgc.cmd[8] = size;
1755 if ((ret = pkt_mode_select(pd, &cgc))) {
1756 pkt_dump_sense(&cgc);
1757 return ret;
1758 }
1759
1760 pkt_print_settings(pd);
1761 return 0;
1762}
1763
1764/*
Peter Osterlund7c613d52006-02-20 18:28:02 -08001765 * 1 -- we can write to this track, 0 -- we can't
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 */
Peter Osterlundab863ec2006-02-20 18:28:04 -08001767static int pkt_writable_track(struct pktcdvd_device *pd, track_information *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
Peter Osterlundab863ec2006-02-20 18:28:04 -08001769 switch (pd->mmc3_profile) {
1770 case 0x1a: /* DVD+RW */
1771 case 0x12: /* DVD-RAM */
1772 /* The track is always writable on DVD+RW/DVD-RAM */
1773 return 1;
1774 default:
1775 break;
1776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Peter Osterlundab863ec2006-02-20 18:28:04 -08001778 if (!ti->packet || !ti->fp)
1779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 /*
1782 * "good" settings as per Mt Fuji.
1783 */
Peter Osterlundab863ec2006-02-20 18:28:04 -08001784 if (ti->rt == 0 && ti->blank == 0)
Peter Osterlund7c613d52006-02-20 18:28:02 -08001785 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Peter Osterlundab863ec2006-02-20 18:28:04 -08001787 if (ti->rt == 0 && ti->blank == 1)
Peter Osterlund7c613d52006-02-20 18:28:02 -08001788 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Peter Osterlundab863ec2006-02-20 18:28:04 -08001790 if (ti->rt == 1 && ti->blank == 0)
Peter Osterlund7c613d52006-02-20 18:28:02 -08001791 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Joe Perches99481332013-09-11 14:25:52 -07001793 pr_err("bad state %d-%d-%d\n", ti->rt, ti->blank, ti->packet);
Peter Osterlund7c613d52006-02-20 18:28:02 -08001794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
1797/*
Peter Osterlund7c613d52006-02-20 18:28:02 -08001798 * 1 -- we can write to this disc, 0 -- we can't
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 */
Peter Osterlund7c613d52006-02-20 18:28:02 -08001800static int pkt_writable_disc(struct pktcdvd_device *pd, disc_information *di)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 switch (pd->mmc3_profile) {
1803 case 0x0a: /* CD-RW */
1804 case 0xffff: /* MMC3 not supported */
1805 break;
1806 case 0x1a: /* DVD+RW */
1807 case 0x13: /* DVD-RW */
1808 case 0x12: /* DVD-RAM */
Peter Osterlund7c613d52006-02-20 18:28:02 -08001809 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 default:
Joe Perchescd3f2cd2013-09-11 14:25:53 -07001811 pkt_dbg(2, "Wrong disc profile (%x)\n",
1812 pd->mmc3_profile);
Peter Osterlund7c613d52006-02-20 18:28:02 -08001813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815
1816 /*
1817 * for disc type 0xff we should probably reserve a new track.
1818 * but i'm not sure, should we leave this to user apps? probably.
1819 */
1820 if (di->disc_type == 0xff) {
Joe Perches99481332013-09-11 14:25:52 -07001821 pr_notice("unknown disc - no track?\n");
Peter Osterlund7c613d52006-02-20 18:28:02 -08001822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824
1825 if (di->disc_type != 0x20 && di->disc_type != 0) {
Joe Perches99481332013-09-11 14:25:52 -07001826 pr_err("wrong disc type (%x)\n", di->disc_type);
Peter Osterlund7c613d52006-02-20 18:28:02 -08001827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829
1830 if (di->erasable == 0) {
Joe Perches99481332013-09-11 14:25:52 -07001831 pr_notice("disc not erasable\n");
Peter Osterlund7c613d52006-02-20 18:28:02 -08001832 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834
1835 if (di->border_status == PACKET_SESSION_RESERVED) {
Joe Perches99481332013-09-11 14:25:52 -07001836 pr_err("can't write to last track (reserved)\n");
Peter Osterlund7c613d52006-02-20 18:28:02 -08001837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839
Peter Osterlund7c613d52006-02-20 18:28:02 -08001840 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Peter Osterlund05680d82008-03-04 14:28:41 -08001843static noinline_for_stack int pkt_probe_settings(struct pktcdvd_device *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
1845 struct packet_command cgc;
1846 unsigned char buf[12];
1847 disc_information di;
1848 track_information ti;
1849 int ret, track;
1850
1851 init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_READ);
1852 cgc.cmd[0] = GPCMD_GET_CONFIGURATION;
1853 cgc.cmd[8] = 8;
1854 ret = pkt_generic_packet(pd, &cgc);
1855 pd->mmc3_profile = ret ? 0xffff : buf[6] << 8 | buf[7];
1856
1857 memset(&di, 0, sizeof(disc_information));
1858 memset(&ti, 0, sizeof(track_information));
1859
1860 if ((ret = pkt_get_disc_info(pd, &di))) {
Joe Perches99481332013-09-11 14:25:52 -07001861 pr_err("failed get_disc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return ret;
1863 }
1864
Peter Osterlund7c613d52006-02-20 18:28:02 -08001865 if (!pkt_writable_disc(pd, &di))
Peter Osterlund9db91542006-02-20 18:28:04 -08001866 return -EROFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 pd->type = di.erasable ? PACKET_CDRW : PACKET_CDR;
1869
1870 track = 1; /* (di.last_track_msb << 8) | di.last_track_lsb; */
1871 if ((ret = pkt_get_track_info(pd, track, 1, &ti))) {
Joe Perches99481332013-09-11 14:25:52 -07001872 pr_err("failed get_track\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return ret;
1874 }
1875
Peter Osterlundab863ec2006-02-20 18:28:04 -08001876 if (!pkt_writable_track(pd, &ti)) {
Joe Perches99481332013-09-11 14:25:52 -07001877 pr_err("can't write to this track\n");
Peter Osterlund9db91542006-02-20 18:28:04 -08001878 return -EROFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880
1881 /*
1882 * we keep packet size in 512 byte units, makes it easier to
1883 * deal with request calculations.
1884 */
1885 pd->settings.size = be32_to_cpu(ti.fixed_packet_size) << 2;
1886 if (pd->settings.size == 0) {
Joe Perches99481332013-09-11 14:25:52 -07001887 pr_notice("detected zero packet size!\n");
Phillip Susia460ad62006-02-04 23:27:44 -08001888 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
Peter Osterlundd0272e72005-09-13 01:25:27 -07001890 if (pd->settings.size > PACKET_MAX_SECTORS) {
Joe Perches99481332013-09-11 14:25:52 -07001891 pr_err("packet size is too big\n");
Peter Osterlund9db91542006-02-20 18:28:04 -08001892 return -EROFS;
Peter Osterlundd0272e72005-09-13 01:25:27 -07001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 pd->settings.fp = ti.fp;
1895 pd->offset = (be32_to_cpu(ti.track_start) << 2) & (pd->settings.size - 1);
1896
1897 if (ti.nwa_v) {
1898 pd->nwa = be32_to_cpu(ti.next_writable);
1899 set_bit(PACKET_NWA_VALID, &pd->flags);
1900 }
1901
1902 /*
1903 * in theory we could use lra on -RW media as well and just zero
1904 * blocks that haven't been written yet, but in practice that
1905 * is just a no-go. we'll use that for -R, naturally.
1906 */
1907 if (ti.lra_v) {
1908 pd->lra = be32_to_cpu(ti.last_rec_address);
1909 set_bit(PACKET_LRA_VALID, &pd->flags);
1910 } else {
1911 pd->lra = 0xffffffff;
1912 set_bit(PACKET_LRA_VALID, &pd->flags);
1913 }
1914
1915 /*
1916 * fine for now
1917 */
1918 pd->settings.link_loss = 7;
1919 pd->settings.write_type = 0; /* packet */
1920 pd->settings.track_mode = ti.track_mode;
1921
1922 /*
1923 * mode1 or mode2 disc
1924 */
1925 switch (ti.data_mode) {
1926 case PACKET_MODE1:
1927 pd->settings.block_mode = PACKET_BLOCK_MODE1;
1928 break;
1929 case PACKET_MODE2:
1930 pd->settings.block_mode = PACKET_BLOCK_MODE2;
1931 break;
1932 default:
Joe Perches99481332013-09-11 14:25:52 -07001933 pr_err("unknown data mode\n");
Peter Osterlund9db91542006-02-20 18:28:04 -08001934 return -EROFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 return 0;
1937}
1938
1939/*
1940 * enable/disable write caching on drive
1941 */
Peter Osterlund05680d82008-03-04 14:28:41 -08001942static noinline_for_stack int pkt_write_caching(struct pktcdvd_device *pd,
1943 int set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
1945 struct packet_command cgc;
1946 struct request_sense sense;
1947 unsigned char buf[64];
1948 int ret;
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_READ);
1951 cgc.sense = &sense;
1952 cgc.buflen = pd->mode_offset + 12;
1953
1954 /*
1955 * caching mode page might not be there, so quiet this command
1956 */
1957 cgc.quiet = 1;
1958
1959 if ((ret = pkt_mode_sense(pd, &cgc, GPMODE_WCACHING_PAGE, 0)))
1960 return ret;
1961
1962 buf[pd->mode_offset + 10] |= (!!set << 2);
1963
1964 cgc.buflen = cgc.cmd[8] = 2 + ((buf[0] << 8) | (buf[1] & 0xff));
1965 ret = pkt_mode_select(pd, &cgc);
1966 if (ret) {
Joe Perches99481332013-09-11 14:25:52 -07001967 pr_err("write caching control failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 pkt_dump_sense(&cgc);
1969 } else if (!ret && set)
Joe Perches99481332013-09-11 14:25:52 -07001970 pr_notice("enabled write caching on %s\n", pd->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return ret;
1972}
1973
1974static int pkt_lock_door(struct pktcdvd_device *pd, int lockflag)
1975{
1976 struct packet_command cgc;
1977
1978 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
1979 cgc.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
1980 cgc.cmd[4] = lockflag ? 1 : 0;
1981 return pkt_generic_packet(pd, &cgc);
1982}
1983
1984/*
1985 * Returns drive maximum write speed
1986 */
Peter Osterlund05680d82008-03-04 14:28:41 -08001987static noinline_for_stack int pkt_get_max_speed(struct pktcdvd_device *pd,
1988 unsigned *write_speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
1990 struct packet_command cgc;
1991 struct request_sense sense;
1992 unsigned char buf[256+18];
1993 unsigned char *cap_buf;
1994 int ret, offset;
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 cap_buf = &buf[sizeof(struct mode_page_header) + pd->mode_offset];
1997 init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_UNKNOWN);
1998 cgc.sense = &sense;
1999
2000 ret = pkt_mode_sense(pd, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
2001 if (ret) {
2002 cgc.buflen = pd->mode_offset + cap_buf[1] + 2 +
2003 sizeof(struct mode_page_header);
2004 ret = pkt_mode_sense(pd, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
2005 if (ret) {
2006 pkt_dump_sense(&cgc);
2007 return ret;
2008 }
2009 }
2010
2011 offset = 20; /* Obsoleted field, used by older drives */
2012 if (cap_buf[1] >= 28)
2013 offset = 28; /* Current write speed selected */
2014 if (cap_buf[1] >= 30) {
2015 /* If the drive reports at least one "Logical Unit Write
2016 * Speed Performance Descriptor Block", use the information
2017 * in the first block. (contains the highest speed)
2018 */
2019 int num_spdb = (cap_buf[30] << 8) + cap_buf[31];
2020 if (num_spdb > 0)
2021 offset = 34;
2022 }
2023
2024 *write_speed = (cap_buf[offset] << 8) | cap_buf[offset + 1];
2025 return 0;
2026}
2027
2028/* These tables from cdrecord - I don't have orange book */
2029/* standard speed CD-RW (1-4x) */
2030static char clv_to_speed[16] = {
2031 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
2032 0, 2, 4, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2033};
2034/* high speed CD-RW (-10x) */
2035static char hs_clv_to_speed[16] = {
2036 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
2037 0, 2, 4, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2038};
2039/* ultra high speed CD-RW */
2040static char us_clv_to_speed[16] = {
2041 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
2042 0, 2, 4, 8, 0, 0,16, 0,24,32,40,48, 0, 0, 0, 0
2043};
2044
2045/*
2046 * reads the maximum media speed from ATIP
2047 */
Peter Osterlund05680d82008-03-04 14:28:41 -08002048static noinline_for_stack int pkt_media_speed(struct pktcdvd_device *pd,
2049 unsigned *speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
2051 struct packet_command cgc;
2052 struct request_sense sense;
2053 unsigned char buf[64];
2054 unsigned int size, st, sp;
2055 int ret;
2056
2057 init_cdrom_command(&cgc, buf, 2, CGC_DATA_READ);
2058 cgc.sense = &sense;
2059 cgc.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
2060 cgc.cmd[1] = 2;
2061 cgc.cmd[2] = 4; /* READ ATIP */
2062 cgc.cmd[8] = 2;
2063 ret = pkt_generic_packet(pd, &cgc);
2064 if (ret) {
2065 pkt_dump_sense(&cgc);
2066 return ret;
2067 }
2068 size = ((unsigned int) buf[0]<<8) + buf[1] + 2;
2069 if (size > sizeof(buf))
2070 size = sizeof(buf);
2071
2072 init_cdrom_command(&cgc, buf, size, CGC_DATA_READ);
2073 cgc.sense = &sense;
2074 cgc.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
2075 cgc.cmd[1] = 2;
2076 cgc.cmd[2] = 4;
2077 cgc.cmd[8] = size;
2078 ret = pkt_generic_packet(pd, &cgc);
2079 if (ret) {
2080 pkt_dump_sense(&cgc);
2081 return ret;
2082 }
2083
Alexey Dobriyaneaa0ff12008-02-06 01:36:06 -08002084 if (!(buf[6] & 0x40)) {
Joe Perches99481332013-09-11 14:25:52 -07002085 pr_notice("disc type is not CD-RW\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return 1;
2087 }
Alexey Dobriyaneaa0ff12008-02-06 01:36:06 -08002088 if (!(buf[6] & 0x4)) {
Joe Perches99481332013-09-11 14:25:52 -07002089 pr_notice("A1 values on media are not valid, maybe not CDRW?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return 1;
2091 }
2092
2093 st = (buf[6] >> 3) & 0x7; /* disc sub-type */
2094
2095 sp = buf[16] & 0xf; /* max speed from ATIP A1 field */
2096
2097 /* Info from cdrecord */
2098 switch (st) {
2099 case 0: /* standard speed */
2100 *speed = clv_to_speed[sp];
2101 break;
2102 case 1: /* high speed */
2103 *speed = hs_clv_to_speed[sp];
2104 break;
2105 case 2: /* ultra high speed */
2106 *speed = us_clv_to_speed[sp];
2107 break;
2108 default:
Joe Perches99481332013-09-11 14:25:52 -07002109 pr_notice("unknown disc sub-type %d\n", st);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return 1;
2111 }
2112 if (*speed) {
Joe Perches99481332013-09-11 14:25:52 -07002113 pr_info("maximum media speed: %d\n", *speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return 0;
2115 } else {
Joe Perches99481332013-09-11 14:25:52 -07002116 pr_notice("unknown speed %d for sub-type %d\n", sp, st);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 return 1;
2118 }
2119}
2120
Peter Osterlund05680d82008-03-04 14:28:41 -08002121static noinline_for_stack int pkt_perform_opc(struct pktcdvd_device *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 struct packet_command cgc;
2124 struct request_sense sense;
2125 int ret;
2126
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002127 pkt_dbg(2, "Performing OPC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
2130 cgc.sense = &sense;
2131 cgc.timeout = 60*HZ;
2132 cgc.cmd[0] = GPCMD_SEND_OPC;
2133 cgc.cmd[1] = 1;
2134 if ((ret = pkt_generic_packet(pd, &cgc)))
2135 pkt_dump_sense(&cgc);
2136 return ret;
2137}
2138
2139static int pkt_open_write(struct pktcdvd_device *pd)
2140{
2141 int ret;
2142 unsigned int write_speed, media_write_speed, read_speed;
2143
2144 if ((ret = pkt_probe_settings(pd))) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002145 pkt_dbg(2, "%s failed probe\n", pd->name);
Peter Osterlund9db91542006-02-20 18:28:04 -08002146 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
2149 if ((ret = pkt_set_write_settings(pd))) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002150 pkt_dbg(1, "%s failed saving write settings\n", pd->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return -EIO;
2152 }
2153
2154 pkt_write_caching(pd, USE_WCACHING);
2155
2156 if ((ret = pkt_get_max_speed(pd, &write_speed)))
2157 write_speed = 16 * 177;
2158 switch (pd->mmc3_profile) {
2159 case 0x13: /* DVD-RW */
2160 case 0x1a: /* DVD+RW */
2161 case 0x12: /* DVD-RAM */
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002162 pkt_dbg(1, "write speed %ukB/s\n", write_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164 default:
2165 if ((ret = pkt_media_speed(pd, &media_write_speed)))
2166 media_write_speed = 16;
2167 write_speed = min(write_speed, media_write_speed * 177);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002168 pkt_dbg(1, "write speed %ux\n", write_speed / 176);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 break;
2170 }
2171 read_speed = write_speed;
2172
2173 if ((ret = pkt_set_speed(pd, write_speed, read_speed))) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002174 pkt_dbg(1, "%s couldn't set write speed\n", pd->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 return -EIO;
2176 }
2177 pd->write_speed = write_speed;
2178 pd->read_speed = read_speed;
2179
2180 if ((ret = pkt_perform_opc(pd))) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002181 pkt_dbg(1, "%s Optimum Power Calibration failed\n", pd->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183
2184 return 0;
2185}
2186
2187/*
2188 * called at open time.
2189 */
Al Viroaeb5d722008-09-02 15:28:45 -04002190static int pkt_open_dev(struct pktcdvd_device *pd, fmode_t write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
2192 int ret;
2193 long lba;
Jens Axboe165125e2007-07-24 09:28:11 +02002194 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 /*
2197 * We need to re-open the cdrom device without O_NONBLOCK to be able
2198 * to read/write from/to it. It is already opened in O_NONBLOCK mode
2199 * so bdget() can't fail.
2200 */
2201 bdget(pd->bdev->bd_dev);
Tejun Heoe525fd82010-11-13 11:55:17 +01002202 if ((ret = blkdev_get(pd->bdev, FMODE_READ | FMODE_EXCL, pd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 goto out;
2204
2205 if ((ret = pkt_get_last_written(pd, &lba))) {
Joe Perches99481332013-09-11 14:25:52 -07002206 pr_err("pkt_get_last_written failed\n");
Tejun Heoe525fd82010-11-13 11:55:17 +01002207 goto out_putdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
2209
2210 set_capacity(pd->disk, lba << 2);
2211 set_capacity(pd->bdev->bd_disk, lba << 2);
2212 bd_set_size(pd->bdev, (loff_t)lba << 11);
2213
2214 q = bdev_get_queue(pd->bdev);
2215 if (write) {
2216 if ((ret = pkt_open_write(pd)))
Tejun Heoe525fd82010-11-13 11:55:17 +01002217 goto out_putdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 /*
2219 * Some CDRW drives can not handle writes larger than one packet,
2220 * even if the size is a multiple of the packet size.
2221 */
2222 spin_lock_irq(q->queue_lock);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002223 blk_queue_max_hw_sectors(q, pd->settings.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 spin_unlock_irq(q->queue_lock);
2225 set_bit(PACKET_WRITABLE, &pd->flags);
2226 } else {
2227 pkt_set_speed(pd, MAX_SPEED, MAX_SPEED);
2228 clear_bit(PACKET_WRITABLE, &pd->flags);
2229 }
2230
2231 if ((ret = pkt_set_segment_merging(pd, q)))
Tejun Heoe525fd82010-11-13 11:55:17 +01002232 goto out_putdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002234 if (write) {
2235 if (!pkt_grow_pktlist(pd, CONFIG_CDROM_PKTCDVD_BUFFERS)) {
Joe Perches99481332013-09-11 14:25:52 -07002236 pr_err("not enough memory for buffers\n");
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002237 ret = -ENOMEM;
Tejun Heoe525fd82010-11-13 11:55:17 +01002238 goto out_putdev;
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002239 }
Joe Perches99481332013-09-11 14:25:52 -07002240 pr_info("%lukB available on disc\n", lba << 1);
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243 return 0;
2244
2245out_putdev:
Tejun Heoe525fd82010-11-13 11:55:17 +01002246 blkdev_put(pd->bdev, FMODE_READ | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247out:
2248 return ret;
2249}
2250
2251/*
2252 * called when the device is closed. makes sure that the device flushes
2253 * the internal cache before we close.
2254 */
2255static void pkt_release_dev(struct pktcdvd_device *pd, int flush)
2256{
2257 if (flush && pkt_flush_cache(pd))
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002258 pkt_dbg(1, "%s not flushing cache\n", pd->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 pkt_lock_door(pd, 0);
2261
2262 pkt_set_speed(pd, MAX_SPEED, MAX_SPEED);
Tejun Heoe525fd82010-11-13 11:55:17 +01002263 blkdev_put(pd->bdev, FMODE_READ | FMODE_EXCL);
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002264
2265 pkt_shrink_pktlist(pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
2267
Dan Rosenberg252a52a2010-09-27 12:30:28 -04002268static struct pktcdvd_device *pkt_find_dev_from_minor(unsigned int dev_minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 if (dev_minor >= MAX_WRITERS)
2271 return NULL;
2272 return pkt_devs[dev_minor];
2273}
2274
Al Viro5e5e0072008-03-02 10:15:10 -05002275static int pkt_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 struct pktcdvd_device *pd = NULL;
2278 int ret;
2279
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002280 pkt_dbg(2, "entering\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002282 mutex_lock(&pktcdvd_mutex);
Jes Sorensen1657f822006-03-23 03:00:25 -08002283 mutex_lock(&ctl_mutex);
Al Viro5e5e0072008-03-02 10:15:10 -05002284 pd = pkt_find_dev_from_minor(MINOR(bdev->bd_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 if (!pd) {
2286 ret = -ENODEV;
2287 goto out;
2288 }
2289 BUG_ON(pd->refcnt < 0);
2290
2291 pd->refcnt++;
Peter Osterlund46f4e1b2005-05-20 13:59:06 -07002292 if (pd->refcnt > 1) {
Al Viro5e5e0072008-03-02 10:15:10 -05002293 if ((mode & FMODE_WRITE) &&
Peter Osterlund46f4e1b2005-05-20 13:59:06 -07002294 !test_bit(PACKET_WRITABLE, &pd->flags)) {
2295 ret = -EBUSY;
2296 goto out_dec;
2297 }
2298 } else {
Al Viro5e5e0072008-03-02 10:15:10 -05002299 ret = pkt_open_dev(pd, mode & FMODE_WRITE);
Peter Osterlund01fd9fd2006-02-14 13:52:55 -08002300 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 goto out_dec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 /*
2303 * needed here as well, since ext2 (among others) may change
2304 * the blocksize at mount time
2305 */
Al Viro5e5e0072008-03-02 10:15:10 -05002306 set_blocksize(bdev, CD_FRAMESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308
Jes Sorensen1657f822006-03-23 03:00:25 -08002309 mutex_unlock(&ctl_mutex);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002310 mutex_unlock(&pktcdvd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 return 0;
2312
2313out_dec:
2314 pd->refcnt--;
2315out:
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002316 pkt_dbg(2, "failed (%d)\n", ret);
Jes Sorensen1657f822006-03-23 03:00:25 -08002317 mutex_unlock(&ctl_mutex);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002318 mutex_unlock(&pktcdvd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 return ret;
2320}
2321
Al Virodb2a1442013-05-05 21:52:57 -04002322static void pkt_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
Al Viro5e5e0072008-03-02 10:15:10 -05002324 struct pktcdvd_device *pd = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002326 mutex_lock(&pktcdvd_mutex);
Jes Sorensen1657f822006-03-23 03:00:25 -08002327 mutex_lock(&ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 pd->refcnt--;
2329 BUG_ON(pd->refcnt < 0);
2330 if (pd->refcnt == 0) {
2331 int flush = test_bit(PACKET_WRITABLE, &pd->flags);
2332 pkt_release_dev(pd, flush);
2333 }
Jes Sorensen1657f822006-03-23 03:00:25 -08002334 mutex_unlock(&ctl_mutex);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002335 mutex_unlock(&pktcdvd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
2338
NeilBrown6712ecf2007-09-27 12:47:43 +02002339static void pkt_end_io_read_cloned(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
2341 struct packet_stacked_data *psd = bio->bi_private;
2342 struct pktcdvd_device *pd = psd->pd;
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 bio_put(bio);
NeilBrown6712ecf2007-09-27 12:47:43 +02002345 bio_endio(psd->bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 mempool_free(psd, psd_pool);
2347 pkt_bio_finished(pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348}
2349
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02002350static void pkt_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 struct pktcdvd_device *pd;
2353 char b[BDEVNAME_SIZE];
2354 sector_t zone;
2355 struct packet_data *pkt;
2356 int was_empty, blocked_bio;
2357 struct pkt_rb_node *node;
2358
2359 pd = q->queuedata;
2360 if (!pd) {
Joe Perches99481332013-09-11 14:25:52 -07002361 pr_err("%s incorrect request queue\n",
2362 bdevname(bio->bi_bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 goto end_io;
2364 }
2365
2366 /*
2367 * Clone READ bios so we can have our own bi_end_io callback.
2368 */
2369 if (bio_data_dir(bio) == READ) {
2370 struct bio *cloned_bio = bio_clone(bio, GFP_NOIO);
2371 struct packet_stacked_data *psd = mempool_alloc(psd_pool, GFP_NOIO);
2372
2373 psd->pd = pd;
2374 psd->bio = bio;
2375 cloned_bio->bi_bdev = pd->bdev;
2376 cloned_bio->bi_private = psd;
2377 cloned_bio->bi_end_io = pkt_end_io_read_cloned;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002378 pd->stats.secs_r += bio_sectors(bio);
Peter Osterlund46c271b2005-06-23 00:10:02 -07002379 pkt_queue_bio(pd, cloned_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02002380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
2382
2383 if (!test_bit(PACKET_WRITABLE, &pd->flags)) {
Joe Perches99481332013-09-11 14:25:52 -07002384 pr_notice("WRITE for ro device %s (%llu)\n",
2385 pd->name, (unsigned long long)bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 goto end_io;
2387 }
2388
2389 if (!bio->bi_size || (bio->bi_size % CD_FRAMESIZE)) {
Joe Perches99481332013-09-11 14:25:52 -07002390 pr_err("wrong bio size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 goto end_io;
2392 }
2393
2394 blk_queue_bounce(q, &bio);
2395
Joe Perches5323fb72013-09-11 14:25:51 -07002396 zone = get_zone(bio->bi_sector, pd);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002397 pkt_dbg(2, "start = %6llx stop = %6llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 (unsigned long long)bio->bi_sector,
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002399 (unsigned long long)bio_end_sector(bio));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401 /* Check if we have to split the bio */
2402 {
2403 struct bio_pair *bp;
2404 sector_t last_zone;
2405 int first_sectors;
2406
Joe Perches5323fb72013-09-11 14:25:51 -07002407 last_zone = get_zone(bio_end_sector(bio) - 1, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (last_zone != zone) {
2409 BUG_ON(last_zone != zone + pd->settings.size);
2410 first_sectors = last_zone - bio->bi_sector;
Denis ChengRq6feef532008-10-09 08:57:05 +02002411 bp = bio_split(bio, first_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 BUG_ON(!bp);
2413 pkt_make_request(q, &bp->bio1);
2414 pkt_make_request(q, &bp->bio2);
2415 bio_pair_release(bp);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02002416 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418 }
2419
2420 /*
2421 * If we find a matching packet in state WAITING or READ_WAIT, we can
2422 * just append this bio to that packet.
2423 */
2424 spin_lock(&pd->cdrw.active_list_lock);
2425 blocked_bio = 0;
2426 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
2427 if (pkt->sector == zone) {
2428 spin_lock(&pkt->lock);
2429 if ((pkt->state == PACKET_WAITING_STATE) ||
2430 (pkt->state == PACKET_READ_WAIT_STATE)) {
Akinobu Mitac5ecc482010-02-24 08:30:08 +01002431 bio_list_add(&pkt->orig_bios, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 pkt->write_size += bio->bi_size / CD_FRAMESIZE;
2433 if ((pkt->write_size >= pkt->frames) &&
2434 (pkt->state == PACKET_WAITING_STATE)) {
2435 atomic_inc(&pkt->run_sm);
2436 wake_up(&pd->wqueue);
2437 }
2438 spin_unlock(&pkt->lock);
2439 spin_unlock(&pd->cdrw.active_list_lock);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02002440 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 } else {
2442 blocked_bio = 1;
2443 }
2444 spin_unlock(&pkt->lock);
2445 }
2446 }
2447 spin_unlock(&pd->cdrw.active_list_lock);
2448
Thomas Maier0a0fc962006-12-08 02:36:11 -08002449 /*
2450 * Test if there is enough room left in the bio work queue
2451 * (queue size >= congestion on mark).
2452 * If not, wait till the work queue size is below the congestion off mark.
2453 */
2454 spin_lock(&pd->lock);
2455 if (pd->write_congestion_on > 0
2456 && pd->bio_queue_size >= pd->write_congestion_on) {
Jens Axboe8aa7e842009-07-09 14:52:32 +02002457 set_bdi_congested(&q->backing_dev_info, BLK_RW_ASYNC);
Thomas Maier0a0fc962006-12-08 02:36:11 -08002458 do {
2459 spin_unlock(&pd->lock);
Jens Axboe8aa7e842009-07-09 14:52:32 +02002460 congestion_wait(BLK_RW_ASYNC, HZ);
Thomas Maier0a0fc962006-12-08 02:36:11 -08002461 spin_lock(&pd->lock);
2462 } while(pd->bio_queue_size > pd->write_congestion_off);
2463 }
2464 spin_unlock(&pd->lock);
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 /*
2467 * No matching packet found. Store the bio in the work queue.
2468 */
2469 node = mempool_alloc(pd->rb_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 node->bio = bio;
2471 spin_lock(&pd->lock);
2472 BUG_ON(pd->bio_queue_size < 0);
2473 was_empty = (pd->bio_queue_size == 0);
2474 pkt_rbtree_insert(pd, node);
2475 spin_unlock(&pd->lock);
2476
2477 /*
2478 * Wake up the worker thread.
2479 */
2480 atomic_set(&pd->scan_queue, 1);
2481 if (was_empty) {
2482 /* This wake_up is required for correct operation */
2483 wake_up(&pd->wqueue);
2484 } else if (!list_empty(&pd->cdrw.pkt_free_list) && !blocked_bio) {
2485 /*
2486 * This wake up is not required for correct operation,
2487 * but improves performance in some cases.
2488 */
2489 wake_up(&pd->wqueue);
2490 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02002491 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02002493 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
2496
2497
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02002498static int pkt_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
2499 struct bio_vec *bvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 struct pktcdvd_device *pd = q->queuedata;
Joe Perches5323fb72013-09-11 14:25:51 -07002502 sector_t zone = get_zone(bmd->bi_sector, pd);
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02002503 int used = ((bmd->bi_sector - zone) << 9) + bmd->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 int remaining = (pd->settings.size << 9) - used;
2505 int remaining2;
2506
2507 /*
2508 * A bio <= PAGE_SIZE must be allowed. If it crosses a packet
2509 * boundary, pkt_make_request() will split the bio.
2510 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02002511 remaining2 = PAGE_SIZE - bmd->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 remaining = max(remaining, remaining2);
2513
2514 BUG_ON(remaining < 0);
2515 return remaining;
2516}
2517
2518static void pkt_init_queue(struct pktcdvd_device *pd)
2519{
Jens Axboe165125e2007-07-24 09:28:11 +02002520 struct request_queue *q = pd->disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 blk_queue_make_request(q, pkt_make_request);
Martin K. Petersene1defc42009-05-22 17:17:49 -04002523 blk_queue_logical_block_size(q, CD_FRAMESIZE);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002524 blk_queue_max_hw_sectors(q, PACKET_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 blk_queue_merge_bvec(q, pkt_merge_bvec);
2526 q->queuedata = pd;
2527}
2528
2529static int pkt_seq_show(struct seq_file *m, void *p)
2530{
2531 struct pktcdvd_device *pd = m->private;
2532 char *msg;
2533 char bdev_buf[BDEVNAME_SIZE];
2534 int states[PACKET_NUM_STATES];
2535
2536 seq_printf(m, "Writer %s mapped to %s:\n", pd->name,
2537 bdevname(pd->bdev, bdev_buf));
2538
2539 seq_printf(m, "\nSettings:\n");
2540 seq_printf(m, "\tpacket size:\t\t%dkB\n", pd->settings.size / 2);
2541
2542 if (pd->settings.write_type == 0)
2543 msg = "Packet";
2544 else
2545 msg = "Unknown";
2546 seq_printf(m, "\twrite type:\t\t%s\n", msg);
2547
2548 seq_printf(m, "\tpacket type:\t\t%s\n", pd->settings.fp ? "Fixed" : "Variable");
2549 seq_printf(m, "\tlink loss:\t\t%d\n", pd->settings.link_loss);
2550
2551 seq_printf(m, "\ttrack mode:\t\t%d\n", pd->settings.track_mode);
2552
2553 if (pd->settings.block_mode == PACKET_BLOCK_MODE1)
2554 msg = "Mode 1";
2555 else if (pd->settings.block_mode == PACKET_BLOCK_MODE2)
2556 msg = "Mode 2";
2557 else
2558 msg = "Unknown";
2559 seq_printf(m, "\tblock mode:\t\t%s\n", msg);
2560
2561 seq_printf(m, "\nStatistics:\n");
2562 seq_printf(m, "\tpackets started:\t%lu\n", pd->stats.pkt_started);
2563 seq_printf(m, "\tpackets ended:\t\t%lu\n", pd->stats.pkt_ended);
2564 seq_printf(m, "\twritten:\t\t%lukB\n", pd->stats.secs_w >> 1);
2565 seq_printf(m, "\tread gather:\t\t%lukB\n", pd->stats.secs_rg >> 1);
2566 seq_printf(m, "\tread:\t\t\t%lukB\n", pd->stats.secs_r >> 1);
2567
2568 seq_printf(m, "\nMisc:\n");
2569 seq_printf(m, "\treference count:\t%d\n", pd->refcnt);
2570 seq_printf(m, "\tflags:\t\t\t0x%lx\n", pd->flags);
2571 seq_printf(m, "\tread speed:\t\t%ukB/s\n", pd->read_speed);
2572 seq_printf(m, "\twrite speed:\t\t%ukB/s\n", pd->write_speed);
2573 seq_printf(m, "\tstart offset:\t\t%lu\n", pd->offset);
2574 seq_printf(m, "\tmode page offset:\t%u\n", pd->mode_offset);
2575
2576 seq_printf(m, "\nQueue state:\n");
2577 seq_printf(m, "\tbios queued:\t\t%d\n", pd->bio_queue_size);
2578 seq_printf(m, "\tbios pending:\t\t%d\n", atomic_read(&pd->cdrw.pending_bios));
2579 seq_printf(m, "\tcurrent sector:\t\t0x%llx\n", (unsigned long long)pd->current_sector);
2580
2581 pkt_count_states(pd, states);
2582 seq_printf(m, "\tstate:\t\t\ti:%d ow:%d rw:%d ww:%d rec:%d fin:%d\n",
2583 states[0], states[1], states[2], states[3], states[4], states[5]);
2584
Thomas Maier0a0fc962006-12-08 02:36:11 -08002585 seq_printf(m, "\twrite congestion marks:\toff=%d on=%d\n",
2586 pd->write_congestion_off,
2587 pd->write_congestion_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return 0;
2589}
2590
2591static int pkt_seq_open(struct inode *inode, struct file *file)
2592{
Al Virod9dda782013-03-31 18:16:14 -04002593 return single_open(file, pkt_seq_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002596static const struct file_operations pkt_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 .open = pkt_seq_open,
2598 .read = seq_read,
2599 .llseek = seq_lseek,
2600 .release = single_release
2601};
2602
2603static int pkt_new_dev(struct pktcdvd_device *pd, dev_t dev)
2604{
2605 int i;
2606 int ret = 0;
2607 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 struct block_device *bdev;
2609
2610 if (pd->pkt_dev == dev) {
Joe Perches99481332013-09-11 14:25:52 -07002611 pr_err("recursive setup not allowed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 return -EBUSY;
2613 }
2614 for (i = 0; i < MAX_WRITERS; i++) {
2615 struct pktcdvd_device *pd2 = pkt_devs[i];
2616 if (!pd2)
2617 continue;
2618 if (pd2->bdev->bd_dev == dev) {
Joe Perches99481332013-09-11 14:25:52 -07002619 pr_err("%s already setup\n", bdevname(pd2->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 return -EBUSY;
2621 }
2622 if (pd2->pkt_dev == dev) {
Joe Perches99481332013-09-11 14:25:52 -07002623 pr_err("can't chain pktcdvd devices\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 return -EBUSY;
2625 }
2626 }
2627
2628 bdev = bdget(dev);
2629 if (!bdev)
2630 return -ENOMEM;
Tejun Heoe525fd82010-11-13 11:55:17 +01002631 ret = blkdev_get(bdev, FMODE_READ | FMODE_NDELAY, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 if (ret)
2633 return ret;
2634
2635 /* This is safe, since we have a reference from open(). */
2636 __module_get(THIS_MODULE);
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 pd->bdev = bdev;
2639 set_blocksize(bdev, CD_FRAMESIZE);
2640
2641 pkt_init_queue(pd);
2642
2643 atomic_set(&pd->cdrw.pending_bios, 0);
2644 pd->cdrw.thread = kthread_run(kcdrwd, pd, "%s", pd->name);
2645 if (IS_ERR(pd->cdrw.thread)) {
Joe Perches99481332013-09-11 14:25:52 -07002646 pr_err("can't start kernel thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 ret = -ENOMEM;
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002648 goto out_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
2650
Denis V. Lunevc7705f32008-04-29 01:02:35 -07002651 proc_create_data(pd->name, 0, pkt_proc, &pkt_proc_fops, pd);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002652 pkt_dbg(1, "writer %s mapped to %s\n", pd->name, bdevname(bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return 0;
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655out_mem:
Al Viro2cbed892008-11-30 01:33:57 -05002656 blkdev_put(bdev, FMODE_READ | FMODE_NDELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 /* This is safe: open() is still holding a reference. */
2658 module_put(THIS_MODULE);
2659 return ret;
2660}
2661
Al Viro5e5e0072008-03-02 10:15:10 -05002662static int pkt_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
Al Viro5e5e0072008-03-02 10:15:10 -05002664 struct pktcdvd_device *pd = bdev->bd_disk->private_data;
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002665 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002667 pkt_dbg(2, "cmd %x, dev %d:%d\n",
2668 cmd, MAJOR(bdev->bd_dev), MINOR(bdev->bd_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002670 mutex_lock(&pktcdvd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 switch (cmd) {
Al Viroa0eb62a2007-08-29 00:56:32 -04002672 case CDROMEJECT:
2673 /*
2674 * The door gets locked when the device is opened, so we
2675 * have to unlock it or else the eject command fails.
2676 */
2677 if (pd->refcnt == 1)
2678 pkt_lock_door(pd, 0);
2679 /* fallthru */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 /*
2681 * forward selected CDROM ioctls to CD-ROM, for UDF
2682 */
2683 case CDROMMULTISESSION:
2684 case CDROMREADTOCENTRY:
2685 case CDROM_LAST_WRITTEN:
2686 case CDROM_SEND_PACKET:
2687 case SCSI_IOCTL_SEND_COMMAND:
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002688 ret = __blkdev_driver_ioctl(pd->bdev, mode, cmd, arg);
2689 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 default:
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002692 pkt_dbg(2, "Unknown ioctl for %s (%x)\n", pd->name, cmd);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002693 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002695 mutex_unlock(&pktcdvd_mutex);
Linus Torvalds8560c652008-08-27 13:35:31 -07002696
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002697 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
Tejun Heo3c0d2062011-03-09 19:54:28 +01002700static unsigned int pkt_check_events(struct gendisk *disk,
2701 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 struct pktcdvd_device *pd = disk->private_data;
2704 struct gendisk *attached_disk;
2705
2706 if (!pd)
2707 return 0;
2708 if (!pd->bdev)
2709 return 0;
2710 attached_disk = pd->bdev->bd_disk;
Tejun Heo3c0d2062011-03-09 19:54:28 +01002711 if (!attached_disk || !attached_disk->fops->check_events)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 return 0;
Tejun Heo3c0d2062011-03-09 19:54:28 +01002713 return attached_disk->fops->check_events(attached_disk, clearing);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714}
2715
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002716static const struct block_device_operations pktcdvd_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 .owner = THIS_MODULE,
Al Viro5e5e0072008-03-02 10:15:10 -05002718 .open = pkt_open,
2719 .release = pkt_close,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002720 .ioctl = pkt_ioctl,
Tejun Heo3c0d2062011-03-09 19:54:28 +01002721 .check_events = pkt_check_events,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722};
2723
Al Viro2c9ede52011-07-23 20:24:48 -04002724static char *pktcdvd_devnode(struct gendisk *gd, umode_t *mode)
Kay Sieversb03f38b2009-04-30 15:23:42 +02002725{
2726 return kasprintf(GFP_KERNEL, "pktcdvd/%s", gd->disk_name);
2727}
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729/*
2730 * Set up mapping from pktcdvd device to CD-ROM device.
2731 */
Thomas Maieradb92502006-12-08 02:36:10 -08002732static int pkt_setup_dev(dev_t dev, dev_t* pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
2734 int idx;
2735 int ret = -ENOMEM;
2736 struct pktcdvd_device *pd;
2737 struct gendisk *disk;
Thomas Maieradb92502006-12-08 02:36:10 -08002738
2739 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
2741 for (idx = 0; idx < MAX_WRITERS; idx++)
2742 if (!pkt_devs[idx])
2743 break;
2744 if (idx == MAX_WRITERS) {
Joe Perches99481332013-09-11 14:25:52 -07002745 pr_err("max %d writers supported\n", MAX_WRITERS);
Thomas Maieradb92502006-12-08 02:36:10 -08002746 ret = -EBUSY;
2747 goto out_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
2749
Peter Osterlund1107d2e2005-09-13 01:25:29 -07002750 pd = kzalloc(sizeof(struct pktcdvd_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (!pd)
Thomas Maieradb92502006-12-08 02:36:10 -08002752 goto out_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Matthew Dobson0eaae62a2006-03-26 01:37:47 -08002754 pd->rb_pool = mempool_create_kmalloc_pool(PKT_RB_POOL_SIZE,
2755 sizeof(struct pkt_rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (!pd->rb_pool)
2757 goto out_mem;
2758
Peter Osterlunde1bc89b2006-02-04 23:27:47 -08002759 INIT_LIST_HEAD(&pd->cdrw.pkt_free_list);
2760 INIT_LIST_HEAD(&pd->cdrw.pkt_active_list);
2761 spin_lock_init(&pd->cdrw.active_list_lock);
2762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 spin_lock_init(&pd->lock);
2764 spin_lock_init(&pd->iosched.lock);
Akinobu Mitac5ecc482010-02-24 08:30:08 +01002765 bio_list_init(&pd->iosched.read_queue);
2766 bio_list_init(&pd->iosched.write_queue);
Thomas Maier78220822006-10-04 02:15:28 -07002767 sprintf(pd->name, DRIVER_NAME"%d", idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 init_waitqueue_head(&pd->wqueue);
2769 pd->bio_queue = RB_ROOT;
2770
Thomas Maier0a0fc962006-12-08 02:36:11 -08002771 pd->write_congestion_on = write_congestion_on;
2772 pd->write_congestion_off = write_congestion_off;
2773
Thomas Maieradb92502006-12-08 02:36:10 -08002774 disk = alloc_disk(1);
2775 if (!disk)
2776 goto out_mem;
2777 pd->disk = disk;
Thomas Maieradd21662006-10-04 02:15:30 -07002778 disk->major = pktdev_major;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 disk->first_minor = idx;
2780 disk->fops = &pktcdvd_ops;
2781 disk->flags = GENHD_FL_REMOVABLE;
Thomas Maieradb92502006-12-08 02:36:10 -08002782 strcpy(disk->disk_name, pd->name);
Kay Sieverse454cea2009-09-18 23:01:12 +02002783 disk->devnode = pktcdvd_devnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 disk->private_data = pd;
2785 disk->queue = blk_alloc_queue(GFP_KERNEL);
2786 if (!disk->queue)
2787 goto out_mem2;
2788
Tejun Heof331c022008-09-03 09:01:48 +02002789 pd->pkt_dev = MKDEV(pktdev_major, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 ret = pkt_new_dev(pd, dev);
2791 if (ret)
2792 goto out_new_dev;
2793
Tejun Heo3c0d2062011-03-09 19:54:28 +01002794 /* inherit events of the host device */
2795 disk->events = pd->bdev->bd_disk->events;
2796 disk->async_events = pd->bdev->bd_disk->async_events;
2797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 add_disk(disk);
Thomas Maieradb92502006-12-08 02:36:10 -08002799
Thomas Maier32694852006-12-08 02:36:12 -08002800 pkt_sysfs_dev_new(pd);
2801 pkt_debugfs_dev_new(pd);
2802
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 pkt_devs[idx] = pd;
Thomas Maieradb92502006-12-08 02:36:10 -08002804 if (pkt_dev)
2805 *pkt_dev = pd->pkt_dev;
2806
2807 mutex_unlock(&ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 return 0;
2809
2810out_new_dev:
Al Viro1312f402006-03-12 11:02:03 -05002811 blk_cleanup_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812out_mem2:
2813 put_disk(disk);
2814out_mem:
2815 if (pd->rb_pool)
2816 mempool_destroy(pd->rb_pool);
2817 kfree(pd);
Thomas Maieradb92502006-12-08 02:36:10 -08002818out_mutex:
2819 mutex_unlock(&ctl_mutex);
Joe Perches99481332013-09-11 14:25:52 -07002820 pr_err("setup of pktcdvd device failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 return ret;
2822}
2823
2824/*
2825 * Tear down mapping from pktcdvd device to CD-ROM device.
2826 */
Thomas Maieradb92502006-12-08 02:36:10 -08002827static int pkt_remove_dev(dev_t pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828{
2829 struct pktcdvd_device *pd;
2830 int idx;
Thomas Maieradb92502006-12-08 02:36:10 -08002831 int ret = 0;
2832
2833 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
2835 for (idx = 0; idx < MAX_WRITERS; idx++) {
2836 pd = pkt_devs[idx];
2837 if (pd && (pd->pkt_dev == pkt_dev))
2838 break;
2839 }
2840 if (idx == MAX_WRITERS) {
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002841 pkt_dbg(1, "dev not setup\n");
Thomas Maieradb92502006-12-08 02:36:10 -08002842 ret = -ENXIO;
2843 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
2845
Thomas Maieradb92502006-12-08 02:36:10 -08002846 if (pd->refcnt > 0) {
2847 ret = -EBUSY;
2848 goto out;
2849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 if (!IS_ERR(pd->cdrw.thread))
2851 kthread_stop(pd->cdrw.thread);
2852
Thomas Maier32694852006-12-08 02:36:12 -08002853 pkt_devs[idx] = NULL;
2854
2855 pkt_debugfs_dev_remove(pd);
2856 pkt_sysfs_dev_remove(pd);
2857
Al Viro2cbed892008-11-30 01:33:57 -05002858 blkdev_put(pd->bdev, FMODE_READ | FMODE_NDELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 remove_proc_entry(pd->name, pkt_proc);
Joe Perchescd3f2cd2013-09-11 14:25:53 -07002861 pkt_dbg(1, "writer %s unmapped\n", pd->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
2863 del_gendisk(pd->disk);
Al Viro1312f402006-03-12 11:02:03 -05002864 blk_cleanup_queue(pd->disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 put_disk(pd->disk);
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 mempool_destroy(pd->rb_pool);
2868 kfree(pd);
2869
2870 /* This is safe: open() is still holding a reference. */
2871 module_put(THIS_MODULE);
Thomas Maieradb92502006-12-08 02:36:10 -08002872
2873out:
2874 mutex_unlock(&ctl_mutex);
2875 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
2878static void pkt_get_status(struct pkt_ctrl_command *ctrl_cmd)
2879{
Thomas Maieradb92502006-12-08 02:36:10 -08002880 struct pktcdvd_device *pd;
2881
2882 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2883
2884 pd = pkt_find_dev_from_minor(ctrl_cmd->dev_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (pd) {
2886 ctrl_cmd->dev = new_encode_dev(pd->bdev->bd_dev);
2887 ctrl_cmd->pkt_dev = new_encode_dev(pd->pkt_dev);
2888 } else {
2889 ctrl_cmd->dev = 0;
2890 ctrl_cmd->pkt_dev = 0;
2891 }
2892 ctrl_cmd->num_devices = MAX_WRITERS;
Thomas Maieradb92502006-12-08 02:36:10 -08002893
2894 mutex_unlock(&ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
Arnd Bergmannf80a0ca2010-04-28 14:36:41 +02002897static long pkt_ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898{
2899 void __user *argp = (void __user *)arg;
2900 struct pkt_ctrl_command ctrl_cmd;
2901 int ret = 0;
Thomas Maieradb92502006-12-08 02:36:10 -08002902 dev_t pkt_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 if (cmd != PACKET_CTRL_CMD)
2905 return -ENOTTY;
2906
2907 if (copy_from_user(&ctrl_cmd, argp, sizeof(struct pkt_ctrl_command)))
2908 return -EFAULT;
2909
2910 switch (ctrl_cmd.command) {
2911 case PKT_CTRL_CMD_SETUP:
2912 if (!capable(CAP_SYS_ADMIN))
2913 return -EPERM;
Thomas Maieradb92502006-12-08 02:36:10 -08002914 ret = pkt_setup_dev(new_decode_dev(ctrl_cmd.dev), &pkt_dev);
2915 ctrl_cmd.pkt_dev = new_encode_dev(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 break;
2917 case PKT_CTRL_CMD_TEARDOWN:
2918 if (!capable(CAP_SYS_ADMIN))
2919 return -EPERM;
Thomas Maieradb92502006-12-08 02:36:10 -08002920 ret = pkt_remove_dev(new_decode_dev(ctrl_cmd.pkt_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 break;
2922 case PKT_CTRL_CMD_STATUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 pkt_get_status(&ctrl_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 break;
2925 default:
2926 return -ENOTTY;
2927 }
2928
2929 if (copy_to_user(argp, &ctrl_cmd, sizeof(struct pkt_ctrl_command)))
2930 return -EFAULT;
2931 return ret;
2932}
2933
Arnd Bergmannf80a0ca2010-04-28 14:36:41 +02002934#ifdef CONFIG_COMPAT
2935static long pkt_ctl_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2936{
2937 return pkt_ctl_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
2938}
2939#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002941static const struct file_operations pkt_ctl_fops = {
Arnd Bergmannf80a0ca2010-04-28 14:36:41 +02002942 .open = nonseekable_open,
2943 .unlocked_ioctl = pkt_ctl_ioctl,
2944#ifdef CONFIG_COMPAT
2945 .compat_ioctl = pkt_ctl_compat_ioctl,
2946#endif
2947 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002948 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949};
2950
2951static struct miscdevice pkt_misc = {
2952 .minor = MISC_DYNAMIC_MINOR,
Thomas Maier78220822006-10-04 02:15:28 -07002953 .name = DRIVER_NAME,
Kay Sieverse454cea2009-09-18 23:01:12 +02002954 .nodename = "pktcdvd/control",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 .fops = &pkt_ctl_fops
2956};
2957
2958static int __init pkt_init(void)
2959{
2960 int ret;
2961
Thomas Maier32694852006-12-08 02:36:12 -08002962 mutex_init(&ctl_mutex);
2963
Matthew Dobson0eaae62a2006-03-26 01:37:47 -08002964 psd_pool = mempool_create_kmalloc_pool(PSD_POOL_SIZE,
2965 sizeof(struct packet_stacked_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (!psd_pool)
2967 return -ENOMEM;
2968
Thomas Maieradd21662006-10-04 02:15:30 -07002969 ret = register_blkdev(pktdev_major, DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 if (ret < 0) {
Joe Perches99481332013-09-11 14:25:52 -07002971 pr_err("unable to register block device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 goto out2;
2973 }
Thomas Maieradd21662006-10-04 02:15:30 -07002974 if (!pktdev_major)
2975 pktdev_major = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Thomas Maier32694852006-12-08 02:36:12 -08002977 ret = pkt_sysfs_init();
2978 if (ret)
2979 goto out;
2980
2981 pkt_debugfs_init();
2982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 ret = misc_register(&pkt_misc);
2984 if (ret) {
Joe Perches99481332013-09-11 14:25:52 -07002985 pr_err("unable to register misc device\n");
Thomas Maier32694852006-12-08 02:36:12 -08002986 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
2988
Alexey Dobriyan928b4d82008-04-29 01:01:44 -07002989 pkt_proc = proc_mkdir("driver/"DRIVER_NAME, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 return 0;
2992
Thomas Maier32694852006-12-08 02:36:12 -08002993out_misc:
2994 pkt_debugfs_cleanup();
2995 pkt_sysfs_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996out:
Thomas Maieradd21662006-10-04 02:15:30 -07002997 unregister_blkdev(pktdev_major, DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998out2:
2999 mempool_destroy(psd_pool);
3000 return ret;
3001}
3002
3003static void __exit pkt_exit(void)
3004{
Alexey Dobriyan928b4d82008-04-29 01:01:44 -07003005 remove_proc_entry("driver/"DRIVER_NAME, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 misc_deregister(&pkt_misc);
Thomas Maier32694852006-12-08 02:36:12 -08003007
3008 pkt_debugfs_cleanup();
3009 pkt_sysfs_cleanup();
3010
Thomas Maieradd21662006-10-04 02:15:30 -07003011 unregister_blkdev(pktdev_major, DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 mempool_destroy(psd_pool);
3013}
3014
3015MODULE_DESCRIPTION("Packet writing layer for CD/DVD drives");
3016MODULE_AUTHOR("Jens Axboe <axboe@suse.de>");
3017MODULE_LICENSE("GPL");
3018
3019module_init(pkt_init);
3020module_exit(pkt_exit);