Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to understand the difference between memcpy() and memmove(), and I have read the text that memcpy doesn't take care of the overlapping source and destination wheras memmove() does.

However, when I execute these two functions on overlapping memory blocks, they both give the same result. For instance, take the following MSDNexample on the memmove() help page:-

Is there a better example to understand the drawbacks of memcpy and how memmove solves it?

// crt_memcpy.c
// Illustrate overlapping copy: memmove always handles it correctly; memcpy may handle
// it correctly.

#include <memory.h>
#include <string.h>
#include <stdio.h>

char str1[7] = "aabbcc";

int main( void )
{
    printf( "The string: %s\n", str1 );
    memcpy( str1 + 2, str1, 4 );
    printf( "New string: %s\n", str1 );

    strcpy_s( str1, sizeof(str1), "aabbcc" );   // reset string

    printf( "The string: %s\n", str1 );
    memmove( str1 + 2, str1, 4 );
    printf( "New string: %s\n", str1 );
}

Output:

The string: aabbcc
New string: aaaabb
The string: aabbcc
New string: aaaabb
share|improve this question
The Microsoft CRT has had a safe memcpy() for quite a while. – Hans Passant Dec 11 '10 at 9:01
5  
I don't think "safe" is the right word for it. A safe memcpy would assert that the regions don't overlap rather than intentionally covering up bugs in your code. – R.. Dec 11 '10 at 12:53
1  
Depends on whether you mean "safe for the developer" or "safe for the end-user". I would argue that doing as told, even if it isn't standards-compliant is the safer choice for the end-user. – kusma Jan 26 '12 at 12:33

4 Answers

up vote 29 down vote accepted

I'm not entirely surprised that your example exhibits no strange behaviour. Try copying str1 to str1+2 instead and see what happens then. (May not actually make a difference, depends on compiler/libraries).

In general, memcpy is implemented in a simple (but fast manner). Simplistically, it just loops over the data (in order), copying from one location to the other. This can result in the source being overwritten while it's being read.

Memmove does more work to ensure it handles the overlap correctly.

EDIT:

(unfortunately, I can't find decent examples, but these will do). Contrast the memcpy and memmove implementations shown here. memcpy just loops, while memmove performs a test to determine which direction to loop in to avoid corrupting the data. These implementations are rather simple. Most high-performance implementations are more complicated (involving copying word-size blocks at a time rather than bytes).

share|improve this answer
+1 Also, in the following implementation, memmove calls memcpy in one branch after testing the pointers: student.cs.uwaterloo.ca/~cs350/common/os161-src-html/… – Pascal Cuoq Dec 11 '10 at 9:15
That sounds great. Seems like Visual Studio implements a "safe" memcpy (along with gcc 4.1.1, I tested on RHEL 5 as well). Writing the versions of these functions from clc-wiki.net gives a clear picture. Thanks. – user534785 Dec 11 '10 at 9:24
memcpy doesn't take care of the overlapping-issue, but memmove does. Then why not eliminate memcpy from the lib? – Alcott Sep 16 '11 at 12:11
2  
@Alcott: Because memcpy can be faster. – Billy ONeal Oct 17 '11 at 17:23

The memory in memcpy cannot overlap, while the memory in memmove can overlap.

char a[16];
char b[16];

memcpy(a,b,16);           // valid
memmove(a,b,16);          // Also valid, but slower than memcpy.
memcpy(&a[0], &a[1],10);  // Not valid since it overlaps.
memmove(&a[0], &a[1],10); // valid. 

Some implementations of memcpy might still work when overlap. But you cannot count of that behaviour. While memmove must allow for overlapping.

share|improve this answer
it really helped me thaks! +1 for your info – EAGER_STUDENT Aug 28 '11 at 12:41

Just because memcpy doesn't have to deal with overlapping regions, doesn't mean it doesn't deal with them correctly. The call with overlapping regions produces undefined behavior. Undefined behavior can work entirely as you expect on one platform; that doesn't mean it's correct or valid.

share|improve this answer
1  
In particular, depending on the platform, it's possible that memcpy is implemented exactly the same way as memmove. That is, whoever wrote the compiler didn't bother writing a unique memcpy function. – Cam Dec 11 '10 at 8:46

Both memcpy and memove do similar things.

But to sight out one difference:

#include <memory.h>
#include <string.h>
#include <stdio.h>

char str1[7] = "abcdef";

int main()
{

   printf( "The string: %s\n", str1 );
   memcpy( (str1+6), str1, 10 );
   printf( "New string: %s\n", str1 );

   strcpy_s( str1, sizeof(str1), "aabbcc" );   // reset string


   printf("\nstr1: %s\n", str1);
   printf( "The string: %s\n", str1 );
   memmove( (str1+6), str1, 10 );
   printf( "New string: %s\n", str1 );

}

gives:

The string: abcdef
New string: abcdefabcdefabcd
The string: abcdef
New string: abcdefabcdef
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.