File: reddns.c

package info (click to toggle)
redsocks 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 592 kB
  • sloc: ansic: 6,196; python: 505; sh: 185; makefile: 96
file content (96 lines) | stat: -rw-r--r-- 2,621 bytes parent folder | download | duplicates (4)
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
/* redsocks - transparent TCP-to-proxy redirector
 * Copyright (C) 2007-2011 Leonid Evdokimov <leon@darkk.net.ru>
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License.  You may obtain a copy
 * of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include "parser.h"
#include "main.h"

typedef struct reddns_config_t reddns_config;
struct reddns_config_t {
	struct sockaddr_in bindaddr;
	struct sockaddr_in relayaddr;
	struct in_addr     fakenet;
	struct in_addr     fakenetmask;
};

int reddns_onenter(parser_section *section)
{
	reddns_config *conf = calloc(1, sizeof(reddns_config));
	section->data = conf;
	section->entries[0].addr = &conf->bindaddr.sin_port;
	section->entries[1].addr = &conf->fakenet;
	section->entries[2].addr = &conf->fakenetmask;
	section->entries[3].addr = &conf->relayaddr.sin_addr;
	section->entries[4].addr = &conf->relayaddr.sin_port;
	fprintf(stderr, "%s\n", __FUNCTION__);
	return 0;
}

int reddns_onexit(parser_section *section)
{
	reddns_config *conf = section->data;
	fprintf(stderr,
			"%s {\n"
			"local_port = %u;\n"
			"fakeip_net = %s/%s;\n"
			"ip = %s;\n"
			"port = %u;\n"
			"}\n",
			__FUNCTION__,
			conf->bindaddr.sin_port,
			strdup(inet_ntoa(conf->fakenet)),
			strdup(inet_ntoa(conf->fakenetmask)),
			strdup(inet_ntoa(conf->relayaddr.sin_addr)),
			conf->relayaddr.sin_port
			);
	return 0;
}

parser_entry reddns_entries[] = {
	{ .key = "local_port",     .type = pt_uint16 },
	{ .key = "fakeip_net",     .type = pt_in_addr2 },
	{ .key = "fakeip_netmask", .type = pt_in_addr },
	{ .key = "ip",             .type = pt_in_addr },
	{ .key = "port",           .type = pt_uint16 },
	{ }
};

parser_section reddns_conf_section = {
	.name    = "reddns",
	.entries = reddns_entries,
	.onenter = reddns_onenter,
	.onexit  = reddns_onexit
};

int reddns_init() {
#error It's non-working stub at the moment.
	return 0;
}

int reddns_fini() {
	return 0;
}

app_subsys reddns_subsys = {
	.init = reddns_init,
	.fini = reddns_fini,
	.conf_section = &reddns_conf_section,
};

/* vim:set tabstop=4 softtabstop=4 shiftwidth=4: */
/* vim:set foldmethod=marker foldlevel=32 foldmarker={,}: */