Giter VIP home page Giter VIP logo

Comments (3)

liwei1024 avatar liwei1024 commented on September 13, 2024

#include <ntddk.h>
#include "CppSupport.h"
#include "include/alpaca/alpaca.h"

#define klog(Format, ...) DbgPrint(("klog: " Format "\n"), VA_ARGS)

struct S1
{
std::string v1;
std::string v2;
};

VOID DriverUnload(PDRIVER_OBJECT DriverObject) {
__crt_deinit();
}

EXTERN_C NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegisterPtah){

__crt_init();

UNREFERENCED_PARAMETER(DriverObject);
UNREFERENCED_PARAMETER(RegisterPtah);

S1 s1 = {};
s1.v1 = "123456";
s1.v2 = "654321";

std::vector<uint8_t> bytes;
auto bytes_written = alpaca::serialize(s1, bytes);


std::errc ec;
auto des = alpaca::deserialize<S1>(bytes, ec);

klog("v1 %s\n", des.v1.c_str());
//klog("v2 %s\n", des.v2.c_str());
klog("ec %d\n", static_cast<int>(ec));


DriverObject->DriverUnload = DriverUnload;
return 0;

}

from kernel-bridge.

HoShiMin avatar HoShiMin commented on September 13, 2024

So, what's wrong with alpaca? What fails in deserialization?

from kernel-bridge.

liwei1024 avatar liwei1024 commented on September 13, 2024

那么,alpaca 到底出了什么问题?反序列化失败的原因是什么?

So, what's wrong with alpaca? What fails in deserialization?

The error code is argument_list_too_long

The same code will work in R3

from kernel-bridge.

Related Issues (20)

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.