123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- /* 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.
- */
- /*
- * Copyright (c) 1990, 1993
- * The Regents of the University of California. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
- #include "fspr.h"
- #include "fspr_strings.h"
- #include "fspr_general.h"
- #include "fspr_private.h"
- #include "fspr_lib.h"
- #define APR_WANT_STDIO
- #define APR_WANT_STRFUNC
- #include "fspr_want.h"
- #ifdef HAVE_STDDEF_H
- #include <stddef.h> /* NULL */
- #endif
- #ifdef HAVE_STDLIB_H
- #include <stdlib.h> /* strtol and strtoll */
- #endif
- /** this is used to cache lengths in fspr_pstrcat */
- #define MAX_SAVED_LENGTHS 6
- APR_DECLARE(char *) fspr_pstrdup(fspr_pool_t *a, const char *s)
- {
- char *res;
- fspr_size_t len;
- if (s == NULL) {
- return NULL;
- }
- len = strlen(s) + 1;
- res = fspr_palloc(a, len);
- memcpy(res, s, len);
- return res;
- }
- APR_DECLARE(char *) fspr_pstrndup(fspr_pool_t *a, const char *s, fspr_size_t n)
- {
- char *res;
- const char *end;
- if (s == NULL) {
- return NULL;
- }
- end = memchr(s, '\0', n);
- if (end != NULL)
- n = end - s;
- res = fspr_palloc(a, n + 1);
- memcpy(res, s, n);
- res[n] = '\0';
- return res;
- }
- APR_DECLARE(char *) fspr_pstrmemdup(fspr_pool_t *a, const char *s, fspr_size_t n)
- {
- char *res;
- if (s == NULL) {
- return NULL;
- }
- res = fspr_palloc(a, n + 1);
- memcpy(res, s, n);
- res[n] = '\0';
- return res;
- }
- APR_DECLARE(void *) fspr_pmemdup(fspr_pool_t *a, const void *m, fspr_size_t n)
- {
- void *res;
- if (m == NULL)
- return NULL;
- res = fspr_palloc(a, n);
- memcpy(res, m, n);
- return res;
- }
- APR_DECLARE_NONSTD(char *) fspr_pstrcat(fspr_pool_t *a, ...)
- {
- char *cp, *argp, *res;
- fspr_size_t saved_lengths[MAX_SAVED_LENGTHS] = { 0 };
- int nargs = 0;
- /* Pass one --- find length of required string */
- fspr_size_t len = 0;
- va_list adummy;
- va_start(adummy, a);
- while ((cp = va_arg(adummy, char *)) != NULL) {
- fspr_size_t cplen = strlen(cp);
- if (nargs < MAX_SAVED_LENGTHS) {
- saved_lengths[nargs++] = cplen;
- }
- len += cplen;
- }
- va_end(adummy);
- /* Allocate the required string */
- res = (char *) fspr_palloc(a, len + 1);
- cp = res;
- /* Pass two --- copy the argument strings into the result space */
- va_start(adummy, a);
- nargs = 0;
- while ((argp = va_arg(adummy, char *)) != NULL) {
- if (nargs < MAX_SAVED_LENGTHS) {
- len = saved_lengths[nargs++];
- }
- else {
- len = strlen(argp);
- }
-
- memcpy(cp, argp, len);
- cp += len;
- }
- va_end(adummy);
- /* Return the result string */
- *cp = '\0';
- return res;
- }
- APR_DECLARE(char *) fspr_pstrcatv(fspr_pool_t *a, const struct iovec *vec,
- fspr_size_t nvec, fspr_size_t *nbytes)
- {
- fspr_size_t i;
- fspr_size_t len;
- const struct iovec *src;
- char *res;
- char *dst;
- /* Pass one --- find length of required string */
- len = 0;
- src = vec;
- for (i = nvec; i; i--) {
- len += src->iov_len;
- src++;
- }
- if (nbytes) {
- *nbytes = len;
- }
- /* Allocate the required string */
- res = (char *) fspr_palloc(a, len + 1);
-
- /* Pass two --- copy the argument strings into the result space */
- src = vec;
- dst = res;
- for (i = nvec; i; i--) {
- memcpy(dst, src->iov_base, src->iov_len);
- dst += src->iov_len;
- src++;
- }
- /* Return the result string */
- *dst = '\0';
- return res;
- }
- #if (!APR_HAVE_MEMCHR)
- void *memchr(const void *s, int c, size_t n)
- {
- const char *cp;
- for (cp = s; n > 0; n--, cp++) {
- if (*cp == c)
- return (char *) cp; /* Casting away the const here */
- }
- return NULL;
- }
- #endif
- #ifndef INT64_MAX
- #define INT64_MAX APR_INT64_C(0x7fffffffffffffff)
- #endif
- #ifndef INT64_MIN
- #define INT64_MIN (-APR_INT64_C(0x7fffffffffffffff) - APR_INT64_C(1))
- #endif
- APR_DECLARE(fspr_status_t) fspr_strtoff(fspr_off_t *offset, const char *nptr,
- char **endptr, int base)
- {
- errno = 0;
- *offset = APR_OFF_T_STRFN(nptr, endptr, base);
- return APR_FROM_OS_ERROR(errno);
- }
- APR_DECLARE(fspr_int64_t) fspr_strtoi64(const char *nptr, char **endptr, int base)
- {
- #ifdef APR_INT64_STRFN
- return APR_INT64_STRFN(nptr, endptr, base);
- #else
- const char *s;
- fspr_int64_t acc;
- fspr_int64_t val;
- int neg, any;
- char c;
- /*
- * Skip white space and pick up leading +/- sign if any.
- * If base is 0, allow 0x for hex and 0 for octal, else
- * assume decimal; if base is already 16, allow 0x.
- */
- s = nptr;
- do {
- c = *s++;
- } while (fspr_isspace(c));
- if (c == '-') {
- neg = 1;
- c = *s++;
- } else {
- neg = 0;
- if (c == '+')
- c = *s++;
- }
- if ((base == 0 || base == 16) &&
- c == '0' && (*s == 'x' || *s == 'X')) {
- c = s[1];
- s += 2;
- base = 16;
- }
- if (base == 0)
- base = c == '0' ? 8 : 10;
- acc = any = 0;
- if (base < 2 || base > 36) {
- errno = EINVAL;
- if (endptr != NULL)
- *endptr = (char *)(any ? s - 1 : nptr);
- return acc;
- }
- /* The classic bsd implementation requires div/mod operators
- * to compute a cutoff. Benchmarking proves that is very, very
- * evil to some 32 bit processors. Instead, look for underflow
- * in both the mult and add/sub operation. Unlike the bsd impl,
- * we also work strictly in a signed int64 word as we haven't
- * implemented the unsigned type in win32.
- *
- * Set 'any' if any `digits' consumed; make it negative to indicate
- * overflow.
- */
- val = 0;
- for ( ; ; c = *s++) {
- if (c >= '0' && c <= '9')
- c -= '0';
- #if (('Z' - 'A') == 25)
- else if (c >= 'A' && c <= 'Z')
- c -= 'A' - 10;
- else if (c >= 'a' && c <= 'z')
- c -= 'a' - 10;
- #elif APR_CHARSET_EBCDIC
- else if (c >= 'A' && c <= 'I')
- c -= 'A' - 10;
- else if (c >= 'J' && c <= 'R')
- c -= 'J' - 19;
- else if (c >= 'S' && c <= 'Z')
- c -= 'S' - 28;
- else if (c >= 'a' && c <= 'i')
- c -= 'a' - 10;
- else if (c >= 'j' && c <= 'r')
- c -= 'j' - 19;
- else if (c >= 's' && c <= 'z')
- c -= 'z' - 28;
- #else
- #error "CANNOT COMPILE fspr_strtoi64(), only ASCII and EBCDIC supported"
- #endif
- else
- break;
- if (c >= base)
- break;
- val *= base;
- if ( (any < 0) /* already noted an over/under flow - short circuit */
- || (neg && (val > acc || (val -= c) > acc)) /* underflow */
- || (!neg && (val < acc || (val += c) < acc))) { /* overflow */
- any = -1; /* once noted, over/underflows never go away */
- #ifdef APR_STRTOI64_OVERFLOW_IS_BAD_CHAR
- break;
- #endif
- } else {
- acc = val;
- any = 1;
- }
- }
- if (any < 0) {
- acc = neg ? INT64_MIN : INT64_MAX;
- errno = ERANGE;
- } else if (!any) {
- errno = EINVAL;
- }
- if (endptr != NULL)
- *endptr = (char *)(any ? s - 1 : nptr);
- return (acc);
- #endif
- }
- APR_DECLARE(fspr_int64_t) fspr_atoi64(const char *buf)
- {
- return fspr_strtoi64(buf, NULL, 10);
- }
- APR_DECLARE(char *) fspr_itoa(fspr_pool_t *p, int n)
- {
- const int BUFFER_SIZE = sizeof(int) * 3 + 2;
- char *buf = fspr_palloc(p, BUFFER_SIZE);
- char *start = buf + BUFFER_SIZE - 1;
- int negative;
- if (n < 0) {
- negative = 1;
- n = -n;
- }
- else {
- negative = 0;
- }
- *start = 0;
- do {
- *--start = '0' + (n % 10);
- n /= 10;
- } while (n);
- if (negative) {
- *--start = '-';
- }
- return start;
- }
- APR_DECLARE(char *) fspr_ltoa(fspr_pool_t *p, long n)
- {
- const int BUFFER_SIZE = sizeof(long) * 3 + 2;
- char *buf = fspr_palloc(p, BUFFER_SIZE);
- char *start = buf + BUFFER_SIZE - 1;
- int negative;
- if (n < 0) {
- negative = 1;
- n = -n;
- }
- else {
- negative = 0;
- }
- *start = 0;
- do {
- *--start = (char)('0' + (n % 10));
- n /= 10;
- } while (n);
- if (negative) {
- *--start = '-';
- }
- return start;
- }
- APR_DECLARE(char *) fspr_off_t_toa(fspr_pool_t *p, fspr_off_t n)
- {
- const int BUFFER_SIZE = sizeof(fspr_off_t) * 3 + 2;
- char *buf = fspr_palloc(p, BUFFER_SIZE);
- char *start = buf + BUFFER_SIZE - 1;
- int negative;
- if (n < 0) {
- negative = 1;
- n = -n;
- }
- else {
- negative = 0;
- }
- *start = 0;
- do {
- *--start = '0' + (char)(n % 10);
- n /= 10;
- } while (n);
- if (negative) {
- *--start = '-';
- }
- return start;
- }
- APR_DECLARE(char *) fspr_strfsize(fspr_off_t size, char *buf)
- {
- const char ord[] = "KMGTPE";
- const char *o = ord;
- int remain;
- if (size < 0) {
- return strcpy(buf, " - ");
- }
- if (size < 973) {
- if (fspr_snprintf(buf, 5, "%3d ", (int) size) < 0)
- return strcpy(buf, "****");
- return buf;
- }
- do {
- remain = (int)(size & 1023);
- size >>= 10;
- if (size >= 973) {
- ++o;
- continue;
- }
- if (size < 9 || (size == 9 && remain < 973)) {
- if ((remain = ((remain * 5) + 256) / 512) >= 10)
- ++size, remain = 0;
- if (fspr_snprintf(buf, 5, "%d.%d%c", (int) size, remain, *o) < 0)
- return strcpy(buf, "****");
- return buf;
- }
- if (remain >= 512)
- ++size;
- if (fspr_snprintf(buf, 5, "%3d%c", (int) size, *o) < 0)
- return strcpy(buf, "****");
- return buf;
- } while (1);
- }
|