私はこのリンク ( http://www.spinics.net/lists/newbies/msg41016.html ) を見つけ、それを行うことを検討しています。そこで、カーネル モジュールにコードを書きました。
#include <linux/path.h>
#include <linux/namei.h>
#include <linux/fs.h>
struct path p;
struct kstat ks;
kern_path(filepath, 0, &p);
vfs_getattr(&p, &ks);
printk(KERN_INFO "size: %lld\n", ks.size);
次の理由でコンパイルされません。
/root/kernelmodule/hello.c:15: warning: passing argument 1 of ‘vfs_getattr’ from incompatible pointer type
include/linux/fs.h:2563: note: expected ‘struct vfsmount *’ but argument is of type ‘struct path *’
/root/kernelmodule/hello.c:15: warning: passing argument 2 of ‘vfs_getattr’ from incompatible pointer type
include/linux/fs.h:2563: note: expected ‘struct dentry *’ but argument is of type ‘struct kstat *’
/root/kernelmodule/hello.c:15: error: too few arguments to function ‘vfs_getattr’
このドキュメントを見ていたので、本当に混乱しています: http://lxr.free-electrons.com/source/fs/stat.c#L40
そして今、/linux/fs.h の中に vfs_getattr のプロトタイプがあることがわかります:
extern int vfs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
誰かが私の実装を手伝ってくれますか? vfsmount と dentry を読み込んでいますが、まだ失われています。