我正在尝试为linux内核开发一个新的系统调用。该系统调用将在用作参数的用户缓冲区上写入信息,例如:
asmlinkage int new_syscall(..., char *buffer,...){...}
在用户空间中,此缓冲区静态分配为:
char buffer[10000];
有一种方法(如用户级别的sizeof())知道整个缓冲区大小(在这种情况下为10000)?
我已经尝试了strlen_user(buffer)
,但它返回了当前进入缓冲区的字符串的长度,因此如果缓冲区为空,则返回0.
答案 0 :(得分:0)
您可以尝试传递包含缓冲区指针和结构的结构。缓冲区的大小。但是同样的结构也应该在用户空间应用和定义中定义。在你的系统调用内核中的代码。
struct new_struct
{
void *p; //set this pointer to your buffer...
int size;
};
//from user-application...
int main()
{
....
struct new_struct req_kernel;
your_system_call_function(...,(void *)&req_kernel,...);
}
........................................................................................
//this is inside your kernel...
your_system_call(...,char __user optval,...)
{
.....
struct new_struct req;
if (copy_from_user(&req, optval, sizeof(req)))
return -EFAULT;
//now you have the address or pointer & size of the buffer
//which you want in kernel with struct req...
}