@@ -19,11 +19,17 @@ extern const char *xen_extra_version(void);
void apply_hook(void)
{
printk(KERN_DEBUG "Hook executing.\n");
+ /* The hook is called _after_ the patching. */
+ if ( strcmp(xen_extra_version(), "Hello World") )
+ BUG();
}
void revert_hook(void)
{
printk(KERN_DEBUG "Hook unloaded.\n");
+ /* The hook is called _after_ the unpatching. */
+ if ( !strcmp(xen_extra_version(), "Hello World") )
+ BUG();
}
XSPLICE_LOAD_HOOK(apply_hook);
@@ -49,6 +49,7 @@
#include <xen/kexec.h>
#include <xen/trace.h>
#include <xen/paging.h>
+#include <xen/xsplice.h>
#include <xen/watchdog.h>
#include <asm/system.h>
#include <asm/io.h>
@@ -1196,7 +1197,7 @@ void do_invalid_op(struct cpu_user_regs *regs)
/* WARN, BUG or ASSERT: decode the filename pointer and line number. */
filename = bug_ptr(bug);
- if ( !is_kernel(filename) )
+ if ( !is_kernel(filename) && !is_patch(filename) )
goto die;
fixup = strlen(filename);
if ( fixup > 50 )
@@ -1223,7 +1224,7 @@ void do_invalid_op(struct cpu_user_regs *regs)
case BUGFRAME_assert:
/* ASSERT: decode the predicate string pointer. */
predicate = bug_msg(bug);
- if ( !is_kernel(predicate) )
+ if ( !is_kernel(predicate) && !is_patch(predicate) )
predicate = "<unknown>";
printk("Assertion '%s' failed at %s%s:%d\n",
@@ -117,6 +117,25 @@ static bool_t ignore_region(unsigned int flag, unsigned long priv)
return !(flag & priv);
}
+
+bool_t is_patch(const void *ptr)
+{
+ struct payload *data;
+
+ /*
+ * No locking since this list is only ever changed during apply or revert
+ * context.
+ */
+ list_for_each_entry ( data, &applied_list, applied_list )
+ {
+ if ( ptr >= data->payload_address &&
+ ptr < (data->payload_address + data->core_size) )
+ return 1;
+ }
+
+ return 0;
+}
+
uint64_t xsplice_symbols_lookup_by_name(const char *symname)
{
struct payload *data;
@@ -468,6 +487,29 @@ static int prepare_payload(struct payload *payload,
region->start = (unsigned long)payload->payload_address;
region->end = (unsigned long)(payload->payload_address + payload->core_text_size);
+
+ /* Optional sections. */
+ for ( i = 0; i < BUGFRAME_NR; i++ )
+ {
+ char str[14];
+
+ snprintf(str, sizeof str, ".bug_frames.%u", i);
+ sec = xsplice_elf_sec_by_name(elf, str);
+ if ( !sec )
+ continue;
+
+ if ( !sec->sec->sh_size ||
+ (sec->sec->sh_size % sizeof (struct bug_frame)) )
+ {
+ dprintk(XENLOG_DEBUG, "%s%s: Wrong size of .bug_frames.%u!\n",
+ XSPLICE, elf->name, i);
+ return -EINVAL;
+ }
+ region->frame[i].bugs = (struct bug_frame *)sec->load_addr;
+ region->frame[i].n_bugs = sec->sec->sh_size / sizeof(struct bug_frame);
+ if ( !(region->priv & CHECKING_BUG_FRAME) )
+ region->priv |= CHECKING_BUG_FRAME;
+ }
return 0;
}
@@ -42,6 +42,7 @@ struct xsplice_symbol {
int xsplice_op(struct xen_sysctl_xsplice_op *);
void check_for_xsplice_work(void);
+bool_t is_patch(const void *addr);
uint64_t xsplice_symbols_lookup_by_name(const char *symname);
/* Arch hooks. */
@@ -104,6 +105,10 @@ static inline int xsplice_op(struct xen_sysctl_xsplice_op *op)
return -ENOSYS;
}
static inline void check_for_xsplice_work(void) { };
+static inline bool_t is_patch(const void *addr)
+{
+ return 0;
+}
#endif /* CONFIG_XSPLICE */
#endif /* __XEN_XSPLICE_H__ */