liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <arpa/inet.h>
 
#include <libnetfilter_conntrack/libnetfilter_conntrack.h>
#include <libnetfilter_conntrack/libnetfilter_conntrack_tcp.h>
 
int main(void)
{
   int ret;
   struct nfct_handle *h;
   struct nf_conntrack *ct, *expected;
 
   /* create master conntrack */
   ct = nfct_new();
   if (!ct) {
       perror("nfct_new");
       return 0;
   }
 
   nfct_set_attr_u8(ct, ATTR_L3PROTO, AF_INET);
   nfct_set_attr_u32(ct, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
   nfct_set_attr_u32(ct, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
   
   nfct_set_attr_u8(ct, ATTR_L4PROTO, IPPROTO_TCP);
   nfct_set_attr_u16(ct, ATTR_PORT_SRC, htons(20));
   nfct_set_attr_u16(ct, ATTR_PORT_DST, htons(10));
 
   nfct_setobjopt(ct, NFCT_SOPT_SETUP_REPLY);
 
   nfct_set_attr_u8(ct, ATTR_TCP_STATE, TCP_CONNTRACK_SYN_SENT);
   nfct_set_attr_u32(ct, ATTR_TIMEOUT, 100);
 
   h = nfct_open(CONNTRACK, 0);
   if (!h) {
       perror("nfct_open");
       nfct_destroy(ct);
       return -1;
   }
 
   ret = nfct_query(h, NFCT_Q_CREATE, ct);
 
   printf("TEST: create conntrack ");
   if (ret == -1)
       printf("(%d)(%s)\n", ret, strerror(errno));
   else
       printf("(OK)\n");
 
   nfct_destroy(ct);
 
   if (ret == -1)
       exit(EXIT_FAILURE);
 
   /* setup confirmed conntrack */
 
   expected = nfct_new();
   if (!expected) {
       perror("nfct_new");
       return 0;
   }
 
   nfct_set_attr_u8(ct, ATTR_L3PROTO, AF_INET);
   nfct_set_attr_u32(ct, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
   nfct_set_attr_u32(ct, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
   
   nfct_set_attr_u8(ct, ATTR_L4PROTO, IPPROTO_TCP);
   nfct_set_attr_u16(ct, ATTR_PORT_SRC, htons(1024));
   nfct_set_attr_u16(ct, ATTR_PORT_DST, htons(1025));
 
   nfct_setobjopt(ct, NFCT_SOPT_SETUP_REPLY);
 
   nfct_set_attr_u8(ct, ATTR_TCP_STATE, TCP_CONNTRACK_SYN_SENT);
   nfct_set_attr_u32(ct, ATTR_TIMEOUT, 100);
 
   /* my conntrack master is ... */
 
   nfct_set_attr_u8(ct, ATTR_MASTER_L3PROTO, AF_INET);
   nfct_set_attr_u32(ct, ATTR_MASTER_IPV4_SRC, inet_addr("1.1.1.1"));
   nfct_set_attr_u32(ct, ATTR_MASTER_IPV4_DST, inet_addr("2.2.2.2"));
   
   nfct_set_attr_u8(ct, ATTR_MASTER_L4PROTO, IPPROTO_TCP);
   nfct_set_attr_u16(ct, ATTR_MASTER_PORT_SRC, htons(20));
   nfct_set_attr_u16(ct, ATTR_MASTER_PORT_DST, htons(10));
 
   ret = nfct_query(h, NFCT_Q_CREATE, ct);
 
   printf("TEST: create confirmed conntrack ");
   if (ret == -1)
       printf("(%d)(%s)\n", ret, strerror(errno));
   else
       printf("(OK)\n");
 
   nfct_close(h);
 
   nfct_destroy(expected);
 
   ret == -1 ? exit(EXIT_FAILURE) : exit(EXIT_SUCCESS);
}