"hello"라는 커널 모듈이 있다고 가정해 보겠습니다.
예를 들어:
static struct file_operations hello_fops = {
.open = hello_open,
.read = hello_read,
.release = hello_release,
};
static ssize_t hello_read(struct file *f, char *buf, size_t len, loff_t *offset){
// some code here
}
/dev/hello
문자 장치 파일에서 데이터를 읽으면 함수 hello_read
가 호출되는데 함수의 매개변수는 어디서 오는 걸까요?
답변1
매개변수는 읽기를 발생시킨 시스템 호출에서 가져옵니다.
- 프로그램 호출
read
, 파일 설명자, 버퍼에 대한 포인터 및 개수를 전달합니다. - 시스템 호출은프로세서
ksys_read
,struct file
해당 파일 설명자와 파일의 현재 위치를 결정합니다.부르다vfs_read
; vfs_read
통화struct file_operations
관련read
기능.
에서도 비슷한 경로가 있습니다pread
, 읽을 파일의 위치도 제공합니다.프로세서ksys_pread64
.