2019-11-11 15:39:09 +01:00
|
|
|
import { x25519 } from 'bcrypto';
|
2019-11-11 21:58:04 +01:00
|
|
|
import { Buffer } from "buffer";
|
2019-11-20 15:21:53 +01:00
|
|
|
import Wrap from 'it-pb-rpc';
|
2019-11-25 13:27:55 +01:00
|
|
|
import DuplexPair from 'it-pair/duplex';
|
|
|
|
import ensureBuffer from 'it-buffer';
|
|
|
|
import pipe from 'it-pipe';
|
|
|
|
import lp from 'it-length-prefixed';
|
|
|
|
const { int16BEEncode, int16BEDecode } = lp;
|
2019-11-08 14:03:34 +01:00
|
|
|
|
2019-11-11 21:58:04 +01:00
|
|
|
import { Handshake } from "./handshake";
|
2019-11-21 14:43:12 +01:00
|
|
|
import { generateKeypair } from "./utils";
|
2019-11-25 13:09:40 +01:00
|
|
|
import { decryptStream, encryptStream } from "./crypto";
|
2019-11-20 15:21:53 +01:00
|
|
|
import { bytes } from "./@types/basic";
|
|
|
|
import { NoiseConnection, PeerId, KeyPair, SecureOutbound } from "./@types/libp2p";
|
|
|
|
import { Duplex } from "./@types/it-pair";
|
2019-11-11 21:58:04 +01:00
|
|
|
|
2019-11-22 12:52:59 +01:00
|
|
|
export type WrappedConnection = ReturnType<typeof Wrap>;
|
2019-11-21 14:43:12 +01:00
|
|
|
|
2019-11-11 21:58:04 +01:00
|
|
|
export class Noise implements NoiseConnection {
|
2019-11-20 13:23:36 +01:00
|
|
|
public protocol = "/noise";
|
|
|
|
|
2019-11-11 15:39:09 +01:00
|
|
|
private readonly privateKey: bytes;
|
2019-11-21 14:43:12 +01:00
|
|
|
private readonly staticKeys: KeyPair;
|
|
|
|
private readonly earlyData?: bytes;
|
2019-11-11 15:39:09 +01:00
|
|
|
|
2019-11-08 14:03:34 +01:00
|
|
|
constructor(privateKey: bytes, staticNoiseKey?: bytes, earlyData?: bytes) {
|
2019-11-11 15:39:09 +01:00
|
|
|
this.privateKey = privateKey;
|
|
|
|
this.earlyData = earlyData;
|
2019-11-08 14:03:34 +01:00
|
|
|
|
2019-11-11 15:39:09 +01:00
|
|
|
if (staticNoiseKey) {
|
|
|
|
const publicKey = x25519.publicKeyCreate(staticNoiseKey);
|
|
|
|
this.staticKeys = {
|
|
|
|
privateKey: staticNoiseKey,
|
|
|
|
publicKey,
|
|
|
|
}
|
2019-11-12 14:02:59 +01:00
|
|
|
} else {
|
2019-11-21 14:43:12 +01:00
|
|
|
this.staticKeys = generateKeypair();
|
2019-11-11 15:39:09 +01:00
|
|
|
}
|
2019-11-08 14:03:34 +01:00
|
|
|
}
|
|
|
|
|
2019-11-20 13:23:36 +01:00
|
|
|
/**
|
|
|
|
* Encrypt outgoing data to the remote party (handshake as initiator)
|
|
|
|
* @param {PeerId} localPeer - PeerId of the receiving peer
|
|
|
|
* @param connection - streaming iterable duplex that will be encrypted
|
|
|
|
* @param {PeerId} remotePeer - PeerId of the remote peer. Used to validate the integrity of the remote peer.
|
|
|
|
* @returns {Promise<SecureOutbound>}
|
|
|
|
*/
|
|
|
|
public async secureOutbound(localPeer: PeerId, connection: any, remotePeer: PeerId) : Promise<SecureOutbound> {
|
2019-11-20 15:21:53 +01:00
|
|
|
const wrappedConnection = Wrap(connection);
|
2019-11-25 14:03:23 +01:00
|
|
|
const remotePublicKey = remotePeer.pubKey.bytes;
|
|
|
|
const conn = await this.createSecureConnection(wrappedConnection, remotePublicKey, true);
|
2019-11-11 21:58:04 +01:00
|
|
|
|
2019-11-20 13:23:36 +01:00
|
|
|
return {
|
2019-11-25 14:03:23 +01:00
|
|
|
conn,
|
2019-11-20 13:23:36 +01:00
|
|
|
remotePeer,
|
2019-11-11 21:58:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 13:23:36 +01:00
|
|
|
/**
|
|
|
|
* Decrypt incoming data (handshake as responder).
|
|
|
|
* @param {PeerId} localPeer - PeerId of the receiving peer.
|
|
|
|
* @param connection - streaming iterable duplex that will be encryption.
|
|
|
|
* @param {PeerId} remotePeer - optional PeerId of the initiating peer, if known. This may only exist during transport upgrades.
|
|
|
|
* @returns {Promise<SecureOutbound>}
|
|
|
|
*/
|
2019-11-21 14:43:12 +01:00
|
|
|
public async secureInbound(localPeer: PeerId, connection: any, remotePeer: PeerId) : Promise<SecureOutbound> {
|
2019-11-25 14:03:23 +01:00
|
|
|
const wrappedConnection = Wrap(connection);
|
|
|
|
const remotePublicKey = remotePeer.pubKey.bytes;
|
|
|
|
const conn = await this.createSecureConnection(wrappedConnection, remotePublicKey, false);
|
|
|
|
|
2019-11-21 14:43:12 +01:00
|
|
|
return {
|
2019-11-25 14:03:23 +01:00
|
|
|
conn,
|
|
|
|
remotePeer,
|
|
|
|
};
|
2019-11-11 21:58:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private async createSecureConnection(
|
2019-11-21 14:43:12 +01:00
|
|
|
connection: WrappedConnection,
|
2019-11-11 21:58:04 +01:00
|
|
|
remotePublicKey: bytes,
|
|
|
|
isInitiator: boolean,
|
2019-11-20 13:23:36 +01:00
|
|
|
) : Promise<Duplex> {
|
2019-11-25 13:09:40 +01:00
|
|
|
// Perform handshake
|
2019-11-20 13:23:36 +01:00
|
|
|
const prologue = Buffer.from(this.protocol);
|
2019-11-25 13:09:40 +01:00
|
|
|
const handshake = new Handshake('XX', isInitiator, remotePublicKey, prologue, this.staticKeys, connection);
|
2019-11-21 13:38:39 +01:00
|
|
|
|
2019-11-25 13:09:40 +01:00
|
|
|
const session = await handshake.propose(this.earlyData);
|
|
|
|
await handshake.exchange(session);
|
|
|
|
await handshake.finish(session);
|
2019-11-11 21:58:04 +01:00
|
|
|
|
2019-11-25 13:09:40 +01:00
|
|
|
// Create encryption box/unbox wrapper
|
2019-11-25 13:27:55 +01:00
|
|
|
const [secure, user] = DuplexPair();
|
|
|
|
const network = connection.unwrap();
|
|
|
|
|
|
|
|
pipe(
|
|
|
|
secure, // write to wrapper
|
|
|
|
ensureBuffer, // ensure any type of data is converted to buffer
|
|
|
|
encryptStream(handshake, session), // data is encrypted
|
|
|
|
lp.encode({ lengthEncoder: int16BEEncode }), // prefix with message length
|
|
|
|
network, // send to the remote peer
|
|
|
|
lp.decode({ lengthDecoder: int16BEDecode }), // read message length prefix
|
|
|
|
ensureBuffer, // ensure any type of data is converted to buffer
|
|
|
|
decryptStream(handshake, session), // decrypt the incoming data
|
|
|
|
secure // pipe to the wrapper
|
|
|
|
);
|
|
|
|
|
|
|
|
return user;
|
2019-11-08 14:03:34 +01:00
|
|
|
}
|
|
|
|
|
2019-11-11 21:58:04 +01:00
|
|
|
|
2019-11-08 14:03:34 +01:00
|
|
|
}
|