Check truncate and append flags.
[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 #include <asm/uaccess.h>
24
25 MODULE_LICENSE("GPL");
26
27 #define MAXLEN 4000
28 static dev_t devnum;
29 static struct cdev *dev;
30 static const char default_greeting[] = "Hello, World!\n";
31
32 struct hello_buffer {
33         size_t len;
34         char buffer[0];
35 };
36 struct hello_buffer *hello;
37
38 static int hello_open(struct inode *ino, struct file *fp)
39 {
40         if (fp->f_flags & O_TRUNC) {
41                 memset(hello->buffer, 0, MAXLEN);
42                 hello->len = 0;
43         }
44         if (fp->f_flags & O_APPEND)
45                 fp->f_pos = hello->len;
46         return 0;
47 }
48
49 static ssize_t hello_read(struct file *fp, char __user *buf, size_t sz,
50         loff_t *pos)
51 {
52         int r;
53         if (sz + *pos > hello->len)
54                 sz = hello->len - *pos;
55         r = copy_to_user(buf, hello->buffer + *pos, sz);
56         if (r)
57                 return -EFAULT;
58         *pos += sz;
59         return sz;
60 }
61
62 static ssize_t hello_write(struct file *fp, const char __user *buf, size_t sz,
63         loff_t *pos)
64 {
65         int r;
66         if (sz + *pos > MAXLEN)
67                 sz = MAXLEN - *pos;
68         r = copy_from_user(hello->buffer + *pos, buf, sz);
69         if (r)
70                 return -EFAULT;
71         *pos += sz;
72         if (hello->len < *pos)
73                 hello->len = *pos;
74         return sz;
75 }
76
77 static int hello_release(struct inode *ino, struct file *fp)
78 {
79         return 0;
80 }
81
82 static const struct file_operations hello_fops = {
83         .owner = THIS_MODULE,
84         .open = hello_open,
85         .release = hello_release,
86         .read = hello_read,
87         .write = hello_write,
88 };
89
90 static int __init ch_init(void)
91 {
92         int r = 0;
93         hello = kzalloc(sizeof(*hello) + MAXLEN, GFP_KERNEL);
94         if (!hello) {
95                 r = -ENOMEM;
96                 goto out;
97         }
98         memcpy(hello->buffer, default_greeting, sizeof(default_greeting));
99         hello->len = sizeof(default_greeting);
100         r = alloc_chrdev_region(&devnum, 0, 256, "hello");
101         if (r)
102                 goto reg_out;
103         dev = cdev_alloc();
104         if (!dev) {
105                 r = -ENOMEM;
106                 goto cdev_out;
107         }
108         dev->ops = &hello_fops;
109         r = cdev_add(dev, devnum, 256);
110         if (r)
111                 goto add_out;
112         printk(KERN_DEBUG "Allocate major %d\n", MAJOR(devnum));
113         return 0;
114 add_out:
115         kfree(dev);
116 cdev_out:
117         unregister_chrdev_region(devnum, 256);
118 reg_out:
119         kfree(hello);
120 out:
121         return r;
122 }
123
124 static void __exit ch_exit(void)
125 {
126         cdev_del(dev);
127         unregister_chrdev_region(devnum, 256);
128         kfree(hello);
129 }
130
131 module_init(ch_init);
132 module_exit(ch_exit);