]> arthur.barton.de Git - netatalk.git/blob - libatalk/compat/mktemp.c
Initial revision
[netatalk.git] / libatalk / compat / mktemp.c
1 /*
2  * Copyright (c) 1987 Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that: (1) source distributions retain this entire copyright
7  * notice and comment, and (2) distributions including binaries display
8  * the following acknowledgement:  ``This product includes software
9  * developed by the University of California, Berkeley and its contributors''
10  * in the documentation or other materials provided with the distribution
11  * and in all advertising materials mentioning features or use of this
12  * software. Neither the name of the University nor the names of its
13  * contributors may be used to endorse or promote products derived
14  * from this software without specific prior written permission.
15  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18  */
19
20 #if defined(LIBC_SCCS) && !defined(lint)
21 static char sccsid[] = "@(#)mktemp.c    5.9 (Berkeley) 6/1/90";
22 #endif /* LIBC_SCCS and not lint */
23
24 static int      _mktemp_dummy;
25
26 # ifdef ultrix
27
28 #include <sys/types.h>
29 #include <sys/file.h>
30 #include <sys/stat.h>
31 #include <errno.h>
32 #include <stdio.h>
33 #include <ctype.h>
34
35 mkstemp(path)
36         char *path;
37 {
38         int fd;
39
40         return (_gettemp(path, &fd) ? fd : -1);
41 }
42
43 char *
44 mktemp(path)
45         char *path;
46 {
47         return(_gettemp(path, (int *)NULL) ? path : (char *)NULL);
48 }
49
50 static
51 _gettemp(path, doopen)
52         char *path;
53         register int *doopen;
54 {
55         extern int errno;
56         register char *start, *trv;
57         struct stat sbuf;
58         u_int pid;
59
60         pid = getpid();
61         for (trv = path; *trv; ++trv);          /* extra X's get set to 0's */
62         while (*--trv == 'X') {
63                 *trv = (pid % 10) + '0';
64                 pid /= 10;
65         }
66
67         /*
68          * check the target directory; if you have six X's and it
69          * doesn't exist this runs for a *very* long time.
70          */
71         for (start = trv + 1;; --trv) {
72                 if (trv <= path)
73                         break;
74                 if (*trv == '/') {
75                         *trv = '\0';
76                         if (stat(path, &sbuf))
77                                 return(0);
78                         if (!S_ISDIR(sbuf.st_mode)) {
79                                 errno = ENOTDIR;
80                                 return(0);
81                         }
82                         *trv = '/';
83                         break;
84                 }
85         }
86
87         for (;;) {
88                 if (doopen) {
89                         if ((*doopen =
90                             open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0)
91                                 return(1);
92                         if (errno != EEXIST)
93                                 return(0);
94                 }
95                 else if (stat(path, &sbuf))
96                         return(errno == ENOENT ? 1 : 0);
97
98                 /* tricky little algorithm for backward compatibility */
99                 for (trv = start;;) {
100                         if (!*trv)
101                                 return(0);
102                         if (*trv == 'z')
103                                 *trv++ = 'a';
104                         else {
105                                 if (isdigit(*trv))
106                                         *trv = 'a';
107                                 else
108                                         ++*trv;
109                                 break;
110                         }
111                 }
112         }
113         /*NOTREACHED*/
114 }
115
116 # endif ultrix