-
Notifications
You must be signed in to change notification settings - Fork 20
/
main.go
138 lines (119 loc) · 3.35 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Copyright 2017 Burak Sezer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"errors"
"flag"
"fmt"
"io/ioutil"
"math/rand"
"net"
"os"
"os/signal"
"runtime"
"syscall"
"time"
"log"
"github.com/hashicorp/logutils"
)
const opErrAccept = "accept"
const usage = `Secure SOCKS5 proxy server
Usage:
gsocks5 [command] -c [config-file-path]
Commands:
-help, -h Print this message.
-version -v Print version.
-debug -d Enable debug mode.
-config -c Set configuration file. It is %s by default.
The Go runtime version %s
Report bugs to https://github.com/buraksezer/gsocks5/issues`
const (
maxPasswordLength = 20
version = "0.1"
defaultConfigPath = "/etc/gsocks5/gsocks5.json"
)
var (
path string
showHelp bool
showVersion bool
debug bool
)
var errPasswordTooLong = errors.New("Passport too long")
func init() {
rand.Seed(time.Now().UnixNano())
}
func closeConn(conn net.Conn) {
err := conn.Close()
if err != nil {
if opErr, ok := err.(*net.OpError); !ok || (ok && opErr.Op != opErrAccept) {
log.Println("[DEBUG] gsocks5: Error while closing socket", conn.RemoteAddr(), err)
}
}
}
func main() {
// Parse command line parameters
f := flag.NewFlagSet(os.Args[0], flag.ContinueOnError)
f.SetOutput(ioutil.Discard)
f.BoolVar(&showHelp, "h", false, "")
f.BoolVar(&showHelp, "help", false, "")
f.BoolVar(&showVersion, "version", false, "")
f.BoolVar(&showVersion, "v", false, "")
f.BoolVar(&debug, "d", false, "")
f.BoolVar(&debug, "debug", false, "")
f.StringVar(&path, "config", defaultConfigPath, "")
f.StringVar(&path, "c", defaultConfigPath, "")
if err := f.Parse(os.Args[1:]); err != nil {
log.Fatalf("[ERR] Failed to parse flags: %s", err)
}
if showHelp {
msg := fmt.Sprintf(usage, defaultConfigPath, runtime.Version())
fmt.Println(msg)
return
} else if showVersion {
fmt.Println("gsocks5 version", version)
return
}
cfg, err := newConfig(path)
if err != nil {
log.Fatalf("[ERR] Failed to load configuration: %s", err)
}
filter := &logutils.LevelFilter{
Levels: []logutils.LogLevel{"DEBUG", "WARN", "ERR", "INF"},
Writer: os.Stderr,
}
if debug || cfg.Debug {
filter.MinLevel = logutils.LogLevel("DEBUG")
} else {
filter.MinLevel = logutils.LogLevel("WARN")
}
log.SetOutput(filter)
// Handle SIGINT and SIGTERM.
sigChan := make(chan os.Signal, 1)
signal.Notify(sigChan, syscall.SIGINT, syscall.SIGTERM)
switch {
case cfg.Role == roleClient:
log.Print("[INF] gsocks5: Running as client")
cl := newClient(cfg, sigChan)
if err = cl.run(); err != nil {
log.Fatalf("[ERR] gsocks5: failed to serve %s", err)
}
case cfg.Role == roleServer:
log.Print("[INF] gsocks5: Running as server")
srv := newServer(cfg, sigChan)
if err = srv.run(); err != nil {
log.Fatalf("[ERR] gsocks5: failed to serve %s", err)
}
}
log.Print("[INF] Goodbye!")
}