]> git.meshlink.io Git - meshlink/blobdiff - src/protocol_auth.c
Remove support for the legacy protocol.
[meshlink] / src / protocol_auth.c
index 147c3b485b75393156ab74ac77f1fbff1637fba5..670bfbc23ee0cc48e908d481e150186dfa634db6 100644 (file)
@@ -1,7 +1,6 @@
 /*
     protocol_auth.c -- handle the meta-protocol, authentication
-    Copyright (C) 1999-2005 Ivo Timmermans,
-                  2000-2013 Guus Sliepen <guus@tinc-vpn.org>
+    Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 #include "conf.h"
 #include "connection.h"
-#include "control.h"
-#include "control_common.h"
 #include "cipher.h"
 #include "crypto.h"
-#include "device.h"
 #include "digest.h"
 #include "ecdsa.h"
 #include "edge.h"
 #include "graph.h"
 #include "logger.h"
 #include "meta.h"
-#include "names.h"
 #include "net.h"
 #include "netutl.h"
 #include "node.h"
 #include "prf.h"
 #include "protocol.h"
-#include "rsa.h"
-#include "script.h"
 #include "sptps.h"
 #include "utils.h"
 #include "xalloc.h"
@@ -136,14 +129,7 @@ static bool send_proxyrequest(connection_t *c) {
 bool send_id(connection_t *c) {
        gettimeofday(&c->start, NULL);
 
-       int minor = 0;
-
-       if(experimental) {
-               if(c->outgoing && !read_ecdsa_public_key(c))
-                       minor = 1;
-               else
-                       minor = myself->connection->protocol_minor;
-       }
+       int minor = myself->connection->protocol_minor;
 
        if(proxytype && c->outgoing)
                if(!send_proxyrequest(c))
@@ -177,22 +163,7 @@ static bool finalize_invitation(connection_t *c, const char *data, uint16_t len)
 
        logger(DEBUG_CONNECTIONS, LOG_INFO, "Key succesfully received from %s (%s)", c->name, c->hostname);
 
-       // Call invitation-accepted script
-       char *envp[7] = {NULL};
-       char *address, *port;
-
-       xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
-        xasprintf(&envp[1], "DEVICE=%s", device ? : "");
-        xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
-        xasprintf(&envp[3], "NODE=%s", c->name);
-       sockaddr2str(&c->address, &address, &port);
-       xasprintf(&envp[4], "REMOTEADDRESS=%s", address);
-       xasprintf(&envp[5], "NAME=%s", myself->name);
-
-       execute_script("invitation-accepted", envp);
-
-       for(int i = 0; envp[i] && i < 7; i++)
-               free(envp[i]);
+       //TODO: callback to application to inform of an accepted invitation
 
        sptps_send_record(&c->sptps, 2, data, 0);
        return true;
@@ -292,18 +263,7 @@ bool id_h(connection_t *c, const char *request) {
                return false;
        }
 
-       /* Check if this is a control connection */
-
-       if(name[0] == '^' && !strcmp(name + 1, controlcookie)) {
-               c->status.control = true;
-               c->allow_request = CONTROL;
-               c->last_ping_time = now.tv_sec + 3600;
-
-               free(c->name);
-               c->name = xstrdup("<control>");
-
-               return send_request(c, "%d %d %d", ACK, TINC_CTL_VERSION_CURRENT, getpid());
-       }
+       /* Check if this is an invitation  */
 
        if(name[0] == '?') {
                if(!invitation_key) {
@@ -367,9 +327,6 @@ bool id_h(connection_t *c, const char *request) {
                return send_ack(c);
        }
 
-       if(!experimental)
-               c->protocol_minor = 0;
-
        if(!c->config_tree) {
                init_configuration(&c->config_tree);
 
@@ -378,8 +335,7 @@ bool id_h(connection_t *c, const char *request) {
                        return false;
                }
 
-               if(experimental)
-                       read_ecdsa_public_key(c);
+               read_ecdsa_public_key(c);
        } else {
                if(c->protocol_minor && !ecdsa_active(c->ecdsa))
                        c->protocol_minor = 1;
@@ -395,256 +351,18 @@ bool id_h(connection_t *c, const char *request) {
 
        c->allow_request = METAKEY;
 
-       if(c->protocol_minor >= 2) {
-               c->allow_request = ACK;
-               char label[25 + strlen(myself->name) + strlen(c->name)];
-
-               if(c->outgoing)
-                       snprintf(label, sizeof label, "tinc TCP key expansion %s %s", myself->name, c->name);
-               else
-                       snprintf(label, sizeof label, "tinc TCP key expansion %s %s", c->name, myself->name);
-
-               return sptps_start(&c->sptps, c, c->outgoing, false, myself->connection->ecdsa, c->ecdsa, label, sizeof label, send_meta_sptps, receive_meta_sptps);
-       } else {
-               return send_metakey(c);
-       }
-}
-
-bool send_metakey(connection_t *c) {
-       if(!read_rsa_public_key(c))
-               return false;
-
-       if(!(c->outcipher = cipher_open_blowfish_ofb()))
-               return false;
-
-       if(!(c->outdigest = digest_open_sha1(-1)))
-               return false;
-
-       size_t len = rsa_size(c->rsa);
-       char key[len];
-       char enckey[len];
-       char hexkey[2 * len + 1];
-
-       /* Create a random key */
-
-       randomize(key, len);
-
-       /* The message we send must be smaller than the modulus of the RSA key.
-          By definition, for a key of k bits, the following formula holds:
-
-          2^(k-1) <= modulus < 2^(k)
-
-          Where ^ means "to the power of", not "xor".
-          This means that to be sure, we must choose our message < 2^(k-1).
-          This can be done by setting the most significant bit to zero.
-        */
-
-       key[0] &= 0x7F;
-
-       if(!cipher_set_key_from_rsa(c->outcipher, key, len, true))
-               return false;
-
-       if(debug_level >= DEBUG_SCARY_THINGS) {
-               bin2hex(key, hexkey, len);
-               logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Generated random meta key (unencrypted): %s", hexkey);
-       }
-
-       /* Encrypt the random data
-
-          We do not use one of the PKCS padding schemes here.
-          This is allowed, because we encrypt a totally random string
-          with a length equal to that of the modulus of the RSA key.
-        */
-
-       if(!rsa_public_encrypt(c->rsa, key, len, enckey)) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Error during encryption of meta key for %s (%s)", c->name, c->hostname);
-               return false;
-       }
-
-       /* Convert the encrypted random data to a hexadecimal formatted string */
-
-       bin2hex(enckey, hexkey, len);
-
-       /* Send the meta key */
-
-       bool result = send_request(c, "%d %d %d %d %d %s", METAKEY,
-                        cipher_get_nid(c->outcipher),
-                        digest_get_nid(c->outdigest), c->outmaclength,
-                        c->outcompression, hexkey);
-
-       c->status.encryptout = true;
-       return result;
-}
-
-bool metakey_h(connection_t *c, const char *request) {
-       char hexkey[MAX_STRING_SIZE];
-       int cipher, digest, maclength, compression;
-       size_t len = rsa_size(myself->connection->rsa);
-       char enckey[len];
-       char key[len];
-
-       if(sscanf(request, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, hexkey) != 5) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
-               return false;
-       }
-
-       /* Convert the challenge from hexadecimal back to binary */
-
-       int inlen = hex2bin(hexkey, enckey, sizeof enckey);
-
-       /* Check if the length of the meta key is all right */
-
-       if(inlen != len) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
-               return false;
-       }
-
-       /* Decrypt the meta key */
-
-       if(!rsa_private_decrypt(myself->connection->rsa, enckey, len, key)) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Error during decryption of meta key for %s (%s)", c->name, c->hostname);
-               return false;
-       }
-
-       if(debug_level >= DEBUG_SCARY_THINGS) {
-               bin2hex(key, hexkey, len);
-               logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Received random meta key (unencrypted): %s", hexkey);
-       }
-
-       /* Check and lookup cipher and digest algorithms */
-
-       if(!(c->incipher = cipher_open_by_nid(cipher)) || !cipher_set_key_from_rsa(c->incipher, key, len, false)) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher from %s (%s)", c->name, c->hostname);
-               return false;
-       }
-
-       if(!(c->indigest = digest_open_by_nid(digest, -1))) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of digest from %s (%s)", c->name, c->hostname);
-               return false;
-       }
-
-       c->status.decryptin = true;
-
-       c->allow_request = CHALLENGE;
-
-       return send_challenge(c);
-}
-
-bool send_challenge(connection_t *c) {
-       size_t len = rsa_size(c->rsa);
-       char buffer[len * 2 + 1];
-
-       if(!c->hischallenge)
-               c->hischallenge = xrealloc(c->hischallenge, len);
-
-       /* Copy random data to the buffer */
-
-       randomize(c->hischallenge, len);
-
-       /* Convert to hex */
-
-       bin2hex(c->hischallenge, buffer, len);
-
-       /* Send the challenge */
-
-       return send_request(c, "%d %s", CHALLENGE, buffer);
-}
-
-bool challenge_h(connection_t *c, const char *request) {
-       char buffer[MAX_STRING_SIZE];
-       size_t len = rsa_size(myself->connection->rsa);
-       size_t digestlen = digest_length(c->indigest);
-       char digest[digestlen];
-
-       if(sscanf(request, "%*d " MAX_STRING, buffer) != 1) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name, c->hostname);
-               return false;
-       }
-
-       /* Convert the challenge from hexadecimal back to binary */
-
-       int inlen = hex2bin(buffer, buffer, sizeof buffer);
-
-       /* Check if the length of the challenge is all right */
-
-       if(inlen != len) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge length");
-               return false;
-       }
-
-       /* Calculate the hash from the challenge we received */
-
-       if(!digest_create(c->indigest, buffer, len, digest))
-               return false;
-
-       /* Convert the hash to a hexadecimal formatted string */
-
-       bin2hex(digest, buffer, digestlen);
-
-       /* Send the reply */
-
-       c->allow_request = CHAL_REPLY;
-
-       return send_request(c, "%d %s", CHAL_REPLY, buffer);
-}
-
-bool chal_reply_h(connection_t *c, const char *request) {
-       char hishash[MAX_STRING_SIZE];
-
-       if(sscanf(request, "%*d " MAX_STRING, hishash) != 1) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
-                          c->hostname);
-               return false;
-       }
-
-       /* Convert the hash to binary format */
-
-       int inlen = hex2bin(hishash, hishash, sizeof hishash);
-
-       /* Check if the length of the hash is all right */
-
-       if(inlen != digest_length(c->outdigest)) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply length");
-               return false;
-       }
-
-
-       /* Verify the hash */
-
-       if(!digest_verify(c->outdigest, c->hischallenge, rsa_size(c->rsa), hishash)) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply");
-               return false;
-       }
-
-       /* Identity has now been positively verified.
-          Send an acknowledgement with the rest of the information needed.
-        */
-
-       free(c->hischallenge);
-       c->hischallenge = NULL;
        c->allow_request = ACK;
