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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  fs/partitions/atari.c
  3.  *
  4.  *  Code extracted from drivers/block/genhd.c
  5.  *
  6.  *  Copyright (C) 1991-1998  Linus Torvalds
  7.  *  Re-organised Feb 1998 Russell King
  8.  */
  9. #include <linux/fs.h>
  10. #include <linux/genhd.h>
  11. #include <linux/kernel.h>
  12. #include <linux/major.h>
  13. #include <linux/string.h>
  14. #include <linux/blk.h>
  15. #include <linux/ctype.h>
  16. #include <asm/byteorder.h>
  17. #include <asm/system.h>
  18. #include "check.h"
  19. #include "atari.h"
  20. /* ++guenther: this should be settable by the user ("make config")?.
  21.  */
  22. #define ICD_PARTS
  23. /* check if a partition entry looks valid -- Atari format is assumed if at
  24.    least one of the primary entries is ok this way */
  25. #define VALID_PARTITION(pi,hdsiz)      
  26.     (((pi)->flg & 1) &&      
  27.      isalnum((pi)->id[0]) && isalnum((pi)->id[1]) && isalnum((pi)->id[2]) && 
  28.      be32_to_cpu((pi)->st) <= (hdsiz) &&      
  29.      be32_to_cpu((pi)->st) + be32_to_cpu((pi)->siz) <= (hdsiz))
  30. static inline int OK_id(char *s)
  31. {
  32. return  memcmp (s, "GEM", 3) == 0 || memcmp (s, "BGM", 3) == 0 ||
  33. memcmp (s, "LNX", 3) == 0 || memcmp (s, "SWP", 3) == 0 ||
  34. memcmp (s, "RAW", 3) == 0 ;
  35. }
  36. int atari_partition (struct gendisk *hd, struct block_device *bdev,
  37.      unsigned long first_sector, int minor)
  38. {
  39. int m_lim = minor + hd->max_p;
  40. Sector sect;
  41. struct rootsector *rs;
  42. struct partition_info *pi;
  43. u32 extensect;
  44. u32 hd_size;
  45. #ifdef ICD_PARTS
  46. int part_fmt = 0; /* 0:unknown, 1:AHDI, 2:ICD/Supra */
  47. #endif
  48. rs = (struct rootsector *) read_dev_sector(bdev, 0, &sect);
  49. if (!rs)
  50. return -1;
  51. /* Verify this is an Atari rootsector: */
  52. hd_size = hd->part[minor - 1].nr_sects;
  53. if (!VALID_PARTITION(&rs->part[0], hd_size) &&
  54.     !VALID_PARTITION(&rs->part[1], hd_size) &&
  55.     !VALID_PARTITION(&rs->part[2], hd_size) &&
  56.     !VALID_PARTITION(&rs->part[3], hd_size)) {
  57. /*
  58.  * if there's no valid primary partition, assume that no Atari
  59.  * format partition table (there's no reliable magic or the like
  60.          * :-()
  61.  */
  62. put_dev_sector(sect);
  63. return 0;
  64. }
  65. pi = &rs->part[0];
  66. printk (" AHDI");
  67. for (; pi < &rs->part[4] && minor < m_lim; minor++, pi++) {
  68. struct rootsector *xrs;
  69. Sector sect2;
  70. ulong partsect;
  71. if ( !(pi->flg & 1) )
  72. continue;
  73. /* active partition */
  74. if (memcmp (pi->id, "XGM", 3) != 0) {
  75. /* we don't care about other id's */
  76. add_gd_partition (hd, minor, be32_to_cpu(pi->st),
  77. be32_to_cpu(pi->siz));
  78. continue;
  79. }
  80. /* extension partition */
  81. #ifdef ICD_PARTS
  82. part_fmt = 1;
  83. #endif
  84. printk(" XGM<");
  85. partsect = extensect = be32_to_cpu(pi->st);
  86. while (1) {
  87. xrs = (struct rootsector *)read_dev_sector(bdev, partsect, &sect2);
  88. if (!xrs) {
  89. printk (" block %ld read failedn", partsect);
  90. put_dev_sector(sect);
  91. return 0;
  92. }
  93. /* ++roman: sanity check: bit 0 of flg field must be set */
  94. if (!(xrs->part[0].flg & 1)) {
  95. printk( "nFirst sub-partition in extended partition is not valid!n" );
  96. put_dev_sector(sect2);
  97. break;
  98. }
  99. add_gd_partition(hd, minor,
  100.    partsect + be32_to_cpu(xrs->part[0].st),
  101.    be32_to_cpu(xrs->part[0].siz));
  102. if (!(xrs->part[1].flg & 1)) {
  103. /* end of linked partition list */
  104. put_dev_sector(sect2);
  105. break;
  106. }
  107. if (memcmp( xrs->part[1].id, "XGM", 3 ) != 0) {
  108. printk("nID of extended partition is not XGM!n");
  109. put_dev_sector(sect2);
  110. break;
  111. }
  112. partsect = be32_to_cpu(xrs->part[1].st) + extensect;
  113. put_dev_sector(sect2);
  114. minor++;
  115. if (minor >= m_lim) {
  116. printk( "nMaximum number of partitions reached!n" );
  117. break;
  118. }
  119. }
  120. printk(" >");
  121. }
  122. #ifdef ICD_PARTS
  123. if ( part_fmt!=1 ) { /* no extended partitions -> test ICD-format */
  124. pi = &rs->icdpart[0];
  125. /* sanity check: no ICD format if first partition invalid */
  126. if (OK_id(pi->id)) {
  127. printk(" ICD<");
  128. for (; pi < &rs->icdpart[8] && minor < m_lim; minor++, pi++) {
  129. /* accept only GEM,BGM,RAW,LNX,SWP partitions */
  130. if (!((pi->flg & 1) && OK_id(pi->id)))
  131. continue;
  132. part_fmt = 2;
  133. add_gd_partition (hd, minor,
  134. be32_to_cpu(pi->st),
  135. be32_to_cpu(pi->siz));
  136. }
  137. printk(" >");
  138. }
  139. }
  140. #endif
  141. put_dev_sector(sect);
  142. printk ("n");
  143. return 1;
  144. }