ide-floppy_ioctl.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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. u8 header_len, desc_cnt;
  34. int i, blocks, length, u_array_size, u_index;
  35. int __user *argp;
  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)) {
  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, int b,
  73. int l, int flags)
  74. {
  75. ide_init_pc(pc);
  76. pc->c[0] = GPCMD_FORMAT_UNIT;
  77. pc->c[1] = 0x17;
  78. memset(pc->buf, 0, 12);
  79. pc->buf[1] = 0xA2;
  80. /* Default format list header, u8 1: FOV/DCRT/IMM bits set */
  81. if (flags & 1) /* Verify bit on... */
  82. pc->buf[1] ^= 0x20; /* ... turn off DCRT bit */
  83. pc->buf[3] = 8;
  84. put_unaligned(cpu_to_be32(b), (unsigned int *)(&pc->buf[4]));
  85. put_unaligned(cpu_to_be32(l), (unsigned int *)(&pc->buf[8]));
  86. pc->buf_size = 12;
  87. pc->flags |= PC_FLAG_WRITING;
  88. }
  89. static int ide_floppy_get_sfrp_bit(ide_drive_t *drive, struct ide_atapi_pc *pc)
  90. {
  91. struct ide_disk_obj *floppy = drive->driver_data;
  92. drive->atapi_flags &= ~IDE_AFLAG_SRFP;
  93. ide_floppy_create_mode_sense_cmd(pc, IDEFLOPPY_CAPABILITIES_PAGE);
  94. pc->flags |= PC_FLAG_SUPPRESS_ERROR;
  95. if (ide_queue_pc_tail(drive, floppy->disk, pc))
  96. return 1;
  97. if (pc->buf[8 + 2] & 0x40)
  98. drive->atapi_flags |= IDE_AFLAG_SRFP;
  99. return 0;
  100. }
  101. static int ide_floppy_format_unit(ide_drive_t *drive, struct ide_atapi_pc *pc,
  102. int __user *arg)
  103. {
  104. struct ide_disk_obj *floppy = drive->driver_data;
  105. int blocks, length, flags, err = 0;
  106. if (floppy->openers > 1) {
  107. /* Don't format if someone is using the disk */
  108. drive->dev_flags &= ~IDE_DFLAG_FORMAT_IN_PROGRESS;
  109. return -EBUSY;
  110. }
  111. drive->dev_flags |= IDE_DFLAG_FORMAT_IN_PROGRESS;
  112. /*
  113. * Send ATAPI_FORMAT_UNIT to the drive.
  114. *
  115. * Userland gives us the following structure:
  116. *
  117. * struct idefloppy_format_command {
  118. * int nblocks;
  119. * int blocksize;
  120. * int flags;
  121. * } ;
  122. *
  123. * flags is a bitmask, currently, the only defined flag is:
  124. *
  125. * 0x01 - verify media after format.
  126. */
  127. if (get_user(blocks, arg) ||
  128. get_user(length, arg+1) ||
  129. get_user(flags, arg+2)) {
  130. err = -EFAULT;
  131. goto out;
  132. }
  133. ide_floppy_get_sfrp_bit(drive, pc);
  134. ide_floppy_create_format_unit_cmd(pc, blocks, length, flags);
  135. if (ide_queue_pc_tail(drive, floppy->disk, pc))
  136. err = -EIO;
  137. out:
  138. if (err)
  139. drive->dev_flags &= ~IDE_DFLAG_FORMAT_IN_PROGRESS;
  140. return err;
  141. }
  142. /*
  143. * Get ATAPI_FORMAT_UNIT progress indication.
  144. *
  145. * Userland gives a pointer to an int. The int is set to a progress
  146. * indicator 0-65536, with 65536=100%.
  147. *
  148. * If the drive does not support format progress indication, we just check
  149. * the dsc bit, and return either 0 or 65536.
  150. */
  151. static int ide_floppy_get_format_progress(ide_drive_t *drive,
  152. struct ide_atapi_pc *pc,
  153. int __user *arg)
  154. {
  155. struct ide_disk_obj *floppy = drive->driver_data;
  156. int progress_indication = 0x10000;
  157. if (drive->atapi_flags & IDE_AFLAG_SRFP) {
  158. ide_create_request_sense_cmd(drive, pc);
  159. if (ide_queue_pc_tail(drive, floppy->disk, pc))
  160. return -EIO;
  161. if (floppy->sense_key == 2 &&
  162. floppy->asc == 4 &&
  163. floppy->ascq == 4)
  164. progress_indication = floppy->progress_indication;
  165. /* Else assume format_unit has finished, and we're at 0x10000 */
  166. } else {
  167. ide_hwif_t *hwif = drive->hwif;
  168. unsigned long flags;
  169. u8 stat;
  170. local_irq_save(flags);
  171. stat = hwif->tp_ops->read_status(hwif);
  172. local_irq_restore(flags);
  173. progress_indication = ((stat & ATA_DSC) == 0) ? 0 : 0x10000;
  174. }
  175. if (put_user(progress_indication, arg))
  176. return -EFAULT;
  177. return 0;
  178. }
  179. static int ide_floppy_lockdoor(ide_drive_t *drive, struct ide_atapi_pc *pc,
  180. unsigned long arg, unsigned int cmd)
  181. {
  182. struct ide_disk_obj *floppy = drive->driver_data;
  183. struct gendisk *disk = floppy->disk;
  184. int prevent = (arg && cmd != CDROMEJECT) ? 1 : 0;
  185. if (floppy->openers > 1)
  186. return -EBUSY;
  187. ide_set_media_lock(drive, disk, prevent);
  188. if (cmd == CDROMEJECT)
  189. ide_do_start_stop(drive, disk, 2);
  190. return 0;
  191. }
  192. static int ide_floppy_format_ioctl(ide_drive_t *drive, struct ide_atapi_pc *pc,
  193. fmode_t mode, unsigned int cmd,
  194. void __user *argp)
  195. {
  196. switch (cmd) {
  197. case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED:
  198. return 0;
  199. case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY:
  200. return ide_floppy_get_format_capacities(drive, pc, argp);
  201. case IDEFLOPPY_IOCTL_FORMAT_START:
  202. if (!(mode & FMODE_WRITE))
  203. return -EPERM;
  204. return ide_floppy_format_unit(drive, pc, (int __user *)argp);
  205. case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS:
  206. return ide_floppy_get_format_progress(drive, pc, argp);
  207. default:
  208. return -ENOTTY;
  209. }
  210. }
  211. int ide_floppy_ioctl(ide_drive_t *drive, struct block_device *bdev,
  212. fmode_t mode, unsigned int cmd, unsigned long arg)
  213. {
  214. struct ide_atapi_pc pc;
  215. void __user *argp = (void __user *)arg;
  216. int err;
  217. if (cmd == CDROMEJECT || cmd == CDROM_LOCKDOOR)
  218. return ide_floppy_lockdoor(drive, &pc, arg, cmd);
  219. err = ide_floppy_format_ioctl(drive, &pc, mode, cmd, argp);
  220. if (err != -ENOTTY)
  221. return err;
  222. /*
  223. * skip SCSI_IOCTL_SEND_COMMAND (deprecated)
  224. * and CDROM_SEND_PACKET (legacy) ioctls
  225. */
  226. if (cmd != CDROM_SEND_PACKET && cmd != SCSI_IOCTL_SEND_COMMAND)
  227. err = scsi_cmd_ioctl(bdev->bd_disk->queue, bdev->bd_disk,
  228. mode, cmd, argp);
  229. if (err == -ENOTTY)
  230. err = generic_ide_ioctl(drive, bdev, cmd, arg);
  231. return err;
  232. }