如何在Linux内核模块中使用seq_file? [英] How to use a seq_file in Linux kernel modules?

查看:84
本文介绍了如何在Linux内核模块中使用seq_file?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,我是Linux新手,想知道如何在模块中使用Linux序列文件来遍历内核对象.

Hello all I'm new to Linux and wondering how to use a Linux sequence file in a module to traverse kernel objects.

我知道我可以使用以下命令:

What I know is I can use the command:

 cat /proc/kallsyms

要查看可用的符号,以及我在Google上所读到的内容,列表中具有'D'或'd'的符号是指向数据结构的指针.

to view the available symbols and from what I've read on google, the symbols in the list that have a 'D' or 'd' are pointers to data structures.

尽管我知道如何创建模块的基础知识,但互联网上有关如何使用seq操作的示例并不统一,我有些困惑.

Though I know the basics of how to create a module, the examples on the internet on how to use seq operations are not uniform and I'm getting a little confused.

如果有人知道有什么好的doco可以帮助我理解如何创建seq文件来遍历内核对象并可以发布链接(或简单的示例),我将不胜感激.

If someone knows of any good doco that will help me understand how to create a seq file to traverse kernel objects and could post a link (or a quick example), I would be greatly appreciative.

推荐答案

最小的可运行示例

内核文档在 Documentation/下包含一个示例filesystems/seq_file.txt ,但这是具有循环终止功能的可运行版本.

The kernel docs contain an example under Documentation/filesystems/seq_file.txt, but here is a runnable version of that with loop termination.

此示例的行为类似于包含以下内容的文件:

This example is behaves just like a file that contains:

0
1
2

但是,我们只在内存中存储一​​个整数 并以迭代器的方式即时计算文件.

However, we only store a single integer in memory and calculate the file on the fly in an iterator fashion.

该文件可用于readlseek系统调用,但没有等效的write系统调用: 如何通过在驱动程序模块中使用seq_file来实现可写的proc文件

The file works for both read and lseek system calls, but there is no write system call equivalent: How to implement a writable proc file by using seq_file in a driver module

在文件中使用catdd skip=进行查找.

Play around with the file with cat and dd skip= for the seeks.

#include <asm/uaccess.h> /* copy_from_user, copy_to_user */
#include <linux/debugfs.h>
#include <linux/errno.h> /* EFAULT */
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/printk.h> /* pr_info */
#include <linux/seq_file.h> /* seq_read, seq_lseek, single_release */
#include <linux/slab.h>
#include <uapi/linux/stat.h> /* S_IRUSR */

MODULE_LICENSE("GPL");

static int max = 2;
module_param(max, int, S_IRUSR | S_IWUSR);

static struct dentry *debugfs_file;

/* Called at the beginning of every read.
 *
 * The return value is passsed to the first show.
 * It normally represents the current position of the iterator.
 * It could be any struct, but we use just a single integer here.
 *
 * NULL return means stop should be called next, and so the read will be empty..
 * This happens for example for an ftell that goes beyond the file size.
 */
static void *start(struct seq_file *s, loff_t *pos)
{
    loff_t *spos;

    pr_info("start pos = %llx\n", (unsigned long long)*pos);
    spos = kmalloc(sizeof(loff_t), GFP_KERNEL);
    if (!spos || *pos >= max)
        return NULL;
    *spos = *pos;
    return spos;
}

/* The return value is passed to next show.
 * If NULL, stop is called next instead of show, and read ends.
 *
 * Can get called multiple times, until enough data is returned for the read.
 */
static void *next(struct seq_file *s, void *v, loff_t *pos)
{
    loff_t *spos;

    spos = v;
    pr_info("next pos = %llx\n", (unsigned long long)*pos);
    if (*pos >= max)
        return NULL;
    *pos = ++*spos;
    return spos;
}

/* Called at the end of every read. */
static void stop(struct seq_file *s, void *v)
{
    pr_info("stop\n");
    kfree(v);
}

/* Return 0 means success, SEQ_SKIP ignores previous prints, negative for error. */
static int show(struct seq_file *s, void *v)
{
    loff_t *spos;

    spos = v;
    pr_info("show pos = %llx\n", (unsigned long long)*spos);
    seq_printf(s, "%llx\n", (long long unsigned)*spos);
    return 0;
}

static struct seq_operations my_seq_ops = {
    .next  = next,
    .show  = show,
    .start = start,
    .stop  = stop,
};

static int open(struct inode *inode, struct file *file)
{
    pr_info("open\n");
    return seq_open(file, &my_seq_ops);
}

static struct file_operations fops = {
    .owner   = THIS_MODULE,
    .llseek  = seq_lseek,
    .open    = open,
    .read    = seq_read,
    .release = seq_release
};

static int myinit(void)
{
    debugfs_file = debugfs_create_file(
        "lkmc_seq_file", S_IRUSR, NULL, NULL, &fops);
    if (debugfs_file) {
        return 0;
    } else {
        return -EINVAL;
    }
}

static void myexit(void)
{
    debugfs_remove(debugfs_file);
}

module_init(myinit)
module_exit(myexit)

GitHub上游.

请注意seq_file API如何使编写read文件操作变得更加容易.

Note how the seq_file API makes it much easier to write the read file operation.

single_open

single_open

如果您具有整个读取输出的前期内容,则single_open是seq_file的一个更方便的版本.

If you have the entire read output upfront, single_open is an even more convenient version of seq_file.

此示例的行为类似于包含以下内容的文件:

This example behaves like a file that contains:

ab
cd

代码:

#include <asm/uaccess.h> /* copy_from_user, copy_to_user */
#include <linux/debugfs.h>
#include <linux/errno.h> /* EFAULT */
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/printk.h> /* pr_info */
#include <linux/seq_file.h> /* seq_read, seq_lseek, single_release */
#include <uapi/linux/stat.h> /* S_IRUSR */

MODULE_LICENSE("GPL");

static struct dentry *debugfs_file;

static int show(struct seq_file *m, void *v)
{
    seq_printf(m, "ab\ncd\n");
    return 0;
}

static int open(struct inode *inode, struct  file *file)
{
    return single_open(file, show, NULL);
}

static const struct file_operations fops = {
    .llseek = seq_lseek,
    .open = open,
    .owner = THIS_MODULE,
    .read = seq_read,
    .release = single_release,
};

static int myinit(void)
{
    debugfs_file = debugfs_create_file(
        "lkmc_seq_file_single", S_IRUSR, NULL, NULL, &fops);
    if (debugfs_file) {
        return 0;
    } else {
        return -EINVAL;
    }
}

static void myexit(void)
{
    debugfs_remove(debugfs_file);
}

module_init(myinit)
module_exit(myexit)

GitHub上游.

这篇关于如何在Linux内核模块中使用seq_file?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