[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH livepatch-build-tools] create-diff-object: Ignore .init sections
The .init sections must not be considered for patching regardless of whether they are CHANGED or NEW. Explicitely detect and ignore all such sections, before marking ignored sections as SAME. Signed-off-by: Pawel Wieczorkiewicz <wipawel@xxxxxxxxx> --- common.c | 7 +++++++ common.h | 1 + create-diff-object.c | 15 +++++++++++++++ 3 files changed, 23 insertions(+) diff --git a/common.c b/common.c index 8f553ea..68a71f7 100644 --- a/common.c +++ b/common.c @@ -256,6 +256,13 @@ int is_rodata_section(struct section *sec) !strncmp(sec->name, ".rodata", 7); } +int is_init_section(struct section *sec) +{ + return sec->sh.sh_type == SHT_PROGBITS && + (sec->sh.sh_flags & SHF_ALLOC) && + !strncmp(sec->name, ".init", 5); +} + int is_debug_section(struct section *sec) { char *name; diff --git a/common.h b/common.h index b6489db..02c9b7b 100644 --- a/common.h +++ b/common.h @@ -160,6 +160,7 @@ struct symbol *find_symbol_by_name(struct list_head *list, const char *name); int is_text_section(struct section *sec); int is_rodata_section(struct section *sec); +int is_init_section(struct section *sec); int is_debug_section(struct section *sec); int is_rela_section(struct section *sec); int is_standard_section(struct section *sec); diff --git a/create-diff-object.c b/create-diff-object.c index abf3cc7..1ce5c09 100644 --- a/create-diff-object.c +++ b/create-diff-object.c @@ -881,6 +881,19 @@ static void kpatch_mark_ignored_functions_same(struct kpatch_elf *kelf) } } +static void livepatch_ignore_init_sections(struct kpatch_elf *kelf) +{ + struct section *sec; + + list_for_each_entry(sec, &kelf->sections, list) { + if (is_init_section(sec)) { + log_normal("WARNING: Explicitly ignoring .init section: %s\n", + sec->name); + sec->ignore = 1; + } + } +} + static void kpatch_mark_ignored_sections(struct kpatch_elf *kelf) { struct section *sec, *strsec, *ignoresec; @@ -2332,6 +2345,8 @@ int main(int argc, char *argv[]) * We access its sections via the twin pointers in the * section, symbol, and rela lists of kelf_patched. */ + log_debug("Ignore .init sections\n"); + livepatch_ignore_init_sections(kelf_patched); log_debug("Mark ignored sections\n"); kpatch_mark_ignored_sections(kelf_patched); log_debug("Compare correlated elements\n"); -- 2.16.5 Amazon Development Center Germany GmbH Krausenstr. 38 10117 Berlin Geschaeftsfuehrung: Christian Schlaeger, Ralf Herbrich Eingetragen am Amtsgericht Charlottenburg unter HRB 149173 B Sitz: Berlin Ust-ID: DE 289 237 879 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |