2 protocol_auth.c -- handle the meta-protocol, authentication
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2017 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
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.
24 #include "connection.h"
26 #include "control_common.h"
48 #include "ed25519/sha512.h"
50 int invitation_lifetime;
51 ecdsa_t *invitation_key = NULL;
53 static bool send_proxyrequest(connection_t *c) {
59 sockaddr2str(&c->address, &host, &port);
60 send_request(c, "CONNECT %s:%s HTTP/1.1\r\n\r", host, port);
67 if(c->address.sa.sa_family != AF_INET) {
68 logger(DEBUG_ALWAYS, LOG_ERR, "Cannot connect to an IPv6 host through a SOCKS 4 proxy!");
72 char s4req[9 + (proxyuser ? strlen(proxyuser) : 0)];
75 memcpy(s4req + 2, &c->address.in.sin_port, 2);
76 memcpy(s4req + 4, &c->address.in.sin_addr, 4);
79 memcpy(s4req + 8, proxyuser, strlen(proxyuser));
82 s4req[sizeof(s4req) - 1] = 0;
84 return send_meta(c, s4req, sizeof(s4req));
88 int len = 3 + 6 + (c->address.sa.sa_family == AF_INET ? 4 : 16);
92 len += 3 + strlen(proxyuser) + strlen(proxypass);
103 s5req[i++] = strlen(proxyuser);
104 memcpy(s5req + i, proxyuser, strlen(proxyuser));
105 i += strlen(proxyuser);
106 s5req[i++] = strlen(proxypass);
107 memcpy(s5req + i, proxypass, strlen(proxypass));
108 i += strlen(proxypass);
118 if(c->address.sa.sa_family == AF_INET) {
120 memcpy(s5req + i, &c->address.in.sin_addr, 4);
122 memcpy(s5req + i, &c->address.in.sin_port, 2);
125 } else if(c->address.sa.sa_family == AF_INET6) {
127 memcpy(s5req + i, &c->address.in6.sin6_addr, 16);
129 memcpy(s5req + i, &c->address.in6.sin6_port, 2);
133 logger(DEBUG_ALWAYS, LOG_ERR, "Address family %x not supported for SOCKS 5 proxies!", c->address.sa.sa_family);
141 return send_meta(c, s5req, sizeof(s5req));
145 logger(DEBUG_ALWAYS, LOG_ERR, "Proxy type not implemented yet");
152 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type");
157 bool send_id(connection_t *c) {
158 gettimeofday(&c->start, NULL);
163 if(c->outgoing && !read_ecdsa_public_key(c)) {
166 minor = myself->connection->protocol_minor;
170 if(proxytype && c->outgoing)
171 if(!send_proxyrequest(c)) {
175 return send_request(c, "%d %s %d.%d", ID, myself->connection->name, myself->connection->protocol_major, minor);
178 static bool finalize_invitation(connection_t *c, const char *data, uint16_t len) {
181 if(strchr(data, '\n')) {
182 logger(DEBUG_ALWAYS, LOG_ERR, "Received invalid key from invited node %s (%s)!\n", c->name, c->hostname);
186 // Create a new host config file
187 char filename[PATH_MAX];
188 snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
190 if(!access(filename, F_OK)) {
191 logger(DEBUG_ALWAYS, LOG_ERR, "Host config file for %s (%s) already exists!\n", c->name, c->hostname);
195 FILE *f = fopen(filename, "w");
198 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to create %s: %s\n", filename, strerror(errno));
202 fprintf(f, "Ed25519PublicKey = %s\n", data);
205 logger(DEBUG_CONNECTIONS, LOG_INFO, "Key successfully received from %s (%s)", c->name, c->hostname);
207 // Call invitation-accepted script
209 char *address, *port;
211 environment_init(&env);
212 environment_add(&env, "NODE=%s", c->name);
213 sockaddr2str(&c->address, &address, &port);
214 environment_add(&env, "REMOTEADDRESS=%s", address);
215 environment_add(&env, "NAME=%s", myself->name);
217 execute_script("invitation-accepted", &env);
219 environment_exit(&env);
221 sptps_send_record(&c->sptps, 2, data, 0);
225 static bool receive_invitation_sptps(void *handle, uint8_t type, const void *data, uint16_t len) {
226 connection_t *c = handle;
232 if(type == 1 && c->status.invitation_used) {
233 return finalize_invitation(c, data, len);
236 if(type != 0 || len != 18 || c->status.invitation_used) {
240 // Recover the filename from the cookie and the key
241 char *fingerprint = ecdsa_get_base64_public_key(invitation_key);
242 char hashbuf[18 + strlen(fingerprint)];
244 memcpy(hashbuf, data, 18);
245 memcpy(hashbuf + 18, fingerprint, sizeof(hashbuf) - 18);
246 sha512(hashbuf, sizeof(hashbuf), cookie);
247 b64encode_urlsafe(cookie, cookie, 18);
250 char filename[PATH_MAX], usedname[PATH_MAX];
251 snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", confbase, cookie);
252 snprintf(usedname, sizeof(usedname), "%s" SLASH "invitations" SLASH "%s.used", confbase, cookie);
254 // Atomically rename the invitation file
255 if(rename(filename, usedname)) {
256 if(errno == ENOENT) {
257 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s tried to use non-existing invitation %s\n", c->hostname, cookie);
259 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to rename invitation %s\n", cookie);
265 // Check the timestamp of the invitation
268 if(stat(usedname, &st)) {
269 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat %s", usedname);
273 if(st.st_mtime + invitation_lifetime < now.tv_sec) {
274 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s tried to use expired invitation %s", c->hostname, cookie);
278 // Open the renamed file
279 FILE *f = fopen(usedname, "r");
282 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to open invitation %s\n", cookie);
286 // Read the new node's Name from the file
288 fgets(buf, sizeof(buf), f);
289 size_t buflen = strlen(buf);
291 // Strip whitespace at the end
292 while(buflen && strchr(" \t\r\n", buf[buflen - 1])) {
296 // Split the first line into variable and value
297 len = strcspn(buf, " \t=");
298 char *name = buf + len;
299 name += strspn(name, " \t");
303 name += strspn(name, " \t");
308 // Check that it is a valid Name
309 if(!*buf || !*name || strcasecmp(buf, "Name") || !check_id(name) || !strcmp(name, myself->name)) {
310 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid invitation file %s\n", cookie);
316 c->name = xstrdup(name);
318 // Send the node the contents of the invitation file
322 while((result = fread(buf, 1, sizeof(buf), f))) {
323 sptps_send_record(&c->sptps, 0, buf, result);
326 sptps_send_record(&c->sptps, 1, buf, 0);
330 c->status.invitation_used = true;
332 logger(DEBUG_CONNECTIONS, LOG_INFO, "Invitation %s successfully sent to %s (%s)", cookie, c->name, c->hostname);
336 bool id_h(connection_t *c, const char *request) {
337 char name[MAX_STRING_SIZE];
339 if(sscanf(request, "%*d " MAX_STRING " %2d.%3d", name, &c->protocol_major, &c->protocol_minor) < 2) {
340 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ID", c->name,
345 /* Check if this is a control connection */
347 if(name[0] == '^' && !strcmp(name + 1, controlcookie)) {
348 c->status.control = true;
349 c->allow_request = CONTROL;
350 c->last_ping_time = now.tv_sec + 3600;
353 c->name = xstrdup("<control>");
359 return send_request(c, "%d %d %d", ACK, TINC_CTL_VERSION_CURRENT, getpid());
363 if(!invitation_key) {
364 logger(DEBUG_ALWAYS, LOG_ERR, "Got invitation from %s but we don't have an invitation key", c->hostname);
368 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
371 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad invitation from %s", c->hostname);
375 c->status.invitation = true;
376 char *mykey = ecdsa_get_base64_public_key(invitation_key);
386 if(!send_request(c, "%d %s", ACK, mykey)) {
392 c->protocol_minor = 2;
394 return sptps_start(&c->sptps, c, false, false, invitation_key, c->ecdsa, "tinc invitation", 15, send_meta_sptps, receive_invitation_sptps);
397 /* Check if identity is a valid name */
399 if(!check_id(name) || !strcmp(name, myself->name)) {
400 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ID", c->name,
401 c->hostname, "invalid name");
405 /* If this is an outgoing connection, make sure we are connected to the right host */
408 if(strcmp(c->name, name)) {
409 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s is %s instead of %s", c->hostname, name,
415 c->name = xstrdup(name);
418 /* Check if version matches */
420 if(c->protocol_major != myself->connection->protocol_major) {
421 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) uses incompatible version %d.%d",
422 c->name, c->hostname, c->protocol_major, c->protocol_minor);
426 if(bypass_security) {
427 if(!c->config_tree) {
428 init_configuration(&c->config_tree);
431 c->allow_request = ACK;
441 c->protocol_minor = 0;
444 if(!c->config_tree) {
445 init_configuration(&c->config_tree);
447 if(!read_host_config(c->config_tree, c->name, false)) {
448 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s had unknown identity (%s)", c->hostname, c->name);
453 read_ecdsa_public_key(c);
456 /* Ignore failures if no key known yet */
459 if(c->protocol_minor && !ecdsa_active(c->ecdsa)) {
460 c->protocol_minor = 1;
463 /* Forbid version rollback for nodes whose Ed25519 key we know */
465 if(ecdsa_active(c->ecdsa) && c->protocol_minor < 1) {
466 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) tries to roll back protocol version to %d.%d",
467 c->name, c->hostname, c->protocol_major, c->protocol_minor);
471 c->allow_request = METAKEY;
477 if(c->protocol_minor >= 2) {
478 c->allow_request = ACK;
479 char label[25 + strlen(myself->name) + strlen(c->name)];
482 snprintf(label, sizeof(label), "tinc TCP key expansion %s %s", myself->name, c->name);
484 snprintf(label, sizeof(label), "tinc TCP key expansion %s %s", c->name, myself->name);
487 return sptps_start(&c->sptps, c, c->outgoing, false, myself->connection->ecdsa, c->ecdsa, label, sizeof(label), send_meta_sptps, receive_meta_sptps);
489 return send_metakey(c);
493 #ifndef DISABLE_LEGACY
494 bool send_metakey(connection_t *c) {
495 if(!myself->connection->rsa) {
496 logger(DEBUG_CONNECTIONS, LOG_ERR, "Peer %s (%s) uses legacy protocol which we don't support", c->name, c->hostname);
500 if(!read_rsa_public_key(c)) {
504 /* We need to use a stream mode for the meta protocol. Use AES for this,
505 but try to match the key size with the one from the cipher selected
509 int keylen = cipher_keylength(myself->incipher);
512 c->outcipher = cipher_open_by_name("aes-128-cfb");
513 } else if(keylen <= 24) {
514 c->outcipher = cipher_open_by_name("aes-192-cfb");
516 c->outcipher = cipher_open_by_name("aes-256-cfb");
523 c->outbudget = cipher_budget(c->outcipher);
525 if(!(c->outdigest = digest_open_by_name("sha256", -1))) {
529 const size_t len = rsa_size(c->rsa);
532 char hexkey[2 * len + 1];
534 /* Create a random key */
538 /* The message we send must be smaller than the modulus of the RSA key.
539 By definition, for a key of k bits, the following formula holds:
541 2^(k-1) <= modulus < 2^(k)
543 Where ^ means "to the power of", not "xor".
544 This means that to be sure, we must choose our message < 2^(k-1).
545 This can be done by setting the most significant bit to zero.
550 if(!cipher_set_key_from_rsa(c->outcipher, key, len, true)) {
554 if(debug_level >= DEBUG_SCARY_THINGS) {
555 bin2hex(key, hexkey, len);
556 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Generated random meta key (unencrypted): %s", hexkey);
559 /* Encrypt the random data
561 We do not use one of the PKCS padding schemes here.
562 This is allowed, because we encrypt a totally random string
563 with a length equal to that of the modulus of the RSA key.
566 if(!rsa_public_encrypt(c->rsa, key, len, enckey)) {
567 logger(DEBUG_ALWAYS, LOG_ERR, "Error during encryption of meta key for %s (%s)", c->name, c->hostname);
571 /* Convert the encrypted random data to a hexadecimal formatted string */
573 bin2hex(enckey, hexkey, len);
575 /* Send the meta key */
577 bool result = send_request(c, "%d %d %d %d %d %s", METAKEY,
578 cipher_get_nid(c->outcipher),
579 digest_get_nid(c->outdigest), c->outmaclength,
580 c->outcompression, hexkey);
582 c->status.encryptout = true;
586 bool metakey_h(connection_t *c, const char *request) {
587 if(!myself->connection->rsa) {
591 char hexkey[MAX_STRING_SIZE];
592 int cipher, digest, maclength, compression;
593 const size_t len = rsa_size(myself->connection->rsa);
597 if(sscanf(request, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, hexkey) != 5) {
598 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
602 /* Convert the challenge from hexadecimal back to binary */
604 size_t inlen = hex2bin(hexkey, enckey, sizeof(enckey));
606 /* Check if the length of the meta key is all right */
609 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
613 /* Decrypt the meta key */
615 if(!rsa_private_decrypt(myself->connection->rsa, enckey, len, key)) {
616 logger(DEBUG_ALWAYS, LOG_ERR, "Error during decryption of meta key for %s (%s)", c->name, c->hostname);
620 if(debug_level >= DEBUG_SCARY_THINGS) {
621 bin2hex(key, hexkey, len);
622 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Received random meta key (unencrypted): %s", hexkey);
625 /* Check and lookup cipher and digest algorithms */
628 if(!(c->incipher = cipher_open_by_nid(cipher)) || !cipher_set_key_from_rsa(c->incipher, key, len, false)) {
629 logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher from %s (%s)", c->name, c->hostname);
633 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "null cipher");
637 c->inbudget = cipher_budget(c->incipher);
640 if(!(c->indigest = digest_open_by_nid(digest, -1))) {
641 logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of digest from %s (%s)", c->name, c->hostname);
645 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "null digest");
649 c->status.decryptin = true;
651 c->allow_request = CHALLENGE;
653 return send_challenge(c);
656 bool send_challenge(connection_t *c) {
657 const size_t len = rsa_size(c->rsa);
658 char buffer[len * 2 + 1];
660 c->hischallenge = xrealloc(c->hischallenge, len);
662 /* Copy random data to the buffer */
664 randomize(c->hischallenge, len);
668 bin2hex(c->hischallenge, buffer, len);
670 /* Send the challenge */
672 return send_request(c, "%d %s", CHALLENGE, buffer);
675 bool challenge_h(connection_t *c, const char *request) {
676 if(!myself->connection->rsa) {
680 char buffer[MAX_STRING_SIZE];
681 const size_t len = rsa_size(myself->connection->rsa);
683 if(sscanf(request, "%*d " MAX_STRING, buffer) != 1) {
684 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name, c->hostname);
688 /* Check if the length of the challenge is all right */
690 if(strlen(buffer) != (size_t)len * 2) {
691 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge length");
695 c->mychallenge = xrealloc(c->mychallenge, len);
697 /* Convert the challenge from hexadecimal back to binary */
699 hex2bin(buffer, c->mychallenge, len);
701 /* The rest is done by send_chal_reply() */
703 c->allow_request = CHAL_REPLY;
706 return send_chal_reply(c);
712 bool send_chal_reply(connection_t *c) {
713 const size_t len = rsa_size(myself->connection->rsa);
714 size_t digestlen = digest_length(c->indigest);
715 char digest[digestlen * 2 + 1];
717 /* Calculate the hash from the challenge we received */
719 if(!digest_create(c->indigest, c->mychallenge, len, digest)) {
723 free(c->mychallenge);
724 c->mychallenge = NULL;
726 /* Convert the hash to a hexadecimal formatted string */
728 bin2hex(digest, digest, digestlen);
732 return send_request(c, "%d %s", CHAL_REPLY, digest);
735 bool chal_reply_h(connection_t *c, const char *request) {
736 char hishash[MAX_STRING_SIZE];
738 if(sscanf(request, "%*d " MAX_STRING, hishash) != 1) {
739 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
744 /* Convert the hash to binary format */
746 size_t inlen = hex2bin(hishash, hishash, sizeof(hishash));
748 /* Check if the length of the hash is all right */
750 if(inlen != digest_length(c->outdigest)) {
751 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply length");
756 /* Verify the hash */
758 if(!digest_verify(c->outdigest, c->hischallenge, rsa_size(c->rsa), hishash)) {
759 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply");
763 /* Identity has now been positively verified.
764 Send an acknowledgement with the rest of the information needed.
767 free(c->hischallenge);
768 c->hischallenge = NULL;
769 c->allow_request = ACK;
778 static bool send_upgrade(connection_t *c) {
779 /* Special case when protocol_minor is 1: the other end is Ed25519 capable,
780 * but doesn't know our key yet. So send it now. */
782 char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
788 bool result = send_request(c, "%d %s", ACK, pubkey);
793 bool send_metakey(connection_t *c) {
798 bool metakey_h(connection_t *c, const char *request) {
804 bool send_challenge(connection_t *c) {
809 bool challenge_h(connection_t *c, const char *request) {
815 bool send_chal_reply(connection_t *c) {
820 bool chal_reply_h(connection_t *c, const char *request) {
826 static bool send_upgrade(connection_t *c) {
832 bool send_ack(connection_t *c) {
833 if(c->protocol_minor == 1) {
834 return send_upgrade(c);
837 /* ACK message contains rest of the information the other end needs
838 to create node_t and edge_t structures. */
843 /* Estimate weight */
845 gettimeofday(&now, NULL);
846 c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
848 /* Check some options */
850 if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT) {
851 c->options |= OPTION_INDIRECT;
854 if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY) {
855 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
858 if(myself->options & OPTION_PMTU_DISCOVERY && !(c->options & OPTION_TCPONLY)) {
859 c->options |= OPTION_PMTU_DISCOVERY;
862 choice = myself->options & OPTION_CLAMP_MSS;
863 get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice);
866 c->options |= OPTION_CLAMP_MSS;
869 if(!get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight)) {
870 get_config_int(lookup_config(config_tree, "Weight"), &c->estimated_weight);
873 return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, (c->options & 0xffffff) | (experimental ? (PROT_MINOR << 24) : 0));
876 static void send_everything(connection_t *c) {
877 /* Send all known subnets and edges */
879 if(disablebuggypeers) {
882 char pad[MAXBUFSIZE - MAXSIZE];
885 memset(&zeropkt, 0, sizeof(zeropkt));
886 zeropkt.pkt.len = MAXBUFSIZE;
887 send_tcppacket(c, &zeropkt.pkt);
891 for splay_each(subnet_t, s, myself->subnet_tree) {
892 send_add_subnet(c, s);
898 for splay_each(node_t, n, node_tree) {
899 for splay_each(subnet_t, s, n->subnet_tree) {
900 send_add_subnet(c, s);
903 for splay_each(edge_t, e, n->edge_tree) {
909 static bool upgrade_h(connection_t *c, const char *request) {
910 char pubkey[MAX_STRING_SIZE];
912 if(sscanf(request, "%*d " MAX_STRING, pubkey) != 1) {
913 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name, c->hostname);
917 if(ecdsa_active(c->ecdsa) || read_ecdsa_public_key(c)) {
918 char *knownkey = ecdsa_get_base64_public_key(c->ecdsa);
919 bool different = strcmp(knownkey, pubkey);
923 logger(DEBUG_ALWAYS, LOG_ERR, "Already have an Ed25519 public key from %s (%s) which is different from the one presented now!", c->name, c->hostname);
927 logger(DEBUG_ALWAYS, LOG_INFO, "Already have Ed25519 public key from %s (%s), ignoring.", c->name, c->hostname);
928 c->allow_request = TERMREQ;
929 return send_termreq(c);
932 c->ecdsa = ecdsa_set_base64_public_key(pubkey);
935 logger(DEBUG_ALWAYS, LOG_INFO, "Got bad Ed25519 public key from %s (%s), not upgrading.", c->name, c->hostname);
939 logger(DEBUG_ALWAYS, LOG_INFO, "Got Ed25519 public key from %s (%s), upgrading!", c->name, c->hostname);
940 append_config_file(c->name, "Ed25519PublicKey", pubkey);
941 c->allow_request = TERMREQ;
944 c->outgoing->timeout = 0;
947 return send_termreq(c);
950 bool ack_h(connection_t *c, const char *request) {
951 if(c->protocol_minor == 1) {
952 return upgrade_h(c, request);
955 char hisport[MAX_STRING_SIZE];
961 if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &weight, &options) != 3) {
962 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name,
967 /* Check if we already have a node_t for him */
969 n = lookup_node(c->name);
973 n->name = xstrdup(c->name);
977 /* Oh dear, we already have a connection to this node. */
978 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Established a second connection with %s (%s), closing old connection", n->connection->name, n->connection->hostname);
980 if(n->connection->outgoing) {
982 logger(DEBUG_ALWAYS, LOG_WARNING, "Two outgoing connections to the same node!");
984 c->outgoing = n->connection->outgoing;
987 n->connection->outgoing = NULL;
990 terminate_connection(n->connection, false);
991 /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
999 if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
1000 c->options &= ~OPTION_PMTU_DISCOVERY;
1001 options &= ~OPTION_PMTU_DISCOVERY;
1004 c->options |= options;
1006 if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu) {
1010 if(get_config_int(lookup_config(config_tree, "PMTU"), &mtu) && mtu < n->mtu) {
1014 if(get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice)) {
1016 c->options |= OPTION_CLAMP_MSS;
1018 c->options &= ~OPTION_CLAMP_MSS;
1022 /* Activate this connection */
1024 c->allow_request = ALL;
1026 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection with %s (%s) activated", c->name,
1029 /* Send him everything we know */
1033 /* Create an edge_t for this connection */
1035 c->edge = new_edge();
1036 c->edge->from = myself;
1038 sockaddrcpy(&c->edge->address, &c->address);
1039 sockaddr_setport(&c->edge->address, hisport);
1040 sockaddr_t local_sa;
1041 socklen_t local_salen = sizeof(local_sa);
1043 if(getsockname(c->socket, &local_sa.sa, &local_salen) < 0) {
1044 logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get local socket address for connection with %s", c->name);
1046 sockaddr_setport(&local_sa, myport);
1047 c->edge->local_address = local_sa;
1050 c->edge->weight = (weight + c->estimated_weight) / 2;
1051 c->edge->connection = c;
1052 c->edge->options = c->options;
1056 /* Notify everyone of the new edge */
1059 send_add_edge(c, c->edge);
1061 send_add_edge(everyone, c->edge);
1064 /* Run MST and SSSP algorithms */