OSDN Git Service

* environ.cc (set_file_api_mode): New function. Move setting
[pf3gnuchains/sourceware.git] / winsup / cygwin / winsup.h
1 /* winsup.h: main Cygwin header file.
2
3    Copyright 1996, 1997, 1998, 1999, 2000, 2001 Red Hat, Inc.
4
5 This file is part of Cygwin.
6
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9 details. */
10
11 #ifdef HAVE_CONFIG_H
12 # include "config.h"
13 #endif
14
15 #define __INSIDE_CYGWIN__
16
17 #define alloca __builtin_alloca
18 #define strlen __builtin_strlen
19 #define strcmp __builtin_strcmp
20 #define strcpy __builtin_strcpy
21 #define memcpy __builtin_memcpy
22 #define memcmp __builtin_memcmp
23 #ifdef HAVE_BUILTIN_MEMSET
24 # define memset __builtin_memset
25 #endif
26
27 #ifdef __cplusplus
28
29 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ >= 199900L
30 #define NEW_MACRO_VARARGS
31 #endif
32
33 #include <sys/types.h>
34 #include <sys/strace.h>
35
36 extern char case_folded_lower[];
37 #define cyg_tolower(c) (case_folded_lower[(unsigned char)(c)])
38 extern char case_folded_upper[];
39 #define cyg_toupper(c) (case_folded_upper[(unsigned char)(c)])
40
41 #ifndef MALLOC_DEBUG
42 #define cfree newlib_cfree_dont_use
43 #endif
44
45 #define WIN32_LEAN_AND_MEAN 1
46 #define _WINGDI_H
47 #define _WINUSER_H
48 #define _WINNLS_H
49 #define _WINVER_H
50 #define _WINNETWK_H
51 #define _WINSVC_H
52 #include <windows.h>
53 #include <wincrypt.h>
54 #include <lmcons.h>
55 #undef _WINGDI_H
56 #undef _WINUSER_H
57 #undef _WINNLS_H
58 #undef _WINVER_H
59 #undef _WINNETWK_H
60 #undef _WINSVC_H
61
62 /* The one function we use from winuser.h most of the time */
63 extern "C" DWORD WINAPI GetLastError (void);
64
65 /* Used for runtime OS check/decisions. */
66 enum os_type {winNT = 1, win95, win98, winME, win32s, unknown};
67 extern os_type os_being_run;
68
69 enum codepage_type {ansi_cp, oem_cp};
70 extern codepage_type current_codepage;
71
72 /* Used to check if Cygwin DLL is dynamically loaded. */
73 extern int dynamically_loaded;
74
75 #define sys_wcstombs(tgt,src,len) \
76                     WideCharToMultiByte((current_codepage==ansi_cp?CP_ACP:CP_OEMCP),0,(src),-1,(tgt),(len),NULL,NULL)
77 #define sys_mbstowcs(tgt,src,len) \
78                     MultiByteToWideChar((current_codepage==ansi_cp?CP_ACP:CP_OEMCP),0,(src),-1,(tgt),(len))
79
80 #define TITLESIZE 1024
81
82 /* status bit manipulation */
83 #define __ISSETF(what, x, prefix) \
84   ((what)->status & prefix##_##x)
85 #define __SETF(what, x, prefix) \
86   ((what)->status |= prefix##_##x)
87 #define __CLEARF(what, x, prefix) \
88   ((what)->status &= ~prefix##_##x)
89 #define __CONDSETF(n, what, x, prefix) \
90   ((n) ? __SETF (what, x, prefix) : __CLEARF (what, x, prefix))
91
92 #include "debug.h"
93
94 /* Events/mutexes */
95 extern HANDLE title_mutex;
96
97 /**************************** Convenience ******************************/
98
99 #define NO_COPY __attribute__((section(".data_cygwin_nocopy")))
100
101 /* Used when treating / and \ as equivalent. */
102 #define SLASH_P(ch) \
103     ({ \
104         char __c = (ch); \
105         ((__c) == '/' || (__c) == '\\'); \
106     })
107
108 /* Convert a signal to a signal mask */
109 #define SIGTOMASK(sig)  (1<<((sig) - signal_shift_subtract))
110 extern unsigned int signal_shift_subtract;
111
112 #ifdef NEW_MACRO_VARARGS
113 # define api_fatal(...) __api_fatal ("%P: *** " __VA_ARGS__)
114 #else
115 # define api_fatal(fmt, args...) __api_fatal ("%P: *** " fmt,## args)
116 #endif
117
118 #undef issep
119 #define issep(ch) (strchr (" \t\n\r", (ch)) != NULL)
120
121 #define isdirsep SLASH_P
122 #define isabspath(p) \
123   (isdirsep (*(p)) || (isalpha (*(p)) && (p)[1] == ':' && (!(p)[2] || isdirsep ((p)[2]))))
124
125 /******************** Initialization/Termination **********************/
126
127 class per_process;
128 /* cygwin .dll initialization */
129 void dll_crt0 (per_process *) __asm__ ("_dll_crt0__FP11per_process");
130 extern "C" void __stdcall _dll_crt0 ();
131
132 /* dynamically loaded dll initialization */
133 extern "C" int dll_dllcrt0 (HMODULE, per_process *);
134
135 /* dynamically loaded dll initialization for non-cygwin apps */
136 extern "C" int dll_noncygwin_dllcrt0 (HMODULE, per_process *);
137
138 /* exit the program */
139 extern "C" void __stdcall do_exit (int) __attribute__ ((noreturn));
140
141 /* UID/GID */
142 void uinfo_init (void);
143
144 /* various events */
145 void events_init (void);
146 void events_terminate (void);
147
148 void __stdcall close_all_files (void);
149
150 /* Invisible window initialization/termination. */
151 HWND __stdcall gethwnd (void);
152 void __stdcall window_terminate (void);
153
154 /* Globals that handle initialization of winsock in a child process. */
155 extern HANDLE wsock32_handle;
156 extern HANDLE ws2_32_handle;
157
158 /* Globals that handle initialization of netapi in a child process. */
159 extern HANDLE netapi32_handle;
160
161 /* debug_on_trap support. see exceptions.cc:try_to_debug() */
162 extern "C" void error_start_init (const char*);
163 extern "C" int try_to_debug (bool waitloop = 1);
164
165 void set_file_api_mode (codepage_type);
166
167 extern int cygwin_finished_initializing;
168
169 /**************************** Miscellaneous ******************************/
170
171 void __stdcall set_std_handle (int);
172 int __stdcall writable_directory (const char *file);
173 int __stdcall stat_dev (DWORD, int, unsigned long, struct stat *);
174 extern BOOL allow_ntsec;
175
176 unsigned long __stdcall hash_path_name (unsigned long hash, const char *name) __attribute__ ((regparm(2)));
177 void __stdcall nofinalslash (const char *src, char *dst) __attribute__ ((regparm(2)));
178 extern "C" char *__stdcall rootdir (char *full_path) __attribute__ ((regparm(1)));
179
180 /* String manipulation */
181 extern "C" char *__stdcall strccpy (char *s1, const char **s2, char c);
182 extern "C" int __stdcall strcasematch (const char *s1, const char *s2) __attribute__ ((regparm(2)));
183 extern "C" int __stdcall strncasematch (const char *s1, const char *s2, size_t n) __attribute__ ((regparm(3)));
184 extern "C" char *__stdcall strcasestr (const char *searchee, const char *lookfor) __attribute__ ((regparm(2)));
185
186 /* Time related */
187 void __stdcall totimeval (struct timeval *dst, FILETIME * src, int sub, int flag);
188 long __stdcall to_time_t (FILETIME * ptr);
189
190 void __stdcall set_console_title (char *);
191 void set_console_handler ();
192
193 #define set_winsock_errno() __set_winsock_errno (__FUNCTION__, __LINE__)
194 void __set_winsock_errno (const char *fn, int ln) __attribute__ ((regparm(2)));
195
196 /* Printf type functions */
197 extern "C" void __api_fatal (const char *, ...) __attribute__ ((noreturn));
198 extern "C" int __small_sprintf (char *dst, const char *fmt, ...) /*__attribute__ ((regparm (2)))*/;
199 extern "C" int __small_vsprintf (char *dst, const char *fmt, va_list ap) /*__attribute__ ((regparm (3)))*/;
200
201 /**************************** Exports ******************************/
202
203 extern "C" {
204 int cygwin_select (int , fd_set *, fd_set *, fd_set *,
205                    struct timeval *to);
206 int cygwin_gethostname (char *__name, size_t __len);
207
208 int kill_pgrp (pid_t, int);
209 int _kill (int, int);
210 int _raise (int sig);
211
212 extern DWORD binmode;
213 extern char _data_start__, _data_end__, _bss_start__, _bss_end__;
214 extern void (*__CTOR_LIST__) (void);
215 extern void (*__DTOR_LIST__) (void);
216 extern SYSTEM_INFO system_info;
217 };
218
219 /*************************** Unsorted ******************************/
220
221 #define WM_ASYNCIO      0x8000          // WM_APP
222
223 /* Note that MAX_PATH is defined in the windows headers */
224 /* There is also PATH_MAX and MAXPATHLEN.
225    PATH_MAX is from Posix and does *not* include the trailing NUL.
226    MAXPATHLEN is from Unix.
227
228    Thou shalt use MAX_PATH throughout.  It avoids the NUL vs no-NUL
229    issue and is neither of the Unixy ones [so we can punt on which
230    one is the right one to use].  */
231
232 #define STD_RBITS (S_IRUSR | S_IRGRP | S_IROTH)
233 #define STD_WBITS (S_IWUSR)
234 #define STD_XBITS (S_IXUSR | S_IXGRP | S_IXOTH)
235
236 #define O_NOSYMLINK 0x080000
237 #define O_DIROPEN   0x100000
238
239 /* newlib used to define O_NDELAY differently from O_NONBLOCK.  Now it
240    properly defines both to be the same.  Unfortunately, we have to
241    behave properly the old version, too, to accomodate older executables. */
242 #define OLD_O_NDELAY    4
243
244 /* The title on program start. */
245 extern char *old_title;
246 extern BOOL display_title;
247
248 extern HANDLE hMainThread;
249 extern HANDLE hMainProc;
250
251 #endif /* defined __cplusplus */