2 * Copyright 2010 Louis Lenders
3 * Copyright 2010 Detlef Riekenberg
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/heap.h"
27 #include "wine/list.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(wer
);
34 WER_REPORT_INFORMATION info
;
35 WER_REPORT_TYPE reporttype
;
40 static CRITICAL_SECTION report_table_cs
;
41 static CRITICAL_SECTION_DEBUG report_table_cs_debug
=
43 0, 0, &report_table_cs
,
44 { &report_table_cs_debug
.ProcessLocksList
, &report_table_cs_debug
.ProcessLocksList
},
45 0, 0, { (DWORD_PTR
)(__FILE__
": report_table_cs") }
47 static CRITICAL_SECTION report_table_cs
= { &report_table_cs_debug
, -1, 0, 0, 0, 0 };
49 static struct list report_table
= LIST_INIT(report_table
);
51 static const WCHAR regpath_exclude
[] = L
"Software\\Microsoft\\Windows Error Reporting\\ExcludedApplications";
53 /***********************************************************************
54 * WerAddExcludedApplication (wer.@)
56 * Add an application to the user specific or the system wide exclusion list
59 * exeName [i] The application name
60 * allUsers [i] for all users (TRUE) or for the current user (FALSE)
64 * Failure: A HRESULT error code
67 HRESULT WINAPI
WerAddExcludedApplication(PCWSTR exeName
, BOOL allUsers
)
73 TRACE("(%s, %d)\n",debugstr_w(exeName
), allUsers
);
74 if (!exeName
|| !exeName
[0])
77 bs
= wcsrchr(exeName
, '\\');
79 bs
++; /* skip the backslash */
84 bs
= (LPWSTR
) exeName
;
86 if (!RegCreateKeyW(allUsers
? HKEY_LOCAL_MACHINE
: HKEY_CURRENT_USER
, regpath_exclude
, &hkey
)) {
87 RegSetValueExW(hkey
, bs
, 0, REG_DWORD
, (LPBYTE
)&value
, sizeof(DWORD
));
91 return E_ACCESSDENIED
;
94 /***********************************************************************
95 * WerRemoveExcludedApplication (wer.@)
97 * remove an application from the exclusion list
100 * exeName [i] The application name
101 * allUsers [i] for all users (TRUE) or for the current user (FALSE)
105 * Failure: A HRESULT error code
108 HRESULT WINAPI
WerRemoveExcludedApplication(PCWSTR exeName
, BOOL allUsers
)
114 TRACE("(%s, %d)\n",debugstr_w(exeName
), allUsers
);
115 if (!exeName
|| !exeName
[0])
118 bs
= wcsrchr(exeName
, '\\');
120 bs
++; /* skip the backslash */
125 bs
= (LPWSTR
) exeName
;
127 if (!RegCreateKeyW(allUsers
? HKEY_LOCAL_MACHINE
: HKEY_CURRENT_USER
, regpath_exclude
, &hkey
)) {
128 lres
= RegDeleteValueW(hkey
, bs
);
130 return lres
? __HRESULT_FROM_WIN32(ERROR_ENVVAR_NOT_FOUND
) : S_OK
;
132 return E_ACCESSDENIED
;
135 /***********************************************************************
136 * WerReportAddDump (wer.@)
138 * Add a dump of dumpType to hReportHandle.
141 * hReportHandle [i] error reporting handle to add the dump
142 * hProcess [i] handle to the regarding process
143 * hThread [o] handle to the regarding thread
144 * dumpType [i] type of the dump
145 * pExceptionParam [o] pointer to a WER_EXCEPTION_INFORMATION
146 * pDumpCustomOptions [o] pointer to a WER_DUMP_CUSTOM_OPTIONS
147 * dwFlags [i] flag to control the heap dump
151 * Failure: A HRESULT error code
154 HRESULT WINAPI
WerReportAddDump(HREPORT hReportHandle
, HANDLE hProcess
, HANDLE hThread
,
155 WER_DUMP_TYPE dumpType
, PWER_EXCEPTION_INFORMATION pExceptionParam
,
156 PWER_DUMP_CUSTOM_OPTIONS pDumpCustomOptions
, DWORD dwFlags
)
158 FIXME("(%p, %p, %p, %d, %p, %p, %u) :stub\n", hReportHandle
, hProcess
, hThread
, dumpType
,
159 pExceptionParam
, pDumpCustomOptions
, dwFlags
);
164 /***********************************************************************
165 * WerReportAddFile (wer.@)
167 * Add a file to an error report handle.
170 * hreport [i] error reporting handle to add the file
171 * path [i] path to the file to add
172 * type [i] type of the file to add
173 * flags [i] flags for the file
177 * Failure: A HRESULT error code
180 HRESULT WINAPI
WerReportAddFile(HREPORT hreport
, PCWSTR path
, WER_FILE_TYPE type
, DWORD flags
)
182 FIXME("(%p, %s, %d, 0x%x) :stub\n", hreport
, debugstr_w(path
), type
, flags
);
187 /***********************************************************************
188 * WerReportCloseHandle (wer.@)
190 * Close an error reporting handle and free associated resources
193 * hreport [i] error reporting handle to close
197 * Failure: A HRESULT error code
200 HRESULT WINAPI
WerReportCloseHandle(HREPORT hreport
)
202 report_t
* report
= (report_t
*) hreport
;
206 TRACE("(%p)\n", hreport
);
207 EnterCriticalSection(&report_table_cs
);
209 LIST_FOR_EACH_ENTRY(cursor
, &report_table
, report_t
, entry
)
211 if (cursor
== report
) {
213 list_remove(&report
->entry
);
218 LeaveCriticalSection(&report_table_cs
);
227 /***********************************************************************
228 * WerReportCreate (wer.@)
230 * Create an error report in memory and return a related HANDLE
233 * eventtype [i] a name for the event type
234 * reporttype [i] what type of report should be created
235 * reportinfo [i] NULL or a ptr to a struct with some detailed information
236 * phandle [o] ptr, where the resulting handle should be saved
240 * Failure: A HRESULT error code
243 * The event type must be registered at microsoft. Predefined types are
244 * "APPCRASH" as the default on Windows, "Crash32" and "Crash64"
247 HRESULT WINAPI
WerReportCreate(PCWSTR eventtype
, WER_REPORT_TYPE reporttype
, PWER_REPORT_INFORMATION reportinfo
, HREPORT
*phandle
)
251 TRACE("(%s, %d, %p, %p)\n", debugstr_w(eventtype
), reporttype
, reportinfo
, phandle
);
253 TRACE(".wzFriendlyEventName: %s\n", debugstr_w(reportinfo
->wzFriendlyEventName
));
254 TRACE(".wzApplicationName: %s\n", debugstr_w(reportinfo
->wzApplicationName
));
257 if (phandle
) *phandle
= NULL
;
258 if (!eventtype
|| !eventtype
[0] || !phandle
|| (reporttype
>= WerReportInvalid
)) {
262 report
= heap_alloc_zero(FIELD_OFFSET(report_t
, eventtype
[lstrlenW(eventtype
) + 1]));
264 return __HRESULT_FROM_WIN32(ERROR_OUTOFMEMORY
);
266 lstrcpyW(report
->eventtype
, eventtype
);
267 report
->reporttype
= reporttype
;
270 report
->info
= *reportinfo
;
272 FIXME("build report information from scratch for %p\n", report
);
275 EnterCriticalSection(&report_table_cs
);
276 list_add_head(&report_table
, &report
->entry
);
277 LeaveCriticalSection(&report_table_cs
);
280 TRACE("=> %p\n", report
);
284 /***********************************************************************
285 * WerReportSetParameter (wer.@)
287 * Set one of 10 parameter / value pairs for a report handle
290 * hreport [i] error reporting handle to add the parameter
291 * id [i] parameter to set (WER_P0 up to WER_P9)
292 * name [i] optional name of the parameter
293 * value [i] value of the parameter
297 * Failure: A HRESULT error code
300 HRESULT WINAPI
WerReportSetParameter(HREPORT hreport
, DWORD id
, PCWSTR name
, PCWSTR value
)
302 FIXME("(%p, %d, %s, %s) :stub\n", hreport
, id
, debugstr_w(name
), debugstr_w(value
));
307 /***********************************************************************
308 * WerReportSubmit (wer.@)
310 * Ask the user for permission and send the error report
311 * then kill or restart the application, when requested
314 * hreport [i] error reporting handle to send
315 * consent [i] current transmit permission
316 * flags [i] flag to select dialog, transmission snd restart options
317 * presult [o] ptr, where the transmission result should be saved
321 * Failure: A HRESULT error code
324 HRESULT WINAPI
WerReportSubmit(HREPORT hreport
, WER_CONSENT consent
, DWORD flags
, PWER_SUBMIT_RESULT presult
)
326 FIXME("(%p, %d, 0x%x, %p) :stub\n", hreport
, consent
, flags
, presult
);
331 *presult
= WerDisabled
;
335 /***********************************************************************
336 * WerReportSetUIOption (wer.@)
338 HRESULT WINAPI
WerReportSetUIOption(HREPORT hreport
, WER_REPORT_UI uitype
, PCWSTR value
)
340 FIXME("(%p, %d, %s) :stub\n", hreport
, uitype
, debugstr_w(value
));