loladiro created this revision.
loladiro added a reviewer: bkramer.
loladiro added a subscriber: cfe-commits.
loladiro set the repository for this revision to rL LLVM.

I feed custom buffers to clang, and since the buffers store an explicit length, 
I did not think to null-terminate them.
However, this causes clang to run out-of-bounds in certain situations in 
`ComputeLineNumbers`. Since under certain
situations `ComputeLineNumbers` does look at the given bounds, I figured the 
proper solution was to always check the
buffer for EOF. Please let me know if I missed something and this was intended.

Repository:
  rL LLVM

http://reviews.llvm.org/D12854

Files:
  lib/Basic/SourceManager.cpp

Index: lib/Basic/SourceManager.cpp
===================================================================
--- lib/Basic/SourceManager.cpp
+++ lib/Basic/SourceManager.cpp
@@ -1227,7 +1227,7 @@
 
     // First fix up the alignment to 16 bytes.
     while (((uintptr_t)NextBuf & 0xF) != 0) {
-      if (*NextBuf == '\n' || *NextBuf == '\r' || *NextBuf == '\0')
+      if (*NextBuf == '\n' || *NextBuf == '\r' || *NextBuf == '\0' || NextBuf 
== End)
         goto FoundSpecialChar;
       ++NextBuf;
     }
@@ -1248,24 +1248,25 @@
     }
 #endif
 
-    while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
+    while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0' && NextBuf 
== End)
       ++NextBuf;
 
 #ifdef __SSE2__
 FoundSpecialChar:
 #endif
     Offs += NextBuf-Buf;
     Buf = NextBuf;
 
+    // If end of file, exit.
+    if (Buf == End) break;
+
     if (Buf[0] == '\n' || Buf[0] == '\r') {
       // If this is \n\r or \r\n, skip both characters.
       if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
         ++Offs, ++Buf;
       ++Offs, ++Buf;
       LineOffsets.push_back(Offs);
     } else {
-      // Otherwise, this is a null.  If end of file, exit.
-      if (Buf == End) break;
       // Otherwise, skip the null.
       ++Offs, ++Buf;
     }


Index: lib/Basic/SourceManager.cpp
===================================================================
--- lib/Basic/SourceManager.cpp
+++ lib/Basic/SourceManager.cpp
@@ -1227,7 +1227,7 @@
 
     // First fix up the alignment to 16 bytes.
     while (((uintptr_t)NextBuf & 0xF) != 0) {
-      if (*NextBuf == '\n' || *NextBuf == '\r' || *NextBuf == '\0')
+      if (*NextBuf == '\n' || *NextBuf == '\r' || *NextBuf == '\0' || NextBuf == End)
         goto FoundSpecialChar;
       ++NextBuf;
     }
@@ -1248,24 +1248,25 @@
     }
 #endif
 
-    while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
+    while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0' && NextBuf == End)
       ++NextBuf;
 
 #ifdef __SSE2__
 FoundSpecialChar:
 #endif
     Offs += NextBuf-Buf;
     Buf = NextBuf;
 
+    // If end of file, exit.
+    if (Buf == End) break;
+
     if (Buf[0] == '\n' || Buf[0] == '\r') {
       // If this is \n\r or \r\n, skip both characters.
       if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
         ++Offs, ++Buf;
       ++Offs, ++Buf;
       LineOffsets.push_back(Offs);
     } else {
-      // Otherwise, this is a null.  If end of file, exit.
-      if (Buf == End) break;
       // Otherwise, skip the null.
       ++Offs, ++Buf;
     }
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to