Merge remote-tracking branches 'regulator/topic/notifier', 'regulator/topic/pfuze100...
[linux-2.6-block.git] / drivers / ide / ide-ioctls.c
CommitLineData
05236ea6
BZ
1/*
2 * IDE ioctls handling.
3 */
4
38789fda 5#include <linux/export.h>
05236ea6
BZ
6#include <linux/hdreg.h>
7#include <linux/ide.h>
5a0e3ad6 8#include <linux/slab.h>
05236ea6
BZ
9
10static const struct ide_ioctl_devset ide_ioctl_settings[] = {
92f1f8fd
EO
11{ HDIO_GET_32BIT, HDIO_SET_32BIT, &ide_devset_io_32bit },
12{ HDIO_GET_KEEPSETTINGS, HDIO_SET_KEEPSETTINGS, &ide_devset_keepsettings },
13{ HDIO_GET_UNMASKINTR, HDIO_SET_UNMASKINTR, &ide_devset_unmaskirq },
14{ HDIO_GET_DMA, HDIO_SET_DMA, &ide_devset_using_dma },
15{ -1, HDIO_SET_PIO_MODE, &ide_devset_pio_mode },
05236ea6
BZ
16{ 0 }
17};
18
19int ide_setting_ioctl(ide_drive_t *drive, struct block_device *bdev,
20 unsigned int cmd, unsigned long arg,
21 const struct ide_ioctl_devset *s)
22{
92f1f8fd 23 const struct ide_devset *ds;
05236ea6
BZ
24 int err = -EOPNOTSUPP;
25
92f1f8fd
EO
26 for (; (ds = s->setting); s++) {
27 if (ds->get && s->get_ioctl == cmd)
05236ea6 28 goto read_val;
92f1f8fd 29 else if (ds->set && s->set_ioctl == cmd)
05236ea6
BZ
30 goto set_val;
31 }
32
33 return err;
34
35read_val:
36 mutex_lock(&ide_setting_mtx);
92f1f8fd 37 err = ds->get(drive);
05236ea6
BZ
38 mutex_unlock(&ide_setting_mtx);
39 return err >= 0 ? put_user(err, (long __user *)arg) : err;
40
41set_val:
42 if (bdev != bdev->bd_contains)
43 err = -EINVAL;
44 else {
45 if (!capable(CAP_SYS_ADMIN))
46 err = -EACCES;
47 else {
48 mutex_lock(&ide_setting_mtx);
92f1f8fd 49 err = ide_devset_execute(drive, ds, arg);
05236ea6
BZ
50 mutex_unlock(&ide_setting_mtx);
51 }
52 }
53 return err;
54}
55EXPORT_SYMBOL_GPL(ide_setting_ioctl);
56
57static int ide_get_identity_ioctl(ide_drive_t *drive, unsigned int cmd,
58 unsigned long arg)
59{
60 u16 *id = NULL;
61 int size = (cmd == HDIO_GET_IDENTITY) ? (ATA_ID_WORDS * 2) : 142;
62 int rc = 0;
63
97100fc8 64 if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
05236ea6
BZ
65 rc = -ENOMSG;
66 goto out;
67 }
68
e18ed145
CE
69 /* ata_id_to_hd_driveid() relies on 'id' to be fully allocated. */
70 id = kmalloc(ATA_ID_WORDS * 2, GFP_KERNEL);
05236ea6
BZ
71 if (id == NULL) {
72 rc = -ENOMEM;
73 goto out;
74 }
75
76 memcpy(id, drive->id, size);
77 ata_id_to_hd_driveid(id);
78
79 if (copy_to_user((void __user *)arg, id, size))
80 rc = -EFAULT;
81
82 kfree(id);
83out:
84 return rc;
85}
86
87static int ide_get_nice_ioctl(ide_drive_t *drive, unsigned long arg)
88{
97100fc8
BZ
89 return put_user((!!(drive->dev_flags & IDE_DFLAG_DSC_OVERLAP)
90 << IDE_NICE_DSC_OVERLAP) |
91 (!!(drive->dev_flags & IDE_DFLAG_NICE1)
92 << IDE_NICE_1), (long __user *)arg);
05236ea6
BZ
93}
94
95static int ide_set_nice_ioctl(ide_drive_t *drive, unsigned long arg)
96{
97 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
98 return -EPERM;
99
100 if (((arg >> IDE_NICE_DSC_OVERLAP) & 1) &&
5317464d 101 (drive->media != ide_tape))
05236ea6
BZ
102 return -EPERM;
103
97100fc8
BZ
104 if ((arg >> IDE_NICE_DSC_OVERLAP) & 1)
105 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
106 else
107 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
108
109 if ((arg >> IDE_NICE_1) & 1)
110 drive->dev_flags |= IDE_DFLAG_NICE1;
111 else
112 drive->dev_flags &= ~IDE_DFLAG_NICE1;
05236ea6
BZ
113
114 return 0;
115}
116
22aa4b32 117static int ide_cmd_ioctl(ide_drive_t *drive, unsigned long arg)
05236ea6
BZ
118{
119 u8 *buf = NULL;
120 int bufsize = 0, err = 0;
121 u8 args[4], xfer_rate = 0;
22aa4b32
BZ
122 struct ide_cmd cmd;
123 struct ide_taskfile *tf = &cmd.tf;
05236ea6
BZ
124
125 if (NULL == (void *) arg) {
126 struct request *rq;
127
aebf526b 128 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
82ed4db4 129 scsi_req_init(rq);
2f5a8e80 130 ide_req(rq)->type = ATA_PRIV_TASKFILE;
05236ea6
BZ
131 err = blk_execute_rq(drive->queue, NULL, rq, 0);
132 blk_put_request(rq);
133
134 return err;
135 }
136
137 if (copy_from_user(args, (void __user *)arg, 4))
138 return -EFAULT;
139
22aa4b32 140 memset(&cmd, 0, sizeof(cmd));
05236ea6
BZ
141 tf->feature = args[2];
142 if (args[0] == ATA_CMD_SMART) {
143 tf->nsect = args[3];
144 tf->lbal = args[1];
6fcf0497
XY
145 tf->lbam = ATA_SMART_LBAM_PASS;
146 tf->lbah = ATA_SMART_LBAH_PASS;
60f85019
SS
147 cmd.valid.out.tf = IDE_VALID_OUT_TF;
148 cmd.valid.in.tf = IDE_VALID_NSECT;
05236ea6
BZ
149 } else {
150 tf->nsect = args[1];
60f85019
SS
151 cmd.valid.out.tf = IDE_VALID_FEATURE | IDE_VALID_NSECT;
152 cmd.valid.in.tf = IDE_VALID_NSECT;
05236ea6
BZ
153 }
154 tf->command = args[0];
0dfb991c 155 cmd.protocol = args[3] ? ATA_PROT_PIO : ATA_PROT_NODATA;
05236ea6
BZ
156
157 if (args[3]) {
22aa4b32 158 cmd.tf_flags |= IDE_TFLAG_IO_16BIT;
05236ea6
BZ
159 bufsize = SECTOR_SIZE * args[3];
160 buf = kzalloc(bufsize, GFP_KERNEL);
161 if (buf == NULL)
162 return -ENOMEM;
163 }
164
165 if (tf->command == ATA_CMD_SET_FEATURES &&
166 tf->feature == SETFEATURES_XFER &&
a9c41509 167 tf->nsect >= XFER_SW_DMA_0) {
28c1969f 168 xfer_rate = ide_find_dma_mode(drive, tf->nsect);
a9c41509
BZ
169 if (xfer_rate != tf->nsect) {
170 err = -EINVAL;
05236ea6
BZ
171 goto abort;
172 }
665d66e8
BZ
173
174 cmd.tf_flags |= IDE_TFLAG_SET_XFER;
05236ea6
BZ
175 }
176
22aa4b32 177 err = ide_raw_taskfile(drive, &cmd, buf, args[3]);
05236ea6
BZ
178
179 args[0] = tf->status;
180 args[1] = tf->error;
181 args[2] = tf->nsect;
05236ea6
BZ
182abort:
183 if (copy_to_user((void __user *)arg, &args, 4))
184 err = -EFAULT;
185 if (buf) {
186 if (copy_to_user((void __user *)(arg + 4), buf, bufsize))
187 err = -EFAULT;
188 kfree(buf);
189 }
190 return err;
191}
192
22aa4b32 193static int ide_task_ioctl(ide_drive_t *drive, unsigned long arg)
05236ea6
BZ
194{
195 void __user *p = (void __user *)arg;
196 int err = 0;
197 u8 args[7];
22aa4b32 198 struct ide_cmd cmd;
05236ea6
BZ
199
200 if (copy_from_user(args, p, 7))
201 return -EFAULT;
202
22aa4b32 203 memset(&cmd, 0, sizeof(cmd));
745483f1 204 memcpy(&cmd.tf.feature, &args[1], 6);
22aa4b32 205 cmd.tf.command = args[0];
60f85019
SS
206 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
207 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
05236ea6 208
22aa4b32 209 err = ide_no_data_taskfile(drive, &cmd);
05236ea6 210
22aa4b32 211 args[0] = cmd.tf.command;
745483f1 212 memcpy(&args[1], &cmd.tf.feature, 6);
05236ea6
BZ
213
214 if (copy_to_user(p, args, 7))
215 err = -EFAULT;
216
217 return err;
218}
219
220static int generic_drive_reset(ide_drive_t *drive)
221{
222 struct request *rq;
223 int ret = 0;
224
aebf526b 225 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
82ed4db4 226 scsi_req_init(rq);
2f5a8e80 227 ide_req(rq)->type = ATA_PRIV_MISC;
82ed4db4
CH
228 scsi_req(rq)->cmd_len = 1;
229 scsi_req(rq)->cmd[0] = REQ_DRIVE_RESET;
05236ea6
BZ
230 if (blk_execute_rq(drive->queue, NULL, rq, 1))
231 ret = rq->errors;
232 blk_put_request(rq);
233 return ret;
234}
235
1bddd9e6 236int generic_ide_ioctl(ide_drive_t *drive, struct block_device *bdev,
05236ea6
BZ
237 unsigned int cmd, unsigned long arg)
238{
239 int err;
240
241 err = ide_setting_ioctl(drive, bdev, cmd, arg, ide_ioctl_settings);
242 if (err != -EOPNOTSUPP)
243 return err;
244
245 switch (cmd) {
246 case HDIO_OBSOLETE_IDENTITY:
247 case HDIO_GET_IDENTITY:
248 if (bdev != bdev->bd_contains)
249 return -EINVAL;
250 return ide_get_identity_ioctl(drive, cmd, arg);
251 case HDIO_GET_NICE:
252 return ide_get_nice_ioctl(drive, arg);
253 case HDIO_SET_NICE:
254 if (!capable(CAP_SYS_ADMIN))
255 return -EACCES;
256 return ide_set_nice_ioctl(drive, arg);
257#ifdef CONFIG_IDE_TASK_IOCTL
258 case HDIO_DRIVE_TASKFILE:
259 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
260 return -EACCES;
261 if (drive->media == ide_disk)
22aa4b32 262 return ide_taskfile_ioctl(drive, arg);
05236ea6
BZ
263 return -ENOMSG;
264#endif
265 case HDIO_DRIVE_CMD:
266 if (!capable(CAP_SYS_RAWIO))
267 return -EACCES;
22aa4b32 268 return ide_cmd_ioctl(drive, arg);
05236ea6
BZ
269 case HDIO_DRIVE_TASK:
270 if (!capable(CAP_SYS_RAWIO))
271 return -EACCES;
22aa4b32 272 return ide_task_ioctl(drive, arg);
05236ea6
BZ
273 case HDIO_DRIVE_RESET:
274 if (!capable(CAP_SYS_ADMIN))
275 return -EACCES;
276 return generic_drive_reset(drive);
277 case HDIO_GET_BUSSTATE:
278 if (!capable(CAP_SYS_ADMIN))
279 return -EACCES;
280 if (put_user(BUSSTATE_ON, (long __user *)arg))
281 return -EFAULT;
282 return 0;
283 case HDIO_SET_BUSSTATE:
284 if (!capable(CAP_SYS_ADMIN))
285 return -EACCES;
286 return -EOPNOTSUPP;
287 default:
288 return -EINVAL;
289 }
290}
291EXPORT_SYMBOL(generic_ide_ioctl);