2011-02-12 00:22:29 -05:00
|
|
|
#include <stdio.h>
|
2014-05-27 00:44:23 -04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/stat.h>
|
2014-05-27 14:21:46 -04:00
|
|
|
#include <string.h>
|
2011-03-29 08:34:47 -04:00
|
|
|
#include "syscall.h"
|
|
|
|
|
|
|
|
#define MAXTRIES 100
|
2011-02-12 00:22:29 -05:00
|
|
|
|
2014-05-27 00:44:23 -04:00
|
|
|
char *__randname(char *);
|
2011-02-12 00:22:29 -05:00
|
|
|
|
2014-05-27 00:44:23 -04:00
|
|
|
char *tmpnam(char *buf)
|
|
|
|
{
|
|
|
|
static char internal[L_tmpnam];
|
|
|
|
char s[] = "/tmp/tmpnam_XXXXXX";
|
|
|
|
int try;
|
|
|
|
int r;
|
|
|
|
for (try=0; try<MAXTRIES; try++) {
|
|
|
|
__randname(s+12);
|
2014-05-29 21:01:32 -04:00
|
|
|
#ifdef SYS_lstat
|
2014-05-27 00:44:23 -04:00
|
|
|
r = __syscall(SYS_lstat, s, &(struct stat){0});
|
2014-05-29 21:01:32 -04:00
|
|
|
#else
|
|
|
|
r = __syscall(SYS_fstatat, AT_FDCWD, s,
|
|
|
|
&(struct stat){0}, AT_SYMLINK_NOFOLLOW);
|
|
|
|
#endif
|
2014-05-27 00:44:23 -04:00
|
|
|
if (r == -ENOENT) return strcpy(buf ? buf : internal, s);
|
|
|
|
}
|
|
|
|
return 0;
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|