aoeblk.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:7k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* Copyright (c) 2004 Coraid, Inc.  See COPYING for GPL terms. */
  2. /*
  3.  * aoeblk.c
  4.  * block device routines
  5.  */
  6. #include <linux/hdreg.h>
  7. #include <linux/blkdev.h>
  8. #include <linux/fs.h>
  9. #include <linux/ioctl.h>
  10. #include <linux/genhd.h>
  11. #include <linux/netdevice.h>
  12. #include "aoe.h"
  13. static kmem_cache_t *buf_pool_cache;
  14. /* add attributes for our block devices in sysfs */
  15. static ssize_t aoedisk_show_state(struct gendisk * disk, char *page)
  16. {
  17. struct aoedev *d = disk->private_data;
  18. return snprintf(page, PAGE_SIZE,
  19. "%s%sn",
  20. (d->flags & DEVFL_UP) ? "up" : "down",
  21. (d->flags & DEVFL_CLOSEWAIT) ? ",closewait" : "");
  22. }
  23. static ssize_t aoedisk_show_mac(struct gendisk * disk, char *page)
  24. {
  25. struct aoedev *d = disk->private_data;
  26. return snprintf(page, PAGE_SIZE, "%012llxn",
  27. (unsigned long long)mac_addr(d->addr));
  28. }
  29. static ssize_t aoedisk_show_netif(struct gendisk * disk, char *page)
  30. {
  31. struct aoedev *d = disk->private_data;
  32. return snprintf(page, PAGE_SIZE, "%sn", d->ifp->name);
  33. }
  34. /* firmware version */
  35. static ssize_t aoedisk_show_fwver(struct gendisk * disk, char *page)
  36. {
  37. struct aoedev *d = disk->private_data;
  38. return snprintf(page, PAGE_SIZE, "0x%04xn", (unsigned int) d->fw_ver);
  39. }
  40. static struct disk_attribute disk_attr_state = {
  41. .attr = {.name = "state", .mode = S_IRUGO },
  42. .show = aoedisk_show_state
  43. };
  44. static struct disk_attribute disk_attr_mac = {
  45. .attr = {.name = "mac", .mode = S_IRUGO },
  46. .show = aoedisk_show_mac
  47. };
  48. static struct disk_attribute disk_attr_netif = {
  49. .attr = {.name = "netif", .mode = S_IRUGO },
  50. .show = aoedisk_show_netif
  51. };
  52. static struct disk_attribute disk_attr_fwver = {
  53. .attr = {.name = "firmware-version", .mode = S_IRUGO },
  54. .show = aoedisk_show_fwver
  55. };
  56. static void
  57. aoedisk_add_sysfs(struct aoedev *d)
  58. {
  59. sysfs_create_file(&d->gd->kobj, &disk_attr_state.attr);
  60. sysfs_create_file(&d->gd->kobj, &disk_attr_mac.attr);
  61. sysfs_create_file(&d->gd->kobj, &disk_attr_netif.attr);
  62. sysfs_create_file(&d->gd->kobj, &disk_attr_fwver.attr);
  63. }
  64. void
  65. aoedisk_rm_sysfs(struct aoedev *d)
  66. {
  67. sysfs_remove_link(&d->gd->kobj, "state");
  68. sysfs_remove_link(&d->gd->kobj, "mac");
  69. sysfs_remove_link(&d->gd->kobj, "netif");
  70. sysfs_remove_link(&d->gd->kobj, "firmware-version");
  71. }
  72. static int
  73. aoeblk_open(struct inode *inode, struct file *filp)
  74. {
  75. struct aoedev *d;
  76. ulong flags;
  77. d = inode->i_bdev->bd_disk->private_data;
  78. spin_lock_irqsave(&d->lock, flags);
  79. if (d->flags & DEVFL_UP) {
  80. d->nopen++;
  81. spin_unlock_irqrestore(&d->lock, flags);
  82. return 0;
  83. }
  84. spin_unlock_irqrestore(&d->lock, flags);
  85. return -ENODEV;
  86. }
  87. static int
  88. aoeblk_release(struct inode *inode, struct file *filp)
  89. {
  90. struct aoedev *d;
  91. ulong flags;
  92. d = inode->i_bdev->bd_disk->private_data;
  93. spin_lock_irqsave(&d->lock, flags);
  94. if (--d->nopen == 0 && (d->flags & DEVFL_CLOSEWAIT)) {
  95. d->flags &= ~DEVFL_CLOSEWAIT;
  96. spin_unlock_irqrestore(&d->lock, flags);
  97. aoecmd_cfg(d->aoemajor, d->aoeminor);
  98. return 0;
  99. }
  100. spin_unlock_irqrestore(&d->lock, flags);
  101. return 0;
  102. }
  103. static int
  104. aoeblk_make_request(request_queue_t *q, struct bio *bio)
  105. {
  106. struct aoedev *d;
  107. struct buf *buf;
  108. struct sk_buff *sl;
  109. ulong flags;
  110. blk_queue_bounce(q, &bio);
  111. d = bio->bi_bdev->bd_disk->private_data;
  112. buf = mempool_alloc(d->bufpool, GFP_NOIO);
  113. if (buf == NULL) {
  114. printk(KERN_INFO "aoe: aoeblk_make_request: buf allocation "
  115. "failuren");
  116. bio_endio(bio, bio->bi_size, -ENOMEM);
  117. return 0;
  118. }
  119. memset(buf, 0, sizeof(*buf));
  120. INIT_LIST_HEAD(&buf->bufs);
  121. buf->start_time = jiffies;
  122. buf->bio = bio;
  123. buf->resid = bio->bi_size;
  124. buf->sector = bio->bi_sector;
  125. buf->bv = buf->bio->bi_io_vec;
  126. buf->bv_resid = buf->bv->bv_len;
  127. buf->bufaddr = page_address(buf->bv->bv_page) + buf->bv->bv_offset;
  128. spin_lock_irqsave(&d->lock, flags);
  129. if ((d->flags & DEVFL_UP) == 0) {
  130. printk(KERN_INFO "aoe: aoeblk_make_request: device %ld.%ld is not upn",
  131. d->aoemajor, d->aoeminor);
  132. spin_unlock_irqrestore(&d->lock, flags);
  133. mempool_free(buf, d->bufpool);
  134. bio_endio(bio, bio->bi_size, -ENXIO);
  135. return 0;
  136. }
  137. list_add_tail(&buf->bufs, &d->bufq);
  138. aoecmd_work(d);
  139. sl = d->sendq_hd;
  140. d->sendq_hd = d->sendq_tl = NULL;
  141. spin_unlock_irqrestore(&d->lock, flags);
  142. aoenet_xmit(sl);
  143. return 0;
  144. }
  145. /* This ioctl implementation expects userland to have the device node
  146.  * permissions set so that only priviledged users can open an aoe
  147.  * block device directly.
  148.  */
  149. static int
  150. aoeblk_ioctl(struct inode *inode, struct file *filp, uint cmd, ulong arg)
  151. {
  152. struct aoedev *d;
  153. if (!arg)
  154. return -EINVAL;
  155. d = inode->i_bdev->bd_disk->private_data;
  156. if ((d->flags & DEVFL_UP) == 0) {
  157. printk(KERN_ERR "aoe: aoeblk_ioctl: disk not upn");
  158. return -ENODEV;
  159. }
  160. if (cmd == HDIO_GETGEO) {
  161. d->geo.start = get_start_sect(inode->i_bdev);
  162. if (!copy_to_user((void __user *) arg, &d->geo, sizeof d->geo))
  163. return 0;
  164. return -EFAULT;
  165. }
  166. printk(KERN_INFO "aoe: aoeblk_ioctl: unknown ioctl %dn", cmd);
  167. return -EINVAL;
  168. }
  169. static struct block_device_operations aoe_bdops = {
  170. .open = aoeblk_open,
  171. .release = aoeblk_release,
  172. .ioctl = aoeblk_ioctl,
  173. .owner = THIS_MODULE,
  174. };
  175. /* alloc_disk and add_disk can sleep */
  176. void
  177. aoeblk_gdalloc(void *vp)
  178. {
  179. struct aoedev *d = vp;
  180. struct gendisk *gd;
  181. ulong flags;
  182. gd = alloc_disk(AOE_PARTITIONS);
  183. if (gd == NULL) {
  184. printk(KERN_ERR "aoe: aoeblk_gdalloc: cannot allocate disk "
  185. "structure for %ld.%ldn", d->aoemajor, d->aoeminor);
  186. spin_lock_irqsave(&d->lock, flags);
  187. d->flags &= ~DEVFL_WORKON;
  188. spin_unlock_irqrestore(&d->lock, flags);
  189. return;
  190. }
  191. d->bufpool = mempool_create(MIN_BUFS,
  192.     mempool_alloc_slab, mempool_free_slab,
  193.     buf_pool_cache);
  194. if (d->bufpool == NULL) {
  195. printk(KERN_ERR "aoe: aoeblk_gdalloc: cannot allocate bufpool "
  196. "for %ld.%ldn", d->aoemajor, d->aoeminor);
  197. put_disk(gd);
  198. spin_lock_irqsave(&d->lock, flags);
  199. d->flags &= ~DEVFL_WORKON;
  200. spin_unlock_irqrestore(&d->lock, flags);
  201. return;
  202. }
  203. spin_lock_irqsave(&d->lock, flags);
  204. blk_queue_make_request(&d->blkq, aoeblk_make_request);
  205. gd->major = AOE_MAJOR;
  206. gd->first_minor = d->sysminor * AOE_PARTITIONS;
  207. gd->fops = &aoe_bdops;
  208. gd->private_data = d;
  209. gd->capacity = d->ssize;
  210. snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%ld",
  211. d->aoemajor, d->aoeminor);
  212. gd->queue = &d->blkq;
  213. d->gd = gd;
  214. d->flags &= ~DEVFL_WORKON;
  215. d->flags |= DEVFL_UP;
  216. spin_unlock_irqrestore(&d->lock, flags);
  217. add_disk(gd);
  218. aoedisk_add_sysfs(d);
  219. printk(KERN_INFO "aoe: %012llx e%lu.%lu v%04x has %llu "
  220. "sectorsn", (unsigned long long)mac_addr(d->addr),
  221. d->aoemajor, d->aoeminor,
  222. d->fw_ver, (long long)d->ssize);
  223. }
  224. void
  225. aoeblk_exit(void)
  226. {
  227. kmem_cache_destroy(buf_pool_cache);
  228. }
  229. int __init
  230. aoeblk_init(void)
  231. {
  232. buf_pool_cache = kmem_cache_create("aoe_bufs", 
  233.    sizeof(struct buf),
  234.    0, 0, NULL, NULL);
  235. if (buf_pool_cache == NULL)
  236. return -ENOMEM;
  237. return 0;
  238. }