mirror of https://github.com/cbeuw/Cloak
Add more trace logs
This commit is contained in:
parent
01036086c7
commit
3dc4c6fb3f
|
|
@ -45,8 +45,10 @@ func makeRemoteConn(sta *client.State) (net.Conn, []byte, error) {
|
|||
log.WithField("error", err).Error("Failed to send ClientHello")
|
||||
return nil, nil, err
|
||||
}
|
||||
log.Trace("client hello sent successfully")
|
||||
|
||||
buf := make([]byte, 1024)
|
||||
log.Trace("waiting for ServerHello")
|
||||
_, err = util.ReadTLS(remoteConn, buf)
|
||||
if err != nil {
|
||||
log.WithField("error", err).Error("Failed to read ServerHello")
|
||||
|
|
@ -93,6 +95,7 @@ func makeSession(sta *client.State) *mux.Session {
|
|||
}()
|
||||
}
|
||||
wg.Wait()
|
||||
log.Debug("All underlying connections established")
|
||||
|
||||
sessionKey := _sessionKey.Load().([]byte)
|
||||
obfuscator, err := mux.GenerateObfs(sta.EncryptionMethod, sessionKey)
|
||||
|
|
|
|||
|
|
@ -85,6 +85,7 @@ func dispatchConnection(conn net.Conn, sta *server.State) {
|
|||
go conn.Close()
|
||||
return err
|
||||
}
|
||||
log.Trace("finished handshake")
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ func (sesh *Session) OpenStream() (*Stream, error) {
|
|||
sesh.streamsM.Lock()
|
||||
sesh.streams[id] = stream
|
||||
sesh.streamsM.Unlock()
|
||||
//log.Printf("Opening stream %v\n", id)
|
||||
log.Tracef("stream %v of session %v opened", id, sesh.id)
|
||||
return stream, nil
|
||||
}
|
||||
|
||||
|
|
@ -99,6 +99,7 @@ func (sesh *Session) Accept() (net.Conn, error) {
|
|||
if stream == nil {
|
||||
return nil, ErrBrokenSession
|
||||
}
|
||||
log.Tracef("stream %v of session %v accepted", stream.id, sesh.id)
|
||||
return stream, nil
|
||||
}
|
||||
|
||||
|
|
@ -106,6 +107,7 @@ func (sesh *Session) delStream(id uint32) {
|
|||
sesh.streamsM.Lock()
|
||||
delete(sesh.streams, id)
|
||||
if len(sesh.streams) == 0 {
|
||||
log.Tracef("session %v has no active stream left", sesh.id)
|
||||
go sesh.timeoutAfter(30 * time.Second)
|
||||
}
|
||||
sesh.streamsM.Unlock()
|
||||
|
|
@ -157,6 +159,7 @@ func (sesh *Session) TerminalMsg() string {
|
|||
}
|
||||
|
||||
func (sesh *Session) Close() error {
|
||||
log.Debugf("attempting to close session %v", sesh.id)
|
||||
atomic.StoreUint32(&sesh.closed, 1)
|
||||
sesh.streamsM.Lock()
|
||||
sesh.acceptCh <- nil
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ func makeStream(sesh *Session, id uint32, assignedConnId uint32) *Stream {
|
|||
assignedConnId: assignedConnId,
|
||||
}
|
||||
|
||||
log.Tracef("stream %v opened", id)
|
||||
return stream
|
||||
}
|
||||
|
||||
|
|
@ -61,6 +60,7 @@ func (s *Stream) isClosed() bool { return atomic.LoadUint32(&s.closed) == 1 }
|
|||
func (s *Stream) writeFrame(frame *Frame) { s.sorter.writeNewFrame(frame) }
|
||||
|
||||
func (s *Stream) Read(buf []byte) (n int, err error) {
|
||||
//log.Tracef("attempting to read from stream %v", s.id)
|
||||
if len(buf) == 0 {
|
||||
if s.isClosed() {
|
||||
return 0, ErrBrokenStream
|
||||
|
|
@ -72,10 +72,14 @@ func (s *Stream) Read(buf []byte) (n int, err error) {
|
|||
if s.sortedBuf.Len() == 0 {
|
||||
return 0, ErrBrokenStream
|
||||
} else {
|
||||
return s.sortedBuf.Read(buf)
|
||||
n, err = s.sortedBuf.Read(buf)
|
||||
//log.Tracef("%v read from stream %v with err %v",n, s.id,err)
|
||||
return
|
||||
}
|
||||
} else {
|
||||
return s.sortedBuf.Read(buf)
|
||||
n, err = s.sortedBuf.Read(buf)
|
||||
//log.Tracef("%v read from stream %v with err %v",n, s.id,err)
|
||||
return
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -86,6 +90,7 @@ func (s *Stream) Write(in []byte) (n int, err error) {
|
|||
// The use of RWMutex is so that the stream will not actively close
|
||||
// in the middle of the execution of Write. This may cause the closing frame
|
||||
// to be sent before the data frame and cause loss of packet.
|
||||
//log.Tracef("attempting to write %v bytes to stream %v",len(in),s.id)
|
||||
s.writingM.RLock()
|
||||
defer s.writingM.RUnlock()
|
||||
if s.isClosed() {
|
||||
|
|
@ -104,6 +109,7 @@ func (s *Stream) Write(in []byte) (n int, err error) {
|
|||
return i, err
|
||||
}
|
||||
n, err = s.session.sb.send(s.obfsBuf[:i], &s.assignedConnId)
|
||||
//log.Tracef("%v sent to remote through stream %v with err %v",n, s.id,err)
|
||||
return
|
||||
|
||||
}
|
||||
|
|
@ -119,7 +125,7 @@ func (s *Stream) _close() {
|
|||
func (s *Stream) passiveClose() {
|
||||
s._close()
|
||||
s.session.delStream(s.id)
|
||||
log.WithField("streamId", s.id).Trace("stream passively closed")
|
||||
log.Tracef("stream %v passively closed", s.id)
|
||||
}
|
||||
|
||||
// active close. Close locally and tell the remote that this stream is being closed
|
||||
|
|
@ -153,7 +159,7 @@ func (s *Stream) Close() error {
|
|||
|
||||
s._close()
|
||||
s.session.delStream(s.id)
|
||||
log.WithField("streamId", s.id).Trace("stream actively closed")
|
||||
log.Tracef("stream %v actively closed", s.id)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
@ -162,7 +168,7 @@ func (s *Stream) Close() error {
|
|||
// We don't notify the remote because session.Close() is always
|
||||
// called when the session is passively closed
|
||||
func (s *Stream) closeNoDelMap() {
|
||||
log.WithField("streamId", s.id).Trace("stream closed by session")
|
||||
log.Tracef("stream %v closed by session", s.id)
|
||||
s._close()
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue