-
Notifications
You must be signed in to change notification settings - Fork 4
/
api.go
204 lines (183 loc) · 6.78 KB
/
api.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
// Package ssp implements the SQRL server-side protocol (SSP). The SqrlSspApi
// is a stateful server object that manages SQRL identities. The /cli.sqrl
// exposed at Cli is the only endpoint that is required to operate in
// conjunction with the SQRL client. This endpoint is required to be served
// over https.
//
// While it's possible that this code can be run within a web server that
// terminates TLS itself, the expectation is that it is served from behind
// a load balancer or reverse proxy. While I attempt to reconstruct the
// host and paths from the request and standard forwarding headers, this
// can be unreliable and it's best to confgure the HostOverride and RootPath
package ssp
import (
"encoding/base64"
"fmt"
"net/http"
"net/url"
"time"
)
// Nut is a cryptographic nonce used by SQRL
type Nut string
// Sqrl64 is a shortcut base64.RawURLEncoding encoding which is used
// pervasively throughout the SQRL protocol
var Sqrl64 = base64.RawURLEncoding
// SqrlScheme is sqrl
const SqrlScheme = "sqrl"
// A Tree produces Nuts :)
type Tree interface {
Nut() (Nut, error)
}
// ErrNotFound specific error returned if a Hoard
// or identity isn't found. This is to differentiate
// from more serious errors at the storage level
var ErrNotFound = fmt.Errorf("Not Found")
// Hoard stores Nuts for later use
type Hoard interface {
Get(nut Nut) (*HoardCache, error)
GetAndDelete(nut Nut) (*HoardCache, error)
Save(nut Nut, value *HoardCache, expiration time.Duration) error
}
// HoardCache is the state associated with a Nut
type HoardCache struct {
State string `json:"state"`
RemoteIP string `json:"remoteIP"`
OriginalNut Nut `json:"originalNut"`
PagNut Nut `json:"pagNut"`
LastRequest *CliRequest `json:"lastRequest"`
Identity *SqrlIdentity `json:"identity"`
LastResponse []byte `json:"lastResponse"`
}
// SqrlIdentity holds all the info about a valid SQRL identity
type SqrlIdentity struct {
Idk string `json:"idk" sql:"primary_key"`
Suk string `json:"suk"`
Vuk string `json:"vuk"`
Pidk string `json:"pidk"` // TODO do we need to keep track of Pidk?
SQRLOnly bool `json:"sqrlOnly"`
Hardlock bool `json:"hardlock"`
Disabled bool `json:"disabled"`
Rekeyed string `json:"rekeyed"` // If this Idk has been rekeyed, this links to the new ID
// Btn is filled in if the request includes a button press response from an
// ask. -1 if there's no value.
Btn int `json:"-" sql:"-"`
}
// Authenticator interface to allow user management triggered by
// SQRL authentication events.
type Authenticator interface {
// Called when a SQRL identity has been successfully authenticated. It
// should return a URL that will finish authentication to create a
// logged in session. This is also called for a new user.
// If an error occurs this should return an error
// page redirection
AuthenticateIdentity(identity *SqrlIdentity) string
// When an identity is rekeyed, it's necessary to swap the identity
// associated with a given user. This callback happens when a user
// wishes to swap their previous identity for a new one.
SwapIdentities(previousIdentity, newIdentity *SqrlIdentity) error
// This denotes an identity is now removed and this identity
// should be disassociated with a user. This does not necessarily
// mean the user should be deleted though. The SQRL spec mentions
// being able to re-associate another identity at a later time (possibly
// during the same login session)
RemoveIdentity(identity *SqrlIdentity) error
// Send an ask response back to the SQRL client.
// Since this is triggered on query and not ident,
// the identity may only contain Idk. Ask responses
// will be included as part of the SqrlIdentity sent via
// AuthenticateIdentity
AskResponse(identity *SqrlIdentity) *Ask
}
// AuthStore stores SQRL identities
type AuthStore interface {
FindIdentity(idk string) (*SqrlIdentity, error)
SaveIdentity(identity *SqrlIdentity) error
DeleteIdentity(idk string) error
}
// SqrlSspAPI implements the endpoitns outlined here
// https://www.grc.com/sqrl/sspapi.htm
type SqrlSspAPI struct {
tree Tree
hoard Hoard
NutExpiration time.Duration
authStore AuthStore
// set to the hostname for serving SQRL urls; this can include a port if necessary
HostOverride string
// if the SQRL endpoints are not at the root of the host, then this overrides the path where they are hosted
RootPath string
Authenticator Authenticator
}
// NutExpirationSeconds has a self-explanatory name
func (api *SqrlSspAPI) NutExpirationSeconds() int {
return int(api.NutExpiration / time.Second)
}
// NewSqrlSspAPI takes a Tree implementation that produces Nuts.
// If set to nil, a the API defaults to NewRandomTree(8).
// Also needs a Hoard to store a retrieve Nuts
func NewSqrlSspAPI(tree Tree, hoard Hoard, authenticator Authenticator, authStore AuthStore) *SqrlSspAPI {
if tree == nil {
tree, _ = NewRandomTree(8)
}
return &SqrlSspAPI{
tree: tree,
hoard: hoard,
NutExpiration: 10 * time.Minute,
Authenticator: authenticator,
authStore: authStore,
}
}
// Host gets the host in order of preference:
// SqrlSspAPI.HostOverride, header X-Forwarded-Host, Request.Host
func (api *SqrlSspAPI) Host(r *http.Request) string {
host := api.HostOverride
if host == "" {
host = r.Header.Get("X-Forwarded-Host")
}
if host == "" {
host = r.Header.Get("X-Forwarded-Server")
}
if host == "" {
host = r.Host
}
return host
}
func (api *SqrlSspAPI) swapIdentities(previousIdentity, newIdentity *SqrlIdentity) error {
err := api.Authenticator.SwapIdentities(previousIdentity, newIdentity)
if err != nil {
return err
}
previousIdentity.Rekeyed = newIdentity.Idk
return api.authStore.SaveIdentity(previousIdentity)
}
func (api *SqrlSspAPI) removeIdentity(identity *SqrlIdentity) error {
err := api.Authenticator.RemoveIdentity(identity)
if err != nil {
return err
}
return api.authStore.DeleteIdentity(identity.Idk)
}
func (api *SqrlSspAPI) authenticateIdentity(identity *SqrlIdentity, btn int) (string, error) {
redirect := api.Authenticator.AuthenticateIdentity(identity)
return redirect, api.authStore.SaveIdentity(identity)
}
// HTTPSRoot returns the best guess at the https root URL for this server
func (api *SqrlSspAPI) HTTPSRoot(r *http.Request) *url.URL {
return &url.URL{
Scheme: "https",
Host: api.Host(r),
Path: api.RootPath,
}
}
// RemoteIP gets the remote IP as a string from a request
// It prefers the X-Forwarded-For header since it's likely
// this server will be behind a load balancer
func (api *SqrlSspAPI) RemoteIP(r *http.Request) string {
ipAddress := r.Header.Get("X-Forwarded-For")
if ipAddress == "" {
ipAddress = r.RemoteAddr
}
return ipAddress
}
func (api *SqrlSspAPI) qry(nut Nut) string {
return fmt.Sprintf("%v/cli.sqrl?nut=%v", api.RootPath, nut)
}