+       char label[25 + strlen(myself->name) + strlen(c->name)];
 
-       return send_ack(c);
-}
-
-static bool send_upgrade(connection_t *c) {
-       /* Special case when protocol_minor is 1: the other end is ECDSA capable,
-        * but doesn't know our key yet. So send it now. */
-
-       char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
-
-       if(!pubkey)
-               return false;
+       if(c->outgoing)
+               snprintf(label, sizeof label, "tinc TCP key expansion %s %s", myself->name, c->name);
+       else
+               snprintf(label, sizeof label, "tinc TCP key expansion %s %s", c->name, myself->name);
 
-       bool result = send_request(c, "%d %s", ACK, pubkey);
-       free(pubkey);
-       return result;
+       return sptps_start(&c->sptps, c, c->outgoing, false, myself->connection->ecdsa, c->ecdsa, label, sizeof label, send_meta_sptps, receive_meta_sptps);
 }
 
 bool send_ack(connection_t *c) {
-       if(c->protocol_minor == 1)
-               return send_upgrade(c);
-
        /* ACK message contains rest of the information the other end needs
           to create node_t and edge_t structures. */
 
@@ -672,14 +390,16 @@ bool send_ack(connection_t *c) {
        if(choice)
                c->options |= OPTION_CLAMP_MSS;
 
-       get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight);
+       if(!get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight))
+               get_config_int(lookup_config(config_tree, "Weight"), &c->estimated_weight);
 
