-
Notifications
You must be signed in to change notification settings - Fork 500
/
stickysession.go
240 lines (201 loc) · 6.58 KB
/
stickysession.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
/*
* Copyright (c) 2017, MegaEase
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package proxies
import (
"crypto/hmac"
"crypto/sha256"
"encoding/binary"
"encoding/hex"
"hash/maphash"
"net/http"
"sync/atomic"
"time"
"github.com/buraksezer/consistent"
"github.com/megaease/easegress/v2/pkg/protocols"
"github.com/megaease/easegress/v2/pkg/protocols/httpprot"
"github.com/spaolacci/murmur3"
)
const (
// StickySessionModeCookieConsistentHash is the sticky session mode of consistent hash on app cookie.
StickySessionModeCookieConsistentHash = "CookieConsistentHash"
// StickySessionModeDurationBased uses a load balancer-generated cookie for stickiness.
StickySessionModeDurationBased = "DurationBased"
// StickySessionModeApplicationBased uses a load balancer-generated cookie depends on app cookie for stickiness.
StickySessionModeApplicationBased = "ApplicationBased"
// StickySessionDefaultLBCookieName is the default name of the load balancer-generated cookie.
StickySessionDefaultLBCookieName = "EG_SESSION"
// KeyLen is the key length used by HMAC.
KeyLen = 8
)
// StickySessionSpec is the spec for sticky session.
type StickySessionSpec struct {
Mode string `json:"mode" jsonschema:"required,enum=CookieConsistentHash,enum=DurationBased,enum=ApplicationBased"`
// AppCookieName is the user-defined cookie name in CookieConsistentHash and ApplicationBased mode.
AppCookieName string `json:"appCookieName,omitempty"`
// LBCookieName is the generated cookie name in DurationBased and ApplicationBased mode.
LBCookieName string `json:"lbCookieName,omitempty"`
// LBCookieExpire is the expire seconds of generated cookie in DurationBased and ApplicationBased mode.
LBCookieExpire string `json:"lbCookieExpire,omitempty" jsonschema:"format=duration"`
}
// SessionSticker is the interface for session stickiness.
type SessionSticker interface {
UpdateServers(servers []*Server)
GetServer(req protocols.Request, sg *ServerGroup) *Server
ReturnServer(server *Server, req protocols.Request, resp protocols.Response)
Close()
}
// hashMember is member used for hash
type hashMember struct {
server *Server
}
// String implements consistent.Member interface
func (m hashMember) String() string {
return m.server.ID()
}
// hasher is used for hash
type hasher struct{}
// Sum64 implement hash function using murmur3
func (h hasher) Sum64(data []byte) uint64 {
return murmur3.Sum64(data)
}
// HTTPSessionSticker implements sticky session for HTTP.
type HTTPSessionSticker struct {
spec *StickySessionSpec
consistentHash atomic.Pointer[consistent.Consistent]
cookieExpire time.Duration
}
// NewHTTPSessionSticker creates a new HTTPSessionSticker.
func NewHTTPSessionSticker(spec *StickySessionSpec) SessionSticker {
if spec.LBCookieName == "" {
spec.LBCookieName = StickySessionDefaultLBCookieName
}
ss := &HTTPSessionSticker{spec: spec}
ss.cookieExpire, _ = time.ParseDuration(spec.LBCookieExpire)
if ss.cookieExpire <= 0 {
ss.cookieExpire = time.Hour * 2
}
return ss
}
// UpdateServers update the servers for the HTTPSessionSticker.
func (ss *HTTPSessionSticker) UpdateServers(servers []*Server) {
if ss.spec.Mode != StickySessionModeCookieConsistentHash {
return
}
if len(servers) == 0 {
// TODO: consistentHash panics in this case, we need to handle it.
return
}
members := make([]consistent.Member, len(servers))
for i, s := range servers {
members[i] = hashMember{server: s}
}
cfg := consistent.Config{
PartitionCount: 1024,
ReplicationFactor: 50,
Load: 1.25,
Hasher: hasher{},
}
ss.consistentHash.Store(consistent.New(members, cfg))
}
func (ss *HTTPSessionSticker) getServerByConsistentHash(req *httpprot.Request) *Server {
cookie, err := req.Cookie(ss.spec.AppCookieName)
if err != nil {
return nil
}
m := ss.consistentHash.Load().LocateKey([]byte(cookie.Value))
if m != nil {
return m.(hashMember).server
}
return nil
}
func (ss *HTTPSessionSticker) getServerByLBCookie(req *httpprot.Request, sg *ServerGroup) *Server {
cookie, err := req.Cookie(ss.spec.LBCookieName)
if err != nil {
return nil
}
signed, err := hex.DecodeString(cookie.Value)
if err != nil || len(signed) != KeyLen+sha256.Size {
return nil
}
key := signed[:KeyLen]
macBytes := signed[KeyLen:]
for _, s := range sg.Servers {
mac := hmac.New(sha256.New, key)
mac.Write([]byte(s.ID()))
expected := mac.Sum(nil)
if hmac.Equal(expected, macBytes) {
return s
}
}
return nil
}
// GetServer returns the server for the request.
func (ss *HTTPSessionSticker) GetServer(req protocols.Request, sg *ServerGroup) *Server {
httpreq, ok := req.(*httpprot.Request)
if !ok {
panic("not http request")
}
switch ss.spec.Mode {
case StickySessionModeCookieConsistentHash:
return ss.getServerByConsistentHash(httpreq)
case StickySessionModeDurationBased, StickySessionModeApplicationBased:
return ss.getServerByLBCookie(httpreq, sg)
}
return nil
}
// sign signs plain text byte array to encoded string
func sign(plain []byte) string {
signed := make([]byte, KeyLen+sha256.Size)
key := signed[:KeyLen]
macBytes := signed[KeyLen:]
// use maphash to generate random key fast
binary.LittleEndian.PutUint64(key, new(maphash.Hash).Sum64())
mac := hmac.New(sha256.New, key)
mac.Write(plain)
mac.Sum(macBytes[:0])
return hex.EncodeToString(signed)
}
// ReturnServer returns the server to the session sticker.
func (ss *HTTPSessionSticker) ReturnServer(server *Server, req protocols.Request, resp protocols.Response) {
httpresp, ok := resp.(*httpprot.Response)
if !ok {
panic("not http response")
}
setCookie := false
switch ss.spec.Mode {
case StickySessionModeDurationBased:
setCookie = true
case StickySessionModeApplicationBased:
for _, c := range httpresp.Cookies() {
if c.Name == ss.spec.AppCookieName {
setCookie = true
break
}
}
}
if setCookie {
cookie := &http.Cookie{
Name: ss.spec.LBCookieName,
Value: sign([]byte(server.ID())),
Expires: time.Now().Add(ss.cookieExpire),
}
httpresp.SetCookie(cookie)
}
}
// Close closes the HTTPSessionSticker.
func (ss *HTTPSessionSticker) Close() {
}