r23779: Change from v2 or later to v3 or later.
[sfrench/samba-autobuild/.git] / source / libsmb / doserr.c
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 3 of the License, or
9  *  (at your option) any later version.
10  *  
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.
15  *  
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.
19  */
20
21 /* DOS error codes.  please read doserr.h */
22
23 #include "includes.h"
24
25 typedef const struct
26 {
27         const char *dos_errstr;
28         WERROR werror;
29 } werror_code_struct;
30
31 werror_code_struct dos_errs[] =
32 {
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_SEM_TIMEOUT", WERR_SEM_TIMEOUT },
41         { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE },
42         { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS },
43         { "WERR_INVALID_PARAM", WERR_INVALID_PARAM },
44         { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED },
45         { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD },
46         { "WERR_NOMEM", WERR_NOMEM },
47         { "WERR_INVALID_NAME", WERR_INVALID_NAME },
48         { "WERR_UNKNOWN_LEVEL", WERR_UNKNOWN_LEVEL },
49         { "WERR_OBJECT_PATH_INVALID", WERR_OBJECT_PATH_INVALID },
50         { "WERR_NO_MORE_ITEMS", WERR_NO_MORE_ITEMS },
51         { "WERR_MORE_DATA", WERR_MORE_DATA },
52         { "WERR_UNKNOWN_PRINTER_DRIVER", WERR_UNKNOWN_PRINTER_DRIVER },
53         { "WERR_INVALID_PRINTER_NAME", WERR_INVALID_PRINTER_NAME },
54         { "WERR_PRINTER_ALREADY_EXISTS", WERR_PRINTER_ALREADY_EXISTS },
55         { "WERR_INVALID_DATATYPE", WERR_INVALID_DATATYPE },
56         { "WERR_INVALID_ENVIRONMENT", WERR_INVALID_ENVIRONMENT },
57         { "WERR_INVALID_FORM_NAME", WERR_INVALID_FORM_NAME },
58         { "WERR_INVALID_FORM_SIZE", WERR_INVALID_FORM_SIZE },
59         { "WERR_BUF_TOO_SMALL", WERR_BUF_TOO_SMALL },
60         { "WERR_JOB_NOT_FOUND", WERR_JOB_NOT_FOUND },
61         { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND },
62         { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN },
63         { "WERR_NO_LOGON_SERVERS", WERR_NO_LOGON_SERVERS },
64         { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE },
65         { "WERR_STATUS_MORE_ENTRIES  ", WERR_STATUS_MORE_ENTRIES },
66         { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL },
67         { "WERR_DFS_NO_SUCH_SHARE", WERR_DFS_NO_SUCH_SHARE },
68         { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER },
69         { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR },
70         { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT },
71         { "WERR_MACHINE_LOCKED", WERR_MACHINE_LOCKED },
72         { "WERR_DOMAIN_CONTROLLER_NOT_FOUND", WERR_DOMAIN_CONTROLLER_NOT_FOUND },
73         { "WERR_DEVICE_NOT_AVAILABLE", WERR_DEVICE_NOT_AVAILABLE },
74         { "WERR_LOGON_FAILURE", WERR_LOGON_FAILURE },
75         { "WERR_NO_SUCH_DOMAIN", WERR_NO_SUCH_DOMAIN },
76         { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR },
77         { "WERR_INVALID_OWNER", WERR_INVALID_OWNER },
78         { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE },
79         { "WERR_IO_PENDING", WERR_IO_PENDING },
80         { "WERR_INVALID_SERVICE_CONTROL", WERR_INVALID_SERVICE_CONTROL },
81         { "WERR_NET_NAME_NOT_FOUND", WERR_NET_NAME_NOT_FOUND },
82         { "WERR_REG_CORRUPT", WERR_REG_CORRUPT },
83         { "WERR_REG_IO_FAILURE", WERR_REG_IO_FAILURE },
84         { "WERR_REG_FILE_INVALID", WERR_REG_FILE_INVALID },
85         { "WERR_SERVICE_DISABLED", WERR_SERVICE_DISABLED },
86         { "WERR_CAN_NOT_COMPLETE", WERR_CAN_NOT_COMPLETE},
87         { "WERR_INVALID_FLAGS", WERR_INVALID_FLAGS},
88         { NULL, W_ERROR(0) }
89 };
90
91 /*****************************************************************************
92  Returns a DOS error message.  not amazingly helpful, but better than a number.
93  *****************************************************************************/
94
95 const char *dos_errstr(WERROR werror)
96 {
97         static pstring msg;
98         int idx = 0;
99
100         slprintf(msg, sizeof(msg), "DOS code 0x%08x", W_ERROR_V(werror));
101
102         while (dos_errs[idx].dos_errstr != NULL) {
103                 if (W_ERROR_V(dos_errs[idx].werror) == 
104                     W_ERROR_V(werror))
105                         return dos_errs[idx].dos_errstr;
106                 idx++;
107         }
108
109         return msg;
110 }