sbull.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * sbull.c -- the Simple Block Utility
  3.  *
  4.  * Tested with 2.1.43 on the x86
  5.  */
  6. #ifndef __KERNEL__
  7. #  define __KERNEL__
  8. #endif
  9. #ifndef MODULE
  10. #  define MODULE
  11. #endif
  12. #define __NO_VERSION__ /* don't define kernel_verion in module.h */
  13. #include <linux/module.h>
  14. #include <linux/version.h>
  15. char kernel_version [] = UTS_RELEASE;
  16. #include <linux/sched.h>
  17. #include <linux/kernel.h> /* printk() */
  18. #include <linux/malloc.h> /* kmalloc() */
  19. #include <linux/fs.h>     /* everything... */
  20. #include <linux/errno.h>  /* error codes */
  21. #include <linux/timer.h>
  22. #include <linux/types.h>  /* size_t */
  23. #include <linux/fcntl.h>        /* O_ACCMODE */
  24. #include <linux/hdreg.h>  /* HDIO_GETGEO */
  25. #include <asm/system.h>   /* cli(), *_flags */
  26. #include <asm/segment.h>  /* put_user */
  27. #include "sysdep-2.1.h" /* at least for add_timer */
  28. #define MAJOR_NR sbull_major /* force definitions on in blk.h */
  29. int sbull_major; /* must be declared before including blk.h */
  30. #define DEVICE_NR(device) MINOR(device)   /* sbull has no partition bits */
  31. #define DEVICE_NAME "sbull"               /* name for messaging */
  32. #define DEVICE_INTR sbull_intrptr         /* pointer to the bottom half */
  33. #define DEVICE_NO_RANDOM                  /* no entropy to contribute */
  34. #define DEVICE_OFF(d) /* do-nothing */
  35. #if LINUX_VERSION_CODE < 0x10324 /* 1.3.36 */
  36. #  include <linux/../../drivers/block/blk.h>
  37. #else
  38. #  include <linux/blk.h>
  39. #endif
  40. #include "sbull.h"        /* local definitions */
  41. /*
  42.  * Non-prefixed symbols are static. They are meant to be assigned at
  43.  * load time. Prefixed symbols are not static, so they can be used in
  44.  * debugging. They are hidden anyways by register_symtab() unless
  45.  * SBULL_DEBUG is defined.
  46.  */
  47. static int major    = SBULL_MAJOR;
  48. static int devs     = SBULL_DEVS;
  49. static int rahead   = SBULL_RAHEAD;
  50. static int size     = SBULL_SIZE;
  51. static int blksize  = SBULL_BLKSIZE;
  52. static int hardsect = SBULL_HARDSECT;
  53. int sbull_devs, sbull_rahead, sbull_size;
  54. int sbull_blksize, sbull_hardsect;
  55. MODULE_PARM(major,"i");
  56. MODULE_PARM(devs,"i");
  57. MODULE_PARM(rahead,"i");
  58. MODULE_PARM(size,"i");
  59. MODULE_PARM(blksize,"i");
  60. MODULE_PARM(hardsect,"i");
  61. /* The following items are obtained through kmalloc() in init_module() */
  62. Sbull_Dev *sbull_devices = NULL;
  63. int *sbull_blksizes = NULL;
  64. int *sbull_sizes = NULL;
  65. int *sbull_hardsects = NULL;
  66. int sbull_revalidate(kdev_t i_rdev);
  67. /*
  68.  * Open and close
  69.  */
  70. int sbull_open (struct inode *inode, struct file *filp)
  71. {
  72.     Sbull_Dev *dev; /* device information */
  73.     int num = MINOR(inode->i_rdev);
  74.     if (num >= sbull_devs) return -ENODEV;
  75.     dev = sbull_devices + num;
  76.     /* kill the timer associated to the device: it might be active */
  77.     del_timer(&dev->timer);
  78.     /* revalidate on first open and fail if no data is there */
  79.     if (!dev->usage) {
  80.         check_disk_change(inode->i_rdev);
  81.         if (!dev->data)
  82.             return -ENOMEM;
  83.     }
  84.     dev->usage++;
  85.     MOD_INC_USE_COUNT;
  86.     return 0;          /* success */
  87. }
  88. release_t sbull_release (struct inode *inode, struct file *filp)
  89. {
  90.     Sbull_Dev *dev = sbull_devices + MINOR(inode->i_rdev);
  91.     dev->usage--;
  92.     /*
  93.      * If the device is closed for the last time, start a timer
  94.      * to release RAM in half a minute. The function and argument
  95.      * for the timer have been setup in init_module()
  96.      */
  97.     if (!dev->usage) {
  98.         dev->timer.expires = jiffies + 30 * HZ;
  99.         add_timer(&dev->timer);
  100.         /* but flush it right now */
  101.         fsync_dev(inode->i_rdev);
  102.         invalidate_buffers(inode->i_rdev);
  103.     }
  104.     MOD_DEC_USE_COUNT;
  105.     release_return(0);
  106. }
  107. /*
  108.  * The timer function. As argument it receives the device
  109.  */
  110. void sbull_expires(unsigned long data)
  111. {
  112.     Sbull_Dev *dev = (Sbull_Dev *)data;
  113.     if (dev->usage || !dev->data) {
  114.         printk(KERN_WARNING "sbull: timer mismatch for device %in",
  115.                dev - sbull_devices);
  116.         return;
  117.     }
  118.     PDEBUG("freeing device %in",dev - sbull_devices);
  119.     vfree(dev->data);
  120.     dev->data=0;
  121.     return;
  122. }    
  123. /*
  124.  * The ioctl() implementation
  125.  */
  126. int sbull_ioctl (struct inode *inode, struct file *filp,
  127.                  unsigned int cmd, unsigned long arg)
  128. {
  129.     int err, size;
  130.     struct hd_geometry *geo = (struct hd_geometry *)arg;
  131.     PDEBUG("ioctl 0x%x 0x%lxn", cmd, arg);
  132.     switch(cmd) {
  133.       case BLKGETSIZE:
  134.         /* Return the device size, expressed in sectors */
  135.         if (!arg) return -EINVAL; /* NULL pointer: not valid */
  136.         err=verify_area_20(VERIFY_WRITE, (long *) arg, sizeof(long));
  137.         if (err) return err;
  138.         PUT_USER_RET ( 1024* sbull_sizes[MINOR(inode->i_rdev)]
  139.                    / sbull_hardsects[MINOR(inode->i_rdev)],
  140.                      (long *) arg, -EFAULT);
  141.         return 0;
  142.       case BLKFLSBUF: /* flush */
  143.         if (!suser()) return -EACCES; /* only root */
  144.         fsync_dev(inode->i_rdev);
  145.         invalidate_buffers(inode->i_rdev);
  146.         return 0;
  147.       case BLKRAGET: /* return the readahead value */
  148.         if (!arg)  return -EINVAL;
  149.         err = verify_area_20(VERIFY_WRITE, (long *) arg, sizeof(long));
  150.         if (err) return err;
  151.         PUT_USER_RET(read_ahead[MAJOR(inode->i_rdev)], (long *)arg, -EFAULT);
  152.         return 0;
  153.       case BLKRASET: /* set the readahead value */
  154.         if (!suser()) return -EACCES;
  155.         if (arg > 0xff) return -EINVAL; /* limit it */
  156.         read_ahead[MAJOR(inode->i_rdev)] = arg;
  157.         return 0;
  158.       case BLKRRPART: /* re-read partition table: can't do it */
  159.         return -EINVAL;
  160.       RO_IOCTLS(inode->i_rdev, arg); /* the default RO operations */
  161.       case HDIO_GETGEO:
  162.         /*
  163.          * get geometry: we have to fake one...  trim the size to a
  164.          * multiple of 64 (32k): tell we have 16 sectors, 4 heads,
  165.          * whatever cylinders. Tell also that data starts at sector. 4.
  166.          */
  167.         size = sbull_size * 1024 / sbull_hardsect;
  168.         size &= ~0x3f; /* multiple of 64 */
  169.         if (geo==NULL) return -EINVAL;
  170.         err = verify_area_20(VERIFY_WRITE, geo, sizeof(*geo));
  171.         if (err) return err;
  172.         PUT_USER_RET(size >> 6, &geo->cylinders, -EFAULT);
  173.         PUT_USER_RET(        4, &geo->heads,     -EFAULT);
  174.         PUT_USER_RET(       16, &geo->sectors,   -EFAULT);
  175.         PUT_USER_RET(        4, &geo->start,     -EFAULT);
  176.         return 0;
  177.     }
  178.     return -EINVAL; /* unknown command */
  179. }
  180. /*
  181.  * Support for removable devices
  182.  */
  183. int sbull_check_change(kdev_t i_rdev)
  184. {
  185.     int minor = MINOR(i_rdev);
  186.     Sbull_Dev *dev = sbull_devices + minor;
  187.     if (minor >= sbull_devs) /* paranoid */
  188.         return 0;
  189.     PDEBUG("check_change for dev %in",minor);
  190.     if (dev->data)
  191.         return 0; /* still valid */
  192.     return 1; /* expired */
  193. }
  194. int sbull_revalidate(kdev_t i_rdev)
  195. {
  196.     Sbull_Dev *dev = sbull_devices + MINOR(i_rdev);
  197.     PDEBUG("revalidate for dev %in",MINOR(i_rdev));
  198.     if (dev->data)
  199.         return 0;
  200.     dev->data = vmalloc(dev->size);
  201.     if (!dev->data)
  202.         return -ENOMEM;
  203.     return 0;
  204. }
  205. /*
  206.  * The file operations
  207.  */
  208. struct file_operations sbull_fops = {
  209.     NULL,          /* lseek: default */
  210.     block_read,
  211.     block_write,
  212.     NULL,          /* sbull_readdir */
  213.     NULL,          /* sbull_select */
  214.     sbull_ioctl,
  215.     NULL,          /* sbull_mmap */
  216.     sbull_open,
  217.     sbull_release,
  218.     block_fsync,
  219.     NULL,          /* sbull_fasync */
  220.     sbull_check_change,
  221.     sbull_revalidate
  222. };
  223. /*
  224.  * Block-driver specific functions
  225.  */
  226. #ifdef SBULL_EMPTY_REQUEST
  227. /*
  228.  * This empty request function just prints the interesting items
  229.  * of the current request. The sectors affected by the request
  230.  * are printed as <first-sector>-<number-of-sectors>.
  231.  */
  232. void sbull_request(void)
  233. {
  234.     while(1) {
  235.         INIT_REQUEST;
  236.         printk("request %p: cmd %i sec %li (nr. %li), next %pn", CURRENT,
  237.                CURRENT->cmd,
  238.                CURRENT->sector,
  239.                CURRENT->current_nr_sectors,
  240.                CURRENT->next);
  241.         end_request(1); /* success */
  242.     }
  243. }
  244. #else
  245. void sbull_request(void)
  246. {
  247.     Sbull_Dev *device;
  248.     u8 *ptr;
  249.     int size;
  250.     while(1) {
  251.         INIT_REQUEST;
  252.         /* Check if the minor number is in range */
  253.         if (DEVICE_NR(CURRENT_DEV) > sbull_devs) {
  254.             static int count = 0;
  255.             if (count++ < 5) /* print the message at most five times */
  256.                 printk(KERN_WARNING "sbull: request for unknown devicen");
  257.             end_request(0);
  258.             continue;
  259.         }
  260.         /* pointer to device structure, from the global array */
  261.         device = sbull_devices + DEVICE_NR(CURRENT_DEV);
  262.         ptr = device->data + CURRENT->sector * sbull_hardsect;
  263.         size = CURRENT->current_nr_sectors * sbull_hardsect;
  264.         if (ptr + size > device->data + sbull_blksize*sbull_size) {
  265.             static int count = 0;
  266.             if (count++ < 5)
  267.                 printk(KERN_WARNING "sbull: request past end of devicen");
  268.             end_request(0);
  269.             continue;
  270.         }
  271.         switch(CURRENT->cmd) {
  272.           case READ:
  273.             memcpy(CURRENT->buffer, ptr, size); /* from sbull to buffer */
  274.             break;
  275.           case WRITE:
  276.             memcpy(ptr, CURRENT->buffer, size); /* from buffer to sbull */
  277.             break;
  278.           default:
  279.             /* can't happen */
  280.             end_request(0);
  281.             continue;
  282.         }
  283.         end_request(1); /* success */
  284.     }
  285. }
  286. #endif /* SBULL_EMPTY_REQUEST */
  287. /*
  288.  * Finally, the module stuff
  289.  */
  290. int init_module(void)
  291. {
  292.     int result, i;
  293.     /*
  294.      * Copy the (static) cfg variables to public prefixed ones to allow
  295.      * snoozing with a debugger.
  296.      */
  297.     sbull_major    = major;
  298.     sbull_devs     = devs;
  299.     sbull_rahead   = rahead;
  300.     sbull_size     = size;
  301.     sbull_blksize  = blksize;
  302.     sbull_hardsect = hardsect;
  303.     /* Hardsect can't be changed :( */
  304.     if (hardsect != 512) {
  305.         printk(KERN_ERR "sbull: can't change hardsect sizen");
  306.         hardsect = sbull_hardsect = 512;
  307.     }
  308.     /*
  309.      * Register your major, and accept a dynamic number
  310.      */
  311.     result = register_blkdev(sbull_major, "sbull", &sbull_fops);
  312.     if (result < 0) {
  313.         printk(KERN_WARNING "sbull: can't get major %dn",sbull_major);
  314.         return result;
  315.     }
  316.     if (sbull_major == 0) sbull_major = result; /* dynamic */
  317.     major = sbull_major; /* Use `major' later on to save typing */
  318.     /*
  319.      * Assign the other needed values: request, rahead, size, blksize,
  320.      * hardsect. All the minor devices feature the same value.
  321.      * Note that `sbull' defines all of them to allow testing non-default
  322.      * values. A real device could well avoid setting values in global
  323.      * arrays if it uses the default values.
  324.      */
  325.     blk_dev[major].request_fn = sbull_request;
  326.     read_ahead[major] = sbull_rahead;
  327.     result = -ENOMEM; /* for the possible errors */
  328.     sbull_sizes = kmalloc(sbull_devs * sizeof(int), GFP_KERNEL);
  329.     if (!sbull_sizes)
  330.         goto fail_malloc;
  331.     for (i=0; i < sbull_devs; i++) /* all the same size */
  332.         sbull_sizes[i] = sbull_size;
  333.     blk_size[major]=sbull_sizes;
  334.     sbull_blksizes = kmalloc(sbull_devs * sizeof(int), GFP_KERNEL);
  335.     if (!sbull_blksizes)
  336.         goto fail_malloc;
  337.     for (i=0; i < sbull_devs; i++) /* all the same blocksize */
  338.         sbull_blksizes[i] = sbull_blksize;
  339.     blksize_size[major]=sbull_blksizes;
  340.     sbull_hardsects = kmalloc(sbull_devs * sizeof(int), GFP_KERNEL);
  341.     if (!sbull_hardsects)
  342.         goto fail_malloc;
  343.     for (i=0; i < sbull_devs; i++) /* all the same hardsect */
  344.         sbull_hardsects[i] = sbull_hardsect;
  345.     hardsect_size[major]=sbull_hardsects;
  346.     
  347.     /* 
  348.      * allocate the devices -- we can't have them static, as the number
  349.      * can be specified at load time
  350.      */
  351.     sbull_devices = kmalloc(sbull_devs * sizeof (Sbull_Dev), GFP_KERNEL);
  352.     if (!sbull_devices)
  353.         goto fail_malloc;
  354.     memset(sbull_devices, 0, sbull_devs * sizeof (Sbull_Dev));
  355.     for (i=0; i < sbull_devs; i++) {
  356.         /* data and usage remain zeroed */
  357.         sbull_devices[i].size = 1024 * sbull_size;
  358.         init_timer(&(sbull_devices[i].timer));
  359.         sbull_devices[i].timer.data = (unsigned long)(sbull_devices+i);
  360.         sbull_devices[i].timer.function = sbull_expires;
  361.     }
  362. #ifndef SBULL_DEBUG
  363.     REGISTER_SYMTAB(NULL); /* otherwise, leave global symbols visible */
  364. #endif
  365.     return 0; /* succeed */
  366.   fail_malloc:
  367.     read_ahead[major] = 0;
  368.     if (sbull_sizes) kfree(sbull_sizes);
  369.     blk_size[major] = NULL;
  370.     if (sbull_blksizes) kfree(sbull_blksizes);
  371.     blksize_size[major] = NULL;
  372.     if (sbull_hardsects) kfree(sbull_hardsects);
  373.     hardsect_size[major] = NULL;
  374.     if (sbull_devices) kfree(sbull_devices);
  375.     unregister_chrdev(major, "sbull");
  376.     return result;
  377. }
  378. void cleanup_module(void)
  379. {
  380.     int i;
  381.     /* first of all, flush it all and reset all the data structures */
  382.     for (i=0; i<sbull_devs; i++)
  383.         fsync_dev(MKDEV(sbull_major, i)); /* flush the devices */
  384.     blk_dev[major].request_fn = NULL;
  385.     read_ahead[major] = 0;
  386.     kfree(blk_size[major]);
  387.     blk_size[major] = NULL;
  388.     kfree(blksize_size[major]);
  389.     blksize_size[major] = NULL;
  390.     kfree(hardsect_size[major]);
  391.     hardsect_size[major] = NULL;
  392.     /* finally, the usual cleanup */
  393.     unregister_blkdev(major, "sbull");
  394.     for (i=0; i < sbull_devs; i++) {
  395.         if (sbull_devices[i].data)
  396.             vfree(sbull_devices[i].data);
  397.         del_timer(&sbull_devices[i].timer);
  398.     }
  399.     kfree(sbull_devices);
  400. }