瀏覽代碼

ocserv: enable the X-CSTP-DynDNS header

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Nikos Mavrogiannopoulos 10 年之前
父節點
當前提交
cceb3799e3

+ 5
- 0
net/ocserv/files/ocserv.conf.template 查看文件

@@ -18,6 +18,11 @@ auth = "|AUTH|"
18 18
 # A banner to be displayed on clients
19 19
 banner = "Welcome to OpenWRT"
20 20
 
21
+# When the server has a dynamic DNS address (that may change),
22
+# should set that to true to ask the client to resolve again on
23
+# reconnects.
24
+listen-host-is-dyndns = |DYNDNS|
25
+
21 26
 # Use listen-host to limit to specific IPs or to the IPs of a provided 
22 27
 # hostname.
23 28
 #listen-host = [IP|HOSTNAME]

+ 6
- 1
net/ocserv/files/ocserv.init 查看文件

@@ -30,12 +30,17 @@ setup_config() {
30 30
 
31 31
 	test $auth = "plain" && authsuffix="\[/var/etc/ocpasswd\]"
32 32
 
33
+	dyndns="false"
34
+	hostname=`uci show ddns|grep domain|head -1|cut -d '=' -f 1`
35
+	[ -n "$hostname" ] && dyndns="true"
36
+
33 37
 	mkdir -p /var/etc
34 38
 	sed -e "s/|PORT|/$port/g" \
35 39
 	    -e "s/|MAX_CLIENTS|/$max_clients/g" \
36 40
 	    -e "s/|MAX_SAME|/$max_same/g" \
37 41
 	    -e "s/|DPD|/$dpd/g" \
38 42
 	    -e "s#|AUTH|#$auth$authsuffix#g" \
43
+	    -e "s#|DYNDNS|#$dyndns#g" \
39 44
 	    -e "s/|PREDICTABLE_IPS|/$predictable_ips/g" \
40 45
 	    -e "s/|CISCO_COMPAT|/$cisco_compat/g" \
41 46
 	    -e "s/|UDP|/$udp/g" \
@@ -86,7 +91,7 @@ setup_dns() {
86 91
 start() {
87 92
 	local hostname iface
88 93
 
89
-	hostname=`uci get ddns.myddns.domain`
94
+	hostname=`uci show ddns|grep domain|head -1|cut -d '=' -f 1`
90 95
 	[ -z "$hostname" ] && hostname=`uci get system.@system[0].hostname`
91 96
 
92 97
 	[ ! -f /etc/ocserv/ca-key.pem ] && [ -x /usr/bin/certtool ] && {

+ 101
- 0
net/ocserv/patches/002-Notify-the-client-that-the-server-may-have-a-dynamic.patch 查看文件

@@ -0,0 +1,101 @@
1
+From cb9dcde3874441bf66d52b70ac8b0d6f6bb557d9 Mon Sep 17 00:00:00 2001
2
+From: Nikos Mavrogiannopoulos <nmav@gnutls.org>
3
+Date: Sun, 30 Nov 2014 11:30:08 +0100
4
+Subject: [PATCH] Notify the client that the server may have a dynamic DNS
5
+ address
6
+
7
+That is send "X-CSTP-DynDNS: true", in CSTP headers if the
8
+server is configured as having a dynamic DNS address.
9
+---
10
+ doc/sample.config   | 5 +++++
11
+ src/config.c        | 2 ++
12
+ src/ocserv-args.def | 5 +++++
13
+ src/vpn.h           | 1 +
14
+ src/worker-vpn.c    | 7 +++++++
15
+ 5 files changed, 20 insertions(+)
16
+
17
+diff --git a/doc/sample.config b/doc/sample.config
18
+index a39e573..e07e36a 100644
19
+--- a/doc/sample.config
20
++++ b/doc/sample.config
21
+@@ -51,6 +51,11 @@ max-same-clients = 2
22
+ # hostname.
23
+ #listen-host = [IP|HOSTNAME]
24
+ 
25
++# When the server has a dynamic DNS address (that may change),
26
++# should set that to true to ask the client to resolve again on
27
++# reconnects.
28
++#listen-host-is-dyndns = true
29
++
30
+ # TCP and UDP port number
31
+ tcp-port = 443
32
+ udp-port = 443
33
+diff --git a/src/config.c b/src/config.c
34
+index 2721a45..0b7e029 100644
35
+--- a/src/config.c
36
++++ b/src/config.c
37
+@@ -60,6 +60,7 @@ static struct cfg_options available_options[] = {
38
+ 	{ .name = "custom-header", .type = OPTION_MULTI_LINE, .mandatory = 0 },
39
+ 	{ .name = "split-dns", .type = OPTION_MULTI_LINE, .mandatory = 0 },
40
+ 	{ .name = "listen-host", .type = OPTION_STRING, .mandatory = 0 },
41
++	{ .name = "listen-host-is-dyndns", .type = OPTION_BOOLEAN, .mandatory = 0 },
42
+ 	{ .name = "tcp-port", .type = OPTION_NUMERIC, .mandatory = 0 },
43
+ 	{ .name = "udp-port", .type = OPTION_NUMERIC, .mandatory = 0 },
44
+ 	{ .name = "keepalive", .type = OPTION_NUMERIC, .mandatory = 0 },
45
+@@ -403,6 +404,7 @@ unsigned force_cert_auth;
46
+ 	 * reload_cfg_file();
47
+ 	 */
48
+ 	READ_STRING("listen-host", config->name);
49
++	READ_TF("listen-host-is-dyndns", config->is_dyndns, 0);
50
+ 
51
+ 	READ_NUMERIC("tcp-port", config->port);
52
+ 	READ_NUMERIC("udp-port", config->udp_port);
53
+diff --git a/src/ocserv-args.def b/src/ocserv-args.def
54
+index cdc60bd..146e59a 100644
55
+--- a/src/ocserv-args.def
56
++++ b/src/ocserv-args.def
57
+@@ -126,6 +126,11 @@ max-same-clients = 2
58
+ # hostname.
59
+ #listen-host = [IP|HOSTNAME]
60
+ 
61
++# When the server has a dynamic DNS address (that may change),
62
++# should set that to true to ask the client to resolve again on
63
++# reconnects.
64
++#listen-host-is-dyndns = true
65
++
66
+ # TCP and UDP port number
67
+ tcp-port = 3333
68
+ udp-port = 3333
69
+diff --git a/src/vpn.h b/src/vpn.h
70
+index a460370..03721e1 100644
71
+--- a/src/vpn.h
72
++++ b/src/vpn.h
73
+@@ -188,6 +188,7 @@ struct cfg_st {
74
+ 	char *name; /* server name */
75
+ 	unsigned int port;
76
+ 	unsigned int udp_port;
77
++	unsigned int is_dyndns;
78
+ 	char* unix_conn_file;
79
+ 
80
+ 	char *pin_file;
81
+diff --git a/src/worker-vpn.c b/src/worker-vpn.c
82
+index 364cbff..4cb5d99 100644
83
+--- a/src/worker-vpn.c
84
++++ b/src/worker-vpn.c
85
+@@ -1650,6 +1650,13 @@ static int connect_handler(worker_st * ws)
86
+ 		     "X-CSTP-Smartcard-Removal-Disconnect: true\r\n");
87
+ 	SEND_ERR(ret);
88
+ 
89
++	if (ws->config->is_dyndns != 0) {
90
++		ret =
91
++		    cstp_puts(ws,
92
++			     "X-CSTP-DynDNS: true\r\n");
93
++		SEND_ERR(ret);
94
++	}
95
++
96
+ 	if (ws->config->rekey_time > 0) {
97
+ 		unsigned method;
98
+ 
99
+-- 
100
+2.1.3
101
+