strange c behavior (aliasing rule, solved)

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

strange c behavior (aliasing rule, solved)

Post by short »

Hey guys, I was coding up a networking project when I ran into the most peculiar behavior I couldn't explain, anyone care to take a stab?

Code: Select all

// Send and receive the DNSRequest message
void Send_Receive_DNSRequest(struct DNS_BEGIN* bmsg, unsigned char* buffer, char* argvone)
{
    int res, size, sockfd, sizeof_serv_addr;
    struct sockaddr_in serv_addr;
    struct hostent* server;
    unsigned char* url;

    // allocate memory for the buffer
    buffer = (unsigned char*) malloc( sizeof(unsigned char) * BUFFER_SIZE);

    // clear buffer
    bzero(buffer, BUFFER_SIZE);

    // set bmsg to point to the beginning of the buffer
    bmsg = (struct DNS_BEGIN*)buffer;

    // add to size
    // The size of the struct DNS_BEGIN is 24
    size =  sizeof(struct DNS_BEGIN); 

    // set the url to point to the correct spot in the buffer
    // This sets the url to point 12 bytes into buffer
    url = (unsigned char*)(buffer + size/2);

    // The size of the struct DNS_BEGIN is 24
    ...
}
The weird behavior I get is later on I call a function

Code: Select all

    // Convert the address the user provided to the format expected by DNS protocol.
    ConvertHostName_DNSFormat(argvone, (char*)url);
which takes the string pointed to by argvone and converts it and stores it to the memory location pointed to by url (byte 12 of buffer). If I comment out the line that sets the bmsg pointer, this works perfectly. If I don't comment out the line that sets the bmsg pointer then it will not write the url to the 12th byte of buffer. If I set url to point to the 24th byte of buffer it writes the string just fine.

It seems that having bmsg pointing to the beginning of buffer prevents any other write operations (to the first 24 bytes of buffer) from executing using any other pointer then bmsg.

Anyone see anything I'm missing?

edit: I did figure out a workaround, but this was particularily strange to me
Last edited by short on Thu Mar 17, 2011 9:30 am, edited 2 times in total.
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

Re: strange c behavior

Post by short »

Ok let me try another example that should make the point more clear..

Code: Select all

    // allocate memory for the buffer
    unsigned char* buffer = (unsigned char*) malloc( sizeof(unsigned char) * BUFFER_SIZE);
    unsigned char* url;

    bzero(buffer, BUFFER_SIZE);

    struct myType
    {
       short a;
	    short b;
	    short c;
	    short d;
    };
    // assuming short is 2 bytes on your architecture, sizeof(struct myType) = 8

    struct myType* ptr;

    // set ptr to beginning of buffer pointer
    ptr = (struct myType*) buffer;
    
    // set url to 4 bytes in
    url = &buffer[4];
    
    // attempt to copy "lala" to buffer[4] (buffer[4] is obviously within the first 8 bytes of buffer
    // this will fail to write anything
    strcpy((char*)url, "lala");
To contrast with

Code: Select all

    // allocate memory for the buffer
    unsigned char* buffer = (unsigned char*) malloc( sizeof(unsigned char) * BUFFER_SIZE);
    unsigned char* url;

    bzero(buffer, BUFFER_SIZE);

    struct myType
    {
       short a;
	    short b;
	    short c;
	    short d;
    };
    // assuming short is 2 bytes on your architecture, sizeof(struct myType) = 8

    struct myType* ptr;

    // set ptr to beginning of buffer pointer
    // the only change here is to comment out setting the ptr pointer
    //ptr = (struct myType*) buffer;
    
    // set url to 4 bytes in
    url = &buffer[4];
    
    // attempt to copy "lala" to buffer[4] (buffer[4] is obviously within the first 8 bytes of buffer
    // this will NOT fail since i commented out setting the ptr pointer
    strcpy((char*)url, "lala");
Anyone see why setting the ptr pointer in the first example would prevent the strcpy() function from writing to that memory location (buffer[4])?
Last edited by short on Tue Mar 15, 2011 3:49 pm, edited 1 time in total.
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
bnpph
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 75
Joined: Thu Mar 10, 2011 12:30 pm

Re: strange c behavior

Post by bnpph »

What's your compiler? Command line?

It's probably due to some strict aliasing rule. You can either disable it, or get around it with unions or gcc/intel attribute "__may__alias__"
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

Re: strange c behavior

Post by short »

bnpph wrote:What's your compiler? Command line?

It's probably due to some strict aliasing rule. You can either disable it, or get around it with unions or gcc/intel attribute "__may__alias__"
aliasing rule? I'm unfamiliar.

I'm using gcc to compile this project on linux

I looked it up, undefined rules huh, interesting.

I think this answers it:

http://stackoverflow.com/questions/2771 ... s-in-c-gcc
Last edited by short on Tue Mar 15, 2011 3:48 pm, edited 1 time in total.
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: strange c behavior

Post by avansc »

you dont ever allocate memory for URL and also

this.


url = buffer[4];

you might wanna look at what that means.. cause i dont think its what you think.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

Re: strange c behavior

Post by short »

avansc wrote:you dont ever allocate memory for URL and also

this.


url = buffer[4];

you might wanna look at what that means.. cause i dont think its what you think.
yay for writing code in a hurry, fixed

url = &buffer[4]

I didn't think I needed to allocate room for "url" because since it's pointing to midway through buffer, it should store there, no?
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: strange c behavior

Post by avansc »

yes, if you use the url pointer to point to some allocated memory you dont have to, just make sure that you dont over write the bounds. cause it will most likely corrupt the stack.

you can also write it as

url = buffer+4;
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

Re: strange c behavior

Post by short »

fair enough, this seems to be becoming an adventurer of exploring the dark corners of C at this point. Thank you
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
bnpph
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 75
Joined: Thu Mar 10, 2011 12:30 pm

Re: strange c behavior [solved, pretty sure anyways]

Post by bnpph »

yes, if you use the url pointer to point to some allocated memory you dont have to, just make sure that you dont over write the bounds. cause it will most likely corrupt the stack.
I think you mean heap ;)
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: strange c behavior [solved, pretty sure anyways]

Post by Ginto8 »

bnpph wrote:
yes, if you use the url pointer to point to some allocated memory you dont have to, just make sure that you dont over write the bounds. cause it will most likely corrupt the stack.
I think you mean heap ;)
It can be either depending on the situation, although as I haven't looked at the code personally, in this case it very well may be the heap.
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

Re: strange c behavior [solved, pretty sure anyways]

Post by short »

Ginto8 wrote: It can be either depending on the situation, although as I haven't looked at the code personally, in this case it very well may be the heap.

Wow, thanks for your insight ......
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: strange c behavior [solved, pretty sure anyways]

Post by dandymcgee »

short wrote:
Ginto8 wrote: It can be either depending on the situation, although as I haven't looked at the code personally, in this case it very well may be the heap.
Wow, thanks for your insight ......
Lmao. :lol:
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: strange c behavior [solved, pretty sure anyways]

Post by Ginto8 »

short wrote:
Ginto8 wrote: It can be either depending on the situation, although as I haven't looked at the code personally, in this case it very well may be the heap.

Wow, thanks for your insight ......
being unhelpful while seeming otherwise is a skill of mine ;) :lol:
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
Post Reply