From: Int0x82 <int0x82@gmail.com>
To: xen-devel@lists.xensource.com
Subject: Print ebx parameter VM syscalls
Date: Fri, 19 Feb 2010 14:05:03 +0100 [thread overview]
Message-ID: <5d8428621002190505o1522a1fbq13a31ac9265a1eff@mail.gmail.com> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 1176 bytes --]
My mission is intercept VM syscall insmod (sys_init_module) from hypervisor.
I've dirty xen code to try, specifically in do_guest_trap function in
arch/x86/traps.c Xen file. In this function I've added this small part of
code:
unit32_t a;
if (v->domain->domain_id != 0) { /* if domain is not Dom0 */
a=regs->eax;
if (a == 128) {
printk("I've intercepted sys_init_module");
}
}
In this way I'm able to intercept the syscall sys_init_module (number 128)
from any DomU, but my problem now is to intercept the insmod parameter and
print it with printk.
I've tried to assign a
char __user *myvar = (char __user *)regs->ebx
but I can't print it with
printk("%s",myvar)
This is what happen: when I start my domU and happen an insmod in boot time,
my dom0 reboots itself.
Is it true that parameter of my syscall is in regs->ebx register?? What is
the way to print it in human readable (for example if in DomU I print in
shell "insmod mymodule" I'd like print "mymodule" from hypervisor, not the
hex value like 0804b018, but the string).
Can you help me? I'd like only print insmod parameter. I use 3.2.1 xen +
linux-2.6.18-xen.hg.
Thanks a lot.
Elena
[-- Attachment #1.2: Type: text/html, Size: 1378 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
reply other threads:[~2010-02-19 13:05 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5d8428621002190505o1522a1fbq13a31ac9265a1eff@mail.gmail.com \
--to=int0x82@gmail.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).