-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmain.go
192 lines (165 loc) · 4.63 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package main
import (
"crypto/tls"
"encoding/base64"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"time"
"github.com/gin-gonic/gin"
"github.com/pritunl/pritunl-web/constants"
"github.com/pritunl/pritunl-web/handlers"
"github.com/pritunl/pritunl-web/request"
"github.com/sirupsen/logrus"
)
func ParseRemoteAddr(remoteAddr string) (addr string) {
addr = remoteAddr[:strings.LastIndex(remoteAddr, ":")]
addr = strings.Replace(addr, "[", "", 1)
addr = strings.Replace(addr, "]", "", 1)
return
}
func copyHeader(dst, src http.Header) {
for k, vv := range src {
for _, v := range vv {
dst.Add(k, v)
}
}
}
func main() {
if constants.RedirectServer == "true" && constants.BindPort != "80" {
go func() {
logrus.WithFields(logrus.Fields{
"port": 80,
}).Info("main: Starting HTTP server")
server := &http.Server{
Addr: constants.BindHost + ":80",
ReadTimeout: 1 * time.Minute,
WriteTimeout: 1 * time.Minute,
Handler: http.HandlerFunc(func(
w http.ResponseWriter, req *http.Request) {
if strings.HasPrefix(req.URL.Path,
"/.well-known/acme-challenge/") {
pathSplit := strings.Split(req.URL.Path, "/")
token := pathSplit[len(pathSplit)-1]
acmeUrl := url.URL{
Scheme: "http",
Host: constants.InternalHost,
Path: "/.well-known/acme-challenge/" + token,
}
resp, err := http.Get(acmeUrl.String())
if err != nil {
http.Error(
w,
fmt.Sprintf(
"%d %s",
http.StatusInternalServerError,
http.StatusText(
http.StatusInternalServerError,
),
),
http.StatusInternalServerError,
)
return
}
defer resp.Body.Close()
copyHeader(w.Header(), resp.Header)
w.Header().Del("Server")
w.WriteHeader(resp.StatusCode)
io.Copy(w, resp.Body)
return
} else if strings.HasPrefix(req.URL.Path, "/check") ||
strings.HasPrefix(req.URL.Path, "/ping") {
request.DoCheck(w, req)
return
}
req.URL.Host = req.Host
if constants.ReverseProxyHeader != "" &&
req.Header.Get(constants.ReverseProxyHeader) != "" {
req.URL.Scheme = "https"
} else {
req.URL.Scheme = constants.Scheme
if constants.BindPort != "443" {
req.URL.Host += ":" + constants.BindPort
}
}
http.Redirect(w, req, req.URL.String(),
http.StatusMovedPermanently)
}),
}
err := server.ListenAndServe()
if err != nil {
logrus.WithFields(logrus.Fields{
"error": err,
}).Error("main: Redirect server error")
}
}()
}
gin.SetMode(gin.ReleaseMode)
router := gin.New()
handlers.Register(router)
logrus.WithFields(logrus.Fields{
"port": constants.BindPort,
}).Info("main: Starting HTTPS server")
server := &http.Server{
Addr: constants.BindHost + ":" + constants.BindPort,
Handler: router,
ReadTimeout: 2 * time.Minute,
ReadHeaderTimeout: 30 * time.Second,
WriteTimeout: 2 * time.Minute,
IdleTimeout: 1 * time.Minute,
MaxHeaderBytes: 500000,
}
var err error
if constants.Ssl {
sslCertByt, e := base64.StdEncoding.DecodeString(constants.SslCert)
if e != nil {
logrus.WithFields(logrus.Fields{
"error": e,
}).Error("main: Server cert decode error")
panic(e)
}
sslKeyByt, e := base64.StdEncoding.DecodeString(constants.SslKey)
if e != nil {
logrus.WithFields(logrus.Fields{
"error": e,
}).Error("main: Server key decode error")
panic(e)
}
tlsCert, e := tls.X509KeyPair(sslCertByt, sslKeyByt)
if e != nil {
logrus.WithFields(logrus.Fields{
"error": e,
}).Error("main: Server tls decode error")
panic(e)
}
server.TLSConfig = &tls.Config{
MinVersion: tls.VersionTLS12,
MaxVersion: tls.VersionTLS13,
CipherSuites: []uint16{
tls.TLS_AES_128_GCM_SHA256, // 0x1301
tls.TLS_AES_256_GCM_SHA384, // 0x1302
tls.TLS_CHACHA20_POLY1305_SHA256, // 0x1303
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, // 0xc02b
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, // 0xc02f
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, // 0xc02c
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, // 0xc030
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, // 0xcca9
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, // 0xcca8
},
Certificates: []tls.Certificate{
tlsCert,
},
}
err = server.ListenAndServeTLS("", "")
} else {
err = server.ListenAndServe()
}
if err != nil {
logrus.WithFields(logrus.Fields{
"error": err,
}).Error("main: Server error")
panic(err)
}
}