/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "apr_arch_misc.h" #include "apr_strings.h" #include "apr_lib.h" #include "apr_dso.h" #include "apu_errno.h" #if APR_HAVE_NETDB_H #include #endif #ifdef HAVE_DLFCN_H #include #endif /* * stuffbuffer - like apr_cpystrn() but returns the address of the * dest buffer instead of the address of the terminating '\0' */ static char *stuffbuffer(char *buf, apr_size_t bufsize, const char *s) { apr_cpystrn(buf,s,bufsize); return buf; } static char *apr_error_string(apr_status_t statcode) { switch (statcode) { case APR_ENOSTAT: return "Could not perform a stat on the file."; case APR_ENOPOOL: return "A new pool could not be created."; case APR_EBADDATE: return "An invalid date has been provided"; case APR_EINVALSOCK: return "An invalid socket was returned"; case APR_ENOPROC: return "No process was provided and one was required."; case APR_ENOTIME: return "No time was provided and one was required."; case APR_ENODIR: return "No directory was provided and one was required."; case APR_ENOLOCK: return "No lock was provided and one was required."; case APR_ENOPOLL: return "No poll structure was provided and one was required."; case APR_ENOSOCKET: return "No socket was provided and one was required."; case APR_ENOTHREAD: return "No thread was provided and one was required."; case APR_ENOTHDKEY: return "No thread key structure was provided and one was required."; case APR_ENOSHMAVAIL: return "No shared memory is currently available"; case APR_EDSOOPEN: #if APR_HAS_DSO && defined(HAVE_LIBDL) return dlerror(); #else return "DSO load failed"; #endif /* HAVE_LIBDL */ case APR_EBADIP: return "The specified IP address is invalid."; case APR_EBADMASK: return "The specified network mask is invalid."; case APR_ESYMNOTFOUND: return "Could not find the requested symbol."; case APR_ENOTENOUGHENTROPY: return "Not enough entropy to continue."; case APR_INCHILD: return "Your code just forked, and you are currently executing in the " "child process"; case APR_INPARENT: return "Your code just forked, and you are currently executing in the " "parent process"; case APR_DETACH: return "The specified thread is detached"; case APR_NOTDETACH: return "The specified thread is not detached"; case APR_CHILD_DONE: return "The specified child process is done executing"; case APR_CHILD_NOTDONE: return "The specified child process is not done executing"; case APR_TIMEUP: return "The timeout specified has expired"; case APR_INCOMPLETE: return "Partial results are valid but processing is incomplete"; case APR_BADCH: return "Bad character specified on command line"; case APR_BADARG: return "Missing parameter for the specified command line option"; case APR_EOF: return "End of file found"; case APR_NOTFOUND: return "Could not find specified socket in poll list."; case APR_ANONYMOUS: return "Shared memory is implemented anonymously"; case APR_FILEBASED: return "Shared memory is implemented using files"; case APR_KEYBASED: return "Shared memory is implemented using a key system"; case APR_EINIT: return "There is no error, this value signifies an initialized " "error code"; case APR_ENOTIMPL: return "This function has not been implemented on this platform"; case APR_EMISMATCH: return "passwords do not match"; case APR_EABSOLUTE: return "The given path is absolute"; case APR_ERELATIVE: return "The given path is relative"; case APR_EINCOMPLETE: return "The given path is incomplete"; case APR_EABOVEROOT: return "The given path was above the root path"; case APR_EBADPATH: return "The given path is misformatted or contained invalid characters"; case APR_EPATHWILD: return "The given path contained wildcard characters"; case APR_EBUSY: return "The given lock was busy."; case APR_EPROC_UNKNOWN: return "The process is not recognized."; case APR_EALREADY: return "Operation already in progress"; case APR_EGENERAL: return "Internal error (specific information not available)"; /* APR Util error codes */ case APR_ENOKEY: return "The key provided was empty or NULL"; case APR_ENOIV: return "The initialisation vector provided was NULL"; case APR_EKEYTYPE: return "The key type was not recognised"; case APR_ENOSPACE: return "The buffer supplied was not big enough"; case APR_ECRYPT: return "Internal error in the crypto subsystem (specific information not available)"; case APR_EPADDING: return "Padding was not supported"; case APR_EKEYLENGTH: return "The key length was incorrect"; case APR_ENOCIPHER: return "The cipher provided was not recognised"; case APR_ENODIGEST: return "The digest provided was not recognised"; case APR_ENOENGINE: return "No engine found for crypto subsystem"; case APR_EINITENGINE: return "Failed to init engine for crypto subsystem"; case APR_EREINIT: return "Underlying crypto has already been initialised"; case APR_ENOVERIFY: return "The signature verification failed"; case APR_SERVER_DOWN: return "The server is down"; case APR_AUTH_UNKNOWN: return "Unknown SASL mechanism"; case APR_PROXY_AUTH: return "Proxy authorization has failed"; case APR_INAPPROPRIATE_AUTH: return "Authentication not appropriate for this entry"; case APR_INVALID_CREDENTIALS: return "Invalid credentials were presented"; case APR_INSUFFICIENT_ACCESS: return "The user has insufficient access"; case APR_INSUFFICIENT_RIGHTS: return "The user has insufficient rights"; case APR_CONSTRAINT_VIOLATION: return "A constraint was violated"; case APR_FILTER_ERROR: return "The filter was malformed"; case APR_NO_SUCH_OBJECT: return "No such object"; case APR_COMPARE_TRUE: return "Comparison is true"; case APR_COMPARE_FALSE: return "Comparison is false"; case APR_NO_RESULTS_RETURNED: return "No results returned"; case APR_WANT_READ: return "Call me again when the socket is ready for reading"; case APR_WANT_WRITE: return "Call me again when the socket is ready for writing"; case APR_USER_CANCELLED: return "User has cancelled the request"; default: return "Error string not specified yet"; } } #ifdef OS2 #include int apr_canonical_error(apr_status_t err); static char *apr_os_strerror(char* buf, apr_size_t bufsize, int err) { char result[200]; unsigned char message[HUGE_STRING_LEN]; ULONG len; char *pos; int c; if (err >= 10000 && err < 12000) { /* socket error codes */ return stuffbuffer(buf, bufsize, strerror(apr_canonical_error(err+APR_OS_START_SYSERR))); } else if (DosGetMessage(NULL, 0, message, HUGE_STRING_LEN, err, "OSO001.MSG", &len) == 0) { len--; message[len] = 0; pos = result; if (len >= sizeof(result)) len = sizeof(result) - 1; for (c=0; c