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
|
/*
* "$Id: dist.c,v 1.38 2001/07/05 16:57:22 mike Exp $"
*
* Distribution functions for the ESP Package Manager (EPM).
*
* Copyright 1999-2001 by Easy Software Products.
*
* 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, 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.
*
* Contents:
*
* add_command() - Add a command to the distribution...
* add_depend() - Add a dependency to the distribution...
* add_file() - Add a file to the distribution.
* free_dist() - Free memory used by a distribution.
* get_platform() - Get the operating system information...
* read_dist() - Read a software distribution.
* sort_dist_files() - Sort the files in the distribution.
* add_string() - Add a command to an array of commands...
* compare_files() - Compare the destination filenames.
* free_strings() - Free memory used by the array of strings.
* expand_name() - Expand a filename with environment variables.
* get_line() - Get a line from a file, filtering for uname lines...
* get_vernumber() - Convert a version string to a number...
* patmatch() - Pattern matching...
*/
/*
* Include necessary headers...
*/
#include "epm.h"
#include <pwd.h>
/*
* Some versions of Solaris don't define gethostname()...
*/
#ifdef __sun
extern int gethostname(char *, int);
#endif /* __sun */
/*
* Local functions...
*/
static int add_string(int num_strings, char ***strings, char *string);
static int compare_files(const file_t *f0, const file_t *f1);
static void expand_name(char *buffer, char *name);
static void free_strings(int num_strings, char **strings);
static char *get_line(char *buffer, int size, FILE *fp,
struct utsname *platform, const char *format,
int *skip);
static int get_vernumber(const char *version);
static int patmatch(const char *, const char *);
/*
* 'add_command()' - Add a command to the distribution...
*/
void
add_command(dist_t *dist, /* I - Distribution */
char type, /* I - Command type */
const char *command) /* I - Command string */
{
command_t *temp; /* New command */
if (dist->num_commands == 0)
temp = malloc(sizeof(command_t));
else
temp = realloc(dist->commands, (dist->num_commands + 1) * sizeof(command_t));
if (temp == NULL)
{
perror("epm: Out of memory allocating a command");
return;
}
dist->commands = temp;
temp += dist->num_commands;
temp->type = type;
temp->command = strdup(command);
if (temp->command == NULL)
{
perror("epm: Out of memory duplicating a command string");
return;
}
dist->num_commands ++;
}
/*
* 'add_depend()' - Add a dependency to the distribution...
*/
void
add_depend(dist_t *dist, /* I - Distribution */
char type, /* I - Type of dependency */
const char *line) /* I - Line from file */
{
int i; /* Looping var */
depend_t *temp; /* New dependency */
char *ptr; /* Pointer into string */
const char *lineptr; /* Temporary pointer into line */
/*
* Allocate memory for the dependency...
*/
if (dist->num_depends == 0)
temp = malloc(sizeof(depend_t));
else
temp = realloc(dist->depends, (dist->num_depends + 1) * sizeof(depend_t));
if (temp == NULL)
{
perror("epm: Out of memory allocating a dependency");
return;
}
dist->depends = temp;
temp += dist->num_depends;
dist->num_depends ++;
/*
* Initialize the dependency record...
*/
memset(temp, 0, sizeof(depend_t));
temp->type = type;
/*
* Get the product name string...
*/
for (ptr = temp->product; *line && !isspace((int)*line); line ++)
if (ptr < (temp->product + sizeof(temp->product) - 1))
*ptr++ = *line;
while (isspace((int)*line))
line ++;
/*
* Get the version strings, if any...
*/
for (i = 0; *line && i < 2; i ++)
{
/*
* Handle <version, >version, etc.
*/
if (!isdigit((int)*line))
{
if (*line == '<' && i == 0)
{
strcpy(temp->version[0], "0.0");
i ++;
}
while (!isdigit((int)*line) && *line)
line ++;
}
if (!*line)
break;
/*
* Grab the version string...
*/
for (ptr = temp->version[i]; *line && !isspace((int)*line); line ++)
if (ptr < (temp->version[i] + sizeof(temp->version[i]) - 1))
*ptr++ = *line;
while (isspace((int)*line))
line ++;
/*
* Get the version number, if any...
*/
for (lineptr = line; isdigit((int)*lineptr); lineptr ++);
if (!*line || (!isspace((int)*lineptr) && *lineptr))
{
/*
* No version number specified, or the next number is a version
* string...
*/
temp->vernumber[i] = get_vernumber(temp->version[i]);
}
else
{
/*
* Grab the version number directly from the line...
*/
temp->vernumber[i] = atoi(line);
for (line = lineptr; isspace((int)*line); line ++);
}
}
/*
* Handle assigning default values based on the number of version numbers...
*/
switch (i)
{
case 0 :
strcpy(temp->version[0], "0.0");
/* fall through to set max version number */
case 1 :
strcpy(temp->version[1], "999.99.99p99");
temp->vernumber[1] = INT_MAX;
break;
}
}
/*
* 'add_file()' - Add a file to the distribution.
*/
file_t * /* O - New file */
add_file(dist_t *dist) /* I - Distribution */
{
file_t *file; /* New file */
if (dist->num_files == 0)
dist->files = (file_t *)malloc(sizeof(file_t));
else
dist->files = (file_t *)realloc(dist->files, sizeof(file_t) *
(dist->num_files + 1));
file = dist->files + dist->num_files;
dist->num_files ++;
return (file);
}
/*
* 'free_dist()' - Free memory used by a distribution.
*/
void
free_dist(dist_t *dist) /* I - Distribution to free */
{
int i; /* Looping var */
if (dist->num_files > 0)
free(dist->files);
free_strings(dist->num_descriptions, dist->descriptions);
for (i = 0; i < dist->num_commands; i ++)
free(dist->commands[i].command);
if (dist->num_commands)
free(dist->commands);
if (dist->num_depends)
free(dist->depends);
free(dist);
}
/*
* 'get_platform()' - Get the operating system information...
*/
void
get_platform(struct utsname *platform) /* O - Platform info */
{
char *temp; /* Temporary pointer */
/*
* Get the system identification information...
*/
uname(platform);
/*
* Adjust the CPU type accordingly...
*/
#ifdef __sgi
strcpy(platform->machine, "mips");
#elif defined(__hpux)
strcpy(platform->machine, "hppa");
#elif defined(_AIX)
strcpy(platform->machine, "powerpc");
#else
for (temp = platform->machine; *temp != '\0'; temp ++)
if (*temp == '-' || *temp == '_')
{
strcpy(temp, temp + 1);
temp --;
}
else
*temp = tolower(*temp);
if (strstr(platform->machine, "86") != NULL)
strcpy(platform->machine, "intel");
else if (strncmp(platform->machine, "sun", 3) == 0)
strcpy(platform->machine, "sparc");
#endif /* __sgi */
#ifdef _AIX
/*
* AIX stores the major and minor version numbers separately;
* combine them...
*/
sprintf(platform->release, "%d.%d", atoi(platform->version),
atoi(platform->release));
#else
/*
* Remove any extra junk from the release number - we just want the
* major and minor numbers...
*/
while (!isdigit((int)platform->release[0]) && platform->release[0])
strcpy(platform->release, platform->release + 1);
if (platform->release[0] == '.')
strcpy(platform->release, platform->release + 1);
for (temp = platform->release; *temp && isdigit((int)*temp); temp ++);
if (*temp == '.')
for (temp ++; *temp && isdigit((int)*temp); temp ++);
*temp = '\0';
#endif /* _AIX */
/*
* Convert the operating system name to lowercase, and strip out
* hyphens and underscores...
*/
for (temp = platform->sysname; *temp != '\0'; temp ++)
if (*temp == '-' || *temp == '_')
{
strcpy(temp, temp + 1);
temp --;
}
else
*temp = tolower(*temp);
/*
* SunOS 5.x is really Solaris 2.x, and OSF1 is really Digital UNIX a.k.a.
* Compaq Tru64 UNIX...
*/
if (strcmp(platform->sysname, "sunos") == 0 &&
platform->release[0] >= '5')
{
strcpy(platform->sysname, "solaris");
platform->release[0] -= 3;
}
else if (strcmp(platform->sysname, "osf1") == 0)
strcpy(platform->sysname, "tru64"); /* AKA Digital UNIX */
else if (strcmp(platform->sysname, "irix64") == 0)
strcpy(platform->sysname, "irix"); /* IRIX */
#ifdef DEBUG
printf("sysname = %s\n", platform->sysname);
printf("release = %s\n", platform->release);
printf("machine = %s\n", platform->machine);
#endif /* DEBUG */
}
/*
* 'read_dist()' - Read a software distribution.
*/
dist_t * /* O - New distribution */
read_dist(const char *filename, /* I - Main distribution list file */
struct utsname *platform, /* I - Platform information */
const char *format) /* I - Format of distribution */
{
FILE *listfiles[10]; /* File lists */
int listlevel; /* Level in file list */
char line[2048], /* Expanded line from list file */
buf[1024], /* Original line from list file */
type, /* File type */
dst[256], /* Destination path */
src[256], /* Source path */
pattern[256], /* Pattern for source files */
user[32], /* User */
group[32], /* Group */
*temp; /* Temporary pointer */
int mode, /* File permissions */
skip; /* 1 = skip files, 0 = archive files */
dist_t *dist; /* Distribution data */
file_t *file; /* Distribution file */
struct stat fileinfo; /* File information */
DIR *dir; /* Directory */
DIRENT *dent; /* Directory entry */
struct passwd *pwd; /* Password entry */
/*
* Create a new, blank distribution...
*/
dist = (dist_t *)calloc(sizeof(dist_t), 1);
/*
* Open the main list file...
*/
if ((listfiles[0] = fopen(filename, "r")) == NULL)
{
fprintf(stderr, "epm: Unable to open list file \"%s\" -\n %s\n",
filename, strerror(errno));
return (NULL);
}
/*
* Find any product descriptions, etc. in the list file...
*/
if (Verbosity)
puts("Searching for product information...");
skip = 0;
listlevel = 0;
do
{
while (get_line(buf, sizeof(buf), listfiles[listlevel], platform, format,
&skip) != NULL)
{
/*
* Do variable substitution...
*/
line[0] = buf[0]; /* Don't expand initial $ */
expand_name(line + 1, buf + 1);
/*
* Check line for config stuff...
*/
if (line[0] == '%')
{
/*
* Find whitespace...
*/
for (temp = line; !isspace((int)*temp) && *temp; temp ++);
for (; isspace((int)*temp); *temp++ = '\0');
/*
* Process directive...
*/
if (strcmp(line, "%include") == 0)
{
listlevel ++;
if ((listfiles[listlevel] = fopen(temp, "r")) == NULL)
{
fprintf(stderr, "epm: Unable to include \"%s\" -\n %s\n", temp,
strerror(errno));
listlevel --;
}
}
else if (strcmp(line, "%description") == 0)
dist->num_descriptions =
add_string(dist->num_descriptions, &(dist->descriptions), temp);
else if (strcmp(line, "%preinstall") == 0)
add_command(dist, COMMAND_PRE_INSTALL, temp);
else if (strcmp(line, "%install") == 0 ||
strcmp(line, "%postinstall") == 0)
add_command(dist, COMMAND_POST_INSTALL, temp);
else if (strcmp(line, "%remove") == 0 ||
strcmp(line, "%preremove") == 0)
add_command(dist, COMMAND_PRE_REMOVE, temp);
else if (strcmp(line, "%postremove") == 0)
add_command(dist, COMMAND_POST_REMOVE, temp);
else if (strcmp(line, "%prepatch") == 0)
add_command(dist, COMMAND_PRE_PATCH, temp);
else if (strcmp(line, "%patch") == 0 ||
strcmp(line, "%postpatch") == 0)
add_command(dist, COMMAND_POST_PATCH, temp);
else if (strcmp(line, "%product") == 0)
{
if (!dist->product[0])
strcpy(dist->product, temp);
else
fputs("epm: Ignoring %product line in list file.\n", stderr);
}
else if (strcmp(line, "%copyright") == 0)
{
if (!dist->copyright[0])
strcpy(dist->copyright, temp);
else
fputs("epm: Ignoring %copyright line in list file.\n", stderr);
}
else if (strcmp(line, "%vendor") == 0)
{
if (!dist->vendor[0])
strcpy(dist->vendor, temp);
else
fputs("epm: Ignoring %vendor line in list file.\n", stderr);
}
else if (strcmp(line, "%packager") == 0)
{
if (!dist->packager[0])
strcpy(dist->packager, temp);
else
fputs("epm: Ignoring %packager line in list file.\n", stderr);
}
else if (strcmp(line, "%license") == 0)
{
if (!dist->license[0])
strcpy(dist->license, temp);
else
fputs("epm: Ignoring %license line in list file.\n", stderr);
}
else if (strcmp(line, "%readme") == 0)
{
if (!dist->readme[0])
strcpy(dist->readme, temp);
else
fputs("epm: Ignoring %readme line in list file.\n", stderr);
}
else if (strcmp(line, "%version") == 0)
{
if (!dist->version[0])
{
strcpy(dist->version, temp);
if ((temp = strchr(dist->version, ' ')) != NULL)
{
*temp++ = '\0';
dist->vernumber = atoi(temp);
}
else
dist->vernumber = get_vernumber(dist->version);
if ((temp = strrchr(dist->version, '-')) != NULL)
{
*temp++ = '\0';
dist->relnumber = atoi(temp);
}
}
}
else if (strcmp(line, "%release") == 0 && dist->relnumber == 0)
{
dist->relnumber = atoi(temp);
dist->vernumber += dist->relnumber;
}
else if (strcmp(line, "%incompat") == 0)
add_depend(dist, DEPEND_INCOMPAT, temp);
else if (strcmp(line, "%provides") == 0)
add_depend(dist, DEPEND_PROVIDES, temp);
else if (strcmp(line, "%replaces") == 0)
add_depend(dist, DEPEND_REPLACES, temp);
else if (strcmp(line, "%requires") == 0)
add_depend(dist, DEPEND_REQUIRES, temp);
else
{
fprintf(stderr, "epm: Unknown directive \"%s\" ignored!\n", line);
fprintf(stderr, " %s %s\n", line, temp);
}
}
else if (line[0] == '$')
{
/*
* Define a variable...
*/
if (line[1] == '{' && (temp = strchr(line + 2, '}')) != NULL)
{
/*
* Remove {} from name...
*/
strcpy(temp, temp + 1);
strcpy(line + 1, line + 2);
}
else if (line[1] == '(' && (temp = strchr(line + 2, ')')) != NULL)
{
/*
* Remove () from name...
*/
strcpy(temp, temp + 1);
strcpy(line + 1, line + 2);
}
if ((temp = strchr(line + 1, '=')) != NULL)
{
/*
* Only define the variable if it is not in the environment
* or on the command-line.
*/
*temp = '\0';
if (getenv(line + 1) == NULL)
{
*temp = '=';
if ((temp = strdup(line + 1)) != NULL)
putenv(temp);
}
}
}
else if (sscanf(line, "%c%o%15s%15s%254s%254s", &type, &mode, user, group,
dst, src) < 5)
fprintf(stderr, "epm: Bad line - %s\n", line);
else
{
if (tolower(type) == 'd' || type == 'R')
src[0] = '\0';
#ifdef __osf__ /* Remap group "sys" to "system" */
if (strcmp(group, "sys") == 0)
strcpy(group, "system");
#elif defined(__linux) /* Remap group "sys" to "root" */
if (strcmp(group, "sys") == 0)
strcpy(group, "root");
#endif /* __osf__ */
if ((temp = strrchr(src, '/')) == NULL)
temp = src;
else
temp ++;
for (; *temp; temp ++)
if (strchr("*?[", *temp))
break;
if (*temp)
{
/*
* Add using wildcards...
*/
if ((temp = strrchr(src, '/')) == NULL)
temp = src;
else
*temp++ = '\0';
strncpy(pattern, temp, sizeof(pattern) - 1);
pattern[sizeof(pattern) - 1] = '\0';
if (dst[strlen(dst) - 1] != '/')
strncat(dst, "/", sizeof(dst) - 1);
if (temp == src)
dir = opendir(".");
else
dir = opendir(src);
if (dir == NULL)
fprintf(stderr, "epm: Unable to open directory \"%s\" - %s\n",
src, strerror(errno));
else
{
/*
* Make sure we have a directory separator...
*/
if (temp > src)
temp[-1] = '/';
while ((dent = readdir(dir)) != NULL)
{
strcpy(temp, dent->d_name);
if (stat(src, &fileinfo))
continue; /* Skip files we can't read */
if (S_ISDIR(fileinfo.st_mode))
continue; /* Skip directories */
if (!patmatch(dent->d_name, pattern))
continue;
file = add_file(dist);
file->type = type;
file->mode = mode;
strcpy(file->src, src);
strcpy(file->dst, dst);
strncat(file->dst, dent->d_name, sizeof(file->dst) - 1);
strcpy(file->user, user);
strcpy(file->group, group);
}
closedir(dir);
}
}
else
{
/*
* Add single file...
*/
file = add_file(dist);
file->type = type;
file->mode = mode;
strcpy(file->src, src);
strcpy(file->dst, dst);
strcpy(file->user, user);
strcpy(file->group, group);
}
}
}
fclose(listfiles[listlevel]);
listlevel --;
}
while (listlevel >= 0);
if (!dist->packager[0])
{
/*
* Assign a default packager name...
*/
gethostname(buf, sizeof(buf));
setpwent();
if ((pwd = getpwuid(getuid())) != NULL)
snprintf(dist->packager, sizeof(dist->packager), "%s@%s", pwd->pw_name,
buf);
else
snprintf(dist->packager, sizeof(dist->packager), "unknown@%s", buf);
}
sort_dist_files(dist);
return (dist);
}
/*
* 'sort_dist_files()' - Sort the files in the distribution.
*/
void
sort_dist_files(dist_t *dist) /* I - Distribution to sort */
{
int i; /* Looping var */
file_t *file; /* File in distribution */
/*
* Sort the files...
*/
if (dist->num_files > 1)
qsort(dist->files, dist->num_files, sizeof(file_t),
(int (*)(const void *, const void *))compare_files);
/*
* Remove duplicates...
*/
for (i = dist->num_files - 1, file = dist->files; i > 0; i --, file ++)
if (strcmp(file[0].dst, file[1].dst) == 0)
{
memcpy(file, file + 1, i * sizeof(file_t));
dist->num_files --;
file --;
}
}
/*
* 'add_string()' - Add a command to an array of commands...
*/
static int /* O - Number of strings */
add_string(int num_strings, /* I - Number of strings */
char ***strings, /* O - Pointer to string pointer array */
char *string) /* I - String to add */
{
if (num_strings == 0)
*strings = (char **)malloc(sizeof(char *));
else
*strings = (char **)realloc(*strings, (num_strings + 1) * sizeof(char *));
(*strings)[num_strings] = strdup(string);
return (num_strings + 1);
}
/*
* 'compare_files()' - Compare the destination filenames.
*/
static int /* O - Result of comparison */
compare_files(const file_t *f0, /* I - First file */
const file_t *f1) /* I - Second file */
{
return (strcmp(f0->dst, f1->dst));
}
/*
* 'expand_name()' - Expand a filename with environment variables.
*/
static void
expand_name(char *buffer, /* O - Output string */
char *name) /* I - Input string */
{
char var[255], /* Environment variable name */
*varptr; /* Current position in name */
while (*name != '\0')
{
if (*name == '$')
{
name ++;
if (*name == '$')
{
/*
* Insert a lone $...
*/
*buffer++ = *name++;
continue;
}
else if (*name == '{')
{
/*
* Bracketed variable name...
*/
for (varptr = var, name ++; *name != '}' && *name != '\0';)
*varptr++ = *name++;
if (*name == '}')
name ++;
}
else
{
/*
* Unbracketed variable name...
*/
for (varptr = var; strchr("/ \t-", *name) == NULL && *name != '\0';)
*varptr++ = *name++;
}
*varptr = '\0';
if ((varptr = getenv(var)) != NULL)
{
strcpy(buffer, varptr);
buffer += strlen(buffer);
}
}
else
*buffer++ = *name++;
}
*buffer = '\0';
}
/*
* 'free_strings()' - Free memory used by the array of strings.
*/
static void
free_strings(int num_strings, /* I - Number of strings */
char **strings) /* I - Pointer to string pointers */
{
int i; /* Looping var */
for (i = 0; i < num_strings; i ++)
free(strings[i]);
if (num_strings)
free(strings);
}
/*
* 'get_line()' - Get a line from a file, filtering for uname lines...
*/
static char * /* O - String read or NULL at EOF */
get_line(char *buffer, /* I - Buffer to read into */
int size, /* I - Size of buffer */
FILE *fp, /* I - File to read from */
struct utsname *platform, /* I - Platform information */
const char *format, /* I - Distribution format */
int *skip) /* IO - Skip lines? */
{
int op, /* Operation (0 = OR, 1 = AND) */
namelen, /* Length of system name + version */
len, /* Length of string */
match; /* 1 = match, 0 = not */
char *ptr, /* Pointer into value */
*bufptr, /* Pointer into buffer */
namever[255], /* Name + version */
value[255]; /* Value string */
while (fgets(buffer, size, fp) != NULL)
{
/*
* Skip comment and blank lines...
*/
if (buffer[0] == '#' || buffer[0] == '\n')
continue;
/*
* See if this is a %system or %format line...
*/
if (strncmp(buffer, "%system ", 8) == 0)
{
/*
* Yes, do filtering based on the OS (+version)...
*/
*skip &= 2;
if (strcmp(buffer + 8, "all\n") != 0)
{
namelen = strlen(platform->sysname);
bufptr = buffer + 8;
snprintf(namever, sizeof(namever), "%s-%s", platform->sysname,
platform->release);
*skip |= *bufptr != '!';
while (*bufptr)
{
if (*bufptr == '!')
{
op = 1;
bufptr ++;
}
else
op = 0;
for (ptr = value; *bufptr && !isspace((int)*bufptr) &&
(ptr - value) < (sizeof(value) - 1);)
*ptr++ = *bufptr++;
*ptr = '\0';
while (isspace((int)*bufptr))
bufptr ++;
if (strncmp(value, "dunix", 5) == 0)
memcpy(value, "tru64", 5); /* Keep existing nul/version */
if ((ptr = strchr(value, '-')) != NULL)
len = ptr - value;
else
len = strlen(value);
if (len < namelen)
match = 0;
else
match = strncasecmp(value, namever, strlen(value)) == 0;
if (op)
*skip |= match;
else
*skip &= ~match;
}
}
}
else if (strncmp(buffer, "%format ", 8) == 0)
{
/*
* Yes, do filtering based on the distribution format...
*/
*skip &= 1;
if (strcmp(buffer + 8, "all\n") != 0)
{
bufptr = buffer + 8;
*skip |= (*bufptr != '!') * 2;
while (*bufptr)
{
if (*bufptr == '!')
{
op = 1;
bufptr ++;
}
else
op = 0;
for (ptr = value; *bufptr && !isspace((int)*bufptr) &&
(ptr - value) < (sizeof(value) - 1);)
*ptr++ = *bufptr++;
*ptr = '\0';
while (isspace((int)*bufptr))
bufptr ++;
match = (strcasecmp(value, format) == 0) * 2;
if (op)
*skip |= match;
else
*skip &= ~match;
}
}
}
else if (!*skip)
{
/*
* Otherwise strip any trailing newlines and return the string!
*/
if (buffer[strlen(buffer) - 1] == '\n')
buffer[strlen(buffer) - 1] = '\0';
return (buffer);
}
}
return (NULL);
}
/*
* 'get_vernumber()' - Convert a version string to a number...
*/
static int /* O - Version number */
get_vernumber(const char *version) /* I - Version string */
{
int numbers[4], /* Raw version numbers */
nnumbers, /* Number of numbers in version */
temp, /* Temporary version number */
offset; /* Offset for last version number */
const char *ptr; /* Pointer into string */
/*
* Loop through the version number string and construct a version number.
*/
memset(numbers, 0, sizeof(numbers));
for (ptr = version, offset = 0, temp = 0, nnumbers = 0;
*ptr && !isspace((int)*ptr);
ptr ++)
if (isdigit((int)*ptr))
temp = temp * 10 + *ptr - '0';
else
{
/*
* Add each mini version number (m.n.p) and patch/pre stuff...
*/
if (nnumbers < 4)
{
numbers[nnumbers] = temp;
nnumbers ++;
}
temp = 0;
if (*ptr == '.')
offset = 0;
else if (*ptr == 'p' || *ptr == '-')
{
if (strncmp(ptr, "pre", 3) == 0)
{
ptr += 2;
offset = -20;
}
else
offset = 0;
nnumbers = 3;
}
else if (*ptr == 'b')
{
offset = -50;
nnumbers = 3;
}
else /* if (*ptr == 'a') */
{
offset = -100;
nnumbers = 3;
}
}
if (nnumbers < 4)
numbers[nnumbers] = temp;
/*
* Compute the version number as MMmmPPpp + offset
*/
return (((numbers[0] * 100 + numbers[1]) * 100 + numbers[2]) * 100 +
numbers[3] + offset);
}
/*
* 'patmatch()' - Pattern matching...
*/
static int /* O - 1 if match, 0 if no match */
patmatch(const char *s, /* I - String to match against */
const char *pat) /* I - Pattern to match against */
{
/*
* Range check the input...
*/
if (s == NULL || pat == NULL)
return (0);
/*
* Loop through the pattern and match strings, and stop if we come to a
* point where the strings don't match or we find a complete match.
*/
while (*s != '\0' && *pat != '\0')
{
if (*pat == '*')
{
/*
* Wildcard - 0 or more characters...
*/
pat ++;
if (*pat == '\0')
return (1); /* Last pattern char is *, so everything matches now... */
/*
* Test all remaining combinations until we get to the end of the string.
*/
while (*s != '\0')
{
if (patmatch(s, pat))
return (1);
s ++;
}
}
else if (*pat == '?')
{
/*
* Wildcard - 1 character...
*/
pat ++;
s ++;
continue;
}
else if (*pat == '[')
{
/*
* Match a character from the input set [chars]...
*/
pat ++;
while (*pat != ']' && *pat != '\0')
if (*s == *pat)
break;
else if (pat[1] == '-' && *s >= pat[0] && *s <= pat[2])
break;
else
pat ++;
if (*pat == ']' || *pat == '\0')
return (0);
while (*pat != ']' && *pat != '\0')
pat ++;
if (*pat == ']')
pat ++;
s ++;
continue;
}
else if (*pat == '\\')
{
/*
* Handle quoted characters...
*/
pat ++;
}
/*
* Stop if the pattern and string don't match...
*/
if (*pat++ != *s++)
return (0);
}
/*
* Done parsing the pattern and string; return 1 if the last character matches
* and 0 otherwise...
*/
return (*s == *pat);
}
/*
* End of "$Id: dist.c,v 1.38 2001/07/05 16:57:22 mike Exp $".
*/
|