This file is indexed.

/usr/src/west-chamber-20100405+svn20111107.r124/extensions/libxt_gfw.c is in west-chamber-dkms 20100405+svn20111107.r124-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#include <stdio.h>
#include <xtables.h>

static void gfw_mt_help(void)
{
	printf("gfw takes no options\n");
}

static int gfw_mt_parse(int c, char **argv, int invert, unsigned int *flags,
                           const void *entry, struct xt_entry_match **match)
{
	return 0;
}

static struct xtables_match gfw_mt_reg = {
	.version        = XTABLES_VERSION,
	.name           = "gfw",
	.revision       = 0,
	.family         = PF_INET,
	.help           = gfw_mt_help,
	.parse          = gfw_mt_parse,
};

static void _init(void)
{
	xtables_register_match(&gfw_mt_reg);
}