Skip to content
Permalink
v0.0.5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
142 lines (124 sloc) 3.27 KB
// Copyright 2016 CoreOS, Inc.
//
// 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 zetcd
import (
"bytes"
"crypto/rand"
"fmt"
"sync"
etcd "github.com/coreos/etcd/clientv3"
"github.com/golang/glog"
)
type SessionPool struct {
sessions map[etcd.LeaseID]Session
c *etcd.Client
mu sync.RWMutex
be sessionBackend
}
func NewSessionPool(client *etcd.Client) *SessionPool {
be := &etcdSessionBackend{client}
return &SessionPool{
sessions: make(map[etcd.LeaseID]Session),
c: client,
be: be,
}
}
func (sp *SessionPool) Auth(zka AuthConn) (Session, error) {
defer zka.Close()
areq, err := zka.Read()
if err != nil {
return nil, err
}
if areq.FourLetterWord == flwRUOK {
zka.Write(AuthResponse{FourLetterWord: flwIMOK})
return nil, fmt.Errorf(flwRUOK)
}
req := areq.Req
if req.ProtocolVersion != 0 {
panic(fmt.Sprintf("unhandled req stuff! %+v", req))
}
// TODO use ttl from lease
lid := etcd.LeaseID(req.SessionID)
if lid == 0 {
lid, req.Passwd, err = sp.be.create(int64(req.TimeOut) / 1000)
} else {
lid, err = sp.be.resume(req.SessionID, req.Passwd)
}
if err != nil {
resp := &ConnectResponse{Passwd: make([]byte, 14)}
zkc, _ := zka.Write(AuthResponse{Resp: resp})
if zkc != nil {
zkc.Close()
}
return nil, err
}
resp := &ConnectResponse{
ProtocolVersion: 0,
TimeOut: req.TimeOut,
SessionID: Sid(lid),
Passwd: req.Passwd,
}
glog.V(7).Infof("authresp=%+v", resp)
zkc, aerr := zka.Write(AuthResponse{Resp: resp})
if zkc == nil || aerr != nil {
return nil, aerr
}
s, serr := newSession(sp.c, zkc, lid)
if serr != nil {
return nil, serr
}
s.req = *areq.Req
sp.mu.Lock()
sp.sessions[s.id] = s
sp.mu.Unlock()
return s, nil
}
type sessionBackend interface {
create(ttl int64) (etcd.LeaseID, []byte, error)
resume(Sid, []byte) (etcd.LeaseID, error)
}
type etcdSessionBackend struct {
c *etcd.Client
}
func (sp *etcdSessionBackend) create(ttl int64) (etcd.LeaseID, []byte, error) {
pwd := make([]byte, 16)
if _, err := rand.Read(pwd); err != nil {
return 0, nil, err
}
if ttl == 0 {
ttl = 1
}
lcr, err := sp.c.Grant(sp.c.Ctx(), ttl)
if err != nil {
return 0, nil, err
}
_, err = sp.c.Put(sp.c.Ctx(), lid2key(lcr.ID), string(pwd), etcd.WithLease(lcr.ID))
if err != nil {
return 0, nil, err
}
return lcr.ID, pwd, nil
}
func (sp *etcdSessionBackend) resume(sid Sid, pwd []byte) (etcd.LeaseID, error) {
gresp, gerr := sp.c.Get(sp.c.Ctx(), lid2key(etcd.LeaseID(sid)))
switch {
case gerr != nil:
return 0, gerr
case len(gresp.Kvs) == 0:
return 0, fmt.Errorf("bad lease")
case !bytes.Equal(gresp.Kvs[0].Value, pwd):
return 0, fmt.Errorf("bad passwd")
}
return etcd.LeaseID(sid), nil
}
func lid2key(lid etcd.LeaseID) string { return mkPathSession(uint64(lid)) }