|
|
@ -92,6 +92,32 @@ func (s *Server) Accept(nc net.Conn, brw *bufio.ReadWriter) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// registerClient notes that client c is now authenticated and ready for packets.
|
|
|
|
|
|
|
|
// If c's public key was already connected with a different connection, the prior one is closed.
|
|
|
|
|
|
|
|
func (s *Server) registerClient(c *sclient) {
|
|
|
|
|
|
|
|
s.mu.Lock()
|
|
|
|
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
|
|
|
|
old := s.clients[c.key]
|
|
|
|
|
|
|
|
if old == nil {
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: adding connection", c.nc.RemoteAddr(), c.key)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
old.nc.Close()
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: adding connection, replacing %s", c.nc.RemoteAddr(), c.key, old.nc.RemoteAddr())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
s.clients[c.key] = c
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// unregisterClient
|
|
|
|
|
|
|
|
func (s *Server) unregisterClient(c *sclient) {
|
|
|
|
|
|
|
|
s.mu.Lock()
|
|
|
|
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
|
|
|
|
cur := s.clients[c.key]
|
|
|
|
|
|
|
|
if cur == c {
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: removing connection", c.nc.RemoteAddr(), c.key)
|
|
|
|
|
|
|
|
delete(s.clients, c.key)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (s *Server) accept(nc net.Conn, brw *bufio.ReadWriter) error {
|
|
|
|
func (s *Server) accept(nc net.Conn, brw *bufio.ReadWriter) error {
|
|
|
|
br, bw := brw.Reader, brw.Writer
|
|
|
|
br, bw := brw.Reader, brw.Writer
|
|
|
|
nc.SetDeadline(time.Now().Add(10 * time.Second))
|
|
|
|
nc.SetDeadline(time.Now().Add(10 * time.Second))
|
|
|
@ -110,8 +136,9 @@ func (s *Server) accept(nc net.Conn, brw *bufio.ReadWriter) error {
|
|
|
|
// At this point we trust the client so we don't time out.
|
|
|
|
// At this point we trust the client so we don't time out.
|
|
|
|
nc.SetDeadline(time.Time{})
|
|
|
|
nc.SetDeadline(time.Time{})
|
|
|
|
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
if err := s.sendServerInfo(bw, clientKey); err != nil {
|
|
|
|
defer cancel()
|
|
|
|
return fmt.Errorf("send server info: %v", err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
c := &sclient{
|
|
|
|
c := &sclient{
|
|
|
|
key: clientKey,
|
|
|
|
key: clientKey,
|
|
|
@ -123,42 +150,12 @@ func (s *Server) accept(nc net.Conn, brw *bufio.ReadWriter) error {
|
|
|
|
c.info = *clientInfo
|
|
|
|
c.info = *clientInfo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
s.registerClient(c)
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.unregisterClient(c)
|
|
|
|
curClient := s.clients[c.key]
|
|
|
|
|
|
|
|
if curClient == c {
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: removing connection", nc.RemoteAddr(), c.key)
|
|
|
|
|
|
|
|
delete(s.clients, c.key)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
s.mu.Unlock()
|
|
|
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Hold mu while we add the new client to the clients list and under
|
|
|
|
|
|
|
|
// the same acquisition send server info. This ensure that both:
|
|
|
|
|
|
|
|
// 1. by the time the client receives the server info, it can be addressed.
|
|
|
|
|
|
|
|
// 2. the server info is the very first
|
|
|
|
|
|
|
|
c.mu.Lock()
|
|
|
|
|
|
|
|
s.mu.Lock()
|
|
|
|
|
|
|
|
oldClient := s.clients[c.key]
|
|
|
|
|
|
|
|
s.clients[c.key] = c
|
|
|
|
|
|
|
|
s.mu.Unlock()
|
|
|
|
|
|
|
|
if err := s.sendServerInfo(c.bw, clientKey); err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("send server info: %v", err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
c.mu.Unlock()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if oldClient == nil {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
s.logf("derp: %s: client %x: adding connection", nc.RemoteAddr(), c.key)
|
|
|
|
defer cancel()
|
|
|
|
} else {
|
|
|
|
go s.sendClientKeepAlives(ctx, c)
|
|
|
|
oldClient.nc.Close()
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: adding connection, replacing %s", nc.RemoteAddr(), c.key, oldClient.nc.RemoteAddr())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
|
|
|
|
if err := c.keepAlive(ctx); err != nil {
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: keep alive failed: %v", nc.RemoteAddr(), c.key, err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
for {
|
|
|
|
dstKey, contents, err := s.recvPacket(c.br)
|
|
|
|
dstKey, contents, err := s.recvPacket(c.br)
|
|
|
@ -193,6 +190,12 @@ func (s *Server) accept(nc net.Conn, brw *bufio.ReadWriter) error {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (s *Server) sendClientKeepAlives(ctx context.Context, c *sclient) {
|
|
|
|
|
|
|
|
if err := c.keepAliveLoop(ctx); err != nil {
|
|
|
|
|
|
|
|
s.logf("derp: %s: client %x: keep alive failed: %v", c.nc.RemoteAddr(), c.key, err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (s *Server) verifyClient(clientKey key.Public, info *sclientInfo) error {
|
|
|
|
func (s *Server) verifyClient(clientKey key.Public, info *sclientInfo) error {
|
|
|
|
// TODO(crawshaw): implement policy constraints on who can use the DERP server
|
|
|
|
// TODO(crawshaw): implement policy constraints on who can use the DERP server
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
@ -312,13 +315,14 @@ type sclient struct {
|
|
|
|
bw *bufio.Writer
|
|
|
|
bw *bufio.Writer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (c *sclient) keepAlive(ctx context.Context) error {
|
|
|
|
func (c *sclient) keepAliveLoop(ctx context.Context) error {
|
|
|
|
jitterMs, err := crand.Int(crand.Reader, big.NewInt(5000))
|
|
|
|
jitterMs, err := crand.Int(crand.Reader, big.NewInt(5000))
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jitter := time.Duration(jitterMs.Int64()) * time.Millisecond
|
|
|
|
jitter := time.Duration(jitterMs.Int64()) * time.Millisecond
|
|
|
|
c.keepAliveTimer = time.NewTimer(keepAlive + jitter)
|
|
|
|
c.keepAliveTimer = time.NewTimer(keepAlive + jitter)
|
|
|
|
|
|
|
|
defer c.keepAliveTimer.Stop()
|
|
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
select {
|
|
|
@ -338,7 +342,6 @@ func (c *sclient) keepAlive(ctx context.Context) error {
|
|
|
|
c.mu.Unlock()
|
|
|
|
c.mu.Unlock()
|
|
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
// TODO log
|
|
|
|
|
|
|
|
c.nc.Close()
|
|
|
|
c.nc.Close()
|
|
|
|
return err
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|