aboutsummaryrefslogtreecommitdiff
path: root/examples/driver-protobuf-c-tcp.cpp
blob: a7071ed07b2cc0debd24aee75d1485326c80db3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include <ksocket/berkeley.h>
#include <ksocket/helper.hpp>
#include <ksocket/ksocket.h>
#include <ksocket/utils.h>
#include <ksocket/wsk.h>

#include "examples/common.hpp"
#include "examples/example.pb-c.h"

extern "C" {
DRIVER_INITIALIZE DriverEntry;
DRIVER_UNLOAD DriverUnload;

#define DebuggerPrint(...)                                                     \
  DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, __VA_ARGS__);

NTSTATUS
NTAPI
DriverEntry(_In_ PDRIVER_OBJECT DriverObject,
            _In_ PUNICODE_STRING RegistryPath) {
  UNREFERENCED_PARAMETER(DriverObject);
  UNREFERENCED_PARAMETER(RegistryPath);

  NTSTATUS Status;

  DebuggerPrint("Hi.\n");
  Status = KsInitialize();

  if (!NT_SUCCESS(Status)) {
    return Status;
  }

  int server_sockfd = socket_listen(AF_INET, SOCK_STREAM, 0);

  struct sockaddr_in addr;
  addr.sin_family = AF_INET;
  addr.sin_addr.s_addr = INADDR_ANY;
  addr.sin_port = htons(9095);

  int result = bind(server_sockfd, (struct sockaddr *)&addr, sizeof(addr));
  if (result != 0) {
    DebuggerPrint("TCP server bind failed\n");
    return STATUS_FAILED_DRIVER_ENTRY;
  }

  result = listen(server_sockfd, 1);
  if (result != 0) {
    DebuggerPrint("TCP server listen failed\n");
    return STATUS_FAILED_DRIVER_ENTRY;
  }

  socklen_t addrlen = sizeof(addr);
  int client_sockfd = accept(server_sockfd, (struct sockaddr *)&addr, &addrlen);
  if (client_sockfd < 0) {
    DebuggerPrint("TCP accept failed\n");
    return STATUS_FAILED_DRIVER_ENTRY;
  }

  int iResult;
  SocketBuffer<1024> sb_send, sb_recv;

  do {
    bool ok = false;
    RECV_PDU_BEGIN(client_sockfd, sb_recv, iResult, pdu_type, pdu_len) {
      DebuggerPrint("PDU type/len: %u/%u\n", pdu_type, pdu_len);
      switch ((enum PduTypes)pdu_type) {
      case PDU_SOMETHING_WITH_UINTS: {
        SomethingWithUINTsDeserializer swud;
        if ((ok = swud.Deserialize(pdu_len, sb_recv.GetStart())) == true) {
          SomethingWithUINTsSerializer swus;
          if (swud.swu->has_id == TRUE) {
            DebuggerPrint("Id: 0x%X\n", swud.swu->id);
            swus.SetId(swud.swu->id + 1);
          }
          ok = sb_send.AddPdu(swus);
        }
        break;
      }
      case PDU_SOMETHING_MORE: {
        SomethingMoreDeserializer smd;
        if ((ok = smd.Deserialize(pdu_len, sb_recv.GetStart())) == true) {
          SomethingMoreSerializer sms;
          if (smd.sm->has_error_code == TRUE) {
            DebuggerPrint("Error Code: %u\n", smd.sm->error_code);
          }
          if (smd.sm->uints->has_id == TRUE) {
            DebuggerPrint("Id: 0x%X\n", smd.sm->uints->id);
            sms.SetId(smd.sm->uints->id + 1);
          }
          sms.SetErrorCode(SOMETHING_MORE__ERRORS__SUCCESS);
          sms.SetIpAddress(0xCCCCCCCC);
          sms.SetPortNum(0xDDDDDDDD);
          ok = sb_send.AddPdu(sms);
        }
        break;
      }
      case PDU_EVEN_MORE: {
        EvenMoreDeserializer emd;
        if ((ok = emd.Deserialize(pdu_len, sb_recv.GetStart())) == true) {
          DebuggerPrint("EnumValue: %d\n", emd.em->enum_value);
          if (emd.em->s != NULL) {
            DebuggerPrint("String: '%s'\n", emd.em->s);
          }
          EvenMoreSerializer ems;
          SomethingWithUINTsSerializer swus;
          swus.SetId(0xDEADDEAD);
          ems.SetS("Hi userspace!");
          ems.AddUints(&swus);
          ok = sb_send.AddPdu(ems);
        }
        break;
      }
      }
    }
    RECV_PDU_END(sb_recv, pdu_len);

    if (ok == true) {
      SEND_ALL(client_sockfd, sb_send, iResult);
      if (iResult == SOCKET_ERROR || iResult == 0) {
        DebuggerPrint("send failed\n");
        break;
      }
    } else {
      DebuggerPrint("Serialization/Deserialization failed\n");
      break;
    }
  } while (iResult != SOCKET_ERROR && iResult > 0);

  DebuggerPrint("Client gone.\n") closesocket(client_sockfd);
  closesocket(server_sockfd);
  KsDestroy();

  return STATUS_SUCCESS;
}

VOID DriverUnload(_In_ struct _DRIVER_OBJECT *DriverObject) {
  UNREFERENCED_PARAMETER(DriverObject);

  DebuggerPrint("Bye.\n");
}
}