#include #include #include #include #include char *__randname(char *); int __open_tempfile (char *template, int len, int flags) { if (len < 0) return EINVAL; size_t l = strlen(template)-len; if (l < 6 || strncmp(template+l-6, "XXXXXX", 6)) { errno = EINVAL; *template = 0; return -1; } /* Null terminate the template before the suffix, and save the char for adding back the suffix */ char suffix = template[l]; template[l] = '\0'; int fd, retries = 100; while (retries--) { if (!*__randname(template)) return -1; /* Add back the suffix */ template[l] = suffix; if ((fd = open(template, flags | O_CREAT | O_EXCL, 0600))>=0) return fd; if (errno != EEXIST) return -1; } return -1; }