GNU/Linux - copy_{to,from}_user: 用户和内核空间的内存互拷贝

copy_{to,from}_user 函数是 Linux 内核编程的基本组成部分。它用于将数据从用户空间复制到内核空间。在编写内核模块或使用设备驱动程序时,安全地处理用户空间和内核空间之间的数据传输对防止安全漏洞和确保系统稳定至关重要。

The copy_{to,from}_user function is a fundamental part of Linux kernel programming. It is used to copy data from user space to kernel space. When writing kernel modules or working with device drivers, it's crucial to safely handle the data transfer between user space and kernel space to prevent security vulnerabilities and ensure system stability.

在内核编程中,正确使用 copy_{to,from}user(复制{to,from}_用户)对于维护系统稳定性和安全性至关重要。请始终遵循最佳实践并彻底测试您的代码。

Using copy_{to,from}_user correctly is critical in kernel programming to maintain system stability and security. Always follow best practices and thoroughly test your code.

这些函数是一系列 API 的一部分,旨在促进用户空间与内核空间之间安全可靠的数据传输。

These functions are part of a set of APIs designed to facilitate safe and secure data transfers between user space and kernel space.

在修改内核代码或编写内核模块时,要使用这两个函数的话,要包含头文件。" #include <linux/uaccess.h>",这个是high-level头文件,提供在内核中访问用户内存空间的APIs。

"#include <asm/uaccess.h> ", 这样使用头文件的话,是low-level的,架构依赖(architecture-specific)的头文件,提供了相关功能的具体实现, 这个一般是通过其他头文件来包含使用,开发者一般不直接包含此头文件。而且这个头文件的实际路径,是在arch目录里的,比如ARM架构: arch\arm\include\asm\uaccess.h。

static __always_inline unsigned long __must_check

copy_to_user(void __user *to, const void *from, unsigned long n)

static __always_inline unsigned long __must_check

copy_from_user(void *to, const void __user *from, unsigned long n)

这两个函数的底层由相应架构提供的接口来实现:raw_copy_{to,from}_user()。

这两个函数返回0表示成功,返回非0表示剩余的未copy成功的字节长度。

copy_{to,from}_user 函数定义在 Linux 内核源代码的特定架构代码中。不同体系结构的实现细节可能略有不同,但一般都是在体系结构的内存访问例程中定义的。

The copy_{to,from}_user function is defined in the Linux kernel source within the architecture-specific code. The implementation details can vary slightly between different architectures, but generally, it is defined in the architecture's memory access routines.

例如,在 x86 架构中,raw_copy_{to,from}_user()函数定义在以下文件中:

For example, in the x86 architecture, the copy_to_user function is defined in the following file:

arch/x86/include/asm/uaccess_32.h

arch/x86/include/asm/uaccess_64.h

还有一个struct拷贝函数。

static __always_inline __must_check int

copy_struct_from_user(void *dst, size_t ksize, const void __user *src,

size_t usize)

有三种情况需要考虑:

如果 @usize == @ksize,则是逐字复制。

如果 @usize < @ksize,则表示用户空间将旧结构传递给了新内核。@dst 的尾部字节(@ksize - @usize)将被清零。

如果 @usize > @ksize,则表示用户空间向旧内核传递了一个新结构体。内核未知的尾部字节(@usize - @ksize)将被检查以确保清零,否则将返回 -E2BIG。

There are three cases to consider:

If @usize == @ksize, then it's copied verbatim.

If @usize < @ksize, then the userspace has passed an old struct to a newer kernel. The rest of the trailing bytes in @dst (@ksize - @usize) are to be zero-filled.

If @usize > @ksize, then the userspace has passed a new struct to an older kernel. The trailing bytes unknown to the kernel (@usize - @ksize) are checked to ensure they are zeroed, otherwise -E2BIG is returned.

相关推荐
王哲晓1 小时前
Linux通过yum安装Docker
java·linux·docker
gopher95111 小时前
linux驱动开发-中断子系统
linux·运维·驱动开发
码哝小鱼1 小时前
firewalld封禁IP或IP段
linux·网络
鼠鼠龙年发大财1 小时前
【x**3专享】安装SSH、XFTP、XShell、ARM Linux
linux·arm开发·ssh
nfgo1 小时前
快速体验Linux发行版:DistroSea详解与操作指南
linux·ubuntu·centos
Rookie_explorers2 小时前
Linux下go环境安装、环境配置并执行第一个go程序
linux·运维·golang
weixin_424215842 小时前
shell运算实战案例-KFC点餐系统
linux·centos
小黑爱编程3 小时前
【LInux】HTTPS是如何实现安全传输的
linux·安全·https
BeyondESH3 小时前
Linux线程同步—竞态条件和互斥锁(C语言)
linux·服务器·c++
鱼饼6号3 小时前
Prometheus 上手指南
linux·运维·centos·prometheus