notepad: Fix the position of the Encoding combobox.
[wine/multimedia.git] / dlls / msvcrt / errno.c
blobbf65f27ecf12f189d943db214759d8989d841eaa
1 /*
2 * msvcrt.dll errno functions
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdio.h>
22 #include <string.h>
23 #include <stdarg.h>
25 #include "ntstatus.h"
26 #define WIN32_NO_STATUS
27 #include "windef.h"
28 #include "winternl.h"
29 #include "msvcrt.h"
30 #include "winnls.h"
31 #include "excpt.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
36 /* error strings generated with glibc strerror */
37 static char str_success[] = "Success";
38 static char str_EPERM[] = "Operation not permitted";
39 static char str_ENOENT[] = "No such file or directory";
40 static char str_ESRCH[] = "No such process";
41 static char str_EINTR[] = "Interrupted system call";
42 static char str_EIO[] = "Input/output error";
43 static char str_ENXIO[] = "No such device or address";
44 static char str_E2BIG[] = "Argument list too long";
45 static char str_ENOEXEC[] = "Exec format error";
46 static char str_EBADF[] = "Bad file descriptor";
47 static char str_ECHILD[] = "No child processes";
48 static char str_EAGAIN[] = "Resource temporarily unavailable";
49 static char str_ENOMEM[] = "Cannot allocate memory";
50 static char str_EACCES[] = "Permission denied";
51 static char str_EFAULT[] = "Bad address";
52 static char str_EBUSY[] = "Device or resource busy";
53 static char str_EEXIST[] = "File exists";
54 static char str_EXDEV[] = "Invalid cross-device link";
55 static char str_ENODEV[] = "No such device";
56 static char str_ENOTDIR[] = "Not a directory";
57 static char str_EISDIR[] = "Is a directory";
58 static char str_EINVAL[] = "Invalid argument";
59 static char str_ENFILE[] = "Too many open files in system";
60 static char str_EMFILE[] = "Too many open files";
61 static char str_ENOTTY[] = "Inappropriate ioctl for device";
62 static char str_EFBIG[] = "File too large";
63 static char str_ENOSPC[] = "No space left on device";
64 static char str_ESPIPE[] = "Illegal seek";
65 static char str_EROFS[] = "Read-only file system";
66 static char str_EMLINK[] = "Too many links";
67 static char str_EPIPE[] = "Broken pipe";
68 static char str_EDOM[] = "Numerical argument out of domain";
69 static char str_ERANGE[] = "Numerical result out of range";
70 static char str_EDEADLK[] = "Resource deadlock avoided";
71 static char str_ENAMETOOLONG[] = "File name too long";
72 static char str_ENOLCK[] = "No locks available";
73 static char str_ENOSYS[] = "Function not implemented";
74 static char str_ENOTEMPTY[] = "Directory not empty";
75 static char str_EILSEQ[] = "Invalid or incomplete multibyte or wide character";
76 static char str_generic_error[] = "Unknown error";
78 char *MSVCRT__sys_errlist[] =
80 str_success,
81 str_EPERM,
82 str_ENOENT,
83 str_ESRCH,
84 str_EINTR,
85 str_EIO,
86 str_ENXIO,
87 str_E2BIG,
88 str_ENOEXEC,
89 str_EBADF,
90 str_ECHILD,
91 str_EAGAIN,
92 str_ENOMEM,
93 str_EACCES,
94 str_EFAULT,
95 str_generic_error,
96 str_EBUSY,
97 str_EEXIST,
98 str_EXDEV,
99 str_ENODEV,
100 str_ENOTDIR,
101 str_EISDIR,
102 str_EINVAL,
103 str_ENFILE,
104 str_EMFILE,
105 str_ENOTTY,
106 str_generic_error,
107 str_EFBIG,
108 str_ENOSPC,
109 str_ESPIPE,
110 str_EROFS,
111 str_EMLINK,
112 str_EPIPE,
113 str_EDOM,
114 str_ERANGE,
115 str_generic_error,
116 str_EDEADLK,
117 str_generic_error,
118 str_ENAMETOOLONG,
119 str_ENOLCK,
120 str_ENOSYS,
121 str_ENOTEMPTY,
122 str_EILSEQ,
123 str_generic_error
126 unsigned int MSVCRT__sys_nerr = sizeof(MSVCRT__sys_errlist)/sizeof(MSVCRT__sys_errlist[0]) - 1;
128 static MSVCRT_invalid_parameter_handler invalid_parameter_handler = NULL;
130 /* INTERNAL: Set the crt and dos errno's from the OS error given. */
131 void msvcrt_set_errno(int err)
133 int *errno_ptr = MSVCRT__errno();
134 MSVCRT_ulong *doserrno = MSVCRT___doserrno();
136 *doserrno = err;
138 switch(err)
140 #define ERR_CASE(oserr) case oserr:
141 #define ERR_MAPS(oserr, crterr) case oserr: *errno_ptr = crterr; break
142 ERR_CASE(ERROR_ACCESS_DENIED)
143 ERR_CASE(ERROR_NETWORK_ACCESS_DENIED)
144 ERR_CASE(ERROR_CANNOT_MAKE)
145 ERR_CASE(ERROR_SEEK_ON_DEVICE)
146 ERR_CASE(ERROR_LOCK_FAILED)
147 ERR_CASE(ERROR_FAIL_I24)
148 ERR_CASE(ERROR_CURRENT_DIRECTORY)
149 ERR_CASE(ERROR_DRIVE_LOCKED)
150 ERR_CASE(ERROR_NOT_LOCKED)
151 ERR_CASE(ERROR_INVALID_ACCESS)
152 ERR_CASE(ERROR_SHARING_VIOLATION)
153 ERR_MAPS(ERROR_LOCK_VIOLATION, MSVCRT_EACCES);
154 ERR_CASE(ERROR_FILE_NOT_FOUND)
155 ERR_CASE(ERROR_NO_MORE_FILES)
156 ERR_CASE(ERROR_BAD_PATHNAME)
157 ERR_CASE(ERROR_BAD_NETPATH)
158 ERR_CASE(ERROR_INVALID_DRIVE)
159 ERR_CASE(ERROR_BAD_NET_NAME)
160 ERR_CASE(ERROR_FILENAME_EXCED_RANGE)
161 ERR_MAPS(ERROR_PATH_NOT_FOUND, MSVCRT_ENOENT);
162 ERR_MAPS(ERROR_IO_DEVICE, MSVCRT_EIO);
163 ERR_MAPS(ERROR_BAD_FORMAT, MSVCRT_ENOEXEC);
164 ERR_MAPS(ERROR_INVALID_HANDLE, MSVCRT_EBADF);
165 ERR_CASE(ERROR_OUTOFMEMORY)
166 ERR_CASE(ERROR_INVALID_BLOCK)
167 ERR_CASE(ERROR_NOT_ENOUGH_QUOTA)
168 ERR_MAPS(ERROR_ARENA_TRASHED, MSVCRT_ENOMEM);
169 ERR_MAPS(ERROR_BUSY, MSVCRT_EBUSY);
170 ERR_CASE(ERROR_ALREADY_EXISTS)
171 ERR_MAPS(ERROR_FILE_EXISTS, MSVCRT_EEXIST);
172 ERR_MAPS(ERROR_BAD_DEVICE, MSVCRT_ENODEV);
173 ERR_MAPS(ERROR_TOO_MANY_OPEN_FILES, MSVCRT_EMFILE);
174 ERR_MAPS(ERROR_DISK_FULL, MSVCRT_ENOSPC);
175 ERR_MAPS(ERROR_BROKEN_PIPE, MSVCRT_EPIPE);
176 ERR_MAPS(ERROR_POSSIBLE_DEADLOCK, MSVCRT_EDEADLK);
177 ERR_MAPS(ERROR_DIR_NOT_EMPTY, MSVCRT_ENOTEMPTY);
178 ERR_MAPS(ERROR_BAD_ENVIRONMENT, MSVCRT_E2BIG);
179 ERR_CASE(ERROR_WAIT_NO_CHILDREN)
180 ERR_MAPS(ERROR_CHILD_NOT_COMPLETE, MSVCRT_ECHILD);
181 ERR_CASE(ERROR_NO_PROC_SLOTS)
182 ERR_CASE(ERROR_MAX_THRDS_REACHED)
183 ERR_MAPS(ERROR_NESTING_NOT_ALLOWED, MSVCRT_EAGAIN);
184 default:
185 /* Remaining cases map to EINVAL */
186 /* FIXME: may be missing some errors above */
187 *errno_ptr = MSVCRT_EINVAL;
191 /*********************************************************************
192 * _errno (MSVCRT.@)
194 int* CDECL MSVCRT__errno(void)
196 return &msvcrt_get_thread_data()->thread_errno;
199 /*********************************************************************
200 * __doserrno (MSVCRT.@)
202 MSVCRT_ulong* CDECL MSVCRT___doserrno(void)
204 return &msvcrt_get_thread_data()->thread_doserrno;
207 /*********************************************************************
208 * _get_errno (MSVCRT.@)
210 int CDECL _get_errno(int *pValue)
212 if (!pValue)
213 return MSVCRT_EINVAL;
215 *pValue = *MSVCRT__errno();
216 return 0;
219 /*********************************************************************
220 * _get_doserrno (MSVCRT.@)
222 int CDECL _get_doserrno(int *pValue)
224 if (!pValue)
225 return MSVCRT_EINVAL;
227 *pValue = *MSVCRT___doserrno();
228 return 0;
231 /*********************************************************************
232 * _set_errno (MSVCRT.@)
234 int CDECL _set_errno(int value)
236 *MSVCRT__errno() = value;
237 return 0;
240 /*********************************************************************
241 * _set_doserrno (MSVCRT.@)
243 int CDECL _set_doserrno(int value)
245 *MSVCRT___doserrno() = value;
246 return 0;
249 /*********************************************************************
250 * strerror (MSVCRT.@)
252 char* CDECL MSVCRT_strerror(int err)
254 thread_data_t *data = msvcrt_get_thread_data();
256 if (!data->strerror_buffer)
257 if (!(data->strerror_buffer = MSVCRT_malloc(256))) return NULL;
259 if (err < 0 || err > MSVCRT__sys_nerr) err = MSVCRT__sys_nerr;
260 strcpy( data->strerror_buffer, MSVCRT__sys_errlist[err] );
261 return data->strerror_buffer;
264 /**********************************************************************
265 * strerror_s (MSVCRT.@)
267 int CDECL strerror_s(char *buffer, MSVCRT_size_t numberOfElements, int errnum)
269 char *ptr;
271 if (!buffer || !numberOfElements)
273 *MSVCRT__errno() = MSVCRT_EINVAL;
274 return MSVCRT_EINVAL;
277 if (errnum < 0 || errnum > MSVCRT__sys_nerr)
278 errnum = MSVCRT__sys_nerr;
280 ptr = MSVCRT__sys_errlist[errnum];
281 while (*ptr && numberOfElements > 1)
283 *buffer++ = *ptr++;
284 numberOfElements--;
287 *buffer = '\0';
288 return 0;
291 /**********************************************************************
292 * _strerror (MSVCRT.@)
294 char* CDECL MSVCRT__strerror(const char* str)
296 thread_data_t *data = msvcrt_get_thread_data();
297 int err;
299 if (!data->strerror_buffer)
300 if (!(data->strerror_buffer = MSVCRT_malloc(256))) return NULL;
302 err = data->thread_errno;
303 if (err < 0 || err > MSVCRT__sys_nerr) err = MSVCRT__sys_nerr;
305 if (str && *str)
306 sprintf( data->strerror_buffer, "%s: %s\n", str, MSVCRT__sys_errlist[err] );
307 else
308 sprintf( data->strerror_buffer, "%s\n", MSVCRT__sys_errlist[err] );
310 return data->strerror_buffer;
313 /*********************************************************************
314 * perror (MSVCRT.@)
316 void CDECL MSVCRT_perror(const char* str)
318 int err = *MSVCRT__errno();
319 if (err < 0 || err > MSVCRT__sys_nerr) err = MSVCRT__sys_nerr;
321 if (str && *str)
323 MSVCRT__write( 2, str, strlen(str) );
324 MSVCRT__write( 2, ": ", 2 );
326 MSVCRT__write( 2, MSVCRT__sys_errlist[err], strlen(MSVCRT__sys_errlist[err]) );
327 MSVCRT__write( 2, "\n", 1 );
330 /*********************************************************************
331 * _wcserror_s (MSVCRT.@)
333 int CDECL _wcserror_s(MSVCRT_wchar_t* buffer, MSVCRT_size_t nc, int err)
335 if (!MSVCRT_CHECK_PMT(buffer != NULL) || !MSVCRT_CHECK_PMT(nc > 0))
337 _set_errno(MSVCRT_EINVAL);
338 return MSVCRT_EINVAL;
340 if (err < 0 || err > MSVCRT__sys_nerr) err = MSVCRT__sys_nerr;
341 MultiByteToWideChar(CP_ACP, 0, MSVCRT__sys_errlist[err], -1, buffer, nc);
342 return 0;
345 /*********************************************************************
346 * _wcserror (MSVCRT.@)
348 MSVCRT_wchar_t* CDECL MSVCRT__wcserror(int err)
350 thread_data_t *data = msvcrt_get_thread_data();
352 if (!data->wcserror_buffer)
353 if (!(data->wcserror_buffer = MSVCRT_malloc(256 * sizeof(MSVCRT_wchar_t)))) return NULL;
354 _wcserror_s(data->wcserror_buffer, 256, err);
355 return data->wcserror_buffer;
358 /**********************************************************************
359 * __wcserror_s (MSVCRT.@)
361 int CDECL __wcserror_s(MSVCRT_wchar_t* buffer, MSVCRT_size_t nc, const MSVCRT_wchar_t* str)
363 int err;
364 static const WCHAR colonW[] = {':', ' ', '\0'};
365 static const WCHAR nlW[] = {'\n', '\0'};
366 size_t len;
368 err = *MSVCRT__errno();
369 if (err < 0 || err > MSVCRT__sys_nerr) err = MSVCRT__sys_nerr;
371 len = MultiByteToWideChar(CP_ACP, 0, MSVCRT__sys_errlist[err], -1, NULL, 0) + 1 /* \n */;
372 if (str && *str) len += lstrlenW(str) + 2 /* ': ' */;
373 if (len > nc)
375 MSVCRT_INVALID_PMT("buffer[nc] is too small");
376 _set_errno(MSVCRT_ERANGE);
377 return MSVCRT_ERANGE;
379 if (str && *str)
381 lstrcpyW(buffer, str);
382 lstrcatW(buffer, colonW);
384 else buffer[0] = '\0';
385 len = lstrlenW(buffer);
386 MultiByteToWideChar(CP_ACP, 0, MSVCRT__sys_errlist[err], -1, buffer + len, 256 - len);
387 lstrcatW(buffer, nlW);
389 return 0;
392 /**********************************************************************
393 * __wcserror (MSVCRT.@)
395 MSVCRT_wchar_t* CDECL MSVCRT___wcserror(const MSVCRT_wchar_t* str)
397 thread_data_t *data = msvcrt_get_thread_data();
398 int err;
400 if (!data->wcserror_buffer)
401 if (!(data->wcserror_buffer = MSVCRT_malloc(256 * sizeof(MSVCRT_wchar_t)))) return NULL;
403 err = __wcserror_s(data->wcserror_buffer, 256, str);
404 if (err) FIXME("bad wcserror call (%d)\n", err);
406 return data->wcserror_buffer;
409 /******************************************************************************
410 * _seterrormode (MSVCRT.@)
412 void CDECL _seterrormode(int mode)
414 SetErrorMode( mode );
417 /******************************************************************************
418 * _invalid_parameter (MSVCRT.@)
420 void __cdecl MSVCRT__invalid_parameter(const MSVCRT_wchar_t *expr, const MSVCRT_wchar_t *func,
421 const MSVCRT_wchar_t *file, unsigned int line, MSVCRT_uintptr_t arg)
423 if (invalid_parameter_handler) invalid_parameter_handler( expr, func, file, line, arg );
424 else
426 ERR( "%s:%u %s: %s %lx\n", debugstr_w(file), line, debugstr_w(func), debugstr_w(expr), arg );
427 RaiseException( STATUS_INVALID_CRUNTIME_PARAMETER, EXCEPTION_NONCONTINUABLE, 0, NULL );
431 /* _get_invalid_parameter_handler - not exported in native msvcrt, added in msvcr80 */
432 MSVCRT_invalid_parameter_handler CDECL _get_invalid_parameter_handler(void)
434 TRACE("\n");
435 return invalid_parameter_handler;
438 /* _set_invalid_parameter_handler - not exproted in native msvcrt, added in msvcr80 */
439 MSVCRT_invalid_parameter_handler CDECL _set_invalid_parameter_handler(
440 MSVCRT_invalid_parameter_handler handler)
442 MSVCRT_invalid_parameter_handler old = invalid_parameter_handler;
444 TRACE("(%p)\n", handler);
446 invalid_parameter_handler = handler;
447 return old;