wireguard-go/main.go

250 lines
5.4 KiB
Go
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0
*
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*/
package main
2017-06-26 11:14:02 +00:00
import (
"fmt"
"os"
2017-08-01 10:14:38 +00:00
"os/signal"
2018-05-04 17:50:08 +00:00
"runtime"
2017-11-14 17:26:28 +00:00
"strconv"
)
2017-11-30 22:30:29 +00:00
const (
ExitSetupSuccess = 0
ExitSetupFailed = 1
)
2017-11-14 17:26:28 +00:00
const (
2018-05-04 17:50:08 +00:00
ENV_WG_TUN_FD = "WG_TUN_FD"
ENV_WG_UAPI_FD = "WG_UAPI_FD"
2018-05-03 12:50:57 +00:00
ENV_WG_PROCESS_FOREGROUND = "WG_PROCESS_FOREGROUND"
2017-06-26 11:14:02 +00:00
)
func printUsage() {
fmt.Printf("usage:\n")
fmt.Printf("%s [-f/--foreground] INTERFACE-NAME\n", os.Args[0])
}
2018-05-04 17:50:08 +00:00
func warning() {
fmt.Fprintln(os.Stderr, "WARNING WARNING WARNING WARNING WARNING WARNING WARNING")
fmt.Fprintln(os.Stderr, "W G")
fmt.Fprintln(os.Stderr, "W This is alpha software. It will very likely not G")
fmt.Fprintln(os.Stderr, "W do what it is supposed to do, and things may go G")
fmt.Fprintln(os.Stderr, "W horribly wrong. You have been warned. Proceed G")
fmt.Fprintln(os.Stderr, "W at your own risk. G")
if runtime.GOOS == "linux" {
fmt.Fprintln(os.Stderr, "W G")
fmt.Fprintln(os.Stderr, "W Furthermore, you are running this software on a G")
fmt.Fprintln(os.Stderr, "W Linux kernel, which is probably unnecessary and G")
fmt.Fprintln(os.Stderr, "W foolish. This is because the Linux kernel has G")
fmt.Fprintln(os.Stderr, "W built-in first class support for WireGuard, and G")
fmt.Fprintln(os.Stderr, "W this support is much more refined than this G")
fmt.Fprintln(os.Stderr, "W program. For more information on installing the G")
fmt.Fprintln(os.Stderr, "W kernel module, please visit: G")
fmt.Fprintln(os.Stderr, "W https://www.wireguard.com/install G")
}
fmt.Fprintln(os.Stderr, "W G")
fmt.Fprintln(os.Stderr, "WARNING WARNING WARNING WARNING WARNING WARNING WARNING")
}
func main() {
warning()
2018-05-03 02:49:35 +00:00
// parse arguments
var foreground bool
var interfaceName string
if len(os.Args) < 2 || len(os.Args) > 3 {
printUsage()
return
}
switch os.Args[1] {
2017-07-17 14:16:18 +00:00
case "-f", "--foreground":
foreground = true
if len(os.Args) != 3 {
printUsage()
return
}
interfaceName = os.Args[2]
2017-07-17 14:16:18 +00:00
default:
foreground = false
if len(os.Args) != 2 {
printUsage()
return
}
interfaceName = os.Args[1]
}
2018-05-03 12:50:57 +00:00
if !foreground {
foreground = os.Getenv(ENV_WG_PROCESS_FOREGROUND) == "1"
}
// get log level (default: info)
logLevel := func() int {
switch os.Getenv("LOG_LEVEL") {
case "debug":
return LogLevelDebug
case "info":
return LogLevelInfo
case "error":
return LogLevelError
}
return LogLevelInfo
}()
2017-11-17 13:36:08 +00:00
// open TUN device (or use supplied fd)
2017-11-14 17:26:28 +00:00
tun, err := func() (TUNDevice, error) {
2017-11-17 13:36:08 +00:00
tunFdStr := os.Getenv(ENV_WG_TUN_FD)
2017-11-14 17:26:28 +00:00
if tunFdStr == "" {
return CreateTUN(interfaceName)
}
2017-11-17 13:36:08 +00:00
// construct tun device from supplied fd
2017-11-14 17:26:28 +00:00
fd, err := strconv.ParseUint(tunFdStr, 10, 32)
if err != nil {
return nil, err
}
2017-11-17 13:36:08 +00:00
file := os.NewFile(uintptr(fd), "")
return CreateTUNFromFile(file)
2017-11-14 17:26:28 +00:00
}()
2018-05-04 19:11:38 +00:00
if err == nil {
realInterfaceName, err2 := tun.Name()
if err2 == nil {
interfaceName = realInterfaceName
}
}
logger := NewLogger(
logLevel,
fmt.Sprintf("(%s) ", interfaceName),
)
logger.Debug.Println("Debug log enabled")
2017-11-14 17:26:28 +00:00
if err != nil {
logger.Error.Println("Failed to create TUN device:", err)
2017-11-17 13:36:08 +00:00
os.Exit(ExitSetupFailed)
2017-11-14 17:26:28 +00:00
}
2017-11-17 13:36:08 +00:00
// open UAPI file (or use supplied fd)
fileUAPI, err := func() (*os.File, error) {
uapiFdStr := os.Getenv(ENV_WG_UAPI_FD)
if uapiFdStr == "" {
return UAPIOpen(interfaceName)
}
// use supplied fd
fd, err := strconv.ParseUint(uapiFdStr, 10, 32)
if err != nil {
return nil, err
}
return os.NewFile(uintptr(fd), ""), nil
}()
if err != nil {
logger.Error.Println("UAPI listen error:", err)
os.Exit(ExitSetupFailed)
return
}
2017-11-14 17:26:28 +00:00
// daemonize the process
if !foreground {
env := os.Environ()
2017-11-17 13:36:08 +00:00
env = append(env, fmt.Sprintf("%s=3", ENV_WG_TUN_FD))
env = append(env, fmt.Sprintf("%s=4", ENV_WG_UAPI_FD))
2018-05-03 12:50:57 +00:00
env = append(env, fmt.Sprintf("%s=1", ENV_WG_PROCESS_FOREGROUND))
2017-11-14 17:26:28 +00:00
attr := &os.ProcAttr{
Files: []*os.File{
nil, // stdin
nil, // stdout
nil, // stderr
tun.File(),
2017-11-17 13:36:08 +00:00
fileUAPI,
2017-11-14 17:26:28 +00:00
},
Dir: ".",
Env: env,
}
2018-05-03 12:50:57 +00:00
path, err := os.Executable()
if err != nil {
logger.Error.Println("Failed to determine executable:", err)
os.Exit(ExitSetupFailed)
}
process, err := os.StartProcess(
path,
os.Args,
attr,
)
2017-11-14 17:26:28 +00:00
if err != nil {
logger.Error.Println("Failed to daemonize:", err)
2017-11-17 13:36:08 +00:00
os.Exit(ExitSetupFailed)
2017-11-14 17:26:28 +00:00
}
2018-05-03 12:50:57 +00:00
process.Release()
2017-11-14 17:26:28 +00:00
return
}
// create wireguard device
device := NewDevice(tun, logger)
2017-11-17 13:36:08 +00:00
2017-11-14 17:26:28 +00:00
logger.Info.Println("Device started")
2017-11-17 13:36:08 +00:00
// start uapi listener
2017-08-01 10:14:38 +00:00
errs := make(chan error)
term := make(chan os.Signal)
2017-11-17 13:36:08 +00:00
uapi, err := UAPIListen(interfaceName, fileUAPI)
if err != nil {
logger.Error.Println("Failed to listen on uapi socket:", err)
os.Exit(ExitSetupFailed)
}
2017-11-17 13:36:08 +00:00
2017-07-17 14:16:18 +00:00
go func() {
for {
conn, err := uapi.Accept()
if err != nil {
2017-08-01 10:14:38 +00:00
errs <- err
return
2017-07-17 14:16:18 +00:00
}
go ipcHandle(device, conn)
}
2017-07-17 14:16:18 +00:00
}()
2017-11-14 17:26:28 +00:00
logger.Info.Println("UAPI listener started")
2017-08-01 10:14:38 +00:00
// wait for program to terminate
signal.Notify(term, os.Kill)
signal.Notify(term, os.Interrupt)
select {
case <-term:
case <-errs:
2017-12-01 22:37:26 +00:00
case <-device.Wait():
2017-08-01 10:14:38 +00:00
}
2017-11-17 13:36:08 +00:00
// clean up
2017-08-01 10:14:38 +00:00
uapi.Close()
2017-11-17 13:36:08 +00:00
device.Close()
2017-08-01 10:14:38 +00:00
2017-11-14 17:26:28 +00:00
logger.Info.Println("Shutting down")
}