acorn.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:11k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/partitions/acorn.c
  3.  *
  4.  *  Copyright (c) 1996-2000 Russell King.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Scan ADFS partitions on hard disk drives.
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/kdev_t.h>
  16. #include <linux/major.h>
  17. #include <linux/string.h>
  18. #include <linux/genhd.h>
  19. #include <linux/fs.h>
  20. #include <linux/pagemap.h>
  21. #include "check.h"
  22. #include "acorn.h"
  23. static void
  24. adfspart_setgeometry(kdev_t dev, unsigned int secspertrack, unsigned int heads)
  25. {
  26. #ifdef CONFIG_BLK_DEV_MFM
  27. extern void xd_set_geometry(kdev_t dev, unsigned char, unsigned char,
  28.     unsigned long, unsigned int);
  29. if (MAJOR(dev) == MFM_ACORN_MAJOR) {
  30. unsigned long totalblocks = hd->part[MINOR(dev)].nr_sects;
  31. xd_set_geometry(dev, secspertrack, heads, totalblocks, 1);
  32. }
  33. #endif
  34. }
  35. static struct adfs_discrecord *
  36. adfs_partition(struct gendisk *hd, char *name, char *data,
  37.        unsigned long first_sector, int minor)
  38. {
  39. struct adfs_discrecord *dr;
  40. unsigned int nr_sects;
  41. if (adfs_checkbblk(data))
  42. return NULL;
  43. dr = (struct adfs_discrecord *)(data + 0x1c0);
  44. if (dr->disc_size == 0 && dr->disc_size_high == 0)
  45. return NULL;
  46. nr_sects = (le32_to_cpu(dr->disc_size_high) << 23) |
  47.    (le32_to_cpu(dr->disc_size) >> 9);
  48. if (name)
  49. printk(" [%s]", name);
  50. add_gd_partition(hd, minor, first_sector, nr_sects);
  51. return dr;
  52. }
  53. #ifdef CONFIG_ACORN_PARTITION_RISCIX
  54. static int
  55. riscix_partition(struct gendisk *hd, struct block_device *bdev,
  56. unsigned long first_sect, int minor, unsigned long nr_sects)
  57. {
  58. Sector sect;
  59. struct riscix_record *rr;
  60. rr = (struct riscix_record *)read_dev_sector(bdev, first_sect, &sect);
  61. if (!rr)
  62. return -1;
  63. printk(" [RISCiX]");
  64. if (rr->magic == RISCIX_MAGIC) {
  65. unsigned long size = nr_sects > 2 ? 2 : nr_sects;
  66. int part;
  67. printk(" <");
  68. add_gd_partition(hd, minor++, first_sect, size);
  69. for (part = 0; part < 8; part++) {
  70. if (rr->part[part].one &&
  71.     memcmp(rr->part[part].name, "All", 4)) {
  72. add_gd_partition(hd, minor++,
  73. le32_to_cpu(rr->part[part].start),
  74. le32_to_cpu(rr->part[part].length));
  75. printk("(%s)", rr->part[part].name);
  76. }
  77. }
  78. printk(" >n");
  79. } else {
  80. add_gd_partition(hd, minor++, first_sect, nr_sects);
  81. }
  82. put_dev_sector(sect);
  83. return minor;
  84. }
  85. #endif
  86. static int
  87. linux_partition(struct gendisk *hd, struct block_device *bdev,
  88. unsigned long first_sect, int minor, unsigned long nr_sects)
  89. {
  90. Sector sect;
  91. struct linux_part *linuxp;
  92. unsigned int mask = (1 << hd->minor_shift) - 1;
  93. unsigned long size = nr_sects > 2 ? 2 : nr_sects;
  94. printk(" [Linux]");
  95. add_gd_partition(hd, minor++, first_sect, size);
  96. linuxp = (struct linux_part *)read_dev_sector(bdev, first_sect, &sect);
  97. if (!linuxp)
  98. return -1;
  99. printk(" <");
  100. while (linuxp->magic == cpu_to_le32(LINUX_NATIVE_MAGIC) ||
  101.        linuxp->magic == cpu_to_le32(LINUX_SWAP_MAGIC)) {
  102. if (!(minor & mask))
  103. break;
  104. add_gd_partition(hd, minor++, first_sect +
  105.  le32_to_cpu(linuxp->start_sect),
  106.  le32_to_cpu(linuxp->nr_sects));
  107. linuxp ++;
  108. }
  109. printk(" >");
  110. put_dev_sector(sect);
  111. return minor;
  112. }
  113. #ifdef CONFIG_ACORN_PARTITION_CUMANA
  114. static int
  115. adfspart_check_CUMANA(struct gendisk *hd, struct block_device *bdev,
  116.       unsigned long first_sector, int minor)
  117. {
  118. unsigned int start_blk = 0, mask = (1 << hd->minor_shift) - 1;
  119. Sector sect;
  120. unsigned char *data;
  121. char *name = "CUMANA/ADFS";
  122. int first = 1;
  123. /*
  124.  * Try Cumana style partitions - sector 3 contains ADFS boot block
  125.  * with pointer to next 'drive'.
  126.  *
  127.  * There are unknowns in this code - is the 'cylinder number' of the
  128.  * next partition relative to the start of this one - I'm assuming
  129.  * it is.
  130.  *
  131.  * Also, which ID did Cumana use?
  132.  *
  133.  * This is totally unfinished, and will require more work to get it
  134.  * going. Hence it is totally untested.
  135.  */
  136. do {
  137. struct adfs_discrecord *dr;
  138. unsigned int nr_sects;
  139. if (!(minor & mask))
  140. break;
  141. data = read_dev_sector(bdev, start_blk * 2 + 6, &sect);
  142. if (!data)
  143. return -1;
  144. dr = adfs_partition(hd, name, data, first_sector, minor++);
  145. if (!dr)
  146. break;
  147. name = NULL;
  148. nr_sects = (data[0x1fd] + (data[0x1fe] << 8)) *
  149.    (dr->heads + (dr->lowsector & 0x40 ? 1 : 0)) *
  150.    dr->secspertrack;
  151. if (!nr_sects)
  152. break;
  153. first = 0;
  154. first_sector += nr_sects;
  155. start_blk += nr_sects >> (BLOCK_SIZE_BITS - 9);
  156. nr_sects = 0; /* hmm - should be partition size */
  157. switch (data[0x1fc] & 15) {
  158. case 0: /* No partition / ADFS? */
  159. break;
  160. #ifdef CONFIG_ACORN_PARTITION_RISCIX
  161. case PARTITION_RISCIX_SCSI:
  162. /* RISCiX - we don't know how to find the next one. */
  163. minor = riscix_partition(hd, bdev, first_sector,
  164.  minor, nr_sects);
  165. break;
  166. #endif
  167. case PARTITION_LINUX:
  168. minor = linux_partition(hd, bdev, first_sector,
  169. minor, nr_sects);
  170. break;
  171. }
  172. put_dev_sector(sect);
  173. if (minor == -1)
  174. return minor;
  175. } while (1);
  176. put_dev_sector(sect);
  177. return first ? 0 : 1;
  178. }
  179. #endif
  180. #ifdef CONFIG_ACORN_PARTITION_ADFS
  181. /*
  182.  * Purpose: allocate ADFS partitions.
  183.  *
  184.  * Params : hd - pointer to gendisk structure to store partition info.
  185.  *     dev - device number to access.
  186.  *     first_sector- first readable sector on the device.
  187.  *     minor - first available minor on device.
  188.  *
  189.  * Returns: -1 on error, 0 for no ADFS boot sector, 1 for ok.
  190.  *
  191.  * Alloc  : hda  = whole drive
  192.  *     hda1 = ADFS partition on first drive.
  193.  *     hda2 = non-ADFS partition.
  194.  */
  195. static int
  196. adfspart_check_ADFS(struct gendisk *hd, struct block_device *bdev,
  197.    unsigned long first_sector, int minor)
  198. {
  199. unsigned long start_sect, nr_sects, sectscyl, heads;
  200. Sector sect;
  201. unsigned char *data;
  202. struct adfs_discrecord *dr;
  203. unsigned char id;
  204. data = read_dev_sector(bdev, 6, &sect);
  205. if (!data)
  206. return -1;
  207. dr = adfs_partition(hd, "ADFS", data, first_sector, minor++);
  208. if (!dr) {
  209. put_dev_sector(sect);
  210.      return 0;
  211. }
  212. heads = dr->heads + ((dr->lowsector >> 6) & 1);
  213. sectscyl = dr->secspertrack * heads;
  214. start_sect = ((data[0x1fe] << 8) + data[0x1fd]) * sectscyl;
  215. id = data[0x1fc] & 15;
  216. put_dev_sector(sect);
  217. adfspart_setgeometry(to_kdev_t(bdev->bd_dev), dr->secspertrack, heads);
  218. invalidate_bdev(bdev, 1);
  219. truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
  220. /*
  221.  * Work out start of non-adfs partition.
  222.  */
  223. nr_sects = hd->part[MINOR(to_kdev_t(bdev->bd_dev))].nr_sects - start_sect;
  224. if (start_sect) {
  225. first_sector += start_sect;
  226. switch (id) {
  227. #ifdef CONFIG_ACORN_PARTITION_RISCIX
  228. case PARTITION_RISCIX_SCSI:
  229. case PARTITION_RISCIX_MFM:
  230. minor = riscix_partition(hd, bdev, first_sector,
  231.  minor, nr_sects);
  232. break;
  233. #endif
  234. case PARTITION_LINUX:
  235. minor = linux_partition(hd, bdev, first_sector,
  236. minor, nr_sects);
  237. break;
  238. }
  239. }
  240. return 1;
  241. }
  242. #endif
  243. #ifdef CONFIG_ACORN_PARTITION_ICS
  244. static int adfspart_check_ICSLinux(struct block_device *bdev, unsigned long block)
  245. {
  246. Sector sect;
  247. unsigned char *data = read_dev_sector(bdev, block, &sect);
  248. int result = 0;
  249. if (data) {
  250. if (memcmp(data, "LinuxPart", 9) == 0)
  251. result = 1;
  252. put_dev_sector(sect);
  253. }
  254. return result;
  255. }
  256. /*
  257.  * Purpose: allocate ICS partitions.
  258.  * Params : hd - pointer to gendisk structure to store partition info.
  259.  *     dev - device number to access.
  260.  *     first_sector- first readable sector on the device.
  261.  *     minor - first available minor on device.
  262.  * Returns: -1 on error, 0 for no ICS table, 1 for partitions ok.
  263.  * Alloc  : hda  = whole drive
  264.  *     hda1 = ADFS partition 0 on first drive.
  265.  *     hda2 = ADFS partition 1 on first drive.
  266.  * ..etc..
  267.  */
  268. static int
  269. adfspart_check_ICS(struct gendisk *hd, struct block_device *bdev,
  270.    unsigned long first_sector, int minor)
  271. {
  272. Sector sect;
  273. unsigned char *data;
  274. unsigned long sum;
  275. unsigned int i, mask = (1 << hd->minor_shift) - 1;
  276. struct ics_part *p;
  277. /*
  278.  * Try ICS style partitions - sector 0 contains partition info.
  279.  */
  280. data = read_dev_sector(bdev, 0, &sect);
  281. if (!data)
  282.      return -1;
  283. /*
  284.  * check for a valid checksum
  285.  */
  286. for (i = 0, sum = 0x50617274; i < 508; i++)
  287. sum += data[i];
  288. sum -= le32_to_cpu(*(__u32 *)(&data[508]));
  289. if (sum) {
  290.      put_dev_sector(sect);
  291. return 0; /* not ICS partition table */
  292. }
  293. printk(" [ICS]");
  294. for (p = (struct ics_part *)data; p->size; p++) {
  295. unsigned long start;
  296. long size;
  297. if ((minor & mask) == 0)
  298. break;
  299. start = le32_to_cpu(p->start);
  300. size  = le32_to_cpu(p->size);
  301. if (size < 0) {
  302. size = -size;
  303. /*
  304.  * We use the first sector to identify what type
  305.  * this partition is...
  306.  */
  307. if (size > 1 && adfspart_check_ICSLinux(bdev, start)) {
  308. start += 1;
  309. size -= 1;
  310. }
  311. }
  312. if (size) {
  313. add_gd_partition(hd, minor, first_sector + start, size);
  314. minor++;
  315. }
  316. }
  317. put_dev_sector(sect);
  318. return 1;
  319. }
  320. #endif
  321. /*
  322.  * Purpose: allocate ICS partitions.
  323.  * Params : hd - pointer to gendisk structure to store partition info.
  324.  *     dev - device number to access.
  325.  *     first_sector- first readable sector on the device.
  326.  *     minor - first available minor on device.
  327.  * Returns: -1 on error, 0 for no ICS table, 1 for partitions ok.
  328.  * Alloc  : hda  = whole drive
  329.  *     hda1 = ADFS partition 0 on first drive.
  330.  *     hda2 = ADFS partition 1 on first drive.
  331.  * ..etc..
  332.  */
  333. #ifdef CONFIG_ACORN_PARTITION_POWERTEC
  334. static int
  335. adfspart_check_POWERTEC(struct gendisk *hd, struct block_device *bdev,
  336. unsigned long first_sector, int minor)
  337. {
  338. Sector sect;
  339. unsigned char *data;
  340. struct ptec_partition *p;
  341. unsigned char checksum;
  342. int i;
  343. data = read_dev_sector(bdev, 0, &sect);
  344. if (!data)
  345. return -1;
  346. for (checksum = 0x2a, i = 0; i < 511; i++)
  347. checksum += data[i];
  348. if (checksum != data[511]) {
  349. put_dev_sector(sect);
  350. return 0;
  351. }
  352. printk(" [POWERTEC]");
  353. for (i = 0, p = (struct ptec_partition *)data; i < 12; i++, p++) {
  354. unsigned long start;
  355. unsigned long size;
  356. start = le32_to_cpu(p->start);
  357. size  = le32_to_cpu(p->size);
  358. if (size)
  359. add_gd_partition(hd, minor, first_sector + start,
  360.  size);
  361. minor++;
  362. }
  363. put_dev_sector(sect);
  364. return 1;
  365. }
  366. #endif
  367. static int (*partfn[])(struct gendisk *, struct block_device *, unsigned long, int) = {
  368. #ifdef CONFIG_ACORN_PARTITION_ICS
  369. adfspart_check_ICS,
  370. #endif
  371. #ifdef CONFIG_ACORN_PARTITION_POWERTEC
  372. adfspart_check_POWERTEC,
  373. #endif
  374. #ifdef CONFIG_ACORN_PARTITION_CUMANA
  375. adfspart_check_CUMANA,
  376. #endif
  377. #ifdef CONFIG_ACORN_PARTITION_ADFS
  378. adfspart_check_ADFS,
  379. #endif
  380. NULL
  381. };
  382. /*
  383.  * Purpose: initialise all the partitions on an ADFS drive.
  384.  *          These may be other ADFS partitions or a Linux/RiscBSD/RISCiX
  385.  *     partition.
  386.  *
  387.  * Params : hd - pointer to gendisk structure
  388.  *          dev - device number to access
  389.  *     first_sect  - first available sector on the disk.
  390.  *     first_minor - first available minor on this device.
  391.  *
  392.  * Returns: -1 on error, 0 if not ADFS format, 1 if ok.
  393.  */
  394. int acorn_partition(struct gendisk *hd, struct block_device *bdev,
  395.     unsigned long first_sect, int first_minor)
  396. {
  397. int i;
  398. for (i = 0; partfn[i]; i++) {
  399. int r = partfn[i](hd, bdev, first_sect, first_minor);
  400. if (r) {
  401. if (r > 0)
  402. printk("n");
  403. return r;
  404. }
  405. }
  406. return 0;
  407. }