From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 83333 invoked by alias); 28 Nov 2017 08:58:31 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 81958 invoked by uid 89); 28 Nov 2017 08:58:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.7 required=5.0 tests=BAYES_00,GIT_PATCH_3,KB_WAM_FROM_NAME_SINGLEWORD,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 28 Nov 2017 08:58:08 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0857E81DE1 for ; Tue, 28 Nov 2017 08:58:07 +0000 (UTC) Received: from localhost.localdomain (ovpn-120-142.rdu2.redhat.com [10.10.120.142]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8436E5D753 for ; Tue, 28 Nov 2017 08:58:06 +0000 (UTC) From: Yaakov Selkowitz To: newlib@sourceware.org Subject: [PATCH v3 0/9] Add Stack Smashing Protection and Object Size Checking Date: Tue, 28 Nov 2017 08:58:00 -0000 Message-Id: <20171128085755.5928-1-yselkowi@redhat.com> X-SW-Source: 2017/txt/msg01139.txt.bz2 This has also been pushed to the topic/ssp branch. Yaakov Selkowitz (9): ssp: add APIs for Stack Smashing Protection ssp: add Object Size Checking common code ssp: add Object Size Checking for string.h functions ssp: add Object Size Checking for strings.h functions ssp: add Object Size Checking for stdio.h functions, part 1 ssp: add Object Size Checking for unistd.h functions, part 1 ssp: add build infrastructure cygwin: export SSP functions cygwin: create libssp compatibility import library newlib/Makefile.am | 4 + newlib/Makefile.in | 4 + newlib/libc/Makefile.am | 4 +- newlib/libc/Makefile.in | 15 +- newlib/libc/configure | 3 +- newlib/libc/configure.in | 2 +- newlib/libc/include/ssp/ssp.h | 72 ++++ newlib/libc/include/ssp/stdio.h | 83 ++++ newlib/libc/include/ssp/string.h | 114 ++++++ newlib/libc/include/ssp/strings.h | 55 +++ newlib/libc/include/ssp/unistd.h | 53 +++ newlib/libc/include/stdio.h | 6 + newlib/libc/include/string.h | 4 + newlib/libc/include/strings.h | 6 +- newlib/libc/include/sys/features.h | 18 +- newlib/libc/include/sys/unistd.h | 11 + newlib/libc/ssp/Makefile.am | 71 ++++ newlib/libc/ssp/Makefile.in | 714 +++++++++++++++++++++++++++++++++ newlib/libc/ssp/chk_fail.c | 13 + newlib/libc/ssp/fgets_chk.c | 55 +++ newlib/libc/ssp/gets_chk.c | 78 ++++ newlib/libc/ssp/memcpy_chk.c | 54 +++ newlib/libc/ssp/memmove_chk.c | 50 +++ newlib/libc/ssp/mempcpy_chk.c | 21 + newlib/libc/ssp/memset_chk.c | 49 +++ newlib/libc/ssp/snprintf_chk.c | 59 +++ newlib/libc/ssp/sprintf_chk.c | 63 +++ newlib/libc/ssp/stack_protector.c | 45 +++ newlib/libc/ssp/stpcpy_chk.c | 58 +++ newlib/libc/ssp/stpncpy_chk.c | 56 +++ newlib/libc/ssp/strcat_chk.c | 62 +++ newlib/libc/ssp/strcpy_chk.c | 55 +++ newlib/libc/ssp/strncat_chk.c | 73 ++++ newlib/libc/ssp/strncpy_chk.c | 55 +++ newlib/libc/ssp/vsnprintf_chk.c | 51 +++ newlib/libc/ssp/vsprintf_chk.c | 60 +++ winsup/cygwin/Makefile.in | 5 +- winsup/cygwin/common.din | 20 + winsup/cygwin/include/cygwin/version.h | 7 +- 39 files changed, 2215 insertions(+), 13 deletions(-) create mode 100644 newlib/libc/include/ssp/ssp.h create mode 100644 newlib/libc/include/ssp/stdio.h create mode 100644 newlib/libc/include/ssp/string.h create mode 100644 newlib/libc/include/ssp/strings.h create mode 100644 newlib/libc/include/ssp/unistd.h create mode 100644 newlib/libc/ssp/Makefile.am create mode 100644 newlib/libc/ssp/Makefile.in create mode 100644 newlib/libc/ssp/chk_fail.c create mode 100644 newlib/libc/ssp/fgets_chk.c create mode 100644 newlib/libc/ssp/gets_chk.c create mode 100644 newlib/libc/ssp/memcpy_chk.c create mode 100644 newlib/libc/ssp/memmove_chk.c create mode 100644 newlib/libc/ssp/mempcpy_chk.c create mode 100644 newlib/libc/ssp/memset_chk.c create mode 100644 newlib/libc/ssp/snprintf_chk.c create mode 100644 newlib/libc/ssp/sprintf_chk.c create mode 100644 newlib/libc/ssp/stack_protector.c create mode 100644 newlib/libc/ssp/stpcpy_chk.c create mode 100644 newlib/libc/ssp/stpncpy_chk.c create mode 100644 newlib/libc/ssp/strcat_chk.c create mode 100644 newlib/libc/ssp/strcpy_chk.c create mode 100644 newlib/libc/ssp/strncat_chk.c create mode 100644 newlib/libc/ssp/strncpy_chk.c create mode 100644 newlib/libc/ssp/vsnprintf_chk.c create mode 100644 newlib/libc/ssp/vsprintf_chk.c -- 2.15.0