scsi_ioctl.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:14k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2001 Jens Axboe <axboe@suse.de>
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License version 2 as
  6.  * published by the Free Software Foundation.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  *
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public Licens
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-
  17.  *
  18.  */
  19. #include <linux/kernel.h>
  20. #include <linux/errno.h>
  21. #include <linux/string.h>
  22. #include <linux/module.h>
  23. #include <linux/blkdev.h>
  24. #include <linux/completion.h>
  25. #include <linux/cdrom.h>
  26. #include <linux/slab.h>
  27. #include <linux/times.h>
  28. #include <asm/uaccess.h>
  29. #include <scsi/scsi.h>
  30. #include <scsi/scsi_ioctl.h>
  31. #include <scsi/scsi_cmnd.h>
  32. /* Command group 3 is reserved and should never be used.  */
  33. const unsigned char scsi_command_size[8] =
  34. {
  35. 6, 10, 10, 12,
  36. 16, 12, 10, 10
  37. };
  38. EXPORT_SYMBOL(scsi_command_size);
  39. #define BLK_DEFAULT_TIMEOUT (60 * HZ)
  40. #include <scsi/sg.h>
  41. static int sg_get_version(int __user *p)
  42. {
  43. static int sg_version_num = 30527;
  44. return put_user(sg_version_num, p);
  45. }
  46. static int scsi_get_idlun(request_queue_t *q, int __user *p)
  47. {
  48. return put_user(0, p);
  49. }
  50. static int scsi_get_bus(request_queue_t *q, int __user *p)
  51. {
  52. return put_user(0, p);
  53. }
  54. static int sg_get_timeout(request_queue_t *q)
  55. {
  56. return q->sg_timeout / (HZ / USER_HZ);
  57. }
  58. static int sg_set_timeout(request_queue_t *q, int __user *p)
  59. {
  60. int timeout, err = get_user(timeout, p);
  61. if (!err)
  62. q->sg_timeout = timeout * (HZ / USER_HZ);
  63. return err;
  64. }
  65. static int sg_get_reserved_size(request_queue_t *q, int __user *p)
  66. {
  67. return put_user(q->sg_reserved_size, p);
  68. }
  69. static int sg_set_reserved_size(request_queue_t *q, int __user *p)
  70. {
  71. int size, err = get_user(size, p);
  72. if (err)
  73. return err;
  74. if (size < 0)
  75. return -EINVAL;
  76. if (size > (q->max_sectors << 9))
  77. size = q->max_sectors << 9;
  78. q->sg_reserved_size = size;
  79. return 0;
  80. }
  81. /*
  82.  * will always return that we are ATAPI even for a real SCSI drive, I'm not
  83.  * so sure this is worth doing anything about (why would you care??)
  84.  */
  85. static int sg_emulated_host(request_queue_t *q, int __user *p)
  86. {
  87. return put_user(1, p);
  88. }
  89. #define CMD_READ_SAFE 0x01
  90. #define CMD_WRITE_SAFE 0x02
  91. #define CMD_WARNED 0x04
  92. #define safe_for_read(cmd) [cmd] = CMD_READ_SAFE
  93. #define safe_for_write(cmd) [cmd] = CMD_WRITE_SAFE
  94. static int verify_command(struct file *file, unsigned char *cmd)
  95. {
  96. static unsigned char cmd_type[256] = {
  97. /* Basic read-only commands */
  98. safe_for_read(TEST_UNIT_READY),
  99. safe_for_read(REQUEST_SENSE),
  100. safe_for_read(READ_6),
  101. safe_for_read(READ_10),
  102. safe_for_read(READ_12),
  103. safe_for_read(READ_16),
  104. safe_for_read(READ_BUFFER),
  105. safe_for_read(READ_DEFECT_DATA),
  106. safe_for_read(READ_LONG),
  107. safe_for_read(INQUIRY),
  108. safe_for_read(MODE_SENSE),
  109. safe_for_read(MODE_SENSE_10),
  110. safe_for_read(LOG_SENSE),
  111. safe_for_read(START_STOP),
  112. safe_for_read(GPCMD_VERIFY_10),
  113. safe_for_read(VERIFY_16),
  114. /* Audio CD commands */
  115. safe_for_read(GPCMD_PLAY_CD),
  116. safe_for_read(GPCMD_PLAY_AUDIO_10),
  117. safe_for_read(GPCMD_PLAY_AUDIO_MSF),
  118. safe_for_read(GPCMD_PLAY_AUDIO_TI),
  119. safe_for_read(GPCMD_PAUSE_RESUME),
  120. /* CD/DVD data reading */
  121. safe_for_read(GPCMD_READ_BUFFER_CAPACITY),
  122. safe_for_read(GPCMD_READ_CD),
  123. safe_for_read(GPCMD_READ_CD_MSF),
  124. safe_for_read(GPCMD_READ_DISC_INFO),
  125. safe_for_read(GPCMD_READ_CDVD_CAPACITY),
  126. safe_for_read(GPCMD_READ_DVD_STRUCTURE),
  127. safe_for_read(GPCMD_READ_HEADER),
  128. safe_for_read(GPCMD_READ_TRACK_RZONE_INFO),
  129. safe_for_read(GPCMD_READ_SUBCHANNEL),
  130. safe_for_read(GPCMD_READ_TOC_PMA_ATIP),
  131. safe_for_read(GPCMD_REPORT_KEY),
  132. safe_for_read(GPCMD_SCAN),
  133. safe_for_read(GPCMD_GET_CONFIGURATION),
  134. safe_for_read(GPCMD_READ_FORMAT_CAPACITIES),
  135. safe_for_read(GPCMD_GET_EVENT_STATUS_NOTIFICATION),
  136. safe_for_read(GPCMD_GET_PERFORMANCE),
  137. safe_for_read(GPCMD_SEEK),
  138. safe_for_read(GPCMD_STOP_PLAY_SCAN),
  139. /* Basic writing commands */
  140. safe_for_write(WRITE_6),
  141. safe_for_write(WRITE_10),
  142. safe_for_write(WRITE_VERIFY),
  143. safe_for_write(WRITE_12),
  144. safe_for_write(WRITE_VERIFY_12),
  145. safe_for_write(WRITE_16),
  146. safe_for_write(WRITE_LONG),
  147. safe_for_write(WRITE_LONG_2),
  148. safe_for_write(ERASE),
  149. safe_for_write(GPCMD_MODE_SELECT_10),
  150. safe_for_write(MODE_SELECT),
  151. safe_for_write(LOG_SELECT),
  152. safe_for_write(GPCMD_BLANK),
  153. safe_for_write(GPCMD_CLOSE_TRACK),
  154. safe_for_write(GPCMD_FLUSH_CACHE),
  155. safe_for_write(GPCMD_FORMAT_UNIT),
  156. safe_for_write(GPCMD_REPAIR_RZONE_TRACK),
  157. safe_for_write(GPCMD_RESERVE_RZONE_TRACK),
  158. safe_for_write(GPCMD_SEND_DVD_STRUCTURE),
  159. safe_for_write(GPCMD_SEND_EVENT),
  160. safe_for_write(GPCMD_SEND_KEY),
  161. safe_for_write(GPCMD_SEND_OPC),
  162. safe_for_write(GPCMD_SEND_CUE_SHEET),
  163. safe_for_write(GPCMD_SET_SPEED),
  164. safe_for_write(GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL),
  165. safe_for_write(GPCMD_LOAD_UNLOAD),
  166. safe_for_write(GPCMD_SET_STREAMING),
  167. };
  168. unsigned char type = cmd_type[cmd[0]];
  169. /* Anybody who can open the device can do a read-safe command */
  170. if (type & CMD_READ_SAFE)
  171. return 0;
  172. /* Write-safe commands just require a writable open.. */
  173. if (type & CMD_WRITE_SAFE) {
  174. if (file->f_mode & FMODE_WRITE)
  175. return 0;
  176. }
  177. /* And root can do any command.. */
  178. if (capable(CAP_SYS_RAWIO))
  179. return 0;
  180. if (!type) {
  181. cmd_type[cmd[0]] = CMD_WARNED;
  182. printk(KERN_WARNING "scsi: unknown opcode 0x%02xn", cmd[0]);
  183. }
  184. /* Otherwise fail it with an "Operation not permitted" */
  185. return -EPERM;
  186. }
  187. static int sg_io(struct file *file, request_queue_t *q,
  188. struct gendisk *bd_disk, struct sg_io_hdr *hdr)
  189. {
  190. unsigned long start_time;
  191. int writing = 0, ret = 0;
  192. struct request *rq;
  193. struct bio *bio;
  194. char sense[SCSI_SENSE_BUFFERSIZE];
  195. unsigned char cmd[BLK_MAX_CDB];
  196. if (hdr->interface_id != 'S')
  197. return -EINVAL;
  198. if (hdr->cmd_len > BLK_MAX_CDB)
  199. return -EINVAL;
  200. if (copy_from_user(cmd, hdr->cmdp, hdr->cmd_len))
  201. return -EFAULT;
  202. if (verify_command(file, cmd))
  203. return -EPERM;
  204. if (hdr->dxfer_len > (q->max_sectors << 9))
  205. return -EIO;
  206. if (hdr->dxfer_len)
  207. switch (hdr->dxfer_direction) {
  208. default:
  209. return -EINVAL;
  210. case SG_DXFER_TO_FROM_DEV:
  211. case SG_DXFER_TO_DEV:
  212. writing = 1;
  213. break;
  214. case SG_DXFER_FROM_DEV:
  215. break;
  216. }
  217. rq = blk_get_request(q, writing ? WRITE : READ, GFP_KERNEL);
  218. if (!rq)
  219. return -ENOMEM;
  220. if (hdr->iovec_count) {
  221. const int size = sizeof(struct sg_iovec) * hdr->iovec_count;
  222. struct sg_iovec *iov;
  223. iov = kmalloc(size, GFP_KERNEL);
  224. if (!iov) {
  225. ret = -ENOMEM;
  226. goto out;
  227. }
  228. if (copy_from_user(iov, hdr->dxferp, size)) {
  229. kfree(iov);
  230. ret = -EFAULT;
  231. goto out;
  232. }
  233. ret = blk_rq_map_user_iov(q, rq, iov, hdr->iovec_count);
  234. kfree(iov);
  235. } else if (hdr->dxfer_len)
  236. ret = blk_rq_map_user(q, rq, hdr->dxferp, hdr->dxfer_len);
  237. if (ret)
  238. goto out;
  239. /*
  240.  * fill in request structure
  241.  */
  242. rq->cmd_len = hdr->cmd_len;
  243. memcpy(rq->cmd, cmd, hdr->cmd_len);
  244. if (sizeof(rq->cmd) != hdr->cmd_len)
  245. memset(rq->cmd + hdr->cmd_len, 0, sizeof(rq->cmd) - hdr->cmd_len);
  246. memset(sense, 0, sizeof(sense));
  247. rq->sense = sense;
  248. rq->sense_len = 0;
  249. rq->flags |= REQ_BLOCK_PC;
  250. bio = rq->bio;
  251. /*
  252.  * bounce this after holding a reference to the original bio, it's
  253.  * needed for proper unmapping
  254.  */
  255. if (rq->bio)
  256. blk_queue_bounce(q, &rq->bio);
  257. rq->timeout = (hdr->timeout * HZ) / 1000;
  258. if (!rq->timeout)
  259. rq->timeout = q->sg_timeout;
  260. if (!rq->timeout)
  261. rq->timeout = BLK_DEFAULT_TIMEOUT;
  262. start_time = jiffies;
  263. /* ignore return value. All information is passed back to caller
  264.  * (if he doesn't check that is his problem).
  265.  * N.B. a non-zero SCSI status is _not_ necessarily an error.
  266.  */
  267. blk_execute_rq(q, bd_disk, rq, 0);
  268. /* write to all output members */
  269. hdr->status = 0xff & rq->errors;
  270. hdr->masked_status = status_byte(rq->errors);
  271. hdr->msg_status = msg_byte(rq->errors);
  272. hdr->host_status = host_byte(rq->errors);
  273. hdr->driver_status = driver_byte(rq->errors);
  274. hdr->info = 0;
  275. if (hdr->masked_status || hdr->host_status || hdr->driver_status)
  276. hdr->info |= SG_INFO_CHECK;
  277. hdr->resid = rq->data_len;
  278. hdr->duration = ((jiffies - start_time) * 1000) / HZ;
  279. hdr->sb_len_wr = 0;
  280. if (rq->sense_len && hdr->sbp) {
  281. int len = min((unsigned int) hdr->mx_sb_len, rq->sense_len);
  282. if (!copy_to_user(hdr->sbp, rq->sense, len))
  283. hdr->sb_len_wr = len;
  284. }
  285. if (blk_rq_unmap_user(bio, hdr->dxfer_len))
  286. ret = -EFAULT;
  287. /* may not have succeeded, but output values written to control
  288.  * structure (struct sg_io_hdr).  */
  289. out:
  290. blk_put_request(rq);
  291. return ret;
  292. }
  293. #define OMAX_SB_LEN 16          /* For backward compatibility */
  294. static int sg_scsi_ioctl(struct file *file, request_queue_t *q,
  295.  struct gendisk *bd_disk, Scsi_Ioctl_Command __user *sic)
  296. {
  297. struct request *rq;
  298. int err;
  299. unsigned int in_len, out_len, bytes, opcode, cmdlen;
  300. char *buffer = NULL, sense[SCSI_SENSE_BUFFERSIZE];
  301. /*
  302.  * get in an out lengths, verify they don't exceed a page worth of data
  303.  */
  304. if (get_user(in_len, &sic->inlen))
  305. return -EFAULT;
  306. if (get_user(out_len, &sic->outlen))
  307. return -EFAULT;
  308. if (in_len > PAGE_SIZE || out_len > PAGE_SIZE)
  309. return -EINVAL;
  310. if (get_user(opcode, sic->data))
  311. return -EFAULT;
  312. bytes = max(in_len, out_len);
  313. if (bytes) {
  314. buffer = kmalloc(bytes, q->bounce_gfp | GFP_USER| __GFP_NOWARN);
  315. if (!buffer)
  316. return -ENOMEM;
  317. memset(buffer, 0, bytes);
  318. }
  319. rq = blk_get_request(q, in_len ? WRITE : READ, __GFP_WAIT);
  320. cmdlen = COMMAND_SIZE(opcode);
  321. /*
  322.  * get command and data to send to device, if any
  323.  */
  324. err = -EFAULT;
  325. rq->cmd_len = cmdlen;
  326. if (copy_from_user(rq->cmd, sic->data, cmdlen))
  327. goto error;
  328. if (copy_from_user(buffer, sic->data + cmdlen, in_len))
  329. goto error;
  330. err = verify_command(file, rq->cmd);
  331. if (err)
  332. goto error;
  333. switch (opcode) {
  334. case SEND_DIAGNOSTIC:
  335. case FORMAT_UNIT:
  336. rq->timeout = FORMAT_UNIT_TIMEOUT;
  337. break;
  338. case START_STOP:
  339. rq->timeout = START_STOP_TIMEOUT;
  340. break;
  341. case MOVE_MEDIUM:
  342. rq->timeout = MOVE_MEDIUM_TIMEOUT;
  343. break;
  344. case READ_ELEMENT_STATUS:
  345. rq->timeout = READ_ELEMENT_STATUS_TIMEOUT;
  346. break;
  347. case READ_DEFECT_DATA:
  348. rq->timeout = READ_DEFECT_DATA_TIMEOUT;
  349. break;
  350. default:
  351. rq->timeout = BLK_DEFAULT_TIMEOUT;
  352. break;
  353. }
  354. memset(sense, 0, sizeof(sense));
  355. rq->sense = sense;
  356. rq->sense_len = 0;
  357. rq->data = buffer;
  358. rq->data_len = bytes;
  359. rq->flags |= REQ_BLOCK_PC;
  360. blk_execute_rq(q, bd_disk, rq, 0);
  361. err = rq->errors & 0xff; /* only 8 bit SCSI status */
  362. if (err) {
  363. if (rq->sense_len && rq->sense) {
  364. bytes = (OMAX_SB_LEN > rq->sense_len) ?
  365. rq->sense_len : OMAX_SB_LEN;
  366. if (copy_to_user(sic->data, rq->sense, bytes))
  367. err = -EFAULT;
  368. }
  369. } else {
  370. if (copy_to_user(sic->data, buffer, out_len))
  371. err = -EFAULT;
  372. }
  373. error:
  374. kfree(buffer);
  375. blk_put_request(rq);
  376. return err;
  377. }
  378. int scsi_cmd_ioctl(struct file *file, struct gendisk *bd_disk, unsigned int cmd, void __user *arg)
  379. {
  380. request_queue_t *q;
  381. struct request *rq;
  382. int close = 0, err;
  383. q = bd_disk->queue;
  384. if (!q)
  385. return -ENXIO;
  386. if (blk_get_queue(q))
  387. return -ENXIO;
  388. switch (cmd) {
  389. /*
  390.  * new sgv3 interface
  391.  */
  392. case SG_GET_VERSION_NUM:
  393. err = sg_get_version(arg);
  394. break;
  395. case SCSI_IOCTL_GET_IDLUN:
  396. err = scsi_get_idlun(q, arg);
  397. break;
  398. case SCSI_IOCTL_GET_BUS_NUMBER:
  399. err = scsi_get_bus(q, arg);
  400. break;
  401. case SG_SET_TIMEOUT:
  402. err = sg_set_timeout(q, arg);
  403. break;
  404. case SG_GET_TIMEOUT:
  405. err = sg_get_timeout(q);
  406. break;
  407. case SG_GET_RESERVED_SIZE:
  408. err = sg_get_reserved_size(q, arg);
  409. break;
  410. case SG_SET_RESERVED_SIZE:
  411. err = sg_set_reserved_size(q, arg);
  412. break;
  413. case SG_EMULATED_HOST:
  414. err = sg_emulated_host(q, arg);
  415. break;
  416. case SG_IO: {
  417. struct sg_io_hdr hdr;
  418. err = -EFAULT;
  419. if (copy_from_user(&hdr, arg, sizeof(hdr)))
  420. break;
  421. err = sg_io(file, q, bd_disk, &hdr);
  422. if (err == -EFAULT)
  423. break;
  424. if (copy_to_user(arg, &hdr, sizeof(hdr)))
  425. err = -EFAULT;
  426. break;
  427. }
  428. case CDROM_SEND_PACKET: {
  429. struct cdrom_generic_command cgc;
  430. struct sg_io_hdr hdr;
  431. err = -EFAULT;
  432. if (copy_from_user(&cgc, arg, sizeof(cgc)))
  433. break;
  434. cgc.timeout = clock_t_to_jiffies(cgc.timeout);
  435. memset(&hdr, 0, sizeof(hdr));
  436. hdr.interface_id = 'S';
  437. hdr.cmd_len = sizeof(cgc.cmd);
  438. hdr.dxfer_len = cgc.buflen;
  439. err = 0;
  440. switch (cgc.data_direction) {
  441. case CGC_DATA_UNKNOWN:
  442. hdr.dxfer_direction = SG_DXFER_UNKNOWN;
  443. break;
  444. case CGC_DATA_WRITE:
  445. hdr.dxfer_direction = SG_DXFER_TO_DEV;
  446. break;
  447. case CGC_DATA_READ:
  448. hdr.dxfer_direction = SG_DXFER_FROM_DEV;
  449. break;
  450. case CGC_DATA_NONE:
  451. hdr.dxfer_direction = SG_DXFER_NONE;
  452. break;
  453. default:
  454. err = -EINVAL;
  455. }
  456. if (err)
  457. break;
  458. hdr.dxferp = cgc.buffer;
  459. hdr.sbp = cgc.sense;
  460. if (hdr.sbp)
  461. hdr.mx_sb_len = sizeof(struct request_sense);
  462. hdr.timeout = cgc.timeout;
  463. hdr.cmdp = ((struct cdrom_generic_command __user*) arg)->cmd;
  464. hdr.cmd_len = sizeof(cgc.cmd);
  465. err = sg_io(file, q, bd_disk, &hdr);
  466. if (err == -EFAULT)
  467. break;
  468. if (hdr.status)
  469. err = -EIO;
  470. cgc.stat = err;
  471. cgc.buflen = hdr.resid;
  472. if (copy_to_user(arg, &cgc, sizeof(cgc)))
  473. err = -EFAULT;
  474. break;
  475. }
  476. /*
  477.  * old junk scsi send command ioctl
  478.  */
  479. case SCSI_IOCTL_SEND_COMMAND:
  480. printk(KERN_WARNING "program %s is using a deprecated SCSI ioctl, please convert it to SG_IOn", current->comm);
  481. err = -EINVAL;
  482. if (!arg)
  483. break;
  484. err = sg_scsi_ioctl(file, q, bd_disk, arg);
  485. break;
  486. case CDROMCLOSETRAY:
  487. close = 1;
  488. case CDROMEJECT:
  489. rq = blk_get_request(q, WRITE, __GFP_WAIT);
  490. rq->flags |= REQ_BLOCK_PC;
  491. rq->data = NULL;
  492. rq->data_len = 0;
  493. rq->timeout = BLK_DEFAULT_TIMEOUT;
  494. memset(rq->cmd, 0, sizeof(rq->cmd));
  495. rq->cmd[0] = GPCMD_START_STOP_UNIT;
  496. rq->cmd[4] = 0x02 + (close != 0);
  497. rq->cmd_len = 6;
  498. err = blk_execute_rq(q, bd_disk, rq, 0);
  499. blk_put_request(rq);
  500. break;
  501. default:
  502. err = -ENOTTY;
  503. }
  504. blk_put_queue(q);
  505. return err;
  506. }
  507. EXPORT_SYMBOL(scsi_cmd_ioctl);