-
Notifications
You must be signed in to change notification settings - Fork 88
/
realm.go
320 lines (293 loc) · 8.01 KB
/
realm.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
package turnpike
import (
"fmt"
"time"
)
const (
defaultAuthTimeout = 2 * time.Minute
)
// A Realm is a WAMP routing and administrative domain.
//
// Clients that have connected to a WAMP router are joined to a realm and all
// message delivery is handled by the realm.
type Realm struct {
_ string
URI URI
Broker
Dealer
Authorizer
Interceptor
CRAuthenticators map[string]CRAuthenticator
Authenticators map[string]Authenticator
// DefaultAuth func(details map[string]interface{}) (map[string]interface{}, error)
AuthTimeout time.Duration
clients map[ID]*Session
localClient
acts chan func()
}
type localClient struct {
*Client
}
func (r *Realm) getPeer(details map[string]interface{}) (Peer, error) {
peerA, peerB := localPipe()
if details == nil {
details = make(map[string]interface{})
}
sess := Session{Peer: peerA, Id: NewID(), Details: details, kill: make(chan URI, 1)}
go r.handleSession(&sess)
log.Println("Established internal session:", sess)
return peerB, nil
}
// Close disconnects all clients after sending a goodbye message
func (r Realm) Close() {
r.acts <- func() {
for _, client := range r.clients {
client.kill <- ErrSystemShutdown
}
}
var (
sync = make(chan struct{})
nclients int
)
for {
r.acts <- func() {
nclients = len(r.clients)
sync <- struct{}{}
}
<-sync
if nclients == 0 {
break
}
}
close(r.acts)
}
func (r *Realm) init() {
r.clients = make(map[ID]*Session)
r.acts = make(chan func())
p, _ := r.getPeer(nil)
r.localClient.Client = NewClient(p)
if r.Broker == nil {
r.Broker = NewDefaultBroker()
}
if r.Dealer == nil {
r.Dealer = NewDefaultDealer()
}
if r.Authorizer == nil {
r.Authorizer = NewDefaultAuthorizer()
}
if r.Interceptor == nil {
r.Interceptor = NewDefaultInterceptor()
}
if r.AuthTimeout == 0 {
r.AuthTimeout = defaultAuthTimeout
}
go r.localClient.Receive()
go r.run()
}
func (r *Realm) run() {
for {
if act, ok := <-r.acts; ok {
act()
} else {
return
}
}
}
func (l *localClient) onJoin(details map[string]interface{}) {
l.Publish("wamp.session.on_join", nil, []interface{}{details}, nil)
}
func (l *localClient) onLeave(session ID) {
l.Publish("wamp.session.on_leave", nil, []interface{}{session}, nil)
}
func (r *Realm) handleSession(sess *Session) {
sync := make(chan struct{})
r.acts <- func() {
r.clients[sess.Id] = sess
r.onJoin(sess.Details)
sync <- struct{}{}
}
<-sync
defer func() {
r.acts <- func() {
delete(r.clients, sess.Id)
r.Dealer.RemoveSession(sess)
r.Broker.RemoveSession(sess)
r.onLeave(sess.Id)
}
}()
c := sess.Receive()
// TODO: what happens if the realm is closed?
for {
var msg Message
var open bool
select {
case msg, open = <-c:
if !open {
log.Println("lost session:", sess)
return
}
case reason := <-sess.kill:
logErr(sess.Send(&Goodbye{Reason: reason, Details: make(map[string]interface{})}))
log.Printf("kill session %s: %v", sess, reason)
// TODO: wait for client Goodbye?
return
}
log.Printf("[%s] %s: %+v", sess, msg.MessageType(), msg)
if isAuthz, err := r.Authorizer.Authorize(sess, msg); !isAuthz {
errMsg := &Error{Type: msg.MessageType()}
switch msg := msg.(type) {
case *Publish:
errMsg.Request = msg.Request
case *Subscribe:
errMsg.Request = msg.Request
case *Unsubscribe:
errMsg.Request = msg.Request
case *Register:
errMsg.Request = msg.Request
case *Unregister:
errMsg.Request = msg.Request
case *Call:
errMsg.Request = msg.Request
case *Yield:
errMsg.Request = msg.Request
}
if err != nil {
errMsg.Error = ErrAuthorizationFailed
log.Printf("[%s] authorization failed: %v", sess, err)
} else {
errMsg.Error = ErrNotAuthorized
log.Printf("[%s] %s UNAUTHORIZED", sess, msg.MessageType())
}
logErr(sess.Send(errMsg))
continue
}
r.Interceptor.Intercept(sess, &msg)
switch msg := msg.(type) {
case *Goodbye:
logErr(sess.Send(&Goodbye{Reason: ErrGoodbyeAndOut, Details: make(map[string]interface{})}))
log.Printf("[%s] leaving: %v", sess, msg.Reason)
return
// Broker messages
case *Publish:
r.Broker.Publish(sess, msg)
case *Subscribe:
r.Broker.Subscribe(sess, msg)
case *Unsubscribe:
r.Broker.Unsubscribe(sess, msg)
// Dealer messages
case *Register:
r.Dealer.Register(sess, msg)
case *Unregister:
r.Dealer.Unregister(sess, msg)
case *Call:
r.Dealer.Call(sess, msg)
case *Yield:
r.Dealer.Yield(sess, msg)
// Error messages
case *Error:
if msg.Type == INVOCATION {
// the only type of ERROR message the router should receive
r.Dealer.Error(sess, msg)
} else {
log.Printf("invalid ERROR message received: %v", msg)
}
default:
log.Println("Unhandled message:", msg.MessageType())
}
}
}
func (r *Realm) handleAuth(client Peer, details map[string]interface{}) (*Welcome, error) {
msg, err := r.authenticate(details)
if err != nil {
return nil, err
}
// we should never get anything besides WELCOME and CHALLENGE
if msg.MessageType() == WELCOME {
return msg.(*Welcome), nil
}
// Challenge response
challenge := msg.(*Challenge)
if err := client.Send(challenge); err != nil {
return nil, err
}
msg, err = GetMessageTimeout(client, r.AuthTimeout)
if err != nil {
return nil, err
}
log.Printf("%s: %+v", msg.MessageType(), msg)
if authenticate, ok := msg.(*Authenticate); !ok {
return nil, fmt.Errorf("unexpected %s message received", msg.MessageType())
} else {
return r.checkResponse(challenge, authenticate)
}
}
// Authenticate either authenticates a client or returns a challenge message if
// challenge/response authentication is to be used.
func (r Realm) authenticate(details map[string]interface{}) (Message, error) {
log.Println("details:", details)
if len(r.Authenticators) == 0 && len(r.CRAuthenticators) == 0 {
return &Welcome{}, nil
}
// TODO: this might not always be a []interface{}. Using the JSON unmarshaller it will be,
// but we may have serializations that preserve more of the original type.
// For now, the tests just explicitly send a []interface{}
_authmethods, ok := details["authmethods"].([]interface{})
if !ok {
return nil, fmt.Errorf("No authentication supplied")
}
authmethods := []string{}
for _, method := range _authmethods {
if m, ok := method.(string); ok {
authmethods = append(authmethods, m)
} else {
log.Printf("invalid authmethod value: %v", method)
}
}
for _, method := range authmethods {
if auth, ok := r.CRAuthenticators[method]; ok {
if challenge, err := auth.Challenge(details); err != nil {
return nil, err
} else {
return &Challenge{AuthMethod: method, Extra: challenge}, nil
}
}
if auth, ok := r.Authenticators[method]; ok {
if authDetails, err := auth.Authenticate(details); err != nil {
return nil, err
} else {
return &Welcome{Details: addAuthMethod(authDetails, method)}, nil
}
}
}
// TODO: check default auth (special '*' auth?)
return nil, fmt.Errorf("could not authenticate with any method")
}
// checkResponse determines whether the response to the challenge is sufficient to gain access to the Realm.
func (r Realm) checkResponse(chal *Challenge, auth *Authenticate) (*Welcome, error) {
authenticator, ok := r.CRAuthenticators[chal.AuthMethod]
if !ok {
return nil, fmt.Errorf("authentication method has been removed")
}
if details, err := authenticator.Authenticate(chal.Extra, auth.Signature); err != nil {
return nil, err
} else {
return &Welcome{Details: addAuthMethod(details, chal.AuthMethod)}, nil
}
}
func addAuthMethod(details map[string]interface{}, method string) map[string]interface{} {
if details == nil {
details = make(map[string]interface{})
}
details["authmethod"] = method
return details
}
// r := Realm{
// Authenticators: map[string]turnpike.Authenticator{
// "wampcra": turnpike.NewCRAAuthenticatorFactoryFactory(mySecret),
// "ticket": turnpike.NewTicketAuthenticator(myTicket),
// "asdfasdf": myAsdfAuthenticator,
// },
// BasicAuthenticators: map[string]turnpike.BasicAuthenticator{
// "anonymous": nil,
// },
// }