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 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
|
/* OpenCP Module Player
* copyright (c) '94-'10 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
*
* Archive handler for ZIP archives
*
* 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 of the License, 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* revision history: (please note changes here)
* -nb980510 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
* -first release
* -kb980717 Tammo Hinrichs <kb@nwn.de>
* -added _dllinfo record
* -fd981206 Felix Domke <tmbinc@gmx.net>
* -edited for new binfile
*/
#include "config.h"
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <zlib.h>
#include "types.h"
#include "adb.h"
#include "mdb.h"
#include "mif.h"
#include "modlist.h"
#include "pfilesel.h"
#include "boot/plinkman.h"
#include "boot/psetting.h"
#include "stuff/compat.h"
#include "stuff/pagesize.inc.c"
static char mdbScanBuf[1084];
static uint8_t adbScanBuf[2048];
struct __attribute__((packed)) local_file_header
{
uint32_t sig;
uint16_t ver;
uint16_t opt;
uint16_t method;
uint32_t d1;
uint32_t d2;
uint32_t csize;
uint32_t osize;
uint16_t flen;
uint16_t xlen;
};
static int method_supported(int method)
{
return (method==0)||(method==8)||(method==9);
}
static int decode_partial(char *dest, size_t destlen, uint8_t *src, size_t srclen, int method)
{
switch (method)
{
case 0:
{
if (destlen > srclen )
destlen = srclen;
memcpy(dest, src, destlen);
break;
}
case 8:
case 9:
{
z_stream strm;
int res;
memset(&strm, 0, sizeof(strm));
strm.next_in=src;
strm.avail_in=(uLong)srclen;
strm.next_out=(Bytef *)dest;
strm.avail_out=(uLongf)destlen;
if ((res=inflateInit2(&strm, -15)))
{
fprintf(stderr, "arcZIP: InflateInit2 failed (%d)\n", res);
destlen=0;
} else {
res=inflate(&strm, 1);
destlen=strm.total_out;
inflateEnd(&strm);
}
break;
}
}
return destlen;
}
static int decode_to_fd(char *src, ssize_t srclen, int dest, int method)
{
switch (method)
{
case 0:
{
return (write(dest, src, srclen)==srclen);
break;
}
case 8:
case 9:
{
Bytef buffer[65536];
z_stream strm;
int res;
memset(&strm, 0, sizeof(strm));
strm.next_in=(Bytef *)src;
strm.avail_in=srclen;
strm.next_out=buffer;
strm.avail_out=sizeof(buffer);
#ifdef ZIP_DEBUG
fprintf(stderr, "pre\n");
fprintf(stderr, "strm.next_in=%p\n", strm.next_in);
fprintf(stderr, "strm.avail_in=%d\n", strm.avail_in);
#endif
if ((res=inflateInit2(&strm, -15)))
{
fprintf(stderr, "arcZIP: InflateInit2 failed (%d)\n", res);
return 0;
}
#ifdef ZIP_DEBUG
fprintf(stderr, "after init\n");
fprintf(stderr, "strm.next_in=%p\n", strm.next_in);
fprintf(stderr, "strm.avail_in=%d\n", strm.avail_in);
#endif
while (1)
{
int len;
#ifdef ZIP_DEBUG
fprintf(stderr, "before inflate\n");
fprintf(stderr, "strm.next_in=%p\n", strm.next_in);
fprintf(stderr, "strm.avail_in=%d\n", strm.avail_in);
#endif
switch (inflate(&strm, 1))
{
case Z_OK:
len=sizeof(buffer)-strm.avail_out;
#ifdef ZIP_DEBUG
fprintf(stderr, "Z_OK, len=%d\n", len);
#endif
if (write(dest, buffer, len)!=len)
{
perror("arcZIP: write()");
return 0;
}
strm.next_out=buffer;
strm.avail_out=sizeof(buffer);
break;
case Z_STREAM_END:
len=sizeof(buffer)-strm.avail_out;
#ifdef ZIP_DEBUG
fprintf(stderr, "Z_STREAM_END: len=%d\n", len);
#endif
if (write(dest, buffer, len)!=len)
{
perror("arcZIP: write()");
return 0;
}
strm.next_out=buffer;
strm.avail_out=sizeof(buffer);
inflateEnd(&strm);
return 1;
break;
default:
if (strm.msg)
fprintf(stderr, "arcZIP: inflate(): %s\n", strm.msg);
else
fprintf(stderr, "arcZIP: inflate(): unknown error\n");
inflateEnd(&strm);
return 0;
}
}
}
break;
default:
fprintf(stderr, "arcZIP: Invalid method (%d)\n", method);
}
return 0;
}
static int openZIP(const char *path)
{
struct stat st;
int extfd=-1;
if ((extfd=open(path, O_RDONLY))<0)
{
perror("arcZIP: open(path, O_RDONLY)");
return -1;
}
if ((fstat(extfd, &st))<0)
{
perror("arcZIP: fstat(extfd, &st)");
close(extfd);
return -1;
}
if (!(S_ISREG(st.st_mode)))
{
fprintf(stderr, "arcZIP: Not a regular file\n");
close(extfd);
return -1;
}
return extfd;
}
static int adbZIPScan(const char *path)
{
char ext[NAME_MAX+1];
char name[NAME_MAX+1];
char arcname[ARC_PATH_MAX+1];
int extfd=-1;
uint32_t arcref;
struct arcentry a;
_splitpath(path, 0, 0, name, ext);
if ((strlen(name)+strlen(ext)+1)>ARC_PATH_MAX)
return 0;
strcpy(arcname, name);
strcat(arcname, ext);
if ((extfd=openZIP(path))<0)
return 0;
memset(a.name, 0, sizeof(a.name));
strncpy(a.name, arcname, sizeof(a.name)-1);
lseek(extfd, 0, SEEK_END);
a.size=lseek(extfd, 0, SEEK_CUR);
lseek(extfd, 0, SEEK_SET);
a.flags=ADB_ARC;
if (!adbAdd(&a))
{
close(extfd);
return 0;
}
arcref=adbFind(arcname);
while (1)
{
off_t nextpos;
struct local_file_header hdr;
if (read(extfd, &hdr, sizeof(hdr))!=sizeof(hdr))
break;
hdr.sig = uint32_little (hdr.sig);
hdr.ver = uint16_little (hdr.ver);
hdr.opt = uint16_little (hdr.opt);
hdr.method = uint16_little (hdr.method);
hdr.d1 = uint32_little (hdr.d1);
hdr.d2 = uint32_little (hdr.d2);
hdr.csize = uint32_little (hdr.csize);
hdr.osize = uint32_little (hdr.osize);
hdr.flen = uint16_little (hdr.flen);
hdr.xlen = uint16_little (hdr.xlen);
if (hdr.sig!=0x04034B50)
break;
nextpos=lseek(extfd, 0, SEEK_CUR)+hdr.flen+hdr.xlen+hdr.csize;
if (((hdr.flen+1)<ARC_PATH_MAX)&&((hdr.flen+1)<NAME_MAX)&&!(hdr.opt&0x1))
{
memset(a.name, 0, sizeof(arcname));
if (read(extfd, a.name, hdr.flen)!=hdr.flen)
{
close(extfd);
return 0;
}
_splitpath(a.name, NULL, NULL, name, ext);
#ifdef ZIP_DEBUG
fprintf(stderr, "arcZIP: About to do %s as %s\n", arcname, a.name);
#endif
lseek(extfd, hdr.xlen, SEEK_CUR);
if (fsIsModule(ext))
{
a.size=hdr.osize;
a.parent=arcref;
a.flags=0;
if (!adbAdd(&a))
{
close(extfd);
return 0;
}
strcpy(a.name, name);
strcat(a.name, ext);
if (fsScanInArc&&method_supported(hdr.method))
{
char shortname[12];
uint32_t fileref;
fs12name(shortname, a.name);
fileref=mdbGetModuleReference(shortname, a.size);
if (fileref==0xffffffff)
{
close(extfd);
return 0;
}
if (!mdbInfoRead(fileref))
{
struct moduleinfostruct mi;
int destlen = sizeof(mdbScanBuf);
int srclen;
memset(adbScanBuf, 0, sizeof(adbScanBuf));
srclen=(hdr.csize>sizeof(adbScanBuf))?sizeof(adbScanBuf):hdr.csize;
if (read(extfd, adbScanBuf, srclen)!=srclen)
{
close(extfd);
return 0;
}
if ((destlen = decode_partial(mdbScanBuf, destlen, adbScanBuf, srclen, hdr.method)))
if (mdbGetModuleInfo(&mi, fileref))
{
int res;
res=mdbReadMemInfo(&mi, mdbScanBuf, destlen);
mdbWriteModuleInfo(fileref, &mi);
}
}
}
}
/* if ((!stricmp(ext, MIF_EXT)) && (hdr.osize<65536))
{
char *obuffer=new char[hdr.osize],
*cbuffer=new char[hdr.csize];
file.read(cbuffer, hdr.csize);
if (hdr.method==8)
inflatemax(obuffer, cbuffer, hdr.osize);
else
memcpy(obuffer, cbuffer, hdr.osize);
mifMemRead(a.name, hdr.osize, obuffer);
delete[] obuffer;
delete[] cbuffer;
}*/
}
lseek(extfd, nextpos, SEEK_SET);
}
close(extfd);
return 1;
}
static int adbZIPCall(const int act, const char *apath, const char *fullname, const int fd)
{
switch (act)
{
case adbCallGet:
{
int extfd;
#ifdef ZIP_DEBUG
fprintf(stderr, "STIAN act=adbCallGet, apath=%s, fullname=%s, fd=%d\n", apath, fullname, fd);
#endif
if ((extfd=openZIP(apath))<0)
return 0;
/* TODO, read EOC */
while (1)
{
struct local_file_header hdr;
char name[ARC_PATH_MAX+1];
if (read(extfd, &hdr, sizeof(hdr))!=sizeof(hdr))
break;
hdr.sig = uint32_little (hdr.sig);
hdr.ver = uint16_little (hdr.ver);
hdr.opt = uint16_little (hdr.opt);
hdr.method = uint16_little (hdr.method);
hdr.d1 = uint32_little (hdr.d1);
hdr.d2 = uint32_little (hdr.d2);
hdr.csize = uint32_little (hdr.csize);
hdr.osize = uint32_little (hdr.osize);
hdr.flen = uint16_little (hdr.flen);
hdr.xlen = uint16_little (hdr.xlen);
if (hdr.sig!=0x04034B50)
break;
if (method_supported(hdr.method))
{
if ((hdr.flen<=ARC_PATH_MAX)&&!(hdr.opt&0x1))
{
memset(name, 0, sizeof(name));
if (read(extfd, name, hdr.flen)!=hdr.flen)
{
fprintf(stderr, "arcZIP: Premature EOF\n");
close(extfd);
return 0;
}
name[hdr.flen]=0;
lseek(extfd, hdr.xlen, SEEK_CUR);
if (!strcmp(fullname, name))
{
char *data;
off_t start = lseek(extfd, 0, SEEK_CUR);
off_t length = hdr.csize;
off_t mmap_start=start&~((off_t)(pagesize()-1));
off_t mmap_start_pad=start-mmap_start;
off_t mmap_length=(mmap_start_pad+length+pagesize()-1)&~((off_t)(pagesize()-1));
if ((data=mmap(0, mmap_length, PROT_READ, MAP_SHARED, extfd, mmap_start))==MAP_FAILED)
{
perror("arcZIP mmap()");
close(extfd);
return 0;
}
close(extfd);
if (!decode_to_fd(data+mmap_start_pad, length, fd, hdr.method))
{
munmap(data, mmap_length);
fprintf(stderr, "arcZIP: Failed to decompress\n");
return 0;
}
munmap(data, mmap_length);
return 1; /* all OK */
} else
lseek(extfd, hdr.csize, SEEK_CUR);
} else
lseek(extfd, hdr.csize+hdr.flen+hdr.xlen, SEEK_CUR);
} else
lseek(extfd, hdr.csize+hdr.flen+hdr.xlen, SEEK_CUR);
}
fprintf(stderr, "arcZIP: File not found in arc\n");
break;
/*
const char *temp;
fprintf(stderr, "adbZIPCall::adbCallGet(apath=%s, fullname=%s file=%s dpath=%s\n", apath, fullname, file, dpath);
temp = cfGetProfileString("arcZIP", "get", "pkunzip %a %d %n");
return !adbCallArc(temp, apath, file, dpath);*/
}
#if 0
case adbCallPut:
return !adbCallArc(cfGetProfileString("arcZIP", "moveto", "pkzip %a %n"), apath, file, dpath);
case adbCallDelete:
if (adbCallArc(cfGetProfileString("arcZIP", "delete", "pkzip -d %a %n"), apath, file, dpath))
return 0;
if (cfGetProfileBool("arcZIP", "deleteempty", 0, 0))
{
struct stat st;
if (stat(apath, &st))
return 1;
if (st.st_size==22)
unlink(apath);
}
return 1;
case adbCallMoveFrom:
if (cfGetProfileString("arcZIP", "movefrom", 0))
return !adbCallArc(cfGetProfileString("arcZIP", "movefrom", ""), apath, file, dpath);
if (!adbZIPCall(adbCallGet, apath, fullname, file, dpath))
return 0;
return adbZIPCall(adbCallDelete, apath, fullname, file, dpath);
case adbCallMoveTo:
if (cfGetProfileString("arcZIP", "moveto", 0))
return !adbCallArc(cfGetProfileString("arcZIP", "moveto", "pkzip -m %a %n"), apath, file, dpath);
if (!adbZIPCall(adbCallPut, apath, fullname, file, dpath))
return 0;
unlink(file);
return 1;
#endif
}
return 0;
}
static struct adbregstruct adbZIPReg = {".ZIP", adbZIPScan, adbZIPCall ADBREGSTRUCT_TAIL};
static void __attribute__((constructor))init(void)
{
adbRegister(&adbZIPReg);
}
static void __attribute__((destructor))done(void)
{
adbUnregister(&adbZIPReg);
}
#ifndef SUPPORT_STATIC_PLUGINS
char *dllinfo = "";
#endif
DLLEXTINFO_PREFIX struct linkinfostruct dllextinfo = {"arczip", "OpenCP Archive Reader: .ZIP (c) 1994-09 Niklas Beisert", DLLVERSION, 0 LINKINFOSTRUCT_NOEVENTS};
|