* Re: [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel [not found] ` <20160527040355.GL20774@linaro.org> @ 2016-05-27 5:07 ` Pratyush Anand 2016-05-27 6:43 ` AKASHI Takahiro 2016-05-27 8:10 ` Atsushi Kumagai 0 siblings, 2 replies; 4+ messages in thread From: Pratyush Anand @ 2016-05-27 5:07 UTC (permalink / raw) To: Discussion list for crash utility usage, maintenance and development Cc: AKASHI Takahiro, Atsushi Kumagai, kexec On 27/05/2016:01:03:56 PM, AKASHI Takahiro wrote: > On Thu, May 26, 2016 at 03:09:55PM +0530, Pratyush Anand wrote: > > On 26/05/2016:05:13:30 PM, AKASHI Takahiro wrote: > > > On Wed, May 25, 2016 at 10:28:10AM -0400, Dave Anderson wrote: > > > > [...] > > > > > > > (This is the reason that I don't think we need a VMCOREINFO for > > > > > CONFIG_RANDOMIZE_BASE.) > > > > > > > > Well, as long as there's a way to avoid that unnecessary/confusing > > > > warning message for non-KASLR new-vmemmap kernels. > > > > > > > > I also wonder whether makedumpfile could use it? > > > > > > -> Pratyush? > > > > Since second kernel's initrd cannot include a large file like VMLINUX, so > > makedumpfile should also work without passing '-x vmlinux'. Therefore, > > makedumpfile will need some minimal symbol's values to be passed in vmcore. > > I understand. > (but I wonder why makedumpfile doesn't utilize System.map nor .config.) So far makedumpfile has been designed to work only with vmcore as input in it's minimal form (specially in second kernel). +Atsushi & makedumpfile list: He will have better idea about it. Moreover, there are few variables, whose values are needed in order to translate phys to virt and vice versa. So, passing their symbol address would not be of much help. For example, we need to know value of kimage_voffset for __pa(), and so symbol address of kimage_voffset will not help. > > > IIUC, then you need to pass CONFIG_RANDOMIZE_BASE in order to calculate > > PHYS_OFFSET. If yes, then why not to pass PHYS_OFFSET itself into vmcore. > > No, as I said in the discussions, I don't think that we need > CONFIG_RANDOMIZE_BASE *if* we can read a kernel symbol's value > from /proc/vmcore. What I understand that, we can read only those symbols/variables from vmcore which have been embedded using VMCOREINFO_xxxx macros (if we do not pass vmlinux, like in second kernel). Atsushi, please correct me if I am wrong. > > > Following numbers in vmcore [1] is helping me out in implementing __pa() and > > __va() for all page table sizes and levels. > > > > VMCOREINFO_NUMBER(pgtable_levels); > > VMCOREINFO_NUMBER(va_bits); > > VMCOREINFO_NUMBER(page_shift); > > Since We already have VMCOREINFO(PAGESIZE), we won't nedd page_shift. Yes, agreed. > As well, pgtable_levels can be determined by va_bits and PAGESIZE. > See arch/arm64/Kconfig. Yes, agreed. > > > VMCOREINFO_NUMBER(phys_offset); > > VMCOREINFO_NUMBER(config_kasan); > > Let me ask some questions. > * What kind of data in vmcore and how does makedumpfile access > without vmlinux nor System.map? Well, I do not have the deep idea, again Atsushi can help here. makedumpfile mainly compresses vmcore (ram image of panicked kernel), additionally it also excludes unnecessary pages for analysis. It will need symbol information to exclude unnecessary pages, where vmlinux is needed mainly. So, normally we do not perform erase(exclude) functionality in second kernel. It is being performed latter, on a compressed dumpfile. > * Why do you need CONFIG_KASAN? KASAN_SHADOW_SIZE is dependent on CONFIG_KASAN. MODULES_VADDR is dependent on KASAN_SHADOW_SIZE. We need MODULES_VADDR,VMALLOC_START,VMEMMAP_START and their END addresses in order to define whether a virtual to physical translation can be obtained using linear mapping or need to read from page table instead. Thanks for the questions and inputs. Those are helpful. :-) ~Pratyush > > Thanks, > -Takahiro AKASHI > > > VMCOREINFO_NUMBER(kimage_voffset); > > > > ~Pratyush > > > > [1] > > https://github.com/pratyushanand/linux/blob/7011e478aae3e568cc8dca15b6c128fe728416f7/arch/arm64/kernel/machine_kexec.c#L275 > > > > -- > > Crash-utility mailing list > > Crash-utility@redhat.com > > https://www.redhat.com/mailman/listinfo/crash-utility > > -- > Thanks, > -Takahiro AKASHI > > -- > Crash-utility mailing list > Crash-utility@redhat.com > https://www.redhat.com/mailman/listinfo/crash-utility _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel 2016-05-27 5:07 ` [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel Pratyush Anand @ 2016-05-27 6:43 ` AKASHI Takahiro 2016-05-27 7:28 ` Pratyush Anand 2016-05-27 8:10 ` Atsushi Kumagai 1 sibling, 1 reply; 4+ messages in thread From: AKASHI Takahiro @ 2016-05-27 6:43 UTC (permalink / raw) To: Pratyush Anand Cc: Atsushi Kumagai, kexec, Discussion list for crash utility usage, maintenance and development On Fri, May 27, 2016 at 10:37:38AM +0530, Pratyush Anand wrote: > On 27/05/2016:01:03:56 PM, AKASHI Takahiro wrote: > > On Thu, May 26, 2016 at 03:09:55PM +0530, Pratyush Anand wrote: > > > On 26/05/2016:05:13:30 PM, AKASHI Takahiro wrote: > > > > On Wed, May 25, 2016 at 10:28:10AM -0400, Dave Anderson wrote: > > > > > > [...] > > > > > > > > > (This is the reason that I don't think we need a VMCOREINFO for > > > > > > CONFIG_RANDOMIZE_BASE.) > > > > > > > > > > Well, as long as there's a way to avoid that unnecessary/confusing > > > > > warning message for non-KASLR new-vmemmap kernels. > > > > > > > > > > I also wonder whether makedumpfile could use it? > > > > > > > > -> Pratyush? > > > > > > Since second kernel's initrd cannot include a large file like VMLINUX, so > > > makedumpfile should also work without passing '-x vmlinux'. Therefore, > > > makedumpfile will need some minimal symbol's values to be passed in vmcore. > > > > I understand. > > (but I wonder why makedumpfile doesn't utilize System.map nor .config.) > > So far makedumpfile has been designed to work only with vmcore as input in it's > minimal form (specially in second kernel). > +Atsushi & makedumpfile list: He will have better idea about it. > > Moreover, there are few variables, whose values are needed in order to translate > phys to virt and vice versa. So, passing their symbol address would not be of > much help. For example, we need to know value of kimage_voffset for __pa(), and > so symbol address of kimage_voffset will not help. I do agree to adding any vmcoreinfo *if* it is really needed, and so I'm asking why you need it. What I'm thinking now is that I would add a minimal set of vmcoreinfo which are necessary for crash util to work (for /proc/vmcore, not a live system) and then, if you want to add anything else, you can post your own patch. Make sense? But I think ... If we would eventually add, say, "NUMBER(va_bits)", makedumpfile() will use it, but crash util doen't. Looks a bit odd. -> Dave, do you have any opinion here? > > > > > IIUC, then you need to pass CONFIG_RANDOMIZE_BASE in order to calculate > > > PHYS_OFFSET. If yes, then why not to pass PHYS_OFFSET itself into vmcore. > > > > No, as I said in the discussions, I don't think that we need > > CONFIG_RANDOMIZE_BASE *if* we can read a kernel symbol's value > > from /proc/vmcore. > > What I understand that, we can read only those symbols/variables from vmcore > which have been embedded using VMCOREINFO_xxxx macros (if we do not pass > vmlinux, like in second kernel). Atsushi, please correct me if I am wrong. > > > > > > Following numbers in vmcore [1] is helping me out in implementing __pa() and > > > __va() for all page table sizes and levels. > > > > > > VMCOREINFO_NUMBER(pgtable_levels); > > > VMCOREINFO_NUMBER(va_bits); > > > VMCOREINFO_NUMBER(page_shift); > > > > Since We already have VMCOREINFO(PAGESIZE), we won't nedd page_shift. > > Yes, agreed. > > > As well, pgtable_levels can be determined by va_bits and PAGESIZE. > > See arch/arm64/Kconfig. > > Yes, agreed. > > > > > > VMCOREINFO_NUMBER(phys_offset); > > > VMCOREINFO_NUMBER(config_kasan); > > > > Let me ask some questions. > > * What kind of data in vmcore and how does makedumpfile access > > without vmlinux nor System.map? > > Well, I do not have the deep idea, again Atsushi can help here. > > makedumpfile mainly compresses vmcore (ram image of panicked kernel), > additionally it also excludes unnecessary pages for analysis. It will need > symbol information to exclude unnecessary pages, where vmlinux is needed mainly. > So, normally we do not perform erase(exclude) functionality in second kernel. It > is being performed latter, on a compressed dumpfile. Well, I don't look into the makedumpfile code in details, it only accesses MMU tables and struct page data. So you need a few *well-known* symbols' values in vmcore. > > * Why do you need CONFIG_KASAN? > > KASAN_SHADOW_SIZE is dependent on CONFIG_KASAN. > MODULES_VADDR is dependent on KASAN_SHADOW_SIZE. > > We need MODULES_VADDR,VMALLOC_START,VMEMMAP_START and their END addresses in > order to define whether a virtual to physical translation can be obtained using > linear mapping or need to read from page table instead. I guess that we can check for this simply like: vaddr >= PAGE_OFFSET || ("_text" <= vaddr < "_end") (Again, *if* we can access kernel symbols' values.) Thanks, -Takahiro AKASHI > Thanks for the questions and inputs. Those are helpful. :-) > ~Pratyush > > > > Thanks, > > -Takahiro AKASHI > > > > > VMCOREINFO_NUMBER(kimage_voffset); > > > > > > ~Pratyush > > > > > > [1] > > > https://github.com/pratyushanand/linux/blob/7011e478aae3e568cc8dca15b6c128fe728416f7/arch/arm64/kernel/machine_kexec.c#L275 > > > > > > -- > > > Crash-utility mailing list > > > Crash-utility@redhat.com > > > https://www.redhat.com/mailman/listinfo/crash-utility > > > > -- > > Thanks, > > -Takahiro AKASHI > > > > -- > > Crash-utility mailing list > > Crash-utility@redhat.com > > https://www.redhat.com/mailman/listinfo/crash-utility -- Thanks, -Takahiro AKASHI _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel 2016-05-27 6:43 ` AKASHI Takahiro @ 2016-05-27 7:28 ` Pratyush Anand 0 siblings, 0 replies; 4+ messages in thread From: Pratyush Anand @ 2016-05-27 7:28 UTC (permalink / raw) To: AKASHI Takahiro, Discussion list for crash utility usage, maintenance and development, Atsushi Kumagai, kexec On 27/05/2016:03:43:33 PM, AKASHI Takahiro wrote: > On Fri, May 27, 2016 at 10:37:38AM +0530, Pratyush Anand wrote: > > On 27/05/2016:01:03:56 PM, AKASHI Takahiro wrote: > > > On Thu, May 26, 2016 at 03:09:55PM +0530, Pratyush Anand wrote: > > > > On 26/05/2016:05:13:30 PM, AKASHI Takahiro wrote: > > > > > On Wed, May 25, 2016 at 10:28:10AM -0400, Dave Anderson wrote: > > > > > > > > [...] > > > > > > > > > > > (This is the reason that I don't think we need a VMCOREINFO for > > > > > > > CONFIG_RANDOMIZE_BASE.) > > > > > > > > > > > > Well, as long as there's a way to avoid that unnecessary/confusing > > > > > > warning message for non-KASLR new-vmemmap kernels. > > > > > > > > > > > > I also wonder whether makedumpfile could use it? > > > > > > > > > > -> Pratyush? > > > > > > > > Since second kernel's initrd cannot include a large file like VMLINUX, so > > > > makedumpfile should also work without passing '-x vmlinux'. Therefore, > > > > makedumpfile will need some minimal symbol's values to be passed in vmcore. > > > > > > I understand. > > > (but I wonder why makedumpfile doesn't utilize System.map nor .config.) > > > > So far makedumpfile has been designed to work only with vmcore as input in it's > > minimal form (specially in second kernel). > > +Atsushi & makedumpfile list: He will have better idea about it. > > > > Moreover, there are few variables, whose values are needed in order to translate > > phys to virt and vice versa. So, passing their symbol address would not be of > > much help. For example, we need to know value of kimage_voffset for __pa(), and > > so symbol address of kimage_voffset will not help. > > I do agree to adding any vmcoreinfo *if* it is really needed, > and so I'm asking why you need it. > > What I'm thinking now is that I would add a minimal set of vmcoreinfo > which are necessary for crash util to work (for /proc/vmcore, not a live > system) and then, if you want to add anything else, you can post your > own patch. > > Make sense? Yes, No issue. In fact, I do not have any plan to send arm64 makedulpfile enhancement either until kernel support is upstreamed. > > But I think ... > If we would eventually add, say, "NUMBER(va_bits)", makedumpfile() will > use it, but crash util doen't. Looks a bit odd. > -> Dave, do you have any opinion here? > > > > > > > > IIUC, then you need to pass CONFIG_RANDOMIZE_BASE in order to calculate > > > > PHYS_OFFSET. If yes, then why not to pass PHYS_OFFSET itself into vmcore. > > > > > > No, as I said in the discussions, I don't think that we need > > > CONFIG_RANDOMIZE_BASE *if* we can read a kernel symbol's value > > > from /proc/vmcore. > > > > What I understand that, we can read only those symbols/variables from vmcore > > which have been embedded using VMCOREINFO_xxxx macros (if we do not pass > > vmlinux, like in second kernel). Atsushi, please correct me if I am wrong. > > > > > > > > > Following numbers in vmcore [1] is helping me out in implementing __pa() and > > > > __va() for all page table sizes and levels. > > > > > > > > VMCOREINFO_NUMBER(pgtable_levels); > > > > VMCOREINFO_NUMBER(va_bits); > > > > VMCOREINFO_NUMBER(page_shift); > > > > > > Since We already have VMCOREINFO(PAGESIZE), we won't nedd page_shift. > > > > Yes, agreed. > > > > > As well, pgtable_levels can be determined by va_bits and PAGESIZE. > > > See arch/arm64/Kconfig. > > > > Yes, agreed. > > > > > > > > > VMCOREINFO_NUMBER(phys_offset); > > > > VMCOREINFO_NUMBER(config_kasan); > > > > > > Let me ask some questions. > > > * What kind of data in vmcore and how does makedumpfile access > > > without vmlinux nor System.map? > > > > Well, I do not have the deep idea, again Atsushi can help here. > > > > makedumpfile mainly compresses vmcore (ram image of panicked kernel), > > additionally it also excludes unnecessary pages for analysis. It will need > > symbol information to exclude unnecessary pages, where vmlinux is needed mainly. > > So, normally we do not perform erase(exclude) functionality in second kernel. It > > is being performed latter, on a compressed dumpfile. > > Well, I don't look into the makedumpfile code in details, it only accesses > MMU tables and struct page data. So you need a few *well-known* symbols' > values in vmcore. > > > > * Why do you need CONFIG_KASAN? > > > > KASAN_SHADOW_SIZE is dependent on CONFIG_KASAN. > > MODULES_VADDR is dependent on KASAN_SHADOW_SIZE. > > > > We need MODULES_VADDR,VMALLOC_START,VMEMMAP_START and their END addresses in > > order to define whether a virtual to physical translation can be obtained using > > linear mapping or need to read from page table instead. > > I guess that we can check for this simply like: > vaddr >= PAGE_OFFSET || ("_text" <= vaddr < "_end") > (Again, *if* we can access kernel symbols' values.) Unfortunately, We have _stext in vmcore but we do not have _text and _end. However, instead of passing CONFIG_KASAN and then calculating module, vmalloc and vmemmap areas in makedumpfile, it would be cleaner to pass _text and _end. Then, makedumpfile will be immune to changes in kernel for memory layout of these spaces. ~Pratyush > > Thanks, > -Takahiro AKASHI > > > Thanks for the questions and inputs. Those are helpful. :-) > > ~Pratyush > > > > > > Thanks, > > > -Takahiro AKASHI > > > > > > > VMCOREINFO_NUMBER(kimage_voffset); > > > > > > > > ~Pratyush > > > > > > > > [1] > > > > https://github.com/pratyushanand/linux/blob/7011e478aae3e568cc8dca15b6c128fe728416f7/arch/arm64/kernel/machine_kexec.c#L275 > > > > > > > > -- > > > > Crash-utility mailing list > > > > Crash-utility@redhat.com > > > > https://www.redhat.com/mailman/listinfo/crash-utility > > > > > > -- > > > Thanks, > > > -Takahiro AKASHI > > > > > > -- > > > Crash-utility mailing list > > > Crash-utility@redhat.com > > > https://www.redhat.com/mailman/listinfo/crash-utility > > -- > Thanks, > -Takahiro AKASHI _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec ^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel 2016-05-27 5:07 ` [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel Pratyush Anand 2016-05-27 6:43 ` AKASHI Takahiro @ 2016-05-27 8:10 ` Atsushi Kumagai 1 sibling, 0 replies; 4+ messages in thread From: Atsushi Kumagai @ 2016-05-27 8:10 UTC (permalink / raw) To: Pratyush Anand, Discussion list for crash utility usage, maintenance and development Cc: AKASHI Takahiro, kexec@lists.infradead.org Hello, >On 27/05/2016:01:03:56 PM, AKASHI Takahiro wrote: >> On Thu, May 26, 2016 at 03:09:55PM +0530, Pratyush Anand wrote: >> > On 26/05/2016:05:13:30 PM, AKASHI Takahiro wrote: >> > > On Wed, May 25, 2016 at 10:28:10AM -0400, Dave Anderson wrote: >> > >> > [...] >> > >> > > > > (This is the reason that I don't think we need a VMCOREINFO for >> > > > > CONFIG_RANDOMIZE_BASE.) >> > > > >> > > > Well, as long as there's a way to avoid that unnecessary/confusing >> > > > warning message for non-KASLR new-vmemmap kernels. >> > > > >> > > > I also wonder whether makedumpfile could use it? >> > > >> > > -> Pratyush? >> > >> > Since second kernel's initrd cannot include a large file like VMLINUX, so >> > makedumpfile should also work without passing '-x vmlinux'. Therefore, >> > makedumpfile will need some minimal symbol's values to be passed in vmcore. >> >> I understand. >> (but I wonder why makedumpfile doesn't utilize System.map nor .config.) > >So far makedumpfile has been designed to work only with vmcore as input in it's >minimal form (specially in second kernel). >+Atsushi & makedumpfile list: He will have better idea about it. I'm not the designer, but I think it was designed to get robustness. If /proc/vmcore itself provides the stuffs for analysis, it prevents the inconsistency between passed symbol list(like System.map) and actual kernel memory image. Additionally, makedumpfile requires not only symbol address list but struct member's offset, struct size and enum number. So vmcoreinfo is needed anyway. >Moreover, there are few variables, whose values are needed in order to translate >phys to virt and vice versa. So, passing their symbol address would not be of >much help. For example, we need to know value of kimage_voffset for __pa(), and >so symbol address of kimage_voffset will not help. > >> >> > IIUC, then you need to pass CONFIG_RANDOMIZE_BASE in order to calculate >> > PHYS_OFFSET. If yes, then why not to pass PHYS_OFFSET itself into vmcore. >> >> No, as I said in the discussions, I don't think that we need >> CONFIG_RANDOMIZE_BASE *if* we can read a kernel symbol's value >> from /proc/vmcore. > >What I understand that, we can read only those symbols/variables from vmcore >which have been embedded using VMCOREINFO_xxxx macros (if we do not pass >vmlinux, like in second kernel). Atsushi, please correct me if I am wrong. That's right. >> >> > Following numbers in vmcore [1] is helping me out in implementing __pa() and >> > __va() for all page table sizes and levels. >> > >> > VMCOREINFO_NUMBER(pgtable_levels); >> > VMCOREINFO_NUMBER(va_bits); >> > VMCOREINFO_NUMBER(page_shift); >> >> Since We already have VMCOREINFO(PAGESIZE), we won't nedd page_shift. > >Yes, agreed. > >> As well, pgtable_levels can be determined by va_bits and PAGESIZE. >> See arch/arm64/Kconfig. > >Yes, agreed. > >> >> > VMCOREINFO_NUMBER(phys_offset); >> > VMCOREINFO_NUMBER(config_kasan); >> >> Let me ask some questions. >> * What kind of data in vmcore and how does makedumpfile access >> without vmlinux nor System.map? > >Well, I do not have the deep idea, again Atsushi can help here. > >makedumpfile mainly compresses vmcore (ram image of panicked kernel), >additionally it also excludes unnecessary pages for analysis. It will need >symbol information to exclude unnecessary pages, where vmlinux is needed mainly. >So, normally we do not perform erase(exclude) functionality in second kernel. It >is being performed latter, on a compressed dumpfile. Yes, basically the data in vmcore are used to exclude unnecessary pages. Most data are required to get the members of struct page to distinguish what kind of page it is. Thanks, Astushi Kumagai >> * Why do you need CONFIG_KASAN? > >KASAN_SHADOW_SIZE is dependent on CONFIG_KASAN. >MODULES_VADDR is dependent on KASAN_SHADOW_SIZE. > >We need MODULES_VADDR,VMALLOC_START,VMEMMAP_START and their END addresses in >order to define whether a virtual to physical translation can be obtained using >linear mapping or need to read from page table instead. > >Thanks for the questions and inputs. Those are helpful. :-) >~Pratyush >> >> Thanks, >> -Takahiro AKASHI >> >> > VMCOREINFO_NUMBER(kimage_voffset); >> > >> > ~Pratyush >> > >> > [1] >> > >https://github.com/pratyushanand/linux/blob/7011e478aae3e568cc8dca15b6c128fe728416f7/arch/arm64/kernel/machine_kexec >.c#L275 >> > >> > -- >> > Crash-utility mailing list >> > Crash-utility@redhat.com >> > https://www.redhat.com/mailman/listinfo/crash-utility >> >> -- >> Thanks, >> -Takahiro AKASHI >> >> -- >> Crash-utility mailing list >> Crash-utility@redhat.com >> https://www.redhat.com/mailman/listinfo/crash-utility _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-05-27 8:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20160524100222.GC20774@linaro.org>
[not found] ` <1339221549.8621933.1464112745983.JavaMail.zimbra@redhat.com>
[not found] ` <20160525083541.GG20774@linaro.org>
[not found] ` <865362232.8962993.1464186490862.JavaMail.zimbra@redhat.com>
[not found] ` <20160526081328.GI20774@linaro.org>
[not found] ` <20160526093955.GA26004@dhcppc6>
[not found] ` <20160527040355.GL20774@linaro.org>
2016-05-27 5:07 ` [Crash-utility] [PATCH v2] arm64: fix kernel memory map handling for kaslr-enabled kernel Pratyush Anand
2016-05-27 6:43 ` AKASHI Takahiro
2016-05-27 7:28 ` Pratyush Anand
2016-05-27 8:10 ` Atsushi Kumagai
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.