From: Amerigo Wang <xiyou.wangcong@gmail.com>
To: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Amerigo Wang <xiyou.wangcong@gmail.com>,
Mike Smith <scgtrp@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
bugzilla-daemon@bugzilla.kernel.org,
bugme-daemon@bugzilla.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC][PATCH 2/2] vmalloc: vread vwrite avoid memory hole.
Date: Fri, 31 Jul 2009 17:38:30 +0800 [thread overview]
Message-ID: <20090731093830.GC5048@cr0.nay.redhat.com> (raw)
In-Reply-To: <20090729205123.978971b8.kamezawa.hiroyu@jp.fujitsu.com>
On Wed, Jul 29, 2009 at 08:51:23PM +0900, KAMEZAWA Hiroyuki wrote:
>On Wed, 29 Jul 2009 17:59:32 +0800
>Amerigo Wang <xiyou.wangcong@gmail.com> wrote:
>
>> On Wed, Jul 29, 2009 at 05:48:10PM +0900, KAMEZAWA Hiroyuki wrote:
>> >Considering recent changes, I think this an answer to this bug.
>> >
>> >All get_vm_area() calls specified VM_IOREMAP before 2.6.30.
>> >Now, percpu calls get_vm_area() without IOREMAP (it means kcore doesn't skip this)
>> >And it seems pcpu does delayed map to pre-allocated vmalloc-area.
>> >Then, now, vmalloc() area has memory holes. (I'm sorry if I misunderstand.)
>>
>>
>> You mean the guard holes in vmalloc area?
>>
>no, not guard hole. memory hole in the middle of valid vmalloc area, like this
>
>start end
> XXXXX0XXXXXG XXXXXXXXG XXXXXXXXG
>X= pte is present
>O= pte is none
>G= pte is none as guard page.
>
Hmm, I get your meaning now... thanks
>> >+
>> >+static int aligned_vwrite(char *buf, char *addr, unsigned long count)
>> >+{
>> >+ struct page *p;
>> >+ int copied;
>> >+
>> >+ while (count) {
>> >+ unsigned long offset, length;
>> >+
>> >+ offset = (unsinged long)addr & PAGE_MASK;
>> >+ length = PAGE_SIZE - offset;
>> >+ if (length > count)
>> >+ length = count;
>> >+ /* confirm the page is present */
>> >+ p = vmalloc_to_page(addr);
>> >+ if (p)
>> >+ memcpy(addr, buf, length);
>>
>>
>> So when !p, you copy nothing, but still increase the length,
>> *silently*?
>Ah, thanks, it's careless bug...will fix.
>
>
>
>>
>> This looks a bit weird for me... I am thinking if we need
>> to return the number of bytes that is *actually* copied?
>>
>I think it makes the caller complex.
>
>Then, I have 2 options.
> a) skip memory hole
> b) if we find memory hole, return immediately.
>
>Do you like b) ?
>But in old behavior, vwrite()/vread() incremetns its "addr"
>(at read zero-fill).
>
>Then, I used a).
Ok, just want to make sure it's safe to do a).
>
>
>>
>> >+ addr += length;
>> >+ buf += length;
>> >+ copiled += length;
>> >+ count -= length;
>> >+ }
>> >+ return copied;
>> >+}
>> >+
>> >+long vread(char *buf, char *addr, unsigned long count, bool skip_ioremap)
>> > {
>> > struct vm_struct *tmp;
>> > char *vaddr, *buf_start = buf;
>> >@@ -1640,10 +1694,11 @@ long vread(char *buf, char *addr, unsign
>> > count = -(unsigned long) addr;
>> >
>> > read_lock(&vmlist_lock);
>> >- for (tmp = vmlist; tmp; tmp = tmp->next) {
>> >+ for (tmp = vmlist; count && tmp; tmp = tmp->next) {
>> > vaddr = (char *) tmp->addr;
>> > if (addr >= vaddr + tmp->size - PAGE_SIZE)
>> > continue;
>> >+
>> > while (addr < vaddr) {
>> > if (count == 0)
>> > goto finished;
>> >@@ -1653,14 +1708,15 @@ long vread(char *buf, char *addr, unsign
>> > count--;
>> > }
>> > n = vaddr + tmp->size - PAGE_SIZE - addr;
>> >- do {
>> >- if (count == 0)
>> >- goto finished;
>> >- *buf = *addr;
>> >- buf++;
>> >- addr++;
>> >- count--;
>> >- } while (--n > 0);
>> >+ if (n > count)
>> >+ n = count;
>> >+ if (!(tmp->flags & VM_IOREMAP) || !skip_ioremap)
>> >+ aligned_vread(buf, addr, n);
>> >+ else
>> >+ memset(buf, 0, n);
>> >+ buf += n;
>> >+ addr += n;
>> >+ count -= n;
>>
>>
>> If I set 'skip_ioremap' true, I want the return value can be
>> what it _actually_ copies, i.e. kick out the bytes counted
>> for VM_IOREMAP. What do you think?
>>
>
>One one od the reasons is The same reason to above.
>(adjusted to old behavior)
>
>IIUC, In following kind of codes,
>
> len = vread(buf,addr,xxx);
> bud += len;
> addr += len
>
>len should be the length that the caller should increment buffer address.
>So, I just skipped hole.
Well... old code doesn't have the parameter 'skip_ioremap'. :-)
For new code, we can do:
len = vread(buf, addr, count, true);
buf += len;
addr += count;
next prev parent reply other threads:[~2009-07-31 9:36 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <bug-13850-10286@http.bugzilla.kernel.org/>
2009-07-28 23:05 ` [Bugme-new] [Bug 13850] New: reading /proc/kcore causes oops Andrew Morton
2009-07-28 23:48 ` KAMEZAWA Hiroyuki
2009-07-29 2:46 ` Mike Smith
2009-07-29 3:32 ` KAMEZAWA Hiroyuki
2009-07-29 8:36 ` [RFC][PATCH 1/2] vmalloc: reorder unmap and removal entry KAMEZAWA Hiroyuki
2009-07-29 8:48 ` [RFC][PATCH 2/2] vmalloc: vread vwrite avoid memory hole KAMEZAWA Hiroyuki
2009-07-29 9:59 ` Amerigo Wang
2009-07-29 11:51 ` KAMEZAWA Hiroyuki
2009-07-31 9:38 ` Amerigo Wang [this message]
2009-07-29 9:40 ` [RFC][PATCH 1/2] vmalloc: reorder unmap and removal entry Amerigo Wang
2009-07-29 11:53 ` KAMEZAWA Hiroyuki
2009-07-31 7:07 ` [BUGFIX][PATCH 0/3] fix bug for /proc/kcore causes panic (Was: [Bugme-new] [Bug 13850] New: reading /proc/kcore causes oops KAMEZAWA Hiroyuki
2009-07-31 7:11 ` [BUGFIX][PATCH 1/3] fix vread/vwrite to be aware of memory hole KAMEZAWA Hiroyuki
2009-07-31 9:57 ` Amerigo Wang
2009-07-31 10:32 ` KAMEZAWA Hiroyuki
2009-08-03 9:10 ` Amerigo Wang
2009-08-03 9:10 ` KAMEZAWA Hiroyuki
2009-07-31 7:12 ` [BUGFIX][PATCH 2/3] kcore should use vread KAMEZAWA Hiroyuki
2009-07-31 7:13 ` [BUGFIX][PATCH 3/3] unmap vmalloc area after hide it KAMEZAWA Hiroyuki
2009-07-31 7:21 ` [BUGFIX][PATCH 0/3] fix bug for /proc/kcore causes panic (Was: [Bugme-new] [Bug 13850] New: reading /proc/kcore causes oops KAMEZAWA Hiroyuki
2009-08-03 11:14 ` [BUGFIX][PATCH 0/3] kcore: avoid access to holes in vmalloc v3 (Was " KAMEZAWA Hiroyuki
2009-08-03 11:15 ` [BUGFIX][PATCH 1/3] unmap vmalloc area after hide it KAMEZAWA Hiroyuki
2009-08-03 11:18 ` [BUGFIX][PATCH 2/3] kcore: fix vread/vwrite to be aware of holes KAMEZAWA Hiroyuki
2009-08-04 9:23 ` Amerigo Wang
2009-08-04 9:55 ` KAMEZAWA Hiroyuki
2009-08-05 2:09 ` Amerigo Wang
2009-08-04 21:30 ` Andrew Morton
2009-08-05 1:08 ` KAMEZAWA Hiroyuki
2009-08-05 1:24 ` Andrew Morton
2009-08-05 1:39 ` KAMEZAWA Hiroyuki
2009-08-03 11:19 ` [BUGFIX][PATCH 3/3] kcore: /proc/kcore should use vread KAMEZAWA Hiroyuki
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=20090731093830.GC5048@cr0.nay.redhat.com \
--to=xiyou.wangcong@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=bugme-daemon@bugzilla.kernel.org \
--cc=bugzilla-daemon@bugzilla.kernel.org \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=scgtrp@gmail.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