mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-21 22:49:31 +00:00
158 lines
3.6 KiB
Go
158 lines
3.6 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes Authors.
|
|
|
|
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 client
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
"net"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"k8s.io/klog/v2"
|
|
|
|
"sigs.k8s.io/apiserver-network-proxy/konnectivity-client/proto/client"
|
|
)
|
|
|
|
// CloseTimeout is the timeout to wait CLOSE_RSP packet after a
|
|
// successful delivery of CLOSE_REQ.
|
|
const CloseTimeout = 10 * time.Second
|
|
|
|
var errConnTunnelClosed = errors.New("tunnel closed")
|
|
var errConnCloseTimeout = errors.New("close timeout")
|
|
|
|
// conn is an implementation of net.Conn, where the data is transported
|
|
// over an established tunnel defined by a gRPC service ProxyService.
|
|
type conn struct {
|
|
tunnel *grpcTunnel
|
|
// connID is set when a successful DIAL_RSP is received
|
|
connID int64
|
|
// random (dialID) is always initialized
|
|
random int64
|
|
readCh chan []byte
|
|
// On receiving CLOSE_RSP, closeCh will be sent any error message and closed.
|
|
closeCh chan string
|
|
rdata []byte
|
|
|
|
// closing is an atomic bool represented as a 0 or 1, and set to true when the connection is being closed.
|
|
// closing should only be accessed through atomic methods.
|
|
// TODO: switch this to an atomic.Bool once the client is exclusively buit with go1.19+
|
|
closing uint32
|
|
}
|
|
|
|
var _ net.Conn = &conn{}
|
|
|
|
// Write sends the data through the connection over proxy service
|
|
func (c *conn) Write(data []byte) (n int, err error) {
|
|
req := &client.Packet{
|
|
Type: client.PacketType_DATA,
|
|
Payload: &client.Packet_Data{
|
|
Data: &client.Data{
|
|
ConnectID: c.connID,
|
|
Data: data,
|
|
},
|
|
},
|
|
}
|
|
|
|
klog.V(5).InfoS("[tracing] send req", "type", req.Type)
|
|
|
|
err = c.tunnel.Send(req)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return len(data), err
|
|
}
|
|
|
|
// Read receives data from the connection over proxy service
|
|
func (c *conn) Read(b []byte) (n int, err error) {
|
|
var data []byte
|
|
|
|
if c.rdata != nil {
|
|
data = c.rdata
|
|
} else {
|
|
data = <-c.readCh
|
|
}
|
|
|
|
if data == nil {
|
|
return 0, io.EOF
|
|
}
|
|
|
|
if len(data) > len(b) {
|
|
copy(b, data[:len(b)])
|
|
c.rdata = data[len(b):]
|
|
return len(b), nil
|
|
}
|
|
|
|
c.rdata = nil
|
|
copy(b, data)
|
|
|
|
return len(data), nil
|
|
}
|
|
|
|
func (c *conn) LocalAddr() net.Addr {
|
|
return nil
|
|
}
|
|
|
|
func (c *conn) RemoteAddr() net.Addr {
|
|
return nil
|
|
}
|
|
|
|
func (c *conn) SetDeadline(t time.Time) error {
|
|
return errors.New("not implemented")
|
|
}
|
|
|
|
func (c *conn) SetReadDeadline(t time.Time) error {
|
|
return errors.New("not implemented")
|
|
}
|
|
|
|
func (c *conn) SetWriteDeadline(t time.Time) error {
|
|
return errors.New("not implemented")
|
|
}
|
|
|
|
// Close closes the connection, sends best-effort close signal to proxy
|
|
// service, and frees resources.
|
|
func (c *conn) Close() error {
|
|
old := atomic.SwapUint32(&c.closing, 1)
|
|
if old != 0 {
|
|
// prevent duplicate messages
|
|
return nil
|
|
}
|
|
klog.V(4).Infoln("closing connection", "dialID", c.random, "connectionID", c.connID)
|
|
|
|
defer c.tunnel.closeTunnel()
|
|
|
|
if c.connID != 0 {
|
|
c.tunnel.sendCloseRequest(c.connID)
|
|
} else {
|
|
// Never received a DIAL response so no connection ID.
|
|
c.tunnel.sendDialClose(c.random)
|
|
}
|
|
|
|
select {
|
|
case errMsg := <-c.closeCh:
|
|
if errMsg != "" {
|
|
return errors.New(errMsg)
|
|
}
|
|
return nil
|
|
case <-c.tunnel.Done():
|
|
return errConnTunnelClosed
|
|
case <-time.After(CloseTimeout):
|
|
}
|
|
|
|
return errConnCloseTimeout
|
|
}
|