[opensource-dev] Review Request: Changes to fix CHOP-662.

Squire Linden squire at lindenlab.com
Mon Jun 20 20:21:20 PDT 2011


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://codereview.secondlife.com/r/357/
-----------------------------------------------------------

Review request for Viewer, Oz Linden, Seth ProductEngine, and Alain Linden.


Summary
-------

Changes to fix CHOP-662. CHOP-662 was caused by the recent addition of lldiriterator.cpp which is used to iterate over directories. It takes a mask in the form of a glob string to use as a pattern for which files to iterate over.

Unfortunately, as originally implemented, it converted the glob to a regex pattern without escaping any legal glob characters which are illegal regex characters. As a result if the passed in mask was an illegal regex it would fail and llerrs would cause a crash.

In CHOP-662 this happens whenever a group name has, e.g. a '+' character at the beginning. When logging in the viewer would attempt to load the group chat log file which would result in a glob starting with a '+' character and in turn to an illegal regex in lldiriterator.

Also, the chat code was doing nothing to ensure that illegal glob characters were not being passed to the lldiriterator constructor.


This addresses bug CHOP-662.
    http://jira.secondlife.com/browse/CHOP-662


Diffs
-----

  doc/contributions.txt e8f2a53c3d6e 
  indra/llvfs/CMakeLists.txt e8f2a53c3d6e 
  indra/llvfs/lldiriterator.cpp e8f2a53c3d6e 
  indra/llvfs/tests/lldiriterator_test.cpp PRE-CREATION 
  indra/newview/lllogchat.cpp e8f2a53c3d6e 

Diff: http://codereview.secondlife.com/r/357/diff


Testing
-------

Added a unit test for lldiriterator which checks for construction failures on examples of the most common group names which were causing the crashes.


Thanks,

Squire

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20110621/578005de/attachment-0001.htm 


More information about the opensource-dev mailing list