/* * * The MIT License (MIT) * * Copyright (c) 2014 Juan Batiz-Benet * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * This program demonstrate a simple chat application using p2p communication. * */ package main import ( "bufio" "context" "flag" "fmt" "log" "os" "strings" "crypto/rand" "io" "github.com/libp2p/go-libp2p" "github.com/libp2p/go-libp2p-core/crypto" "github.com/libp2p/go-libp2p-core/network" "github.com/libp2p/go-libp2p-core/peer" "github.com/libp2p/go-libp2p-core/peerstore" "github.com/multiformats/go-multiaddr" ) func handleStream(s network.Stream) { log.Println("Got a new stream!") // Create a buffer stream for non blocking read and write. rw := bufio.NewReadWriter(bufio.NewReader(s), bufio.NewWriter(s)) go readData(rw) go writeData(rw) // stream 's' will stay open until you close it (or the other side closes it). } func readData(rw *bufio.ReadWriter) { for { str, _ := rw.ReadString('\n') if str == "" { return } if str != "\n" { // Green console colour: \x1b[32m // Reset console colour: \x1b[0m fmt.Printf("\x1b[32m%s\x1b[0m> ", str) } } } func writeData(rw *bufio.ReadWriter) { stdReader := bufio.NewReader(os.Stdin) for { fmt.Print("> ") sendData, err := stdReader.ReadString('\n') if err != nil { panic(err) } rw.WriteString(fmt.Sprintf("%s", sendData)) rw.Flush() } } func main() { sourcePort := flag.Int("sp", 0, "Source port number") dest := flag.String("d", "", "Destination multiaddr string") help := flag.Bool("help", false, "Display help") flag.Parse() if *help { fmt.Printf("This program demonstrates a simple p2p chat application using libp2p\n\n") fmt.Println("Usage: Run './chat -sp ' where can be any port number.") fmt.Println("Now run './chat -d ' where is multiaddress of previous listener host.") os.Exit(0) } var r io.Reader if *dest == "" { // Creates a fixed ED25519 key pair for this host. ed25519Fixed := [32]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} r = strings.NewReader(string(ed25519Fixed[:])) } else { r = rand.Reader } prvKey, _, err := crypto.GenerateKeyPairWithReader(crypto.Ed25519, 32, r) if err != nil { panic(err) } // 0.0.0.0 will listen on any interface device. sourceMultiAddr, _ := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/0.0.0.0/tcp/%d", *sourcePort)) // libp2p.New constructs a new libp2p Host. // Other options can be added here. host, err := libp2p.New( context.Background(), libp2p.ListenAddrs(sourceMultiAddr), libp2p.Identity(prvKey), ) if err != nil { panic(err) } if *dest == "" { // Set a function as stream handler. // This function is called when a peer connects, and starts a stream with this protocol. // Only applies on the receiving side. host.SetStreamHandler("/chat/1.0.0", handleStream) // Let's get the actual TCP port from our listen multiaddr, in case we're using 0 (default; random available port). var port string for _, la := range host.Network().ListenAddresses() { if p, err := la.ValueForProtocol(multiaddr.P_TCP); err == nil { port = p break } } if port == "" { panic("was not able to find actual local port") } fmt.Printf("Run './chat -d /ip4/127.0.0.1/tcp/%v/p2p/%s' on another console.\n", port, host.ID().Pretty()) fmt.Println("You can replace 127.0.0.1 with public IP as well.") fmt.Printf("\nWaiting for incoming connection\n\n") // Hang forever <-make(chan struct{}) } else { fmt.Println("This node's multiaddresses:") for _, la := range host.Addrs() { fmt.Printf(" - %v\n", la) } fmt.Println() // Turn the destination into a multiaddr. maddr, err := multiaddr.NewMultiaddr(*dest) if err != nil { log.Fatalln(err) } // Extract the peer ID from the multiaddr. info, err := peer.AddrInfoFromP2pAddr(maddr) if err != nil { log.Fatalln(err) } // Add the destination's peer multiaddress in the peerstore. // This will be used during connection and stream creation by libp2p. host.Peerstore().AddAddrs(info.ID, info.Addrs, peerstore.PermanentAddrTTL) // Start a stream with the destination. // Multiaddress of the destination peer is fetched from the peerstore using 'peerId'. s, err := host.NewStream(context.Background(), info.ID, "/chat/1.0.0") if err != nil { panic(err) } // Create a buffered stream so that read and writes are non blocking. rw := bufio.NewReadWriter(bufio.NewReader(s), bufio.NewWriter(s)) // Create a thread to read and write data. go writeData(rw) go readData(rw) // Hang forever. select {} } }