Copyright 2013 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.

package ssh

import (
	
	
	
	
	
	
)
debugMux, if set, causes messages in the connection protocol to be logged.
const debugMux = false
chanList is a thread safe channel list.
protects concurrent access to chans
chans are indexed by the local id of the channel, which the other side should send in the PeersId field.
This is a debugging aid: it offsets all IDs by this amount. This helps distinguish otherwise identical server/client muxes
Assigns a channel ID to the given channel.
func ( *chanList) ( *channel) uint32 {
	.Lock()
	defer .Unlock()
	for  := range .chans {
		if .chans[] == nil {
			.chans[] = 
			return uint32() + .offset
		}
	}
	.chans = append(.chans, )
	return uint32(len(.chans)-1) + .offset
}
getChan returns the channel for the given ID.
func ( *chanList) ( uint32) *channel {
	 -= .offset

	.Lock()
	defer .Unlock()
	if  < uint32(len(.chans)) {
		return .chans[]
	}
	return nil
}

func ( *chanList) ( uint32) {
	 -= .offset
	.Lock()
	if  < uint32(len(.chans)) {
		.chans[] = nil
	}
	.Unlock()
}
dropAll forgets all channels it knows, returning them in a slice.
func ( *chanList) () []*channel {
	.Lock()
	defer .Unlock()
	var  []*channel

	for ,  := range .chans {
		if  == nil {
			continue
		}
		 = append(, )
	}
	.chans = nil
	return 
}
mux represents the state for the SSH connection protocol, which multiplexes many channels onto a single packet transport.
When debugging, each new chanList instantiation has a different offset.
var globalOff uint32

func ( *mux) () error {
	.errCond.L.Lock()
	defer .errCond.L.Unlock()
	for .err == nil {
		.errCond.Wait()
	}
	return .err
}
newMux returns a mux that runs over the given connection.
func ( packetConn) *mux {
	 := &mux{
		conn:             ,
		incomingChannels: make(chan NewChannel, chanSize),
		globalResponses:  make(chan interface{}, 1),
		incomingRequests: make(chan *Request, chanSize),
		errCond:          newCond(),
	}
	if debugMux {
		.chanList.offset = atomic.AddUint32(&globalOff, 1)
	}

	go .loop()
	return 
}

func ( *mux) ( interface{}) error {
	 := Marshal()
	if debugMux {
		log.Printf("send global(%d): %#v", .chanList.offset, )
	}
	return .conn.writePacket()
}

func ( *mux) ( string,  bool,  []byte) (bool, []byte, error) {
	if  {
		.globalSentMu.Lock()
		defer .globalSentMu.Unlock()
	}

	if  := .sendMessage(globalRequestMsg{
		Type:      ,
		WantReply: ,
		Data:      ,
	});  != nil {
		return false, nil, 
	}

	if ! {
		return false, nil, nil
	}

	,  := <-.globalResponses
	if ! {
		return false, nil, io.EOF
	}
	switch msg := .(type) {
	case *globalRequestFailureMsg:
		return false, .Data, nil
	case *globalRequestSuccessMsg:
		return true, .Data, nil
	default:
		return false, nil, fmt.Errorf("ssh: unexpected response to request: %#v", )
	}
}
ackRequest must be called after processing a global request that has WantReply set.
func ( *mux) ( bool,  []byte) error {
	if  {
		return .sendMessage(globalRequestSuccessMsg{Data: })
	}
	return .sendMessage(globalRequestFailureMsg{Data: })
}

