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
|
/*
This file is part of Kismet
Kismet 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.
Kismet 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 Kismet; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "gpsmap_cache.h"
// Read a cache from a file, error out if there isn't a cache or there isn't a
// valid cache
int ReadGpsCacheFile(const char *in_gpsfname,
vector<wireless_network *> *in_networklist,
vector<gps_point *> *in_points) {
gpscache_header fheader;
struct stat fstat;
time_t gpsmod;
int slashpos;
char cachefname[1024];
struct passwd *pw;
#ifdef HAVE_LIBZ
gzFile cachefile;
#else
FILE *cachefile;
#endif
// Get home dir
pw = getpwuid(getuid());
if (pw == NULL) {
fprintf(stderr, "ERROR: Could not find home directory path for gpscache, "
"getpwuid() failed, %s\n", strerror(errno));
return -1;
}
// Get gps and net xml timestamps
if (stat(in_gpsfname, &fstat) == -1) {
fprintf(stderr, "ERROR: Could not stat gpsxml file %s\n",
in_gpsfname);
return -1;
}
gpsmod = fstat.st_mtime;
// Find the file name of the gps file
for (slashpos = strlen(in_gpsfname); slashpos >= 0; slashpos--) {
if (in_gpsfname[slashpos] == '/')
break;
}
slashpos++;
snprintf(cachefname, 1024, "%s/%s/%s%s", pw->pw_dir, GPSCACHE_DIR,
in_gpsfname + slashpos, GPSCACHE_SUFFIX);
// Bail if the cache file doesn't exist
#ifdef HAVE_LIBZ
if ((cachefile = gzopen(cachefname, "rb")) == NULL)
#else
if ((cachefile = fopen(cachefname, "r")) == NULL)
#endif
return -1;
// Read the header
#ifdef HAVE_LIBZ
if (gzread(cachefile, &fheader, sizeof(gpscache_header)) <
(int) sizeof(gpscache_header)) {
gzclose(cachefile);
return -1;
}
#else
if ((fread(&fheader, sizeof(gpscache_header), 1, cachefile)) <
(int) sizeof(gpscache_header)) {
fclose(cachefile);
return -1;
}
#endif
if (fheader.cache_magic != GPSCACHE_MAGIC ||
fheader.cache_version != GPSCACHE_VERSION) {
#ifdef HAVE_LIBZ
gzclose(cachefile);
#else
fclose(cachefile);
#endif
return -1;
}
if (fheader.gps_last_mod != gpsmod) {
fprintf(stderr, "NOTICE: Cache file %s doesn't match %s modification time.\n",
cachefname, in_gpsfname);
#ifdef HAVE_LIBZ
gzclose(cachefile);
#else
fclose(cachefile);
#endif
return -1;
}
// Now our file is good, so read in all the networks and points
in_networklist->reserve(fheader.num_networks);
for (unsigned int nnet = 0; nnet < fheader.num_networks; nnet++) {
gpscache_network cnet;
wireless_network *wnet = new wireless_network;
#ifdef HAVE_LIBZ
if (gzread(cachefile, &cnet, sizeof(gpscache_network)) <
(int) sizeof(gpscache_network)) {
gzclose(cachefile);
return -1;
}
#else
if ((fread(&cnet, sizeof(gpscache_network), 1, cachefile)) <
(int) sizeof(gpscache_network)) {
fclose(cachefile);
return -1;
}
#endif
wnet->type = (wireless_network_type) cnet.type;
wnet->bssid = mac_addr((uint8_t *) cnet.bssid);
wnet->ssid = cnet.ssid;
wnet->beacon_info = cnet.beacon_info;
wnet->llc_packets = cnet.llc_packets;
wnet->data_packets = cnet.data_packets;
wnet->crypt_packets = cnet.crypt_packets;
wnet->interesting_packets = cnet.interesting_packets;
wnet->channel = cnet.channel;
wnet->crypt_set = cnet.wep;
wnet->last_time = cnet.last_time;
wnet->first_time = cnet.first_time;
wnet->beacon = cnet.beacon;
wnet->carrier_set = cnet.carrier_set;
wnet->encoding_set = cnet.encoding_set;
wnet->datasize = cnet.data_size;
wnet->ipdata.range_ip[0] = cnet.range_ip[0];
wnet->ipdata.range_ip[1] = cnet.range_ip[1];
wnet->ipdata.range_ip[2] = cnet.range_ip[2];
wnet->ipdata.range_ip[3] = cnet.range_ip[3];
in_networklist->push_back(wnet);
}
// Now read all the points
int point_id = 0;
in_points->reserve(fheader.num_points);
for (unsigned int nsam = 0; nsam < fheader.num_points; nsam++) {
gpscache_point cpt;
gps_point *pt = new gps_point;
#ifdef HAVE_LIBZ
if (gzread(cachefile, &cpt, sizeof(gpscache_point)) <
(int) sizeof(gpscache_point)) {
gzclose(cachefile);
return -1;
}
#else
if ((fread(&cpt, sizeof(gpscache_point), 1, cachefile)) <
(int) sizeof(gpscache_point)) {
fclose(cachefile);
return -1;
}
#endif
strncpy(pt->bssid, cpt.bssid, MAC_STR_LEN);
strncpy(pt->source, cpt.source, MAC_STR_LEN);
pt->bssid[MAC_STR_LEN-1] = '\0';
pt->source[MAC_STR_LEN-1] = '\0';
pt->tv_sec = cpt.tv_sec;
pt->tv_usec = cpt.tv_usec;
pt->lat = cpt.lat;
pt->lon = cpt.lon;
pt->spd = cpt.spd;
pt->alt = cpt.alt;
pt->heading = cpt.heading;
pt->fix = cpt.fix;
pt->signal = cpt.signal;
pt->noise = cpt.noise;
pt->id = point_id++;
in_points->push_back(pt);
}
#ifdef HAVE_LIBZ
gzclose(cachefile);
#else
fclose(cachefile);
#endif
return 1;
}
// Cache gps data to a file
int WriteGpsCacheFile(const char *in_gpsfname,
vector<wireless_network *> *in_networklist,
vector<gps_point *> *in_points) {
struct stat fstat;
time_t gpsmod;
int slashpos;
char cachefname[1024];
struct passwd *pw;
#ifdef HAVE_LIBZ
gzFile cachefile;
#else
FILE *cachefile;
#endif
// Get home dir
pw = getpwuid(getuid());
if (pw == NULL) {
fprintf(stderr, "ERROR: Could not find home directory path for gpscache, "
"getpwuid() failed, %s\n", strerror(errno));
return -1;
}
// Get gps and net xml timestamps
if (stat(in_gpsfname, &fstat) == -1) {
fprintf(stderr, "ERROR: Could not stat gpsxml file %s\n",
in_gpsfname);
return -1;
}
gpsmod = fstat.st_mtime;
// Find out if the cache dir exists, try to make it if it doesn't.
snprintf(cachefname, 1024, "%s/%s/", pw->pw_dir, GPSCACHE_DIR);
if (stat(cachefname, &fstat) == -1) {
fprintf(stderr, "NOTICE: Config dir %s doesn't exist, making it...\n",
cachefname);
if (mkdir(cachefname, S_IRUSR | S_IWUSR | S_IXUSR) < 0) {
fprintf(stderr, "FATAL: Could not make cache dir, %s\n",
strerror(errno));
return -1;
}
}
// Find the file name of the gps file
for (slashpos = strlen(in_gpsfname); slashpos >= 0; slashpos--) {
if (in_gpsfname[slashpos] == '/')
break;
}
slashpos++;
snprintf(cachefname, 1024, "%s/%s/%s%s", pw->pw_dir, GPSCACHE_DIR,
in_gpsfname + slashpos, GPSCACHE_SUFFIX);
// Open the cache file for writing
#ifdef HAVE_LIBZ
if ((cachefile = gzopen(cachefname, "wb")) == NULL) {
#else
if ((cachefile = fopen(cachefname, "w")) == NULL) {
#endif
fprintf(stderr, "WARNING: Could not open gps cache file %s for writing (%s)\n",
cachefname, strerror(errno));
return -1;
}
gpscache_header fheader;
fheader.cache_magic = GPSCACHE_MAGIC;
fheader.cache_version = GPSCACHE_VERSION;
fheader.gps_last_mod = gpsmod;
fheader.num_networks = in_networklist->size();
fheader.num_points = in_points->size();
#ifdef HAVE_LIBZ
if (gzwrite(cachefile, &fheader, sizeof(gpscache_header)) <
(int) sizeof(gpscache_header)) {
gzclose(cachefile);
fprintf(stderr, "FATAL: Error writing to cache %s: %s\n",
cachefname, strerror(errno));
unlink(cachefname);
return -1;
}
#else
if (fwrite(&fheader, sizeof(gpscache_header), 1, cachefile) <
(int) sizeof(gpscache_header)) {
fclose(cachefile);
fprintf(stderr, "FATAL: Error writing to cache %s: %s\n",
cachefname, strerror(errno));
unlink(cachefname);
return -1;
}
#endif
// Write the networks out
for (unsigned int nnet = 0; nnet < fheader.num_networks; nnet++) {
gpscache_network cnet;
wireless_network *wnet = (*in_networklist)[nnet];
cnet.type = wnet->type;
for (unsigned int m = 0; m < 6; m++)
cnet.bssid[m] = wnet->bssid[m];
snprintf(cnet.ssid, 32, "%s", wnet->ssid.c_str());
snprintf(cnet.beacon_info, 256, "%s", wnet->beacon_info.c_str());
cnet.llc_packets = wnet->llc_packets;
cnet.data_packets = wnet->data_packets;
cnet.crypt_packets = wnet->crypt_packets;
cnet.interesting_packets = wnet->interesting_packets;
cnet.channel = wnet->channel;
cnet.wep = wnet->crypt_set;
cnet.last_time = wnet->last_time;
cnet.first_time = wnet->first_time;
cnet.beacon = wnet->beacon;
cnet.carrier_set = wnet->carrier_set;
cnet.encoding_set = wnet->encoding_set;
cnet.data_size = wnet->datasize;
cnet.range_ip[0] = wnet->ipdata.range_ip[0];
cnet.range_ip[1] = wnet->ipdata.range_ip[1];
cnet.range_ip[2] = wnet->ipdata.range_ip[2];
cnet.range_ip[3] = wnet->ipdata.range_ip[3];
#ifdef HAVE_LIBZ
if (gzwrite(cachefile, &cnet, sizeof(gpscache_network)) <
(int) sizeof(gpscache_network)) {
gzclose(cachefile);
fprintf(stderr, "FATAL: Error writing to cache %s: %s\n",
cachefname, strerror(errno));
unlink(cachefname);
return -1;
}
#else
if ((fwrite(&cnet, sizeof(gpscache_network), 1, cachefile)) <
(int) sizeof(gpscache_network)) {
fclose(cachefile);
fprintf(stderr, "FATAL: Error writing to cache %s: %s\n",
cachefname, strerror(errno));
unlink(cachefname);
return -1;
}
#endif
}
// Now read all the points
for (unsigned int nsam = 0; nsam < fheader.num_points; nsam++) {
gpscache_point cpt;
gps_point *pt = (*in_points)[nsam];
memset(&cpt, 0, sizeof cpt);
strncpy(cpt.bssid, pt->bssid, sizeof(cpt.bssid)-1);
strncpy(cpt.source, pt->source, sizeof(cpt.source)-1);
cpt.tv_sec = pt->tv_sec;
cpt.tv_usec = pt->tv_usec;
cpt.lat = pt->lat;
cpt.lon = pt->lon;
cpt.spd = pt->spd;
cpt.alt = pt->alt;
cpt.heading = pt->heading;
cpt.fix = pt->fix;
cpt.signal = pt->signal;
cpt.noise = pt->noise;
#ifdef HAVE_LIBZ
if (gzwrite(cachefile, &cpt, sizeof(gpscache_point)) <
(int) sizeof(gpscache_point)) {
gzclose(cachefile);
fprintf(stderr, "FATAL: Error writing to cache %s: %s\n",
cachefname, strerror(errno));
unlink(cachefname);
return -1;
}
#else
if ((fwrite(&cpt, sizeof(gpscache_point), 1, cachefile)) <
(int) sizeof(gpscache_point)) {
fclose(cachefile);
fprintf(stderr, "FATAL: Error writing to cache %s: %s\n",
cachefname, strerror(errno));
unlink(cachefname);
return -1;
}
#endif
}
#ifdef HAVE_LIBZ
gzclose(cachefile);
#else
fclose(cachefile);
#endif
return 1;
}
|