]>
git.saurik.com Git - apple/ipsec.git/blob - ipsec-tools/racoon/misc.c
   1 /*      $KAME: misc.c,v 1.23 2001/08/16 14:37:29 itojun Exp $   */ 
   4  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 
   7  * Redistribution and use in source and binary forms, with or without 
   8  * modification, are permitted provided that the following conditions 
  10  * 1. Redistributions of source code must retain the above copyright 
  11  *    notice, this list of conditions and the following disclaimer. 
  12  * 2. Redistributions in binary form must reproduce the above copyright 
  13  *    notice, this list of conditions and the following disclaimer in the 
  14  *    documentation and/or other materials provided with the distribution. 
  15  * 3. Neither the name of the project nor the names of its contributors 
  16  *    may be used to endorse or promote products derived from this software 
  17  *    without specific prior written permission. 
  19  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 
  20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
  21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
  22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 
  23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
  24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
  25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
  28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
  34 #include <sys/types.h> 
  35 #include <sys/param.h> 
  51 static int bindump (void *, size_t); 
  58         unsigned char *buf 
= (unsigned char *)buf0
; 
  61         for (i 
= 0; i 
< len
; i
++) { 
  62                 if ((buf
[i
] & 0x80) || !isprint(buf
[i
])) 
  63                         printf("\\x%x", buf
[i
]); 
  78         caddr_t buf 
= (caddr_t
)buf0
; 
  81         for (i 
= 0; i 
< len
; i
++) { 
  82                 if (i 
!= 0 && i 
% 32 == 0) 
  86                 printf("%02x", (unsigned char)buf
[i
]); 
  98         static char b
[MAXBITLEN 
+ 1]; 
 102                 return "Failed to convert.";    /* NG */ 
 106         for (i 
= 0; i 
< bl
; i
++) { 
 115 debug_location(file
, line
, func
) 
 120         static char buf
[1024]; 
 123         /* truncate pathname */ 
 124         p 
= strrchr(file
, '/'); 
 131                 snprintf(buf
, sizeof(buf
), "%s:%d:%s()", p
, line
, func
); 
 133                 snprintf(buf
, sizeof(buf
), "%s:%d", p
, line
); 
 148         if (stat(path
, &st
) != 0) 
 155  * calculate the difference between two times. 
 161         struct timeval 
*t1
, *t2
; 
 163         if (t2
->tv_usec 
>= t1
->tv_usec
) 
 164                 return t2
->tv_sec 
- t1
->tv_sec 
+ 
 165                         (double)(t2
->tv_usec 
- t1
->tv_usec
) / 1000000; 
 167         return t2
->tv_sec 
- t1
->tv_sec 
- 1 + 
 168                 (double)(1000000 + t2
->tv_usec 
- t1
->tv_usec
) / 1000000; 
 172  * Returns a printable string from (possibly) binary data ; 
 173  * concatenates all unprintable chars to one space. 
 174  * XXX Maybe the printable chars range is too large... 
 177 binsanitize(binstr
, n
) 
 182         for (p 
= 0, q 
= 0; p 
< n
; p
++) { 
 183                 if (isgraph((int)binstr
[p
])) { 
 184                         binstr
[q
++] = binstr
[p
]; 
 186                         if (q 
&& binstr
[q 
- 1] != ' ')