From: jbj Date: Sun, 20 Aug 2000 21:39:13 +0000 (+0000) Subject: - add callbacks on package erasure. X-Git-Tag: tznext/4.11.0.1.tizen20130304~8116 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d0581d13d46920e263b6dfc30b5035259553ad0d;p=tools%2Flibrpm-tizen.git - add callbacks on package erasure. - fix: preserve cpio errno when using Fclose with libio. - fix: initialize sigs everywhere in python header object. CVS patchset: 4097 CVS date: 2000/08/20 21:39:13 --- diff --git a/CHANGES b/CHANGES index cb61498..502a242 100644 --- a/CHANGES +++ b/CHANGES @@ -95,6 +95,9 @@ 3.0.5 -> 3.0.6 - python bindings to query and verify signatures. + - add callbacks on package erasure. + - fix: preserve cpio errno when using Fclose with libio. + - fix: initialize sigs everywhere in python header object. 3.0.4 -> 3.0.5 - configure.in fiddles for BSD systems (Patrick Schoo). diff --git a/lib/install.h b/lib/install.h index ca2c7d2..8f6197d 100644 --- a/lib/install.h +++ b/lib/install.h @@ -25,8 +25,6 @@ enum fileTypes { XDIR, BDEV, CDEV, SOCK, PIPE, REG, LINK } ; extern "C" { #endif -int removeBinaryPackage(const char * root, rpmdb db, unsigned int offset, - int flags, enum fileActions * actions, FD_t scriptFd); int runInstScript(const char * prefix, Header h, int scriptTag, int progTag, int arg, int norunScripts, FD_t err); /* this looks for triggers in the database which h would set off */ @@ -36,12 +34,21 @@ int runTriggers(const char * root, rpmdb db, int sense, Header h, database to calculate arguments to the trigger */ int runImmedTriggers(const char * root, rpmdb db, int sense, Header h, int countCorrection, FD_t scriptFd); + +/*@observer@*/ const char *const fileActionString(enum fileActions a); + int installBinaryPackage(const char * rootdir, rpmdb db, FD_t fd, Header h, int flags, rpmCallbackFunction notify, void * notifyData, const void * pkgKey, enum fileActions * actions, struct sharedFileInfo * sharedList, FD_t scriptFd); -/*@observer@*/ const char *const fileActionString(enum fileActions a); +int removeBinaryPackage(const char * root, rpmdb db, unsigned int offset, + Header h, + int flags, rpmCallbackFunction notify, + void * notifyData, const void * pkgKey, + enum fileActions * actions, + FD_t scriptFd); + #ifdef __cplusplus } diff --git a/lib/transaction.c b/lib/transaction.c index d1beddd..c7743c6 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -1714,12 +1714,36 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, notifyData); break; case TR_REMOVED: + { unsigned int offset = fi->record; + Header dbh; + + /* If install failed, then we shouldn't erase. */ if (ts->order[oc].u.removed.dependsOnIndex == lastFailed) break; - if (removeBinaryPackage(ts->rootDir, ts->rpmdb, fi->record, - transFlags, fi->actions, ts->scriptFd)) + + { rpmdbMatchIterator mi = NULL; + + mi = rpmdbInitIterator(ts->rpmdb, RPMDBI_PACKAGES, + &offset, sizeof(offset)); + + dbh = rpmdbNextIterator(mi); + if (dbh == NULL) { + rpmdbFreeIterator(mi); + ourrc++; + break; + } + dbh = headerLink(dbh); + rpmdbFreeIterator(mi); + } + + if (removeBinaryPackage(ts->rootDir, ts->rpmdb, offset, dbh, + transFlags, + notify, notifyData, dbh, fi->actions, + ts->scriptFd)) ourrc++; - break; + + headerFree(dbh); + } break; } (void) rpmdbSync(ts->rpmdb); } diff --git a/lib/uninstall.c b/lib/uninstall.c index cada5f0..5ee47d9 100644 --- a/lib/uninstall.c +++ b/lib/uninstall.c @@ -75,67 +75,48 @@ static int removeFile(const char * file, unsigned int flags, short mode, } /** */ -int removeBinaryPackage(const char * prefix, rpmdb db, unsigned int offset, - int flags, enum fileActions * actions, FD_t scriptFd) +int removeBinaryPackage(const char * prefix, rpmdb db, unsigned int offset, + Header h, + int flags, rpmCallbackFunction notify, + void * notifyData, const void * pkgKey, + enum fileActions * actions, FD_t scriptFd) { - rpmdbMatchIterator mi = NULL; - Header h = NULL; - int i; - int fileCount; const char * name, * version, * release; const char ** baseNames; - int type; int scriptArg; int rc = 0; + int fileCount; + int i; if (flags & RPMTRANS_FLAG_JUSTDB) flags |= RPMTRANS_FLAG_NOSCRIPTS; - mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, &offset, sizeof(offset)); - h = rpmdbNextIterator(mi); - if (h == NULL) { - rpmError(RPMERR_DBCORRUPT, _("%s: cannot read header at 0x%x"), - "findMatches", offset); - rpmdbFreeIterator(mi); - rc = 1; - goto exit; - } - h = headerLink(h); - rpmdbFreeIterator(mi); - headerNVR(h, &name, &version, &release); /* * When we run scripts, we pass an argument which is the number of * versions of this package that will be installed when we are finished. */ - if ((scriptArg = rpmdbCountPackages(db, name)) < 0) { - rc = 1; - goto exit; - } + if ((scriptArg = rpmdbCountPackages(db, name)) < 0) + return 1; scriptArg -= 1; if (!(flags & RPMTRANS_FLAG_NOTRIGGERS)) { /* run triggers from this package which are keyed on installed packages */ - if (runImmedTriggers(prefix, db, RPMSENSE_TRIGGERUN, h, -1, scriptFd)) { - rc = 2; - goto exit; - } + if (runImmedTriggers(prefix, db, RPMSENSE_TRIGGERUN, h, -1, scriptFd)) + return 2; /* run triggers which are set off by the removal of this package */ - if (runTriggers(prefix, db, RPMSENSE_TRIGGERUN, h, -1, scriptFd)) { - rc = 1; - goto exit; - } + if (runTriggers(prefix, db, RPMSENSE_TRIGGERUN, h, -1, scriptFd)) + return 1; } if (!(flags & RPMTRANS_FLAG_TEST)) { - if (runInstScript(prefix, h, RPMTAG_PREUN, RPMTAG_PREUNPROG, scriptArg, - flags & RPMTRANS_FLAG_NOSCRIPTS, scriptFd)) { - rc = 1; - goto exit; - } + rc = runInstScript(prefix, h, RPMTAG_PREUN, RPMTAG_PREUNPROG, scriptArg, + (flags & RPMTRANS_FLAG_NOSCRIPTS), scriptFd); + if (rc) + return 1; } rpmMessage(RPMMESS_DEBUG, _("will remove files test = %d\n"), @@ -149,6 +130,7 @@ int removeBinaryPackage(const char * prefix, rpmdb db, unsigned int offset, int_16 * fileModesList; const char ** dirNames; int_32 * dirIndexes; + int type; char * fileName; int fnmaxlen; int prefixlen = (prefix && !(prefix[0] == '/' && prefix[1] == '\0')) @@ -186,6 +168,11 @@ int removeBinaryPackage(const char * prefix, rpmdb db, unsigned int offset, headerGetEntry(h, RPMTAG_FILEMODES, &type, (void **) &fileModesList, &fileCount); + if (notify) { + (void)notify(h, RPMCALLBACK_UNINST_START, fileCount, fileCount, + pkgKey, notifyData); + } + /* Traverse filelist backwards to help insure that rmdir() will work. */ for (i = fileCount - 1; i >= 0; i--) { @@ -195,9 +182,19 @@ int removeBinaryPackage(const char * prefix, rpmdb db, unsigned int offset, rpmMessage(RPMMESS_DEBUG, _(" file: %s action: %s\n"), fileName, fileActionString(actions[i])); - if (!(flags & RPMTRANS_FLAG_TEST)) + if (!(flags & RPMTRANS_FLAG_TEST)) { + if (notify) { + (void)notify(h, RPMCALLBACK_UNINST_PROGRESS, + i, actions[i], fileName, notifyData); + } removeFile(fileName, fileFlagsList[i], fileModesList[i], actions[i]); + } + } + + if (notify) { + (void)notify(h, RPMCALLBACK_UNINST_STOP, 0, fileCount, + pkgKey, notifyData); } free(baseNames); @@ -207,29 +204,22 @@ int removeBinaryPackage(const char * prefix, rpmdb db, unsigned int offset, if (!(flags & RPMTRANS_FLAG_TEST)) { rpmMessage(RPMMESS_DEBUG, _("running postuninstall script (if any)\n")); - runInstScript(prefix, h, RPMTAG_POSTUN, RPMTAG_POSTUNPROG, scriptArg, - flags & RPMTRANS_FLAG_NOSCRIPTS, scriptFd); + rc = runInstScript(prefix, h, RPMTAG_POSTUN, RPMTAG_POSTUNPROG, + scriptArg, (flags & RPMTRANS_FLAG_NOSCRIPTS), scriptFd); + /* XXX postun failures are not cause for erasure failure. */ } if (!(flags & RPMTRANS_FLAG_NOTRIGGERS)) { /* Run postun triggers which are set off by this package's removal. */ - if (runTriggers(prefix, db, RPMSENSE_TRIGGERPOSTUN, h, -1, scriptFd)) { - rc = 2; - goto exit; - } + rc = runTriggers(prefix, db, RPMSENSE_TRIGGERPOSTUN, h, -1, scriptFd); + if (rc) + return 2; } if (!(flags & RPMTRANS_FLAG_TEST)) rpmdbRemove(db, offset); - rc = 0; - - exit: - if (h) { - headerFree(h); - h = NULL; - } - return rc; + return 0; } static int runScript(Header h, const char * root, int progArgc, const char ** progArgv, diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 2236514..405a570 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -617,6 +617,7 @@ static PyObject * rpmReadHeaders (FD_t fd) { providePackageNVR (header); h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); h->h = header; + h->sigs = NULL; h->fileList = h->linkList = h->md5list = NULL; h->uids = h->gids = h->mtimes = h->fileSizes = NULL; h->modes = h->rdevs = NULL; @@ -669,6 +670,7 @@ static PyObject * hdrLoad(PyObject * self, PyObject * args) { h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); h->h = hdr; + h->sigs = NULL; h->fileList = h->linkList = h->md5list = NULL; h->uids = h->gids = h->mtimes = h->fileSizes = NULL; h->modes = h->rdevs = NULL; @@ -981,6 +983,7 @@ rpmdbSubscript(rpmdbObject * s, PyObject * key) { h = PyObject_NEW(hdrObject, &hdrType); h->h = NULL; + h->sigs = NULL; { rpmdbMatchIterator mi; mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, &offset, sizeof(offset)); if ((h->h = rpmdbNextIterator(mi)) != NULL) @@ -1044,6 +1047,7 @@ rpmdbMINext(rpmdbMIObject * s, PyObject * args) { ho = PyObject_NEW(hdrObject, &hdrType); ho->h = headerLink(h); + ho->sigs = NULL; ho->fileList = ho->linkList = ho->md5list = NULL; ho->uids = ho->gids = ho->mtimes = ho->fileSizes = NULL; ho->modes = ho->rdevs = NULL;