Commit Graph

650 Commits

Author SHA1 Message Date
Lubos Kardos b04c4f559b Add hash installedPackages to transaction members structure.
- After transaction this hash contains all packages installed in
  transaction. This hash can be used as argument of rpmdbFilterIterator()
  to get all packages installed in transaction from rpmdb.

- Rename removedHash to packageHash.
2015-02-05 08:08:12 +01:00
Lubos Kardos 2f31395dcd Fix color skipping of multiple files with the same content.
- If we process some file and we find another file with the same path
  and the same content and this other file is skipped for color then
  the currently being processed file has to be skipped for color too.
  (RhBug:1170124)
2014-12-17 16:53:42 +01:00
Panu Matilainen 454285b3a2 Add disabler flag + --noplugins cli switch for plugins
- Always knew we'd need a plugin disabler flag sooner than later but
  didn't realize enabled plugins would fail basically the entire
  test-suite :)
- Enable --noplugins for entire test-suite for now, but eventually
  we'll need to come up with ways to test plugins as well
2014-06-24 15:14:35 +03:00
Panu Matilainen d8ebc90e64 Initialize plugins based on DSO discovery
- %__transaction_plugins style configuration is problematic for plugins
  because we want plugins to be, well, pluggable. As in drop-in to
  enable, which is not achievable with a single macro entry. Look up
  all DSO's from the plugin dir and enable if a matching
  %__transaction_foo macro is defined.
- This isn't optimal but it'll buy us the drop-in capability, which
  is what matters most right now. We'll want to have forcability as
  well later on (ie it should be possible to require given plugins
  to be present)
2014-06-24 14:46:37 +03:00
Panu Matilainen 713914bde1 Drop the experimental collection support
- The basic concept is not without merit but what was implemented here
  has been stuck in experimental state in middle of two sorta conflicting
  goals for four years now, and world has moved onward in the meanwhile.
  The sepolicy part is better handled in the new selinux plugin, and other
  action business belongs to packages (in the form of some trigger-like
  scripts or such) rather than rpm plugins.
- Deleted here, but the sepolicy plugin functionality still needs
  merging into the new selinux plugin...
- RPMTAG_COLLECTIONS left in place but tagged unimplemented as per policy
  to never actually remove tags
2014-06-17 16:27:24 +03:00
Panu Matilainen f311fb65ee Reset file actions between rpmtsRun() calls (RhBug:1076552)
- When the world changes underneath us (eg by %pretrans hackery)
  between test-transaction and actual transaction, in some cases
  the file action does not get recomputed if already set.
  Always reset file actions to FA_UNKNOWN before disposition
  calculations to ensure have a clean starting point.
2014-03-21 12:44:03 +02:00
Panu Matilainen 4d2ee13a6e Use the proper file action for .rpmsave on erasures. Doh.
- We have FA_SAVE which results in .rpmsave suffix so use it, instead
  of mapping FA_BACKUP to .rpmorig or .rpmsave depending on whether
  we're installing or erasing. Doh.
- Goal is no longer needed by fsmMapPath()
2014-03-13 08:47:23 +02:00
Panu Matilainen fd40d58efa Legalize proper reinstall within transaction
- Account for packages removed in transaction when checking whether
  package is already installed. This permits install + erasure of the
  same package within a single transaction, aka reinstall, with
  changing file policies (excludedocs, installangs etc) properly
  taken into account. Related to RhBug:966715.
- This differs from --replacepkgs which is just a strange hack really
  but one that's difficult to change because of how its presented
  in the API. --replacepkgs behavior does not change here, and a proper
  reinstall is NOT possible when replacepkg problem filter is active.
