linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Saurabh Sehgal <saurabh.r.s@gmail.com>
To: Eric Polino <aluink@gmail.com>
Cc: linux-c-programming@vger.kernel.org
Subject: Re: memory address represented as a string
Date: Sun, 26 Jul 2009 04:26:04 -0400	[thread overview]
Message-ID: <2a46ebd60907260126q5ba0f7fdr48c6af8728737f3@mail.gmail.com> (raw)
In-Reply-To: <b21328ed0907260114w547eb3fax61927111cdcf9d3c@mail.gmail.com>

Hi all,

Thanks for the reply !

I was able to write this function successfully.

This would lead me to my next question.

Is there anyway to test if a memory address is valid or not without causing a
segmentation fault and catching this maybe in a signal handler ?

Is there a safe way in the same function " void * foo (char * addr)"
to check that
if the address contained in the string represented by "char * addr"  is valid
before returning it.

Thank you !

Saurabh

On Sun, Jul 26, 2009 at 4:14 AM, Eric Polino<aluink@gmail.com> wrote:
> sure, you can just write a function that declares a void * and uses it as a
> regular numeric type such as int or whatnot and parses the string
> representation as a numeric value into that variable.  You can do stuff the
> same as you would with any other integer type, "x += 10; x -= 18;".  So the
> function would look something like
>
> void *foo(const char *addr){
>   void *parsed_value = 0;
>   ....
>   /* Parse addr into parsed_value */
>   ....
>   /* parsed_value == value_described_by(addr) */
>
>   return parsed_value;
> }
>
> Parsing addr into parsed_value is left as an exercise to the reader ;)
>
> "None are more hopelessly enslaved than those who falsely believe they are
> free."
>                                      --Goethe
>
> "Freedom is living without government coercion."
>                   --Ron Paul (www.ronpaul2008.com)
>
>
> On Sun, Jul 26, 2009 at 03:39, Saurabh Sehgal <saurabh.r.s@gmail.com> wrote:
>>
>> Hi all,
>>
>> I had a quick question:
>>
>> Let's say I design a function with the signature:
>>
>> void * foo( char * addr ) ; ,
>>
>> where addr is a string that represents a valid memory address  ...
>> so the way someone can call this function is ...
>>
>> char * addr = "0xae456778" // assume this is a valid memory address on
>> the machine
>> foo( addr ) ;
>>
>> Is it possible to take this address in string form, and assign it to
>> an actual pointer of void * type ?
>> I want the function "foo" to return a pointer pointing to the memory
>> location as indicated
>> by the string passed in.
>>
>> Thank you !
>>
>> Saurabh
>> --
>> To unsubscribe from this list: send the line "unsubscribe
>> linux-c-programming" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>



-- 
Saurabh Sehgal
E-mail:     saurabh.r.s@gmail.com
Phone:     647-831-5621
LinkedIn: http://www.linkedin.com/pub/1/7a3/436
--
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2009-07-26  8:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-26  7:39 memory address represented as a string Saurabh Sehgal
2009-07-26  7:59 ` Aneesh Bhasin
2009-07-26  8:06   ` Manish Katiyar
     [not found] ` <b21328ed0907260114w547eb3fax61927111cdcf9d3c@mail.gmail.com>
2009-07-26  8:26   ` Saurabh Sehgal [this message]
2009-07-28 10:09     ` Rahul K Patel
2009-07-26 16:23 ` 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=2a46ebd60907260126q5ba0f7fdr48c6af8728737f3@mail.gmail.com \
    --to=saurabh.r.s@gmail.com \
    --cc=aluink@gmail.com \
    --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).