diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-24 21:09:38 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-24 21:09:38 +0300 |
commit | 652e8459001e052edd6eeef0b919d4d68c8daa58 (patch) | |
tree | 5bcc4e1360448fa73c89db025d333f9870151ed4 | |
parent | 94ebf52edd6d1a610bf4cbfcc304dda21d544951 (diff) |
SL-13986 Validate uuid
-rw-r--r-- | indra/llinventory/lllandmark.cpp | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/indra/llinventory/lllandmark.cpp b/indra/llinventory/lllandmark.cpp index 789716b449..bd7ab3c2c8 100644 --- a/indra/llinventory/lllandmark.cpp +++ b/indra/llinventory/lllandmark.cpp @@ -115,17 +115,11 @@ LLLandmark* LLLandmark::constructFromString(const char *buffer, const S32 buffer // read version count = sscanf( buffer, "Landmark version %u\n%n", &version, &chars_read ); - - if (count != 1) - { - bad_block = true; - } - chars_read_total += chars_read; - if (chars_read_total >= buffer_size) + if (count != 1 + || chars_read_total >= buffer_size) { - // either file was truncated or data in file was damaged bad_block = true; } @@ -155,19 +149,29 @@ LLLandmark* LLLandmark::constructFromString(const char *buffer, const S32 buffer // scanf call below. char region_id_str[MAX_STRING]; LLVector3 pos; + LLUUID region_id; count = sscanf( buffer + chars_read_total, "region_id %254s\n%n", region_id_str, &chars_read); - if (count != 1) + chars_read_total += chars_read; + + if (count != 1 + || chars_read_total >= buffer_size + || !LLUUID::validate(region_id_str)) { bad_block = true; } - chars_read_total += chars_read; - if (chars_read_total >= buffer_size) + + if (!bad_block) { - bad_block = true; + region_id.set(region_id_str); + if (region_id.isNull()) + { + bad_block = true; + } } + if (!bad_block) { count = sscanf(buffer + chars_read_total, "local_pos %f %f %f\n%n", pos.mV + VX, pos.mV + VY, pos.mV + VZ, &chars_read); @@ -178,7 +182,7 @@ LLLandmark* LLLandmark::constructFromString(const char *buffer, const S32 buffer else { result = new LLLandmark; - result->mRegionID.set(region_id_str); + result->mRegionID = region_id; result->mRegionPos = pos; } } |