- Testing this is not possible with rpm cli :(
2014-03-04 11:14:37 +02:00
Panu Matilainen 326f1d7953 Turn rpmteSetFI() into clean-only function
- Nothing outside rpmte.c should be able to muck around with the
  file info set associated with the ts element. Except to free
  memory, which is the only thing rpmteSetFI() is now being used for.
2013-12-02 15:17:01 +02:00
Panu Matilainen 3a858ad5b0 Eliminate rpmteFI() use from rpmFindBaseNamesInDB()
- Use local iterator on rpmteFiles() instead
2013-11-11 12:19:24 +02:00
Panu Matilainen d093a58f34 Eliminate rpmteFI() uses from transaction skip policy calculations
- Grab files and file states from the main loop and pass as arguments
  to skipInstallFiles() and skipEraseFiles(), neither actually
  needs the transaction element otherwise.
- Use local iterators in both skip*Files(), not that it actually
  matters here other than eliminating rpmteFI() uses
2013-11-11 12:06:28 +02:00
Panu Matilainen f9f93714c5 Switch fingerprinting main loop from rpmfi to rpmfiles
- The internals already use rpmfiles random access anyway, rpmfi
  only gets in the way there
2013-11-11 11:55:16 +02:00
Panu Matilainen b1c31b9632 Switch countFiles() from rpmfi to rpmfiles
- Need to do more work to get the same silly number, this particular
  case doesn't really look like progress :)
2013-11-11 11:20:49 +02:00
Panu Matilainen 4140e6562d Make rpmteFiles() return refcounted rpmfiles, fixup callers 2013-11-08 13:50:20 +02:00
Panu Matilainen afb89d072d Only fetch otherFi when it'll actually be needed
- Shouldn't change anything as is, just rearranging this to allow
  refcount on rpmteFiles() return
2013-11-08 13:04:21 +02:00
Panu Matilainen 0a9c199bc2 Bunch of forgotten rpmfi -> rpmfiles (internal) function renames 2013-11-08 11:03:33 +02:00
Panu Matilainen bb7ad2f1f1 Switch checkInstalledFiles() from rpmfi to rpmfiles
- All the called functions expect rpmfiles anyway so might as well
  grab that from the start. We could probably do some of this with
  iterators now but as everything here is done with the random-access
  functions, switching would take quite a bit of work...
2013-11-07 16:29:25 +02:00
Panu Matilainen d9c0b07adb Mass-rename all rpmfiFooIndex() functions to rpmfilesFoo()
- These all operate on rpmfiles, not rpmfi, now so make the point
  clearer. All internal stuff so we're free to mess around.
- No functional changes, only a straightforward perl-assisted rename...
2013-11-07 15:58:10 +02:00
Panu Matilainen c0cb2d86f9 Chainsaw rpmfi iteration apart from the actual file set
- The self-iterator in rpmfi prevents all sorts of sane uses of
  file set iteration. Split the actual data into a separate data
  type, changing the internal random-access functions to use the
  new rpmfiles datatype directly and update internal callers minimally.
  This should be entirely transparent to public API consumers who still
  only see the braindamaged self-iterating version.
- Internal consumers dont directly benefit (yet), this is just an
  early step on the road to rpmfi sanity. Much of the API and variables
  will need renaming etc but avoiding that here to keep the changes
  to minimum, this is a rather huge commit as it is.
2013-11-07 14:27:26 +02:00
Panu Matilainen 1ae157a017 Remove pointless rpmdbSync() function
- The DB backend is supposed to take care of syncing when necessary,
  syncing all indexes "just in case" whether they were written to
  doesn't make a whole lot of sense.
2013-04-19 18:43:49 +03:00
Panu Matilainen 23e82afcbc Add scriptlet-specific disablers for %pretrans and %posttrans
- Previously %pretrans and %posttrans were tied to --nopre and --nopost
  disablers (since commit 0b2d7775c5)
  because back then, there was no room new disablers in rpmtransFlags
  bitfield. This is no longer the case as of rpm >= 4.9.x where
  a bunch of obsolete flags were axed, so we can now add specific
  --nopretrans and --noposttrans switches + corresponding flags.
- This is obviously a behavior change as --nopre and --nopost no
  longer affect %pretrans and %posttrans, but --noscripts behavior
  remains the same.
2013-04-10 11:40:13 +03:00
Panu Matilainen 51b306686c Initialize plugins much earlier
- Lazily initialize plugins when adding install or erase elements
  to the transaction already. Since this ensures the setup will
  always be performed, there's no need to do this from rpmtsRun()
  anymore, empty transaction would not get that far anyway.
- This will allow adding hooks to the places where package header
  is still available (which is required for various things) and
  in general, before transaction is actually executed.
- The downside here is that adding or removing packages to a transaction
  can now fail due to plugin initialization failure where its not
  easily distinguishable from other errors, but then they can also
  fail due to rpmdb open failure which kinda similar "shouldn't be
  here" issue. The alternative would be initializing the plugins
  in rpmtsCreate() but as that's not actually permitted to fail at
  all, its not an option really.
2013-04-03 16:53:12 +03:00
Panu Matilainen d497ca6d46 Use rpmtsPlugins() instead of direct struct access everywhere 2013-04-03 14:29:25 +03:00
Panu Matilainen 34f8836aa9 Missing <inttypes.h> include, hysterically masked by "leaking" BDB includes 2013-03-25 09:57:36 +02:00
Panu Matilainen b5e3e1efee Eliminate built-in selinux support. RIP.
- We hereby unceremoniously declare that from now on, SELinux and
  other similar mechanisms are to live in plugins, rpm doesn't need
  to know about every possible security etc mechanism there might be.
  Its a big commit but as its really just removals...
- We need to disable sepolicy collection plugin for now as it relies on
  built-in support for selinux, this not only makes no sense but
  wont work now that there is no built-in support. The sepolicy
  plugin needs to be merged into the selinux base plugin now.
- Another "breakage" is that --rebuilddb no longer relabels the database,
  this needs plugins to called in a place where they currently cannot
  be called. This needs to be resolved before next actual release.
2013-03-21 13:56:33 +02:00
Panu Matilainen 159485f4e7 Introduce transaction begin/end API on top of rpmlock
- For now this doesn't do anything particularly interesting, it
  just replaces the transaction lock handle we use internally.
  We want to export this interface but that needs further changes.
2013-03-11 12:46:30 +02:00
Ville Skyttä 8002b3f985 Spelling fixes.
Signed-off-by: Panu Matilainen <pmatilai@redhat.com>
2013-02-19 21:35:40 +02:00
Panu Matilainen 147a26c5f6 Dont skip shared file/dir create if the other one is a ghost
- Explicitly test for shared file/dir being ghost when deciding whether
  to skip create: we must never skip the creation of a real file/dir
  because of a ghost as the ghosts do not get created.
- This fixes the shared ghost testcase, ie the thing that commit
  a712252392 was supposed to fix,
  without side-effects that I can see.
2013-01-30 14:07:33 +02:00
Panu Matilainen 471b74bf6e Revert the severely broken FA_SKIP on %ghost "fix"
- Reverts the bad half of commit a712252392eca75443ca45c10a72873cabec7963:
  treating files that wont be installed as skipped seems logical enough,
  but rpm disagrees... making %ghosts FA_SKIP on install causes
  upgrades on %ghost %config files to miss the necessary FA_SKIP getting
  set on the erase half via handleInstInstalledFile() and
  rpmfiDecideFate(), causing %ghost %config files to be nuked. Which isn't
  very nice when your /var/lib/rpm/ contents are packaged as
  %ghost %config...
- This fixes the %ghost %config testcase but breaks the shared %ghost
  case in turn.
2013-01-30 14:01:59 +02:00
Panu Matilainen a712252392 Be more careful about skipping shared file/directory creation
- Only skip shared file/dir creation if its actually being created
  by another package. Previously we could've decided to skip an entry
  where the other file was also being skipped for some other reason.
- Ensure %ghost entries always have FA_SKIP on install, previously
  they often were FA_CREATE which makes no sense for %ghost. We dont
  encounter %ghosts at all during install in the FSM as they dont
  exist in the payload, but the file disposition calculations need
  to take them into account now that we're avoiding redundant creates.
- Fixes a regression from commit f7f5f88f9f
  which unearthed the %ghost FA_CREATE issue, reported here:
  http://lists.fedoraproject.org/pipermail/buildsys/2013-January/004047.html
2013-01-28 12:50:39 +02:00
Panu Matilainen d73535e1a9 Handle transaction global pool allocation centrally in rpmtsPool()
- Previously the pool would only get allocated on successfull addition
  of install or erasure elements, causing assert() failures on
  operations on empty transaction set, which should be just a no-op,
  not an error.
- Make rpmtsPool() create the pool if it doesn't exist, update relevant
  users to call rpmtsPool() instead of directly accessing tsmem->pool,
  this avoids having to worry about pool existence in all the various cases.
- Also fix up the pool-related comment on rpmtsEmpty(): pools does not
  and can not support emptying as it could break references to its
  contents. Per-string refcount would be needed for emptying support.
2012-12-19 12:32:52 +02:00
Elena Reshetova 19ece18f1a Making pre/post tsm/psm hooks more consistent.
-All post hooks take an additional rc argument that indicates general return code from operation.
-All post hooks are always called if correspoding pre hook has been called.
-The return value from post hooks is curently ignored

Signed-off-by: Panu Matilainen <pmatilai@redhat.com>
2012-12-05 15:58:49 +02:00
Panu Matilainen b1d3f21a54 Account for temporary disk-space requirement on forced replace too
- Similar to commit 85df102165, but
  for forced file replacements.
2012-11-14 12:25:43 +02:00
Panu Matilainen f8da4f6136 Remove ancient, no longer relevant comment
- Since commit f7f5f88f9f, only the first
  instance of shared files is created, the rest are FA_SKIP which
  consume no disk space and are not counted either.
2012-11-14 10:57:19 +02:00
Panu Matilainen 85df102165 Account for temporary disk-space requirements on updates (ticket #175)
- When updating packages, we first create them with a temporary names
  and only after all files from payload have been created this way,
  the files are renamed to the final target. This means that performing
  an update temporarily requires roughly twice the disk space (and inodes)
  compared to the final result on per-package level. Which matters
  when space is tight, such as presumably in RhBug:872314.
- Simulate what happens on upgrades by adding block and inode delta
  to the equation: installing a file always consumes an inode and
  the specified amount of disk space. But when replacing files,
  reduce the size-delta from disk consumption *after* checking for
  problems in a given DSI.
- Also fixes inode accounting which has been broken for forever (since
  commit a9a1fd866c more exactly)
2012-11-14 10:31:15 +02:00
Panu Matilainen 1986eb6242 Remove unnecessary casts 2012-11-09 12:18:13 +02:00
Elena Reshetova 551603470f Extending rpm plugin interface, part 1
This change adds a new type of the rpm plugin, called transaction plugin
and a set of initial hooks for this plugin. The hooks are:

PLUGINHOOK_TSM_PRE
    Pre-transaction hook that is called before an rpm transaction begins
PLUGINHOOK_TSM_POST
    Post-transaction hook that is called after an rpm transaction ends
PLUGINHOOK_PSM_PRE
    Pre-transaction-element hook that is called before an rpm
    transaction-element is processed
PLUGINHOOK_PSM_POST
    Post-transaction-element hook that is called after an rpm
    transaction-element is processed
PLUGINHOOK_SCRIPT_SETUP
    Per-script hook that is called once for each rpm mainainers script
    that is present in the package

Each hook is called for every plugin that have this hook registered.
The avaliable transaction plugins can be specified in macros.in via
transaction_plugins element.

Signed-off-by: Panu Matilainen <pmatilai@redhat.com>
2012-11-08 12:09:03 +02:00
Panu Matilainen 3ff6fdd688 Hide the strpool-related rpmts/rpmfi/rpmds interfaces out of sight for now
- In the package/transaction related things the strpool is more of
  an internal implementation detail than an end-goal in itself, move
  string pool related interfaces of rpmts, rpmfi and rpmds to
  internal-only APIs for now. The kind interfaces we'll want to eventually
  export a) dont exist yet and b) are likely to be something very different.
