536e63
From ad3a19e6372b1e667128ed1ea2f49919884587e1 Mon Sep 17 00:00:00 2001
536e63
From: Akira TAGOH <akira@tagoh.org>
536e63
Date: Thu, 17 Feb 2022 17:30:12 +0900
536e63
Subject: [PATCH 1/3] Fix the stack buffer overflow issue
536e63
536e63
strlen() could returns 0. Without a conditional check for len,
536e63
accessing S_ pointer with len - 1 may causes a stack buffer overflow.
536e63
536e63
AddressSanitizer reports this like:
536e63
==1219243==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7ffdce043c1f at pc 0x000000403547 bp 0x7ffdce0
536e63
43b30 sp 0x7ffdce043b28
536e63
READ of size 1 at 0x7ffdce043c1f thread T0
536e63
    #0 0x403546 in main ../bin/fribidi-main.c:393
536e63
    #1 0x7f226804e58f in __libc_start_call_main (/lib64/libc.so.6+0x2d58f)
536e63
    #2 0x7f226804e648 in __libc_start_main_impl (/lib64/libc.so.6+0x2d648)
536e63
    #3 0x4036f4 in _start (/tmp/fribidi/build/bin/fribidi+0x4036f4)
536e63
536e63
Address 0x7ffdce043c1f is located in stack of thread T0 at offset 63 in frame
536e63
    #0 0x4022bf in main ../bin/fribidi-main.c:193
536e63
536e63
  This frame has 5 object(s):
536e63
    [32, 36) 'option_index' (line 233)
536e63
    [48, 52) 'base' (line 386)
536e63
    [64, 65064) 'S_' (line 375) <== Memory access at offset 63 underflows this variable
536e63
    [65328, 130328) 'outstring' (line 385)
536e63
    [130592, 390592) 'logical' (line 384)
536e63
536e63
This fixes https://github.com/fribidi/fribidi/issues/181
536e63
---
536e63
 bin/fribidi-main.c | 2 +-
536e63
 1 file changed, 1 insertion(+), 1 deletion(-)
536e63
536e63
diff --git a/bin/fribidi-main.c b/bin/fribidi-main.c
536e63
index 3cf9fe1..3ae4fb6 100644
536e63
--- a/bin/fribidi-main.c
536e63
+++ b/bin/fribidi-main.c
536e63
@@ -390,7 +390,7 @@ FRIBIDI_END_IGNORE_DEPRECATIONS
536e63
 	    S_[sizeof (S_) - 1] = 0;
536e63
 	    len = strlen (S_);
536e63
 	    /* chop */
536e63
-	    if (S_[len - 1] == '\n')
536e63
+	    if (len > 0 && S_[len - 1] == '\n')
536e63
 	      {
536e63
 		len--;
536e63
 		S_[len] = '\0';
536e63
-- 
536e63
2.35.1
536e63