2007-05-29 23:09:38 +04:00
/*
* Unix SMB / CIFS implementation .
* map unix to NT errors , an excerpt of libsmb / errormap . c
* Copyright ( C ) Andrew Tridgell 2001
* Copyright ( C ) Andrew Bartlett 2001
* Copyright ( C ) Tim Potter 2000
* Copyright ( C ) Jeremy Allison 2007
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
* the Free Software Foundation ; either version 3 of the License , or
2007-05-29 23:09:38 +04:00
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2007-07-10 09:23:25 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2007-05-29 23:09:38 +04:00
*/
# include "includes.h"
/* Mapping from Unix, to NT error numbers */
2011-05-04 05:39:21 +04:00
static const struct {
int unix_error ;
NTSTATUS nt_error ;
} unix_nt_errmap [ ] = {
2011-06-17 10:06:34 +04:00
{ EAGAIN , NT_STATUS_NETWORK_BUSY } ,
{ EINTR , NT_STATUS_RETRY } ,
# ifdef ENOBUFS
{ ENOBUFS , NT_STATUS_INSUFFICIENT_RESOURCES } ,
# endif
# ifdef EWOULDBLOCK
{ EWOULDBLOCK , NT_STATUS_NETWORK_BUSY } ,
# endif
2011-05-31 03:16:35 +04:00
{ EPERM , NT_STATUS_ACCESS_DENIED } ,
{ EACCES , NT_STATUS_ACCESS_DENIED } ,
{ ENOENT , NT_STATUS_OBJECT_NAME_NOT_FOUND } ,
{ ENOTDIR , NT_STATUS_NOT_A_DIRECTORY } ,
{ EIO , NT_STATUS_IO_DEVICE_ERROR } ,
{ EBADF , NT_STATUS_INVALID_HANDLE } ,
{ EINVAL , NT_STATUS_INVALID_PARAMETER } ,
{ EEXIST , NT_STATUS_OBJECT_NAME_COLLISION } ,
{ ENFILE , NT_STATUS_TOO_MANY_OPENED_FILES } ,
{ EMFILE , NT_STATUS_TOO_MANY_OPENED_FILES } ,
{ ENOSPC , NT_STATUS_DISK_FULL } ,
{ ENOMEM , NT_STATUS_NO_MEMORY } ,
{ EISDIR , NT_STATUS_FILE_IS_A_DIRECTORY } ,
2014-09-13 22:44:13 +04:00
{ EMSGSIZE , NT_STATUS_PORT_MESSAGE_TOO_LONG } ,
2011-06-17 10:06:34 +04:00
# ifdef EPIPE
2011-10-25 17:12:05 +04:00
{ EPIPE , NT_STATUS_CONNECTION_DISCONNECTED } ,
2011-06-17 10:06:34 +04:00
# endif
2011-05-31 03:16:35 +04:00
{ EMLINK , NT_STATUS_TOO_MANY_LINKS } ,
{ ENOSYS , NT_STATUS_NOT_SUPPORTED } ,
2007-07-12 03:40:14 +04:00
# ifdef ELOOP
2011-05-31 03:16:35 +04:00
{ ELOOP , NT_STATUS_OBJECT_PATH_NOT_FOUND } ,
2007-07-12 03:40:14 +04:00
# endif
2009-06-04 20:56:58 +04:00
# ifdef EFTYPE
2011-05-31 03:16:35 +04:00
{ EFTYPE , NT_STATUS_OBJECT_PATH_NOT_FOUND } ,
2009-06-04 20:56:58 +04:00
# endif
2007-05-29 23:09:38 +04:00
# ifdef EDQUOT
2011-05-31 03:16:35 +04:00
{ EDQUOT , NT_STATUS_DISK_FULL } , /* Windows apps need this, not NT_STATUS_QUOTA_EXCEEDED */
2007-05-29 23:09:38 +04:00
# endif
# ifdef ENOTEMPTY
2011-05-31 03:16:35 +04:00
{ ENOTEMPTY , NT_STATUS_DIRECTORY_NOT_EMPTY } ,
2007-05-29 23:09:38 +04:00
# endif
# ifdef EXDEV
2011-05-31 03:16:35 +04:00
{ EXDEV , NT_STATUS_NOT_SAME_DEVICE } ,
2007-05-29 23:09:38 +04:00
# endif
# ifdef EROFS
2017-09-07 14:49:49 +03:00
{ EROFS , NT_STATUS_MEDIA_WRITE_PROTECTED } ,
2007-05-29 23:09:38 +04:00
# endif
# ifdef ENAMETOOLONG
2011-05-04 05:39:21 +04:00
{ ENAMETOOLONG , NT_STATUS_OBJECT_NAME_INVALID } ,
2007-05-29 23:09:38 +04:00
# endif
# ifdef EFBIG
2011-05-31 03:16:35 +04:00
{ EFBIG , NT_STATUS_DISK_FULL } ,
2007-05-29 23:09:38 +04:00
# endif
2007-06-20 05:26:18 +04:00
# ifdef EADDRINUSE
2011-05-31 03:16:35 +04:00
{ EADDRINUSE , NT_STATUS_ADDRESS_ALREADY_ASSOCIATED } ,
2007-06-20 05:26:18 +04:00
# endif
# ifdef ENETUNREACH
2011-05-31 03:16:35 +04:00
{ ENETUNREACH , NT_STATUS_NETWORK_UNREACHABLE } ,
2007-06-20 05:26:18 +04:00
# endif
# ifdef EHOSTUNREACH
2011-05-31 03:16:35 +04:00
{ EHOSTUNREACH , NT_STATUS_HOST_UNREACHABLE } ,
2007-06-20 05:26:18 +04:00
# endif
# ifdef ECONNREFUSED
2011-05-04 05:39:21 +04:00
{ ECONNREFUSED , NT_STATUS_CONNECTION_REFUSED } ,
2007-06-20 05:26:18 +04:00
# endif
# ifdef ETIMEDOUT
2011-05-31 03:16:35 +04:00
{ ETIMEDOUT , NT_STATUS_IO_TIMEOUT } ,
2007-06-20 05:26:18 +04:00
# endif
# ifdef ECONNABORTED
2011-05-04 05:39:21 +04:00
{ ECONNABORTED , NT_STATUS_CONNECTION_ABORTED } ,
2007-06-20 05:26:18 +04:00
# endif
2009-08-11 15:52:07 +04:00
# ifdef ECONNRESET
2011-05-31 03:16:35 +04:00
{ ECONNRESET , NT_STATUS_CONNECTION_RESET } ,
2009-08-11 15:52:07 +04:00
# endif
2007-06-20 05:26:18 +04:00
# ifdef ENODEV
2011-05-31 03:16:35 +04:00
{ ENODEV , NT_STATUS_DEVICE_DOES_NOT_EXIST } ,
2007-06-20 05:26:18 +04:00
# endif
2008-01-20 00:44:55 +03:00
# ifdef ENOATTR
2011-05-31 03:16:35 +04:00
{ ENOATTR , NT_STATUS_NOT_FOUND } ,
2008-01-20 00:44:55 +03:00
# endif
2009-03-06 09:38:41 +03:00
# ifdef ECANCELED
2011-05-31 03:16:35 +04:00
{ ECANCELED , NT_STATUS_CANCELLED } ,
2009-03-06 09:38:41 +03:00
# endif
2010-08-19 12:56:30 +04:00
# ifdef ENOTSUP
2011-05-31 03:16:35 +04:00
{ ENOTSUP , NT_STATUS_NOT_SUPPORTED } ,
2010-08-19 12:56:30 +04:00
# endif
2013-06-11 20:20:20 +04:00
# ifdef ETXTBSY
{ ETXTBSY , NT_STATUS_SHARING_VIOLATION } ,
# endif
2015-12-17 21:16:43 +03:00
# ifdef EOVERFLOW
{ EOVERFLOW , NT_STATUS_ALLOTTED_SPACE_EXCEEDED } ,
# endif
2020-02-20 12:25:16 +03:00
{ EINPROGRESS , NT_STATUS_MORE_PROCESSING_REQUIRED } ,
2007-05-29 23:09:38 +04:00
} ;
/*********************************************************************
Map an NT error code from a Unix error code .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS map_nt_error_from_unix ( int unix_error )
{
2020-01-19 13:50:57 +03:00
size_t i = 0 ;
2007-05-29 23:09:38 +04:00
2008-08-10 04:43:36 +04:00
if ( unix_error = = 0 ) {
/* we map this to an error, not success, as this
function is only called in an error path . Lots of
our virtualised functions may fail without making a
unix system call that fails ( such as when they are
checking for some handle existing ) , so unix_error
may be unset
*/
return NT_STATUS_UNSUCCESSFUL ;
}
2007-05-29 23:09:38 +04:00
/* Look through list */
2011-05-31 02:44:02 +04:00
for ( i = 0 ; i < ARRAY_SIZE ( unix_nt_errmap ) ; i + + ) {
if ( unix_nt_errmap [ i ] . unix_error = = unix_error ) {
2011-05-04 05:39:21 +04:00
return unix_nt_errmap [ i ] . nt_error ;
2011-05-31 02:44:02 +04:00
}
2007-05-29 23:09:38 +04:00
}
/* Default return */
return NT_STATUS_ACCESS_DENIED ;
}