<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Sep 6, 2015, at 6:38 PM, George Burgess IV <<a href="mailto:george.burgess.iv@gmail.com" class="">george.burgess.iv@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class="">Thanks for catching this!</div><div class=""><br class=""></div>I'm not familiar with at all with test-suite, so someone else may be better suited to review your patch. That being said:<div class=""><br class=""></div><div class="">id3tag.c -- LGTM</div><div class=""><br class=""></div><div class="">externs.c -- Did some investigating. This code is rather different than what I'm used to. :)</div></div></div></blockquote><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">From the compiler's perspective: string(OBJECT) returns a pointer to a 4-char array inside of OBJECT. We try to copy a 119-byte string (file path) into this. memcpy() works here because Apple uses __builtin_object_size(p, 0) for memcpy, and __builtin_object_size(p, 1) (sometimes 0) for strcpy; the former has no clue what size OBJECT is, so it fails, while the latter says "hey, this field is clearly 4 bytes," causing FORTIFY to kill the program when we try to copy more than that. (relevant header: <a href="http://opensource.apple.com/source/Libc/Libc-1044.10.1/include/secure/_string.h" class="">http://opensource.apple.com/source/Libc/Libc-1044.10.1/include/secure/_string.h</a> )</div><div class=""><br class=""></div><div class="">From the program's perspective at runtime, OBJECT points to a non-constant sized malloc. NewWord guarantees that *OBJECT has sufficient space to store the entire string. The types lie.</div><div class=""><br class=""></div><div class="">In light of this, if we could add a comment to the new StringCopy definition that reads something like: "Types lie at some points in this program, and FORTIFY implementations rely on types. Using memcpy instead of strcpy here makes some FORTIFY impls permissive enough that they won't crash us when we're doing tricky (but still correct) things," that may be best. :)</div></div></div></blockquote><div><br class=""></div>I guess there is no good way to lie to the type system that you can legally copy the string into 4 char array?<br class=""><div>How about we just #define StringCopy to __builtin___strcpy_chk with  __builtin_object_size(p, 0)? It might break -fno-builtin build though.</div><div><br class=""></div><div>Steven</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Sep 4, 2015 at 11:25 PM, Steven Wu <span dir="ltr" class=""><<a href="mailto:stevenwu@apple.com" target="_blank" class="">stevenwu@apple.com</a>></span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">r246877 exposes some undefined behavior in LNT that cause the test to crash. Both consumer-lame and consumer-typeset has strcpy that overflow the buffer, one intentionally one maybe by accident. Here is my proposed way to fix the tests.<br class="">
<br class="">
Thanks<br class="">
<span class="HOEnZb"><font color="#888888" class=""><br class="">
Steven<br class="">
<br class="">
</font></span><br class=""><br class="">
<br class="">
From 7151bf31954c9d0680e4bb592dbc130d0234650b Mon Sep 17 00:00:00 2001<br class="">
From: Steven Wu <<a href="mailto:stevenwu@apple.com" class="">stevenwu@apple.com</a>><br class="">
Date: Fri, 4 Sep 2015 23:15:21 -0700<br class="">
Subject: [PATCH] Fix the undefined behavior in MiBench<br class="">
<br class="">
The undefined behavior is causing runtime failure after r246877.<br class="">
Fix consumer-lane by replacing strcpy with direct assignment to avoid<br class="">
buffer overflow. consumer-typeset is intentionally overflowing buffer so<br class="">
use memcpy instead of strcpy.<br class="">
---<br class="">
 MultiSource/Benchmarks/MiBench/consumer-lame/id3tag.c     | 2 +-<br class="">
 MultiSource/Benchmarks/MiBench/consumer-typeset/externs.h | 3 ++-<br class="">
 2 files changed, 3 insertions(+), 2 deletions(-)<br class="">
<br class="">
diff --git a/MultiSource/Benchmarks/MiBench/consumer-lame/id3tag.c b/MultiSource/Benchmarks/MiBench/consumer-lame/id3tag.c<br class="">
index e24a966..23f2b86 100644<br class="">
--- a/MultiSource/Benchmarks/MiBench/consumer-lame/id3tag.c<br class="">
+++ b/MultiSource/Benchmarks/MiBench/consumer-lame/id3tag.c<br class="">
@@ -34,7 +34,7 @@ void id3_inittag(ID3TAGDATA *tag) {<br class="">
        strcpy( tag->album, "");<br class="">
        strcpy( tag->year, "");<br class="">
        strcpy( tag->comment, "");<br class="">
-       strcpy( tag->genre, "ˇ");       /* unset genre */<br class="">
+       tag->genre[0] = 'ˇ';    /* unset genre */<br class="">
        tag->track = 0;<br class="">
<br class="">
        tag->valid = 0;         /* not ready for writing*/<br class="">
diff --git a/MultiSource/Benchmarks/MiBench/consumer-typeset/externs.h b/MultiSource/Benchmarks/MiBench/consumer-typeset/externs.h<br class="">
index 7e050bd..a14e8ee 100644<br class="">
--- a/MultiSource/Benchmarks/MiBench/consumer-typeset/externs.h<br class="">
+++ b/MultiSource/Benchmarks/MiBench/consumer-typeset/externs.h<br class="">
@@ -3266,7 +3266,8 @@ extern int          strcollcmp(char *a, char *b);<br class="">
                    ( UseCollate ? strcollcmp((char *)(a),(char *)(b)) <= 0 \<br class="">
                                 : strcmp((char *)(a),(char *)(b)) <= 0 )<br class="">
 #define                  StringCat(a, b)       strcat((char *)(a),(char *)(b))<br class="">
-#define                  StringCopy(a, b)      strcpy((char *)(a),(char *)(b))<br class="">
+#define                  StringCopy(a, b)      (char*)memcpy((void *)(a),(void *)(b), \<br class="">
+                                             strlen((char*)(b)) + 1)<br class="">
 #define                  StringLength(a)       strlen((char *)(a))<br class="">
 #define                  StringFOpen(a, b)     fopen( (char *) (a), (b) )<br class="">
 #define                  StringFPuts(a, b)     fputs( (char *) (a), (b) )<br class="">
--<br class="">
2.3.8 (Apple Git-58)<br class="">
<br class="">
<br class="">
<br class="">
<br class=""></blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></body></html>