Tagged Questions
The strncpy tag has no wiki summary.
19
votes
12answers
4k views
Why does strncpy not null terminate?
strncpy() supposedly protects from buffer overflows. But if it prevents an overflow without null terminating, in all likelyhood a subsequent string operation is going to overflow. So to protect ...
9
votes
5answers
3k views
Why is strlcpy and strlcat considered to be insecure?
I understand that strlcpy and strlcat were designed as secure replacements for strncpy and strncat, however some people are still of the opinion that they are insecure, and simply cause a different ...
9
votes
5answers
6k views
Why is strncpy insecure?
I am looking to find out why strncpy is considered insecure. Does anybody have any sort of documentation on this or examples of an exploit using it?
6
votes
11answers
5k views
Why should you use strncpy instead of strcpy?
Edit: I've added the source for the example.
I came across this example:
char source[MAX] = "123456789";
char source1[MAX] = "123456789";
char destination[MAX] = "abcdefg";
char destination1[MAX] = ...
5
votes
3answers
3k views
Uninitialised value was created by a heap allocation
I have been chasing this bug around, and I just don't get it. Have I forgotten some basic C or something?
==28357== Conditional jump or move depends on uninitialised value(s)
==28357== at ...
3
votes
5answers
126 views
strncpy equivalent for std::string?
Is there an exact equivalent to strncpy in the C++ Standard Library? I mean a function, that copies a string from one buffer to another until it hits the terminating 0? For instance when I have to ...
3
votes
4answers
97 views
Changing static array
I have a static variable declared in a file:
static char *msgToUser[] = {
"MSG1 ",
"MSG2 ",
};
Inside one of the methods of a class I'm doing this:
void ...
2
votes
2answers
76 views
strncpy overwrites existing character string
I've created a function to convert a number into a roman numeral. I know the logic of the conversion itself is correct, however, each time strncpy is called, it overwrites the previous value of "rom". ...
2
votes
4answers
225 views
utf8 aware strncpy
I find it hard to believe I'm the first person to run into this problem but searched for quite some time and didn't find a solution to this.
I'd like to use strncpy but have it be UTF8 aware so it ...
2
votes
5answers
227 views
strncpy documentation question
At the following regarding strncpy: http://www.cplusplus.com/reference/clibrary/cstring/strncpy/, it mentions the following:
No null-character is implicitly appended to the end of destination, so ...
1
vote
3answers
110 views
strncpy segfault
I've been having trouble getting this section of code to work. I'm trying to get a character array to be copied so I can get a count of how many tokens there are to dynamically allocate and save them ...
1
vote
3answers
255 views
Convert zero-padded bytes to UTF-8 string
I'm unpacking several structs that contain 's' type fields from C. The fields contain zero-padded UTF-8 strings handled by strncpy in the C code (note this function's vestigial behaviour). If I decode ...
1
vote
5answers
1k views
Difference between strncpy and memcpy?
How can i access s[7] in s?
I didn't observe any difference between strncpy and memcpy. If I want to print the output s, along with s[7] (like qwertyA), what are the changes I have to made in the ...
1
vote
5answers
325 views
creating a wrapper for strncpy to insert terminating null
I have decided to make a wrapper for strncpy as my source code requires me to do a lot of string copies. And I want to ensure that the string is terminated if the source is equal or greater than the ...
1
vote
5answers
743 views
strncpy and using sizeof to copy maximum characters
I am using the code below
char call[64] = {'\0'} /* clean buffer */
strncpy(call, info.called, sizeof(call));
I always use the sizeof for the destination for protecting a overflow, incase source is ...
0
votes
2answers
19 views
Passing volatile array to strncpy
In my ISR I have a buffer that gets stuffed from the USART so I declared the buffer as volatile:
volatile uint8_t RxBuffer1[BUFFER_LENGTH];
Ok, no problem there. I believe that is standard ...
0
votes
1answer
57 views
Strncpy() string length output error
I am having a problem with strncpy() copying an extra character at the length I need. I need to copy the 10 most significant bits from one string to another (both in char* format).
The size of the ...
0
votes
5answers
203 views
strncpy or strlcpy in my case
what should I use?
char dst_arr[10];
char *dst_ptr;
char *src_str = "hello";
what should I use when I want to copy src_str to dst_arr and dst_ptr and why?
PS: my head is spinning faster than the ...
0
votes
1answer
65 views
Issue with string length 76
I am at a loss here.
Will post my code in a short while...just that its too long to extract portions of the "troubling" giving code. Will expalin my issue here: I store a string(path to a file or ...
0
votes
1answer
42 views
Why would a native program run fine when executed directly, but fail with a seg fault when submitted through condor
I have a third party library that I'm attempting to incorporate into a simulation. We have the static library (.a), along with all of it's runtime dependencies (shared objects). I've created a very ...
0
votes
3answers
303 views
strncpy question (C language)
I'm having difficulty with strncpy. I'm trying to split a string of 8 characters in two (the first 6 characters in one substring and then the remaining 2 characters in another). To illustrate the ...
0
votes
6answers
356 views
Copying a file line by line into a char array with strncpy
So i am trying to read a text file line by line and save each line into a char array.
From my printout in the loop I can tell it is counting the lines and the number of characters per line properly ...
0
votes
5answers
3k views
C: using sprintf and strncpy inserting data into an array of pointers
I have a structure that has an array of pointers. I would like to insert into the array digits in string format, i.e. "1", "2", etc..
However, is there any difference in using either sprintf or ...