How Kernel, Drivers and Processes work together
Posted: Wed Apr 02, 2025 9:00 am
Dear Forum,
again I was suddenly understanding some part of OS theory much better as I walked in my appartment. This time it is about the communication between the kernel, drivers and processes.
For a long time I thought I could implement drivers like objects of classes. An process opening a file would call fopen(), which would then call something like FileSystem[0]->ReadFile(Buffer). Just like programming DirectX 9, getting a D3DDevice and then call methods of it to display graphics.
Man was I wrong.
The problem is, that user space processes can't just access methods and data of drivers. The drivers are either seperate processes (Microkernel) or in kernelspace (Monolith). That makes IPC (inter process communication) respectively systemcalls to the only way to interact with drivers. That way handles make really much sense now as a way to index different ressources.
For my OS I would like to have drivers as seperate processes, but running in ring 0, so they have access to kernel ressources.
Now I have just one question: How to handle multiple devices with the same driver? (like multiple AHCI devices)
Do you instantiate one process of the driver for every device? Or do you specify, that the driver has to have a way of handling multiple devices?
Best regards
Sebihepp
again I was suddenly understanding some part of OS theory much better as I walked in my appartment. This time it is about the communication between the kernel, drivers and processes.
For a long time I thought I could implement drivers like objects of classes. An process opening a file would call fopen(), which would then call something like FileSystem[0]->ReadFile(Buffer). Just like programming DirectX 9, getting a D3DDevice and then call methods of it to display graphics.
Man was I wrong.
The problem is, that user space processes can't just access methods and data of drivers. The drivers are either seperate processes (Microkernel) or in kernelspace (Monolith). That makes IPC (inter process communication) respectively systemcalls to the only way to interact with drivers. That way handles make really much sense now as a way to index different ressources.
For my OS I would like to have drivers as seperate processes, but running in ring 0, so they have access to kernel ressources.
Now I have just one question: How to handle multiple devices with the same driver? (like multiple AHCI devices)
Do you instantiate one process of the driver for every device? Or do you specify, that the driver has to have a way of handling multiple devices?
Best regards
Sebihepp