-
Notifications
You must be signed in to change notification settings - Fork 23
/
pktid.cpp
124 lines (108 loc) · 3.29 KB
/
pktid.cpp
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
/*
* ovpn-dco-win OpenVPN protocol accelerator for Windows
*
* Copyright (C) 2020-2021 OpenVPN Inc <[email protected]>
*
* Author: Lev Stipakov <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "pktid.h"
#include "trace.h"
#include <wdfcore.h>
/* Warn when packet ID crosses this threshold. */
#define PKTID_WRAP_WARN 0xf0000000ULL
_Use_decl_annotations_
NTSTATUS OvpnPktidXmitNext(OvpnPktidXmit* px, VOID* pktId, BOOLEAN pktId64bit)
{
ULONG64 seqNum = InterlockedIncrementNoFence64(&px->SeqNum);
if (pktId64bit) {
*static_cast<UINT64*>(pktId) = seqNum;
}
else
{
*static_cast<UINT32*>(pktId) = static_cast<UINT32>(seqNum);
if (seqNum >= PKTID_WRAP_WARN) {
LOG_ERROR("Pktid wrapped");
return STATUS_INTEGER_OVERFLOW;
}
}
return STATUS_SUCCESS;
}
#define PKTID_RECV_EXPIRE ((30 * WDF_TIMEOUT_TO_SEC) / KeQueryTimeIncrement())
_Use_decl_annotations_
NTSTATUS OvpnPktidRecvVerify(OvpnPktidRecv* pr, UINT64 pktId)
{
LARGE_INTEGER now;
KeQueryTickCount(&now);
/* expire backtracks at or below pr->id after PKTID_RECV_EXPIRE time */
if ((now.QuadPart - pr->Expire.QuadPart) >= 0)
pr->IdFloor = pr->Id;
/* ID must not be zero */
if (pktId == 0) {
return STATUS_INVALID_PARAMETER;
}
if (pktId == pr->Id + 1) {
/* well-formed ID sequence (incremented by 1) */
pr->Base = REPLAY_INDEX(pr->Base, -1);
pr->History[pr->Base / 8] |= (1 << (pr->Base % 8));
if (pr->Extent < REPLAY_WINDOW_SIZE)
++pr->Extent;
pr->Id = pktId;
}
else if (pktId > pr->Id) {
/* ID jumped forward by more than one */
const auto delta = pktId - pr->Id;
if (delta < REPLAY_WINDOW_SIZE) {
pr->Base = REPLAY_INDEX(pr->Base, -(INT32)delta);
pr->History[pr->Base / 8] |= (1 << (pr->Base % 8));
pr->Extent += static_cast<UINT32>(delta);
if (pr->Extent > REPLAY_WINDOW_SIZE)
pr->Extent = REPLAY_WINDOW_SIZE;
for (auto i = 1; i < delta; ++i) {
const auto newb = REPLAY_INDEX(pr->Base, i);
pr->History[newb / 8] &= ~BIT(newb % 8);
}
}
else {
pr->Base = 0;
pr->Extent = REPLAY_WINDOW_SIZE;
memset(pr->History, 0, sizeof(pr->History));
pr->History[0] = 1;
}
pr->Id = pktId;
}
else {
/* ID backtrack */
const auto delta = pr->Id - pktId;
if (delta < pr->Extent) {
if (pktId > pr->IdFloor) {
UINT32 ri = REPLAY_INDEX(pr->Base, delta);
PUCHAR p = &pr->History[ri / 8];
UCHAR mask = (1 << (ri % 8));
if (*p & mask)
return STATUS_INVALID_PARAMETER;
*p |= mask;
}
else {
return STATUS_INVALID_PARAMETER;
}
}
else {
return STATUS_INVALID_PARAMETER;
}
}
pr->Expire.QuadPart = now.QuadPart + PKTID_RECV_EXPIRE;
return STATUS_SUCCESS;
}