123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
- * are also available at http://curl.haxx.se/docs/copyright.html.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the COPYING file.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ***************************************************************************/
- #include "curl_setup.h"
- #if defined(__INTEL_COMPILER) && defined(__unix__)
- #ifdef HAVE_NETINET_IN_H
- # include <netinet/in.h>
- #endif
- #ifdef HAVE_ARPA_INET_H
- # include <arpa/inet.h>
- #endif
- #endif /* __INTEL_COMPILER && __unix__ */
- #define BUILDING_WARNLESS_C 1
- #include "warnless.h"
- #define CURL_MASK_SCHAR 0x7F
- #define CURL_MASK_UCHAR 0xFF
- #if (SIZEOF_SHORT == 2)
- # define CURL_MASK_SSHORT 0x7FFF
- # define CURL_MASK_USHORT 0xFFFF
- #elif (SIZEOF_SHORT == 4)
- # define CURL_MASK_SSHORT 0x7FFFFFFF
- # define CURL_MASK_USHORT 0xFFFFFFFF
- #elif (SIZEOF_SHORT == 8)
- # define CURL_MASK_SSHORT 0x7FFFFFFFFFFFFFFF
- # define CURL_MASK_USHORT 0xFFFFFFFFFFFFFFFF
- #else
- # error "SIZEOF_SHORT not defined"
- #endif
- #if (SIZEOF_INT == 2)
- # define CURL_MASK_SINT 0x7FFF
- # define CURL_MASK_UINT 0xFFFF
- #elif (SIZEOF_INT == 4)
- # define CURL_MASK_SINT 0x7FFFFFFF
- # define CURL_MASK_UINT 0xFFFFFFFF
- #elif (SIZEOF_INT == 8)
- # define CURL_MASK_SINT 0x7FFFFFFFFFFFFFFF
- # define CURL_MASK_UINT 0xFFFFFFFFFFFFFFFF
- #elif (SIZEOF_INT == 16)
- # define CURL_MASK_SINT 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
- # define CURL_MASK_UINT 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
- #else
- # error "SIZEOF_INT not defined"
- #endif
- #if (CURL_SIZEOF_LONG == 2)
- # define CURL_MASK_SLONG 0x7FFFL
- # define CURL_MASK_ULONG 0xFFFFUL
- #elif (CURL_SIZEOF_LONG == 4)
- # define CURL_MASK_SLONG 0x7FFFFFFFL
- # define CURL_MASK_ULONG 0xFFFFFFFFUL
- #elif (CURL_SIZEOF_LONG == 8)
- # define CURL_MASK_SLONG 0x7FFFFFFFFFFFFFFFL
- # define CURL_MASK_ULONG 0xFFFFFFFFFFFFFFFFUL
- #elif (CURL_SIZEOF_LONG == 16)
- # define CURL_MASK_SLONG 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFL
- # define CURL_MASK_ULONG 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFUL
- #else
- # error "CURL_SIZEOF_LONG not defined"
- #endif
- #if (CURL_SIZEOF_CURL_OFF_T == 2)
- # define CURL_MASK_SCOFFT CURL_OFF_T_C(0x7FFF)
- # define CURL_MASK_UCOFFT CURL_OFF_TU_C(0xFFFF)
- #elif (CURL_SIZEOF_CURL_OFF_T == 4)
- # define CURL_MASK_SCOFFT CURL_OFF_T_C(0x7FFFFFFF)
- # define CURL_MASK_UCOFFT CURL_OFF_TU_C(0xFFFFFFFF)
- #elif (CURL_SIZEOF_CURL_OFF_T == 8)
- # define CURL_MASK_SCOFFT CURL_OFF_T_C(0x7FFFFFFFFFFFFFFF)
- # define CURL_MASK_UCOFFT CURL_OFF_TU_C(0xFFFFFFFFFFFFFFFF)
- #elif (CURL_SIZEOF_CURL_OFF_T == 16)
- # define CURL_MASK_SCOFFT CURL_OFF_T_C(0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
- # define CURL_MASK_UCOFFT CURL_OFF_TU_C(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
- #else
- # error "CURL_SIZEOF_CURL_OFF_T not defined"
- #endif
- #if (SIZEOF_SIZE_T == SIZEOF_SHORT)
- # define CURL_MASK_SSIZE_T CURL_MASK_SSHORT
- # define CURL_MASK_USIZE_T CURL_MASK_USHORT
- #elif (SIZEOF_SIZE_T == SIZEOF_INT)
- # define CURL_MASK_SSIZE_T CURL_MASK_SINT
- # define CURL_MASK_USIZE_T CURL_MASK_UINT
- #elif (SIZEOF_SIZE_T == CURL_SIZEOF_LONG)
- # define CURL_MASK_SSIZE_T CURL_MASK_SLONG
- # define CURL_MASK_USIZE_T CURL_MASK_ULONG
- #elif (SIZEOF_SIZE_T == CURL_SIZEOF_CURL_OFF_T)
- # define CURL_MASK_SSIZE_T CURL_MASK_SCOFFT
- # define CURL_MASK_USIZE_T CURL_MASK_UCOFFT
- #else
- # error "SIZEOF_SIZE_T not defined"
- #endif
- /*
- ** unsigned long to unsigned short
- */
- unsigned short curlx_ultous(unsigned long ulnum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(ulnum <= (unsigned long) CURL_MASK_USHORT);
- return (unsigned short)(ulnum & (unsigned long) CURL_MASK_USHORT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** unsigned long to unsigned char
- */
- unsigned char curlx_ultouc(unsigned long ulnum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(ulnum <= (unsigned long) CURL_MASK_UCHAR);
- return (unsigned char)(ulnum & (unsigned long) CURL_MASK_UCHAR);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** unsigned long to signed int
- */
- int curlx_ultosi(unsigned long ulnum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(ulnum <= (unsigned long) CURL_MASK_SINT);
- return (int)(ulnum & (unsigned long) CURL_MASK_SINT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** unsigned size_t to signed int
- */
- int curlx_uztosi(size_t uznum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(uznum <= (size_t) CURL_MASK_SINT);
- return (int)(uznum & (size_t) CURL_MASK_SINT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** unsigned size_t to unsigned long
- */
- unsigned long curlx_uztoul(size_t uznum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- #if (CURL_SIZEOF_LONG < SIZEOF_SIZE_T)
- DEBUGASSERT(uznum <= (size_t) CURL_MASK_ULONG);
- #endif
- return (unsigned long)(uznum & (size_t) CURL_MASK_ULONG);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** unsigned size_t to unsigned int
- */
- unsigned int curlx_uztoui(size_t uznum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- #if (SIZEOF_INT < SIZEOF_SIZE_T)
- DEBUGASSERT(uznum <= (size_t) CURL_MASK_UINT);
- #endif
- return (unsigned int)(uznum & (size_t) CURL_MASK_UINT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** signed long to signed int
- */
- int curlx_sltosi(long slnum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(slnum >= 0);
- #if (SIZEOF_INT < CURL_SIZEOF_LONG)
- DEBUGASSERT((unsigned long) slnum <= (unsigned long) CURL_MASK_SINT);
- #endif
- return (int)(slnum & (long) CURL_MASK_SINT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** signed long to unsigned int
- */
- unsigned int curlx_sltoui(long slnum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(slnum >= 0);
- #if (SIZEOF_INT < CURL_SIZEOF_LONG)
- DEBUGASSERT((unsigned long) slnum <= (unsigned long) CURL_MASK_UINT);
- #endif
- return (unsigned int)(slnum & (long) CURL_MASK_UINT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** signed long to unsigned short
- */
- unsigned short curlx_sltous(long slnum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(slnum >= 0);
- DEBUGASSERT((unsigned long) slnum <= (unsigned long) CURL_MASK_USHORT);
- return (unsigned short)(slnum & (long) CURL_MASK_USHORT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** unsigned size_t to signed ssize_t
- */
- ssize_t curlx_uztosz(size_t uznum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(uznum <= (size_t) CURL_MASK_SSIZE_T);
- return (ssize_t)(uznum & (size_t) CURL_MASK_SSIZE_T);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** signed curl_off_t to unsigned size_t
- */
- size_t curlx_sotouz(curl_off_t sonum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(sonum >= 0);
- return (size_t)(sonum & (curl_off_t) CURL_MASK_USIZE_T);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** signed ssize_t to signed int
- */
- int curlx_sztosi(ssize_t sznum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(sznum >= 0);
- #if (SIZEOF_INT < SIZEOF_SIZE_T)
- DEBUGASSERT((size_t) sznum <= (size_t) CURL_MASK_SINT);
- #endif
- return (int)(sznum & (ssize_t) CURL_MASK_SINT);
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- /*
- ** signed int to unsigned size_t
- */
- size_t curlx_sitouz(int sinum)
- {
- #ifdef __INTEL_COMPILER
- # pragma warning(push)
- # pragma warning(disable:810) /* conversion may lose significant bits */
- #endif
- DEBUGASSERT(sinum >= 0);
- return (size_t) sinum;
- #ifdef __INTEL_COMPILER
- # pragma warning(pop)
- #endif
- }
- #ifdef USE_WINSOCK
- /*
- ** curl_socket_t to signed int
- */
- int curlx_sktosi(curl_socket_t s)
- {
- return (int)((ssize_t) s);
- }
- /*
- ** signed int to curl_socket_t
- */
- curl_socket_t curlx_sitosk(int i)
- {
- return (curl_socket_t)((ssize_t) i);
- }
- #endif /* USE_WINSOCK */
- #if defined(WIN32) || defined(_WIN32)
- ssize_t curlx_read(int fd, void *buf, size_t count)
- {
- return (ssize_t)read(fd, buf, curlx_uztoui(count));
- }
- ssize_t curlx_write(int fd, const void *buf, size_t count)
- {
- return (ssize_t)write(fd, buf, curlx_uztoui(count));
- }
- #endif /* WIN32 || _WIN32 */
- #if defined(__INTEL_COMPILER) && defined(__unix__)
- int curlx_FD_ISSET(int fd, fd_set *fdset)
- {
- #pragma warning(push)
- #pragma warning(disable:1469) /* clobber ignored */
- return FD_ISSET(fd, fdset);
- #pragma warning(pop)
- }
- void curlx_FD_SET(int fd, fd_set *fdset)
- {
- #pragma warning(push)
- #pragma warning(disable:1469) /* clobber ignored */
- FD_SET(fd, fdset);
- #pragma warning(pop)
- }
- void curlx_FD_ZERO(fd_set *fdset)
- {
- #pragma warning(push)
- #pragma warning(disable:593) /* variable was set but never used */
- FD_ZERO(fdset);
- #pragma warning(pop)
- }
- unsigned short curlx_htons(unsigned short usnum)
- {
- #if (__INTEL_COMPILER == 910) && defined(__i386__)
- return (unsigned short)(((usnum << 8) & 0xFF00) | ((usnum >> 8) & 0x00FF));
- #else
- #pragma warning(push)
- #pragma warning(disable:810) /* conversion may lose significant bits */
- return htons(usnum);
- #pragma warning(pop)
- #endif
- }
- unsigned short curlx_ntohs(unsigned short usnum)
- {
- #if (__INTEL_COMPILER == 910) && defined(__i386__)
- return (unsigned short)(((usnum << 8) & 0xFF00) | ((usnum >> 8) & 0x00FF));
- #else
- #pragma warning(push)
- #pragma warning(disable:810) /* conversion may lose significant bits */
- return ntohs(usnum);
- #pragma warning(pop)
- #endif
- }
- #endif /* __INTEL_COMPILER && __unix__ */
|