11
Programming / Re: Brainstorm: OS/2 on a Different Kernel
« Last post by Martin Iturbide on April 01, 2025, 04:44:07 pm »Hello
I'm trying the NotbookLM AI to explain me some basic things.
Which functions does the OS2KRNL provides that are used by DOSCALLS1.DLL?
I'm trying the NotbookLM AI to explain me some basic things.
Quote
**DOSCALLS1.DLL** is a **dynamic link library (DLL)** in OS/2 that appears to be a **core system component providing a wide range of kernel services and API entry points**.
Here's a breakdown of what the sources indicate about it:
* **Central System DLL:** Almost all programs utilize **DOSCALLS1.DLL**, suggesting its fundamental role in the OS/2 environment.
* **Initialization:** It seems to have **instance initialization routines**.
* **API Entry Points:** **DOSCALL1** contains **16-bit entry points that correspond to various OS/2 APIs**. It also appears to handle **32-bit APIs**, with examples like `Dos32FreeMem`, `DosGetMessage`, and `DosPutMessage` having associated trace events within this DLL.
* **Exception Handling:** The kernel calls the `Dos32R3ExceptionDispatcher` entry point within **DOSCALLS1.DLL** to **process all user exception handlers**.
* **Kernel Service Indirection:** Many kernel APIs are **indirected through DOSCALL1.DLL**. This means that calls to certain kernel functions might go through this DLL.
* **Thunking Layer:** **DOSCALLS1.DLL** includes **UniThunk** trace events, indicating it plays a role in **thunking between 16-bit and 32-bit code**.
* **Traceability:** The System Tracepoints Reference provides a comprehensive source for deriving API-related breakpoints, often with entry point names prefixed with `pre` or `post`, which is applicable to functions within **DOSCALLS1.DLL**. Numerous trace events are defined for various functions within **DOSCALLS1**, allowing for detailed tracing of API calls.
* **Relationship with other DLLs:** APIs from other DLLs, such as `QUECALLS.DLL` (queue management APIs), can be **indirected via DOSCALL1**.
In essence, **DOSCALLS1.DLL** serves as a crucial intermediary and provider of fundamental operating system services, handling API calls, managing exceptions, and facilitating communication within the OS/2 environment. Its central role is highlighted by its frequent use across applications and its involvement in various core system functionalities.
Which functions does the OS2KRNL provides that are used by DOSCALLS1.DLL?
Quote
Based on the sources, particularly the trace event information, **OS2KRNL provides a variety of kernel functions that are used by or whose calls are indirected through DOSCALLS1.DLL**. The trace logs in `sg244640.pdf` detail many API calls, specifying a major code for `OS2KRNL` (0x0005) and various minor codes corresponding to specific kernel functions. Many of these APIs have tracepoints that indicate they are indirectly accessed via `DOSCALL1`.
Here are some examples of functions provided by **OS2KRNL** that are relevant to **DOSCALLS1.DLL**, based on the trace events:
* **Memory Management Functions**:
* `Dos32GiveSharedMem`
* `Dos32QueryMem`
* **File System Related Functions**:
* `DosBufReset`
* `DosCallNmPipe`
* `DosDevIoctl`
* `DosDisConnectMmPipe`
* `DosOpen`
* `DosOpen2`
* `DosPhysicalDisk`
* `DosQNmPipeState`
* `DosSetMaxFH`
* `DosSetNmPHandState`
* `DosSetVec`
* **Process and Thread Management**:
* `DosSystemService`
* `DosTimerAsync`
* **Dynamic Linking and Loading**:
* `DosGetModHandle`
* `DosGetModName`
* `Dos32QueryProcAddr`
* **Synchronization**:
* `DosSetSigHandler`
* **Handle Management**:
* `Dos32IQUERYFHSTATE`
* **Input/Output**:
* `Dos32IRead`
* **Other**:
* `Dos32SetFileLocks`
The "Kernel API Tracepoints Indirected Via DOSCALL1" section further confirms this indirection, although it doesn't list the specific kernel functions themselves but rather the tracepoints associated with the pre-invocation of APIs that are indirected.
In summary, **DOSCALLS1.DLL acts as an intermediary for a significant number of OS/2 kernel functions provided by OS2KRNL**, handling the transition and enabling applications to access these core system services. The trace logs provide concrete examples of this interaction by showing how calls to various kernel functions (residing in **OS2KRNL**) are traced with pre-invocation events often associated with **DOSCALLS1**.