Tagged Questions
The seh tag has no wiki summary.
10
votes
3answers
358 views
Structured Exception Handler and Delphi
I am trying to set SEH without using try except
(This is for my own personal knowledge to get a better idea on how SEH works)
The following code doesn't work
type
TSeh = packed record
...
4
votes
1answer
143 views
How do I convert a Win32 exception code to a string?
I'm reluctantly having to deal with Win32 structured exceptions again. I'm trying to generate a string describing an exception. Most of it is straightforward, but I'm stuck on something basic: how can ...
4
votes
3answers
186 views
intermixing c++ exception handling and SEH (windows)
I have a function in which I call getaddrinfo() to get an sockaddr* which targets memory is allocated by the system.
As many may know, you need to call freeaddrinfo() to free the memory allocated by ...
4
votes
2answers
137 views
What are the consequences of mixing exception handling models in Visual Studio 2010?
I have third-party static library built with Enable C++ Exceptions set to No (/EH flag not specified). What are the consequences to calling into it from code built with C++ exceptions enabled (/EHa)? ...
4
votes
2answers
136 views
Issue with exceptions being caught by Win32 message dispatcher
This is kinda a very low-level type question, but maybe someone here has some insight...
I'm having an issue where unhandled SEH exceptions (such as Access Violations) are seemingly being caught at ...
4
votes
4answers
562 views
64bit exceptions in WndProc silently fail
The following code will give a hard fail when run under Windows 7 32bit:
void CTestView::OnDraw(CDC* /*pDC*/)
{
*(int*)0 = 0; // Crash
CTestDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
...
4
votes
4answers
1k views
Stack unwinding in case of structured exceptions
This question provides more clarity on the problem described here. I did some more investigation and found that the stack unwinding is not happening in the following piece of code:
class One
{
...
4
votes
3answers
362 views
Is there a good way around the problems of structured exception handling (__try __except) with a multi-threaded server?
This article gives a good overview on why structured exception handling is bad. Is there a way to get the robustness of stopping your server from crashing, while getting past the problems mentioned ...
3
votes
3answers
296 views
Is it legal and possible to access the return value in a finally block?
I wish to set a usererror string before leaving a function, depending on the return code and variable in the function.
I currently have:
Dim RetVal as RetType
try
...
if ... then
RetVal = ...
2
votes
1answer
472 views
OllyDbg can't debug visual studio exe
I've just created a new vc++ exe with this simple code:
#include<stdio.h>
#include<string.h>
#include<windows.h>
int ExceptionHandler(void);
int main(int argc,char *argv[]){
char ...
2
votes
1answer
44 views
Structured Exceptions (SE) from standard library calls
I've got code that calls ::fgetpos, which results in a kernel exception that can't be caught (I have option /ehs in my VS 2008 project). But I can't help think that standard library routines should ...
2
votes
1answer
62 views
What is the meaning of bits 31 and 30 in an SEH exception code?
I'm trying to find out what the bits mean in an SEH exception code. I found out that bit 28 is reserved by the system for system-defined exceptions from MSDN's article on RaiseException. However, ...
2
votes
1answer
219 views
How to implement SEH (Structured Exception Handling) in VB6?
Could someone provide some example on implementing SEH in VB6? Everything I've seen so far is in C++
1
vote
2answers
229 views
Catching opcode 0xCC as an exception
Say a C program might trigger an exception of opcode 0xCC
How can I catch it?
I tried:
__try
{
...some code
}
__except(GetExceptionCode()==EXCEPTION_EXECUTE_HANDLER)
{
...
1
vote
2answers
368 views
How can I catch an invalid fgetpos call as a C++ exception on Windows?
In Visual C++ 2008, I want to "catch" an exception generated as shown here:
try {
int foo = 20;
::fgetpos(0, (fpos_t*)&foo);
}
//...
Here are adjustments I've made to attempt a ...
1
vote
1answer
157 views
Consequences of using Structured Exception Handling (SEH)?
I see Doug Harrison has made a good statement of what is "wrong" with using (i.e. catching) structured exceptions (see question #3). But what other consequences are there? For example, what happens ...
1
vote
1answer
597 views
FS register in Win32
I'm reading how SEH is implemented in Win32 and I came across this thing called the FS register. I couldn't find anything good on Google (most probably I may be searching for the wrong thing). So can ...
1
vote
2answers
916 views
Visual C++ Unmanaged Code: Use /EHa or /EHsc for C++ exceptions?
If I'm creating a new project in unmanaged C++, Visual Studio 2008 or greater, which exception handling model do I want to go with?
I understand that /EHa option results in less efficient code, and ...
1
vote
3answers
188 views
Catching child process exceptions on windows
i'm developing a multi-platform C++ fuzzing application. The app spawns a child process and checks whether it stopped unexpectedly. I've already managed to do this on linux, however, windows exception ...
1
vote
4answers
226 views
C++: how to throw EXCEPTION_FLT_UNDERFLOW?
Ok, it sounds strange, but I need a sample code, that throws EXCEPTION_FLT_UNDERFLOW. I already have code to handle that exception. Now I need sample, that throws this damn EXCEPTION_FLT_UNDERFLOW. ...
1
vote
2answers
150 views
Imitation of hardware exceptions
Can anyone tell me a code for next function, which raises EXCEPTION_FLT_STACK_CHECK or EXCEPTION_BREAKPOINT, for I could catch them in main func:
int _tmain(int argc, _TCHAR* argv[])
{
__try
...
1
vote
2answers
137 views
Forcing a coredump via Wine ignoring SEH
I'd like to force a coredump from a program (or see its memory at a specific time in some other way). There are a couple of problems though:
I'm running it under wine (cannot run via winedbg, ...
1
vote
1answer
365 views
When Does Visual Studio 6 Catch Structured Exceptions?
This is mostly curiosity, but I've been reading about the history of Visual Studio catching SEH exceptions in a C++ try-catch construct. I keep running across the assertion that older versions Visual ...
1
vote
1answer
85 views
Windows Structured Exception Handling: simple test program will not compile
#include <windows.h>
int main()
{
int* i = (int*)malloc(sizeof(int));
*i = 5;
__try
{
free(i);
free(i);
}
__except
{
return -1;
}
...
1
vote
5answers
1k views
What should I know about Structured Exceptions (SEH) in C++?
What important points about Structured Exceptions should every C++ developer know?
1
vote
1answer
706 views
SEH, access violation and stack guard page
I've posted a question about validating a pointer's accessibility. The conclusion was either to use IsBadReadPtr to check the pointer, or SEH to catch the exception (and preferably to use neither, and ...
0
votes
1answer
61 views
Structured Exception Handler (SEH) does not catch heap corruption
I'm writing small utility (VC 2010, no clr) that does one simple task (rasterizing) using 3rd party library. Later utility will be used by bigger application. Sometimes the utility crashes because of ...
0
votes
3answers
128 views
C/C++ SEH Example build failure
I am complete unfamiliar with c/c++. I need to compile a small program to do some analysis.
This is the program
#include<stdio.h>
#include<string.h>
#include<windows.h>
...
0
votes
3answers
229 views
Finding another thread's Thread Information Block
Is there a way to find the Thread Information Block (TIB) of another thread running in your process?
I need to construct an exception handler for another thread but I can't do it in the thread ...
0
votes
2answers
228 views
SEH error reporting
I have a Visual Studio 2008 C++ program where the program is wrapped in a __try/__except block to capture any SEH exceptions. The exception filter creates an error log and gives the user detailed ...
0
votes
0answers
155 views
How to throw EXCEPTION_FLT_INEXACT_RESULT
It's a little strange problem, but I need to throw EXCEPTION_FLT_INEXACT_RESULT in C++. RaiseException not suitable. Can you suggest anything?
Thanks.
I have code like that
int _tmain(int argc, ...
0
votes
2answers
95 views
What exactly is “application-defined” about UnhandledExceptionFilter?
MSDN describes UnhandledExceptionFilter as follows: "An application-defined function that passes unhandled exceptions to the debugger, if the process is being debugged."
But this function is clearly ...
0
votes
1answer
157 views
Mixing Win32 SEH with heap-allocated stack frames
Is there a way to escape the "one big stack" model of Win32 without crippling SEH? I'd like to be able to allocate stack frames on the heap, as a way to implement coroutines. However, my code is ...
-1
votes
1answer
79 views
Emiting code with Exception support
I need to generate code at runtime that do the following:
auto v_cleanup = std::shared_ptr<void>(nullptr, [](void *){ cleanup(); });
//...
do_some_danger_thing();
//...
or C equivalent:
...