-
Notifications
You must be signed in to change notification settings - Fork 71
/
config.go
288 lines (252 loc) · 7.38 KB
/
config.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
package main
import (
"bytes"
"crypto/rand"
"encoding/hex"
"encoding/json"
"errors"
"io/ioutil"
"net/url"
"strconv"
"strings"
"github.com/agl/xmpp-client/xmpp"
"golang.org/x/crypto/otr"
"golang.org/x/crypto/ssh/terminal"
"golang.org/x/net/proxy"
)
type Config struct {
filename string `json:"-"`
Account string
Server string `json:",omitempty"`
Resource string `json:",omitempty"`
Proxies []string `json:",omitempty"`
Password string `json:",omitempty"`
Port int `json:",omitempty"`
PrivateKey []byte
KnownFingerprints []KnownFingerprint
RawLogFile string `json:",omitempty"`
NotifyCommand []string `json:",omitempty"`
IdleSecondsBeforeNotification int `json:",omitempty"`
Bell bool
HideStatusUpdates bool
UseTor bool
OTRAutoTearDown bool
OTRAutoAppendTag bool
OTRAutoStartSession bool
ServerCertificateSHA256 string `json:",omitempty"`
AlwaysEncrypt bool `json:",omitempty"`
AlwaysEncryptWith []string `json:",omitempty"`
}
type KnownFingerprint struct {
UserId string
FingerprintHex string
fingerprint []byte `json:"-"`
}
func ParseConfig(filename string) (c *Config, err error) {
contents, err := ioutil.ReadFile(filename)
if err != nil {
return
}
c = new(Config)
if err = json.Unmarshal(contents, &c); err != nil {
return
}
c.filename = filename
for i, known := range c.KnownFingerprints {
c.KnownFingerprints[i].fingerprint, err = hex.DecodeString(known.FingerprintHex)
if err != nil {
err = errors.New("xmpp: failed to parse hex fingerprint for " + known.UserId + ": " + err.Error())
return
}
}
return
}
func (c *Config) Save() error {
for i, known := range c.KnownFingerprints {
c.KnownFingerprints[i].FingerprintHex = hex.EncodeToString(known.fingerprint)
}
contents, err := json.MarshalIndent(c, "", "\t")
if err != nil {
return err
}
return ioutil.WriteFile(c.filename, contents, 0600)
}
func (c *Config) UserIdForFingerprint(fpr []byte) string {
for _, known := range c.KnownFingerprints {
if bytes.Equal(fpr, known.fingerprint) {
return known.UserId
}
}
return ""
}
func (c *Config) HasFingerprint(uid string) bool {
for _, known := range c.KnownFingerprints {
if uid == known.UserId {
return true
}
}
return false
}
func (c *Config) ShouldEncryptTo(uid string) bool {
if c.AlwaysEncrypt {
return true
}
for _, contact := range c.AlwaysEncryptWith {
if contact == uid {
return true
}
}
return false
}
func isYes(s string) bool {
lower := strings.ToLower(s)
return lower == "yes" || lower == "y"
}
func enroll(config *Config, term *terminal.Terminal) bool {
var err error
warn(term, "Enrolling new config file")
var domain string
for {
term.SetPrompt("Account (i.e. [email protected], enter to quit): ")
if config.Account, err = term.ReadLine(); err != nil || len(config.Account) == 0 {
return false
}
parts := strings.SplitN(config.Account, "@", 2)
if len(parts) != 2 {
alert(term, "invalid username (want user@domain): "+config.Account)
continue
}
domain = parts[1]
break
}
term.SetPrompt("Resource name (i.e. work, enter for empty): ")
if config.Resource, err = term.ReadLine(); err != nil {
return false
}
const debugLogFile = "/tmp/xmpp-client-debug.log"
term.SetPrompt("Enable debug logging to " + debugLogFile + " (y/n)?: ")
if debugLog, err := term.ReadLine(); err != nil || !isYes(debugLog) {
info(term, "Not enabling debug logging...")
} else {
config.RawLogFile = debugLogFile
info(term, "Debug logging enabled.")
}
term.SetPrompt("Use Tor (y/n)?: ")
if useTorQuery, err := term.ReadLine(); err != nil || !isYes(useTorQuery) {
info(term, "Not using Tor...")
config.UseTor = false
} else {
info(term, "Using Tor...")
config.UseTor = true
}
term.SetPrompt("File to import libotr private key from (enter to generate): ")
var priv otr.PrivateKey
for {
importFile, err := term.ReadLine()
if err != nil {
return false
}
if len(importFile) > 0 {
privKeyBytes, err := ioutil.ReadFile(importFile)
if err != nil {
alert(term, "Failed to open private key file: "+err.Error())
continue
}
if !priv.Import(privKeyBytes) {
alert(term, "Failed to parse libotr private key file (the parser is pretty simple I'm afraid)")
continue
}
break
} else {
info(term, "Generating private key...")
priv.Generate(rand.Reader)
break
}
}
config.PrivateKey = priv.Serialize(nil)
config.OTRAutoAppendTag = true
config.OTRAutoStartSession = true
config.OTRAutoTearDown = false
// List well known Tor hidden services.
knownTorDomain := map[string]string{
"jabber.ccc.de": "okj7xc6j2szr2y75.onion",
"riseup.net": "4cjw6cwpeaeppfqz.onion",
"jabber.calyxinstitute.org": "ijeeynrc6x2uy5ob.onion",
"jabber.otr.im": "5rgdtlawqkcplz75.onion",
"rows.io": "yz6yiv2hxyagvwy6.onion",
}
// Autoconfigure well known Tor hidden services.
if hiddenService, ok := knownTorDomain[domain]; ok && config.UseTor {
const torProxyURL = "socks5://127.0.0.1:9050"
info(term, "It appears that you are using a well known server and we will use its Tor hidden service to connect.")
config.Server = hiddenService
config.Port = 5222
config.Proxies = []string{torProxyURL}
term.SetPrompt("> ")
return true
}
var proxyStr string
proxyDefaultPrompt := ", enter for none"
if config.UseTor {
proxyDefaultPrompt = ", which is the default"
}
term.SetPrompt("Proxy (i.e socks5://127.0.0.1:9050" + proxyDefaultPrompt + "): ")
for {
if proxyStr, err = term.ReadLine(); err != nil {
return false
}
if len(proxyStr) == 0 {
if !config.UseTor {
break
} else {
proxyStr = "socks5://127.0.0.1:9050"
}
}
u, err := url.Parse(proxyStr)
if err != nil {
alert(term, "Failed to parse "+proxyStr+" as a URL: "+err.Error())
continue
}
if _, err = proxy.FromURL(u, proxy.Direct); err != nil {
alert(term, "Failed to parse "+proxyStr+" as a proxy: "+err.Error())
continue
}
break
}
if len(proxyStr) > 0 {
config.Proxies = []string{proxyStr}
info(term, "Since you selected a proxy, we need to know the server and port to connect to as a SRV lookup would leak information every time.")
term.SetPrompt("Server (i.e. xmpp.example.com, enter to lookup using unproxied DNS): ")
if config.Server, err = term.ReadLine(); err != nil {
return false
}
if len(config.Server) == 0 {
var port uint16
info(term, "Performing SRV lookup")
if config.Server, port, err = xmpp.Resolve(domain); err != nil {
alert(term, "SRV lookup failed: "+err.Error())
return false
}
config.Port = int(port)
info(term, "Resolved "+config.Server+":"+strconv.Itoa(config.Port))
} else {
for {
term.SetPrompt("Port (enter for 5222): ")
portStr, err := term.ReadLine()
if err != nil {
return false
}
if len(portStr) == 0 {
portStr = "5222"
}
if config.Port, err = strconv.Atoi(portStr); err != nil || config.Port <= 0 || config.Port > 65535 {
info(term, "Port numbers must be 0 < port <= 65535")
continue
}
break
}
}
}
term.SetPrompt("> ")
return true
}