1 /****************************************************************************
2  *                                                                          *
3  *                         GNAT COMPILER COMPONENTS                         *
4  *                                                                          *
5  *                                 M K D I R                                *
6  *                                                                          *
7  *                          C Implementation File                           *
8  *                                                                          *
9  *             Copyright (C) 2002-2018, Free Software Foundation, Inc.      *
10  *                                                                          *
11  * GNAT is free software;  you can  redistribute it  and/or modify it under *
12  * terms of the  GNU General Public License as published  by the Free Soft- *
13  * ware  Foundation;  either version 3,  or (at your option) any later ver- *
14  * sion.  GNAT is distributed in the hope that it will be useful, but WITH- *
15  * OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY *
16  * or FITNESS FOR A PARTICULAR PURPOSE.                                     *
17  *                                                                          *
18  * As a special exception under Section 7 of GPL version 3, you are granted *
19  * additional permissions described in the GCC Runtime Library Exception,   *
20  * version 3.1, as published by the Free Software Foundation.               *
21  *                                                                          *
22  * You should have received a copy of the GNU General Public License and    *
23  * a copy of the GCC Runtime Library Exception along with this program;     *
24  * see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    *
25  * <http://www.gnu.org/licenses/>.                                          *
26  *                                                                          *
27  * GNAT was originally developed  by the GNAT team at  New York University. *
28  * Extensive contributions were provided by Ada Core Technologies Inc.      *
29  *                                                                          *
30  ****************************************************************************/
31 
32 #ifdef __vxworks
33 #include "vxWorks.h"
34 #include <version.h>
35 #endif /* __vxworks */
36 
37 #ifdef IN_RTS
38 #include "tconfig.h"
39 #include "tsystem.h"
40 #include <sys/stat.h>
41 #else
42 #include "config.h"
43 #include "system.h"
44 #endif
45 
46 #ifdef __MINGW32__
47 #include "mingw32.h"
48 #include <windows.h>
49 #ifdef MAXPATHLEN
50 #define GNAT_MAX_PATH_LEN MAXPATHLEN
51 #else
52 #define GNAT_MAX_PATH_LEN 256
53 #endif
54 #endif
55 
56 #include "adaint.h"
57 
58 /*  This function provides a portable binding to the mkdir function.  */
59 
60 int
__gnat_mkdir(char * dir_name,int encoding ATTRIBUTE_UNUSED)61 __gnat_mkdir (char *dir_name, int encoding ATTRIBUTE_UNUSED)
62 {
63 #if defined (__vxworks)
64 
65   /* Pretend that the system mkdir is posix compliant even though it
66      sometimes is not, not expecting the second argument in some
67      configurations (e.g. vxworks 653 2.2, difference from 2.5). The
68      second actual argument will just be ignored in this case.  */
69 
70   typedef int posix_mkdir (const char * name, mode_t mode);
71 
72   posix_mkdir * vxmkdir = (posix_mkdir *)&mkdir;
73   return vxmkdir (dir_name, S_IRWXU | S_IRWXG | S_IRWXO);
74 
75 #elif defined (__MINGW32__)
76   TCHAR wname [GNAT_MAX_PATH_LEN + 2];
77 
78   if (encoding == Encoding_Unspecified)
79     S2WSC (wname, dir_name, GNAT_MAX_PATH_LEN);
80   else if (encoding == Encoding_UTF8)
81     S2WSU (wname, dir_name, GNAT_MAX_PATH_LEN);
82   else
83     S2WS (wname, dir_name, GNAT_MAX_PATH_LEN);
84 
85   return _tmkdir (wname);
86 #else
87   return mkdir (dir_name, S_IRWXU | S_IRWXG | S_IRWXO);
88 #endif
89 }
90