Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / libsmb / doserr.c
blob8628db3abc9d60cc1a945c5bb28939f6928d55da
1 /*
2 * Unix SMB/CIFS implementation.
3 * DOS error routines
4 * Copyright (C) Tim Potter 2002.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 /* DOS error codes. please read doserr.h */
23 #include "includes.h"
25 typedef const struct
27 const char *dos_errstr;
28 WERROR werror;
29 } werror_code_struct;
31 werror_code_struct dos_errs[] =
33 { "WERR_OK", WERR_OK },
34 { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE },
35 { "WERR_BADFILE", WERR_BADFILE },
36 { "WERR_ACCESS_DENIED", WERR_ACCESS_DENIED },
37 { "WERR_BADFID", WERR_BADFID },
38 { "WERR_BADFUNC", WERR_BADFUNC },
39 { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER },
40 { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE },
41 { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS },
42 { "WERR_INVALID_PARAM", WERR_INVALID_PARAM },
43 { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED },
44 { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD },
45 { "WERR_NOMEM", WERR_NOMEM },
46 { "WERR_INVALID_NAME", WERR_INVALID_NAME },
47 { "WERR_UNKNOWN_LEVEL", WERR_UNKNOWN_LEVEL },
48 { "WERR_OBJECT_PATH_INVALID", WERR_OBJECT_PATH_INVALID },
49 { "WERR_NO_MORE_ITEMS", WERR_NO_MORE_ITEMS },
50 { "WERR_MORE_DATA", WERR_MORE_DATA },
51 { "WERR_UNKNOWN_PRINTER_DRIVER", WERR_UNKNOWN_PRINTER_DRIVER },
52 { "WERR_INVALID_PRINTER_NAME", WERR_INVALID_PRINTER_NAME },
53 { "WERR_PRINTER_ALREADY_EXISTS", WERR_PRINTER_ALREADY_EXISTS },
54 { "WERR_INVALID_DATATYPE", WERR_INVALID_DATATYPE },
55 { "WERR_INVALID_ENVIRONMENT", WERR_INVALID_ENVIRONMENT },
56 { "WERR_INVALID_FORM_NAME", WERR_INVALID_FORM_NAME },
57 { "WERR_INVALID_FORM_SIZE", WERR_INVALID_FORM_SIZE },
58 { "WERR_BUF_TOO_SMALL", WERR_BUF_TOO_SMALL },
59 { "WERR_JOB_NOT_FOUND", WERR_JOB_NOT_FOUND },
60 { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND },
61 { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN },
62 { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE },
63 { "WERR_STATUS_MORE_ENTRIES ", WERR_STATUS_MORE_ENTRIES },
64 { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL },
65 { "WERR_DFS_NO_SUCH_SHARE", WERR_DFS_NO_SUCH_SHARE },
66 { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER },
67 { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR },
68 { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT },
69 { "WERR_MACHINE_LOCKED", WERR_MACHINE_LOCKED },
70 { "WERR_NO_LOGON_SERVERS", WERR_NO_LOGON_SERVERS },
71 { "WERR_NO_SUCH_DOMAIN", WERR_NO_SUCH_DOMAIN },
72 { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR },
73 { "WERR_INVALID_OWNER", WERR_INVALID_OWNER },
74 { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE },
75 { "WERR_IO_PENDING", WERR_IO_PENDING },
76 { "WERR_INVALID_SERVICE_CONTROL", WERR_INVALID_SERVICE_CONTROL },
77 { "WERR_NET_NAME_NOT_FOUND", WERR_NET_NAME_NOT_FOUND },
78 { "WERR_REG_CORRUPT", WERR_REG_CORRUPT },
79 { "WERR_REG_IO_FAILURE", WERR_REG_IO_FAILURE },
80 { "WERR_REG_FILE_INVALID", WERR_REG_FILE_INVALID },
81 { "WERR_SERVICE_DISABLED", WERR_SERVICE_DISABLED },
82 { NULL, W_ERROR(0) }
85 /*****************************************************************************
86 returns a DOS error message. not amazingly helpful, but better than a number.
87 *****************************************************************************/
88 const char *dos_errstr(WERROR werror)
90 static pstring msg;
91 int idx = 0;
93 slprintf(msg, sizeof(msg), "DOS code 0x%08x", W_ERROR_V(werror));
95 while (dos_errs[idx].dos_errstr != NULL) {
96 if (W_ERROR_V(dos_errs[idx].werror) ==
97 W_ERROR_V(werror))
98 return dos_errs[idx].dos_errstr;
99 idx++;
102 return msg;