aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-10 14:53:08 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-10 14:53:08 +0000
commit36a582afdd26fb8f0ee9d63dafa394321cb909bc (patch)
treef5afda40c60f88f7ca29d0083327a31d13c11338
parente44526d9d526b63e354dee0ae1d5cf6a27300d8c (diff)
downloadbusybox-w32-36a582afdd26fb8f0ee9d63dafa394321cb909bc.tar.gz
busybox-w32-36a582afdd26fb8f0ee9d63dafa394321cb909bc.tar.bz2
busybox-w32-36a582afdd26fb8f0ee9d63dafa394321cb909bc.zip
Use copy_file from utilty.c, remove some char defines
git-svn-id: svn://busybox.net/trunk/busybox@1787 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--archival/dpkg.c51
-rw-r--r--dpkg.c51
2 files changed, 20 insertions, 82 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c
index eab2ace92..24b02041a 100644
--- a/archival/dpkg.c
+++ b/archival/dpkg.c
@@ -33,12 +33,13 @@
33#endif 33#endif
34 34
35#define BUFSIZE 4096 35#define BUFSIZE 4096
36#define DEPENDSMAX 64 /* maximum number of depends we can handle */
37
36#define ADMINDIR "/var/lib/dpkg" 38#define ADMINDIR "/var/lib/dpkg"
37#define STATUSFILE ADMINDIR ## "/status.udeb" 39#define STATUSFILE ADMINDIR ## "/status.udeb"
38#define DPKGCIDIR ADMINDIR ## "/tmp.ci/" 40#define DPKGCIDIR ADMINDIR ## "/tmp.ci/"
39#define INFODIR ADMINDIR ## "/info/" 41static const char infodir[] = "/var/lib/dpkg/info/";
40#define UDPKG_QUIET "UDPKG_QUIET" 42static const char udpkg_quiet[] = "UDPKG_QUIET";
41#define DEPENDSMAX 64 /* maximum number of depends we can handle */
42 43
43//static const int status_wantstart = 0; 44//static const int status_wantstart = 0;
44//static const int status_wantunknown = (1 << 0); 45//static const int status_wantunknown = (1 << 0);
@@ -379,7 +380,7 @@ static void *status_read(void)
379 perror(STATUSFILE); 380 perror(STATUSFILE);
380 return 0; 381 return 0;
381 } 382 }
382 if (getenv(UDPKG_QUIET) == NULL) 383 if (getenv(udpkg_quiet) == NULL)
383 printf("(Reading database...)\n"); 384 printf("(Reading database...)\n");
384 while (!feof(f)) 385 while (!feof(f))
385 { 386 {
@@ -452,7 +453,7 @@ static int status_merge(void *status, package_t *pkgs)
452 perror(STATUSFILE ".new"); 453 perror(STATUSFILE ".new");
453 return 0; 454 return 0;
454 } 455 }
455 if (getenv(UDPKG_QUIET) == NULL) 456 if (getenv(udpkg_quiet) == NULL)
456 printf("(Updating database...)\n"); 457 printf("(Updating database...)\n");
457 while (fgets(buf, BUFSIZE, fin) && !feof(fin)) 458 while (fgets(buf, BUFSIZE, fin) && !feof(fin))
458 { 459 {
@@ -535,38 +536,6 @@ static int is_file(const char *fn)
535 return S_ISREG(statbuf.st_mode); 536 return S_ISREG(statbuf.st_mode);
536} 537}
537 538
538static int dpkg_copyfile(const char *src, const char *dest)
539{
540 /* copy a (regular) file if it exists, preserving the mode, mtime
541 * and atime */
542 char buf[8192];
543 int infd, outfd;
544 int r;
545 struct stat srcStat;
546 struct utimbuf times;
547
548 if (stat(src, &srcStat) < 0)
549 {
550 if (errno == 2) return 0; else return -1;
551 }
552 if ((infd = open(src, O_RDONLY)) < 0)
553 return -1;
554 if ((outfd = open(dest, O_WRONLY|O_CREAT|O_TRUNC, srcStat.st_mode)) < 0)
555 return -1;
556 while ((r = read(infd, buf, sizeof(buf))) > 0)
557 {
558 if (write(outfd, buf, r) < 0)
559 return -1;
560 }
561 close(outfd);
562 close(infd);
563 if (r < 0) return -1;
564 times.actime = srcStat.st_atime;
565 times.modtime = srcStat.st_mtime;
566 if (utime(dest, &times) < 0) return -1;
567 return 1;
568}
569
570static int dpkg_doconfigure(package_t *pkg) 539static int dpkg_doconfigure(package_t *pkg)
571{ 540{
572 int r; 541 int r;
@@ -574,7 +543,7 @@ static int dpkg_doconfigure(package_t *pkg)
574 char buf[1024]; 543 char buf[1024];
575 DPRINTF("Configuring %s\n", pkg->package); 544 DPRINTF("Configuring %s\n", pkg->package);
576 pkg->status &= status_statusmask; 545 pkg->status &= status_statusmask;
577 snprintf(postinst, sizeof(postinst), "%s%s.postinst", INFODIR, pkg->package); 546 snprintf(postinst, sizeof(postinst), "%s%s.postinst", infodir, pkg->package);
578 if (is_file(postinst)) 547 if (is_file(postinst))
579 { 548 {
580 snprintf(buf, sizeof(buf), "%s configure", postinst); 549 snprintf(buf, sizeof(buf), "%s configure", postinst);
@@ -616,8 +585,8 @@ static int dpkg_dounpack(package_t *pkg)
616 snprintf(buf, sizeof(buf), "%s%s/%s", 585 snprintf(buf, sizeof(buf), "%s%s/%s",
617 DPKGCIDIR, pkg->package, adminscripts[i]); 586 DPKGCIDIR, pkg->package, adminscripts[i]);
618 snprintf(buf2, sizeof(buf), "%s%s.%s", 587 snprintf(buf2, sizeof(buf), "%s%s.%s",
619 INFODIR, pkg->package, adminscripts[i]); 588 infodir, pkg->package, adminscripts[i]);
620 if (dpkg_copyfile(buf, buf2) < 0) 589 if (copy_file(buf, buf2, TRUE, FALSE, FALSE) < 0)
621 { 590 {
622 fprintf(stderr, "Cannot copy %s to %s: %s\n", 591 fprintf(stderr, "Cannot copy %s to %s: %s\n",
623 buf, buf2, strerror(errno)); 592 buf, buf2, strerror(errno));
@@ -636,7 +605,7 @@ static int dpkg_dounpack(package_t *pkg)
636 "ar -p %s data.tar.gz|zcat|tar -tf -", 605 "ar -p %s data.tar.gz|zcat|tar -tf -",
637 pkg->file); 606 pkg->file);
638 snprintf(buf2, sizeof(buf2), 607 snprintf(buf2, sizeof(buf2),
639 "%s%s.list", INFODIR, pkg->package); 608 "%s%s.list", infodir, pkg->package);
640 if ((infp = popen(buf, "r")) == NULL || 609 if ((infp = popen(buf, "r")) == NULL ||
641 (outfp = fopen(buf2, "w")) == NULL) 610 (outfp = fopen(buf2, "w")) == NULL)
642 { 611 {
diff --git a/dpkg.c b/dpkg.c
index eab2ace92..24b02041a 100644
--- a/dpkg.c
+++ b/dpkg.c
@@ -33,12 +33,13 @@
33#endif 33#endif
34 34
35#define BUFSIZE 4096 35#define BUFSIZE 4096
36#define DEPENDSMAX 64 /* maximum number of depends we can handle */
37
36#define ADMINDIR "/var/lib/dpkg" 38#define ADMINDIR "/var/lib/dpkg"
37#define STATUSFILE ADMINDIR ## "/status.udeb" 39#define STATUSFILE ADMINDIR ## "/status.udeb"
38#define DPKGCIDIR ADMINDIR ## "/tmp.ci/" 40#define DPKGCIDIR ADMINDIR ## "/tmp.ci/"
39#define INFODIR ADMINDIR ## "/info/" 41static const char infodir[] = "/var/lib/dpkg/info/";
40#define UDPKG_QUIET "UDPKG_QUIET" 42static const char udpkg_quiet[] = "UDPKG_QUIET";
41#define DEPENDSMAX 64 /* maximum number of depends we can handle */
42 43
43//static const int status_wantstart = 0; 44//static const int status_wantstart = 0;
44//static const int status_wantunknown = (1 << 0); 45//static const int status_wantunknown = (1 << 0);
@@ -379,7 +380,7 @@ static void *status_read(void)
379 perror(STATUSFILE); 380 perror(STATUSFILE);
380 return 0; 381 return 0;
381 } 382 }
382 if (getenv(UDPKG_QUIET) == NULL) 383 if (getenv(udpkg_quiet) == NULL)
383 printf("(Reading database...)\n"); 384 printf("(Reading database...)\n");
384 while (!feof(f)) 385 while (!feof(f))
385 { 386 {
@@ -452,7 +453,7 @@ static int status_merge(void *status, package_t *pkgs)
452 perror(STATUSFILE ".new"); 453 perror(STATUSFILE ".new");
453 return 0; 454 return 0;
454 } 455 }
455 if (getenv(UDPKG_QUIET) == NULL) 456 if (getenv(udpkg_quiet) == NULL)
456 printf("(Updating database...)\n"); 457 printf("(Updating database...)\n");
457 while (fgets(buf, BUFSIZE, fin) && !feof(fin)) 458 while (fgets(buf, BUFSIZE, fin) && !feof(fin))
458 { 459 {
@@ -535,38 +536,6 @@ static int is_file(const char *fn)
535 return S_ISREG(statbuf.st_mode); 536 return S_ISREG(statbuf.st_mode);
536} 537}
537 538
538static int dpkg_copyfile(const char *src, const char *dest)
539{
540 /* copy a (regular) file if it exists, preserving the mode, mtime
541 * and atime */
542 char buf[8192];
543 int infd, outfd;
544 int r;
545 struct stat srcStat;
546 struct utimbuf times;
547
548 if (stat(src, &srcStat) < 0)
549 {
550 if (errno == 2) return 0; else return -1;
551 }
552 if ((infd = open(src, O_RDONLY)) < 0)
553 return -1;
554 if ((outfd = open(dest, O_WRONLY|O_CREAT|O_TRUNC, srcStat.st_mode)) < 0)
555 return -1;
556 while ((r = read(infd, buf, sizeof(buf))) > 0)
557 {
558 if (write(outfd, buf, r) < 0)
559 return -1;
560 }
561 close(outfd);
562 close(infd);
563 if (r < 0) return -1;
564 times.actime = srcStat.st_atime;
565 times.modtime = srcStat.st_mtime;
566 if (utime(dest, &times) < 0) return -1;
567 return 1;
568}
569
570static int dpkg_doconfigure(package_t *pkg) 539static int dpkg_doconfigure(package_t *pkg)
571{ 540{
572 int r; 541 int r;
@@ -574,7 +543,7 @@ static int dpkg_doconfigure(package_t *pkg)
574 char buf[1024]; 543 char buf[1024];
575 DPRINTF("Configuring %s\n", pkg->package); 544 DPRINTF("Configuring %s\n", pkg->package);
576 pkg->status &= status_statusmask; 545 pkg->status &= status_statusmask;
577 snprintf(postinst, sizeof(postinst), "%s%s.postinst", INFODIR, pkg->package); 546 snprintf(postinst, sizeof(postinst), "%s%s.postinst", infodir, pkg->package);
578 if (is_file(postinst)) 547 if (is_file(postinst))
579 { 548 {
580 snprintf(buf, sizeof(buf), "%s configure", postinst); 549 snprintf(buf, sizeof(buf), "%s configure", postinst);
@@ -616,8 +585,8 @@ static int dpkg_dounpack(package_t *pkg)
616 snprintf(buf, sizeof(buf), "%s%s/%s", 585 snprintf(buf, sizeof(buf), "%s%s/%s",
617 DPKGCIDIR, pkg->package, adminscripts[i]); 586 DPKGCIDIR, pkg->package, adminscripts[i]);
618 snprintf(buf2, sizeof(buf), "%s%s.%s", 587 snprintf(buf2, sizeof(buf), "%s%s.%s",
619 INFODIR, pkg->package, adminscripts[i]); 588 infodir, pkg->package, adminscripts[i]);
620 if (dpkg_copyfile(buf, buf2) < 0) 589 if (copy_file(buf, buf2, TRUE, FALSE, FALSE) < 0)
621 { 590 {
622 fprintf(stderr, "Cannot copy %s to %s: %s\n", 591 fprintf(stderr, "Cannot copy %s to %s: %s\n",
623 buf, buf2, strerror(errno)); 592 buf, buf2, strerror(errno));
@@ -636,7 +605,7 @@ static int dpkg_dounpack(package_t *pkg)
636 "ar -p %s data.tar.gz|zcat|tar -tf -", 605 "ar -p %s data.tar.gz|zcat|tar -tf -",
637 pkg->file); 606 pkg->file);
638 snprintf(buf2, sizeof(buf2), 607 snprintf(buf2, sizeof(buf2),
639 "%s%s.list", INFODIR, pkg->package); 608 "%s%s.list", infodir, pkg->package);
640 if ((infp = popen(buf, "r")) == NULL || 609 if ((infp = popen(buf, "r")) == NULL ||
641 (outfp = fopen(buf2, "w")) == NULL) 610 (outfp = fopen(buf2, "w")) == NULL)
642 { 611 {