设为首页 收藏本站
查看: 824|回复: 0

[经验分享] Physical device interrupt handling in XEN

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2015-10-11 13:52:34 | 显示全部楼层 |阅读模式
In Xen, only the Hypervisor has an access to thehardware so that to achieve isolation (it is dangerous to share thehardware and let other domains access directly hardware devicessimultaneously).
Let's take a little walkthrough dealing with Xen interrupts:
Handlinginterrupts in Xen is done by using event channels. Each domain can holdup to 1024 events. An event channel can have 2 flags associated with it: pending and mask. The mask flag can be updated only by guests. Thehypervisor cannot update it. These flags are not part of the eventchannel structure itself. (struct evtchn is defined in xen/include/xen/sched.h). There are 2 arrays in struct shared_info which contains these flags:evtchn_pending[] and evtchn_mask[] ; each holds 32 elements. (file xen/include/public/xen.h)
(The shared_info is a member in domain struct; it is the domain  shared data area).
TBD: add info about event selectors (evtchn_pending_sel in vcpu_info).
Registration (or binding) of irqs in guest domains:
The guest OS calls init_IRQ() when it boots (start_kernel() method calls init_IRQ() ; file init/main.c).
(init_IRQ() is in file sparse/arch/xen/kernel/evtchn.c)
There can be 256 physical irqs; so there is an array called  irq_desc with 256 entries. (file sparse/include/linux/irq.h)
All elements in this array are initialized in init_IRQ() so that their status is disabled (IRQ_DISABLED).
Now, when a physical driver starts it usually calls request_irq().
This method eventually calls setup_irq() (both in sparse/kernel/irq/manage.c). which calls startup_pirq().
startup_pirq()send a hypercall to the hypervisor (HYPERVISOR_event_channel_op) inorder to bind the physical irq (pirq) . The hypercall is of typeEVTCHNOP_bind_pirq. See: startup_pirq() (file sparse/arch/xen/kernel/evtchn.c)
On the Hypervisor side, handling this hypervisor call is done in: evtchn_bind_pirq() method (file /common/event_channel.c) which  calls pirq_guest_bind() (file arch/x86/irq.c).The pirq_guest_bind() changes the status of the corresponding irq_descarray element to be enabled (~IRQ_DISABLED). it also calls startup()method.
Nowwhen an interrupts arrives from the controller (the APIC), we arrive atdo_IRQ() method as is also in usual linux kernel (also inarch/x86/irq.c). The Hypervisor handles only timer and serialinterrupts. Other interrupts are passed to the domains by calling_do_IRQ_guest() (In fact, the IRQ_GUEST flag is set for all interruptsexcept for timer and serial interrupts). _do_IRQ_guest() send theinterrupt by calling send_guest_pirq() to all guests who are registeredon this IRQ. The send_guest_pirq() creates an event channel (aninstance of evtchn) and sets the pending flag of this event channel.(by calling evtchn_set_pending()) Then, asynchronously, Xen will notifythis domain regarding this interrupt (unless it is masked).
  TBD: shared interrupts; avoiding problems with shared interrupts when  using PCI express.
             版权声明:本文为博主原创文章,未经博主允许不得转载。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-125487-1-1.html 上篇帖子: linux 安装XEN 下篇帖子: 限制 Xen Dom0 的内存
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表