8808c6bf250141995cdd4af8c965b08fdb2f8164
[linux-flexiantxendom0-3.2.10.git] / scripts / modpost.h
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include <string.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <sys/mman.h>
8 #include <fcntl.h>
9 #include <unistd.h>
10 #include <elf.h>
11
12 #include "elfconfig.h"
13
14 #if KERNEL_ELFCLASS == ELFCLASS32
15
16 #define Elf_Ehdr    Elf32_Ehdr 
17 #define Elf_Shdr    Elf32_Shdr 
18 #define Elf_Sym     Elf32_Sym
19 #define ELF_ST_BIND ELF32_ST_BIND
20 #define ELF_ST_TYPE ELF32_ST_TYPE
21
22 #else
23
24 #define Elf_Ehdr    Elf64_Ehdr 
25 #define Elf_Shdr    Elf64_Shdr 
26 #define Elf_Sym     Elf64_Sym
27 #define ELF_ST_BIND ELF64_ST_BIND
28 #define ELF_ST_TYPE ELF64_ST_TYPE
29
30 #endif
31
32 #if KERNEL_ELFDATA != HOST_ELFDATA
33
34 static void __endian(const void *src, void *dest, unsigned int size)
35 {
36         unsigned int i;
37         for (i = 0; i < size; i++)
38                 ((unsigned char*)dest)[i] = ((unsigned char*)src)[size - i-1];
39 }
40
41
42
43 #define TO_NATIVE(x)                                            \
44 ({                                                              \
45         typeof(x) __x;                                          \
46         __endian(&(x), &(__x), sizeof(__x));                    \
47         __x;                                                    \
48 })
49
50 #else /* endianness matches */
51
52 #define TO_NATIVE(x) (x)
53
54 #endif
55
56 struct buffer {
57         char *p;
58         int pos;
59         int size;
60 };
61
62 void __attribute__((format(printf, 2, 3)))
63 buf_printf(struct buffer *buf, const char *fmt, ...);
64
65 void
66 buf_write(struct buffer *buf, const char *s, int len);
67
68 struct module {
69         struct module *next;
70         const char *name;
71         struct symbol *unres;
72         int seen;
73         int skip;
74         struct buffer dev_table_buf;
75 };
76
77 struct elf_info {
78         unsigned long size;
79         Elf_Ehdr     *hdr;
80         Elf_Shdr     *sechdrs;
81         Elf_Sym      *symtab_start;
82         Elf_Sym      *symtab_stop;
83         const char   *strtab;
84         char         *modinfo;
85         unsigned int modinfo_len;
86 };
87
88 void handle_moddevtable(struct module *mod, struct elf_info *info,
89                         Elf_Sym *sym, const char *symname);
90
91 void add_moddevtable(struct buffer *buf, struct module *mod);
92
93 void maybe_frob_version(const char *modfilename,
94                         void *modinfo,
95                         unsigned long modinfo_len,
96                         unsigned long modinfo_offset);
97
98 void *grab_file(const char *filename, unsigned long *size);
99 void release_file(void *file, unsigned long size);