/* Copyright (c) 2019 @crosbymichael 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. */ package main import ( "context" "encoding/json" "fmt" "net" "os" "os/signal" "syscall" v1 "github.com/crosbymichael/guard/api/v1" "github.com/getsentry/raven-go" grpc_prometheus "github.com/grpc-ecosystem/go-grpc-prometheus" "github.com/pkg/errors" "github.com/sirupsen/logrus" "github.com/urfave/cli" "google.golang.org/grpc" ) func main() { app := cli.NewApp() app.Name = "guard" app.Version = "1" app.Usage = "Wireguard grpc server" app.Flags = []cli.Flag{ cli.BoolFlag{ Name: "debug", Usage: "enable debug output in the logs", }, cli.StringFlag{ Name: "address,a", Usage: "grpc address", Value: "127.0.0.1:10100", }, cli.StringFlag{ Name: "sentry-dsn", Usage: "sentry DSN", EnvVar: "SENTRY_DSN", }, } app.Before = func(clix *cli.Context) error { if clix.GlobalBool("debug") { logrus.SetLevel(logrus.DebugLevel) } if dsn := clix.GlobalString("sentry-dsn"); dsn != "" { raven.SetDSN(dsn) raven.DefaultClient.SetRelease(app.Version) } return nil } app.Commands = []cli.Command{ createCommand, deleteCommand, serverCommand, } if err := app.Run(os.Args); err != nil { fmt.Fprintln(os.Stderr, err) raven.CaptureErrorAndWait(err, nil) os.Exit(1) } } var serverCommand = cli.Command{ Name: "server", Description: "run the wireguard grpc server", Flags: []cli.Flag{ cli.StringFlag{ Name: "dir", Usage: "wireguard configuration directory", Value: defaultWireguardDir, }, }, Action: func(clix *cli.Context) error { if os.Geteuid() != 0 { return errors.New("grpc server must run as root") } wg, err := newServer(clix.String("dir")) if err != nil { return err } server := newGRPC() v1.RegisterWireguardServer(server, wg) signals := make(chan os.Signal, 32) signal.Notify(signals, syscall.SIGTERM, syscall.SIGINT) go func() { <-signals server.Stop() }() l, err := net.Listen("tcp", clix.GlobalString("address")) if err != nil { return errors.Wrap(err, "listen tcp") } defer l.Close() return server.Serve(l) }, } var createCommand = cli.Command{ Name: "create", Description: "create a new tunnel", Flags: []cli.Flag{ cli.StringFlag{ Name: "address,a", Usage: "cidr for the tunnel address", }, cli.UintFlag{ Name: "port,p", Usage: "listen port for the tunnel", }, }, Action: func(clix *cli.Context) error { conn, err := grpc.Dial(clix.GlobalString("address"), grpc.WithInsecure()) if err != nil { return errors.Wrap(err, "dial server") } defer conn.Close() var ( ctx = cancelContext() client = v1.NewWireguardClient(conn) ) r, err := client.Create(ctx, &v1.CreateRequest{ ID: clix.Args().First(), Address: clix.String("address"), ListenPort: uint32(clix.Uint("port")), }) if err != nil { return err } return json.NewEncoder(os.Stdout).Encode(r.Tunnel) }, } var deleteCommand = cli.Command{ Name: "delete", Description: "delete a tunnel", Action: func(clix *cli.Context) error { conn, err := grpc.Dial(clix.GlobalString("address"), grpc.WithInsecure()) if err != nil { return errors.Wrap(err, "dial server") } defer conn.Close() var ( ctx = cancelContext() client = v1.NewWireguardClient(conn) ) if _, err := client.Delete(ctx, &v1.DeleteRequest{ ID: clix.Args().First(), }); err != nil { return err } return nil }, } func newGRPC() *grpc.Server { s := grpc.NewServer( grpc.UnaryInterceptor(unary), grpc.StreamInterceptor(stream), ) return s } func unary(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (resp interface{}, err error) { r, err := grpc_prometheus.UnaryServerInterceptor(ctx, req, info, handler) if err != nil { raven.CaptureError(err, nil) } return r, err } func stream(srv interface{}, ss grpc.ServerStream, info *grpc.StreamServerInfo, handler grpc.StreamHandler) error { err := grpc_prometheus.StreamServerInterceptor(srv, ss, info, handler) if err != nil { raven.CaptureError(err, nil) } return err } func cancelContext() context.Context { ctx, cancel := context.WithCancel(context.Background()) s := make(chan os.Signal) signal.Notify(s, syscall.SIGTERM, syscall.SIGINT) go func() { <-s cancel() }() return ctx }