Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is `asprintf` thread-safe?

Is the GNU function asprintf (print to allocated string) thread-safe?

(IIC, basically, this boils down to the question whether malloc is thread-safe.)

Consider the example code:

#define _GNU_SOURCE
#include <stdio.h>

#include "getValue.h"

char * getValue(int key) {
  char * value;
  asprintf(&value, "%d", key); // TODO: No error handling!
  // If memory allocation wasn't possible, or some other error occurs,  these  functions  will
  // return -1, and the contents of strp is undefined.
  return value;
}

Here, I do not touch any global variables. What if my getValue gets called in concurrent threads? No bad things will occur, will they?

like image 417
imz -- Ivan Zakharyaschev Avatar asked Feb 17 '15 13:02

imz -- Ivan Zakharyaschev


2 Answers

Yes, it's thread safe except when it reads the locale.

asprintf

Function: int asprintf (char **ptr, const char *template, …)
Preliminary: | MT-Safe locale | AS-Unsafe heap | AC-Unsafe mem

About the 'locale' exception, in particular:

Functions annotated with locale as an MT-Safety issue read from the locale object without any form of synchronization. Functions annotated with locale called concurrently with locale changes may behave in ways that do not correspond to any of the locales active during their execution, but an unpredictable mix thereof.

These kinds of functions are known as "conditionally" multithread safe because, in some contexts, they turn out not to be, so the programmer needs to take care of that.

like image 131
edmz Avatar answered Oct 27 '22 12:10

edmz


glibc is free software and is probably the only (or the most important) library implementing asprintf.

So you can study (and even contribute to improve) its source code. See its stdio-common/asprintf.c & libio/vasprintf.c source files.

It looks like indeed, it is calling in a thread safe manner malloc and related things.

like image 22
Basile Starynkevitch Avatar answered Oct 27 '22 13:10

Basile Starynkevitch