Coder Social home page Coder Social logo

Comments (3)

dilshansdoq avatar dilshansdoq commented on June 4, 2024

In server side logs, see this log.
topic.remSession not found at all usrtq6SdhZjOJQ tq6SdhZjOJQ E3u63uhk68M iul__liJc-4DD topic.handleLeaveRequest nil pssd &{Id:a897060c-45ed-4af1-987a-b7a90f80ae90 Topic:me Unsub:false}

Here is the piece of code from where this log came.

func (t *Topic) remSession(sess *Session, asUid types.Uid) (*perSessionData, bool) {
	s := sess
	if sess.multi != nil {
		s = s.multi
	}
	pssd, ok := t.sessions[s]
	if !ok {
		fmt.Printf("topic.remSession not found at all %s %s %s %s", t.name, asUid, s.sid, s.uid)
		// Session not found at all.
		return nil, false
	}

	if pssd.uid == asUid || asUid.IsZero() {
		delete(t.sessions, s)
		return &pssd, true
	}

	for i := range pssd.muids {
		if pssd.muids[i] == asUid {
			pssd.muids[i] = pssd.muids[len(pssd.muids)-1]
			pssd.muids = pssd.muids[:len(pssd.muids)-1]
			t.sessions[s] = pssd
			if len(pssd.muids) == 0 {
				delete(t.sessions, s)
				return &pssd, true
			}

			return &pssd, false
		}
	}

	return nil, false
}

So somehow this leave request was able to bypass earlier checks set on if session was found or not.

A simple fix would be to just sent NotJoined error if session not found.

// handleLeaveRequest processes a session leave request.
func (t *Topic) handleLeaveRequest(msg *ClientComMessage, sess *Session) {
	-------

	if t.isInactive() {
	}

	// User wants to leave and unsubscribe.
	if msg.init && msg.Leave.Unsub {
	}

	// User wants to leave without unsubscribing.
	if pssd, _ := t.remSession(sess, asUid); pssd != nil {
		-----------
	} else {
		fmt.Printf("DD topic.handleLeaveRequest nil pssd %+v\n", msg.Leave)
		sess.queueOut(InfoNotJoined(msg.Id, msg.Original, msg.Timestamp))
	}
}

If this looks good, let me know.

from chat.

or-else avatar or-else commented on June 4, 2024

Can you reproduce the problem with the latest Tinode server? I think something like this was fixed recently.

from chat.

dilshansdoq avatar dilshansdoq commented on June 4, 2024

Yes, it has been fixed. 2f632ec
Thanks.

from chat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.