1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
/* $Id: support.c,v 1.1 2000/03/01 04:51:53 riq Exp $ */
/**********************************************************************
Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
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
the Free Software Foundation; either version 2, or (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.
***********************************************************************/
/**********************************************************************
This module contains replacements for functions which are not
available on all platforms. Where the functions are available
natively, these are (mostly) just wrappers.
Notice the function names here are prefixed by, eg, "my". An
alternative would be to use the "standard" function name, and
provide the implementation only if required. However the method
here has some advantages:
- We can provide definite prototypes in support.h, rather than
worrying about whether a system prototype exists, and if so where,
and whether it is correct. (Note that whether or not configure
finds a function and defines HAVE_FOO does not necessarily say
whether or not there is a _prototype_ for the function available.)
- We don't have to include config.h in support.h, but can instead
restrict it to this .c file.
- We can add some extra stuff to these functions if we want.
The main disadvantage is remembering to use these "my" functions on
systems which have the functions natively.
**********************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h> /* usleep */
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#ifdef GENERATING_MAC
#include <events.h> /* for WaitNextEvent() */
#endif
#include "all.h"
/***************************************************************
Compare strings like strcmp(), but ignoring case.
***************************************************************/
int mystrcasecmp(const char *str0, const char *str1)
{
for(; tolower(*str0)==tolower(*str1); str0++, str1++)
if(*str0=='\0')
return 0;
return tolower(*str0)-tolower(*str1);
}
/***************************************************************
Compare strings like strncmp(), but ignoring case.
ie, only compares first n chars.
***************************************************************/
int mystrncasecmp(const char *str0, const char *str1, size_t n)
{
size_t i;
for(i=0; i<n && tolower(*str0)==tolower(*str1); i++, str0++, str1++)
if(*str0=='\0')
return 0;
return (i==n) ? 0 : (tolower(*str0)-tolower(*str1));
}
/***************************************************************
...
***************************************************************/
char *mystrerror(int errnum)
{
#if defined(HAVE_STRERROR)
return strerror(errnum);
#else
static char buf[64];
my_snprintf(buf, sizeof(buf),
_("error %d (compiled without strerror)"), errnum);
return buf;
#endif
}
/***************************************************************
...
***************************************************************/
void myusleep(unsigned long usec)
{
#ifdef HAVE_USLEEP
usleep(usec);
#else
#ifdef HAVE_SNOOZE /* BeOS */
snooze(usec);
#else
#ifdef GENERATING_MAC
EventRecord the_event; /* dummy - always be a null event */
usec /= 16666; /* microseconds to 1/60th seconds */
if (usec < 1) usec = 1;
/* suposed to give other application processor time for the mac */
WaitNextEvent(0, &the_event, usec, nil);
#else
struct timeval tv;
tv.tv_sec=0;
tv.tv_usec=usec;
select(0, NULL, NULL, NULL, &tv);
#endif
#endif
#endif
}
/**********************************************************************
mystrlcpy() and mystrlcat() provide (non-standard) functions
strlcpy() and strlcat(), with semantics following OpenBSD (and
maybe others). They are intended as more user-friendly
versions of stncpy and strncat, in particular easier to
use safely and correctly, and ensuring nul-terminated results
while being able to detect truncation.
n is the full size of the destination buffer, including
space for trailing nul, and including the pre-existing
string for mystrlcat(). Thus can eg use sizeof(buffer),
or exact size malloc-ed.
Result is always nul-terminated, whether or not truncation occurs,
and the return value is the strlen the destination would have had
without truncation. Ie, a return value >= input n indicates
truncation occured.
Will assume that if configure found strlcpy/strlcat they are ok.
For replacement implementations, will keep it simple rather
than try for super-efficiency.
Not sure about the asserts below, but they are easier than
trying to ensure correct behaviour on strange inputs.
In particular note that n==0 is prohibited (eg, since there
must at least be room for a nul); could consider other options.
***********************************************************************/
size_t mystrlcpy(char *dest, const char *src, size_t n)
{
assert(dest);
assert(src);
assert(n>0);
#ifdef HAVE_STRLCPY
return strlcpy(dest, src, n);
#else
{
size_t len = strlen(src);
size_t num_to_copy = (len >= n) ? n-1 : len;
if (num_to_copy>0)
memcpy(dest, src, num_to_copy);
dest[num_to_copy] = '\0';
return len;
}
#endif
}
size_t mystrlcat(char *dest, const char *src, size_t n)
{
assert(dest);
assert(src);
assert(n>0);
#ifdef HAVE_STRLCAT
return strlcat(dest, src, n);
#else
{
size_t num_to_copy, len_dest, len_src;
len_dest = strlen(dest);
assert(len_dest<n);
/* Otherwise have bad choice of leaving dest not nul-terminated
* within the specified length n (which should be assumable as
* a post-condition of mystrlcat), or modifying dest before end
* of existing string (which breaks strcat semantics).
*/
dest += len_dest;
n -= len_dest;
len_src = strlen(src);
num_to_copy = (len_src >= n) ? n-1 : len_src;
if (num_to_copy>0)
memcpy(dest, src, num_to_copy);
dest[num_to_copy] = '\0';
return len_dest + len_src;
}
#endif
}
#ifdef HAVE_VSNPRINTF
/**********************************************************************
Convenience function used by check_native_vsnprintf() below.
(Can test check_native_vsnprintf() by replacing vsnprintf call
below with vsprintf(), or by changing return value to eg -1.)
***********************************************************************/
static int test_snprintf(char *str, size_t n, const char *format, ...)
{
int ret;
va_list ap;
va_start(ap, format);
ret = vsnprintf(str, n, format, ap);
va_end(ap);
return ret;
}
/**********************************************************************
This function checks, at runtime, whether a native vsnprintf() meets
our requirements; specifically:
- Should actually obey the parameter n, rather than, eg, just
calling sprintf and ignoring n.
- On truncation, should return the number of chars (not counting
trailing null) which would have been printed, rather than, eg, -1.
Returns 1 if both ok.
Also checks whether null-terminates on truncation, but we don't
base return value on this since it is easy to force this behaviour.
Reports to stderr if DEBUG set (cannot use freelog since that
calls my_vsnprintf).
Could do these checks at configure time, but seems to me easier to
do at runtime on first call...
***********************************************************************/
static int check_native_vsnprintf(void)
{
char buf[20] = "abcdefghijkl"; /* 12 + null */
char *test_str = "0123456789";
const int ntrunc = 5;
const char one_past = buf[ntrunc];
int test_len = strlen(test_str);
int ret;
ret = test_snprintf(buf, ntrunc, "%s", test_str);
#if DEBUG
if (buf[ntrunc] != one_past) {
fprintf(stderr, "debug: test_snprintf wrote past n\n");
} else if (buf[ntrunc-1] != '\0') {
fprintf(stderr, "debug: test_snprintf did not null-terminate\n");
}
if (ret != test_len) {
fprintf(stderr, "debug: test_snprintf returned %d,"
" not untruncated length %d\n", ret, test_len);
}
#endif
return (buf[ntrunc]==one_past && ret==test_len);
}
#endif
/**********************************************************************
vsnprintf() replacement using a big malloc()ed internal buffer,
originally by David Pfitzner <dwp@mso.anu.edu.au>
Parameter n specifies the maximum number of characters to produce.
This includes the trailing null, so n should be the actual number
of characters allocated (or sizeof for char array). If truncation
occurs, the result will still be null-terminated. (I'm not sure
whether all native vsnprintf() functions null-terminate on
truncation; this does so even if calls native function.)
Return value: if there is no truncation, returns the number of
characters printed, not including the trailing null. If truncation
does occur, returns the number of characters which would have been
produced without truncation.
(Linux man page says returns -1 on truncation, but glibc seems to
do as above nevertheless; check_native_vsnprintf() above tests this.)
The method is simply to malloc (first time called) a big internal
buffer, longer than any result is likely to be (for non-malicious
usage), then vsprintf to that buffer, and copy the appropriate
number of characters to the destination. Thus, this is not 100%
safe. But somewhat safe, and at least safer than using raw snprintf!
:-) (And of course if you have the native version it is safe.)
Before rushing to provide a 100% safe replacement version, consider
the following advantages of this method:
- It is very simple, so not likely to have many bugs (other than
arguably the core design bug regarding absolute safety), nor need
maintenance.
- It uses native vsprintf() (which is required), thus exactly
duplicates the native format-string parsing/conversions.
- It is *very* portable. Eg, it does not require mprotect(), nor
does it do any of its own parsing of the format string, nor use
any tricks to go through the va_list twice.
***********************************************************************/
/* buffer size: "64k should be big enough for anyone" ;-) */
#define VSNP_BUF_SIZE (64*1024)
int my_vsnprintf(char *str, size_t n, const char *format, va_list ap)
{
/* This may be overzealous, but I suspect any triggering of these
* to be bugs. (Do this even if call native function.)
*/
assert(str);
assert(n>0);
assert(format);
#ifdef HAVE_VSNPRINTF
{
static int native_is_ok = -1; /* set to 0 or 1 on first call */
if (native_is_ok == -1) {
native_is_ok = check_native_vsnprintf();
}
if (native_is_ok) {
int ret = vsnprintf(str, n, format, ap);
/* Guarantee null-terminated: (native_is_ok means can use ret like this) */
if (ret >= n) {
str[n-1] = '\0';
}
return ret;
}
}
#endif
/* Following is used if don't have native, or if fall through
* from above if native doesn't pass checks.
*/
{
static char *buf = NULL;
int len;
if (buf==NULL) {
buf = malloc(VSNP_BUF_SIZE);
}
#ifdef HAVE_VSNPRINTF
/* This occurs if have native, but didn't pass check:
* may just be that native doesn't give the right return,
* in which case may be slightly safer to use it here:
*/
vsnprintf(buf, VSNP_BUF_SIZE, format, ap);
#else
vsprintf(buf, format, ap);
#endif
/* Check strlen of buf straight away: could be more efficient
not to do this and step through instead (eg if n small and
len long), but useful anyway to get the return value, and
importantly want to abort if vsprintf clobbered the heap!
(Don't just use return from vsprintf since not sure if
that gives the right thing on all platforms?)
Will maintain last char of buffer as null, and use SIZE-2
as longest string which we can detect as untruncated.
(Don't use freelog() for report since that uses vsnprintf...)
*/
buf[VSNP_BUF_SIZE-1] = '\0';
len = strlen(buf);
if (len >= VSNP_BUF_SIZE-1) {
fprintf(stderr, "Overflow in vsnprintf replacement!"
" (buffer size %d) aborting...\n", VSNP_BUF_SIZE);
abort();
}
if (n > len) {
memcpy(str, buf, len+1); /* +1 for terminating null */
return len;
} else {
memcpy(str, buf, n-1);
str[n-1] = '\0';
return len; /* truncated */
}
}
}
int my_snprintf(char *str, size_t n, const char *format, ...)
{
int ret;
va_list ap;
assert(format);
va_start(ap, format);
ret = my_vsnprintf(str, n, format, ap);
va_end(ap);
return ret;
}
|