]>
git.cameronkatri.com Git - mandoc.git/blob - compat_mkstemps.c
1 /* $Id: compat_mkstemps.c,v 1.1 2021/09/19 15:05:39 schwarze Exp $ */
3 * Copyright (c) 2015, 2021 Ingo Schwarze <schwarze@openbsd.org>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 * Parts of the algorithm of this function are inspired by OpenBSD
18 * mkdtemp(3) by Theo de Raadt and Todd Miller, but the code differs.
30 mkstemps(char *path
, int suffixlen
)
32 char *start
, *end
, *cp
;
36 end
= strchr(path
, '\0');
37 if (suffixlen
< 0 || suffixlen
> end
- path
- 6) {
42 for (start
= end
; start
> path
; start
--)
47 for (tries
= INT_MAX
; tries
; tries
--) {
53 fd
= open(path
, O_CREAT
| O_EXCL
| O_RDWR
, S_IRUSR
| S_IWUSR
);
56 for (cp
= start
; cp
< end
; cp
++)