This is another function that does a linear search when a hashtable lookup would be more appropriate.
We'll need to be a little careful, since there's nothing preventing collisions here: An intro circuit and a rendezvous circuit can have the same "token" pretty easily.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
There's an untested branch "bug9841_024" in my public repository that uses a digestmap of linked lists to organize circuits. It needs testing and documentation, however.
Also, I'm not convinced that the approach is a very good one. We could instead just do two digestmaps: one for intro circuits and one for rendezvous circuits. We'd need to forbid there to be two simultaneous open circuits with the same intropoint pk digest, or two simultaneous open circuits with the same rendezvous cookie, but that's probably a fine thing to forbid.
Trac: Keywords: tor-relay tor-hs deleted, tor-relay tor-hs easy added Status: new to needs_revision
Looks like I did this once before, in a branch called "rend_token_map". So probably both are worth reviewing to see which is more advanced. That one needed tests; it was for #7764 (moved), which I'll close as a dup.
Okay, I revised it. The branches to consider are "bug9841_024_v2" and "bug9841_025". The latter contains the former merged to 0.2.5, plus a unit test.
I changed it to stop using a linked list, and instead use two maps as discussed above. We should merge this into 0.2.5 at least; I'm ambivalent about an 0.2.4 backport.
okay, I think we shook all the bugs out. Merging to master.
I did the original branch here against 0.2.4, but now I am not so sure that a backport is appropriate. Nonetheless, putting it in the 0.2.4 milestone for consideration.