- 论坛徽章:
- 0
|
写个键盘记录 想把消息写到用户态
static struct file *file = NULL;
void write_to_file(char *filename, char *code)
{
mm_segment_t old_fs;
if (file == NULL)
file = filp_open(filename, O_RDWR | O_APPEND | O_CREAT, 0644);
if (IS_ERR(file)) {
printk(KERN_ALERT "Cannot open %s\n", file);
return;
}
old_fs = get_fs();
set_fs(KERNEL_DS);
file->f_op->write(file, code, strlen(code), &file->f_pos);
set_fs(old_fs);
}
用了这个后,然后疯狂出现:
Process swapper (pid: 0,ti=c094e000 task=c097ce0 task.ti=c094e000)
查 System.map c094e000 D init_thread_union |
|