forked from DHowett/spectre
-
Notifications
You must be signed in to change notification settings - Fork 3
/
auth.go
480 lines (421 loc) · 11.9 KB
/
auth.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
package main
import (
"context"
"crypto/hmac"
"crypto/sha256"
"encoding/json"
"io"
"net/http"
"net/url"
"os"
"sync"
"time"
"github.com/DHowett/ghostbin/account"
"github.com/golang/glog"
"github.com/golang/groupcache/lru"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
"golang.org/x/crypto/scrypt"
)
const USER_CACHE_MAX_ENTRIES int = 1000
type contextKey int
const userContextKey contextKey = 0
type authReply struct {
Status string `json:"status,omitempty"`
Reason string `json:"reason,omitempty"`
Type string `json:"type,omitempty"`
ExtraData map[string]string `json:"extra,omitempty"`
InvalidFields []string `json:"invalid_fields,omitempty"`
}
func authLoginPostHandler(w http.ResponseWriter, r *http.Request) {
clientSession, err := clientLongtermSessionStore.Get(r, "authentication")
if err != nil {
glog.Errorln(err)
}
serverSession, err := sessionStore.Get(r, "session")
if err != nil {
glog.Errorln(err)
}
reply := &authReply{
Status: "invalid",
ExtraData: make(map[string]string),
}
defer func() {
w.WriteHeader(http.StatusOK)
enc := json.NewEncoder(w)
err := enc.Encode(reply)
if err != nil {
glog.Error(err)
}
}()
var user *account.User
loginType := r.FormValue("type")
if loginType == "username" {
// We don't have an assertion, hope we have a username/password
reply.Type = "username"
username, password, confirm := r.FormValue("username"), r.FormValue("password"), r.FormValue("confirm_password")
promoteToken := r.FormValue("promote_token")
promotion := false
if promoteToken != "" {
promotion = true
}
if promotion {
v, ok := ephStore.Get("UPG|" + promoteToken)
if !ok {
reply.Reason = "invalid promotion token (30-min expiry?)"
reply.InvalidFields = []string{"promote_token"}
return
}
// Stomp the username from the form.
username = v.(string)
}
if username == "" || password == "" {
reply.Reason = "invalid username or password"
reply.InvalidFields = []string{"username", "password"}
return
}
newuser := userStore.Get(username)
if newuser == nil {
if promotion {
// Don't allow new user creation; this should never happen.
return
}
reply.Reason = "account creation has been disabled"
reply.InvalidFields = []string{"username", "password", "confirm_password"}
return
if confirm == "" {
reply.Status = "moreinfo"
reply.InvalidFields = []string{"confirm_password"}
return
}
if password != confirm {
reply.Reason = "passwords don't match"
reply.InvalidFields = []string{"password", "confirm_password"}
return
}
newuser = userStore.Create(username)
newuser.UpdateChallenge(password)
user = newuser
} else {
if promotion {
if confirm == "" {
reply.Status = "moreinfo"
reply.InvalidFields = []string{"confirm_password"}
return
}
if password != confirm {
reply.Reason = "passwords don't match"
reply.InvalidFields = []string{"password", "confirm_password"}
return
}
newuser.UpdateChallenge(password)
delete(newuser.Values, "persona")
reply.ExtraData["promoted"] = "true"
user = newuser
ephStore.Delete("UPG|" + promoteToken)
healthServer.IncrementMetric("user.promotions.completed")
} else {
if newuser.Check(password) {
user = newuser
} else {
reply.Reason = "invalid username or password"
reply.InvalidFields = []string{"username", "password"}
}
}
}
} else if loginType == "persona" {
// BrowserID Assertion
reply.Type = "persona"
assertion := r.FormValue("assertion")
if assertion == "" {
reply.Reason = "persona login requested without an assertion"
reply.InvalidFields = []string{"assertion"}
return
}
audience := "https://ghostbin.com"
if !RequestIsHTTPS(r) {
audience = "http://localhost:8080"
}
verifyResponse, err := http.PostForm("https://verifier.login.persona.org/verify", url.Values{
"assertion": {assertion},
"audience": {audience},
})
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
glog.Error("Persona Verify Request Failed: ", err)
reply.Reason = "persona verification failed"
reply.ExtraData["error"] = err.Error()
return
}
defer verifyResponse.Body.Close()
dec := json.NewDecoder(verifyResponse.Body)
var verifyResponseJSON map[string]interface{}
err = dec.Decode(&verifyResponseJSON)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
glog.Error("Persona Verify JSON Decode Failed: ", err)
reply.Reason = "persona verification failed"
reply.ExtraData["error"] = err.Error()
return
}
if verifyResponseJSON["status"].(string) == "okay" {
healthServer.IncrementMetric("user.login.persona")
email := verifyResponseJSON["email"].(string)
user = userStore.Get(email)
if user == nil {
healthServer.IncrementMetric("user.persona.create.rejected")
reply.Reason = "new Persona accounts cannot be created."
return
}
if persona, ok := user.Values["persona"].(bool); !ok || !persona {
healthServer.IncrementMetric("user.persona.tried_after_migrate")
reply.Reason = "this is not an |> E-Mail account."
return
}
user.Values["persona"] = true
reply.ExtraData["persona"] = email
healthServer.IncrementMetric("user.promotions.requested")
reply.Status = "moreinfo"
reply.Reason = "user must create a password to leave Persona"
reply.InvalidFields = []string{"confirm_password", "password"}
promoteToken, _ := generateRandomBase32String(20, 32)
ephStore.Put("UPG|"+promoteToken, user.Name, 30*time.Minute)
reply.ExtraData["promote_token"] = promoteToken
return
} else {
reply.Reason = verifyResponseJSON["reason"].(string)
}
} else if loginType == "token" {
// Authentication Token
reply.Type = "token"
token := r.FormValue("token")
if token == "" {
reply.Reason = "authtoken login requested but no token provided"
reply.InvalidFields = []string{"token"}
return
}
u, ok := ephStore.Get("A|U|" + token)
if !ok {
w.WriteHeader(http.StatusTeapot) // I'm a teapot.
reply.Reason = "that authenticated token isn't"
reply.InvalidFields = []string{"token"}
return
}
user = u.(*account.User)
} else {
reply.Reason = "invalid login type"
reply.InvalidFields = []string{"type"}
return
}
if user != nil {
healthServer.IncrementMetric("user.login")
// *HACK*
// Inject the user into the request context for GetPastePermissions
// to find.
subr := r.WithContext(context.WithValue(r.Context(), userContextKey, user))
// Attempt to aggregate user, session, and old perms.
pastePerms := GetPastePermissions(subr)
user.Values["permissions"] = pastePerms
delete(serverSession.Values, "pastes") // delete old perms
delete(serverSession.Values, "permissions") // delete new session perms
err := user.Save()
if err != nil {
reply.Reason = "failed to save user"
reply.ExtraData["error"] = err.Error()
} else {
reply.Status = "valid"
reply.ExtraData["username"] = user.Name
}
clientSession.Values["account2"] = user.Name
err = sessions.Save(r, w)
if err != nil {
glog.Errorln(err)
}
if token := r.FormValue("requested_auth_token"); token != "" {
ephStore.Put("A|U|"+token, user, 30*time.Minute)
}
}
// reply serialized in defer above. just for fun.
}
func authLogoutPostHandler(w http.ResponseWriter, r *http.Request) {
ses, _ := clientLongtermSessionStore.Get(r, "authentication")
delete(ses.Values, "account2")
err := sessions.Save(r, w)
if err != nil {
glog.Errorln(err)
}
}
func authTokenHandler(w http.ResponseWriter, r *http.Request) {
authToken, _ := generateRandomBase32String(20, 32)
ephStore.Put("A|"+authToken, true, 30*time.Minute)
url, _ := router.Get("auth_token_login").URL("token", authToken)
w.Header().Set("Location", url.String())
w.WriteHeader(http.StatusSeeOther)
}
func authTokenPageHandler(w http.ResponseWriter, r *http.Request) {
token := mux.Vars(r)["token"]
_, ok := ephStore.Get("A|" + token)
if !ok {
return
}
user := GetUser(r)
if user != nil {
ephStore.Put("A|U|"+token, user, 30*time.Minute)
}
RenderPage(w, r, "authtoken", map[string]string{"token": token})
}
type AuthChallengeProvider struct{}
func (a *AuthChallengeProvider) DeriveKey(password string, salt []byte) []byte {
if password == "" {
return nil
}
key, err := scrypt.Key([]byte(password), salt, 16384, 8, 1, 32)
if err != nil {
panic(err)
}
return key
}
func (a *AuthChallengeProvider) RandomSalt() []byte {
b, err := generateRandomBytes(32)
if err != nil {
panic(err)
}
return b
}
func (a *AuthChallengeProvider) Challenge(message []byte, key []byte) []byte {
shaHmac := hmac.New(sha256.New, key)
shaHmac.Write(message)
challenge := shaHmac.Sum(nil)
return challenge
}
func GetUser(r *http.Request) *account.User {
if ui := r.Context().Value(userContextKey); ui != nil {
if u, ok := ui.(*account.User); ok {
return u
}
}
return nil
}
type userLookupWrapper struct {
http.Handler
}
func (u userLookupWrapper) ServeHTTP(w http.ResponseWriter, r *http.Request) {
ses, _ := clientLongtermSessionStore.Get(r, "authentication")
account, ok := ses.Values["account2"].(string)
if ok {
user := userStore.Get(account)
r = r.WithContext(context.WithValue(r.Context(), userContextKey, user))
}
u.Handler.ServeHTTP(w, r)
}
type ManglingUserStore struct {
account.AccountStore
}
func (m *ManglingUserStore) mangle(name string) string {
if len(name) > 2 && name[:2] == "1$" {
return name
}
sum := sha256.Sum256([]byte(name))
return "1$" + base32Encoder.EncodeToString(sum[:])
}
func (m *ManglingUserStore) Get(name string) *account.User {
return m.AccountStore.Get(m.mangle(name))
}
func (m *ManglingUserStore) Create(name string) *account.User {
return m.AccountStore.Create(m.mangle(name))
}
type CachingUserStore struct {
account.AccountStore
mu sync.RWMutex
cache *lru.Cache
}
func (c *CachingUserStore) fromCache(name string) *account.User {
c.mu.RLock()
var user *account.User
if c.cache != nil {
if u, ok := c.cache.Get(name); ok {
user = u.(*account.User)
}
}
c.mu.RUnlock()
return user
}
func (c *CachingUserStore) putCache(name string, user *account.User) {
c.mu.Lock()
if c.cache == nil {
c.cache = &lru.Cache{
MaxEntries: USER_CACHE_MAX_ENTRIES,
}
}
c.cache.Add(name, user)
c.mu.Unlock()
}
func (c *CachingUserStore) Get(name string) *account.User {
user := c.fromCache(name)
if user == nil {
user = c.AccountStore.Get(name)
if user != nil {
c.putCache(user.Name, user)
}
}
return user
}
func (c *CachingUserStore) Create(name string) *account.User {
user := c.fromCache(name)
if user == nil {
user = c.AccountStore.Create(name)
if user != nil {
c.putCache(user.Name, user)
}
}
return user
}
type PromoteFirstUserToAdminStore struct {
Path string
account.AccountStore
firstUserCheckDone bool
}
func (c *PromoteFirstUserToAdminStore) Create(name string) *account.User {
firstUser := false
if !c.firstUserCheckDone {
accountDir, err := os.Open(c.Path)
if err != nil {
firstUser = true
} else {
defer accountDir.Close()
_, err = accountDir.Readdirnames(1)
if err == io.EOF {
firstUser = true
}
}
c.firstUserCheckDone = true
}
user := c.AccountStore.Create(name)
if firstUser {
user.Values["user.permissions"] = PastePermission{"admin": true}
}
return user
}
func adminPromoteHandler(w http.ResponseWriter, r *http.Request) {
username := r.FormValue("username")
user := userStore.Get(username)
if user != nil {
perms, ok := user.Values["user.permissions"].(PastePermission)
if !ok {
perms = PastePermission{}
}
perms["admin"] = true
user.Values["user.permissions"] = perms
user.Save()
SetFlash(w, "success", "Promoted "+username+".")
} else {
SetFlash(w, "error", "Couldn't find "+username+" to promote.")
}
w.Header().Set("Location", "/admin")
w.WriteHeader(http.StatusSeeOther)
}
func init() {
RegisterTemplateFunction("user", func(r *RenderContext) *account.User {
return GetUser(r.Request)
})
}