summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* fix: new applet to reinstall and fix packageTimo Teras2009-08-045-20/+143
| | | | | also makes it possibly to upgrade package without adding it to top-level deps. fixes #69.
* state: fix world dependencies to be honored alwaysTimo Teras2009-08-046-39/+117
| | | | | | previously they might have been skipped on certain situations. this also fixes some other reverse dependency enforcements and implements new "pending" state for locked name.
* db: return hard error if repository opening failsTimo Teras2009-08-041-6/+10
| | | | | otherwise we can accept unsigned repositories, and install bad packages.
* del: add '-r' to remove top-level dependencies recursivelyTimo Teras2009-08-043-11/+46
| | | | | and by default just update the world, and dump a lost of packages that are not removed. fixes #47.
* archive: compile fixNatanael Copa2009-08-031-0/+1
| | | | We need the define for uint16
* db: jump through hoops to get checksums for hardlinksTimo Teras2009-07-311-18/+60
| | | | should really fix abuild-tar.
* audit: sanitize --systemTimo Teras2009-07-311-32/+79
| | | | | | make the system audit compare only installed files, instead of scanning the whole file system. also make it print only package names with -q, so reinstalling modified packages becomes easy.
* db: load cache's installed index only if cache is activeTimo Teras2009-07-311-4/+6
| | | | | other wise cache_fd points to var/lib/apk and contains the real installed db causing it to be loaded twice.
* apk: use *at instead of chdir+normal file syscallTimo Teras2009-07-3119-341/+360
| | | | | | | | this way we never change cwd, and relative filenames are always parsed consistently. this also helps filename construction in many places. this patch also changes '--root' to override location of all configuration to be in the new root. previously it depended on the file which one was used.
* io: fix corruption of big files on mmap writeTimo Teras2009-07-311-14/+13
| | | | | remember to increment destination pointer; and munmap the proper base address.
* db: allow update of untrusted indexNatanael Copa2009-07-301-1/+2
|
* verify: report missing files rather than segfaultNatanael Copa2009-07-301-0/+7
|
* db: fix checksum storing to dbTimo Teras2009-07-302-6/+9
| | | | | also take precautions in audit code if the db is missing the checksum.
* audit: protection mask for "symlinks only"Timo Teras2009-07-304-7/+27
| | | | and use it for /etc/init.d by default. fixes #99.
* io: keep static pointer to copying bufferTimo Teras2009-07-301-6/+6
| | | | so we avoid some malloc/free calls.
* io: fix mmap writing to actually workTimo Teras2009-07-302-5/+7
| | | | | | | apparently it needs to have both PROT_READ and PROT_WRITE. and it needs to be MAP_SHARED for the writing to be effective. oh, and the data needs to be preallocated with ftruncate; otherwise, one gets SIGBUS.
* db: fix protected directory handling (fixes #89)Timo Teras2009-07-291-5/+10
| | | | | | we don't want to do checksumming of existing files unless it's in a protected directory. also, we keep the original file if it's *modified*.
* io: use mmap to write archive entries to diskTimo Teras2009-07-291-11/+28
| | | | avoids some copying and system calls.
* tar: make checksumming of inner files conditionalTimo Teras2009-07-295-12/+19
| | | | | and force checksumming only when unpacking archive. otherwise it's extra computation for nothing.
* build: make install depend on main targetsTimo Teras2009-07-291-1/+1
| | | | | apparently the double colon rule dependencies affect only the specific rule-set.
* tar: don't call digest finalization twiceTimo Teras2009-07-291-0/+3
| | | | | otherwise bad things happens. avoid this be checking end of stream at the beginning of read.
* add, fetch: make handling of special options more logicalTimo Teras2009-07-242-41/+44
|
* apk: add -i/--interactive option (fixes #60)Timo Teras2009-07-243-1/+8
| | | | | and use that to figure if questions are allowed or not instead of the verbosity level.
* db: fix repository write lockingTimo Teras2009-07-241-4/+4
|
* pkg: remove implicit bb dependency when install script is presentTimo Teras2009-07-241-14/+0
| | | | this dependency is now inserted automatically by abuild.
* db: increase required verbosity for filename printsTimo Teras2009-07-241-6/+6
|
* db: remove APK_NAME_VIRTUAL flagTimo Teras2009-07-243-3/+2
| | | | | use the package 'installed_size' == 0 as a test instead for dependency only packages.
* db: create cache index with non-repository packagesTimo Teras2009-07-243-67/+122
| | | | | this enables virtual packages and files specified from command line to work on non-harddisk installs.
* archive: append .apk-new to hard link targetsNatanael Copa2009-07-231-1/+5
| | | | Otherwise will link(2) fail since it does not exist.
* index: fully process archive when reading index for signature checkTimo Teras2009-07-231-5/+5
| | | | can't cancel an index reading or we lose signature checking.
* index: more informative error messageTimo Teras2009-07-234-10/+16
| | | | when failed to load an existing index.
* apk: add --purge option (fixes #61)Timo Teras2009-07-223-1/+12
| | | | | and do not remove modified configuration files unless --purge is specified.
* audit: add --system optionTimo Teras2009-07-221-15/+21
| | | | to check system files for changes.
* signing: verify and generate identityTimo Teras2009-07-223-2/+9
| | | | | | fixes verification of non-repository packages while installing them. this is final thing needed for full signing support (fixes #46).
* add: fixes to installing non-repository packageTimo Teras2009-07-224-5/+27
| | | | | make sure cache is enabled on non-permanent rootfs setups. some optimizations and fixes too.
* pkg: cleanup the signing codeTimo Teras2009-07-225-99/+90
| | | | | smaller callback and less cases to check. also reintroduce the oneshot digest flag, hopefully correct this time.
* state: fix previous commit to show OK when everything is okTimo Teras2009-07-221-1/+1
|
* state: commit fdb changes even on errorTimo Teras2009-07-221-7/+9
| | | | we might have done already something.
* apk: allow-untrusted optionTimo Teras2009-07-223-10/+21
| | | | to not make hard error of untrusted or missing signatures
* db: honour clean-protected flag againTimo Teras2009-07-221-1/+2
|
* various: more informative error messagesTimo Teras2009-07-2211-62/+92
|
* various: misc fixesTimo Teras2009-07-227-84/+88
| | | | | | | - error codes for verification failure types - fix some fdb corruption on file migration - combine some dependency parsing code - fix versioned dependencies
* db: fix protected directory handlingTimo Teras2009-07-221-32/+13
| | | | do not overwrite untracked files.
* various: installation fixesTimo Teras2009-07-224-88/+156
| | | | | | | | - extract everything as .apk-new and overwrite only after data has been checksummed - url construction fixes (to work with simple http servers) - end of gunzip stream fixed - remove oneshot digesting flag for now as it's usage was broken
* various: fix installation of new style apksTimo Teras2009-07-213-4/+4
|
* index: read also new style index filesTimo Teras2009-07-213-29/+42
|
* pkg: fix indexing of multi-part apksTimo Teras2009-07-213-26/+32
|
* db: increase hash sizes a bitTimo Teras2009-07-211-5/+5
|
* db: don't run pre-install until control data is verifiedTimo Teras2009-07-211-8/+29
| | | | to make sure the scripts have not been altered.
* db: fixes to package checksumming while installing itTimo Teras2009-07-214-40/+61
|