Re: [RFC PATCH v1 6/6] tools/include/string: Implement `strdup()` and `strndup()`

From: Willy Tarreau
Date: Mon Mar 21 2022 - 07:43:27 EST


On Mon, Mar 21, 2022 at 06:36:37PM +0700, Ammar Faizi wrote:
> On 3/21/22 2:53 PM, Willy Tarreau wrote:
> > Hi Ammar,
> [...]
> > > +static void free(void *ptr);
> > > +static void *malloc(size_t len);
> > > +static void *realloc(void *old_ptr, size_t new_size);
> >
> > Better include the required h files here.
>
> I can't do that, in nolibc.h, we have something like this:
>
> ```
> #include "stdlib.h" <--- We inlcude string.h from here
> #include "string.h" <--- This is a no-op.
> ```
>
> Note, stdlib.h is included first before string.h, next, in stdlib.h, we
> have this:
>
> ```
> #include "string.h"
>
> // malloc, calloc, free here
> ```
>
> If I include "stdlib.h" in "string.h", it will just be a no-op, and the
> declarations will not be taken, because the declarations happen after
> #include "string.h". So it doesn't work. It's somewhat circular dependency.
>
> stdlib.h needs string.h
> string.h needs stdlib.h
>
> One of them must fully see the other before they can use the defined functions
> in another header.

OK, usual stuff indeed.

> Suggestion welcome...

Then just leave it as-is.

> I am thinking of creating a new header just for the forward declarations
> where all function declarations live there, we just split off the real
> functions' body.

That's why I'm doing in my projects for the exact reason above. But
here we only have static functions so this will increase the burden to
contribute. Better wait for the situation to reach a point where we're
certain there will be some benefit in doing that.

Thanks,
Willy