2 * Unix SMB/CIFS implementation.
4 * Copyright (C) Tim Potter 2002.
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 */
31 werror_code_struct dos_errs
[] =
33 { "WERR_OK", WERR_OK
},
34 { "WERR_BADFILE", WERR_BADFILE
},
35 { "WERR_ACCESS_DENIED", WERR_ACCESS_DENIED
},
36 { "WERR_BADFID", WERR_BADFID
},
37 { "WERR_BADFUNC", WERR_BADFUNC
},
38 { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER
},
39 { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE
},
40 { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS
},
41 { "WERR_INVALID_PARAM", WERR_INVALID_PARAM
},
42 { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED
},
43 { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD
},
44 { "WERR_NOMEM", WERR_NOMEM
},
45 { "WERR_INVALID_NAME", WERR_INVALID_NAME
},
46 { "WERR_UNKNOWN_LEVEL", WERR_UNKNOWN_LEVEL
},
47 { "WERR_OBJECT_PATH_INVALID", WERR_OBJECT_PATH_INVALID
},
48 { "WERR_NO_MORE_ITEMS", WERR_NO_MORE_ITEMS
},
49 { "WERR_MORE_DATA", WERR_MORE_DATA
},
50 { "WERR_UNKNOWN_PRINTER_DRIVER", WERR_UNKNOWN_PRINTER_DRIVER
},
51 { "WERR_INVALID_PRINTER_NAME", WERR_INVALID_PRINTER_NAME
},
52 { "WERR_PRINTER_ALREADY_EXISTS", WERR_PRINTER_ALREADY_EXISTS
},
53 { "WERR_INVALID_DATATYPE", WERR_INVALID_DATATYPE
},
54 { "WERR_INVALID_ENVIRONMENT", WERR_INVALID_ENVIRONMENT
},
55 { "WERR_INVALID_FORM_NAME", WERR_INVALID_FORM_NAME
},
56 { "WERR_INVALID_FORM_SIZE", WERR_INVALID_FORM_SIZE
},
57 { "WERR_BUF_TOO_SMALL", WERR_BUF_TOO_SMALL
},
58 { "WERR_JOB_NOT_FOUND", WERR_JOB_NOT_FOUND
},
59 { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND
},
60 { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN
},
61 { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE
},
62 { "WERR_STATUS_MORE_ENTRIES ", WERR_STATUS_MORE_ENTRIES
},
63 { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL
},
64 { "WERR_DFS_NO_SUCH_SHARE", WERR_DFS_NO_SUCH_SHARE
},
65 { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER
},
66 { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR
},
67 { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT
},
68 { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR
},
72 /*****************************************************************************
73 returns a DOS error message. not amazingly helpful, but better than a number.
74 *****************************************************************************/
75 char *dos_errstr(WERROR werror
)
80 slprintf(msg
, sizeof(msg
), "DOS code 0x%08x", W_ERROR_V(werror
));
82 while (dos_errs
[idx
].dos_errstr
!= NULL
) {
83 if (W_ERROR_V(dos_errs
[idx
].werror
) ==
85 return dos_errs
[idx
].dos_errstr
;