vote up 0 vote down star

There's this WIN32 process, which someone says:

The servide takes a lock on the kernel object and does not release. After a while the machine becomes irresponsive and has to restarted. Restanting only the service won't fix the issue.

According to my knowledge applications were not supposed to be able to crash the entire system in windows. Does anyone know if such an indecent behavior (taking a lock on the kernel object and not releasing it) can indeed crash the OS? If so why don't we see this more in malicious software?

Some clarifications: This is not a device driver. Any amiguity left in the reponse is also ambiguous to me. Please elaborate on the cases you can think of.

flag

75% accept rate
2  
Much more data is needed to offer a decent answer - what service, what kernel object, what do you mean by irresponsive – Michael Jun 17 at 1:16
If a process can manipulate kernel objects, then it can do anything, including crash or hang the system. – John Saunders Jun 17 at 2:01

3 Answers

vote up 0 vote down

Depending on which precise kernel object they mean, and which service, this may very well be true. See for instance Raymond Chen on Loader Lock, a kernel lock which applications can monopolize. Restarting the service will then become a problem because the very unload of that service will require the loader lock, too.

link|flag
The Loader lock is per-process and isn't in kernel mode, it's created and maintained by ntdll. – Paul Betts Jun 24 at 17:13
vote up 1 vote down

This doesn't mean anything. There is no "kernel object" in NT, and any lock you could possibly take would be released if the service were restarted.

link|flag
If this is correct it's the kind of answer I'm looking for, one that uncovers the BS in the statement (or which proves it feasible, wherever the case is)... – David Reis Jun 18 at 15:44
Disagree. The snippet is taken out of context. There's no such thing as "The service" either. But if the context made it clear which service and which kernel object we're talking about, then this sentence makes perfect sense. – MSalters Jun 24 at 14:33
vote up 1 vote down

This depends on what type of application it is. Some applications install and use kernel drivers as part of their usage. A kernel driver has the most low level access possible in the system and is capable of crashing or hanging the system. If the process uses a kernel driver, and the description alludes to this, then yes it can crash / hang the system.

I believe Windows Vista started limiting the amount of damage a kernel driver can accidentally do (graphics drivers especially). But intentionally, you can still cause lots of problems.

link|flag
This is not a device driver. Just your average service. – David Reis Jun 17 at 16:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.