lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
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
/*
 * Shared library add-on to iptables to add CONNSECMARK target support.
 *
 * Based on the MARK and CONNMARK targets.
 *
 * Copyright (C) 2006 Red Hat, Inc., James Morris <jmorris@redhat.com>
 */
#include <stdio.h>
#include <xtables.h>
#include <linux/netfilter/xt_CONNSECMARK.h>
 
#define PFX "CONNSECMARK target: "
 
enum {
   O_SAVE = 0,
   O_RESTORE,
   F_SAVE    = 1 << O_SAVE,
   F_RESTORE = 1 << O_RESTORE,
};
 
static void CONNSECMARK_help(void)
{
   printf(
"CONNSECMARK target options:\n"
"  --save                   Copy security mark from packet to conntrack\n"
"  --restore                Copy security mark from connection to packet\n");
}
 
static const struct xt_option_entry CONNSECMARK_opts[] = {
   {.name = "save", .id = O_SAVE, .excl = F_RESTORE, .type = XTTYPE_NONE},
   {.name = "restore", .id = O_RESTORE, .excl = F_SAVE,
    .type = XTTYPE_NONE},
   XTOPT_TABLEEND,
};
 
static void CONNSECMARK_parse(struct xt_option_call *cb)
{
   struct xt_connsecmark_target_info *info = cb->data;
 
   xtables_option_parse(cb);
   switch (cb->entry->id) {
   case O_SAVE:
       info->mode = CONNSECMARK_SAVE;
       break;
   case O_RESTORE:
       info->mode = CONNSECMARK_RESTORE;
       break;
   }
}
 
static void CONNSECMARK_check(struct xt_fcheck_call *cb)
{
   if (cb->xflags == 0)
       xtables_error(PARAMETER_PROBLEM, PFX "parameter required");
}
 
static void print_connsecmark(const struct xt_connsecmark_target_info *info)
{
   switch (info->mode) {
   case CONNSECMARK_SAVE:
       printf("save");
       break;
       
   case CONNSECMARK_RESTORE:
       printf("restore");
       break;
       
   default:
       xtables_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode);
   }
}
 
static void
CONNSECMARK_print(const void *ip, const struct xt_entry_target *target,
                  int numeric)
{
   const struct xt_connsecmark_target_info *info =
       (struct xt_connsecmark_target_info*)(target)->data;
 
   printf(" CONNSECMARK ");
   print_connsecmark(info);
}
 
static void
CONNSECMARK_save(const void *ip, const struct xt_entry_target *target)
{
   const struct xt_connsecmark_target_info *info =
       (struct xt_connsecmark_target_info*)target->data;
 
   printf(" --");
   print_connsecmark(info);
}
 
static struct xtables_target connsecmark_target = {
   .family        = NFPROTO_UNSPEC,
   .name        = "CONNSECMARK",
   .version    = XTABLES_VERSION,
   .revision    = 0,
   .size        = XT_ALIGN(sizeof(struct xt_connsecmark_target_info)),
   .userspacesize    = XT_ALIGN(sizeof(struct xt_connsecmark_target_info)),
   .help        = CONNSECMARK_help,
   .print        = CONNSECMARK_print,
   .save        = CONNSECMARK_save,
   .x6_parse    = CONNSECMARK_parse,
   .x6_fcheck    = CONNSECMARK_check,
   .x6_options    = CONNSECMARK_opts,
};
 
void _init(void)
{
   xtables_register_target(&connsecmark_target);
}