-       return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, (c->options & 0xffffff) | (experimental ? (PROT_MINOR << 24) : 0));
+       return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, (c->options & 0xffffff) | (PROT_MINOR << 24));
 }
 
 static void send_everything(connection_t *c) {
        /* Send all known subnets and edges */
 
+       // TODO: remove this
        if(disablebuggypeers) {
                static struct {
                        vpn_packet_t pkt;
@@ -691,45 +411,13 @@ static void send_everything(connection_t *c) {
                send_tcppacket(c, &zeropkt.pkt);
        }
 
-       if(tunnelserver) {
-               for splay_each(subnet_t, s, myself->subnet_tree)
-                       send_add_subnet(c, s);
-
-               return;
-       }
-
        for splay_each(node_t, n, node_tree) {
-               for splay_each(subnet_t, s, n->subnet_tree)
-                       send_add_subnet(c, s);
-
                for splay_each(edge_t, e, n->edge_tree)
                        send_add_edge(c, e);
        }
 }
 
-static bool upgrade_h(connection_t *c, const char *request) {
-       char pubkey[MAX_STRING_SIZE];
-
-       if(sscanf(request, "%*d " MAX_STRING, pubkey) != 1) {
-               logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name, c->hostname);
-               return false;
-       }
-
-       if(ecdsa_active(c->ecdsa) || read_ecdsa_public_key(c)) {
-               logger(DEBUG_ALWAYS, LOG_INFO, "Already have ECDSA public key from %s (%s), not upgrading.", c->name, c->hostname);
-               return false;
-       }
-
-       logger(DEBUG_ALWAYS, LOG_INFO, "Got ECDSA public key from %s (%s), upgrading!", c->name, c->hostname);
-       append_config_file(c->name, "ECDSAPublicKey", pubkey);
-       c->allow_request = TERMREQ;
-       return send_termreq(c);
-}
-
 bool ack_h(connection_t *c, const char *request) {
-       if(c->protocol_minor == 1)
-               return upgrade_h(c, request);
-
        char hisport[MAX_STRING_SIZE];
        char *hisaddress;
        int weight, mtu;
@@ -766,7 +454,7 @@ bool ack_h(connection_t *c, const char *request) {
                        }
 
                        terminate_connection(n->connection, false);
-                       /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
+                       /* Run graph algorithm to keep things in sync */
                        graph();
                }
        }
@@ -820,10 +508,7 @@ bool ack_h(connection_t *c, const char *request) {
 
        /* Notify everyone of the new edge */
 
-       if(tunnelserver)
-               send_add_edge(c, c->edge);
-       else
-               send_add_edge(everyone, c->edge);
+       send_add_edge(everyone, c->edge);
 
        /* Run MST and SSSP algorithms */