ide-floppy_ioctl.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. /*
  2. * ide-floppy IOCTLs handling.
  3. */
  4. #include <linux/kernel.h>
  5. #include <linux/ide.h>
  6. #include <linux/cdrom.h>
  7. #include <asm/unaligned.h>
  8. #include <scsi/scsi_ioctl.h>
  9. #include "ide-floppy.h"
  10. /*
  11. * Obtain the list of formattable capacities.
  12. * Very similar to ide_floppy_get_capacity, except that we push the capacity
  13. * descriptors to userland, instead of our own structures.
  14. *
  15. * Userland gives us the following structure:
  16. *
  17. * struct idefloppy_format_capacities {
  18. * int nformats;
  19. * struct {
  20. * int nblocks;
  21. * int blocksize;
  22. * } formats[];
  23. * };
  24. *
  25. * userland initializes nformats to the number of allocated formats[] records.
  26. * On exit we set nformats to the number of records we've actually initialized.
  27. */
  28. static int ide_floppy_get_format_capacities(ide_drive_t *drive,
  29. struct ide_atapi_pc *pc,
  30. int __user *arg)
  31. {
  32. struct ide_disk_obj *floppy = drive->driver_data;
  33. int i, blocks, length, u_array_size, u_index;
  34. int __user *argp;
  35. u8 pc_buf[256], header_len, desc_cnt;
  36. if (get_user(u_array_size, arg))
  37. return -EFAULT;
  38. if (u_array_size <= 0)
  39. return -EINVAL;
  40. ide_floppy_create_read_capacity_cmd(pc);
  41. if (ide_queue_pc_tail(drive, floppy->disk, pc, pc_buf, pc->req_xfer)) {
  42. printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n");
  43. return -EIO;
  44. }
  45. header_len = pc_buf[3];
  46. desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */
  47. u_index = 0;
  48. argp = arg + 1;
  49. /*
  50. * We always skip the first capacity descriptor. That's the current
  51. * capacity. We are interested in the remaining descriptors, the
  52. * formattable capacities.
  53. */
  54. for (i = 1; i < desc_cnt; i++) {
  55. unsigned int desc_start = 4 + i*8;
  56. if (u_index >= u_array_size)
  57. break; /* User-supplied buffer too small */
  58. blocks = be32_to_cpup((__be32 *)&pc_buf[desc_start]);
  59. length = be16_to_cpup((__be16 *)&pc_buf[desc_start + 6]);
  60. if (put_user(blocks, argp))
  61. return -EFAULT;
  62. ++argp;
  63. if (put_user(length, argp))
  64. return -EFAULT;
  65. ++argp;
  66. ++u_index;
  67. }
  68. if (put_user(u_index, arg))
  69. return -EFAULT;
  70. return 0;
  71. }
  72. static void ide_floppy_create_format_unit_cmd(struct ide_atapi_pc *pc,
  73. u8 *buf, int b, int l,
  74. int flags)
  75. {
  76. ide_init_pc(pc);
  77. pc->c[0] = GPCMD_FORMAT_UNIT;
  78. pc->c[1] = 0x17;
  79. memset(buf, 0, 12);
  80. buf[1] = 0xA2;
  81. /* Default format list header, u8 1: FOV/DCRT/IMM bits set */
  82. if (flags & 1) /* Verify bit on... */
  83. buf[1] ^= 0x20; /* ... turn off DCRT bit */
  84. buf[3] = 8;
  85. put_unaligned(cpu_to_be32(b), (unsigned int *)(&buf[4]));
  86. put_unaligned(cpu_to_be32(l), (unsigned int *)(&buf[8]));
  87. pc->req_xfer = 12;
  88. pc->flags |= PC_FLAG_WRITING;
  89. }
  90. static int ide_floppy_get_sfrp_bit(ide_drive_t *drive, struct ide_atapi_pc *pc)
  91. {
  92. struct ide_disk_obj *floppy = drive->driver_data;
  93. u8 buf[20];
  94. drive->atapi_flags &= ~IDE_AFLAG_SRFP;
  95. ide_floppy_create_mode_sense_cmd(pc, IDEFLOPPY_CAPABILITIES_PAGE);
  96. pc->flags |= PC_FLAG_SUPPRESS_ERROR;
  97. if (ide_queue_pc_tail(drive, floppy->disk, pc, buf, pc->req_xfer))
  98. return 1;
  99. if (buf[8 + 2] & 0x40)
  100. drive->atapi_flags |= IDE_AFLAG_SRFP;
  101. return 0;
  102. }
  103. static int ide_floppy_format_unit(ide_drive_t *drive, struct ide_atapi_pc *pc,
  104. int __user *arg)
  105. {
  106. struct ide_disk_obj *floppy = drive->driver_data;
  107. u8 buf[12];
  108. int blocks, length, flags, err = 0;
  109. if (floppy->openers > 1) {
  110. /* Don't format if someone is using the disk */
  111. drive->dev_flags &= ~IDE_DFLAG_FORMAT_IN_PROGRESS;
  112. return -EBUSY;
  113. }
  114. drive->dev_flags |= IDE_DFLAG_FORMAT_IN_PROGRESS;
  115. /*
  116. * Send ATAPI_FORMAT_UNIT to the drive.
  117. *
  118. * Userland gives us the following structure:
  119. *
  120. * struct idefloppy_format_command {
  121. * int nblocks;
  122. * int blocksize;
  123. * int flags;
  124. * } ;
  125. *
  126. * flags is a bitmask, currently, the only defined flag is:
  127. *
  128. * 0x01 - verify media after format.
  129. */
  130. if (get_user(blocks, arg) ||
  131. get_user(length, arg+1) ||
  132. get_user(flags, arg+2)) {
  133. err = -EFAULT;
  134. goto out;
  135. }
  136. ide_floppy_get_sfrp_bit(drive, pc);
  137. ide_floppy_create_format_unit_cmd(pc, buf, blocks, length, flags);
  138. if (ide_queue_pc_tail(drive, floppy->disk, pc, buf, pc->req_xfer))
  139. err = -EIO;
  140. out:
  141. if (err)
  142. drive->dev_flags &= ~IDE_DFLAG_FORMAT_IN_PROGRESS;
  143. return err;
  144. }
  145. /*
  146. * Get ATAPI_FORMAT_UNIT progress indication.
  147. *
  148. * Userland gives a pointer to an int. The int is set to a progress
  149. * indicator 0-65536, with 65536=100%.
  150. *
  151. * If the drive does not support format progress indication, we just check
  152. * the dsc bit, and return either 0 or 65536.
  153. */
  154. static int ide_floppy_get_format_progress(ide_drive_t *drive,
  155. struct ide_atapi_pc *pc,
  156. int __user *arg)
  157. {
  158. struct ide_disk_obj *floppy = drive->driver_data;
  159. u8 sense_buf[18];
  160. int progress_indication = 0x10000;
  161. if (drive->atapi_flags & IDE_AFLAG_SRFP) {
  162. ide_create_request_sense_cmd(drive, pc);
  163. if (ide_queue_pc_tail(drive, floppy->disk, pc, sense_buf,
  164. pc->req_xfer))
  165. return -EIO;
  166. if (floppy->sense_key == 2 &&
  167. floppy->asc == 4 &&
  168. floppy->ascq == 4)
  169. progress_indication = floppy->progress_indication;
  170. /* Else assume format_unit has finished, and we're at 0x10000 */
  171. } else {
  172. ide_hwif_t *hwif = drive->hwif;
  173. unsigned long flags;
  174. u8 stat;
  175. local_irq_save(flags);
  176. stat = hwif->tp_ops->read_status(hwif);
  177. local_irq_restore(flags);
  178. progress_indication = ((stat & ATA_DSC) == 0) ? 0 : 0x10000;
  179. }
  180. if (put_user(progress_indication, arg))
  181. return -EFAULT;
  182. return 0;
  183. }
  184. static int ide_floppy_lockdoor(ide_drive_t *drive, struct ide_atapi_pc *pc,
  185. unsigned long arg, unsigned int cmd)
  186. {
  187. struct ide_disk_obj *floppy = drive->driver_data;
  188. struct gendisk *disk = floppy->disk;
  189. int prevent = (arg && cmd != CDROMEJECT) ? 1 : 0;
  190. if (floppy->openers > 1)
  191. return -EBUSY;
  192. ide_set_media_lock(drive, disk, prevent);
  193. if (cmd == CDROMEJECT)
  194. ide_do_start_stop(drive, disk, 2);
  195. return 0;
  196. }
  197. static int ide_floppy_format_ioctl(ide_drive_t *drive, struct ide_atapi_pc *pc,
  198. fmode_t mode, unsigned int cmd,
  199. void __user *argp)
  200. {
  201. switch (cmd) {
  202. case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED:
  203. return 0;
  204. case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY:
  205. return ide_floppy_get_format_capacities(drive, pc, argp);
  206. case IDEFLOPPY_IOCTL_FORMAT_START:
  207. if (!(mode & FMODE_WRITE))
  208. return -EPERM;
  209. return ide_floppy_format_unit(drive, pc, (int __user *)argp);
  210. case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS:
  211. return ide_floppy_get_format_progress(drive, pc, argp);
  212. default:
  213. return -ENOTTY;
  214. }
  215. }
  216. int ide_floppy_ioctl(ide_drive_t *drive, struct block_device *bdev,
  217. fmode_t mode, unsigned int cmd, unsigned long arg)
  218. {
  219. struct ide_atapi_pc pc;
  220. void __user *argp = (void __user *)arg;
  221. int err;
  222. if (cmd == CDROMEJECT || cmd == CDROM_LOCKDOOR)
  223. return ide_floppy_lockdoor(drive, &pc, arg, cmd);
  224. err = ide_floppy_format_ioctl(drive, &pc, mode, cmd, argp);
  225. if (err != -ENOTTY)
  226. return err;
  227. /*
  228. * skip SCSI_IOCTL_SEND_COMMAND (deprecated)
  229. * and CDROM_SEND_PACKET (legacy) ioctls
  230. */
  231. if (cmd != CDROM_SEND_PACKET && cmd != SCSI_IOCTL_SEND_COMMAND)
  232. err = scsi_cmd_ioctl(bdev->bd_disk->queue, bdev->bd_disk,
  233. mode, cmd, argp);
  234. if (err == -ENOTTY)
  235. err = generic_ide_ioctl(drive, bdev, cmd, arg);
  236. return err;
  237. }