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 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
|
/*
* This file is part of uudeview, the simple and friendly multi-part multi-
* file uudecoder program (c) 1994-2001 by Frank Pilhofer. The author may
* be contacted at fp@fpx.de
*
* 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.
*/
/*
* This file implements the externally visible functions, as declared
* in uudeview.h, and some internal interfacing functions
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef SYSTEM_WINDLL
#include <windows.h>
#endif
#ifdef SYSTEM_OS2
#include <os2.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#else
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#else
#ifdef HAVE_VARARGS_H
#include <varargs.h>
#endif
#endif
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
/* to get open() in Windows */
#ifdef HAVE_IO_H
#include <io.h>
#endif
#include <uudeview.h>
#include <uuint.h>
#include <fptools.h>
#include <uustring.h>
#include "safealloc.c"
char * uulib_id = "$Id$";
#ifdef SYSTEM_WINDLL
BOOL _export WINAPI
DllEntryPoint (HINSTANCE hInstance, DWORD seginfo,
LPVOID lpCmdLine)
{
/* Don't do anything, so just return true */
return TRUE;
}
#endif
/*
* In DOS, we must open the file binary, O_BINARY is defined there
*/
#ifndef O_BINARY
#define O_BINARY 0
#endif
/* for braindead systems */
#ifndef SEEK_SET
#ifdef L_BEGIN
#define SEEK_SET L_BEGIN
#else
#define SEEK_SET 0
#endif
#endif
/*
* Callback functions and their opaque arguments
*/
void (*uu_MsgCallback) (void *, char *, int) = NULL;
int (*uu_BusyCallback) (void *, uuprogress *) = NULL;
int (*uu_FileCallback) (void *, char *, char *, int) = NULL;
char * (*uu_FNameFilter) (void *, char *) = NULL;
char * (*uu_FileNameCallback)(void *, char *, char *);
;
void *uu_MsgCBArg = NULL;
void *uu_BusyCBArg = NULL;
void *uu_FileCBArg = NULL;
void *uu_FFCBArg = NULL;
void *uu_FNCBArg;
int uu_autocheck = 1; /* call UUCheckGlobaList after every part */
/* I/O buffer sizes */
int uu_rbuf = 0;
int uu_wbuf = 0;
/*
* Global variables
*/
int uu_fast_scanning = 0; /* assumes at most 1 part per file */
int uu_bracket_policy = 0; /* gives part numbers in [] higher priority */
int uu_verbose = 1; /* enables/disables messages¬es */
int uu_desperate = 0; /* desperate mode */
int uu_ignreply = 0; /* ignore replies */
int uu_debug = 0; /* debugging mode (print __FILE__/__LINE__) */
int uu_errno = 0; /* the errno that caused this UURET_IOERR */
int uu_dumbness = 0; /* switch off the program's intelligence */
int uu_overwrite = 1; /* whether it's ok to overwrite ex. files */
int uu_ignmode = 0; /* ignore the original file mode */
int uu_handletext = 0; /* do we want text/plain messages */
int uu_usepreamble = 0; /* do we want Mime preambles/epilogues */
int uu_tinyb64 = 0; /* detect short B64 outside of MIME */
int uu_remove_input = 0; /* remove input files after decoding */
int uu_more_mime = 0; /* strictly adhere to MIME headers */
int uu_dotdot = 0; /* dot-unescaping has not yet been done */
headercount hlcount = {
3, /* restarting after a MIME body */
2, /* after useful data in freestyle mode */
1 /* after useful data and an empty line */
};
/*
* version string
*/
char uulibversion[256] = VERSION "pl" PATCH;
/*
* prefix to the files on disk, usually a path name to save files to
*/
char *uusavepath;
/*
* extension to use when encoding single-part files
*/
char *uuencodeext;
/*
* areas to malloc
*/
char *uulib_msgstring;
char *uugen_inbuffer;
char *uugen_fnbuffer;
/*
* The Global List of Files
*/
uulist *UUGlobalFileList = NULL;
/*
* time values for BusyCallback. msecs is MILLIsecs here
*/
static long uu_busy_msecs = 0; /* call callback function each msecs */
static long uu_last_secs = 0; /* secs of last call to callback */
static long uu_last_usecs = 0; /* usecs of last call to callback */
/*
* progress information
*/
uuprogress progress;
/*
* Linked list of files we want to delete after decoding
*/
typedef struct _itbd {
char *fname;
struct _itbd *NEXT;
} itbd;
static itbd * ftodel = NULL;
/*
* for the busy poll
*/
unsigned long uuyctr;
/*
* Areas to allocate. Instead of using static memory areas, we malloc()
* the memory in UUInitialize() and release them in UUCleanUp to prevent
* blowing up of the binary size
* This is a table with the pointers to allocate and required sizes.
* They are guaranteed to be never NULL.
*/
typedef struct {
char **ptr;
size_t size;
} allomap;
static allomap toallocate[] = {
{ &uugen_fnbuffer, 4096 }, /* generic filename buffer */
{ &uugen_inbuffer, 1024 }, /* generic input data buffer */
{ &uucheck_lastname, 256 }, /* from uucheck.c */
{ &uucheck_tempname, 256 },
{ &uuestr_itemp, 256 }, /* from uuencode.c:UUEncodeStream() */
{ &uuestr_otemp, 1024 },
{ &uulib_msgstring, 1024 }, /* from uulib.c:UUMessage() */
{ &uuncdl_fulline, 1201 }, /* from uunconc.c:UUDecodeLine() */
{ &uuncdp_oline, 3600 }, /* from uunconc.c:UUDecodePart() */
{ &uunconc_UUxlat, 256 * sizeof (int) }, /* from uunconc.c:toplevel */
{ &uunconc_UUxlen, 64 * sizeof (int) },
{ &uunconc_B64xlat, 256 * sizeof (int) },
{ &uunconc_XXxlat, 256 * sizeof (int) },
{ &uunconc_BHxlat, 256 * sizeof (int) },
{ &uunconc_save, 3*1200 }, /* from uunconc.c:decoding buffer */
{ &uuscan_shlline, 1024 }, /* from uuscan.c:ScanHeaderLine() */
{ &uuscan_shlline2, 1024 }, /* from uuscan.c:ScanHeaderLine() */
{ &uuscan_pvvalue, 300 }, /* from uuscan.c:ParseValue() */
{ &uuscan_phtext, 300 }, /* from uuscan.c:ParseHeader() */
{ &uuscan_sdline, 1025 }, /* from uuscan.c:ScanData(), +1 for UURepairData */
{ &uuscan_sdbhds1, 1300 }, /* 1024 for line in UUScan + 256 potential overhead UUDecodeLine */
{ &uuscan_sdbhds2, 1300 }, /* 1024 for line in UUScan + 256 potential overhead UUDecodeLine */
{ &uuscan_spline, 1024 }, /* from uuscan.c:ScanPart() */
{ &uuutil_bhwtmp, 300 }, /* from uuutil.c:UUbhwrite() */
{ NULL, 0 }
};
/*
* Handle the printing of messages. Works like printf.
*/
#if defined(STDC_HEADERS) || defined(HAVE_STDARG_H)
int
UUMessage (char *file, int line, int level, char *format, ...)
#else
int
UUMessage (va_alist)
va_dcl
#endif
{
int msgofs;
#if defined(STDC_HEADERS) || defined(HAVE_STDARG_H)
va_list ap;
va_start (ap, format);
#else
char *file, *format;
int line, level;
va_list ap;
va_start (ap);
file = va_arg (ap, char *);
line = va_arg (ap, int);
level = va_arg (ap, int);
format = va_arg (ap, char *);
#endif
if (uu_debug) {
snprintf (uulib_msgstring, 1024, "%s(%d): %s", file, line, msgnames[level]);
msgofs = strlen (uulib_msgstring);
}
else {
snprintf (uulib_msgstring, 1024, "%s", msgnames[level]);
msgofs = strlen (uulib_msgstring);
}
if (uu_MsgCallback && (level>UUMSG_NOTE || uu_verbose)) {
vsnprintf (uulib_msgstring + msgofs, 1024 - msgofs, format, ap);
(*uu_MsgCallback) (uu_MsgCBArg, uulib_msgstring, level);
}
va_end (ap);
return UURET_OK;
}
/*
* Call the Busy Callback from time to time. This function must be
* polled from the Busy loops.
*/
int
UUBusyPoll (void)
{
#ifdef HAVE_GETTIMEOFDAY
struct timeval tv;
long msecs;
if (uu_BusyCallback) {
(void) gettimeofday (&tv, NULL);
msecs = 1000*(tv.tv_sec-uu_last_secs)+(tv.tv_usec-uu_last_usecs)/1000;
if (uu_last_secs==0 || msecs > uu_busy_msecs) {
uu_last_secs = tv.tv_sec;
uu_last_usecs = tv.tv_usec;
return (*uu_BusyCallback) (uu_BusyCBArg, &progress);
}
}
#else
time_t now;
long msecs;
if (uu_BusyCallback) {
if (uu_busy_msecs <= 0) {
msecs = 1;
}
else {
now = time(NULL);
msecs = 1000 * (now - uu_last_secs);
}
if (uu_last_secs==0 || msecs > uu_busy_msecs) {
uu_last_secs = now;
uu_last_usecs = 0;
return (*uu_BusyCallback) (uu_BusyCBArg, &progress);
}
}
#endif
return 0;
}
/*
* Initialization function
*/
int UUEXPORT
UUInitialize (void)
{
allomap *aiter;
progress.action = 0;
progress.curfile[0] = '\0';
ftodel = NULL;
uusavepath = NULL;
uuencodeext = NULL;
mssdepth = 0;
memset (&localenv, 0, sizeof (headers));
memset (&sstate, 0, sizeof (scanstate));
nofnum = 0;
mimseqno = 0;
lastvalid = 0;
lastenc = 0;
uuyctr = 0;
/*
* Allocate areas
*/
for (aiter=toallocate; aiter->ptr; aiter++)
*(aiter->ptr) = NULL;
for (aiter=toallocate; aiter->ptr; aiter++) {
if ((*(aiter->ptr) = (char *) safe_alloc (aiter->size)) == NULL) {
/*
* oops. we may not print a message here, because we need these
* areas (uulib_msgstring) in UUMessage()
*/
for (aiter=toallocate; aiter->ptr; aiter++) {
safe_free (*(aiter->ptr), aiter->size);
}
return UURET_NOMEM;
}
}
/*
* Must be called after areas have been malloced
*/
UUInitConc ();
return UURET_OK;
}
/*
* Set and get Options
*/
int UUEXPORT
UUGetOption (int option, int *ivalue, char *cvalue, int clength)
{
int result;
switch (option) {
case UUOPT_RBUF:
*ivalue = uu_rbuf;
result = 0;
break;
case UUOPT_WBUF:
*ivalue = uu_wbuf;
result = 0;
break;
case UUOPT_VERSION:
FP_strncpy (cvalue, uulibversion, clength);
result = 0;
break;
case UUOPT_FAST:
if (ivalue) *ivalue = uu_fast_scanning;
result = uu_fast_scanning;
break;
case UUOPT_DUMBNESS:
if (ivalue) *ivalue = uu_dumbness;
result = uu_dumbness;
break;
case UUOPT_BRACKPOL:
if (ivalue) *ivalue = uu_bracket_policy;
result = uu_bracket_policy;
break;
case UUOPT_VERBOSE:
if (ivalue) *ivalue = uu_verbose;
result = uu_verbose;
break;
case UUOPT_DESPERATE:
if (ivalue) *ivalue = uu_desperate;
result = uu_desperate;
break;
case UUOPT_IGNREPLY:
if (ivalue) *ivalue = uu_ignreply;
result = uu_ignreply;
break;
case UUOPT_DEBUG:
if (ivalue) *ivalue = uu_debug;
result = uu_debug;
break;
case UUOPT_ERRNO:
if (ivalue) *ivalue = uu_errno;
result = uu_errno;
break;
case UUOPT_OVERWRITE:
if (ivalue) *ivalue = uu_overwrite;
result = uu_overwrite;
break;
case UUOPT_SAVEPATH:
FP_strncpy (cvalue, uusavepath, clength);
result = 0;
break;
case UUOPT_PROGRESS:
if (clength==sizeof(uuprogress)) {
memcpy (cvalue, &progress, sizeof (uuprogress));
result = 0;
}
else
result = -1;
break;
case UUOPT_IGNMODE:
if (ivalue) *ivalue = uu_ignmode;
result = uu_ignmode;
break;
case UUOPT_USETEXT:
if (ivalue) *ivalue = uu_handletext;
result = uu_handletext;
break;
case UUOPT_PREAMB:
if (ivalue) *ivalue = uu_usepreamble;
result = uu_usepreamble;
break;
case UUOPT_TINYB64:
if (ivalue) *ivalue = uu_tinyb64;
result = uu_tinyb64;
break;
case UUOPT_ENCEXT:
FP_strncpy (cvalue, uuencodeext, clength);
result = 0;
break;
case UUOPT_REMOVE:
if (ivalue) *ivalue = uu_remove_input;
result = uu_remove_input;
break;
case UUOPT_MOREMIME:
if (ivalue) *ivalue = uu_more_mime;
result = uu_more_mime;
break;
case UUOPT_DOTDOT:
if (ivalue) *ivalue = uu_dotdot;
result = uu_dotdot;
break;
case UUOPT_AUTOCHECK:
if (ivalue) *ivalue = uu_autocheck;
result = uu_autocheck;
break;
default:
return -1;
}
return result;
}
int UUEXPORT
UUSetOption (int option, int ivalue, char *cvalue)
{
switch (option) {
case UUOPT_RBUF:
uu_rbuf = ivalue;
break;
case UUOPT_WBUF:
uu_wbuf = ivalue;
break;
case UUOPT_FAST:
uu_fast_scanning = ivalue;
break;
case UUOPT_DUMBNESS:
uu_dumbness = ivalue;
break;
case UUOPT_BRACKPOL:
uu_bracket_policy = ivalue;
break;
case UUOPT_VERBOSE:
uu_verbose = ivalue;
break;
case UUOPT_DESPERATE:
uu_desperate = ivalue;
break;
case UUOPT_IGNREPLY:
uu_ignreply = ivalue;
break;
case UUOPT_DEBUG:
uu_debug = ivalue;
break;
case UUOPT_OVERWRITE:
uu_overwrite = ivalue;
break;
case UUOPT_SAVEPATH:
FP_free (uusavepath);
uusavepath = FP_strdup (cvalue);
break;
case UUOPT_IGNMODE:
uu_ignmode = ivalue;
break;
case UUOPT_USETEXT:
uu_handletext = ivalue;
break;
case UUOPT_PREAMB:
uu_usepreamble = ivalue;
break;
case UUOPT_TINYB64:
uu_tinyb64 = ivalue;
break;
case UUOPT_ENCEXT:
FP_free (uuencodeext);
uuencodeext = FP_strdup (cvalue);
break;
case UUOPT_REMOVE:
uu_remove_input = ivalue;
break;
case UUOPT_MOREMIME:
uu_more_mime = ivalue;
break;
case UUOPT_DOTDOT:
uu_dotdot = ivalue;
break;
case UUOPT_AUTOCHECK:
uu_autocheck = ivalue;
break;
default:
return UURET_ILLVAL;
}
return UURET_OK;
}
char * UUEXPORT
UUstrerror (int code)
{
return uuretcodes[code];
}
/*
* Set the various Callback functions
*/
int UUEXPORT
UUSetMsgCallback (void *opaque,
void (*func) (void *, char *, int))
{
uu_MsgCallback = func;
uu_MsgCBArg = opaque;
return UURET_OK;
}
int UUEXPORT
UUSetBusyCallback (void *opaque,
int (*func) (void *, uuprogress *),
long msecs)
{
uu_BusyCallback = func;
uu_BusyCBArg = opaque;
uu_busy_msecs = msecs;
return UURET_OK;
}
int UUEXPORT
UUSetFileCallback (void *opaque,
int (*func) (void *, char *, char *, int))
{
uu_FileCallback = func;
uu_FileCBArg = opaque;
return UURET_OK;
}
int UUEXPORT
UUSetFNameFilter (void *opaque,
char * (*func) (void *, char *))
{
uu_FNameFilter = func;
uu_FFCBArg = opaque;
return UURET_OK;
}
int UUEXPORT
UUSetFileNameCallback (void *opaque,
char * (*func) (void *, char *, char *))
{
uu_FileNameCallback = func;
uu_FNCBArg = opaque;
return UURET_OK;
}
/*
* Return a pointer to the nth element of the GlobalFileList
* zero-based, returns NULL if item is too large.
*/
uulist * UUEXPORT
UUGetFileListItem (int item)
{
uulist *iter=UUGlobalFileList;
if (item < 0)
return NULL;
while (item && iter) {
iter = iter->NEXT;
item--;
}
return iter;
}
/*
* call the current filter
*/
char * UUEXPORT
UUFNameFilter (char *fname)
{
if (uu_FNameFilter)
return (*uu_FNameFilter) (uu_FFCBArg, fname);
return fname;
}
/*
* Load a File. We call ScanPart repeatedly until at EOF and
* add the parts to UUGlobalFileList
*/
int UUEXPORT
UULoadFile (char *filename, char *fileid, int delflag, int *partcount)
{
return UULoadFileWithPartNo(filename, fileid, delflag, -1, partcount);
}
int UUEXPORT
UULoadFileWithPartNo (char *filename, char *fileid, int delflag, int partno, int *partcount)
{
int res, sr;
struct stat finfo;
fileread *loaded;
uufile *fload;
itbd *killem;
FILE *datei;
void *datei_buf;
int _count;
if (!partcount)
partcount = &_count;
*partcount = 0;
if ((datei = fopen (filename, "rb")) == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_OPEN_SOURCE),
filename, strerror (uu_errno = errno));
return UURET_IOERR;
}
UUSETBUF (datei, datei_buf, uu_rbuf);
FP_flockfile (datei);
if (fstat (fileno(datei), &finfo) == -1) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_STAT_FILE),
filename, strerror (uu_errno = errno));
fclose (datei);
UUCLRBUF (uu_rbuf, datei_buf);
return UURET_IOERR;
}
/*
* schedule for destruction
*/
if (delflag && fileid==NULL) {
if ((killem = (itbd *) malloc (sizeof (itbd))) == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_WARNING,
uustring (S_OUT_OF_MEMORY), sizeof (itbd));
}
else if ((killem->fname = FP_strdup (filename)) == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_WARNING,
uustring (S_OUT_OF_MEMORY), strlen(filename)+1);
FP_free (killem);
}
else {
killem->NEXT = ftodel;
ftodel = killem;
}
}
progress.action = 0;
progress.partno = 0;
progress.numparts = 1;
progress.fsize = (long) ((finfo.st_size>0)?finfo.st_size:-1);
progress.percent = 0;
progress.foffset = 0;
FP_strncpy (progress.curfile,
(strlen(filename)>255)?
(filename+strlen(filename)-255):filename,
256);
progress.action = UUACT_SCANNING;
if (fileid == NULL)
fileid = filename;
while (!FP_feof (datei) && !ferror (datei)) {
/*
* Peek file, or some systems won't detect EOF
*/
res = FP_getc (datei);
if (FP_feof (datei) || ferror (datei))
break;
else
ungetc (res, datei);
if ((loaded = ScanPart (datei, fileid, &sr)) == NULL) {
if (sr != UURET_NODATA && sr != UURET_OK && sr != UURET_CONT) {
UUkillfread (loaded);
if (sr != UURET_CANCEL)
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_READ_ERROR), filename,
strerror (uu_errno));
if (uu_autocheck) UUCheckGlobalList ();
progress.action = 0;
fclose (datei);
UUCLRBUF (uu_rbuf, datei_buf);
return sr;
}
continue;
}
if (ferror (datei)) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_READ_ERROR), filename,
strerror (uu_errno = errno));
if (uu_autocheck) UUCheckGlobalList ();
progress.action = 0;
fclose (datei);
UUCLRBUF (uu_rbuf, datei_buf);
return UURET_IOERR;
}
if (partno != -1)
loaded->partno = partno;
if ((loaded->uudet == QP_ENCODED || loaded->uudet == PT_ENCODED) &&
(loaded->filename == NULL || *(loaded->filename) == '\0') &&
!uu_handletext && (loaded->flags&FL_PARTIAL)==0) {
/*
* Don't want text
*/
UUkillfread (loaded);
continue;
}
if ((loaded->subject == NULL || *(loaded->subject) == '\0') &&
(loaded->mimeid == NULL || *(loaded->mimeid) == '\0') &&
(loaded->filename== NULL || *(loaded->filename)== '\0') &&
(loaded->uudet == 0)) {
/*
* no useful data here
*/
UUkillfread (loaded);
if (uu_fast_scanning && sr != UURET_CONT) break;
continue;
}
if ((fload = UUPreProcessPart (loaded, &res)) == NULL) {
/*
* no useful data found
*/
if (res != UURET_NODATA) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_READ_ERROR), filename,
(res==UURET_IOERR)?strerror(uu_errno):UUstrerror(res));
}
UUkillfread (loaded);
if (uu_fast_scanning && sr != UURET_CONT) break;
continue;
}
if ((loaded->subject && *(loaded->subject)) ||
(loaded->mimeid && *(loaded->mimeid)) ||
(loaded->filename&& *(loaded->filename))||
(loaded->uudet)) {
UUMessage (uulib_id, __LINE__, UUMSG_MESSAGE,
uustring (S_LOADED_PART),
filename,
(loaded->subject) ? loaded->subject : "",
(fload->subfname) ? fload->subfname : "",
(loaded->filename) ? loaded->filename : "",
fload->partno,
(loaded->begin) ? "begin" : "",
(loaded->end) ? "end" : "",
codenames[loaded->uudet]);
}
if ((res = UUInsertPartToList (fload))) {
/*
* couldn't use the data
*/
UUkillfile (fload);
if (res != UURET_NODATA) {
if (uu_autocheck) UUCheckGlobalList ();
progress.action = 0;
fclose (datei);
UUCLRBUF (uu_rbuf, datei_buf);
return res;
}
if (uu_fast_scanning && sr != UURET_CONT)
break;
continue;
}
/*
* if in fast mode, we don't look any further, because we're told
* that each source file holds at most one encoded part
*/
if (loaded->uudet)
(*partcount)++;
if (uu_fast_scanning && sr != UURET_CONT)
break;
}
if (ferror (datei)) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_READ_ERROR), filename,
strerror (uu_errno = errno));
if (uu_autocheck) UUCheckGlobalList ();
progress.action = 0;
fclose (datei);
UUCLRBUF (uu_rbuf, datei_buf);
return UURET_IOERR;
}
fclose (datei);
UUCLRBUF (uu_rbuf, datei_buf);
if (!uu_fast_scanning && *partcount == 0)
UUMessage (uulib_id, __LINE__, UUMSG_NOTE,
uustring (S_NO_DATA_FOUND), filename);
progress.action = 0;
if (uu_autocheck) UUCheckGlobalList ();
return UURET_OK;
}
/*
* decode to a temporary file. this is well handled by uudecode()
*/
int UUEXPORT
UUDecodeToTemp (uulist *thefile)
{
return UUDecode (thefile);
}
/*
* decode file first to temp file, then copy it to a final location
*/
int UUEXPORT
UUDecodeFile (uulist *thefile, char *destname)
{
FILE *target, *source;
void *target_buf, *source_buf;
struct stat finfo;
int fildes, res;
size_t bytes;
if (thefile == NULL)
return UURET_ILLVAL;
if ((res = UUDecode (thefile)) != UURET_OK)
if (res != UURET_NOEND || !uu_desperate)
return res;
if (thefile->binfile == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NO_BIN_FILE));
return UURET_IOERR;
}
if ((source = fopen (thefile->binfile, "rb")) == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_OPEN_FILE),
thefile->binfile, strerror (uu_errno = errno));
return UURET_IOERR;
}
UUSETBUF (source, source_buf, uu_rbuf);
FP_flockfile (source);
/*
* for system security, strip setuid/setgid bits from mode
*/
if ((thefile->mode & 0777) != thefile->mode) {
UUMessage (uulib_id, __LINE__, UUMSG_NOTE,
uustring (S_STRIPPED_SETUID),
destname, (int)thefile->mode);
thefile->mode &= 0777;
}
/*
* Determine the name of the target file according to the rules:
*
* IF (destname!=NULL) THEN filename=destname;
* ELSE
* filename = thefile->filename
* IF (FilenameFilter!=NULL) THEN filename=FilenameFilter(filename);
* filename = SaveFilePath + filename
* END
*/
if (destname)
strcpy (uugen_fnbuffer, destname);
else {
char *fname = UUFNameFilter (thefile->filename ? thefile->filename : "unknown.xxx");
sprintf (uugen_fnbuffer, "%.1024s%.3071s",
uusavepath ? uusavepath : "",
fname ? fname : "unknown.xxx");
}
/*
* if we don't want to overwrite existing files, check if it's there
*/
if (!uu_overwrite) {
if (stat (uugen_fnbuffer, &finfo) == 0) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_TARGET_EXISTS), uugen_fnbuffer);
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
return UURET_EXISTS;
}
}
if (fstat (fileno(source), &finfo) == -1) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_STAT_FILE),
thefile->binfile, strerror (uu_errno = errno));
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
return UURET_IOERR;
}
/* try rename() shortcut first */
if (!rename (thefile->binfile, uugen_fnbuffer))
{
mode_t mask = 0000; /* there is a slight window here anyway */
#if HAVE_UMASK
mask = umask (0022); umask (mask);
#endif
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
#if HAVE_CHMOD
chmod (uugen_fnbuffer, thefile->mode & ~mask);
#endif
goto skip_copy;
}
progress.action = 0;
FP_strncpy (progress.curfile,
(strlen(uugen_fnbuffer)>255)?
(uugen_fnbuffer+strlen(uugen_fnbuffer)-255):uugen_fnbuffer,
256);
progress.partno = 0;
progress.numparts = 1;
progress.fsize = (long) ((finfo.st_size)?finfo.st_size:-1);
progress.foffset = 0;
progress.percent = 0;
progress.action = UUACT_COPYING;
if ((fildes = open (uugen_fnbuffer,
O_WRONLY | O_CREAT | O_BINARY | O_TRUNC,
(uu_ignmode)?0666:thefile->mode)) == -1) {
progress.action = 0;
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_OPEN_TARGET),
uugen_fnbuffer, strerror (uu_errno = errno));
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
return UURET_IOERR;
}
if ((target = fdopen (fildes, "wb")) == NULL) {
progress.action = 0;
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_IO_ERR_TARGET),
uugen_fnbuffer, strerror (uu_errno = errno));
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
close (fildes);
return UURET_IOERR;
}
UUSETBUF (target, target_buf, uu_wbuf);
FP_flockfile (target);
while (!FP_feof (source)) {
if (UUBUSYPOLL(ftell(source),progress.fsize)) {
UUMessage (uulib_id, __LINE__, UUMSG_NOTE,
uustring (S_DECODE_CANCEL));
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
fclose (target);
UUCLRBUF (uu_wbuf, target_buf);
unlink (uugen_fnbuffer);
return UURET_CANCEL;
}
bytes = fread (uugen_inbuffer, 1, 1024, source);
if (ferror (source) || (bytes == 0 && !FP_feof (source))) {
progress.action = 0;
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_READ_ERROR),
thefile->binfile, strerror (uu_errno = errno));
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
fclose (target);
UUCLRBUF (uu_wbuf, target_buf);
unlink (uugen_fnbuffer);
return UURET_IOERR;
}
if (fwrite (uugen_inbuffer, 1, bytes, target) != bytes) {
progress.action = 0;
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_WR_ERR_TARGET),
uugen_fnbuffer, strerror (uu_errno = errno));
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
fclose (target);
UUCLRBUF (uu_wbuf, target_buf);
unlink (uugen_fnbuffer);
return UURET_IOERR;
}
}
fclose (source);
UUCLRBUF (uu_rbuf, source_buf);
if (fclose (target)) {
UUCLRBUF (uu_wbuf, target_buf);
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_WR_ERR_TARGET),
uugen_fnbuffer, strerror (uu_errno = errno));
unlink (uugen_fnbuffer);
return UURET_IOERR;
}
UUCLRBUF (uu_wbuf, target_buf);
/*
* after a successful decoding run, we delete the temporary file
*/
if (unlink (thefile->binfile)) {
UUMessage (uulib_id, __LINE__, UUMSG_WARNING,
uustring (S_TMP_NOT_REMOVED),
thefile->binfile,
strerror (uu_errno = errno));
}
skip_copy:
FP_free (thefile->binfile);
thefile->binfile = NULL;
thefile->state &= ~UUFILE_TMPFILE;
thefile->state |= UUFILE_DECODED;
progress.action = 0;
return UURET_OK;
}
/*
* Calls a function repeatedly with all the info we have for a file
* If the function returns non-zero, we break and don't send any more
*/
int UUEXPORT
UUInfoFile (uulist *thefile, void *opaque,
int (*func) (void *, char *))
{
int errflag=0, res, bhflag=0, dd;
long maxpos;
FILE *inpfile;
/*
* We might need to ask our callback function to download the file
*/
if (uu_FileCallback) {
if ((res = (*uu_FileCallback) (uu_FileCBArg,
thefile->thisfile->data->sfname,
uugen_fnbuffer,
1)) != UURET_OK)
return res;
if ((inpfile = fopen (uugen_fnbuffer, "rb")) == NULL) {
(*uu_FileCallback) (uu_FileCBArg, thefile->thisfile->data->sfname,
uugen_fnbuffer, 0);
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_OPEN_FILE), uugen_fnbuffer,
strerror (uu_errno = errno));
return UURET_IOERR;
}
}
else {
if ((inpfile = fopen (thefile->thisfile->data->sfname, "rb")) == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_OPEN_FILE),
thefile->thisfile->data->sfname,
strerror (uu_errno=errno));
return UURET_IOERR;
}
FP_strncpy (uugen_fnbuffer, thefile->thisfile->data->sfname, 1024);
}
/*
* seek to beginning of info
*/
fseek (inpfile, thefile->thisfile->data->startpos, SEEK_SET);
maxpos = thefile->thisfile->data->startpos + thefile->thisfile->data->length;
while (!FP_feof (inpfile) &&
(uu_fast_scanning || ftell(inpfile) < maxpos)) {
if (FP_fgets (uugen_inbuffer, 511, inpfile) == NULL)
break;
uugen_inbuffer[511] = '\0';
if (ferror (inpfile))
break;
dd = UUValidData (uugen_inbuffer, 0, &bhflag);
if (thefile->uudet == B64ENCODED && dd == B64ENCODED)
break;
else if (thefile->uudet == BH_ENCODED && bhflag)
break;
else if ((thefile->uudet == UU_ENCODED || thefile->uudet == XX_ENCODED) &&
strncmp (uugen_inbuffer, "begin ", 6) == 0)
break;
else if (thefile->uudet == YENC_ENCODED &&
strncmp (uugen_inbuffer, "=ybegin ", 8) == 0)
break;
if ((*func) (opaque, uugen_inbuffer))
break;
}
if (ferror (inpfile)) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_READ_ERROR),
uugen_fnbuffer, strerror (uu_errno = errno));
errflag = 1;
}
fclose (inpfile);
if (uu_FileCallback)
(*uu_FileCallback) (uu_FileCBArg,
thefile->thisfile->data->sfname,
uugen_fnbuffer, 0);
if (errflag)
return UURET_IOERR;
return UURET_OK;
}
int UUEXPORT
UURenameFile (uulist *thefile, char *newname)
{
char *oldname;
if (thefile == NULL)
return UURET_ILLVAL;
oldname = thefile->filename;
if ((thefile->filename = FP_strdup (newname)) == NULL) {
UUMessage (uulib_id, __LINE__, UUMSG_ERROR,
uustring (S_NOT_RENAME),
oldname, newname);
thefile->filename = oldname;
return UURET_NOMEM;
}
FP_free (oldname);
return UURET_OK;
}
int UUEXPORT
UURemoveTemp (uulist *thefile)
{
if (thefile == NULL)
return UURET_ILLVAL;
if (thefile->binfile) {
if (unlink (thefile->binfile)) {
UUMessage (uulib_id, __LINE__, UUMSG_WARNING,
uustring (S_TMP_NOT_REMOVED),
thefile->binfile,
strerror (uu_errno = errno));
}
FP_free (thefile->binfile);
thefile->binfile = NULL;
thefile->state &= ~UUFILE_TMPFILE;
}
return UURET_OK;
}
int UUEXPORT
UUCleanUp (void)
{
itbd *iter=ftodel, *ptr;
uulist *liter;
uufile *fiter;
allomap *aiter;
/*
* delete temporary input files (such as the copy of stdin)
*/
while (iter) {
if (unlink (iter->fname)) {
UUMessage (uulib_id, __LINE__, UUMSG_WARNING,
uustring (S_TMP_NOT_REMOVED),
iter->fname, strerror (uu_errno = errno));
}
FP_free (iter->fname);
ptr = iter;
iter = iter->NEXT;
FP_free (ptr);
}
ftodel = NULL;
/*
* Delete input files after successful decoding
*/
if (uu_remove_input) {
liter = UUGlobalFileList;
while (liter) {
if (liter->state & UUFILE_DECODED) {
fiter = liter->thisfile;
while (fiter) {
if (fiter->data && fiter->data->sfname) {
/*
* Error code ignored. We might want to delete a file multiple
* times
*/
unlink (fiter->data->sfname);
}
fiter = fiter->NEXT;
}
}
liter = liter->NEXT;
}
}
UUkilllist (UUGlobalFileList);
UUGlobalFileList = NULL;
FP_free (uusavepath);
FP_free (uuencodeext);
FP_free (sstate.source);
uusavepath = NULL;
uuencodeext = NULL;
UUkillheaders (&localenv);
UUkillheaders (&sstate.envelope);
memset (&localenv, 0, sizeof (headers));
memset (&sstate, 0, sizeof (scanstate));
while (mssdepth) {
mssdepth--;
UUkillheaders (&(multistack[mssdepth].envelope));
FP_free (multistack[mssdepth].source);
}
/*
* clean up the malloc'ed stuff
*/
for (aiter=toallocate; aiter->ptr; aiter++) {
safe_free (*(aiter->ptr), aiter->size);
*(aiter->ptr) = NULL;
}
return UURET_OK;
}
|