Determine peer's reflexive address and port when exchanging keys.
[tinc] / src / protocol_misc.c
1 /*
2     protocol_misc.c -- handle the meta-protocol, miscellaneous functions
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2009 Guus Sliepen <guus@tinc-vpn.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "system.h"
22
23 #include "conf.h"
24 #include "connection.h"
25 #include "logger.h"
26 #include "meta.h"
27 #include "net.h"
28 #include "netutl.h"
29 #include "protocol.h"
30 #include "utils.h"
31
32 int maxoutbufsize = 0;
33
34 /* Status and error notification routines */
35
36 bool send_status(connection_t *c, int statusno, const char *statusstring) {
37         if(!statusstring)
38                 statusstring = "Status";
39
40         return send_request(c, "%d %d %s", STATUS, statusno, statusstring);
41 }
42
43 bool status_h(connection_t *c) {
44         int statusno;
45         char statusstring[MAX_STRING_SIZE];
46
47         if(sscanf(c->buffer, "%*d %d " MAX_STRING, &statusno, statusstring) != 2) {
48                 logger(LOG_ERR, "Got bad %s from %s (%s)", "STATUS",
49                            c->name, c->hostname);
50                 return false;
51         }
52
53         ifdebug(STATUS) logger(LOG_NOTICE, "Status message from %s (%s): %d: %s",
54                            c->name, c->hostname, statusno, statusstring);
55
56         return true;
57 }
58
59 bool send_error(connection_t *c, int err, const char *errstring) {
60         if(!errstring)
61                 errstring = "Error";
62
63         return send_request(c, "%d %d %s", ERROR, err, errstring);
64 }
65
66 bool error_h(connection_t *c) {
67         int err;
68         char errorstring[MAX_STRING_SIZE];
69
70         if(sscanf(c->buffer, "%*d %d " MAX_STRING, &err, errorstring) != 2) {
71                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ERROR",
72                            c->name, c->hostname);
73                 return false;
74         }
75
76         ifdebug(ERROR) logger(LOG_NOTICE, "Error message from %s (%s): %d: %s",
77                            c->name, c->hostname, err, errorstring);
78
79         terminate_connection(c, c->status.active);
80
81         return true;
82 }
83
84 bool send_termreq(connection_t *c) {
85         return send_request(c, "%d", TERMREQ);
86 }
87
88 bool termreq_h(connection_t *c) {
89         terminate_connection(c, c->status.active);
90
91         return true;
92 }
93
94 bool send_ping(connection_t *c) {
95         c->status.pinged = true;
96         c->last_ping_time = now;
97
98         return send_request(c, "%d", PING);
99 }
100
101 bool ping_h(connection_t *c) {
102         return send_pong(c);
103 }
104
105 bool send_pong(connection_t *c) {
106         return send_request(c, "%d", PONG);
107 }
108
109 bool pong_h(connection_t *c) {
110         c->status.pinged = false;
111
112         /* Succesful connection, reset timeout if this is an outgoing connection. */
113
114         if(c->outgoing)
115                 c->outgoing->timeout = 0;
116
117         return true;
118 }
119
120 /* Sending and receiving packets via TCP */
121
122 bool send_tcppacket(connection_t *c, vpn_packet_t *packet) {
123         /* If there already is a lot of data in the outbuf buffer, discard this packet.
124            We use a very simple Random Early Drop algorithm. */
125
126         if(2.0 * c->outbuflen / (float)maxoutbufsize - 1 > (float)rand()/(float)RAND_MAX)
127                 return true;
128
129         if(!send_request(c, "%d %hd", PACKET, packet->len))
130                 return false;
131
132         return send_meta(c, (char *)packet->data, packet->len);
133 }
134
135 bool tcppacket_h(connection_t *c) {
136         short int len;
137
138         if(sscanf(c->buffer, "%*d %hd", &len) != 1) {
139                 logger(LOG_ERR, "Got bad %s from %s (%s)", "PACKET", c->name,
140                            c->hostname);
141                 return false;
142         }
143
144         /* Set reqlen to len, this will tell receive_meta() that a tcppacket is coming. */
145
146         c->tcplen = len;
147
148         return true;
149 }