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
|
/* $Id: util.c 51 2004-12-09 23:04:16Z lennart $ */
/***
This file is part of mdns-scan.
mdns-scan 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 of the
License, or (at your option) any later version.
mdns-scan 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.
You should have received a copy of the GNU General Public
License along with mdns-scan; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <sys/select.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <assert.h>
#include <fcntl.h>
#include "util.h"
/* Calculate the difference between the two specfified timeval
* timestamsps. */
usec_t timeval_diff(const struct timeval *a, const struct timeval *b) {
usec_t r;
assert(a && b);
/* Check which whan is the earlier time and swap the two arguments if reuqired. */
if (timeval_cmp(a, b) < 0) {
const struct timeval *c;
c = a;
a = b;
b = c;
}
/* Calculate the second difference*/
r = ((usec_t) a->tv_sec - b->tv_sec)* 1000000;
/* Calculate the microsecond difference */
if (a->tv_usec > b->tv_usec)
r += ((usec_t) a->tv_usec - b->tv_usec);
else if (a->tv_usec < b->tv_usec)
r -= ((usec_t) b->tv_usec - a->tv_usec);
return r;
}
/* Compare the two timeval structs and return 0 when equal, negative when a < b, positive otherwse */
int timeval_cmp(const struct timeval *a, const struct timeval *b) {
assert(a && b);
if (a->tv_sec < b->tv_sec)
return -1;
if (a->tv_sec > b->tv_sec)
return 1;
if (a->tv_usec < b->tv_usec)
return -1;
if (a->tv_usec > b->tv_usec)
return 1;
return 0;
}
/* Return the time difference between now and the specified timestamp */
usec_t timeval_age(const struct timeval *tv) {
struct timeval now;
assert(tv);
gettimeofday(&now, NULL);
return timeval_diff(&now, tv);
}
/* Add the specified time inmicroseconds to the specified timeval structure */
void timeval_add(struct timeval *tv, usec_t v) {
unsigned long secs;
assert(tv);
secs = (v/1000000);
tv->tv_sec += (unsigned long) secs;
v -= secs*1000000;
tv->tv_usec += v;
/* Normalize */
while (tv->tv_usec >= 1000000) {
tv->tv_sec++;
tv->tv_usec -= 1000000;
}
}
int set_cloexec(int fd) {
int n;
assert(fd >= 0);
if ((n = fcntl(fd, F_GETFD)) < 0)
return -1;
if (n & FD_CLOEXEC)
return 0;
return fcntl(fd, F_SETFD, n|FD_CLOEXEC);
}
int set_nonblock(int fd) {
int n;
assert(fd >= 0);
if ((n = fcntl(fd, F_GETFL)) < 0)
return -1;
if (n & O_NONBLOCK)
return 0;
return fcntl(fd, F_SETFL, n|O_NONBLOCK);
}
int wait_for_write(int fd, struct timeval *end) {
struct timeval now;
if (end)
gettimeofday(&now, NULL);
for (;;) {
struct timeval tv;
fd_set fds;
int r;
FD_ZERO(&fds);
FD_SET(fd, &fds);
if (end) {
if (timeval_cmp(&now, end) >= 0)
return 1;
tv.tv_sec = tv.tv_usec = 0;
timeval_add(&tv, timeval_diff(end, &now));
}
if ((r = select(fd+1, NULL, &fds, NULL, end ? &tv : NULL)) < 0) {
if (errno != EINTR) {
fprintf(stderr, "select() failed: %s\n", strerror(errno));
return -1;
}
} else if (r == 0)
return 1;
else {
if (FD_ISSET(fd, &fds))
return 0;
}
if (end)
gettimeofday(&now, NULL);
}
}
int wait_for_read(int fd, struct timeval *end) {
struct timeval now;
if (end)
gettimeofday(&now, NULL);
for (;;) {
struct timeval tv;
fd_set fds;
int r;
FD_ZERO(&fds);
FD_SET(fd, &fds);
if (end) {
if (timeval_cmp(&now, end) >= 0)
return 1;
tv.tv_sec = tv.tv_usec = 0;
timeval_add(&tv, timeval_diff(end, &now));
}
if ((r = select(fd+1, &fds, NULL, NULL, end ? &tv : NULL)) < 0) {
if (errno != EINTR) {
fprintf(stderr, "select() failed: %s\n", strerror(errno));
return -1;
}
} else if (r == 0)
return 1;
else {
if (FD_ISSET(fd, &fds))
return 0;
}
if (end)
gettimeofday(&now, NULL);
}
}
int domain_cmp(const char *a, const char *b) {
size_t al, bl;
al = strlen(a);
bl = strlen(b);
if (al > 0 && a[al-1] == '.')
al --;
if (bl > 0 && b[bl-1] == '.')
bl --;
if (al != bl)
return al > bl ? 1 : (al < bl ? -1 : 0);
return strncasecmp(a, b, al);
}
char *ends_with(const char *a, const char *b) {
size_t k, l;
char *c;
k = strlen(a);
l = strlen(b);
if (l > k)
return NULL;
c = (char*) a+k-l;
if (strcmp(c, b) == 0)
return c;
return NULL;
}
|