hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Create better temporary files.
 
Probably-Signed-off-by: Dave Bender <bender@benegon.com>
[yann.morin.1998@free.fr: patch was made by Dave, but he
 forgot his SoB line, so I added it; split the patch in two
  independent fixes]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 
diff -rupN cgic206/cgic.c cgic206_tempfile/cgic.c
--- cgic206/cgic.c    2014-03-16 18:17:11.000000000 -0400
+++ cgic206_tempfile/cgic.c    2015-01-21 11:58:45.436384908 -0500
@@ -22,6 +22,8 @@
 #define CGICDEBUGEND
 #endif /* CGICDEBUG */
 
+#define _GNU_SOURCE
+
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
@@ -34,11 +36,11 @@
 #include <io.h>
 
 /* cgic 2.01 */
-#include <fcntl.h>
 
 #else
 #include <unistd.h>
 #endif /* WIN32 */
+#include <fcntl.h>
 #include "cgic.h"
 
 #define cgiStrEq(a, b) (!strcmp((a), (b)))
@@ -636,16 +638,17 @@ static cgiParseResultType getTempFileNam
         window between the file's creation and the
         chmod call (glibc 2.0.6 and lower might
         otherwise have allowed this). */
+    mode_t umode;
     int outfd; 
+    umode = umask(0600);
     strcpy(tfileName, cgicTempDir "/cgicXXXXXX");
-    outfd = mkstemp(tfileName);
+    outfd = mkostemp(tfileName, O_CLOEXEC | O_NOATIME);
+    umask(umode);
     if (outfd == -1) {
         return cgiParseIO;
     }
-    close(outfd);
-    /* Fix the permissions */
-    if (chmod(tfileName, 0600) != 0) {
-        unlink(tfileName);
+
+    if (close(outfd)) {
         return cgiParseIO;
     }
 #else