Allocate buffer when opening and added release function.
[cascardo/kernel/samples/char2/.git] / hellochar.c
1 /*
2  *  Copyright (C) 2010  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <linux/module.h>
20 #include <linux/fs.h>
21 #include <linux/cdev.h>
22 #include <linux/slab.h>
23
24 MODULE_LICENSE("GPL");
25
26 static dev_t devnum;
27 static struct cdev *dev;
28 static const char default_greeting[] = "Hello, World!\n";
29
30 struct hello_buffer {
31         size_t len;
32         char buffer[0];
33 };
34
35 static int hello_open(struct inode *ino, struct file *fp)
36 {
37         struct hello_buffer *hello = kmalloc(sizeof(*hello) + 4000, GFP_KERNEL);
38         if (!hello)
39                 return -ENOMEM;
40         hello->private_data = hello;
41         return 0;
42 }
43
44 static ssize_t hello_read(struct file *fp, char __user *buf, size_t sz,
45         loff_t *pos)
46 {
47         return 0;
48 }
49
50 static int hello_release(struct inode *ino, struct file *fp)
51 {
52         kfree(fp->private_data);
53         return 0;
54 }
55
56 static const struct file_operations hello_fops = {
57         .owner = THIS_MODULE,
58         .open = hello_open,
59         .release = hello_release,
60         .read = hello_read,
61 };
62
63 static int __init ch_init(void)
64 {
65         int r = 0;
66         r = alloc_chrdev_region(&devnum, 0, 256, "hello");
67         if (r)
68                 goto out;
69         dev = cdev_alloc();
70         if (!dev) {
71                 r = -ENOMEM;
72                 goto cdev_out;
73         }
74         dev->ops = &hello_fops;
75         r = cdev_add(dev, devnum, 256);
76         if (r)
77                 goto add_out;
78         printk(KERN_DEBUG "Allocate major %d\n", MAJOR(devnum));
79         return 0;
80 add_out:
81         kfree(dev);
82 cdev_out:
83         unregister_chrdev_region(devnum, 256);
84 out:
85         return r;
86 }
87
88 static void __exit ch_exit(void)
89 {
90         cdev_del(dev);
91         unregister_chrdev_region(devnum, 256);
92 }
93
94 module_init(ch_init);
95 module_exit(ch_exit);