- The string pool itself remains exported however, its a handy data
  structure for all sorts of things and both librpm and librpmbuild
  heavily use it already.
2012-11-01 09:59:57 +02:00
Panu Matilainen 62fd585b2e Switch rpmdb basename finding to use pool id's instead of strings
- Ids are both faster to hash/compare and cheaper to store than string
  pointers. Not a huge win but a win anyway...
2012-09-14 19:59:15 +03:00
Panu Matilainen 20bf602a26 Switch fingerprinting to use the global string pool
- Transaction preparation fingerprinting now shares all the strings from
  rpmfi's etc. Rpmdb basename iterator still needs a private pool
  as there's nowhere to get a pool handle (for now at least).
- We no longer need to (and actually we couldn't) freeze the
  pool before fingerprinting.
2012-09-14 14:21:45 +03:00
Panu Matilainen 5bad56b4ab Allow passing a shared pool for finger print cache
- Both callers updated to still use a private pool so no practical
  change here.
2012-09-14 14:21:10 +03:00
Panu Matilainen c66656052d Remove scareMemory remnants from the internal API, fixup callers 2012-09-14 14:19:32 +03:00
Panu Matilainen 3d65369920 Make fingerprint struct opaque outside fprint.c
- rpmfi cannot know anything about the storage, so rpmfiFpxIndex()
  cannot be... change it to rpmfiFps() which only returns the pointer
  we got from fpLookupList()
- Change fpCacheGetByFp() to assume it gets passed an array of fps,
  and take an additional index argument. Return the fingerprint
  pointer on success, NULL on not found to allow further operations
  on the fp without knowing its internals.
2012-09-14 13:41:41 +03:00
Panu Matilainen 9e7adb8f14 Change fpLookup() to return malloced memory (on first call)
- If the fingerprint pointer passed to it is NULL then allocate space
  for a new fingerprint, otherwise reuse the previous space. This should
  allow optimizing the case where repeatedly calling and directory
  doesn't change inside fpc so callers dont need special-case code
  for this. For now, we dont care about optimizations, other than
  making it possible later.
2012-09-14 13:40:24 +03:00
Panu Matilainen ab180dacb9 Make fingerprint cache entry opaque, add some kind of API for the needed bits
- Only disk-space calculations need the actual entry contents, add
  getter for dir name and device. We're passing the cache to these
  getters too: its not currently unusedd but will be needed for
  directory name pool id->string translation once we get there...
2012-09-14 13:38:52 +03:00
Panu Matilainen d3de5120b7 Move the entire fingerprint cache population into fprint.c
- Rename addFingerprints() to fpCachePopulate() and move into fprint.c.
  This doesn't really belong here as it requires fprint becoming aware
  of transactions and all, but at least these are all controlled API
  accesses unlike where in transaction.c this was messing with somebody
  elses data structures directly.
- Move the by-fingerprint creation to fpCachePopulate() so it gets
  lazily done as needed and copy the original hash-size heuristics
  back here.
2012-09-14 13:32:58 +03:00
Panu Matilainen 33b900fc03 Hide by-fingerprint hash into fingerprint cache, add minimal API bits
- For now, always create the by-fingerprint hash although rpmdb usage
  doesn't need it. Next steps will fix...
- Add wrapper API for retrieving the records, adjust callers
- No functional changes, at least intended ones... just first steps
  towards eliminating the hash-jungle and forcing a single API
  through which this stuff gets handled
2012-09-14 13:31:33 +03:00
Panu Matilainen b78ba1ae51 Convert our dependency checking code to use the new rpmdsMatches()
- Instead of adding three more pool-aware versions of the old API's,
  convert the main callers to the newew more flexible API. As a
  "minor side-effect" these now use the transaction string-pool as well,
  so ALL our pre-transaction dependency sets are now using the global
  pool.
2012-09-13 13:12:59 +03:00
Panu Matilainen 6b461f4ed1 Use transaction string pool for ensureOlder() dependency sets 2012-09-13 11:36:27 +03:00
Panu Matilainen b6c794362a Whoopsie, unbreak checking of installed dependencies
- The dependency sets created from installed headers during rpmtsCheck()
  were using a private pool and thus ids not matching with the ones
  in the global pool. Oops. Somehow none of our test-suite cases
  caught this, looks like we'll need more tests... Also the safe-guard
  assert()'s are in all the wrong places for catching this particular
  problem. Doh :)
- There's a chicken-and-egg situation involved: in order to do this,
  the global pool needs to be in unfrozen state during rpmtsCheck(),
  which was not possible before switching rpmal provides (and files)
  to pool ids. Now that it *is* using pool id's, move the freeze-point
  to rpmtsPrepare() as the fingerprinting has similar issues with
  moving strings.
2012-09-12 20:11:00 +03:00