summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2015-04-24allow virtual packages beginning with dot by default on tmpfs installsTimo Teräs1-3/+3
the allows update-kernel script to work on tmpfs install before cache is configured.
2015-04-24modifications for the previous commit in error message handlingTimo Teräs4-5/+8
forgot to --amend my changes
2015-04-22print.c: provide more detailed error messages if retrieving a package failsAlex Dowad2-1/+21
fetch_maperror() translates error codes returned by libfetch to our error codes. Handle those in apk_error_str(), returning error messages which advise the user of the most likely fix. A custom error code, EAPKSTALEINDEX, has been added for cases where retrieving a package fails due to a HTTP error 404 or similar. [TimoT: add also EAPKBADURL, as well as organize a bit better where the EAPKSTALEINDEX is generated]
2015-04-22io: fix compiler error by including stdint.hAlex Dowad1-0/+1
According to the C standards, uint32_t is defined in stdint.h. Presumably apk is usually built against C libraries where stdint.h is indirectly included through another header file, but this isn't the case with the version of glibc which I am using.
2015-04-17fix issue introduced in previous xattr error handling changesTimo Teräs1-2/+2
2015-04-17disable xattrs on symlinks for nowTimo Teräs2-2/+2
there's no nice syscall to manipulate xattrs with atfd and or open the symlink without dereferencing it (and having fd that we can do xattrs with)
2015-04-17make file install errors non-fatal, and xattr errors hiddenTimo Teräs5-83/+109
user xattrs on tmpfs are not supported no non-grsec kernels, and many times root fs is mounted without user_xattr. Thus to allow things to go smoothly on non-grsec kernels xattr unsupported errors are now hidden. xattrs can be fixed still now with "apk fix --xattrs"
2015-04-13fix tee io error handlingTimo Teräs2-4/+6
use ERR_PTR mechanism, and handle it at all places.
2015-04-13fix error mapping typesTimo Teräs1-1/+1
on arm char is by default unsigned, so this caused crashes as the ERR_PTR mechanism did not work as expected with unsigned types. extend the array type to be signed short explicitly.
2015-04-10update: return errors also with --quietNatanael Copa1-1/+1
fixes #4040
2015-04-08use memmove for copying buffer leftovers, as the ranges may overlapTimo Teräs1-1/+1
issue cought by fortify
2015-04-08unbreak audit after xattr supportTimo Teräs1-2/+1
2015-04-08ignore .apk-new files for overlaysTimo Teräs3-1/+12
2015-04-08make default dir/file acl implicitTimo Teräs1-2/+2
apk in alpine 3.1 already supports this optimization, but kept the database format. now is time to start using this feature.
2015-04-08audit xattrsTimo Teräs3-38/+90
ref #3027
2015-04-07update: return failure if any mirror update failedNatanael Copa3-3/+10
fixes #4040
2015-04-07commit: return failure if there are any errorsNatanael Copa1-1/+1
fixes #4019
2015-03-11calculate and store checksum of xattrsTimo Teräs5-7/+63
ref #3027
2015-03-10rename file info related functions for consistencyTimo Teräs8-17/+17
2015-03-10extract xattrs from packagesTimo Teräs3-0/+46
ref #3027
2015-03-10rework error handling for write streamsTimo Teräs4-29/+19
2015-03-10rework error handling for read streamsTimo Teräs8-42/+74
2015-02-04remove old compat. field entry from installed db handlingTimo Teräs1-1/+0
Package pinning was first implemented with 'p' tag. However, it was before any release renamed to 's', and 'p' was reserved for package provides support for which is used now.
2015-01-30remove spurious audit message from missing files with --systemTimo Teräs1-4/+2
fixes #3840
2015-01-30sort world dependencies alphabeticallyTimo Teräs1-0/+8
this makes 'lbu diff' and aaudit diffs nice when a world dependency is added or removed. sorting also makes the ordering more deterministic as the world targets constraints are always applied in the same order. test suite updated accordingly.
2015-01-30always save 'world' with line feedsTimo Teräs2-4/+1
using space was for backwards compatibility with apk-tools 2.2.2 and earlier (from January 2012)
2015-01-30remove support for old database location in /varTimo Teräs3-57/+0
the location changed in apk-tools 2.1.0 (March 2011) which was used in Alpine Linux 2.2.
2015-01-30remove reverse dependencies firstTimo Teräs1-0/+6
when removing large sets of packets, the ordering of removal was not quaranteed to honor dependencies. this fixes the removal order to be in reverse dependency order as far as possible.
2014-12-08make del, fetch, fix and info return errorsTimo Teräs8-32/+63
In case all applet arguments are packages names (that is are not including wildcards), return error if they do not match to some package.
2014-12-08fix test modeTimo Teräs1-5/+7
2014-11-03db: assign write permission to lock fileKaarle Ritvanen1-2/+2
Allows running apk as an unprivileged user, e.g. with fakeroot. Opening the lock file fails without the write permission.
2014-11-01move --simulate to commit options group and alias -s for itTimo Teräs1-5/+4
2014-11-01make 'mode, uid, gid' triplet separate atomized structTimo Teräs3-53/+68
there are only few combinations for that triplet, and they occur multiple times reducing the struct sizes a bit. make sane defaults and prepare to not write defaults to disk to reduce on-disk installed db size.
2014-11-01support extended pax header in tar extractorTimo Teräs3-38/+93
2014-10-13db: improve and unify fdb error messagesTimo Teräs1-27/+13
2014-10-09db: unconditionally refresh index with --forceTimo Teräs1-1/+3
2014-10-08rework option parsing to have a group structureTimo Teräs14-319/+390
Add also a new 'commit' group that is the common options for all applets that can commit package changes.
2014-10-08url: fix double free from late libfetch changesTimo Teräs1-1/+0
2014-10-08io,url,db: support for if-modified-sinceTimo Teräs6-53/+81
2014-10-08url: use libfetch to retrieve http/https/ftp filesTimo Teräs3-56/+51
2014-10-07db: fix crash if unable to download cache itemTimo Teräs1-2/+3
fixes #3371
2014-10-07io: fix few error path leaksTimo Teräs2-6/+9
2014-10-07db: rework directory permission handlingTimo Teräs4-58/+88
Apk used to reset directory permissions always, but this is undesirable if user has modified the permissions - especially during tmpfs boot. Though, it is desirable to update the permissions when packaging has changed permissions, or a new package is installed and the merged permission mask / owner changes. Thus the new code updates the permissions only if: 1) We are booting and directory is not in apkovl 2) The directory is modified by a package install/remove/upgrade 3) The filesystem directory permission matched database Additionally "apk fix --directory-permissions" can be used to reset all directory permissions to the database defaults. Fixes #2966
2014-10-06solver: enforce conflicts during upgrades and new pkg installsTimo Teräs1-2/+11
This makes sure any conflicted packages will be removed first. Useful if we know there are conflicting files, and want to avoid adding potentially harmful replaces line. Add a test case for this too.
2014-10-06cache: delete more aggressively unneeded cached filesTimo Teräs2-6/+12
Also if --purge is specified delete all uninstalled packages. Fixes #2889
2014-10-06db: use per-pkg architecture (if available) to form download urlTimo Teräs1-2/+6
Allows one arch index files to refer to other arch packages. Mostly useful with noarch packages, but could be used e.g. to ship build with some of packages optimized for specific cpu generation and share most packages with the standard build.
2014-10-06info who-owns: print symlink target owner as a fallbackTimo Teräs1-3/+15
busybox trigger creates symlinks to itself. This helps user to see where these come from.
2014-10-06index: fix warning about package names without providerTimo Teräs3-9/+11
It's real only if there's a package with actual dependency (conflicts and install_if dependencies do not count).
2014-05-19solver: fix installation of non-repository packages during tmpfs bootTimo Teräs4-3/+13
allow packages in the cache's installed to be selected for installation by the solver. add test case for the issue.
2014-05-19test: improve loading of repositories, fix broken install-if testTimo Teräs1-3/+15