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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * faulty.c -- a module which generates an oops when read
  3.  * $Id: faulty.c,v 1.13 2001/03/16 21:04:49 rubini Exp $
  4.  */
  5. #ifndef __KERNEL__
  6. #  define __KERNEL__
  7. #endif
  8. #ifndef MODULE
  9. #  define MODULE
  10. #endif
  11. #include <linux/config.h>
  12. #include <linux/module.h>
  13. #include <linux/kernel.h> /* printk() */
  14. #include <linux/sched.h> /* printk() */
  15. #include <linux/fs.h>     /* everything... */
  16. #include <linux/types.h>  /* size_t */
  17. #include "sysdep.h" /* linux 2.0, 2.2, 2.4 compatibility macros */
  18. int faulty_major=0;
  19. char faulty_buf[1024];
  20. ssize_t faulty_read (struct file *filp, char *buf, size_t count, loff_t *pos)
  21. {
  22.     int ret, ret2;
  23.     char stack_buf[4];
  24.     printk(KERN_DEBUG "read: buf %p, count %lin", buf, (long)count);
  25.     /* the next line oopses with 2.0, but not with 2.2 and later */
  26.     ret = copy_to_user(buf, faulty_buf, count);
  27.     if (!ret) return count; /* we survived */
  28.     printk(KERN_DEBUG "didn't fail: retryn");
  29.     /* For 2.2 and 2.4, let's try a buffer overflow  */
  30.     sprintf(stack_buf, "1234567n");
  31.     if (count > 8) count = 8; /* copy 8 bytes to the user */
  32.     ret2 = copy_to_user(buf, stack_buf, count);
  33.     if (!ret2) return count;
  34.     return ret2;
  35. }
  36. ssize_t faulty_write (struct file *filp, const char *buf, size_t count,
  37. loff_t *pos)
  38. {
  39.     /* make a simple fault by dereferencing a NULL pointer */
  40.     *(int *)0 = 0;
  41.     return 0;
  42. }
  43. #ifdef LINUX_20 /* wrappers for 2.0 */
  44. int faulty_read_20 (struct inode *ino, struct file *f, char *buf, int count)
  45. {
  46.     return (int)faulty_read(f, buf, count, &f->f_pos);
  47. }
  48. int faulty_write_20 (struct inode *ino, struct file *f, const char *b, int c)
  49. {
  50.     return (int)faulty_write(f, b, c, &f->f_pos);
  51. }
  52. #define faulty_read faulty_read_20
  53. #define faulty_write faulty_write_20
  54. #endif  /* LINUX_20 */
  55. struct file_operations faulty_fops = {
  56.     read:  faulty_read,
  57.     write: faulty_write,
  58. };
  59. int faulty_init(void)
  60. {
  61.     int result;
  62.     /*
  63.      * Register your major, and accept a dynamic number
  64.      */
  65.     SET_MODULE_OWNER(&faulty_fops);
  66.     result = register_chrdev(faulty_major, "faulty", &faulty_fops);
  67.     if (result < 0) return result;
  68.     if (faulty_major == 0) faulty_major = result; /* dynamic */
  69.     return 0;
  70. }
  71. void faulty_cleanup(void)
  72. {
  73.     unregister_chrdev(faulty_major, "faulty");
  74. }
  75. module_init(faulty_init);
  76. module_exit(faulty_cleanup);