go test: make more idiomatic
- gofmt - Give config struct one line per field - Use camel case - Check errors - Log invariants with detail - Use consistent pronouns Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
		
							parent
							
								
									7887d8024c
								
							
						
					
					
						commit
						85a14af6b0
					
				@ -3,61 +3,86 @@
 | 
			
		||||
package main
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"github.com/titanous/noise"
 | 
			
		||||
	"net"
 | 
			
		||||
	"time"
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"crypto/rand"
 | 
			
		||||
	"encoding/base64"
 | 
			
		||||
	"encoding/binary"
 | 
			
		||||
	"log"
 | 
			
		||||
	"net"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"github.com/dchest/blake2s"
 | 
			
		||||
	"github.com/titanous/noise"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func assert(exp bool) {
 | 
			
		||||
	if !exp {
 | 
			
		||||
		panic("Assertion failed.")
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func main() {
 | 
			
		||||
	my_private, _ := base64.StdEncoding.DecodeString("WAmgVYXkbT2bCtdcDwolI88/iVi/aV3/PHcUBTQSYmo=")
 | 
			
		||||
	my_public, _ := base64.StdEncoding.DecodeString("K5sF9yESrSBsOXPd6TcpKNgqoy1Ik3ZFKl4FolzrRyI=")
 | 
			
		||||
	ourPrivate, _ := base64.StdEncoding.DecodeString("WAmgVYXkbT2bCtdcDwolI88/iVi/aV3/PHcUBTQSYmo=")
 | 
			
		||||
	ourPublic, _ := base64.StdEncoding.DecodeString("K5sF9yESrSBsOXPd6TcpKNgqoy1Ik3ZFKl4FolzrRyI=")
 | 
			
		||||
	preshared, _ := base64.StdEncoding.DecodeString("FpCyhws9cxwWoV4xELtfJvjJN+zQVRPISllRWgeopVE=")
 | 
			
		||||
	their_public, _ := base64.StdEncoding.DecodeString("qRCwZSKInrMAq5sepfCdaCsRJaoLe5jhtzfiw7CjbwM=")
 | 
			
		||||
	theirPublic, _ := base64.StdEncoding.DecodeString("qRCwZSKInrMAq5sepfCdaCsRJaoLe5jhtzfiw7CjbwM=")
 | 
			
		||||
	cs := noise.NewCipherSuite(noise.DH25519, noise.CipherChaChaPoly, noise.HashBLAKE2s)
 | 
			
		||||
	hs := noise.NewHandshakeState(noise.Config{CipherSuite: cs, Random: rand.Reader, Pattern: noise.HandshakeIK, Initiator: true, Prologue: []byte("WireGuard v0 zx2c4 Jason@zx2c4.com"), PresharedKey: preshared, StaticKeypair: noise.DHKey{Private: my_private, Public: my_public}, PeerStatic: their_public})
 | 
			
		||||
	conn, _ := net.Dial("udp", "test.wireguard.io:51820")
 | 
			
		||||
	hs := noise.NewHandshakeState(noise.Config{
 | 
			
		||||
		CipherSuite:   cs,
 | 
			
		||||
		Random:        rand.Reader,
 | 
			
		||||
		Pattern:       noise.HandshakeIK,
 | 
			
		||||
		Initiator:     true,
 | 
			
		||||
		Prologue:      []byte("WireGuard v0 zx2c4 Jason@zx2c4.com"),
 | 
			
		||||
		PresharedKey:  preshared,
 | 
			
		||||
		StaticKeypair: noise.DHKey{Private: ourPrivate, Public: ourPublic},
 | 
			
		||||
		PeerStatic:    theirPublic,
 | 
			
		||||
	})
 | 
			
		||||
	conn, err := net.Dial("udp", "test.wireguard.io:51820")
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Fatalf("error dialing udp socket: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
	defer conn.Close()
 | 
			
		||||
 | 
			
		||||
	now := time.Now()
 | 
			
		||||
	tai64n := make([]byte, 12)
 | 
			
		||||
	binary.BigEndian.PutUint64(tai64n[:], uint64(now.Unix()))
 | 
			
		||||
	binary.BigEndian.PutUint32(tai64n[8:], uint32(now.UnixNano()))
 | 
			
		||||
	initiation_packet := make([]byte, 5)
 | 
			
		||||
	initiation_packet[0] = 1 /* Type: Initiation */
 | 
			
		||||
	binary.LittleEndian.PutUint32(initiation_packet[1:], 28) /* Sender index: 28 (arbitrary) */
 | 
			
		||||
	initiation_packet, _, _ = hs.WriteMessage(initiation_packet, tai64n)
 | 
			
		||||
	initiationPacket := make([]byte, 5)
 | 
			
		||||
	initiationPacket[0] = 1                                 // Type: Initiation
 | 
			
		||||
	binary.LittleEndian.PutUint32(initiationPacket[1:], 28) // Sender index: 28 (arbitrary)
 | 
			
		||||
	initiationPacket, _, _ = hs.WriteMessage(initiationPacket, tai64n)
 | 
			
		||||
	hasher, _ := blake2s.New(&blake2s.Config{Size: 16, Key: preshared})
 | 
			
		||||
	hasher.Write(their_public)
 | 
			
		||||
	hasher.Write(initiation_packet)
 | 
			
		||||
	initiation_packet = append(initiation_packet, hasher.Sum(nil)[:16]...)
 | 
			
		||||
	initiation_packet = append(initiation_packet, bytes.Repeat([]byte{ 0 }, 16)...)
 | 
			
		||||
	conn.Write(initiation_packet)
 | 
			
		||||
	hasher.Write(theirPublic)
 | 
			
		||||
	hasher.Write(initiationPacket)
 | 
			
		||||
	initiationPacket = append(initiationPacket, hasher.Sum(nil)[:16]...)
 | 
			
		||||
	initiationPacket = append(initiationPacket, make([]byte, 16)...)
 | 
			
		||||
	if _, err := conn.Write(initiationPacket); err != nil {
 | 
			
		||||
		log.Fatalf("error writing initiation packet: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	response_packet := make([]byte, 89)
 | 
			
		||||
	conn.Read(response_packet)
 | 
			
		||||
	assert(response_packet[0] == 2 /* Type: Response */)
 | 
			
		||||
	their_index := binary.LittleEndian.Uint32(response_packet[1:])
 | 
			
		||||
	our_index := binary.LittleEndian.Uint32(response_packet[5:])
 | 
			
		||||
	assert(our_index == 28)
 | 
			
		||||
	payload, send_cs, _, err := hs.ReadMessage(nil, response_packet[9:57])
 | 
			
		||||
	assert(len(payload) == 0 && err == nil)
 | 
			
		||||
	responsePacket := make([]byte, 89)
 | 
			
		||||
	n, err := conn.Read(responsePacket)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Fatalf("error reading response packet: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
	if n != len(responsePacket) {
 | 
			
		||||
		log.Fatalf("response packet too short: want %d, got %d", len(responsePacket), n)
 | 
			
		||||
	}
 | 
			
		||||
	if responsePacket[0] != 2 { // Type: Response
 | 
			
		||||
		log.Fatalf("response packet type wrong: want %d, got %d", 2, responsePacket[0])
 | 
			
		||||
	}
 | 
			
		||||
	theirIndex := binary.LittleEndian.Uint32(responsePacket[1:])
 | 
			
		||||
	ourIndex := binary.LittleEndian.Uint32(responsePacket[5:])
 | 
			
		||||
	if ourIndex != 28 {
 | 
			
		||||
		log.Fatalf("response packet index wrong: want %d, got %d", 28, ourIndex)
 | 
			
		||||
	}
 | 
			
		||||
	payload, sendCipher, _, err := hs.ReadMessage(nil, responsePacket[9:57])
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Fatalf("error reading handshake message: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
	if len(payload) > 0 {
 | 
			
		||||
		log.Fatalf("unexpected payload: %x", payload)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	keepalive_packet := make([]byte, 13)
 | 
			
		||||
	keepalive_packet[0] = 4 /* Type: Data */
 | 
			
		||||
	binary.LittleEndian.PutUint32(keepalive_packet[1:], their_index)
 | 
			
		||||
	binary.LittleEndian.PutUint64(keepalive_packet[3:], 0) /* Nonce */
 | 
			
		||||
	keepalive_packet = send_cs.Encrypt(keepalive_packet, nil, nil)
 | 
			
		||||
	conn.Write(keepalive_packet)
 | 
			
		||||
 | 
			
		||||
	conn.Close()
 | 
			
		||||
	keepalivePacket := make([]byte, 13)
 | 
			
		||||
	keepalivePacket[0] = 4 // Type: Data
 | 
			
		||||
	binary.LittleEndian.PutUint32(keepalivePacket[1:], theirIndex)
 | 
			
		||||
	binary.LittleEndian.PutUint64(keepalivePacket[3:], 0) // Nonce
 | 
			
		||||
	keepalivePacket = sendCipher.Encrypt(keepalivePacket, nil, nil)
 | 
			
		||||
	if _, err := conn.Write(keepalivePacket); err != nil {
 | 
			
		||||
		log.Fatalf("error writing keepalive packet: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user