2 protocol_auth.c -- handle the meta-protocol, authentication
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2014 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 ecdsa_t *invitation_key = NULL;
52 static bool send_proxyrequest(connection_t *c) {
58 sockaddr2str(&c->address, &host, &port);
59 send_request(c, "CONNECT %s:%s HTTP/1.1\r\n\r", host, port);
65 if(c->address.sa.sa_family != AF_INET) {
66 logger(DEBUG_ALWAYS, LOG_ERR, "Cannot connect to an IPv6 host through a SOCKS 4 proxy!");
69 char s4req[9 + (proxyuser ? strlen(proxyuser) : 0)];
72 memcpy(s4req + 2, &c->address.in.sin_port, 2);
73 memcpy(s4req + 4, &c->address.in.sin_addr, 4);
75 memcpy(s4req + 8, proxyuser, strlen(proxyuser));
76 s4req[sizeof s4req - 1] = 0;
78 return send_meta(c, s4req, sizeof s4req);
81 int len = 3 + 6 + (c->address.sa.sa_family == AF_INET ? 4 : 16);
84 len += 3 + strlen(proxyuser) + strlen(proxypass);
92 s5req[i++] = strlen(proxyuser);
93 memcpy(s5req + i, proxyuser, strlen(proxyuser));
94 i += strlen(proxyuser);
95 s5req[i++] = strlen(proxypass);
96 memcpy(s5req + i, proxypass, strlen(proxypass));
97 i += strlen(proxypass);
105 if(c->address.sa.sa_family == AF_INET) {
107 memcpy(s5req + i, &c->address.in.sin_addr, 4);
109 memcpy(s5req + i, &c->address.in.sin_port, 2);
112 } else if(c->address.sa.sa_family == AF_INET6) {
114 memcpy(s5req + i, &c->address.in6.sin6_addr, 16);
116 memcpy(s5req + i, &c->address.in6.sin6_port, 2);
120 logger(DEBUG_ALWAYS, LOG_ERR, "Address family %x not supported for SOCKS 5 proxies!", c->address.sa.sa_family);
125 return send_meta(c, s5req, sizeof s5req);
128 logger(DEBUG_ALWAYS, LOG_ERR, "Proxy type not implemented yet");
133 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type");
138 bool send_id(connection_t *c) {
139 gettimeofday(&c->start, NULL);
144 if(c->outgoing && !read_ecdsa_public_key(c))
147 minor = myself->connection->protocol_minor;
150 if(proxytype && c->outgoing)
151 if(!send_proxyrequest(c))
154 return send_request(c, "%d %s %d.%d", ID, myself->connection->name, myself->connection->protocol_major, minor);
157 static bool finalize_invitation(connection_t *c, const char *data, uint16_t len) {
158 if(strchr(data, '\n')) {
159 logger(DEBUG_ALWAYS, LOG_ERR, "Received invalid key from invited node %s (%s)!\n", c->name, c->hostname);
163 // Create a new host config file
164 char filename[PATH_MAX];
165 snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
166 if(!access(filename, F_OK)) {
167 logger(DEBUG_ALWAYS, LOG_ERR, "Host config file for %s (%s) already exists!\n", c->name, c->hostname);
171 FILE *f = fopen(filename, "w");
173 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to create %s: %s\n", filename, strerror(errno));
177 fprintf(f, "Ed25519PublicKey = %s\n", data);
180 logger(DEBUG_CONNECTIONS, LOG_INFO, "Key succesfully received from %s (%s)", c->name, c->hostname);
182 // Call invitation-accepted script
183 char *envp[7] = {NULL};
184 char *address, *port;
186 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
187 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
188 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
189 xasprintf(&envp[3], "NODE=%s", c->name);
190 sockaddr2str(&c->address, &address, &port);
191 xasprintf(&envp[4], "REMOTEADDRESS=%s", address);
192 xasprintf(&envp[5], "NAME=%s", myself->name);
194 execute_script("invitation-accepted", envp);
196 for(int i = 0; envp[i] && i < 7; i++)
199 sptps_send_record(&c->sptps, 2, data, 0);
203 static bool receive_invitation_sptps(void *handle, uint8_t type, const void *data, uint16_t len) {
204 connection_t *c = handle;
209 if(type == 1 && c->status.invitation_used)
210 return finalize_invitation(c, data, len);
212 if(type != 0 || len != 18 || c->status.invitation_used)
215 // Recover the filename from the cookie and the key
216 char *fingerprint = ecdsa_get_base64_public_key(invitation_key);
217 char hashbuf[18 + strlen(fingerprint)];
219 memcpy(hashbuf, data, 18);
220 memcpy(hashbuf + 18, fingerprint, sizeof hashbuf - 18);
221 sha512(hashbuf, sizeof hashbuf, cookie);
222 b64encode_urlsafe(cookie, cookie, 18);
225 char filename[PATH_MAX], usedname[PATH_MAX];
226 snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "%s", confbase, cookie);
227 snprintf(usedname, sizeof usedname, "%s" SLASH "invitations" SLASH "%s.used", confbase, cookie);
229 // Atomically rename the invitation file
230 if(rename(filename, usedname)) {
232 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s tried to use non-existing invitation %s\n", c->hostname, cookie);
234 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to rename invitation %s\n", cookie);
238 // Open the renamed file
239 FILE *f = fopen(usedname, "r");
241 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to open invitation %s\n", cookie);
245 // Read the new node's Name from the file
247 fgets(buf, sizeof buf, f);
249 buf[strlen(buf) - 1] = 0;
251 len = strcspn(buf, " \t=");
252 char *name = buf + len;
253 name += strspn(name, " \t");
256 name += strspn(name, " \t");
260 if(!*buf || !*name || strcasecmp(buf, "Name") || !check_id(name)) {
261 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid invitation file %s\n", cookie);
267 c->name = xstrdup(name);
269 // Send the node the contents of the invitation file
272 while((result = fread(buf, 1, sizeof buf, f)))
273 sptps_send_record(&c->sptps, 0, buf, result);
274 sptps_send_record(&c->sptps, 1, buf, 0);
278 c->status.invitation_used = true;
280 logger(DEBUG_CONNECTIONS, LOG_INFO, "Invitation %s succesfully sent to %s (%s)", cookie, c->name, c->hostname);
284 bool id_h(connection_t *c, const char *request) {
285 char name[MAX_STRING_SIZE];
287 if(sscanf(request, "%*d " MAX_STRING " %d.%d", name, &c->protocol_major, &c->protocol_minor) < 2) {
288 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ID", c->name,
293 /* Check if this is a control connection */
295 if(name[0] == '^' && !strcmp(name + 1, controlcookie)) {
296 c->status.control = true;
297 c->allow_request = CONTROL;
298 c->last_ping_time = now.tv_sec + 3600;
301 c->name = xstrdup("<control>");
303 return send_request(c, "%d %d %d", ACK, TINC_CTL_VERSION_CURRENT, getpid());
307 if(!invitation_key) {
308 logger(DEBUG_ALWAYS, LOG_ERR, "Got invitation from %s but we don't have an invitation key", c->hostname);
312 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
314 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad invitation from %s", c->hostname);
318 c->status.invitation = true;
319 char *mykey = ecdsa_get_base64_public_key(invitation_key);
322 if(!send_request(c, "%d %s", ACK, mykey))
326 c->protocol_minor = 2;
328 return sptps_start(&c->sptps, c, false, false, invitation_key, c->ecdsa, "tinc invitation", 15, send_meta_sptps, receive_invitation_sptps);
331 /* Check if identity is a valid name */
333 if(!check_id(name)) {
334 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ID", c->name,
335 c->hostname, "invalid name");
339 /* If this is an outgoing connection, make sure we are connected to the right host */
342 if(strcmp(c->name, name)) {
343 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s is %s instead of %s", c->hostname, name,
350 c->name = xstrdup(name);
353 /* Check if version matches */
355 if(c->protocol_major != myself->connection->protocol_major) {
356 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) uses incompatible version %d.%d",
357 c->name, c->hostname, c->protocol_major, c->protocol_minor);
361 if(bypass_security) {
363 init_configuration(&c->config_tree);
364 c->allow_request = ACK;
369 c->protocol_minor = 0;
371 if(!c->config_tree) {
372 init_configuration(&c->config_tree);
374 if(!read_host_config(c->config_tree, c->name)) {
375 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s had unknown identity (%s)", c->hostname, c->name);
380 read_ecdsa_public_key(c);
381 /* Ignore failures if no key known yet */
384 if(c->protocol_minor && !ecdsa_active(c->ecdsa))
385 c->protocol_minor = 1;
387 /* Forbid version rollback for nodes whose Ed25519 key we know */
389 if(ecdsa_active(c->ecdsa) && c->protocol_minor < 1) {
390 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) tries to roll back protocol version to %d.%d",
391 c->name, c->hostname, c->protocol_major, c->protocol_minor);
395 c->allow_request = METAKEY;
397 if(c->protocol_minor >= 2) {
398 c->allow_request = ACK;
399 char label[25 + strlen(myself->name) + strlen(c->name)];
402 snprintf(label, sizeof label, "tinc TCP key expansion %s %s", myself->name, c->name);
404 snprintf(label, sizeof label, "tinc TCP key expansion %s %s", c->name, myself->name);
406 return sptps_start(&c->sptps, c, c->outgoing, false, myself->connection->ecdsa, c->ecdsa, label, sizeof label, send_meta_sptps, receive_meta_sptps);
408 return send_metakey(c);
412 bool send_metakey(connection_t *c) {
413 #ifdef DISABLE_LEGACY
416 if(!myself->connection->rsa) {
417 logger(DEBUG_CONNECTIONS, LOG_ERR, "Peer %s (%s) uses legacy protocol which we don't support", c->name, c->hostname);
421 if(!read_rsa_public_key(c))
424 if(!(c->outcipher = cipher_open_blowfish_ofb()))
427 if(!(c->outdigest = digest_open_sha1(-1)))
430 const size_t len = rsa_size(c->rsa);
433 char hexkey[2 * len + 1];
435 /* Create a random key */
439 /* The message we send must be smaller than the modulus of the RSA key.
440 By definition, for a key of k bits, the following formula holds:
442 2^(k-1) <= modulus < 2^(k)
444 Where ^ means "to the power of", not "xor".
445 This means that to be sure, we must choose our message < 2^(k-1).
446 This can be done by setting the most significant bit to zero.
451 if(!cipher_set_key_from_rsa(c->outcipher, key, len, true))
454 if(debug_level >= DEBUG_SCARY_THINGS) {
455 bin2hex(key, hexkey, len);
456 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Generated random meta key (unencrypted): %s", hexkey);
459 /* Encrypt the random data
461 We do not use one of the PKCS padding schemes here.
462 This is allowed, because we encrypt a totally random string
463 with a length equal to that of the modulus of the RSA key.
466 if(!rsa_public_encrypt(c->rsa, key, len, enckey)) {
467 logger(DEBUG_ALWAYS, LOG_ERR, "Error during encryption of meta key for %s (%s)", c->name, c->hostname);
471 /* Convert the encrypted random data to a hexadecimal formatted string */
473 bin2hex(enckey, hexkey, len);
475 /* Send the meta key */
477 bool result = send_request(c, "%d %d %d %d %d %s", METAKEY,
478 cipher_get_nid(c->outcipher),
479 digest_get_nid(c->outdigest), c->outmaclength,
480 c->outcompression, hexkey);
482 c->status.encryptout = true;
487 bool metakey_h(connection_t *c, const char *request) {
488 #ifdef DISABLE_LEGACY
491 if(!myself->connection->rsa)
494 char hexkey[MAX_STRING_SIZE];
495 int cipher, digest, maclength, compression;
496 const size_t len = rsa_size(myself->connection->rsa);
500 if(sscanf(request, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, hexkey) != 5) {
501 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
505 /* Convert the challenge from hexadecimal back to binary */
507 int inlen = hex2bin(hexkey, enckey, sizeof enckey);
509 /* Check if the length of the meta key is all right */
512 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
516 /* Decrypt the meta key */
518 if(!rsa_private_decrypt(myself->connection->rsa, enckey, len, key)) {
519 logger(DEBUG_ALWAYS, LOG_ERR, "Error during decryption of meta key for %s (%s)", c->name, c->hostname);
523 if(debug_level >= DEBUG_SCARY_THINGS) {
524 bin2hex(key, hexkey, len);
525 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Received random meta key (unencrypted): %s", hexkey);
528 /* Check and lookup cipher and digest algorithms */
531 if(!(c->incipher = cipher_open_by_nid(cipher)) || !cipher_set_key_from_rsa(c->incipher, key, len, false)) {
532 logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher from %s (%s)", c->name, c->hostname);
540 if(!(c->indigest = digest_open_by_nid(digest, -1))) {
541 logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of digest from %s (%s)", c->name, c->hostname);
548 c->status.decryptin = true;
550 c->allow_request = CHALLENGE;
552 return send_challenge(c);
556 bool send_challenge(connection_t *c) {
557 #ifdef DISABLE_LEGACY
560 const size_t len = rsa_size(c->rsa);
561 char buffer[len * 2 + 1];
564 c->hischallenge = xrealloc(c->hischallenge, len);
566 /* Copy random data to the buffer */
568 randomize(c->hischallenge, len);
572 bin2hex(c->hischallenge, buffer, len);
574 /* Send the challenge */
576 return send_request(c, "%d %s", CHALLENGE, buffer);
580 bool challenge_h(connection_t *c, const char *request) {
581 #ifdef DISABLE_LEGACY
584 if(!myself->connection->rsa)
587 char buffer[MAX_STRING_SIZE];
588 const size_t len = rsa_size(myself->connection->rsa);
589 size_t digestlen = digest_length(c->indigest);
590 char digest[digestlen];
592 if(sscanf(request, "%*d " MAX_STRING, buffer) != 1) {
593 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name, c->hostname);
597 /* Convert the challenge from hexadecimal back to binary */
599 int inlen = hex2bin(buffer, buffer, sizeof buffer);
601 /* Check if the length of the challenge is all right */
604 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge length");
608 /* Calculate the hash from the challenge we received */
610 if(!digest_create(c->indigest, buffer, len, digest))
613 /* Convert the hash to a hexadecimal formatted string */
615 bin2hex(digest, buffer, digestlen);
619 c->allow_request = CHAL_REPLY;
621 return send_request(c, "%d %s", CHAL_REPLY, buffer);
625 bool chal_reply_h(connection_t *c, const char *request) {
626 #ifdef DISABLE_LEGACY
629 char hishash[MAX_STRING_SIZE];
631 if(sscanf(request, "%*d " MAX_STRING, hishash) != 1) {
632 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
637 /* Convert the hash to binary format */
639 int inlen = hex2bin(hishash, hishash, sizeof hishash);
641 /* Check if the length of the hash is all right */
643 if(inlen != digest_length(c->outdigest)) {
644 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply length");
649 /* Verify the hash */
651 if(!digest_verify(c->outdigest, c->hischallenge, rsa_size(c->rsa), hishash)) {
652 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply");
656 /* Identity has now been positively verified.
657 Send an acknowledgement with the rest of the information needed.
660 free(c->hischallenge);
661 c->hischallenge = NULL;
662 c->allow_request = ACK;
668 static bool send_upgrade(connection_t *c) {
669 #ifdef DISABLE_LEGACY
672 /* Special case when protocol_minor is 1: the other end is Ed25519 capable,
673 * but doesn't know our key yet. So send it now. */
675 char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
680 bool result = send_request(c, "%d %s", ACK, pubkey);
686 bool send_ack(connection_t *c) {
687 if(c->protocol_minor == 1)
688 return send_upgrade(c);
690 /* ACK message contains rest of the information the other end needs
691 to create node_t and edge_t structures. */
696 /* Estimate weight */
698 gettimeofday(&now, NULL);
699 c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
701 /* Check some options */
703 if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT)
704 c->options |= OPTION_INDIRECT;
706 if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY)
707 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
709 if(myself->options & OPTION_PMTU_DISCOVERY)
710 c->options |= OPTION_PMTU_DISCOVERY;
712 choice = myself->options & OPTION_CLAMP_MSS;
713 get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice);
715 c->options |= OPTION_CLAMP_MSS;
717 if(!get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight))
718 get_config_int(lookup_config(config_tree, "Weight"), &c->estimated_weight);
720 return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, (c->options & 0xffffff) | (experimental ? (PROT_MINOR << 24) : 0));
723 static void send_everything(connection_t *c) {
724 /* Send all known subnets and edges */
726 if(disablebuggypeers) {
729 char pad[MAXBUFSIZE - MAXSIZE];
732 memset(&zeropkt, 0, sizeof zeropkt);
733 zeropkt.pkt.len = MAXBUFSIZE;
734 send_tcppacket(c, &zeropkt.pkt);
738 for splay_each(subnet_t, s, myself->subnet_tree)
739 send_add_subnet(c, s);
744 for splay_each(node_t, n, node_tree) {
745 for splay_each(subnet_t, s, n->subnet_tree)
746 send_add_subnet(c, s);
748 for splay_each(edge_t, e, n->edge_tree)
753 static bool upgrade_h(connection_t *c, const char *request) {
754 char pubkey[MAX_STRING_SIZE];
756 if(sscanf(request, "%*d " MAX_STRING, pubkey) != 1) {
757 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name, c->hostname);
761 if(ecdsa_active(c->ecdsa) || read_ecdsa_public_key(c)) {
762 char *knownkey = ecdsa_get_base64_public_key(c->ecdsa);
763 bool different = strcmp(knownkey, pubkey);
766 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);
769 logger(DEBUG_ALWAYS, LOG_INFO, "Already have Ed25519 public key from %s (%s), ignoring.", c->name, c->hostname);
770 c->allow_request = TERMREQ;
771 return send_termreq(c);
774 c->ecdsa = ecdsa_set_base64_public_key(pubkey);
776 logger(DEBUG_ALWAYS, LOG_INFO, "Got bad Ed25519 public key from %s (%s), not upgrading.", c->name, c->hostname);
780 logger(DEBUG_ALWAYS, LOG_INFO, "Got Ed25519 public key from %s (%s), upgrading!", c->name, c->hostname);
781 append_config_file(c->name, "Ed25519PublicKey", pubkey);
782 c->allow_request = TERMREQ;
784 c->outgoing->timeout = 0;
785 return send_termreq(c);
788 bool ack_h(connection_t *c, const char *request) {
789 if(c->protocol_minor == 1)
790 return upgrade_h(c, request);
792 char hisport[MAX_STRING_SIZE];
799 if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &weight, &options) != 3) {
800 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name,
805 /* Check if we already have a node_t for him */
807 n = lookup_node(c->name);
811 n->name = xstrdup(c->name);
815 /* Oh dear, we already have a connection to this node. */
816 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Established a second connection with %s (%s), closing old connection", n->connection->name, n->connection->hostname);
818 if(n->connection->outgoing) {
820 logger(DEBUG_ALWAYS, LOG_WARNING, "Two outgoing connections to the same node!");
822 c->outgoing = n->connection->outgoing;
824 n->connection->outgoing = NULL;
827 terminate_connection(n->connection, false);
828 /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
835 if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
836 c->options &= ~OPTION_PMTU_DISCOVERY;
837 options &= ~OPTION_PMTU_DISCOVERY;
839 c->options |= options;
841 if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu)
844 if(get_config_int(lookup_config(config_tree, "PMTU"), &mtu) && mtu < n->mtu)
847 if(get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice)) {
849 c->options |= OPTION_CLAMP_MSS;
851 c->options &= ~OPTION_CLAMP_MSS;
854 /* Activate this connection */
856 c->allow_request = ALL;
858 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection with %s (%s) activated", c->name,
861 /* Send him everything we know */
865 /* Create an edge_t for this connection */
867 c->edge = new_edge();
868 c->edge->from = myself;
870 sockaddr2str(&c->address, &hisaddress, NULL);
871 c->edge->address = str2sockaddr(hisaddress, hisport);
874 socklen_t local_salen = sizeof local_sa;
875 if (getsockname(c->socket, &local_sa.sa, &local_salen) < 0)
876 logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get local socket address for connection with %s", c->name);
879 sockaddr2str(&local_sa, &local_address, NULL);
880 c->edge->local_address = str2sockaddr(local_address, myport);
883 c->edge->weight = (weight + c->estimated_weight) / 2;
884 c->edge->connection = c;
885 c->edge->options = c->options;
889 /* Notify everyone of the new edge */
892 send_add_edge(c, c->edge);
894 send_add_edge(everyone, c->edge);
896 /* Run MST and SSSP algorithms */