Further server optimizations:
[wine] / misc / toolhelp.c
1 /*
2  * Misc Toolhelp functions
3  *
4  * Copyright 1996 Marcus Meissner
5  */
6
7 #include <stdlib.h>
8 #include <string.h>
9 #include <unistd.h>
10 #include <ctype.h>
11 #include <assert.h>
12 #include "winbase.h"
13 #include "wine/winbase16.h"
14 #include "winerror.h"
15 #include "process.h"
16 #include "tlhelp32.h"
17 #include "toolhelp.h"
18 #include "heap.h"
19 #include "server.h"
20 #include "debug.h"
21
22 DEFAULT_DEBUG_CHANNEL(toolhelp)
23
24
25 /* FIXME: to make this working, we have to callback all these registered 
26  * functions from all over the WINE code. Someone with more knowledge than
27  * me please do that. -Marcus
28  */
29 static struct notify
30 {
31     HTASK16   htask;
32     FARPROC16 lpfnCallback;
33     WORD     wFlags;
34 } *notifys = NULL;
35
36 static int nrofnotifys = 0;
37
38 static FARPROC16 HookNotify = NULL;
39
40 BOOL16 WINAPI NotifyRegister16( HTASK16 htask, FARPROC16 lpfnCallback,
41                               WORD wFlags )
42 {
43     int i;
44
45     TRACE(toolhelp, "(%x,%lx,%x) called.\n",
46                       htask, (DWORD)lpfnCallback, wFlags );
47     if (!htask) htask = GetCurrentTask();
48     for (i=0;i<nrofnotifys;i++)
49         if (notifys[i].htask==htask)
50             break;
51     if (i==nrofnotifys) {
52         if (notifys==NULL)
53             notifys=(struct notify*)HeapAlloc( SystemHeap, 0,
54                                                sizeof(struct notify) );
55         else
56             notifys=(struct notify*)HeapReAlloc( SystemHeap, 0, notifys,
57                                         sizeof(struct notify)*(nrofnotifys+1));
58         if (!notifys) return FALSE;
59         nrofnotifys++;
60     }
61     notifys[i].htask=htask;
62     notifys[i].lpfnCallback=lpfnCallback;
63     notifys[i].wFlags=wFlags;
64     return TRUE;
65 }
66
67 BOOL16 WINAPI NotifyUnregister16( HTASK16 htask )
68 {
69     int i;
70     
71     TRACE(toolhelp, "(%x) called.\n", htask );
72     if (!htask) htask = GetCurrentTask();
73     for (i=nrofnotifys;i--;)
74         if (notifys[i].htask==htask)
75             break;
76     if (i==-1)
77         return FALSE;
78     memcpy(notifys+i,notifys+(i+1),sizeof(struct notify)*(nrofnotifys-i-1));
79     notifys=(struct notify*)HeapReAlloc( SystemHeap, 0, notifys,
80                                         (nrofnotifys-1)*sizeof(struct notify));
81     nrofnotifys--;
82     return TRUE;
83 }
84
85 BOOL16 WINAPI StackTraceCSIPFirst16(STACKTRACEENTRY *ste, WORD wSS, WORD wCS, WORD wIP, WORD wBP)
86 {
87     return TRUE;
88 }
89
90 BOOL16 WINAPI StackTraceFirst16(STACKTRACEENTRY *ste, HTASK16 Task)
91 {
92     return TRUE;
93 }
94
95 BOOL16 WINAPI StackTraceNext16(STACKTRACEENTRY *ste)
96 {
97     return TRUE;
98 }
99
100 /***********************************************************************
101  *           ToolHelpHook                             (KERNEL.341)
102  *      see "Undocumented Windows"
103  */
104 FARPROC16 WINAPI ToolHelpHook16(FARPROC16 lpfnNotifyHandler)
105 {
106 FARPROC16 tmp;
107         tmp = HookNotify;
108         HookNotify = lpfnNotifyHandler;
109         /* just return previously installed notification function */
110         return tmp;
111 }
112
113
114 /***********************************************************************
115  *           CreateToolHelp32Snapshot                   (KERNEL32.179)
116  */
117 HANDLE WINAPI CreateToolhelp32Snapshot( DWORD flags, DWORD process ) 
118 {
119     struct create_snapshot_request *req = get_req_buffer();
120
121     TRACE( toolhelp, "%lx,%lx\n", flags, process );
122     if (flags & (TH32CS_SNAPHEAPLIST|TH32CS_SNAPMODULE|TH32CS_SNAPTHREAD))
123         FIXME( toolhelp, "flags %lx not implemented\n", flags );
124     if (!(flags & TH32CS_SNAPPROCESS))
125     {
126         SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
127         return INVALID_HANDLE_VALUE;
128     }
129     
130     /* Now do the snapshot */
131     req->flags   = flags & ~TH32CS_INHERIT;
132     req->inherit = (flags & TH32CS_INHERIT) != 0;
133     server_call( REQ_CREATE_SNAPSHOT );
134     return req->handle;
135 }
136
137
138 /***********************************************************************
139  *              TOOLHELP_Process32Next
140  *
141  * Implementation of Process32First/Next
142  */
143 static BOOL TOOLHELP_Process32Next( HANDLE handle, LPPROCESSENTRY lppe, BOOL first )
144 {
145     struct next_process_request *req = get_req_buffer();
146
147     if (lppe->dwSize < sizeof (PROCESSENTRY))
148     {
149         SetLastError( ERROR_INSUFFICIENT_BUFFER );
150         ERR (toolhelp, "Result buffer too small\n");
151         return FALSE;
152     }
153     req->handle = handle;
154     req->reset = first;
155     if (server_call( REQ_NEXT_PROCESS )) return FALSE;
156     lppe->cntUsage            = 1;
157     lppe->th32ProcessID       = (DWORD)req->pid;
158     lppe->th32DefaultHeapID   = 0;  /* FIXME */ 
159     lppe->th32ModuleID        = 0;  /* FIXME */
160     lppe->cntThreads          = req->threads;
161     lppe->th32ParentProcessID = 0;  /* FIXME */
162     lppe->pcPriClassBase      = req->priority;
163     lppe->dwFlags             = -1; /* FIXME */
164     lppe->szExeFile[0]        = 0;  /* FIXME */
165     return TRUE;
166 }
167
168
169 /***********************************************************************
170  *              Process32First    (KERNEL32.555)
171  *
172  * Return info about the first process in a toolhelp32 snapshot
173  */
174 BOOL WINAPI Process32First(HANDLE hSnapshot, LPPROCESSENTRY lppe)
175 {
176     return TOOLHELP_Process32Next( hSnapshot, lppe, TRUE );
177 }
178
179 /***********************************************************************
180  *              Process32Next   (KERNEL32.556)
181  *
182  * Return info about the "next" process in a toolhelp32 snapshot
183  */
184 BOOL WINAPI Process32Next(HANDLE hSnapshot, LPPROCESSENTRY lppe)
185 {
186     return TOOLHELP_Process32Next( hSnapshot, lppe, FALSE );
187 }
188
189 /***********************************************************************
190  *              Module32First   (KERNEL32.527)
191  *
192  * Return info about the "first" module in a toolhelp32 snapshot
193  */
194 BOOL WINAPI Module32First(HANDLE hSnapshot, LPMODULEENTRY lpme)
195 {
196     FIXME(toolhelp,"(%d,%p),stub!\n",hSnapshot,lpme);
197     return FALSE;
198 }
199
200 /***********************************************************************
201  *              Module32Next   (KERNEL32.528)
202  *
203  * Return info about the "next" module in a toolhelp32 snapshot
204  */
205 BOOL WINAPI Module32Next(HANDLE hSnapshot, LPMODULEENTRY lpme)
206 {
207     FIXME(toolhelp,"(%d,%p),stub!\n",hSnapshot,lpme);
208     return FALSE;
209 }
210
211 /************************************************************************
212  *              GlobalMasterHandle16 (KERNEL.28)
213  *
214  *
215  * Should return selector and handle of the information structure for 
216  * the global heap. selector and handle are stored in the THHOOK as
217  * pGlobalHeap and hGlobalHeap.
218  * As Wine doesn't have this structure, we return both values as zero
219  * Applications should interpret this as "No Global Heap"
220  */
221 DWORD WINAPI GlobalMasterHandle16(void)
222 {
223     FIXME(toolhelp,": stub\n");
224     return 0;
225 }