func ( *mux) () error {
	return .conn.Close()
}
loop runs the connection machine. It will process packets until an error is encountered. To synchronize on loop exit, use mux.Wait.
func ( *mux) () {
	var  error
	for  == nil {
		 = .onePacket()
	}

	for ,  := range .chanList.dropAll() {
		.close()
	}

	close(.incomingChannels)
	close(.incomingRequests)
	close(.globalResponses)

	.conn.Close()

	.errCond.L.Lock()
	.err = 
	.errCond.Broadcast()
	.errCond.L.Unlock()

	if debugMux {
		log.Println("loop exit", )
	}
}
onePacket reads and processes one packet.
func ( *mux) () error {
	,  := .conn.readPacket()
	if  != nil {
		return 
	}

	if debugMux {
		if [0] == msgChannelData || [0] == msgChannelExtendedData {
			log.Printf("decoding(%d): data packet - %d bytes", .chanList.offset, len())
		} else {
			,  := decode()
			log.Printf("decoding(%d): %d %#v - %d bytes", .chanList.offset, [0], , len())
		}
	}

	switch [0] {
	case msgChannelOpen:
		return .handleChannelOpen()
	case msgGlobalRequest, msgRequestSuccess, msgRequestFailure:
		return .handleGlobalPacket()
	}
assume a channel packet.
	if len() < 5 {
		return parseError([0])
	}
	 := binary.BigEndian.Uint32([1:])
	 := .chanList.getChan()
	if  == nil {
		return .handleUnknownChannelPacket(, )
	}

	return .handlePacket()
}

func ( *mux) ( []byte) error {
	,  := decode()
	if  != nil {
		return 
	}

	switch msg := .(type) {
	case *globalRequestMsg:
		.incomingRequests <- &Request{
			Type:      .Type,
			WantReply: .WantReply,
			Payload:   .Data,
			mux:       ,
		}
	case *globalRequestSuccessMsg, *globalRequestFailureMsg:
		.globalResponses <- 
	default:
		panic(fmt.Sprintf("not a global message %#v", ))
	}

	return nil
}
handleChannelOpen schedules a channel to be Accept()ed.
func ( *mux) ( []byte) error {
	var  channelOpenMsg
	if  := Unmarshal(, &);  != nil {
		return 
	}

	if .MaxPacketSize < minPacketLength || .MaxPacketSize > 1<<31 {
		 := channelOpenFailureMsg{
			PeersID:  .PeersID,
			Reason:   ConnectionFailed,
			Message:  "invalid request",
			Language: "en_US.UTF-8",
		}
		return .sendMessage()
	}

	 := .newChannel(.ChanType, channelInbound, .TypeSpecificData)
	.remoteId = .PeersID
	.maxRemotePayload = .MaxPacketSize
	.remoteWin.add(.PeersWindow)
	.incomingChannels <- 
	return nil
}

func ( *mux) ( string,  []byte) (Channel, <-chan *Request, error) {
	,  := .openChannel(, )
	if  != nil {
		return nil, nil, 
	}

	return , .incomingRequests, nil
}

func ( *mux) ( string,  []byte) (*channel, error) {
	 := .newChannel(, channelOutbound, )

	.maxIncomingPayload = channelMaxPacket

	 := channelOpenMsg{
		ChanType:         ,
		PeersWindow:      .myWindow,
		MaxPacketSize:    .maxIncomingPayload,
		TypeSpecificData: ,
		PeersID:          .localId,
	}
	if  := .sendMessage();  != nil {
		return nil, 
	}

	switch msg := (<-.msg).(type) {
	case *channelOpenConfirmMsg:
		return , nil
	case *channelOpenFailureMsg:
		return nil, &OpenChannelError{.Reason, .Message}
	default:
		return nil, fmt.Errorf("ssh: unexpected packet in response to channel open: %T", )
	}
}

func ( *mux) ( uint32,  []byte) error {
	,  := decode()
	if  != nil {
		return 
	}

RFC 4254 section 5.4 says unrecognized channel requests should receive a failure response.
	case *channelRequestMsg:
		if .WantReply {
			return .sendMessage(channelRequestFailureMsg{
				PeersID: .PeersID,
			})
		}
		return nil
	default:
		return fmt.Errorf("ssh: invalid channel %d", )
	}