Coder Social home page Coder Social logo

win 11 22000 bsod about hooklib HOT 5 CLOSED

hoshimin avatar hoshimin commented on September 2, 2024
win 11 22000 bsod

from hooklib.

Comments (5)

HoShiMin avatar HoShiMin commented on September 2, 2024

Updated for WDK 11 and bumped version of Zydis to the latest.
@den7ba, could you test it one more time with the latest HookLib?
And if it will bsod again, could you give me a dump with PDBs for the driver and test app?

from hooklib.

den7ba avatar den7ba commented on September 2, 2024

Updated for WDK 11 and bumped version of Zydis to the latest. @den7ba, could you test it one more time with the latest HookLib? And if it will bsod again, could you give me a dump with PDBs for the driver and test app?
Same again. Minidump is enough?
dump.zip

from hooklib.

HoShiMin avatar HoShiMin commented on September 2, 2024

Fixed tests. It was false-negative assert. In release mode the compiler makes assumption that a test function couldn't change and caches its return value to use it instead of the second call of a test function. So, an assert fails.

void testHookOnce()
{
    const auto original = static_cast<decltype(func<0>)*>(hook(func<0>, handler<0>));
    hk_assert(func<0>(11, 22) == validHandler<0>(11, 22));
    hk_assert(original(11, 22) == validFunc<0>(11, 22));
        
    unhook(original);
        
    hk_assert(func<0>(11, 22) == validFunc<0>(11, 22)); // <-- Fails here
}

The function above in the release mode looks as follows:

void testHookOnce()
{
    const auto original = static_cast<decltype(func<0>)*>(hook(func<0>, handler<0>));
    const auto cachedFuncResult = func<0>(11, 22);
    hk_assert(cachedFuncResult == validHandler<0>(11, 22));
    hk_assert(original(11, 22) == validFunc<0>(11, 22));
        
    unhook(original);
        
    hk_assert(cachedFuncResult == validFunc<0>(11, 22)); // Boom!
}

So, the solution is to make func "volatile": call any external function to prevent a compiler to make an assumption that the function doesn't change internal state of an app.

@den7ba, please, check it again.

from hooklib.

den7ba avatar den7ba commented on September 2, 2024

Excellent. So, is this the expected result?
image

from hooklib.

HoShiMin avatar HoShiMin commented on September 2, 2024

@den7ba, yep, looks good.

from hooklib.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.