Skip to content

Latest commit

 

History

History
471 lines (434 loc) · 14.3 KB

linux-kernel.diff

File metadata and controls

471 lines (434 loc) · 14.3 KB
 
Oct 21, 2009
Oct 21, 2009
1
2
Mar 4, 2015
Mar 4, 2015
3
4
5
Please note that this patch applies cleanly to Ubuntu 14.10's Linux kernel
sources (3.16, specifically).
Oct 24, 2009
Oct 24, 2009
6
Patches being submitted for consideration on the Linux kernel mailing list
Mar 4, 2015
Mar 4, 2015
7
8
are not kept here, and are made against the current mainline (3.19 at the
time of this writing). If you want those, get them from the mailing
Oct 21, 2009
Oct 21, 2009
9
10
11
12
13
14
list.
You probably don't want the below patch unless you're experimenting with a
stable (and older) kernel.
Mar 4, 2015
Mar 4, 2015
15
16
17
18
diff -ruBb linux-3.16.0-orig/fs/binfmt_elf.c linux-3.16.0/fs/binfmt_elf.c
--- linux-3.16.0-orig/fs/binfmt_elf.c 2014-08-03 15:25:02.000000000 -0700
+++ linux-3.16.0/fs/binfmt_elf.c 2015-03-01 20:04:12.561648371 -0800
@@ -47,7 +47,7 @@
Mar 4, 2015
Mar 4, 2015
20
21
static int load_elf_binary(struct linux_binprm *bprm);
static unsigned long elf_map(struct file *, unsigned long, struct elf_phdr *,
22
23
24
- int, int, unsigned long);
+ int, int, unsigned long, unsigned long);
Mar 4, 2015
Mar 4, 2015
25
26
27
#ifdef CONFIG_USELIB
static int load_elf_library(struct file *);
@@ -334,7 +334,7 @@
28
29
30
31
32
33
34
35
static unsigned long elf_map(struct file *filep, unsigned long addr,
struct elf_phdr *eppnt, int prot, int type,
- unsigned long total_size)
+ unsigned long total_size, unsigned long base_offset)
{
unsigned long map_addr;
unsigned long size = eppnt->p_filesz + ELF_PAGEOFFSET(eppnt->p_vaddr);
Mar 4, 2015
Mar 4, 2015
36
@@ -357,11 +357,12 @@
37
38
39
*/
if (total_size) {
total_size = ELF_PAGEALIGN(total_size);
Mar 4, 2015
Mar 4, 2015
40
41
- map_addr = vm_mmap(filep, addr, total_size, prot, type, off);
+ map_addr = vm_mmap(filep, addr, total_size, prot, type,
42
43
+ off + base_offset);
if (!BAD_ADDR(map_addr))
Mar 4, 2015
Mar 4, 2015
44
45
46
47
vm_munmap(map_addr+size, total_size-size);
} else
- map_addr = vm_mmap(filep, addr, size, prot, type, off);
+ map_addr = vm_mmap(filep, addr, size, prot, type, off + base_offset);
48
49
return(map_addr);
Mar 4, 2015
Mar 4, 2015
50
51
}
@@ -394,7 +395,7 @@
52
53
54
55
56
57
58
59
static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
struct file *interpreter, unsigned long *interp_map_addr,
- unsigned long no_base)
+ unsigned long no_base, unsigned long base_offset)
{
struct elf_phdr *elf_phdata;
struct elf_phdr *eppnt;
Mar 4, 2015
Mar 4, 2015
60
@@ -432,7 +433,7 @@
61
62
63
64
65
if (!elf_phdata)
goto out;
- retval = kernel_read(interpreter, interp_elf_ex->e_phoff,
+ retval = kernel_read(interpreter, interp_elf_ex->e_phoff + base_offset,
Mar 4, 2015
Mar 4, 2015
66
(char *)elf_phdata, size);
67
68
error = -EIO;
if (retval != size) {
Mar 4, 2015
Mar 4, 2015
69
@@ -468,7 +469,8 @@
70
71
72
73
74
75
76
77
78
load_addr = -vaddr;
map_addr = elf_map(interpreter, load_addr + vaddr,
- eppnt, elf_prot, elf_type, total_size);
+ eppnt, elf_prot, elf_type, total_size,
+ base_offset);
total_size = 0;
if (!*interp_map_addr)
*interp_map_addr = map_addr;
Mar 4, 2015
Mar 4, 2015
79
@@ -568,6 +570,94 @@
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
#endif
}
+/*
+ * See if we're a valid FatELF binary, find the right record, and
+ * load (*elf) with the actual ELF header. Sets (*offset) to the
+ * base offset of the chosen ELF binary. Returns 0 on success or a negative
+ * error code.
+ * If we're not a FatELF binary, (*elf) is loaded with the existing contents
+ * of (buf) and 0 is returned.
+ */
+static int examine_fatelf(struct file *file, const char *filename, char *buf,
+ int buflen, unsigned long *offset, struct elfhdr *elf)
+{
+ int records, i, rc;
+ const fatelf_hdr *fatelf = (fatelf_hdr *) buf;
+
+ if (likely(le32_to_cpu(fatelf->magic) != FATELF_MAGIC)) {
+ *elf = *((struct elfhdr *)buf); /* treat like normal ELF. */
+ return 0; /* not a FatELF binary; not an error. */
+ } else if (unlikely(le16_to_cpu(fatelf->version) != 1)) {
+ return -ENOEXEC; /* Unrecognized format version. */
+ }
+
+ /*
+ * In theory, there could be 255 separate records packed into this
+ * binary, but for now, bprm->buf (128 bytes) holds exactly 5
+ * records with the fatelf header, and that seems reasonable for
+ * most uses. We could add the complexity to read more records later
+ * if there's a serious need.
+ */
+ records = (int) fatelf->num_records; /* uint8, no byteswap needed */
+
+ if (unlikely(records > 5)) {
+ records = 5; /* clamp, in case we find one we can use. */
+ }
+
+ for (i = 0; i < records; i++) {
+ const fatelf_record *record = &fatelf->records[i];
Sep 17, 2009
Sep 17, 2009
119
+ const __u8 osabi = record->osabi;
120
121
122
123
+ const int abiok = likely( likely(osabi == ELFOSABI_NONE) ||
+ unlikely(osabi == ELFOSABI_LINUX) );
+
+ /* Fill in the data elf_check_arch() might care about. */
Sep 17, 2009
Sep 17, 2009
124
+ elf->e_ident[EI_OSABI] = record->osabi;
125
126
127
128
129
130
131
132
+ elf->e_ident[EI_CLASS] = record->word_size;
+ elf->e_ident[EI_DATA] = record->byte_order;
+ elf->e_machine = le16_to_cpu(record->machine);
+
+ if (likely(!elf_check_arch(elf))) {
+ continue; /* Unsupported CPU architecture. */
+ } else if (unlikely(!abiok)) {
+ continue; /* Unsupported OS ABI. */
Sep 17, 2009
Sep 17, 2009
133
+ } else if (unlikely(record->osabi_version != 0)) {
134
135
136
137
138
139
140
141
142
+ continue; /* Unsupported OS ABI version. */
+ } else {
+ /* We can support this ELF arch/abi. */
+ const __u64 rec_offset = le64_to_cpu(record->offset);
+ const __u64 rec_size = le64_to_cpu(record->size);
+ const __u64 end_offset = rec_offset + rec_size;
+ const unsigned long uloff = (unsigned long) rec_offset;
+
+ if (unlikely(end_offset < rec_offset)) {
Oct 3, 2009
Oct 3, 2009
143
144
145
+ continue; /* overflow (corrupt file?) */
+ } else if (unlikely(ELF_PAGEOFFSET(uloff) != 0)) {
+ continue; /* bad alignment. */
146
147
148
+ }
+
+#if BITS_PER_LONG == 32
Oct 3, 2009
Oct 3, 2009
149
+ if (unlikely(end_offset > 0xFFFFFFFF)) {
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
+ continue;
+ }
+#endif
+
+ /* replace the FatELF data with the real ELF header. */
+ rc = kernel_read(file, uloff, (char*) elf, sizeof(*elf));
+ if (unlikely((rc != sizeof(*elf)) && (rc >= 0))) {
+ rc = -EIO;
+ } else if (likely(rc == sizeof(*elf))) {
+ *offset = uloff;
+ rc = 0;
+ }
+
+ return rc;
+ }
+ }
+
+ return -ENOEXEC; /* no binaries we could use. */
+}
+
+
Mar 4, 2015
Mar 4, 2015
171
static int load_elf_binary(struct linux_binprm *bprm)
172
173
{
struct file *interpreter = NULL; /* to shut gcc up */
Mar 4, 2015
Mar 4, 2015
174
175
@@ -579,6 +669,8 @@
unsigned long elf_bss, elf_brk;
176
177
178
179
180
181
182
int retval, i;
unsigned int size;
+ unsigned long base_offset = 0;
+ unsigned long interp_base_offset = 0;
unsigned long elf_entry;
unsigned long interp_load_addr = 0;
unsigned long start_code, end_code, start_data, end_data;
Mar 4, 2015
Mar 4, 2015
183
@@ -596,8 +688,11 @@
184
185
goto out_ret;
}
Mar 4, 2015
Mar 4, 2015
186
187
188
189
190
191
192
193
194
195
196
- /* Get the exec-header */
- loc->elf_ex = *((struct elfhdr *)bprm->buf);
+ retval = examine_fatelf(bprm->file, bprm->filename, bprm->buf,
+ BINPRM_BUF_SIZE, &base_offset, &loc->elf_ex);
+ if (unlikely(retval < 0)) {
+ goto out_ret;
+ }
retval = -ENOEXEC;
/* First of all, some simple consistency checks */
Mar 4, 2015
Mar 4, 2015
197
@@ -623,7 +718,7 @@
198
199
200
201
202
203
204
205
if (!elf_phdata)
goto out;
- retval = kernel_read(bprm->file, loc->elf_ex.e_phoff,
+ retval = kernel_read(bprm->file, loc->elf_ex.e_phoff + base_offset,
(char *)elf_phdata, size);
if (retval != size) {
if (retval >= 0)
Mar 4, 2015
Mar 4, 2015
206
@@ -657,7 +752,8 @@
207
if (!elf_interpreter)
Mar 4, 2015
Mar 4, 2015
208
goto out_free_ph;
209
210
211
212
213
214
215
- retval = kernel_read(bprm->file, elf_ppnt->p_offset,
+ retval = kernel_read(bprm->file,
+ elf_ppnt->p_offset + base_offset,
elf_interpreter,
elf_ppnt->p_filesz);
if (retval != elf_ppnt->p_filesz) {
Mar 4, 2015
Mar 4, 2015
216
@@ -690,8 +786,13 @@
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
goto out_free_dentry;
}
- /* Get the exec headers */
- loc->interp_elf_ex = *((struct elfhdr *)bprm->buf);
+ retval = examine_fatelf(interpreter, elf_interpreter,
+ bprm->buf, BINPRM_BUF_SIZE,
+ &interp_base_offset,
+ &loc->interp_elf_ex);
+ if (unlikely(retval < 0)) {
+ goto out_free_dentry;
+ }
break;
}
elf_ppnt++;
Mar 4, 2015
Mar 4, 2015
232
@@ -818,7 +919,7 @@
233
234
235
236
237
238
239
240
}
error = elf_map(bprm->file, load_bias + vaddr, elf_ppnt,
- elf_prot, elf_flags, 0);
+ elf_prot, elf_flags, 0, base_offset);
if (BAD_ADDR(error)) {
send_sig(SIGKILL, current, 0);
retval = IS_ERR((void *)error) ?
Mar 4, 2015
Mar 4, 2015
241
@@ -899,7 +1000,7 @@
242
243
244
245
246
247
248
249
elf_entry = load_elf_interp(&loc->interp_elf_ex,
interpreter,
&interp_map_addr,
- load_bias);
+ load_bias, interp_base_offset);
if (!IS_ERR((void *)elf_entry)) {
/*
* load_elf_interp() returns relocation
Mar 4, 2015
Mar 4, 2015
250
@@ -1016,11 +1117,19 @@
251
252
253
254
255
256
257
258
259
260
261
262
unsigned long elf_bss, bss, len;
int retval, error, i, j;
struct elfhdr elf_ex;
+ unsigned long base_offset = 0;
+ char buf[BINPRM_BUF_SIZE];
- error = -ENOEXEC;
- retval = kernel_read(file, 0, (char *)&elf_ex, sizeof(elf_ex));
- if (retval != sizeof(elf_ex))
+ retval = kernel_read(file, 0, buf, sizeof(buf));
+ if (unlikely(retval != sizeof(buf))) {
+ error = (retval >= 0) ? -EIO : retval;
Oct 3, 2009
Oct 3, 2009
263
goto out;
264
265
266
+ }
+ error = examine_fatelf(file, 0, buf, sizeof(buf), &base_offset, &elf_ex);
+ if (unlikely(retval < 0)) {
Oct 3, 2009
Oct 3, 2009
267
+ goto out;
268
269
270
271
272
+ }
+ error = -ENOEXEC;
if (memcmp(elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
goto out;
Mar 4, 2015
Mar 4, 2015
273
@@ -1042,7 +1151,8 @@
274
275
276
277
278
279
280
281
282
eppnt = elf_phdata;
error = -ENOEXEC;
- retval = kernel_read(file, elf_ex.e_phoff, (char *)eppnt, j);
+ retval = kernel_read(file, elf_ex.e_phoff + base_offset,
+ (char *)eppnt, j);
if (retval != j)
goto out_free_ph;
Mar 4, 2015
Mar 4, 2015
283
@@ -1063,7 +1173,7 @@
284
285
286
287
288
289
290
291
PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE,
(eppnt->p_offset -
- ELF_PAGEOFFSET(eppnt->p_vaddr)));
+ ELF_PAGEOFFSET(eppnt->p_vaddr)) + base_offset);
if (error != ELF_PAGESTART(eppnt->p_vaddr))
goto out_free_ph;
Mar 4, 2015
Mar 4, 2015
292
293
294
295
296
297
diff -ruBb linux-3.16.0-orig/include/uapi/linux/elf.h linux-3.16.0/include/uapi/linux/elf.h
--- linux-3.16.0-orig/include/uapi/linux/elf.h 2014-08-03 15:25:02.000000000 -0700
+++ linux-3.16.0/include/uapi/linux/elf.h 2015-03-01 20:02:48.341645861 -0800
@@ -414,4 +414,27 @@
Elf64_Word n_type; /* Content type */
} Elf64_Nhdr;
298
299
300
301
302
+/* FatELF (multiple ELF binaries in one file) support */
+#define FATELF_MAGIC (0x1F0E70FA)
+
+typedef struct fatelf_record {
Sep 17, 2009
Sep 17, 2009
303
304
+ __le16 machine; /* maps to e_machine */
+ __u8 osabi; /* maps to e_ident[EI_OSABI] */
Sep 24, 2009
Sep 24, 2009
305
+ __u8 osabi_version; /* maps to e_ident[EI_ABIVERSION] */
Sep 17, 2009
Sep 17, 2009
306
307
308
309
+ __u8 word_size; /* maps to e_ident[EI_CLASS] */
+ __u8 byte_order; /* maps to e_ident[EI_DATA] */
+ __u8 reserved0;
+ __u8 reserved1;
310
311
312
313
314
315
316
317
318
319
320
321
+ __le64 offset;
+ __le64 size;
+} fatelf_record;
+
+typedef struct fatelf_hdr {
+ __le32 magic;
+ __le16 version;
+ __u8 num_records;
+ __u8 reserved0;
+ fatelf_record records[];
+} fatelf_hdr;
+
Mar 4, 2015
Mar 4, 2015
322
323
324
325
326
327
#endif /* _UAPI_LINUX_ELF_H */
diff -ruBb linux-3.16.0-orig/kernel/module.c linux-3.16.0/kernel/module.c
--- linux-3.16.0-orig/kernel/module.c 2015-03-01 19:57:06.000000000 -0800
+++ linux-3.16.0/kernel/module.c 2015-03-01 20:02:48.341645861 -0800
@@ -172,7 +172,8 @@
EXPORT_SYMBOL(unregister_module_notifier);
Mar 4, 2015
Mar 4, 2015
329
330
331
332
333
334
335
336
337
struct load_info {
- Elf_Ehdr *hdr;
+ Elf_Ehdr *hdr_alloc; /* returned from vmalloc */
+ Elf_Ehdr *hdr; /* adjusted hdr_alloc for FatELF */
unsigned long len;
Elf_Shdr *sechdrs;
char *secstrings, *strtab;
@@ -2485,6 +2486,61 @@
return 0;
Oct 3, 2009
Oct 3, 2009
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
}
+/*
+ * See if we're a valid FatELF binary, find the right record, and
+ * return the offset of that record within the binary. Returns NULL if there's
+ * a problem, or a pointer to the real ELF header if we're okay.
+ * If we don't see the FatELF magic number, we assume this is a regular ELF
+ * binary and let the regular ELF checks handle it.
+ *
+ * This is a simplified version of examine_fatelf in fs/binfmt_elf.c
+ */
+static Elf_Ehdr *examine_fatelf_module(const unsigned char *hdr,
+ const unsigned long len)
+{
+ Elf_Ehdr elf;
+ int records, i;
+ const fatelf_hdr *fatelf = (const fatelf_hdr *) hdr;
+
+ if (likely(le32_to_cpu(fatelf->magic) != FATELF_MAGIC)) {
+ return (Elf_Ehdr *) hdr; /* not FatELF; not an error. */
+ } else if (unlikely(le16_to_cpu(fatelf->version) != 1)) {
+ return NULL; /* Unrecognized format version. */
+ }
+
+ memset(&elf, 0, sizeof (elf));
+
+ records = (int) fatelf->num_records; /* uint8, no byteswap needed */
+ for (i = 0; i < records; i++) {
+ const fatelf_record *record = &fatelf->records[i];
+
+ /* Fill in the data elf_check_arch() might care about. */
+ elf.e_ident[EI_OSABI] = record->osabi;
+ elf.e_ident[EI_CLASS] = record->word_size;
+ elf.e_ident[EI_DATA] = record->byte_order;
+ elf.e_machine = le16_to_cpu(record->machine);
+
+ if (likely(!elf_check_arch(&elf))) {
+ continue; /* Unsupported CPU architecture. */
+ } else {
+ const __u64 rec_offset = le64_to_cpu(record->offset);
+ const __u64 rec_size = le64_to_cpu(record->size);
+ const __u64 end_offset = rec_offset + rec_size;
+ const unsigned long uloff = (unsigned long) rec_offset;
+
+ if (unlikely(end_offset < rec_offset)) {
+ continue; /* overflow (corrupt file?)... */
+ } else if (unlikely(end_offset > len)) {
+ continue; /* past EOF. */
+ }
+
+ return (Elf_Ehdr *) (hdr + uloff);
+ }
+ }
+
+ return NULL; /* no binaries we could use. */
+}
+
Mar 4, 2015
Mar 4, 2015
395
396
397
398
399
/* Sets info->hdr and info->len. */
static int copy_module_from_user(const void __user *umod, unsigned long len,
struct load_info *info)
@@ -2500,15 +2556,22 @@
return err;
Oct 3, 2009
Oct 3, 2009
400
401
/* Suck in entire file: we'll want most of it. */
Mar 4, 2015
Mar 4, 2015
402
403
404
405
406
407
408
409
410
411
412
- info->hdr = vmalloc(info->len);
- if (!info->hdr)
+ info->hdr_alloc = vmalloc(info->len);
+ if (!info->hdr_alloc)
return -ENOMEM;
- if (copy_from_user(info->hdr, umod, info->len) != 0) {
- vfree(info->hdr);
+ if (copy_from_user(info->hdr_alloc, umod, info->len) != 0) {
+ vfree(info->hdr_alloc);
return -EFAULT;
Oct 3, 2009
Oct 3, 2009
413
414
}
Mar 4, 2015
Mar 4, 2015
415
416
417
418
419
+ /* returns the actual ELF header (whether or not this was FatELF). */
+ info->hdr = examine_fatelf_module((unsigned char *) info->hdr_alloc, info->len);
+ if (info->hdr == NULL) {
+ vfree(info->hdr_alloc);
+ return -ENOEXEC;
Oct 3, 2009
Oct 3, 2009
420
421
+ }
+
Mar 4, 2015
Mar 4, 2015
422
423
return 0;
}
Oct 3, 2009
Oct 3, 2009
424
Mar 4, 2015
Mar 4, 2015
425
426
427
@@ -2543,18 +2606,18 @@
goto out;
}
Oct 3, 2009
Oct 3, 2009
428
Mar 4, 2015
Mar 4, 2015
429
430
431
432
433
434
435
- info->hdr = vmalloc(stat.size);
- if (!info->hdr) {
+ info->hdr_alloc = vmalloc(stat.size);
+ if (!info->hdr_alloc) {
err = -ENOMEM;
goto out;
}
Oct 3, 2009
Oct 3, 2009
436
Mar 4, 2015
Mar 4, 2015
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
pos = 0;
while (pos < stat.size) {
- bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
+ bytes = kernel_read(f.file, pos, (char *)(info->hdr_alloc) + pos,
stat.size - pos);
if (bytes < 0) {
- vfree(info->hdr);
+ vfree(info->hdr_alloc);
err = bytes;
goto out;
}
@@ -2564,6 +2627,14 @@
}
info->len = pos;
+ /* returns the actual ELF header (whether or not this was FatELF). */
+ info->hdr = examine_fatelf_module((unsigned char *) info->hdr_alloc, info->len);
+ if (info->hdr == NULL) {
+ vfree(info->hdr_alloc);
+ err = -ENOEXEC;
+ goto out;
+ }
+
out:
fdput(f);
return err;
@@ -2571,7 +2642,7 @@
static void free_copy(struct load_info *info)
{
- vfree(info->hdr);
+ vfree(info->hdr_alloc);
}
Oct 15, 2009
Oct 15, 2009
470
Mar 4, 2015
Mar 4, 2015
471
static int rewrite_section_headers(struct load_info *info, int flags)