-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchacha8.c
371 lines (324 loc) · 10 KB
/
chacha8.c
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
//------------------------------------------------------------------
// Includes.
//------------------------------------------------------------------
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <linux/bpf.h>
#include <linux/icmp.h>
#include <linux/if_ether.h>
#include <linux/if_vlan.h>
#include <linux/in.h>
#include <linux/ip.h>
#include <linux/tcp.h>
#include <linux/udp.h>
#include "bpf_endian.h"
#include "bpf_helpers.h"
#ifndef IP_FRAGMENTED
#define IP_FRAGMENTED 65343
#endif
#ifndef __inline
#define __inline inline __attribute__((always_inline))
#endif
#ifndef CHACHA_ROUNDS
#define CHACHA_ROUNDS 8
#endif
#ifndef memset
#define memset(dest, c_int, n) __builtin_memset((dest), (c_int), (n))
#endif
//------------------------------------------------------------------
// Types.
//------------------------------------------------------------------
// The chacha state context.
typedef struct
{
uint32_t state[16];
uint8_t rounds;
} chacha_ctx;
//------------------------------------------------------------------
// Macros.
//------------------------------------------------------------------
// Basic 32-bit operators.
#define ROTATE(v,c) ((uint32_t)((v) << (c)) | ((v) >> (32 - (c))))
#define XOR(v,w) ((v) ^ (w))
#define PLUS(v,w) ((uint32_t)((v) + (w)))
#define PLUSONE(v) (PLUS((v), 1))
// Little endian machine assumed (x86-64).
#define U32TO8_LITTLE(p, v) (((uint32_t*)(p))[0] = v)
#define U8TO32_LITTLE(p) (((uint32_t*)(p))[0])
#define QUARTERROUND(a, b, c, d) \
x[a] = PLUS(x[a],x[b]); x[d] = ROTATE(XOR(x[d],x[a]),16); \
x[c] = PLUS(x[c],x[d]); x[b] = ROTATE(XOR(x[b],x[c]),12); \
x[a] = PLUS(x[a],x[b]); x[d] = ROTATE(XOR(x[d],x[a]), 8); \
x[c] = PLUS(x[c],x[d]); x[b] = ROTATE(XOR(x[b],x[c]), 7);
//------------------------------------------------------------------
// Constants.
//------------------------------------------------------------------
//static const uint8_t SIGMA[16] = "expand 32-byte k";
static const uint8_t TAU[16] = "expand 16-byte k";
//------------------------------------------------------------------
// doublerounds()
//
// Perform rounds/2 number of doublerounds.
// TODO: Change output format to 16 words.
//------------------------------------------------------------------
static __inline void doublerounds(uint8_t output[64], const uint32_t input[16], uint8_t rounds)
{
uint32_t x[16];
int32_t i;
#pragma clang loop unroll (full)
for (i = 0;i < 16;++i) {
x[i] = input[i];
}
#pragma clang loop unroll (full)
for (i = rounds ; i > 0 ; i -= 2) {
QUARTERROUND( 0, 4, 8,12)
QUARTERROUND( 1, 5, 9,13)
QUARTERROUND( 2, 6,10,14)
QUARTERROUND( 3, 7,11,15)
QUARTERROUND( 0, 5,10,15)
QUARTERROUND( 1, 6,11,12)
QUARTERROUND( 2, 7, 8,13)
QUARTERROUND( 3, 4, 9,14)
}
#pragma clang loop unroll (full)
for (i = 0;i < 16;++i) {
x[i] = PLUS(x[i], input[i]);
}
#pragma clang loop unroll (full)
for (i = 0;i < 16;++i) {
U32TO8_LITTLE(output + 4 * i, x[i]);
}
}
//------------------------------------------------------------------
// init()
//
// Initializes the given cipher context with key, iv and constants.
// This also resets the block counter.
//------------------------------------------------------------------
static __inline void init(chacha_ctx *x, uint8_t *key, uint32_t keylen, uint8_t *iv)
{
/*
if (keylen == 256) {
// 256 bit key.
x->state[0] = U8TO32_LITTLE(SIGMA + 0);
x->state[1] = U8TO32_LITTLE(SIGMA + 4);
x->state[2] = U8TO32_LITTLE(SIGMA + 8);
x->state[3] = U8TO32_LITTLE(SIGMA + 12);
x->state[4] = U8TO32_LITTLE(key + 0);
x->state[5] = U8TO32_LITTLE(key + 4);
x->state[6] = U8TO32_LITTLE(key + 8);
x->state[7] = U8TO32_LITTLE(key + 12);
x->state[8] = U8TO32_LITTLE(key + 16);
x->state[9] = U8TO32_LITTLE(key + 20);
x->state[10] = U8TO32_LITTLE(key + 24);
x->state[11] = U8TO32_LITTLE(key + 28);
}
else {
// 128 bit key.
x->state[0] = U8TO32_LITTLE(TAU + 0);
x->state[1] = U8TO32_LITTLE(TAU + 4);
x->state[2] = U8TO32_LITTLE(TAU + 8);
x->state[3] = U8TO32_LITTLE(TAU + 12);
x->state[4] = U8TO32_LITTLE(key + 0);
x->state[5] = U8TO32_LITTLE(key + 4);
x->state[6] = U8TO32_LITTLE(key + 8);
x->state[7] = U8TO32_LITTLE(key + 12);
x->state[8] = U8TO32_LITTLE(key + 0);
x->state[9] = U8TO32_LITTLE(key + 4);
x->state[10] = U8TO32_LITTLE(key + 8);
x->state[11] = U8TO32_LITTLE(key + 12);
}
*/
// 128 bit key.
x->state[0] = U8TO32_LITTLE(TAU + 0);
x->state[1] = U8TO32_LITTLE(TAU + 4);
x->state[2] = U8TO32_LITTLE(TAU + 8);
x->state[3] = U8TO32_LITTLE(TAU + 12);
x->state[4] = U8TO32_LITTLE(key + 0);
x->state[5] = U8TO32_LITTLE(key + 4);
x->state[6] = U8TO32_LITTLE(key + 8);
x->state[7] = U8TO32_LITTLE(key + 12);
x->state[8] = U8TO32_LITTLE(key + 0);
x->state[9] = U8TO32_LITTLE(key + 4);
x->state[10] = U8TO32_LITTLE(key + 8);
x->state[11] = U8TO32_LITTLE(key + 12);
// Reset block counter and add IV to state.
x->state[12] = 0;
x->state[13] = 0;
x->state[14] = U8TO32_LITTLE(iv + 0);
x->state[15] = U8TO32_LITTLE(iv + 4);
}
//------------------------------------------------------------------
// next()
//
// Given a pointer to the next block m of 64 cleartext bytes will
// use the given context to transform (encrypt/decrypt) the
// block. The result will be stored in c.
//------------------------------------------------------------------
static __inline void next(chacha_ctx *ctx, uint8_t *m, const uint8_t *m_end)
{
// Temporary internal state x.
uint8_t x[64];
uint8_t i;
// Update the internal state and increase the block counter.
doublerounds(x, ctx->state, ctx->rounds);
ctx->state[12] = PLUSONE(ctx->state[12]);
if (!ctx->state[12]) {
ctx->state[13] = PLUSONE(ctx->state[13]);
}
// XOR the input block with the new temporal state to
// create the transformed block.
/*
if (m+64 > m_end) {
return;
}
#pragma clang loop unroll (full)
for (i = 0 ; i < 64 ; ++i) {
//c[i] = m[i] ^ x[i];
m[i] ^= x[i];
}
*/
uint64_t * m_pos;
uint64_t * x_pos;
#pragma clang loop unroll (full)
for (i = 0 ; i < 8 ; ++i) {
//c[i] = m[i] ^ x[i];
m_pos = (uint64_t*)(m) + i;
x_pos = (uint64_t*)(x) + i;
*m_pos ^= *x_pos;
}
}
//------------------------------------------------------------------
// init_ctx()
//
// Init a given ChaCha context by setting state to zero and
// setting the given number of rounds.
//------------------------------------------------------------------
static __inline void init_ctx(chacha_ctx *ctx, uint8_t rounds)
{
uint8_t i;
#pragma clang loop unroll (full)
for (i = 0 ; i < 16 ; i++) {
ctx->state[i] = 0;
}
ctx->rounds = rounds;
}
/*
static __inline int parse_tcp(struct xdp_md *ctx, __u64 nf_off) {
void *data_end = (void*)(long)ctx->data_end;
void *data = (void*)(long)ctx->data;
chacha_ctx cha_ctx;
//struct tcphdr *tcph;
uint8_t *pkt_data;
__u32 tcp_off;
//tcph = data + nf_off;
// pkt_data is the tcp payload
tcp_off = sizeof(struct tcphdr);
nf_off += tcp_off;
if (data + nf_off > data_end) {
return XDP_DROP;
}
pkt_data = data + nf_off;
return XDP_PASS;
}*/
static __always_inline bool parse_transport(void *data, __u64 off, void *data_end) {
struct udphdr *tudp;
tudp = data + off;
if (tudp + 1 > data_end) {
return false;
}
else {
return true;
}
}
static __inline int parse_ip(struct xdp_md *ctx, __u64 nf_off) {
void *data_end = (void*)(long)ctx->data_end;
void *data = (void*)(long)ctx->data;
struct iphdr *iph;
__u32 ip_off;
__u8 ip_protocol;
iph = data + nf_off;
if (iph + 1 > data_end) {
return XDP_DROP;
}
if (iph->ihl != 5) {
return XDP_DROP;
}
ip_protocol = iph->protocol;
ip_off = sizeof(struct iphdr);
nf_off += ip_off;
if (iph->frag_off & IP_FRAGMENTED) {
return XDP_DROP;
}
if (ip_protocol == IPPROTO_TCP) {
if (!parse_transport(data, nf_off, data_end)) {
return XDP_DROP;
}
else {
nf_off += sizeof(struct tcphdr);
}
}
else if (ip_protocol == IPPROTO_UDP) {
if (!parse_transport(data, nf_off, data_end)) {
return XDP_DROP;
}
else {
nf_off += sizeof(struct udphdr);
}
}
else {
return XDP_PASS;
}
chacha_ctx cha_ctx;
uint8_t *pkt_data = data + nf_off;
/*
uint8_t t_result[64] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
*/
uint8_t t_key[32] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
uint8_t t_iv[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
init_ctx(&cha_ctx, CHACHA_ROUNDS);
init(&cha_ctx, t_key, 128, t_iv);
// loop here
int32_t i;
#pragma clang loop unroll (full)
for(i=0; i <= 23; i++) {
if (pkt_data + 64 > data_end) {
break;
}
//next(&cha_ctx, pkt_data, data_end, t_result);
next(&cha_ctx, pkt_data, data_end);
//memcpy(pkt_data, t_result, sizeof(t_result));
pkt_data += (__u64)64;
}
return XDP_TX;
}
SEC("chacha")
int cha(struct xdp_md *ctx){
void *data_end = (void *)(long)ctx->data_end;
void *data = (void *)(long)ctx->data;
struct ethhdr *eth = data;
__u32 eth_proto;
__u32 nh_off;
nh_off = sizeof(struct ethhdr);
if (data + nh_off > data_end)
return XDP_PASS;
eth_proto = eth->h_proto;
// the demo program only accepts IPv4 packets.
if (eth_proto == bpf_htons(ETH_P_IP)) {
return parse_ip(ctx, nh_off);
}
else {
return XDP_PASS;
}
}