-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdyndbg.c
61 lines (50 loc) · 1.32 KB
/
dyndbg.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <linux/module.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
#include <linux/poll.h>
#include <linux/errno.h>
#define MEM_SIZE 1024 //Memory Size
uint8_t *kernel_buffer;
static ssize_t hello_read(struct file *file, char __user *buf,
size_t count, loff_t *ppos)
{
//Copy the data from the kernel space to the user-space
copy_to_user(buf, kernel_buffer, MEM_SIZE);
pr_debug("Data Read : Done!\n");
return MEM_SIZE;
}
static ssize_t hello_write(struct file *file, char const __user *buf,
size_t count, loff_t *ppos)
{
//Copy the data to kernel space from the user-space
pr_debug("Data Write : Done!\n");
copy_from_user(kernel_buffer, buf, count);
return count;
}
static const struct file_operations hello_fops = {
.owner = THIS_MODULE,
.read = hello_read,
.write = hello_write,
};
static struct miscdevice hello_dev = {
MISC_DYNAMIC_MINOR,
"dyndbg",
&hello_fops
};
static int __init hello_init(void)
{
int ret;
ret = misc_register(&hello_dev);
pr_info("Hello World!\n");
return ret;
}
static void __exit hello_exit(void)
{
pr_info("Bye World!\n");
misc_deregister(&hello_dev);
}
module_init(hello_init);
module_exit(hello_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("smalinux <[email protected]>");
MODULE_DESCRIPTION("dyndbg");