lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 25 Aug 2009 14:44:22 +0200 (CEST)
From:	Jiri Kosina <jkosina@...e.cz>
To:	Anupama Chandwani <anupama.chandwani@...il.com>
Cc:	linux kernel mailing list <linux-kernel@...r.kernel.org>
Subject: Re: All pages belonging to a process

On Tue, 25 Aug 2009, Anupama Chandwani wrote:

>       /* For all vma-s of a process */
>       for (vma = task->mm->mmap; vma!=NULL; vma = vma->next)

you mean vma->vm_next?

>       {
>                pgd = pgd_offset(mm, address);
>                if (!pgd_present(*pgd))
>                     continue;
> 
>                pud = pud_offset(pgd, address);
>                if (!pud_present(*pud))
>                     continue;
> 
>                pmd = pmd_offset(pud, address);
>                if (!pmd_present(*pmd))
>                     continue;
> 
>               pte = pte_offset_map_lock (task->mm->vm_mm, pmd, address, &ptl);
> 
>               print pte_pfn(*pte) and other debug info;
> 
>               pte_unmap_unlock(pte, ptl);
>       }
> }
> 
> The code hangs. I do not get anything in dmesg.

Do you have mmap_sem locked?

-- 
Jiri Kosina
SUSE Labs

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