Bug 4792 - Global server list can contain duplicated entries
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: GIT MASTER
Hardware: All All
: P3 minor
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2010-11-05 19:10 EDT by Guillaume Bougard
Modified: 2011-02-07 04:27:03 EST
1 user (show)

See Also:


Attachments
Patch to avoid to add a server in the global servers list if it is still in the list (1.27 KB, patch)
2010-11-05 19:10 EDT, Guillaume Bougard

Description Guillaume Bougard 2010-11-05 19:10:50 EDT
Created attachment 2472 [details]
Patch to avoid to add a server in the global servers list if it is still in the list 

It's possible to request servers list many time in a short time. In that case, master server can return many packets with exactly/mostly the same server list. The code handling master server packet doesn't check if a server is still in the global server list.

To test that, if sv_master1 cvar is set to "master.quake3arena.com", just open a console. Firstly enter the command: globalservers 0 68
You obtain a few hundred servers list.
Secondly enter on the console something like this: globalservers 0 68;globalservers 0 68;globalservers 0 68;globalservers 0 68
This will request 4 times the list in a short time. You'll obtain then a global list 4 times bigger.

This bug is minor against ioQuake3 engine playing Quake3 as I can't really see a big effect (This is why a set severity to minor). Btw this is an issue on mods. In Smokin'Guns, it's easy to click quickly 2 or 3 times on a "Get New List" button and obtain duplicated servers in the list. A friend told me this is also an issue in another mod.

I know we may try better to fix the UI to avoid sending many requests to the master server but I think we should also check the global list receiving master packets as maybe servers could be found from different master server. 

The attachment is a patch to check is a server from a master server packet is still in the global servers list. In that patch, the "#ifdef 0" is just to provide a simple way to test the fix, that "#ifdef 0" part can just be removed if this patch is a good candidate for head inclusion.

Regards,
Tequila,
Smokin'Guns team.
Comment 1 Thilo Schulz 2011-02-06 12:58:40 EST
Then Smoking gun should fix that the user can click quickly on "Get a new list" several times, because in vanilla q3 you cannot. Nevertheless, your patch seems reasonable so I'll add it.
Comment 2 Ludwig Nussel 2011-02-07 04:27:03 EST
note this is O(n^2). It would be faster to use sorted server lists and merge them afterwards instead of walking the whole list over and over again.