From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RGITM-0003dE-2v for garchives@archives.gentoo.org; Tue, 18 Oct 2011 22:49:24 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7FC821C085; Tue, 18 Oct 2011 22:48:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 784E221C085 for ; Tue, 18 Oct 2011 22:48:41 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77E581B4030 for ; Tue, 18 Oct 2011 22:48:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 63C2080042 for ; Tue, 18 Oct 2011 22:48:39 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: Subject: [gentoo-commits] proj/elfix:master commit in: src/ X-VCS-Repository: proj/elfix X-VCS-Files: src/paxctl-ng.c X-VCS-Directories: src/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: e51a1cb0fe4635751e74683f43b0093049700b97 Date: Tue, 18 Oct 2011 22:48:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 1ea50de26da12bbc747bff909af445de commit: e51a1cb0fe4635751e74683f43b0093049700b97 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Oct 18 22:48:33 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Oct 18 22:48:33 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3De51a1cb0 src/paxctl-ng.c: add XT_PAX flag support --- src/paxctl-ng.c | 375 ++++++++++++++++++++++++++++++++++++-------------= ------ 1 files changed, 246 insertions(+), 129 deletions(-) diff --git a/src/paxctl-ng.c b/src/paxctl-ng.c index 9114d4e..f5d9048 100644 --- a/src/paxctl-ng.c +++ b/src/paxctl-ng.c @@ -24,6 +24,7 @@ #include =20 #include +#include =20 #include #include @@ -32,6 +33,10 @@ =20 #include =20 + +#define PAX_NAMESPACE "trusted.pax" +#define BUF_SIZE 7 + void print_help(char *v) { @@ -61,7 +66,7 @@ print_help(char *v) =20 =20 char * -parse_cmd_args(int c, char *v[], int *pax_flags, int *view_flags) +parse_cmd_args(int c, char *v[], uint16_t *pax_flags, int *view_flags) { int i, oc; int compat; @@ -151,174 +156,285 @@ parse_cmd_args(int c, char *v[], int *pax_flags, = int *view_flags) } =20 =20 -#define BUF_SIZE 7 - -void -print_flags(Elf *elf) +uint16_t +read_pt_flags(Elf *elf) { GElf_Phdr phdr; - char pt_buf[BUF_SIZE]; - char found_pt_pax; size_t i, phnum; =20 - memset(pt_buf, 0, BUF_SIZE); + uint16_t pt_flags; + char found_pt_pax; =20 found_pt_pax =3D 0; elf_getphdrnum(elf, &phnum); - for(i=3D0; i