Home | History | Annotate | Line # | Download | only in kern
kern_pax.c revision 1.50
      1  1.50    martin /*	$NetBSD: kern_pax.c,v 1.50 2016/05/24 17:30:01 martin Exp $	*/
      2   1.1      elad 
      3  1.29      maxv /*
      4  1.29      maxv  * Copyright (c) 2015 The NetBSD Foundation, Inc.
      5  1.29      maxv  * All rights reserved.
      6  1.29      maxv  *
      7  1.29      maxv  * This code is derived from software contributed to The NetBSD Foundation
      8  1.29      maxv  * by Maxime Villard.
      9  1.29      maxv  *
     10  1.29      maxv  * Redistribution and use in source and binary forms, with or without
     11  1.29      maxv  * modification, are permitted provided that the following conditions
     12  1.29      maxv  * are met:
     13  1.29      maxv  * 1. Redistributions of source code must retain the above copyright
     14  1.29      maxv  *    notice, this list of conditions and the following disclaimer.
     15  1.29      maxv  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.29      maxv  *    notice, this list of conditions and the following disclaimer in the
     17  1.29      maxv  *    documentation and/or other materials provided with the distribution.
     18  1.29      maxv  *
     19  1.29      maxv  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.29      maxv  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.29      maxv  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.29      maxv  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.29      maxv  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.29      maxv  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.29      maxv  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.29      maxv  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.29      maxv  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.29      maxv  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.29      maxv  * POSSIBILITY OF SUCH DAMAGE.
     30  1.29      maxv  */
     31  1.29      maxv 
     32  1.29      maxv /*
     33   1.1      elad  * Copyright (c) 2006 Elad Efrat <elad (at) NetBSD.org>
     34   1.1      elad  * All rights reserved.
     35   1.1      elad  *
     36   1.1      elad  * Redistribution and use in source and binary forms, with or without
     37   1.1      elad  * modification, are permitted provided that the following conditions
     38   1.1      elad  * are met:
     39   1.1      elad  * 1. Redistributions of source code must retain the above copyright
     40   1.1      elad  *    notice, this list of conditions and the following disclaimer.
     41   1.1      elad  * 2. Redistributions in binary form must reproduce the above copyright
     42   1.1      elad  *    notice, this list of conditions and the following disclaimer in the
     43   1.1      elad  *    documentation and/or other materials provided with the distribution.
     44  1.12      elad  * 3. The name of the author may not be used to endorse or promote products
     45   1.1      elad  *    derived from this software without specific prior written permission.
     46   1.1      elad  *
     47   1.1      elad  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     48   1.1      elad  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     49   1.1      elad  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     50   1.1      elad  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     51   1.1      elad  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     52   1.1      elad  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     53   1.1      elad  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     54   1.1      elad  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     55   1.1      elad  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     56   1.1      elad  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     57   1.1      elad  */
     58   1.1      elad 
     59  1.17       dsl #include <sys/cdefs.h>
     60  1.50    martin __KERNEL_RCSID(0, "$NetBSD: kern_pax.c,v 1.50 2016/05/24 17:30:01 martin Exp $");
     61  1.17       dsl 
     62   1.1      elad #include "opt_pax.h"
     63   1.1      elad 
     64   1.1      elad #include <sys/param.h>
     65   1.1      elad #include <sys/proc.h>
     66  1.33  christos #include <sys/exec.h>
     67   1.1      elad #include <sys/exec_elf.h>
     68   1.1      elad #include <sys/pax.h>
     69   1.1      elad #include <sys/sysctl.h>
     70  1.25     rmind #include <sys/kmem.h>
     71  1.34  christos #include <sys/mman.h>
     72   1.8      elad #include <sys/fileassoc.h>
     73   1.8      elad #include <sys/syslog.h>
     74   1.8      elad #include <sys/vnode.h>
     75   1.8      elad #include <sys/queue.h>
     76  1.42  christos #include <sys/bitops.h>
     77   1.8      elad #include <sys/kauth.h>
     78  1.26       tls #include <sys/cprng.h>
     79   1.1      elad 
     80  1.29      maxv #ifdef PAX_ASLR_DEBUG
     81  1.34  christos #define PAX_DPRINTF(_fmt, args...) \
     82  1.34  christos 	do if (pax_aslr_debug) uprintf("%s: " _fmt "\n", __func__, ##args); \
     83  1.34  christos 	while (/*CONSTCOND*/0)
     84  1.29      maxv #else
     85  1.29      maxv #define PAX_DPRINTF(_fmt, args...)	do {} while (/*CONSTCOND*/0)
     86  1.29      maxv #endif
     87  1.29      maxv 
     88  1.18  christos #ifdef PAX_ASLR
     89  1.18  christos #include <sys/mman.h>
     90  1.18  christos 
     91  1.18  christos int pax_aslr_enabled = 1;
     92  1.18  christos int pax_aslr_global = PAX_ASLR;
     93  1.18  christos 
     94  1.18  christos #ifndef PAX_ASLR_DELTA_MMAP_LSB
     95  1.18  christos #define PAX_ASLR_DELTA_MMAP_LSB		PGSHIFT
     96  1.18  christos #endif
     97  1.18  christos #ifndef PAX_ASLR_DELTA_MMAP_LEN
     98  1.18  christos #define PAX_ASLR_DELTA_MMAP_LEN		((sizeof(void *) * NBBY) / 2)
     99  1.18  christos #endif
    100  1.36  christos #ifndef PAX_ASLR_DELTA_MMAP_LEN32
    101  1.36  christos #define PAX_ASLR_DELTA_MMAP_LEN32	((sizeof(uint32_t) * NBBY) / 2)
    102  1.36  christos #endif
    103  1.18  christos #ifndef PAX_ASLR_DELTA_STACK_LSB
    104  1.18  christos #define PAX_ASLR_DELTA_STACK_LSB	PGSHIFT
    105  1.18  christos #endif
    106  1.18  christos #ifndef PAX_ASLR_DELTA_STACK_LEN
    107  1.44  christos #define PAX_ASLR_DELTA_STACK_LEN 	((sizeof(void *) * NBBY) / 4)
    108  1.40  christos #endif
    109  1.40  christos #ifndef PAX_ASLR_DELTA_STACK_LEN32
    110  1.44  christos #define PAX_ASLR_DELTA_STACK_LEN32 	((sizeof(uint32_t) * NBBY) / 4)
    111  1.18  christos #endif
    112  1.44  christos #define PAX_ASLR_MAX_STACK_WASTE	8
    113  1.18  christos 
    114  1.29      maxv static bool pax_aslr_elf_flags_active(uint32_t);
    115  1.18  christos #endif /* PAX_ASLR */
    116  1.18  christos 
    117   1.7      elad #ifdef PAX_MPROTECT
    118   1.6      yamt static int pax_mprotect_enabled = 1;
    119   1.6      yamt static int pax_mprotect_global = PAX_MPROTECT;
    120  1.29      maxv static bool pax_mprotect_elf_flags_active(uint32_t);
    121  1.18  christos #endif /* PAX_MPROTECT */
    122  1.38  christos #ifdef PAX_MPROTECT_DEBUG
    123  1.38  christos int pax_mprotect_debug;
    124  1.38  christos #endif
    125   1.8      elad 
    126   1.8      elad #ifdef PAX_SEGVGUARD
    127   1.8      elad #ifndef PAX_SEGVGUARD_EXPIRY
    128   1.8      elad #define	PAX_SEGVGUARD_EXPIRY		(2 * 60)
    129   1.8      elad #endif
    130   1.8      elad #ifndef PAX_SEGVGUARD_SUSPENSION
    131   1.8      elad #define	PAX_SEGVGUARD_SUSPENSION	(10 * 60)
    132   1.8      elad #endif
    133   1.8      elad #ifndef	PAX_SEGVGUARD_MAXCRASHES
    134   1.8      elad #define	PAX_SEGVGUARD_MAXCRASHES	5
    135   1.8      elad #endif
    136   1.8      elad 
    137  1.34  christos #ifdef PAX_ASLR_DEBUG
    138  1.34  christos int pax_aslr_debug;
    139  1.39  christos /* flag set means disable */
    140  1.39  christos int pax_aslr_flags;
    141  1.42  christos uint32_t pax_aslr_rand;
    142  1.42  christos #define PAX_ASLR_STACK		0x01
    143  1.42  christos #define PAX_ASLR_STACK_GAP	0x02
    144  1.42  christos #define PAX_ASLR_MMAP		0x04
    145  1.42  christos #define PAX_ASLR_EXEC_OFFSET	0x08
    146  1.42  christos #define PAX_ASLR_FIXED		0x10
    147  1.34  christos #endif
    148  1.34  christos 
    149   1.8      elad static int pax_segvguard_enabled = 1;
    150   1.8      elad static int pax_segvguard_global = PAX_SEGVGUARD;
    151   1.8      elad static int pax_segvguard_expiry = PAX_SEGVGUARD_EXPIRY;
    152   1.8      elad static int pax_segvguard_suspension = PAX_SEGVGUARD_SUSPENSION;
    153   1.8      elad static int pax_segvguard_maxcrashes = PAX_SEGVGUARD_MAXCRASHES;
    154   1.8      elad 
    155   1.8      elad static fileassoc_t segvguard_id;
    156   1.8      elad 
    157   1.8      elad struct pax_segvguard_uid_entry {
    158   1.8      elad 	uid_t sue_uid;
    159   1.8      elad 	size_t sue_ncrashes;
    160   1.8      elad 	time_t sue_expiry;
    161   1.8      elad 	time_t sue_suspended;
    162   1.8      elad 	LIST_ENTRY(pax_segvguard_uid_entry) sue_list;
    163   1.8      elad };
    164   1.8      elad 
    165   1.8      elad struct pax_segvguard_entry {
    166   1.8      elad 	LIST_HEAD(, pax_segvguard_uid_entry) segv_uids;
    167   1.8      elad };
    168  1.10      yamt 
    169  1.29      maxv static bool pax_segvguard_elf_flags_active(uint32_t);
    170  1.31      maxv static void pax_segvguard_cleanup_cb(void *);
    171   1.8      elad #endif /* PAX_SEGVGUARD */
    172   1.7      elad 
    173   1.1      elad SYSCTL_SETUP(sysctl_security_pax_setup, "sysctl security.pax setup")
    174   1.1      elad {
    175   1.8      elad 	const struct sysctlnode *rnode = NULL, *cnode;
    176   1.1      elad 
    177  1.27     pooka 	sysctl_createv(clog, 0, NULL, &rnode,
    178   1.1      elad 		       CTLFLAG_PERMANENT,
    179   1.1      elad 		       CTLTYPE_NODE, "pax",
    180   1.1      elad 		       SYSCTL_DESCR("PaX (exploit mitigation) features."),
    181   1.1      elad 		       NULL, 0, NULL, 0,
    182  1.27     pooka 		       CTL_SECURITY, CTL_CREATE, CTL_EOL);
    183   1.1      elad 
    184  1.19      elad 	cnode = rnode;
    185  1.19      elad 
    186  1.18  christos #ifdef PAX_MPROTECT
    187  1.19      elad 	rnode = cnode;
    188   1.1      elad 	sysctl_createv(clog, 0, &rnode, &rnode,
    189   1.1      elad 		       CTLFLAG_PERMANENT,
    190   1.1      elad 		       CTLTYPE_NODE, "mprotect",
    191   1.1      elad 		       SYSCTL_DESCR("mprotect(2) W^X restrictions."),
    192   1.1      elad 		       NULL, 0, NULL, 0,
    193   1.1      elad 		       CTL_CREATE, CTL_EOL);
    194   1.1      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    195   1.2      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    196   1.1      elad 		       CTLTYPE_INT, "enabled",
    197   1.1      elad 		       SYSCTL_DESCR("Restrictions enabled."),
    198   1.2      elad 		       NULL, 0, &pax_mprotect_enabled, 0,
    199   1.1      elad 		       CTL_CREATE, CTL_EOL);
    200   1.1      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    201   1.2      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    202   1.4      elad 		       CTLTYPE_INT, "global",
    203   1.1      elad 		       SYSCTL_DESCR("When enabled, unless explicitly "
    204   1.5    cbiere 				    "specified, apply restrictions to "
    205   1.1      elad 				    "all processes."),
    206   1.2      elad 		       NULL, 0, &pax_mprotect_global, 0,
    207   1.1      elad 		       CTL_CREATE, CTL_EOL);
    208  1.38  christos #ifdef PAX_MPROTECT_DEBUG
    209  1.38  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    210  1.38  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    211  1.38  christos 		       CTLTYPE_INT, "debug",
    212  1.38  christos 		       SYSCTL_DESCR("print mprotect changes."),
    213  1.38  christos 		       NULL, 0, &pax_mprotect_debug, 0,
    214  1.38  christos 		       CTL_CREATE, CTL_EOL);
    215  1.38  christos #endif
    216   1.7      elad #endif /* PAX_MPROTECT */
    217   1.8      elad 
    218  1.18  christos #ifdef PAX_SEGVGUARD
    219   1.8      elad 	rnode = cnode;
    220   1.8      elad 	sysctl_createv(clog, 0, &rnode, &rnode,
    221   1.8      elad 		       CTLFLAG_PERMANENT,
    222   1.8      elad 		       CTLTYPE_NODE, "segvguard",
    223   1.8      elad 		       SYSCTL_DESCR("PaX segvguard."),
    224   1.8      elad 		       NULL, 0, NULL, 0,
    225   1.8      elad 		       CTL_CREATE, CTL_EOL);
    226   1.8      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    227   1.8      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    228   1.8      elad 		       CTLTYPE_INT, "enabled",
    229   1.8      elad 		       SYSCTL_DESCR("segvguard enabled."),
    230   1.8      elad 		       NULL, 0, &pax_segvguard_enabled, 0,
    231   1.8      elad 		       CTL_CREATE, CTL_EOL);
    232   1.8      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    233   1.8      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    234   1.8      elad 		       CTLTYPE_INT, "global",
    235   1.8      elad 		       SYSCTL_DESCR("segvguard all programs."),
    236   1.8      elad 		       NULL, 0, &pax_segvguard_global, 0,
    237   1.8      elad 		       CTL_CREATE, CTL_EOL);
    238   1.8      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    239   1.8      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    240   1.8      elad 		       CTLTYPE_INT, "expiry_timeout",
    241   1.8      elad 		       SYSCTL_DESCR("Entry expiry timeout (in seconds)."),
    242   1.8      elad 		       NULL, 0, &pax_segvguard_expiry, 0,
    243   1.8      elad 		       CTL_CREATE, CTL_EOL);
    244   1.8      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    245   1.8      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    246   1.8      elad 		       CTLTYPE_INT, "suspend_timeout",
    247   1.8      elad 		       SYSCTL_DESCR("Entry suspension timeout (in seconds)."),
    248   1.8      elad 		       NULL, 0, &pax_segvguard_suspension, 0,
    249   1.8      elad 		       CTL_CREATE, CTL_EOL);
    250   1.8      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    251   1.8      elad 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    252   1.8      elad 		       CTLTYPE_INT, "max_crashes",
    253   1.8      elad 		       SYSCTL_DESCR("Max number of crashes before expiry."),
    254   1.8      elad 		       NULL, 0, &pax_segvguard_maxcrashes, 0,
    255   1.8      elad 		       CTL_CREATE, CTL_EOL);
    256   1.8      elad #endif /* PAX_SEGVGUARD */
    257  1.18  christos 
    258  1.18  christos #ifdef PAX_ASLR
    259  1.18  christos 	rnode = cnode;
    260  1.18  christos 	sysctl_createv(clog, 0, &rnode, &rnode,
    261  1.18  christos 		       CTLFLAG_PERMANENT,
    262  1.18  christos 		       CTLTYPE_NODE, "aslr",
    263  1.18  christos 		       SYSCTL_DESCR("Address Space Layout Randomization."),
    264  1.18  christos 		       NULL, 0, NULL, 0,
    265  1.18  christos 		       CTL_CREATE, CTL_EOL);
    266  1.18  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    267  1.18  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    268  1.18  christos 		       CTLTYPE_INT, "enabled",
    269  1.18  christos 		       SYSCTL_DESCR("Restrictions enabled."),
    270  1.18  christos 		       NULL, 0, &pax_aslr_enabled, 0,
    271  1.18  christos 		       CTL_CREATE, CTL_EOL);
    272  1.18  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    273  1.18  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    274  1.18  christos 		       CTLTYPE_INT, "global",
    275  1.18  christos 		       SYSCTL_DESCR("When enabled, unless explicitly "
    276  1.18  christos 				    "specified, apply to all processes."),
    277  1.18  christos 		       NULL, 0, &pax_aslr_global, 0,
    278  1.18  christos 		       CTL_CREATE, CTL_EOL);
    279  1.34  christos #ifdef PAX_ASLR_DEBUG
    280  1.34  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    281  1.34  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    282  1.34  christos 		       CTLTYPE_INT, "debug",
    283  1.34  christos 		       SYSCTL_DESCR("Pring ASLR selected addresses."),
    284  1.34  christos 		       NULL, 0, &pax_aslr_debug, 0,
    285  1.34  christos 		       CTL_CREATE, CTL_EOL);
    286  1.39  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    287  1.39  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    288  1.39  christos 		       CTLTYPE_INT, "flags",
    289  1.39  christos 		       SYSCTL_DESCR("Disable/Enable select ASLR features."),
    290  1.39  christos 		       NULL, 0, &pax_aslr_flags, 0,
    291  1.39  christos 		       CTL_CREATE, CTL_EOL);
    292  1.42  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    293  1.42  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    294  1.42  christos 		       CTLTYPE_INT, "rand",
    295  1.42  christos 		       SYSCTL_DESCR("Use the given fixed random value"),
    296  1.42  christos 		       NULL, 0, &pax_aslr_rand, 0,
    297  1.42  christos 		       CTL_CREATE, CTL_EOL);
    298  1.34  christos #endif
    299  1.18  christos 	sysctl_createv(clog, 0, &rnode, NULL,
    300  1.18  christos 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    301  1.18  christos 		       CTLTYPE_INT, "mmap_len",
    302  1.18  christos 		       SYSCTL_DESCR("Number of bits randomized for "
    303  1.18  christos 				    "mmap(2) calls."),
    304  1.18  christos 		       NULL, PAX_ASLR_DELTA_MMAP_LEN, NULL, 0,
    305  1.18  christos 		       CTL_CREATE, CTL_EOL);
    306  1.19      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    307  1.19      elad 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    308  1.19      elad 		       CTLTYPE_INT, "stack_len",
    309  1.19      elad 		       SYSCTL_DESCR("Number of bits randomized for "
    310  1.19      elad 				    "the stack."),
    311  1.19      elad 		       NULL, PAX_ASLR_DELTA_STACK_LEN, NULL, 0,
    312  1.19      elad 		       CTL_CREATE, CTL_EOL);
    313  1.19      elad 	sysctl_createv(clog, 0, &rnode, NULL,
    314  1.19      elad 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    315  1.19      elad 		       CTLTYPE_INT, "exec_len",
    316  1.19      elad 		       SYSCTL_DESCR("Number of bits randomized for "
    317  1.19      elad 				    "the PIE exec base."),
    318  1.19      elad 		       NULL, PAX_ASLR_DELTA_EXEC_LEN, NULL, 0,
    319  1.19      elad 		       CTL_CREATE, CTL_EOL);
    320  1.19      elad 
    321  1.18  christos #endif /* PAX_ASLR */
    322   1.1      elad }
    323   1.1      elad 
    324   1.7      elad /*
    325   1.7      elad  * Initialize PaX.
    326   1.7      elad  */
    327   1.1      elad void
    328   1.7      elad pax_init(void)
    329   1.1      elad {
    330   1.9      yamt #ifdef PAX_SEGVGUARD
    331   1.9      yamt 	int error;
    332   1.9      yamt 
    333  1.31      maxv 	error = fileassoc_register("segvguard", pax_segvguard_cleanup_cb,
    334   1.9      yamt 	    &segvguard_id);
    335   1.9      yamt 	if (error) {
    336   1.9      yamt 		panic("pax_init: segvguard_id: error=%d\n", error);
    337   1.9      yamt 	}
    338   1.8      elad #endif /* PAX_SEGVGUARD */
    339  1.44  christos #ifdef PAX_ASLR
    340  1.44  christos 	/* Adjust maximum stack by the size we can consume for ASLR */
    341  1.44  christos 	extern rlim_t maxsmap;
    342  1.44  christos 	maxsmap = MAXSSIZ - (MAXSSIZ / PAX_ASLR_MAX_STACK_WASTE);
    343  1.44  christos 	// XXX: compat32 is not handled.
    344  1.44  christos #endif
    345   1.1      elad }
    346   1.1      elad 
    347  1.29      maxv void
    348  1.32      maxv pax_setup_elf_flags(struct exec_package *epp, uint32_t elf_flags)
    349  1.29      maxv {
    350  1.29      maxv 	uint32_t flags = 0;
    351  1.29      maxv 
    352  1.29      maxv #ifdef PAX_ASLR
    353  1.29      maxv 	if (pax_aslr_elf_flags_active(elf_flags)) {
    354  1.29      maxv 		flags |= P_PAX_ASLR;
    355  1.29      maxv 	}
    356  1.29      maxv #endif
    357  1.29      maxv #ifdef PAX_MPROTECT
    358  1.29      maxv 	if (pax_mprotect_elf_flags_active(elf_flags)) {
    359  1.29      maxv 		flags |= P_PAX_MPROTECT;
    360  1.29      maxv 	}
    361  1.29      maxv #endif
    362  1.29      maxv #ifdef PAX_SEGVGUARD
    363  1.29      maxv 	if (pax_segvguard_elf_flags_active(elf_flags)) {
    364  1.29      maxv 		flags |= P_PAX_GUARD;
    365  1.29      maxv 	}
    366  1.29      maxv #endif
    367  1.29      maxv 
    368  1.32      maxv 	epp->ep_pax_flags = flags;
    369  1.29      maxv }
    370  1.29      maxv 
    371  1.31      maxv #if defined(PAX_MPROTECT) || defined(PAX_SEGVGUARD) || defined(PAX_ASLR)
    372  1.31      maxv static inline bool
    373  1.31      maxv pax_flags_active(uint32_t flags, uint32_t opt)
    374  1.31      maxv {
    375  1.31      maxv 	if (!(flags & opt))
    376  1.31      maxv 		return false;
    377  1.31      maxv 	return true;
    378  1.31      maxv }
    379  1.31      maxv #endif /* PAX_MPROTECT || PAX_SEGVGUARD || PAX_ASLR */
    380  1.29      maxv 
    381   1.7      elad #ifdef PAX_MPROTECT
    382  1.29      maxv static bool
    383  1.29      maxv pax_mprotect_elf_flags_active(uint32_t flags)
    384  1.29      maxv {
    385  1.29      maxv 	if (!pax_mprotect_enabled)
    386  1.29      maxv 		return false;
    387  1.29      maxv 	if (pax_mprotect_global && (flags & ELF_NOTE_PAX_NOMPROTECT) != 0) {
    388  1.29      maxv 		/* Mprotect explicitly disabled */
    389  1.29      maxv 		return false;
    390  1.29      maxv 	}
    391  1.29      maxv 	if (!pax_mprotect_global && (flags & ELF_NOTE_PAX_MPROTECT) == 0) {
    392  1.29      maxv 		/* Mprotect not requested */
    393  1.29      maxv 		return false;
    394  1.29      maxv 	}
    395  1.29      maxv 	return true;
    396  1.29      maxv }
    397  1.29      maxv 
    398   1.1      elad void
    399  1.38  christos pax_mprotect_adjust(
    400  1.38  christos #ifdef PAX_MPROTECT_DEBUG
    401  1.38  christos     const char *file, size_t line,
    402  1.38  christos #endif
    403  1.38  christos     struct lwp *l, vm_prot_t *prot, vm_prot_t *maxprot)
    404   1.1      elad {
    405  1.29      maxv 	uint32_t flags;
    406   1.7      elad 
    407  1.29      maxv 	flags = l->l_proc->p_pax;
    408  1.31      maxv 	if (!pax_flags_active(flags, P_PAX_MPROTECT))
    409   1.1      elad 		return;
    410   1.1      elad 
    411   1.3      elad 	if ((*prot & (VM_PROT_WRITE|VM_PROT_EXECUTE)) != VM_PROT_EXECUTE) {
    412  1.38  christos #ifdef PAX_MPROTECT_DEBUG
    413  1.37  christos 		struct proc *p = l->l_proc;
    414  1.45  christos 		if ((*prot & VM_PROT_EXECUTE) && pax_mprotect_debug) {
    415  1.38  christos 			printf("%s: %s,%zu: %d.%d (%s): -x\n",
    416  1.38  christos 			    __func__, file, line,
    417  1.38  christos 			    p->p_pid, l->l_lid, p->p_comm);
    418  1.38  christos 		}
    419  1.37  christos #endif
    420   1.3      elad 		*prot &= ~VM_PROT_EXECUTE;
    421   1.3      elad 		*maxprot &= ~VM_PROT_EXECUTE;
    422   1.1      elad 	} else {
    423  1.38  christos #ifdef PAX_MPROTECT_DEBUG
    424  1.37  christos 		struct proc *p = l->l_proc;
    425  1.45  christos 		if ((*prot & VM_PROT_WRITE) && pax_mprotect_debug) {
    426  1.38  christos 			printf("%s: %s,%zu: %d.%d (%s): -w\n",
    427  1.38  christos 			    __func__, file, line,
    428  1.38  christos 			    p->p_pid, l->l_lid, p->p_comm);
    429  1.38  christos 		}
    430  1.37  christos #endif
    431   1.3      elad 		*prot &= ~VM_PROT_WRITE;
    432   1.3      elad 		*maxprot &= ~VM_PROT_WRITE;
    433   1.1      elad 	}
    434   1.1      elad }
    435   1.7      elad #endif /* PAX_MPROTECT */
    436   1.8      elad 
    437  1.18  christos #ifdef PAX_ASLR
    438  1.29      maxv static bool
    439  1.29      maxv pax_aslr_elf_flags_active(uint32_t flags)
    440  1.18  christos {
    441  1.18  christos 	if (!pax_aslr_enabled)
    442  1.18  christos 		return false;
    443  1.29      maxv 	if (pax_aslr_global && (flags & ELF_NOTE_PAX_NOASLR) != 0) {
    444  1.29      maxv 		/* ASLR explicitly disabled */
    445  1.29      maxv 		return false;
    446  1.29      maxv 	}
    447  1.29      maxv 	if (!pax_aslr_global && (flags & ELF_NOTE_PAX_ASLR) == 0) {
    448  1.29      maxv 		/* ASLR not requested */
    449  1.29      maxv 		return false;
    450  1.29      maxv 	}
    451  1.29      maxv 	return true;
    452  1.29      maxv }
    453  1.18  christos 
    454  1.49  christos static bool
    455  1.32      maxv pax_aslr_epp_active(struct exec_package *epp)
    456  1.32      maxv {
    457  1.50    martin 	if (__predict_false((epp->ep_flags & (EXEC_32|EXEC_TOPDOWN_VM)) == 0))
    458  1.50    martin 		return false;
    459  1.32      maxv 	return pax_flags_active(epp->ep_pax_flags, P_PAX_ASLR);
    460  1.32      maxv }
    461  1.32      maxv 
    462  1.49  christos static bool
    463  1.29      maxv pax_aslr_active(struct lwp *l)
    464  1.29      maxv {
    465  1.31      maxv 	return pax_flags_active(l->l_proc->p_pax, P_PAX_ASLR);
    466  1.18  christos }
    467  1.18  christos 
    468  1.18  christos void
    469  1.35   khorben pax_aslr_init_vm(struct lwp *l, struct vmspace *vm, struct exec_package *ep)
    470  1.18  christos {
    471  1.18  christos 	if (!pax_aslr_active(l))
    472  1.18  christos 		return;
    473  1.18  christos 
    474  1.50    martin 	if (__predict_false((ep->ep_flags & (EXEC_32|EXEC_TOPDOWN_VM)) == 0))
    475  1.50    martin 		return;
    476  1.50    martin 
    477  1.39  christos #ifdef PAX_ASLR_DEBUG
    478  1.39  christos 	if (pax_aslr_flags & PAX_ASLR_MMAP)
    479  1.39  christos 		return;
    480  1.39  christos #endif
    481  1.39  christos 
    482  1.36  christos 	uint32_t len = (ep->ep_flags & EXEC_32) ?
    483  1.36  christos 	    PAX_ASLR_DELTA_MMAP_LEN32 : PAX_ASLR_DELTA_MMAP_LEN;
    484  1.36  christos 
    485  1.42  christos 	uint32_t rand = cprng_fast32();
    486  1.42  christos #ifdef PAX_ASLR_DEBUG
    487  1.42  christos 	if (pax_aslr_flags & PAX_ASLR_FIXED)
    488  1.42  christos 		rand = pax_aslr_rand;
    489  1.42  christos #endif
    490  1.42  christos 	vm->vm_aslr_delta_mmap = PAX_ASLR_DELTA(rand,
    491  1.36  christos 	    PAX_ASLR_DELTA_MMAP_LSB, len);
    492  1.36  christos 
    493  1.47  christos 	PAX_DPRINTF("delta_mmap=%#jx/%u",
    494  1.47  christos 	    (uintmax_t)vm->vm_aslr_delta_mmap, len);
    495  1.18  christos }
    496  1.18  christos 
    497  1.18  christos void
    498  1.31      maxv pax_aslr_mmap(struct lwp *l, vaddr_t *addr, vaddr_t orig_addr, int f)
    499  1.18  christos {
    500  1.18  christos 	if (!pax_aslr_active(l))
    501  1.18  christos 		return;
    502  1.34  christos #ifdef PAX_ASLR_DEBUG
    503  1.34  christos 	char buf[256];
    504  1.39  christos 
    505  1.39  christos 	if (pax_aslr_flags & PAX_ASLR_MMAP)
    506  1.39  christos 		return;
    507  1.39  christos 
    508  1.34  christos 	if (pax_aslr_debug)
    509  1.34  christos 		snprintb(buf, sizeof(buf), MAP_FMT, f);
    510  1.34  christos 	else
    511  1.34  christos 		buf[0] = '\0';
    512  1.34  christos #endif
    513  1.18  christos 
    514  1.18  christos 	if (!(f & MAP_FIXED) && ((orig_addr == 0) || !(f & MAP_ANON))) {
    515  1.34  christos 		PAX_DPRINTF("applying to %#jx orig_addr=%#jx f=%s",
    516  1.34  christos 		    (uintmax_t)*addr, (uintmax_t)orig_addr, buf);
    517  1.18  christos 		if (!(l->l_proc->p_vmspace->vm_map.flags & VM_MAP_TOPDOWN))
    518  1.18  christos 			*addr += l->l_proc->p_vmspace->vm_aslr_delta_mmap;
    519  1.18  christos 		else
    520  1.18  christos 			*addr -= l->l_proc->p_vmspace->vm_aslr_delta_mmap;
    521  1.34  christos 		PAX_DPRINTF("result %#jx", (uintmax_t)*addr);
    522  1.29      maxv 	} else {
    523  1.34  christos 		PAX_DPRINTF("not applying to %#jx orig_addr=%#jx f=%s",
    524  1.34  christos 		    (uintmax_t)*addr, (uintmax_t)orig_addr, buf);
    525  1.18  christos 	}
    526  1.18  christos }
    527  1.18  christos 
    528  1.42  christos #define	PAX_TRUNC(a, b)	((a) & ~((b) - 1))
    529  1.42  christos vaddr_t
    530  1.42  christos pax_aslr_exec_offset(struct exec_package *epp, vaddr_t align)
    531  1.42  christos {
    532  1.42  christos 	size_t pax_align, l2, delta;
    533  1.42  christos 	uint32_t rand;
    534  1.42  christos 	vaddr_t offset;
    535  1.42  christos 
    536  1.42  christos 	if (!pax_aslr_epp_active(epp))
    537  1.42  christos 		goto out;
    538  1.42  christos 
    539  1.42  christos #ifdef PAX_ASLR_DEBUG
    540  1.42  christos 	if (pax_aslr_flags & PAX_ASLR_EXEC_OFFSET)
    541  1.42  christos 		goto out;
    542  1.42  christos #endif
    543  1.42  christos 
    544  1.42  christos 	pax_align = align == 0 ? PGSHIFT : align;
    545  1.42  christos 	l2 = ilog2(pax_align);
    546  1.42  christos 
    547  1.42  christos 	rand = cprng_fast32();
    548  1.42  christos #ifdef PAX_ASLR_DEBUG
    549  1.42  christos 	if (pax_aslr_flags & PAX_ASLR_FIXED)
    550  1.42  christos 		rand = pax_aslr_rand;
    551  1.42  christos #endif
    552  1.42  christos 	delta = PAX_ASLR_DELTA(rand, l2, PAX_ASLR_DELTA_EXEC_LEN);
    553  1.42  christos 	offset = PAX_TRUNC(delta, pax_align) + PAGE_SIZE;
    554  1.42  christos 
    555  1.42  christos 	PAX_DPRINTF("rand=%#x l2=%#zx pax_align=%#zx delta=%#zx offset=%#jx",
    556  1.42  christos 	    rand, l2, pax_align, delta, (uintmax_t)offset);
    557  1.42  christos 	return offset;
    558  1.42  christos out:
    559  1.42  christos 	return MAX(align, PAGE_SIZE);
    560  1.42  christos }
    561  1.42  christos 
    562  1.18  christos void
    563  1.32      maxv pax_aslr_stack(struct exec_package *epp, u_long *max_stack_size)
    564  1.18  christos {
    565  1.32      maxv 	if (!pax_aslr_epp_active(epp))
    566  1.31      maxv 		return;
    567  1.39  christos #ifdef PAX_ASLR_DEBUG
    568  1.39  christos 	if (pax_aslr_flags & PAX_ASLR_STACK)
    569  1.39  christos 		return;
    570  1.39  christos #endif
    571  1.31      maxv 
    572  1.40  christos 	uint32_t len = (epp->ep_flags & EXEC_32) ?
    573  1.40  christos 	    PAX_ASLR_DELTA_STACK_LEN32 : PAX_ASLR_DELTA_STACK_LEN;
    574  1.42  christos 	uint32_t rand = cprng_fast32();
    575  1.42  christos #ifdef PAX_ASLR_DEBUG
    576  1.42  christos 	if (pax_aslr_flags & PAX_ASLR_FIXED)
    577  1.42  christos 		rand = pax_aslr_rand;
    578  1.42  christos #endif
    579  1.42  christos 	u_long d = PAX_ASLR_DELTA(rand, PAX_ASLR_DELTA_STACK_LSB, len);
    580  1.44  christos 	d &= (*max_stack_size / PAX_ASLR_MAX_STACK_WASTE) - 1;
    581  1.43  christos  	u_long newminsaddr = (u_long)STACK_GROW(epp->ep_minsaddr, d);
    582  1.40  christos 	PAX_DPRINTF("old minsaddr=%#jx delta=%#lx new minsaddr=%#lx",
    583  1.40  christos 	    (uintmax_t)epp->ep_minsaddr, d, newminsaddr);
    584  1.40  christos 	epp->ep_minsaddr = (vaddr_t)newminsaddr;
    585  1.31      maxv 	*max_stack_size -= d;
    586  1.18  christos }
    587  1.42  christos 
    588  1.42  christos uint32_t
    589  1.42  christos pax_aslr_stack_gap(struct exec_package *epp)
    590  1.42  christos {
    591  1.42  christos 	if (!pax_aslr_epp_active(epp))
    592  1.42  christos 		return 0;
    593  1.42  christos 
    594  1.42  christos #ifdef PAX_ASLR_DEBUG
    595  1.42  christos 	if (pax_aslr_flags & PAX_ASLR_STACK_GAP)
    596  1.42  christos 		return 0;
    597  1.42  christos #endif
    598  1.42  christos 
    599  1.42  christos 	uint32_t rand = cprng_fast32();
    600  1.42  christos #ifdef PAX_ASLR_DEBUG
    601  1.42  christos 	if (pax_aslr_flags & PAX_ASLR_FIXED)
    602  1.42  christos 		rand = pax_aslr_rand;
    603  1.42  christos #endif
    604  1.42  christos 	rand %= PAGE_SIZE;
    605  1.42  christos 	PAX_DPRINTF("stack gap=%#x\n", rand);
    606  1.42  christos 	return rand;
    607  1.42  christos }
    608  1.18  christos #endif /* PAX_ASLR */
    609  1.18  christos 
    610   1.8      elad #ifdef PAX_SEGVGUARD
    611  1.29      maxv static bool
    612  1.29      maxv pax_segvguard_elf_flags_active(uint32_t flags)
    613  1.29      maxv {
    614  1.29      maxv 	if (!pax_segvguard_enabled)
    615  1.29      maxv 		return false;
    616  1.29      maxv 	if (pax_segvguard_global && (flags & ELF_NOTE_PAX_NOGUARD) != 0) {
    617  1.29      maxv 		/* Segvguard explicitly disabled */
    618  1.29      maxv 		return false;
    619  1.29      maxv 	}
    620  1.29      maxv 	if (!pax_segvguard_global && (flags & ELF_NOTE_PAX_GUARD) == 0) {
    621  1.29      maxv 		/* Segvguard not requested */
    622  1.29      maxv 		return false;
    623  1.29      maxv 	}
    624  1.29      maxv 	return true;
    625  1.29      maxv }
    626  1.29      maxv 
    627  1.10      yamt static void
    628  1.31      maxv pax_segvguard_cleanup_cb(void *v)
    629   1.8      elad {
    630  1.25     rmind 	struct pax_segvguard_entry *p = v;
    631   1.8      elad 	struct pax_segvguard_uid_entry *up;
    632   1.8      elad 
    633  1.25     rmind 	if (p == NULL) {
    634   1.8      elad 		return;
    635  1.25     rmind 	}
    636  1.10      yamt 	while ((up = LIST_FIRST(&p->segv_uids)) != NULL) {
    637  1.10      yamt 		LIST_REMOVE(up, sue_list);
    638  1.25     rmind 		kmem_free(up, sizeof(*up));
    639   1.8      elad 	}
    640  1.25     rmind 	kmem_free(p, sizeof(*p));
    641   1.8      elad }
    642   1.8      elad 
    643   1.8      elad /*
    644   1.8      elad  * Called when a process of image vp generated a segfault.
    645   1.8      elad  */
    646   1.8      elad int
    647   1.8      elad pax_segvguard(struct lwp *l, struct vnode *vp, const char *name,
    648  1.14   thorpej     bool crashed)
    649   1.8      elad {
    650   1.8      elad 	struct pax_segvguard_entry *p;
    651   1.8      elad 	struct pax_segvguard_uid_entry *up;
    652   1.8      elad 	struct timeval tv;
    653   1.8      elad 	uid_t uid;
    654  1.29      maxv 	uint32_t flags;
    655  1.14   thorpej 	bool have_uid;
    656   1.8      elad 
    657  1.29      maxv 	flags = l->l_proc->p_pax;
    658  1.31      maxv 	if (!pax_flags_active(flags, P_PAX_GUARD))
    659  1.29      maxv 		return 0;
    660   1.8      elad 
    661   1.9      yamt 	if (vp == NULL)
    662  1.31      maxv 		return EFAULT;
    663   1.8      elad 
    664   1.8      elad 	/* Check if we already monitor the file. */
    665   1.8      elad 	p = fileassoc_lookup(vp, segvguard_id);
    666   1.8      elad 
    667   1.8      elad 	/* Fast-path if starting a program we don't know. */
    668   1.8      elad 	if (p == NULL && !crashed)
    669  1.31      maxv 		return 0;
    670   1.8      elad 
    671   1.8      elad 	microtime(&tv);
    672   1.8      elad 
    673   1.8      elad 	/*
    674   1.8      elad 	 * If a program we don't know crashed, we need to create a new entry
    675   1.8      elad 	 * for it.
    676   1.8      elad 	 */
    677   1.8      elad 	if (p == NULL) {
    678  1.25     rmind 		p = kmem_alloc(sizeof(*p), KM_SLEEP);
    679  1.13      elad 		fileassoc_add(vp, segvguard_id, p);
    680   1.8      elad 		LIST_INIT(&p->segv_uids);
    681   1.8      elad 
    682   1.8      elad 		/*
    683   1.8      elad 		 * Initialize a new entry with "crashes so far" of 1.
    684   1.8      elad 		 * The expiry time is when we purge the entry if it didn't
    685   1.8      elad 		 * reach the limit.
    686   1.8      elad 		 */
    687  1.25     rmind 		up = kmem_alloc(sizeof(*up), KM_SLEEP);
    688   1.8      elad 		up->sue_uid = kauth_cred_getuid(l->l_cred);
    689   1.8      elad 		up->sue_ncrashes = 1;
    690   1.8      elad 		up->sue_expiry = tv.tv_sec + pax_segvguard_expiry;
    691   1.8      elad 		up->sue_suspended = 0;
    692   1.8      elad 		LIST_INSERT_HEAD(&p->segv_uids, up, sue_list);
    693  1.31      maxv 		return 0;
    694   1.8      elad 	}
    695   1.8      elad 
    696   1.8      elad 	/*
    697   1.8      elad 	 * A program we "know" either executed or crashed again.
    698   1.8      elad 	 * See if it's a culprit we're familiar with.
    699   1.8      elad 	 */
    700   1.8      elad 	uid = kauth_cred_getuid(l->l_cred);
    701  1.15   thorpej 	have_uid = false;
    702   1.8      elad 	LIST_FOREACH(up, &p->segv_uids, sue_list) {
    703   1.8      elad 		if (up->sue_uid == uid) {
    704  1.15   thorpej 			have_uid = true;
    705   1.8      elad 			break;
    706   1.8      elad 		}
    707   1.8      elad 	}
    708   1.8      elad 
    709   1.8      elad 	/*
    710   1.8      elad 	 * It's someone else. Add an entry for him if we crashed.
    711   1.8      elad 	 */
    712   1.8      elad 	if (!have_uid) {
    713   1.8      elad 		if (crashed) {
    714  1.25     rmind 			up = kmem_alloc(sizeof(*up), KM_SLEEP);
    715   1.8      elad 			up->sue_uid = uid;
    716   1.8      elad 			up->sue_ncrashes = 1;
    717   1.8      elad 			up->sue_expiry = tv.tv_sec + pax_segvguard_expiry;
    718   1.8      elad 			up->sue_suspended = 0;
    719   1.8      elad 			LIST_INSERT_HEAD(&p->segv_uids, up, sue_list);
    720   1.8      elad 		}
    721  1.31      maxv 		return 0;
    722   1.8      elad 	}
    723   1.8      elad 
    724   1.8      elad 	if (crashed) {
    725   1.8      elad 		/* Check if timer on previous crashes expired first. */
    726   1.8      elad 		if (up->sue_expiry < tv.tv_sec) {
    727   1.8      elad 			log(LOG_INFO, "PaX Segvguard: [%s] Suspension"
    728   1.8      elad 			    " expired.\n", name ? name : "unknown");
    729   1.8      elad 			up->sue_ncrashes = 1;
    730   1.8      elad 			up->sue_expiry = tv.tv_sec + pax_segvguard_expiry;
    731   1.8      elad 			up->sue_suspended = 0;
    732  1.31      maxv 			return 0;
    733   1.8      elad 		}
    734   1.8      elad 
    735   1.8      elad 		up->sue_ncrashes++;
    736   1.8      elad 
    737   1.8      elad 		if (up->sue_ncrashes >= pax_segvguard_maxcrashes) {
    738   1.8      elad 			log(LOG_ALERT, "PaX Segvguard: [%s] Suspending "
    739   1.8      elad 			    "execution for %d seconds after %zu crashes.\n",
    740   1.8      elad 			    name ? name : "unknown", pax_segvguard_suspension,
    741   1.8      elad 			    up->sue_ncrashes);
    742   1.8      elad 
    743   1.8      elad 			/* Suspend this program for a while. */
    744   1.8      elad 			up->sue_suspended = tv.tv_sec + pax_segvguard_suspension;
    745   1.8      elad 			up->sue_ncrashes = 0;
    746   1.8      elad 			up->sue_expiry = 0;
    747   1.8      elad 		}
    748   1.8      elad 	} else {
    749   1.8      elad 		/* Are we supposed to be suspended? */
    750   1.8      elad 		if (up->sue_suspended > tv.tv_sec) {
    751   1.8      elad 			log(LOG_ALERT, "PaX Segvguard: [%s] Preventing "
    752   1.8      elad 			    "execution due to repeated segfaults.\n", name ?
    753   1.8      elad 			    name : "unknown");
    754  1.31      maxv 			return EPERM;
    755   1.8      elad 		}
    756   1.8      elad 	}
    757   1.8      elad 
    758  1.31      maxv 	return 0;
    759   1.8      elad }
    760   1.8      elad #endif /* PAX_SEGVGUARD */
    761