-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.txt
548 lines (344 loc) · 17.9 KB
/
README.txt
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
= nfq and nfct - bindings to libnetfilter_queue and libnetfilter_conntrack
To build, see Makefile.
Homepage: <https://github.com/sam-github/netfilter-lua>
Author: <[email protected]>
Documentation:
See below, extracted from in-source comments.
** nfq - a binding to netfilter's queue subsystem
-- qhandle = nfq.open()
Return an nfqueue qhandle on success, or nil,emsg,errno on failure.
-- nfq.close(qhandle)
Close the qhandle, freeing its resources.
- fd = nfq.fd(qhandle)
Return the underlying fd used by the qhandle, useful for
selecting on.
-- qhandle = nfq.setblocking(qhandle, [blocking])
blocking is true to set blocking, and false to set non-blocking (default is false)
Return is qhandle on success, or nil,emsg,errno on failure.
-- qhandle = nfq.unbind_pf(qhandle, family)
Protocol family is one of "inet", "inet6".
Return is qhandle on success and nil,emsg,errno on failure.
-- qhandle = nfq.bind_pf(qhandle, family)
Protocol family is one of "inet", "inet6".
Note that sample code seems to always unbind before binding, I've no idea why,
and there is no indication of whether its possible to bind to multiple address
families.
Return is qhandle on success and nil,emsg,errno on failure.
-- qhandle = nfq.catch(qhandle, cbfn)
-- verdict = cbfn(qdata)
cbfn - a function called for every queued packet with one argument, qdata. It
returns "accept" or "drop" meaning to do that to the packet. For no return
value, the default is "accept". If the packet is accepted, the cbfn can
optionally return a second argument, a string that replaces the current packet.
Return qhandle on success and nil,emsg,errno on failure.
-- loop = nfq.loop(cb, copy)
A one shot way to catch on queue zero, the equivalent of:
h = nfq.open()
nfq.unbind_pf(h, "inet")
nfq.bind_pf(h, "inet")
q = nfq.create_queue(h, 0)
nfq.set_mode(q, copy, 0xffff)
... = nfq.catch(h, cb)
nfq.destroy_queue(q)
nfq.close(h)
return ...
DEPRECATED - don't use it in new code, it will be deleted as soon as
the existing users of it have been updated.
-- queue = nfq.create_queue(qhandle, queuenum)
queuenum is number of the queue to bind to.
Return a queue on success, or nil,emsg,errno on failure.
-- nfq.destroy_queue(queue)
Close the queue, freeing its resources.
-- queue = nfq.set_mode(queue, copy, range)
queue is returned by nfq.create_queue().
copy is one of "none" (a no-op, don't use it), "meta" (copy just packet
metadata), or "packet" (copy the full packet) (default is currently "packet").
range is the size of the packet to copy, and is optional (it defaults to
0xffff, larger than any ethernet packet can be, and larger than any link
layer packet I'm aware of).
Returns the queue on success and nil,emsg,errno on failure.
-- str = nfq.get_payload(cbctx)
str is the IP payload, it has been stripped of link-layer headers.
** nfct - a binding to netfilter's conntrack subsystem
NOTE I know its confusing that the nfct module has functions that should be
called on different kinds of objects mixed together, but unless I make full
userdata out of one or both of them, thats what it has to be. Don't confuse
them, or you will segfault!
Also, the netfilter libraries use assert() to check for invalid argument
checking, and non-type-safe APIs. The end result is you can absolutely
segfault or abort if you misuse this module.
-- cthandle = nfct.open(subsys, [subscription...])
subsys is "conntrack", "expect", or "both".
subscription is the groups for which notifications are requested, zero or more of
"none", "new", "update", "destroy", or "all" (default is "none").
Returns a conntrack handle on success, or nil,emsg,errno on failure.
There is no garbage collection, nfct.fini() must be called on the handle to
release it's resources.
-- nfct.close(cthandle)
Close the conntrack handle, freeing its resources.
-- fd = nfct.fd(cthandle)
Return the underlying fd used by the conntrack handle, useful for
selecting on.
-- cthandle = nfct.setblocking(cthandle, [blocking])
blocking is true to set blocking, and false to set non-blocking (default is false)
Return is cthandle on success, or nil,emsg,errno on failure.
-- cthandle = nfct.ct_callback_register(cthandle, ctcb, ctmsgtype)
-- cthandle = nfct.exp_callback_register(cthandle, expcb, ctmsgtype)
For each subsystem (conntrack and expect) only one registration can be active
at a time, the latest call replaces any previous ones.
Callbacks can't be registered for a subsystem that wasn't opened.
The callback function will be called as either
verdict = ctcb(ctmsgtype, ct)
verdict = expcb(ctmsgtype, exp)
depending on which register is called. Since you can't know the type of the object,
use different callback functions.
ctmsgtype is one of "new", "update", "destroy", "all", or "error" (default is "all").
The callback can return any of "failure", "stop", "continue", or "stolen" (the
default is "continue"):
"failure" will stop the loop,
"continue" will continue with the next message, and
"stolen" is like continue, except the conntrack or expect object will
not be destroyed (the user must destroy it later with the appropriate
nfct.destroy() or nfct.exp_destroy or resources will be leaked)
Returns cthandle on success, nil,emsg,errno on failure.
-- cthandle = nfct.catch(cthandle)
Return is the cthandle on success, or nil,emsg,errno on failure.
-- nfct.loop(cthandle, ctmsgtype, ctcb)
Equivalent to
nfct.ct_callback_register(cthandle, ctcb, ctmsgtype)
return nfct.catch(cthandle)
Will probably be removed soon.
-- ct = nfct.new()
Create a new conntrack context (NOT a conntrack handle).
No garbage collection on the context is done, it must be destroyed with
nfct.destroy() or resources will be leaked.
Return is the conntrack context on sucess, and nil,emsg,errno on failure (but
it can only fail if malloc fails).
-- nfct.destroy(ct)
Destroy a conntrack context.
Note that only contexts created with nfct.new() should be destroyed - in particular,
the ct passed in a nfct.loop() callback should NOT be destroyed.
-- str = nfct.tostring(ct, ctmsgtype)
ctmsgtype is one of "new", "update", "destroy", or nil (meaning msg type is unknown).
Returns a string representation of a conntrack.
-- ct = nfct.setobjopt(ct, option)
Sets an option on a conntrack context, option is one of:
"undo-snat",
"undo-dnat",
"undo-spat",
"undo-dpat",
"setup-original",
"setup-reply"
Returns ct on success so calls can be chained, and nil,emsg,errno on failure.
-- value = nfct.get_attr_u8(ct, attr)
-- value = nfct.get_attr_u16(ct, attr)
-- value = nfct.get_attr_u32(ct, attr)
-- value = nfct.get_attr_n16(ct, attr)
-- value = nfct.get_attr_n32(ct, attr)
-- value = nfct.get_attr_port(ct, attr)
No error checking is done, values of zero will be returned for
attributes that aren't present, and undefined values will be returned
for attributes that aren't actually of the type requested. Also,
the attribute value may be in network byte order.
ct is a conntrack context (NOT a conntrack handle, do not mix the two).
get_attr_n#() is like the "u" version, but it converts the number from network
to host byte order.
get_attr_port() is an alias for get_attr_n16(), since TCP and UDP ports are n16.
attr is one of the enum nf_conntrack_attr values, where some aliases are
provided for the more commonly used origin attributes:
orig-ipv4-src -- ATTR_ORIG_IPV4_SRC, u32 bits
ipv4-src -- ATTR_IPV4_SRC, alias
orig-ipv4-dst -- ATTR_ORIG_IPV4_DST, u32 bits
ipv4-dst -- ATTR_IPV4_DST, alias
repl-ipv4-src -- ATTR_REPL_IPV4_SRC, u32 bits
repl-ipv4-dst -- ATTR_REPL_IPV4_DST, u32 bits
orig-ipv6-src -- ATTR_ORIG_IPV6_SRC, u128 bits
ipv6-src -- ATTR_IPV6_SRC, alias
orig-ipv6-dst -- ATTR_ORIG_IPV6_DST, u128 bits
ipv6-dst -- ATTR_IPV6_DST, alias
repl-ipv6-src -- ATTR_REPL_IPV6_SRC, u128 bits
repl-ipv6-dst -- ATTR_REPL_IPV6_DST, u128 bits
orig-port-src -- ATTR_ORIG_PORT_SRC, u16 bits
port-src -- ATTR_PORT_SRC, alias
orig-port-dst -- ATTR_ORIG_PORT_DST, u16 bits
port-dst -- ATTR_PORT_DST, alias
repl-port-src -- ATTR_REPL_PORT_SRC, u16 bits
repl-port-dst -- ATTR_REPL_PORT_DST, u16 bits
icmp-type -- ATTR_ICMP_TYPE, u8 bits
icmp-code -- ATTR_ICMP_CODE, u8 bits
icmp-id -- ATTR_ICMP_ID, u16 bits
orig-l3proto -- ATTR_ORIG_L3PROTO, u8 bits
l3proto -- ATTR_L3PROTO, alias
repl-l3proto -- ATTR_REPL_L3PROTO, u8 bits
orig-l4proto -- ATTR_ORIG_L4PROTO, u8 bits
l4proto -- ATTR_L4PROTO, alias
repl-l4proto -- ATTR_REPL_L4PROTO, u8 bits
tcp-state -- ATTR_TCP_STATE, u8 bits
snat-ipv4 -- ATTR_SNAT_IPV4, u32 bits
dnat-ipv4 -- ATTR_DNAT_IPV4, u32 bits
snat-port -- ATTR_SNAT_PORT, u16 bits
dnat-port -- ATTR_DNAT_PORT, u16 bits
timeout -- ATTR_TIMEOUT, u32 bits
mark -- ATTR_MARK, u32 bits
orig-counter-packets -- ATTR_ORIG_COUNTER_PACKETS, u32 bits
repl-counter-packets -- ATTR_REPL_COUNTER_PACKETS, u32 bits
orig-counter-bytes -- ATTR_ORIG_COUNTER_BYTES, u32 bits
repl-counter-bytes -- ATTR_REPL_COUNTER_BYTES, u32 bits
use -- ATTR_USE, u32 bits
id -- ATTR_ID, u32 bits
status -- ATTR_STATUS, u32 bits
tcp-flags-orig -- ATTR_TCP_FLAGS_ORIG, u8 bits
tcp-flags-repl -- ATTR_TCP_FLAGS_REPL, u8 bits
tcp-mask-orig -- ATTR_TCP_MASK_ORIG, u8 bits
tcp-mask-repl -- ATTR_TCP_MASK_REPL, u8 bits
master-ipv4-src -- ATTR_MASTER_IPV4_SRC, u32 bits
master-ipv4-dst -- ATTR_MASTER_IPV4_DST, u32 bits
master-ipv6-src -- ATTR_MASTER_IPV6_SRC, u128 bits
master-ipv6-dst -- ATTR_MASTER_IPV6_DST, u128 bits
master-port-src -- ATTR_MASTER_PORT_SRC, u16 bits
master-port-dst -- ATTR_MASTER_PORT_DST, u16 bits
master-l3proto -- ATTR_MASTER_L3PROTO, u8 bits
master-l4proto -- ATTR_MASTER_L4PROTO, u8 bits
secmark -- ATTR_SECMARK, u32 bits
orig-nat-seq-correction-pos -- ATTR_ORIG_NAT_SEQ_CORRECTION_POS, u32 bits
orig-nat-seq-offset-before -- ATTR_ORIG_NAT_SEQ_OFFSET_BEFORE, u32 bits
orig-nat-seq-offset-after -- ATTR_ORIG_NAT_SEQ_OFFSET_AFTER, u32 bits
repl-nat-seq-correction-pos -- ATTR_REPL_NAT_SEQ_CORRECTION_POS, u32 bits
repl-nat-seq-offset-before -- ATTR_REPL_NAT_SEQ_OFFSET_BEFORE, u32 bits
repl-nat-seq-offset-after -- ATTR_REPL_NAT_SEQ_OFFSET_AFTER, u32 bits
sctp-state -- ATTR_SCTP_STATE, u8 bits
sctp-vtag-orig -- ATTR_SCTP_VTAG_ORIG, u32 bits
sctp-vtag-repl -- ATTR_SCTP_VTAG_REPL, u32 bits
helper-name -- ATTR_HELPER_NAME, string (30 bytes max)
dccp-state -- ATTR_DCCP_STATE, u8 bits
dccp-role -- ATTR_DCCP_ROLE, u8 bits
dccp-handshake-seq -- ATTR_DCCP_HANDSHAKE_SEQ, u64 bits
-- ct = nfct.set_attr_u8(ct, attr, value)
-- ct = nfct.set_attr_u16(ct, attr, value)
-- ct = nfct.set_attr_u32(ct, attr, value)
-- ct = nfct.set_attr_n16(ct, attr, value)
-- ct = nfct.set_attr_n32(ct, attr, value)
-- ct = nfct.set_attr_port(ct, attr, value)
No error checking is done, value will be cast to the necessary type, and who
knows what will happen for values that aren't actually of the correct type for
the attribute. The attribute value may need to be in network byte order.
ct is a conntrack context (NOT a conntrack handle, do not mix the two).
See nfct.get_attr_*() for the supported attr names and types.
Returns the conntrack conntext, so calls can be chained.
-- ct = nfct.set_attr_ipv4(ct, attr, value)
Get an attribute as a string, the internet address in presentation format.
See inet_ntop(3) for more information.
Return is the presentation address, or nil,emsg,errno on failure.
-- ct = nfct.set_attr_ipv4(ct, attr, value)
-- ct = nfct.set_attr_ipv6(ct, attr, value)
Set an attribute as a string, the internet address in presentation format.
See inet_ntop(3) for more information.
Returns the conntrack conntext, so calls can be chained.
-- value = nfct.get_attr_pf(ct, attr)
-- ct = nfct.set_attr_pf(ct, attr, value)
Set or get attributes with address family/protocol values as a string, for
example, the "l3proto".
The address families, such as AF_INET and AF_INET6, are defined in the system
headers to be identical to the equivalent protocol family.
Value is one of:
unspec -- PF_UNSPEC, Unspecified.
local -- PF_LOCAL, Local to host (pipes and file-domain).
unix -- PF_UNIX, POSIX name for PF_LOCAL.
file -- PF_FILE, Another non-standard name for PF_LOCAL.
inet -- PF_INET, IP protocol family.
ax25 -- PF_AX25, Amateur Radio AX.25.
ipx -- PF_IPX, Novell Internet Protocol.
appletalk -- PF_APPLETALK, Appletalk DDP.
netrom -- PF_NETROM, Amateur radio NetROM.
bridge -- PF_BRIDGE, Multiprotocol bridge.
atmpvc -- PF_ATMPVC, ATM PVCs.
x25 -- PF_X25, Reserved for X.25 project.
inet6 -- PF_INET6, IP version 6.
rose -- PF_ROSE, Amateur Radio X.25 PLP.
decnet -- PF_DECnet, Reserved for DECnet project.
netbeui -- PF_NETBEUI, Reserved for 802.2LLC project.
security -- PF_SECURITY, Security callback pseudo AF.
key -- PF_KEY, PF_KEY key management API.
netlink -- PF_NETLINK
route -- PF_ROUTE, Alias to emulate 4.4BSD.
packet -- PF_PACKET, Packet family.
ash -- PF_ASH, Ash.
econet -- PF_ECONET, Acorn Econet.
atmsvc -- PF_ATMSVC, ATM SVCs.
rds -- PF_RDS, RDS sockets.
sna -- PF_SNA, Linux SNA Project
irda -- PF_IRDA, IRDA sockets.
pppox -- PF_PPPOX, PPPoX sockets.
wanpipe -- PF_WANPIPE, Wanpipe API sockets.
llc -- PF_LLC, Linux LLC.
can -- PF_CAN, Controller Area Network.
tipc -- PF_TIPC, TIPC sockets.
bluetooth -- PF_BLUETOOTH, Bluetooth sockets.
iucv -- PF_IUCV, IUCV sockets.
rxrpc -- PF_RXRPC, RxRPC sockets.
isdn -- PF_ISDN, mISDN sockets.
phonet -- PF_PHONET, Phonet sockets.
ieee802154-- PF_IEEE802154, IEEE 802.15.4 sockets.
Get returns the value as a string if it is known, or a number if it is not.
Set returns the conntrack conntext, so calls can be chained.
-- value = nfct.get_attr_ipproto(ct, attr)
-- ct = nfct.set_attr_ipproto(ct, attr, value)
Set or get attributes with IP protocol values as a string, for example, the
"l4proto" attribute if the "l3proto" is "inet" or "inet6".
Value is one of:
ip -- IPPROTO_IP, Dummy protocol for TCP.
hopopts -- IPPROTO_HOPOPTS, IPv6 Hop-by-Hop options.
icmp -- IPPROTO_ICMP, Internet Control Message Protocol.
igmp -- IPPROTO_IGMP, Internet Group Management Protocol.
ipip -- IPPROTO_IPIP, IPIP tunnels (older KA9Q tunnels use 94).
tcp -- IPPROTO_TCP, Transmission Control Protocol.
egp -- IPPROTO_EGP, Exterior Gateway Protocol.
pup -- IPPROTO_PUP, PUP protocol.
udp -- IPPROTO_UDP, User Datagram Protocol.
idp -- IPPROTO_IDP, XNS IDP protocol.
tp -- IPPROTO_TP, SO Transport Protocol Class 4.
dccp -- IPPROTO_DCCP, Datagram Congestion Control Protocol.
ipv6 -- IPPROTO_IPV6, IPv6 header.
routing -- IPPROTO_ROUTING, IPv6 routing header.
fragment -- IPPROTO_FRAGMENT, IPv6 fragmentation header.
rsvp -- IPPROTO_RSVP, Reservation Protocol.
gre -- IPPROTO_GRE, General Routing Encapsulation.
esp -- IPPROTO_ESP, encapsulating security payload.
ah -- IPPROTO_AH, authentication header.
icmpv6 -- IPPROTO_ICMPV6, ICMPv6.
none -- IPPROTO_NONE, IPv6 no next header.
dstopts -- IPPROTO_DSTOPTS, IPv6 destination options.
mtp -- IPPROTO_MTP, Multicast Transport Protocol.
encap -- IPPROTO_ENCAP, Encapsulation Header.
pim -- IPPROTO_PIM, Protocol Independent Multicast.
comp -- IPPROTO_COMP, Compression Header Protocol.
sctp -- IPPROTO_SCTP, Stream Control Transmission Protocol.
udplite -- IPPROTO_UDPLITE, UDP-Lite protocol.
raw -- IPPROTO_RAW, Raw IP packets.
Get returns the value as a string if it is known, or a number if it is not.
Set returns the conntrack conntext, so calls can be chained.
-- exp = nfct.exp_new(ctmaster, ctexpected, ctmask, timeout, flags...)
master, expected, mask are all ct objects, see nfct.new().
timeout is in seconds the expectation will wait for a connection
flags is one or more of "permanent", "inactive", or "userspace", and is optional (default is no flags).
permanent means the expectation remains in place until timeout, even if when connections match (the default
is to clear the connection after an expectaion matches).
userspace appears to be true for all expectations created using this API, I
don't know why its there, and I've no idea what inactive means.
-- str = nfct.exp_tostring(exp, ctmsgtype)
ctmsgtype is one of "new", "update", "destroy", or nil (meaning msg type is unknown).
Returns a string representation of an expectation.
-- cthandle = nfct.exp_query(cthandle, qtype, data)
Currently, only create and destroy is supported.
create -- NFCT_Q_CREATE, data must be an exp object
update -- NFCT_Q_UPDATE
destroy -- NFCT_Q_DESTROY, data must be an exp object
get -- NFCT_Q_GET
flush -- NFCT_Q_FLUSH
dump -- NFCT_Q_DUMP
dump-reset -- NFCT_Q_DUMP_RESET
create-update -- NFCT_Q_CREATE_UPDATE
-- h = nfct.ntohs(n)
-- n = nfct.htons(h)
Convert a short between network and host byte order. No error or bounds
checking on the numbers is done.