From: Vivek Goyal <vgoyal@xxxxxxxxxx> Subject: Re: [PATCH] kdump, x86: report actual value of phys_base in VMCOREINFO Date: Thu, 13 Nov 2014 09:25:48 -0500 > On Thu, Nov 13, 2014 at 05:30:21PM +0900, HATAYAMA, Daisuke wrote: >> >> >> (2014/11/13 17:06), Petr Tesarik wrote: >> >On Thu, 13 Nov 2014 09:17:09 +0900 (JST) >> >HATAYAMA Daisuke <d.hatayama at jp.fujitsu.com> wrote: >> > >> >>From: Vivek Goyal <vgoyal at redhat.com> >> >>Subject: Re: [PATCH] kdump, x86: report actual value of phys_base in VMCOREINFO >> >>Date: Wed, 12 Nov 2014 17:12:05 -0500 >> >> >> >>>On Wed, Nov 12, 2014 at 03:40:42PM +0900, HATAYAMA Daisuke wrote: >> >>>>Currently, VMCOREINFO note information reports the virtual address of >> >>>>phys_base that is assigned to symbol phys_base. But this doesn't make >> >>>>sense because to refer to value of the phys_base, it's necessary to >> >>>>get the value of phys_base itself we are now about to refer to. >> >>>> >> >>> >> >>>Hi Hatayama, >> >>> >> >>>/proc/vmcore ELF headers have virtual address information and using >> >>>that you should be able to read actual value of phys_base. gdb deals >> >>>with virtual addresses all the time and can read value of any symbol >> >>>using those headers. >> >>> >> >>>So I am not sure what's the need for exporting actual value of >> >>>phys_base. >> >>> >> >> >> >>Sorry, my logic in the patch description was wrong. For /proc/vmcore, >> >>there's enough information for makedumpdile to get phys_base. It's >> >>correct. The problem here is that other crash dump mechanisms that run >> >>outside Linux kernel independently don't have information to get >> >>phys_base. >> > >> >Yes, but these mechanisms won't be able to read VMCOREINFO either, will >> >they? >> > >> >> I don't intend such sophisticated function only by VMCOREINFO. >> Search vmcore for VMCOREINFO using strings + grep before opening it by crash. >> I intend that only here. > > I think this is very crude and not proper way to get to vmcoreinfo. Can I agree it's crude, but it's useful enough for my usecase. > you give more context. What are those mechanisms and what are you trying > to do. > I after all write the same thing in the patch description... I mean qemu dump, xendump (and other hypervisor dumps), firmware dumps implemented on each vendor system for the crash dump mechanism. But there's no prepared information now. So, crash utility has made effort to calculate phys_base from the existing information. One example is to check if how far linux_banner string is apart from where it actually is in vmcore, and another is to walk page tables via CR4 register if it is included in note information of the crash dump mechanism's environment. There's no gurantee that these always work well. For example, because these crash dump mechanisms run independently of Linux kernel, it could be when CPU moves to some firmware code. Then, CR4 could point at differnet page table. Looking at VMCOREINFO, there's already phys_base information but it's symbol value only and it doesn't make sense. So it should be corrected. I think this is natural. Also, I think it important to keep externally running crash dump mechansms as independent as possible. If they depend on linux kernel, it could reduce robustoness of their functionality. In case of phys_base, if we added a mechanism to get phys_base, it would mean that the crash dump mechisms doesn't work well until they got phys_base. For robustness, I think it best to make Linux kernel put necessary information anywhere and to make users to use them independently. -- Thanks. HATAYAMA, Daisuke