-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
246 lines (197 loc) · 5.85 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
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
package main
import (
"bufio"
"flag"
"fmt"
"os"
"os/exec"
"os/signal"
"strings"
"syscall"
"time"
"github.com/pquerna/otp"
"github.com/pquerna/otp/totp"
log "github.com/sirupsen/logrus"
"golang.org/x/term"
// "github.com/pkg/profile"
)
var version string = "2.0.2"
var clog *log.Entry
func main() {
// defer profile.Start().Stop()
var debug bool
var showVersion bool
var instance string
var connection string
var password string
var otpSecret string
// Common flags
flag.BoolVar(&debug, "debug", false, "Log debug messages")
flag.BoolVar(&showVersion, "version", false, "Show version")
flag.StringVar(&instance, "instance", "default", "Configuration instance name to save config to.")
// VPN flags
flag.StringVar(&connection, "connection", "", "VPN connection name (use 'nmcli connection' to find out)")
flag.StringVar(&password, "password", "", "VPN user password")
flag.StringVar(&otpSecret, "otpSecret", "", "VPN OTP secret")
flag.Parse()
// Setup logging
log.SetFormatter(&log.TextFormatter{
FullTimestamp: true,
})
log.SetOutput(os.Stdout)
if showVersion {
fmt.Println(version)
os.Exit(0)
}
if debug == true {
log.SetLevel(log.DebugLevel)
} else {
log.SetLevel(log.InfoLevel)
}
clog = log.WithFields(log.Fields{
"pid": os.Getpid(),
"thread": "main",
"version": version,
})
clog.Info("Let's have some fun with 2FA VPN via NM!")
var config Config
config.read(instance)
// Overriding or settings instance config parameters.
clog.Debug("Configuring connection name.")
if connection != "" {
config.Connection = connection
} else {
if config.Connection == "" {
clog.Info("Hint: Use 'nmcli connection' to find out your config names.")
config.Connection = askValue("connection", false)
}
}
clog.Debug("Configuring password.")
if password != "" {
config.Password = password
} else {
if config.Password == "" {
config.Password = askValue("password", true)
}
}
clog.Debug("Configuring OTP secret.")
if otpSecret != "" {
config.OtpSecret = connection
} else {
if config.OtpSecret == "" {
config.OtpSecret = askValue("OTP secret", true)
}
}
// Save currently built config
config.write(instance)
go waitForDeath(config.Connection)
sleepSeconds := 5
clog.WithFields(log.Fields{"sleepSeconds": sleepSeconds}).Info("Starting the main loop.")
for {
active := nmcliConnectionActive(config.Connection, false)
if !active {
// Check whether any network connection is active
activeConns := nmcliGetActiveConnections(true)
if len(activeConns) > 0 {
clog.WithFields(log.Fields{
"connection": config.Connection,
}).Info("VPN connection isn't active. Starting.")
if config.Password != "Null" && config.OtpSecret != "Null" {
passcode := GeneratePassCode(config.OtpSecret)
clog.WithFields(log.Fields{"passcode": passcode}).Info("Got a new pass code.")
// Update VPN config to store password only for current user
nmcliConnectionUpdatePasswordFlags(config.Connection, 1)
nmcliConnectionUpdatePassword(config.Password, passcode, config.Connection)
nmcliConnectionUp(config.Connection)
// Update VPN config to ask password every time.
// That should prevent NM reconections with an old password.
nmcliConnectionUpdatePasswordFlags(config.Connection, 2)
} else {
nmcliConnectionUp(config.Connection)
}
} else {
clog.Info("No active connection found, thus posponding VPN connection.")
}
}
clog.WithFields(log.Fields{
"connection": config.Connection,
"sleepSeconds": sleepSeconds,
}).Debug("Connection is active. Sleeping.")
// Sleep for a minute
time.Sleep(time.Duration(sleepSeconds) * time.Second)
}
}
func askValue(parameter string, hide bool) string {
var parameterValue string
fmt.Printf("New '%v' value: ", parameter)
if hide {
bytespw, err := term.ReadPassword(int(syscall.Stdin))
if err != nil {
log.Fatal(err)
clog.WithFields(log.Fields{
"parameter": parameter,
"error": err,
}).Fatal("Reading hidden parameter value from cmd failed.")
}
parameterValue = string(bytespw)
} else {
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
err := scanner.Err()
if err != nil {
log.Fatal(err)
clog.WithFields(log.Fields{
"parameter": parameter,
"error": err,
}).Fatal("Reading parameter value from cmd failed.")
}
parameterValue = scanner.Text()
}
fmt.Print("\n")
// To understand when we have an empty password and when we just haven't set it yet.
if parameterValue == "" {
parameterValue = "Null"
}
return parameterValue
}
func GeneratePassCode(secret string) string {
passcode, err := totp.GenerateCodeCustom(secret, time.Now(), totp.ValidateOpts{
Period: 30,
Skew: 1,
Digits: otp.DigitsSix,
Algorithm: otp.AlgorithmSHA1,
})
if err != nil {
clog.Fatal("TOTP pass code generation failed.")
}
return passcode
}
func basher(command string, hide string) string {
commandStr := command
cmd, err := exec.Command("/bin/bash", "-c", command).Output()
output := string(cmd)
if hide != "" {
commandStr = strings.Replace(commandStr, hide, "*****", -1)
}
clog.WithFields(log.Fields{"command": commandStr, "output": output}).Debug("Command output.")
if err != nil {
clog.WithFields(log.Fields{"command": commandStr, "error": err}).Fatal("Shell command failed.")
}
return output
}
func waitForDeath(connection string) {
clog.Info("Starting Wait For Death loop.")
cancelChan := make(chan os.Signal, 1)
signal.Notify(cancelChan, syscall.SIGTERM, syscall.SIGINT)
for {
time.Sleep(time.Duration(1) * time.Second)
sig := <-cancelChan
clog.WithFields(log.Fields{"signal": sig}).Info("Caught signal. Terminating.")
active := nmcliConnectionActive(connection, false)
if active {
nmcliConnectionDown(connection)
}
clog.WithFields(log.Fields{"signal": sig}).Info("We are good to go, see you next time!.")
os.Exit(0)
}
}