mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-28 12:34:26 +01:00
mmap gets called, now lets make it actually work
This commit is contained in:
@@ -6,6 +6,11 @@ Usage:
|
|||||||
/debugfs.sh
|
/debugfs.sh
|
||||||
|
|
||||||
Requires `CONFIG_DEBUG_FS=y`.
|
Requires `CONFIG_DEBUG_FS=y`.
|
||||||
|
|
||||||
|
Only the more basic fops can be implemented in debugfs, e.g. mmap is never called:
|
||||||
|
|
||||||
|
- https://patchwork.kernel.org/patch/9252557/
|
||||||
|
- https://github.com/torvalds/linux/blob/v4.9/fs/debugfs/file.c#L212
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/debugfs.h>
|
#include <linux/debugfs.h>
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
/* TODO neither works, mmap never gets called. */
|
/*
|
||||||
|
Remember: mmap does not work with debugfs as of 4.9!
|
||||||
|
*/
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
@@ -122,7 +124,9 @@ module_init(myinit);
|
|||||||
module_exit(myexit);
|
module_exit(myexit);
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
#endif
|
|
||||||
|
/*minimized debugfs*/
|
||||||
|
|
||||||
|
|
||||||
#include <linux/debugfs.h>
|
#include <linux/debugfs.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
@@ -133,8 +137,9 @@ MODULE_LICENSE("GPL");
|
|||||||
|
|
||||||
static struct dentry *debugfs_file;
|
static struct dentry *debugfs_file;
|
||||||
|
|
||||||
static int map_mmap(struct file *filp, struct vm_area_struct *vma)
|
static int mmap(struct file *filp, struct vm_area_struct *vma)
|
||||||
{
|
{
|
||||||
|
pr_info("mmap\n");
|
||||||
if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
|
if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
|
||||||
vma->vm_end - vma->vm_start, vma->vm_page_prot)) {
|
vma->vm_end - vma->vm_start, vma->vm_page_prot)) {
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
@@ -146,7 +151,7 @@ struct file_operations fops =
|
|||||||
{
|
{
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = nonseekable_open,
|
.open = nonseekable_open,
|
||||||
.mmap = map_mmap
|
.mmap = mmap
|
||||||
};
|
};
|
||||||
|
|
||||||
static int myinit(void)
|
static int myinit(void)
|
||||||
@@ -163,3 +168,90 @@ static void myexit(void)
|
|||||||
module_init(myinit);
|
module_init(myinit);
|
||||||
module_exit(myexit);
|
module_exit(myexit);
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
|
/*working chardev*/
|
||||||
|
|
||||||
|
#include <linux/debugfs.h>
|
||||||
|
#include <linux/kernel.h>
|
||||||
|
#include <linux/module.h>
|
||||||
|
#include <linux/init.h>
|
||||||
|
#include <linux/fs.h>
|
||||||
|
#include <linux/mm.h>
|
||||||
|
|
||||||
|
#define NAME "lkmc_mmap"
|
||||||
|
|
||||||
|
static int major;
|
||||||
|
|
||||||
|
static int mmap(struct file *filp, struct vm_area_struct *vma)
|
||||||
|
{
|
||||||
|
pr_info("mmap\n");
|
||||||
|
if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
|
||||||
|
vma->vm_end - vma->vm_start, vma->vm_page_prot)) {
|
||||||
|
return -EAGAIN;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct file_operations fops =
|
||||||
|
{
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = nonseekable_open,
|
||||||
|
.mmap = mmap
|
||||||
|
};
|
||||||
|
|
||||||
|
static int myinit(void)
|
||||||
|
{
|
||||||
|
major = register_chrdev(0, NAME, &fops);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void myexit(void)
|
||||||
|
{
|
||||||
|
unregister_chrdev(major, NAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
module_init(myinit)
|
||||||
|
module_exit(myexit)
|
||||||
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* proc attempt */
|
||||||
|
|
||||||
|
#include <linux/debugfs.h>
|
||||||
|
#include <linux/kernel.h>
|
||||||
|
#include <linux/module.h>
|
||||||
|
#include <linux/init.h>
|
||||||
|
#include <linux/fs.h>
|
||||||
|
#include <linux/mm.h>
|
||||||
|
#include <linux/proc_fs.h>
|
||||||
|
|
||||||
|
static const char *filename = "lkmc_procfs";
|
||||||
|
|
||||||
|
static int mmap(struct file *filp, struct vm_area_struct *vma)
|
||||||
|
{
|
||||||
|
pr_info("mmap\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct file_operations fops =
|
||||||
|
{
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = nonseekable_open,
|
||||||
|
.mmap = mmap
|
||||||
|
};
|
||||||
|
|
||||||
|
static int myinit(void)
|
||||||
|
{
|
||||||
|
proc_create(filename, 0, NULL, &fops);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void myexit(void)
|
||||||
|
{
|
||||||
|
remove_proc_entry(filename, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
module_init(myinit)
|
||||||
|
module_exit(myexit)
|
||||||
|
MODULE_LICENSE("GPL");
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ int main(int argc, char **argv)
|
|||||||
printf("Usage: %s <mmap_file>\n", argv[0]);
|
printf("Usage: %s <mmap_file>\n", argv[0]);
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
printf("open pathname = %s\n", argv[1]);
|
||||||
fd = open(argv[1], O_RDWR | O_SYNC);
|
fd = open(argv[1], O_RDWR | O_SYNC);
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
perror("open");
|
perror("open");
|
||||||
|
|||||||
Reference in New Issue
Block a user