forked from Janusec/janusec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
janusec.go
258 lines (248 loc) · 7.77 KB
/
janusec.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/*
* @Copyright Reserved By Janusec (https://www.janusec.com/).
* @Author: U2
* @Date: 2018-07-14 16:17:25
* @Last Modified: U2, 2018-07-14 16:17:25
*/
package main
import (
"context"
"crypto/tls"
"encoding/gob"
"flag"
"fmt"
"net"
"net/http"
"os"
"os/exec"
"path/filepath"
"runtime"
"sync"
"syscall"
// _ "net/http/pprof"
"janusec/backend"
"janusec/data"
"janusec/firewall"
"janusec/gateway"
"janusec/models"
"janusec/utils"
)
func main() {
ver := flag.Bool("version", false, "Display Version Information")
flag.Parse()
if *ver {
fmt.Println(data.Version)
os.Exit(0)
}
dir, _ := os.Executable()
exePath := filepath.Dir(dir)
err := os.Chdir(exePath)
if err != nil {
utils.CheckError("os.Chdir error", err)
os.Exit(1)
}
runtime.GOMAXPROCS(runtime.NumCPU())
utils.InitLogger()
SetOSEnv()
utils.DebugPrintln("Janusec Application Gateway", data.Version, "Starting ...")
if utils.Debug {
utils.DebugPrintln("Warning: Janusec is running in Debug mode.")
}
data.InitConfig()
if data.IsPrimary {
backend.InitDatabase()
data.InitDefaultSettings() // instanceKey & nodesKey
}
backend.LoadAppConfiguration()
firewall.InitFirewall()
data.LoadSettings()
if !data.IsPrimary {
go gateway.SyncTimeTick()
}
go gateway.InitAccessStat()
go gateway.Counter()
go gateway.DailyRoutineTasks()
tlsconfig := &tls.Config{
GetCertificate: func(helloInfo *tls.ClientHelloInfo) (*tls.Certificate, error) {
cert, err := backend.GetCertificateByDomain(helloInfo)
return cert, err
},
NextProtos: []string{"h2", "http/1.1"},
MaxVersion: tls.VersionTLS13,
MinVersion: tls.VersionTLS11,
CipherSuites: []uint16{
tls.TLS_AES_128_GCM_SHA256,
tls.TLS_CHACHA20_POLY1305_SHA256,
tls.TLS_AES_256_GCM_SHA384,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,
},
}
gateMux := http.NewServeMux()
if data.IsPrimary {
admin := data.CFG.PrimaryNode.Admin
if admin.Listen {
adminMux := http.NewServeMux()
LoadAPIRoute(adminMux)
if len(admin.ListenHTTP) > 0 {
go func() {
listen, err := net.Listen("tcp", admin.ListenHTTP)
if err != nil {
utils.CheckError("Admin Port occupied.", err)
utils.DebugPrintln("Admin Port occupied.", err)
os.Exit(1)
}
utils.DebugPrintln("Admin Listen HTTP ", admin.ListenHTTP)
err = http.Serve(listen, adminMux)
if err != nil {
utils.CheckError("http.Serve adminMux error", err)
utils.DebugPrintln("http.Serve adminMux error", err)
os.Exit(1)
}
defer listen.Close()
}()
}
if len(admin.ListenHTTPS) > 0 {
go func() {
listen, err := tls.Listen("tcp", admin.ListenHTTPS, tlsconfig)
if err != nil {
utils.CheckError("Admin Port occupied.", err)
utils.DebugPrintln("Admin Port occupied.", err)
os.Exit(1)
}
utils.DebugPrintln("Admin Listen HTTPS", admin.ListenHTTPS)
err = http.Serve(listen, adminMux)
if err != nil {
utils.CheckError("http.Serve adminMux error", err)
utils.DebugPrintln("http.Serve adminMux error", err)
os.Exit(1)
}
defer listen.Close()
}()
}
} else {
// Add API and admin
LoadAPIRoute(gateMux)
}
}
// Add OAuth2
gateMux.HandleFunc("/oauth/logout", gateway.OAuthLogout)
gateMux.HandleFunc("/oauth/wxwork", gateway.WxworkCallBackHandleFunc)
gateMux.HandleFunc("/oauth/dingtalk", gateway.DingtalkCallBackHandleFunc)
gateMux.HandleFunc("/oauth/feishu", gateway.FeishuCallBackHandleFunc)
gateMux.HandleFunc("/oauth/lark", gateway.LarkCallBackHandleFunc)
gateMux.HandleFunc("/oauth/code/register", gateway.ShowAuthCodeRegisterUI)
gateMux.HandleFunc("/oauth/code/verify", gateway.AuthCodeVerifyFunc)
// Add CAS2.0
gateMux.HandleFunc("/oauth/cas2", gateway.CAS2CallBackHandleFunc)
// LDAP Auth UI
gateMux.HandleFunc("/ldap/login", gateway.ShowLDAPLoginUI)
gateMux.HandleFunc("/ldap/auth", gateway.LDAPCallBackHandleFunc)
// SAML Auth
gateMux.HandleFunc("/saml/login", gateway.SAMLLogin)
// Add CAPTCHA
gateMux.HandleFunc("/captcha/confirm", gateway.ShowCaptchaHandlerFunc)
gateMux.HandleFunc("/captcha/validate", gateway.ValidateCaptchaHandlerFunc)
gateMux.Handle("/captcha/png/", gateway.ShowCaptchaImage())
// Add 5-second shield Authorization
gateMux.HandleFunc("/.auth/shield", gateway.SecondShieldAuthorization)
// Test only
// gateMux.HandleFunc("/.auth/test", gateway.Test)
// Reverse Proxy
gateMux.HandleFunc("/", gateway.ReverseHandlerFunc)
ctxGateMux := AddContextHandler(gateMux)
go func(listenPort string) {
listen, err := net.Listen("tcp", listenPort)
if err != nil {
msg := "Port " + listenPort + " is occupied."
utils.CheckError(msg, err)
utils.DebugPrintln(msg, err)
os.Exit(1)
}
utils.DebugPrintln("Listen HTTP ", listenPort)
// err = http.Serve(listen, ctxGateMux)
err = http.Serve(listen, backend.AcmeCertManager.HTTPHandler(ctxGateMux))
if err != nil {
utils.CheckError("http.Serve error", err)
utils.DebugPrintln("http.Serve error", err)
os.Exit(1)
}
defer listen.Close()
}(data.CFG.ListenHTTP)
listen, err := tls.Listen("tcp", data.CFG.ListenHTTPS, tlsconfig)
if err != nil {
msg := "Port " + data.CFG.ListenHTTPS + " is occupied."
utils.CheckError(msg, err)
utils.DebugPrintln(msg, err)
os.Exit(1)
}
utils.DebugPrintln("Listen HTTPS", data.CFG.ListenHTTPS)
//err = http.Serve(listen, ctxGateMux)
err = http.Serve(listen, backend.AcmeCertManager.HTTPHandler(ctxGateMux))
if err != nil {
utils.CheckError("http.Serve error", err)
utils.DebugPrintln("http.Serve error", err)
os.Exit(1)
}
defer listen.Close()
}
// AddContextHandler to add context handler
func AddContextHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// map[GroupPolicyID int64](Value int64)
ctx := context.WithValue(r.Context(), models.PolicyKey("groupPolicyHitValue"), &sync.Map{})
next.ServeHTTP(w, r.WithContext(ctx))
})
}
// LoadAPIRoute set HandleFunc
func LoadAPIRoute(mux *http.ServeMux) {
mux.HandleFunc("/janusec-admin/api", gateway.ReplicaAPIHandlerFunc)
mux.HandleFunc("/janusec-admin/ui-api", gateway.AdminAPIHandlerFunc)
mux.HandleFunc("/janusec-admin/webssh", gateway.WebSSHHandlerFunc)
mux.HandleFunc("/janusec-admin/oauth/info", gateway.OAuthGetHandleFunc)
mux.HandleFunc("/janusec-admin/", gateway.AdminHandlerFunc)
}
// SetOSEnv set environment
func SetOSEnv() {
// Enable TLS 1.3 for golang 1.12, not required in golang 1.14
// os.Setenv("GODEBUG", os.Getenv("GODEBUG")+",tls13=1")
// Enable gorilla/sessions support struct
gob.Register(models.AuthUser{})
/*
#!/bin/bash
ulimit -n 1024000
sysctl -w net.core.somaxconn=65535
sysctl -w net.ipv4.tcp_max_syn_backlog=1024000
*/
rLimit := syscall.Rlimit{Cur: 1024000, Max: 1024000}
err := syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
if err != nil {
utils.DebugPrintln("Setrlimit", err)
}
cmd := exec.Command("/usr/sbin/sysctl", "-w", "net.core.somaxconn=65535")
err = cmd.Run()
if err != nil {
cmd = exec.Command("/sbin/sysctl", "-w", "net.core.somaxconn=65535")
err = cmd.Run()
if err != nil {
utils.DebugPrintln("sysctl set net.core.somaxconn error:", err)
}
}
cmd = exec.Command("/usr/sbin/sysctl", "-w", "net.ipv4.tcp_max_syn_backlog=1024000")
err = cmd.Run()
if err != nil {
cmd = exec.Command("/sbin/sysctl", "-w", "net.ipv4.tcp_max_syn_backlog=1024000")
err = cmd.Run()
if err != nil {
utils.DebugPrintln("sysctl set net.ipv4.tcp_max_syn_backlog error:", err)
}
}
}