Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the rationale for not including strdup in the C Standard?

Tags:

c

standards

Most C programmers are familiar with the strdup function. Many of them will take it for granted, yet it is not part of the C Standard (neither C89, C99 nor C11). It is part of POSIX and may not be available on all environments. Indeed Microsoft insisted on renaming it _strdup, adding to confusion.

It is rather easy to define it this way (in C):

#include <string.h>

char *strdup(const char *s) {
    size_t size = strlen(s) + 1;
    char *p = malloc(size);
    if (p) {
        memcpy(p, s, size);
    }
    return p;
}

But even savvy programmers can easily get it wrong.

Furthermore, redefining the function only on systems that do not have it proves a bit complicated as explained here: strdup() function

Why not include such useful widely supported functions in revised editions of the C Standard? A lot of new functions have been added in the C standard library in C99, what is the rationale for not including strdup?

like image 614
chqrlie Avatar asked Oct 05 '15 08:10

chqrlie


People also ask

What does strdup () do in C?

strdup() The function strdup() is used to duplicate a string. It returns a pointer to null-terminated byte string.

Why do we need strdup?

Use the strdup Function to Duplicate the Given String in C It implements string copying functionality but does memory allocation and checking internally. Although a user is responsible for freeing the returned char pointer since the strdup allocates the memory with malloc function call.

Is strdup a standard?

strdup( ) function is non standard function which may not available in standard library in C.

Should I use strdup?

You don't ever specifically need strdup . It is just a function that allocates a copy of a char* on the heap. It can be done many different ways including with stack based buffers. What you need is the result, a mutable copy of a char* .


1 Answers

The quoted link in the comments (http://open-std.org/JTC1/SC22/WG14/www/docs/n718.htm) gives an explanation about what is "wrong" about having strdup in the standard library:

The major issue was the desirability of adding a function to the standard library which allocates heap memory automatically for the user.

Basically, the C language and its standard library try their best not to make assumptions about how the user allocates and uses memory.
It gives a few facilities among which are the stack, and the heap.

While malloc/free are standardized for dynamic memory allocation, they are by no means the only way to do so, because dynamic memory management is a very complicated topic and the default allocation strategy might not be desirable for all kinds of applications.

There are for example a few independant libraries such as jemalloc which emphasizes low fragmentation and concurrency, or even full-fledged garbage collectors such as The Boehm-Demers-Weiser conservative garbage collector. These libraries offer malloc/free implementations that are meant to be used exclusively in replacement to the standard *alloc and free functions from <stdlib.h> without breaking compatibility with the rest of the C standard library.

So if strdup was made standard, it would effectively be disqualified from being used by code using third-party memory management functions (it must be noted that the aforementioned jemalloc library does provide an implementation of strdup to avoid this problem).

More generally speaking, while strdup certainly is a practical function, it suffers from a lack of clarity in its semantics. It is a function declared in the <string.h> header, but calling it requires to consequently free the returned buffer by calling the free function from the <stdlib.h> header. So, is it a string function or a memory function ?
Leaving it in the POSIX standard seems to be the most reasonable solution to avoid making the C standard library less clear.

like image 181
SirDarius Avatar answered Sep 18 '22 20:09

SirDarius