/***************** * proc file system*****************/ (1) Characteristics of the /proc file system and description of /proc files The /proc file system is a special file system created by software. The kernel uses it to export information to the outside world. The /proc system only exists in memory and does not occupy external memory space. Each file under /proc is bound to a kernel function, which dynamically generates the file's contents when the user reads the file. You can also modify kernel parameters by writing /proc files File analysis under the /proc directory /proc/$pid Information directory about process $pid. Each process has a directory under /proc named after its process number. Example: $>strings -f /proc/[0-9]*/cmdline
(2) Implement a /proc file yourself The header file <linux/proc_fs.h> needs to be included, and the function is defined in /fs/proc/generic.c a. Create a file under /proc Call create_proc_read_entry to create a new file under /proc struct proc_dir_entry *create_proc_read_entry( const char *name, mode_t mode, struct proc_dir_entry *base, read_proc_t *read_proc, void * data) b. Uninstall files under /proc Use remove_proc_entry to uninstall proc files void remove_proc_entry( const char *name, struct proc_dir_entry *parent); c. Define a function that returns data When the process reads the /proc file, the kernel allocates a memory page (i.e. a memory block of PAGE_SIZE bytes), and the driver returns the data to be written to the user space through this memory page. typedef int (read_proc_t)(char *page, char **start, off_t off, int count, int *eof, void *data); Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: How to call the browser sharing function in Vue
>>: Detailed explanation of how to quickly operate MySQL database in nodejs environment
Table of contents Preface webpack-deb-server webp...
Library Operations Query 1.SHOW DATABASE; ----Que...
The advantages of this solution are simplicity an...
1. Set CORS response header to achieve cross-doma...
Table of contents 1. for loop: basic and simple 2...
Table of contents 1. Open the file Parameter Intr...
Recently, two accounts on the server were hacked ...
Table of contents Preface 1. Deployment and Confi...
This article shares the specific implementation c...
This is an effect created purely using CSS. To pu...
Official documentation: So mysql should be starte...
I re-read the source code of the Fabric project a...
This article shares with you the Ubuntu server ve...
Preface The gradient of the old version of the br...
Recently, when I was writing web pages with PHP, I...