linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan-Benedict Glaw <jbglaw@lug-owl.de>
To: Linux C Programming <linux-c-programming@vger.kernel.org>
Subject: Re: The stickybit!!
Date: Fri, 17 Dec 2004 16:20:27 +0100	[thread overview]
Message-ID: <20041217152027.GC16958@lug-owl.de> (raw)
In-Reply-To: <1103279900.3797.13.camel@myLinux>

[-- Attachment #1: Type: text/plain, Size: 3081 bytes --]

On Fri, 2004-12-17 16:08:20 +0530, Jagadeesh Bhaskar P <jbhaskar@hclinsys.com>
wrote in message <1103279900.3797.13.camel@myLinux>:
> On Fri, 2004-12-17 at 15:04, Jan-Benedict Glaw wrote:
> > On Fri, 2004-12-17 12:04:36 +0530, Jagadeesh Bhaskar P <jbhaskar@hclinsys.com>
> > wrote in message <1103265276.6880.8.camel@myLinux>:

> > > 	Is there a way to findout the data if residing in swap area after the
> > > process is terminated, using a C program??
> > 
> > Not (easily), at last. You can try to open the swap area(s) with
> > O_DIRECT and prepare a copy of it. However, you don't know which pages
> > were owned by the terminated process formerly so you only can step
> > through all the bytes and hope to find something useful...
> Im not able to get that part completely. Can a bit more explanation be
> given!!

Well, facts about swapping (or paging, what Linux actually does):

	- After detecting memory shortage, some chunk of RAM is put onto
	  some stable medium (most probably partitions of HDDs or swap
	  files).
	- You don't know IF memory of some application actually gets
	  paged out. Though, you can try to force that by allocating and
	  using lots of memory, but you cannot force a specific page to
	  be swapped out.
	- If a page was swapped out, you don't know (a) which memory
	  region of the process it belonged to and (b) to which area of
	  the swap space the given page was written to.

If you attempt to get access to the swap area(s), you want your
application to *not* swap. If you're root (certainly you need to be
root: only a moron would allow ordinary users to directly access block
device's partitions...), you may lock all your address space to be
non-pageable. Additionally, you want that no other apps get paged out:
this would possibly overwrite important data you want to recover.

O_DIRECT is a method to tell the kernel you know better about what needs
to be cached -- and what not. Because you're reading and writing a whole
lot of data (typically several hundreths of megabytes), you don't want
to pressure that into RAM. Just tell the kernel the data is never ever
accessed again, so there's no point in wasting RAM for it (which could
make other applications to swap more).

The same thing counts for your private output file, of course.

But even then, you've got a large file with a lot of binary garbage. I
guess it'll be fun (TM) to recover useful data from it. Actually, I've
played with that some time ago by searching for previously issued input
(while forcing a near-out-of-memory situation). It works, but honestly,
I hadn't been able to actually *find* the information in question
without priorly knowing what to search for...

MfG, JBG

-- 
Jan-Benedict Glaw       jbglaw@lug-owl.de    . +49-172-7608481             _ O _
"Eine Freie Meinung in  einem Freien Kopf    | Gegen Zensur | Gegen Krieg  _ _ O
 fuer einen Freien Staat voll Freier Bürger" | im Internet! |   im Irak!   O O O
ret = do_actions((curr | FREE_SPEECH) & ~(NEW_COPYRIGHT_LAW | DRM | TCPA));

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2004-12-17 15:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-12-17  6:34 The stickybit!! Jagadeesh Bhaskar P
2004-12-17  9:34 ` Jan-Benedict Glaw
2004-12-17 10:38   ` Jagadeesh Bhaskar P
2004-12-17 15:20     ` Jan-Benedict Glaw [this message]
2004-12-18  0:25 ` Glynn Clements

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=20041217152027.GC16958@lug-owl.de \
    --to=jbglaw@lug-owl.de \
    --cc=linux-c-programming@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).