Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933089AbXAWU2Q (ORCPT ); Tue, 23 Jan 2007 15:28:16 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933095AbXAWU2Q (ORCPT ); Tue, 23 Jan 2007 15:28:16 -0500 Received: from 69-100-st.zelcom.ru ([80.92.100.69]:1480 "EHLO etherstorm.feelingofgreen.ru" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S933089AbXAWU2P (ORCPT ); Tue, 23 Jan 2007 15:28:15 -0500 Date: Tue, 23 Jan 2007 23:28:13 +0300 Message-ID: <877ivd8p42.wl@betelheise.deep.net> From: Samium Gromoff <_deepfire@feelingofgreen.ru> To: Alan Cc: Samium Gromoff <_deepfire@feelingofgreen.ru>, Pavel Machek , Valdis.Kletnieks@vt.edu, David Wagner , linux-kernel@vger.kernel.org Subject: [PATCH 1/2] Define the EF_AS_NO_RANDOM e_flag bit In-Reply-To: <20070123154127.57059632@localhost.localdomain> References: <87r6toufpp.wl@betelheise.deep.net> <200701221520.l0MFKLdK032645@turing-police.cc.vt.edu> <871wlnq7ue.wl@betelheise.deep.net> <20070123084805.GB5560@ucw.cz> <87mz4996wg.wl@betelheise.deep.net> <20070123154127.57059632@localhost.localdomain> User-Agent: Wanderlust/2.15.5 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/23.0.51 (i486-pc-linux-gnu) MULE/5.0 (SAKAKI) X-Face: "P-:w!.&Hdk.h~~pT`!Q%H6;/8Cce^m&%vIn"W-SXb4h88dCgwD\_}N5:\}lowY2gxg0u^wVO*L\$C@MvBDRTmh/=,468w{W{OTc$kfq5O9Y!`pd+N}SMHrN+Gs>jXe5}}EL`cRbc0^_0cZ-}M\b~55I;Qe$1uL8M`M`82<_%CQ(GwLk."M>zBLn:-u>n,$kjH`~Uo[pH`08#\G!GVMd`%7![m9]*w5PMts4@m>=;lX41Z90N MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 907 Lines: 26 Author: Samium Gromoff Date: Tue Jan 23 22:31:13 2007 +0300 Define the ELF binary header flag EF_AS_NO_RANDOM EF_AS_NO_RANDOM should mean that the binary requests to not apply randomisation to address spaces of its processes. diff --git a/include/linux/elf.h b/include/linux/elf.h index 60713e6..58ebb47 100644 --- a/include/linux/elf.h +++ b/include/linux/elf.h @@ -172,6 +172,8 @@ typedef struct elf64_sym { #define EI_NIDENT 16 +#define EF_AS_NO_RANDOM 0x1 /* do not randomise the address space */ + typedef struct elf32_hdr{ unsigned char e_ident[EI_NIDENT]; Elf32_Half e_type; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/