1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/*
* This program manages user stack area executability flag for ELF and a.out
* binaries. The flag only has effect when running the patched Linux kernel.
*
* Written by Solar Designer and placed in the public domain.
*/
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/elf.h>
#include <linux/a.out.h>
#define HF_STACKEXEC 1
static struct elf32_hdr header_elf;
static struct exec header_aout;
static void *header;
static int header_size;
static int fd;
static unsigned long (*get_flags)();
static void (*put_flags)(unsigned long);
static unsigned long get_flags_elf()
{
return header_elf.e_flags;
}
static void put_flags_elf(unsigned long flags)
{
header_elf.e_flags = flags;
}
static unsigned long get_flags_aout()
{
return N_FLAGS(header_aout);
}
static void put_flags_aout(unsigned long flags)
{
N_SET_FLAGS(header_aout, flags);
}
static int read_header(char *name, int mode)
{
char *ptr;
int size, block;
if ((fd = open(name, mode)) < 0) return 1;
ptr = (char *)&header_elf;
size = sizeof(header_elf);
do {
block = read(fd, ptr, size);
if (block <= 0) {
close(fd);
return block ? 1 : 2;
}
ptr += block; size -= block;
} while (size > 0);
memcpy(&header_aout, &header_elf, sizeof(header_aout));
if (!strncmp(header_elf.e_ident, ELFMAG, SELFMAG)) {
if (header_elf.e_type != ET_EXEC) return 2;
if (header_elf.e_machine != EM_386) return 3;
header = &header_elf; header_size = sizeof(header_elf);
get_flags = get_flags_elf; put_flags = put_flags_elf;
} else
if (N_MAGIC(header_aout) == NMAGIC ||
N_MAGIC(header_aout) == ZMAGIC ||
N_MAGIC(header_aout) == QMAGIC) {
if (N_MACHTYPE(header_aout) != M_386) return 3;
header = &header_aout; header_size = 4;
get_flags = get_flags_aout; put_flags = put_flags_aout;
} else return 2;
return 0;
}
int write_header()
{
char *ptr;
int size, block;
if (lseek(fd, 0, SEEK_SET)) return 1;
ptr = (char *)header;
size = header_size;
do {
block = write(fd, ptr, size);
if (block <= 0) break;
ptr += block; size -= block;
} while (size > 0);
return size;
}
#define USAGE \
"Usage: %s OPTION FILE...\n" \
"Manage stack area executability flag for binaries\n\n" \
" -e\tenable execution permission\n" \
" -d\tdisable execution permission\n" \
" -v\tview current flag state\n\n" \
"The flag only has effect when running the patched Linux kernel\n"
void usage(char *name)
{
printf(USAGE, name ? name : "chstk");
exit(1);
}
int main(int argc, char **argv)
{
char **current;
unsigned long flags;
int error = 0;
int mode;
if (argc < 3) usage(argv[0]);
if (strlen(argv[1]) != 2) usage(argv[0]);
if (argv[1][0] != '-' || !strchr("edv", argv[1][1])) usage(argv[0]);
current = &argv[2];
do {
mode = argv[1][1] == 'v' ? O_RDONLY : O_RDWR;
switch (read_header(*current, mode)) {
case 1:
perror(*current);
error = 1; continue;
case 2:
printf("%s: Unknown file type\n", *current);
error = 1; continue;
case 3:
printf("%s: Wrong architecture\n", *current);
error = 1; continue;
}
flags = get_flags();
switch (argv[1][1]) {
case 'e':
put_flags(flags | HF_STACKEXEC);
break;
case 'd':
put_flags(flags & ~HF_STACKEXEC);
break;
default:
printf("%s: %s stack area\n", *current,
flags & HF_STACKEXEC
? "Executable" : "Non-executable");
}
if (flags != get_flags())
if (write_header()) {
perror(*current);
error = 1;
}
close(fd);
} while (*++current);
return error;
}
|