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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.    hptraid.c  Copyright (C) 2001 Red Hat, Inc. All rights reserved.
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2, or (at your option)
  6.    any later version.
  7.    
  8.    You should have received a copy of the GNU General Public License
  9.    (for example /usr/src/linux/COPYING); if not, write to the Free
  10.    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  
  11.    
  12.    Authors:  Arjan van de Ven <arjanv@redhat.com>
  13.    Based on work
  14.     Copyleft  (C) 2001 by Wilfried Weissmann <wweissmann@gmx.at>
  15. Copyright (C) 1994-96 Marc ZYNGIER <zyngier@ufr-info-p7.ibp.fr>
  16.    Based on work done by S鴕en Schmidt for FreeBSD
  17.    
  18. */
  19. #include <linux/module.h>
  20. #include <linux/init.h>
  21. #include <linux/sched.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/kernel.h>
  24. #include <linux/blkdev.h>
  25. #include <linux/blkpg.h>
  26. #include <linux/genhd.h>
  27. #include <linux/ioctl.h>
  28. #include <linux/ide.h>
  29. #include <asm/uaccess.h>
  30. #include "ataraid.h"
  31. static int hptraid_open(struct inode * inode, struct file * filp);
  32. static int hptraid_release(struct inode * inode, struct file * filp);
  33. static int hptraid_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg);
  34. static int hptraid_make_request (request_queue_t *q, int rw, struct buffer_head * bh);
  35. struct hptdisk {
  36. kdev_t device;
  37. unsigned long sectors;
  38. struct block_device *bdev;
  39. };
  40. struct hptraid {
  41. unsigned int stride;
  42. unsigned int disks;
  43. unsigned long sectors;
  44. struct geom geom;
  45. struct hptdisk disk[8];
  46. unsigned long cutoff[8];
  47. unsigned int cutoff_disks[8];
  48. };
  49. static struct raid_device_operations hptraid_ops = {
  50. open:                   hptraid_open,
  51. release:                hptraid_release,
  52. ioctl: hptraid_ioctl,
  53. make_request: hptraid_make_request
  54. };
  55. static struct hptraid raid[16];
  56. static int hptraid_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  57. {
  58. unsigned int minor;
  59. unsigned char val;
  60. unsigned long sectors;
  61. if (!inode || !inode->i_rdev) 
  62. return -EINVAL;
  63. minor = MINOR(inode->i_rdev)>>SHIFT;
  64. switch (cmd) {
  65.           case BLKGETSIZE:   /* Return device size */
  66. if (!arg)  return -EINVAL;
  67. sectors = ataraid_gendisk.part[MINOR(inode->i_rdev)].nr_sects;
  68. if (MINOR(inode->i_rdev)&15)
  69. return put_user(sectors, (unsigned long *) arg);
  70. return put_user(raid[minor].sectors , (unsigned long *) arg);
  71. break;
  72. case HDIO_GETGEO:
  73. {
  74. struct hd_geometry *loc = (struct hd_geometry *) arg;
  75. unsigned short bios_cyl;
  76. if (!loc) return -EINVAL;
  77. val = 255;
  78. if (put_user(val, (byte *) &loc->heads)) return -EFAULT;
  79. val=63;
  80. if (put_user(val, (byte *) &loc->sectors)) return -EFAULT;
  81. bios_cyl = raid[minor].sectors/63/255;
  82. if (put_user(bios_cyl, (unsigned short *) &loc->cylinders)) return -EFAULT;
  83. if (put_user((unsigned)ataraid_gendisk.part[MINOR(inode->i_rdev)].start_sect,
  84. (unsigned long *) &loc->start)) return -EFAULT;
  85. return 0;
  86. }
  87. case HDIO_GETGEO_BIG:
  88. {
  89. struct hd_big_geometry *loc = (struct hd_big_geometry *) arg;
  90. unsigned int bios_cyl;
  91. if (!loc) return -EINVAL;
  92. val = 255;
  93. if (put_user(val, (byte *) &loc->heads)) return -EFAULT;
  94. val = 63;
  95. if (put_user(val, (byte *) &loc->sectors)) return -EFAULT;
  96. bios_cyl = raid[minor].sectors/63/255;
  97. if (put_user(bios_cyl, (unsigned int *) &loc->cylinders)) return -EFAULT;
  98. if (put_user((unsigned)ataraid_gendisk.part[MINOR(inode->i_rdev)].start_sect,
  99. (unsigned long *) &loc->start)) return -EFAULT;
  100. return 0;
  101. }
  102. default:
  103. return blk_ioctl(inode->i_rdev, cmd, arg);
  104. };
  105. return 0;
  106. }
  107. static int hptraid_make_request (request_queue_t *q, int rw, struct buffer_head * bh)
  108. {
  109. unsigned long rsect;
  110. unsigned long rsect_left,rsect_accum = 0;
  111. unsigned long block;
  112. unsigned int disk=0,real_disk=0;
  113. int i;
  114. int device;
  115. struct hptraid *thisraid;
  116. rsect = bh->b_rsector;
  117. /* Ok. We need to modify this sector number to a new disk + new sector number. 
  118.  * If there are disks of different sizes, this gets tricky. 
  119.  * Example with 3 disks (1Gb, 4Gb and 5 GB):
  120.  * The first 3 Gb of the "RAID" are evenly spread over the 3 disks.
  121.  * Then things get interesting. The next 2Gb (RAID view) are spread across disk 2 and 3
  122.  * and the last 1Gb is disk 3 only.
  123.  *
  124.  * the way this is solved is like this: We have a list of "cutoff" points where everytime
  125.  * a disk falls out of the "higher" count, we mark the max sector. So once we pass a cutoff
  126.  * point, we have to divide by one less.
  127.  */
  128. device = (bh->b_rdev >> SHIFT)&MAJOR_MASK;
  129. thisraid = &raid[device];
  130. if (thisraid->stride==0)
  131. thisraid->stride=1;
  132. /* Partitions need adding of the start sector of the partition to the requested sector */
  133. rsect += ataraid_gendisk.part[MINOR(bh->b_rdev)].start_sect;
  134. /* Woops we need to split the request to avoid crossing a stride barrier */
  135. if ((rsect/thisraid->stride) != ((rsect+(bh->b_size/512)-1)/thisraid->stride)) {
  136. return -1;
  137. }
  138. rsect_left = rsect;
  139. for (i=0;i<8;i++) {
  140. if (thisraid->cutoff_disks[i]==0)
  141. break;
  142. if (rsect > thisraid->cutoff[i]) {
  143. /* we're in the wrong area so far */
  144. rsect_left -= thisraid->cutoff[i];
  145. rsect_accum += thisraid->cutoff[i]/thisraid->cutoff_disks[i];
  146. } else {
  147. block = rsect_left / thisraid->stride;
  148. disk = block % thisraid->cutoff_disks[i];
  149. block = (block / thisraid->cutoff_disks[i]) * thisraid->stride;
  150. rsect = rsect_accum + (rsect_left % thisraid->stride) + block;
  151. break;
  152. }
  153. }
  154. for (i=0;i<8;i++) {
  155. if ((disk==0) && (thisraid->disk[i].sectors > rsect_accum)) {
  156. real_disk = i;
  157. break;
  158. }
  159. if ((disk>0) && (thisraid->disk[i].sectors >= rsect_accum)) {
  160. disk--;
  161. }
  162. }
  163. disk = real_disk;
  164. /* All but the first disk have a 10 sector offset */
  165. if (i>0)
  166. rsect+=10;
  167. /*
  168.  * The new BH_Lock semantics in ll_rw_blk.c guarantee that this
  169.  * is the only IO operation happening on this bh.
  170.  */
  171.  
  172. bh->b_rdev = thisraid->disk[disk].device;
  173. bh->b_rsector = rsect;
  174. /*
  175.  * Let the main block layer submit the IO and resolve recursion:
  176.  */
  177. return 1;
  178. }
  179. #include "hptraid.h"
  180. static int read_disk_sb (int major, int minor, unsigned char *buffer,int bufsize)
  181. {
  182. int ret = -EINVAL;
  183. struct buffer_head *bh = NULL;
  184. kdev_t dev = MKDEV(major,minor);
  185. if (blksize_size[major]==NULL)  /* device doesn't exist */
  186. return -EINVAL;
  187. /* Superblock is at 4096+412 bytes */
  188. set_blocksize (dev, 4096);
  189. bh = bread (dev, 1, 4096);
  190. if (bh) {
  191. memcpy (buffer, bh->b_data, bufsize);
  192. } else {
  193. printk(KERN_ERR "hptraid: Error reading superblock.n");
  194. goto abort;
  195. }
  196. ret = 0;
  197. abort:
  198. if (bh)
  199. brelse (bh);
  200. return ret;
  201. }
  202. static unsigned long maxsectors (int major,int minor)
  203. {
  204. unsigned long lba = 0;
  205. kdev_t dev;
  206. ide_drive_t *ideinfo;
  207. dev = MKDEV(major,minor);
  208. ideinfo = get_info_ptr (dev);
  209. if (ideinfo==NULL)
  210. return 0;
  211. /* first sector of the last cluster */
  212. if (ideinfo->head==0) 
  213. return 0;
  214. if (ideinfo->sect==0)
  215. return 0;
  216. lba = (ideinfo->capacity);
  217. return lba;
  218. }
  219. static void __init probedisk(int major, int minor,int device)
  220. {
  221. int i;
  222.         struct highpoint_raid_conf *prom;
  223. static unsigned char block[4096];
  224. struct block_device *bdev;
  225. if (maxsectors(major,minor)==0)
  226. return;
  227.         if (read_disk_sb(major,minor,(unsigned char*)&block,sizeof(block)))
  228.          return;
  229.                                                                                                                  
  230.         prom = (struct highpoint_raid_conf*)&block[512];
  231.                 
  232.         if (prom->magic!=  0x5a7816f0)
  233.          return;
  234.         if (prom->type) {
  235.          printk(KERN_INFO "hptraid: only RAID0 is supported currentlyn");
  236.          return;
  237.         }
  238. i = prom->disk_number;
  239. if (i<0)
  240. return;
  241. if (i>8) 
  242. return;
  243. bdev = bdget(MKDEV(major,minor));
  244. if (bdev && blkdev_get(bdev,FMODE_READ|FMODE_WRITE,0,BDEV_RAW) == 0) {
  245.          int j=0;
  246.          struct gendisk *gd;
  247. raid[device].disk[i].bdev = bdev;
  248.          /* This is supposed to prevent others from stealing our underlying disks */
  249. /* now blank the /proc/partitions table for the wrong partition table,
  250.    so that scripts don't accidentally mount it and crash the kernel */
  251.  /* XXX: the 0 is an utter hack  --hch */
  252. gd=get_gendisk(MKDEV(major, 0));
  253. if (gd!=NULL) {
  254. for (j=1+(minor<<gd->minor_shift);j<((minor+1)<<gd->minor_shift);j++) 
  255. gd->part[j].nr_sects=0;
  256. }
  257.         }
  258. raid[device].disk[i].device = MKDEV(major,minor);
  259. raid[device].disk[i].sectors = maxsectors(major,minor);
  260. raid[device].stride = (1<<prom->raid0_shift);
  261. raid[device].disks = prom->raid_disks;
  262. raid[device].sectors = prom->total_secs;
  263. }
  264. static void __init fill_cutoff(int device)
  265. {
  266. int i,j;
  267. unsigned long smallest;
  268. unsigned long bar;
  269. int count;
  270. bar = 0;
  271. for (i=0;i<8;i++) {
  272. smallest = ~0;
  273. for (j=0;j<8;j++) 
  274. if ((raid[device].disk[j].sectors < smallest) && (raid[device].disk[j].sectors>bar))
  275. smallest = raid[device].disk[j].sectors;
  276. count = 0;
  277. for (j=0;j<8;j++) 
  278. if (raid[device].disk[j].sectors >= smallest)
  279. count++;
  280. smallest = smallest * count;
  281. bar = smallest;
  282. raid[device].cutoff[i] = smallest;
  283. raid[device].cutoff_disks[i] = count;
  284. }
  285. }
  286. static __init int hptraid_init_one(int device)
  287. {
  288. int i,count;
  289. probedisk(IDE0_MAJOR,  0, device);
  290. probedisk(IDE0_MAJOR, 64, device);
  291. probedisk(IDE1_MAJOR,  0, device);
  292. probedisk(IDE1_MAJOR, 64, device);
  293. probedisk(IDE2_MAJOR,  0, device);
  294. probedisk(IDE2_MAJOR, 64, device);
  295. probedisk(IDE3_MAJOR,  0, device);
  296. probedisk(IDE3_MAJOR, 64, device);
  297. probedisk(IDE4_MAJOR,  0, device);
  298. probedisk(IDE4_MAJOR, 64, device);
  299. probedisk(IDE5_MAJOR,  0, device);
  300. probedisk(IDE5_MAJOR, 64, device);
  301. fill_cutoff(device);
  302. /* Initialize the gendisk structure */
  303. ataraid_register_disk(device,raid[device].sectors);
  304. count=0;
  305. printk(KERN_INFO "Highpoint HPT370 Softwareraid driver for linux version 0.01n");
  306. for (i=0;i<8;i++) {
  307. if (raid[device].disk[i].device!=0) {
  308. printk(KERN_INFO "Drive %i is %li Mb n",
  309. i,raid[device].disk[i].sectors/2048);
  310. count++;
  311. }
  312. }
  313. if (count) {
  314. printk(KERN_INFO "Raid array consists of %i drives. n",count);
  315. return 0;
  316. } else {
  317. printk(KERN_INFO "No raid array foundn");
  318. return -ENODEV;
  319. }
  320. }
  321. static __init int hptraid_init(void)
  322. {
  323. int retval,device;
  324. device=ataraid_get_device(&hptraid_ops);
  325. if (device<0)
  326. return -ENODEV;
  327. retval = hptraid_init_one(device);
  328. if (retval)
  329. ataraid_release_device(device);
  330. return retval;
  331. }
  332. static void __exit hptraid_exit (void)
  333. {
  334. int i,device;
  335. for (device = 0; device<16; device++) {
  336. for (i=0;i<8;i++)  {
  337. struct block_device *bdev = raid[device].disk[i].bdev;
  338. raid[device].disk[i].bdev = NULL;
  339. if (bdev)
  340. blkdev_put(bdev, BDEV_RAW);
  341. }       
  342. if (raid[device].sectors)
  343. ataraid_release_device(device);
  344. }
  345. }
  346. static int hptraid_open(struct inode * inode, struct file * filp) 
  347. {
  348. MOD_INC_USE_COUNT;
  349. return 0;
  350. }
  351. static int hptraid_release(struct inode * inode, struct file * filp)
  352. {
  353. MOD_DEC_USE_COUNT;
  354. return 0;
  355. }
  356. module_init(hptraid_init);
  357. module_exit(hptraid_exit);
  358. MODULE_LICENSE("GPL");