aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* fix murmur3 hash unaligned memory accessTimo Teräs2020-02-181-29/+39
| | | | | | | - do not do unaligned accesses on non-x86 hardware - clean up the code a little bit (cherry picked from commit 3694dc5fa2660e2b241d706ec1672beb0a9c24b8)
* defines: add typeof() as it's gcc built-inTimo Teräs2020-02-181-0/+4
| | | | | | Related to MR !15 (cherry picked from commit d60477751f374a2d58dc73f64dca4ff95ea39a00)
* remove apk_time() as it is causing problems with shared objectsTimo Teräs2020-02-186-17/+10
| | | | | | | | | Instead, to make sure test mode produces same output, redefine time() for the test mode binary. Reverts parts of 0b82bcc53e60. (cherry picked from commit 45d313c51cbae20bce0789db86ba82ff79c9b202)
* remove obsolete md5.hTimo Teräs2020-02-181-60/+0
| | | | (cherry picked from commit 6fae74e1daeb59f789456dcc816b089e601809fd)
* database.c: drop GNU extension for fnmatchDrew DeVault2020-02-181-1/+1
| | | | | | The non-wildcard version of the function is case-sensitive anyway. (cherry picked from commit 7e2e440d4c7c51bff3ffb83ad3fd29d7b6088e32)
* io: remove the now unused pid association with istreamTimo Teräs2020-02-182-32/+8
| | | | (cherry picked from commit 3cd7d1e077ad945dfe789a6e2a337ec8849fc342)
* io: remove unused size parameter from bstream closeTimo Teräs2020-02-185-44/+34
| | | | (cherry picked from commit e39334e44f723b0a1d1036f354c5d8f5d0a12377)
* lua: fix build and update to lua5.3Timo Teräs2019-12-302-16/+21
| | | | Fixes #8360
* del: report non-matching names and install-if rule non-deletionTimo Teräs2019-12-293-30/+39
|
* Revert "search: remove from APK_COMMAND_GROUP_QUERY"Timo Teräs2019-12-271-0/+1
| | | | | | | This reverts commit d379edd5bf960de8089b9f2083fc6f14b79e7bba. Requested multiple times. Let's enable this for now. For v3.0, we reconsider which applets to keep and remove the ones not needed.
* db: parse tabulator as repository separator charTimo Teräs2019-12-271-0/+1
| | | | Fixes #10662
* io: use proper base struct types for method implementationsTimo Teräs2019-12-185-86/+68
|
* upgrade: implement --ignore to exclude some packages from upgradenrybowski2019-12-124-4/+22
|
* Don't unpack files to system rootFredrik Gustafsson2019-11-221-1/+5
| | | | | | | | | When unpacking a file that is in root, it got a temporary file name /.apk... however if the --root option was used it should have the name root/.apk... otherwise unpacking will fail if the user does not have write access to /. Signed-off-by: Fredrik Gustafsson <fredrigu@axis.com>
* add: always use UTC for virtual package versionsMax Rees2019-11-181-1/+1
|
* Make tests pass and introduce a memory leakFredrik Gustafsson2019-11-181-1/+1
| | | | | | | | Since 37fbafcd928c466c82c892a7868d686d710e5d07 the tests hasn't worked since a string on the stack was added as version for a virtual package. Instead create the version string on the heap and then simply leak it. A short running program as apk shouldn't need to worry about memory leaks.
* add: fix virtual package id generationTimo Teräs2019-07-021-16/+35
| | | | | | | | | | | Fixes 37fbafcd by adding more input to the hash than just second grained time stamp - collisions would happen when running apk scripted. For virtual package the hash works only as unique identifier, so try to add elements that should make it unique in most cases. Fixes #10648
* print usage and exit with error on invalid argumentsTimo Teräs2019-06-051-6/+3
| | | | | | | Add also some testing to make sure help, long help and handling of invalid arguments works as expected. Based on pull request #19 originally by Laurent Arnoud (@spk).
* fix all applets to return -ENOTSUP if it's unrecognizedTimo Teräs2019-06-055-5/+5
| | | | | | The return -1 seems to have been left over from earlier code, and could have been treated as -EPERM. This helps to fix the other command line handling that potentially require changing.
* solver: fix common dependency merging to inherit pinning and flagsTimo Teräs2019-06-051-3/+7
| | | | | | Notably this fixes occasional issues when doing upgrade with multiple versions of same packages. Without this the upgrade flag is not always propagated properly down the dependency chain.
* use fixed system time in test mode to have fixed test outputTimo Teräs2019-06-035-4/+16
| | | | fixes test suite regression from previous commit
* add: make virtual packages upgradeable (ref #9957)Timo Teräs2019-06-031-3/+12
| | | | | | | | | | | | | | | Originally the virtual packages could have dependencies added to it. However, commit b06e3b99 broke this behaviour to fix error reporting. The root cause however was that the virtual depedency package was not properly versioned. This fixes to use current date/time as the package version, and constructs the "faked" package hash from it. This effectively makes "add -t virtpkg deps.." replace the dependencies which should be the desired behaviour for "abuild deps". 'world' dependency to the generated virtual package is also now versioned to make sure it get's upgraded.
* Fix compile with glibcIan Douglas Scott2019-05-281-1/+1
|
* list: Detect orphaned packages correctlyA. Wilcox2019-05-011-2/+2
| | | | | | | | | | | BIT(1) corresponds with decimal 2, which is the first available repository. Before this fix, `apk list -O` would list every package installed from the first available repository, which is the 'system' repository on most Adélie Linux computers. After this fix, `apk list -O` correctly lists only the packages which are no longer available.
* fix strncpy bounds errorsTimo Teräs2019-02-134-4/+24
| | | | | | error: 'strncpy' specified bound 4096 equals destination size [-Werror=stringop-truncation] Based on patch by Elan Ruusamäe <glen@delfi.ee>
* include sys/sysmacros.h for makedev definitionElan Ruusamäe2019-02-132-0/+2
|
* fetch: fix error message for --recursiveNatanael Copa2019-01-101-1/+3
| | | | Give error message for `apk fetch --recursive missing`
* Revert "move --simulate to global options"Timo Teräs2018-11-151-2/+5
| | | | | | | This reverts commit 358f703b76ece639e5d3634f677e0b345b1b9f89. The short option -s conflicts info --size and fetch --stdout. Revert this for now.
* fix orphan package handling for certain provides casesTimo Teräs2018-11-121-15/+17
|
* prefer selecting packages by their primary nameTimo Teräs2018-11-123-8/+25
|
* fix package preference based on it's conflicts in --latest modeTimo Teräs2018-11-121-4/+5
| | | | remove also redundant pkg_selectable check in repair mode.
* fix short option string to be nil terminatedTimo Teräs2018-11-021-0/+1
|
* fix error reporting for virtual package additionTimo Teräs2018-11-021-1/+1
| | | | | Move addition of virtual package after the dependencies have been parsed as then the reverse dependency structers can be populated correctly.
* don't report virtual packages as maskedTimo Teräs2018-11-021-1/+1
|
* inhibit printing same 'required by' dependency multiple timesTimo Teräs2018-11-021-0/+5
| | | | | this would happen if same package matched multiple times due to multiple provided names.
* print: don't print spurious newlinesTimo Teräs2018-11-021-3/+3
|
* fix xattr hash to be sha1Timo Teräs2018-10-301-1/+1
| | | | | The hash type was accidentally changed in previous commit. Currently csum->data cannot hold longer hash, so fix the hash.
* add support for openssl 1.1Timo Teräs2018-10-268-54/+90
|
* apk: fix all_options array size off-by-oneTimo Teräs2018-10-051-1/+1
| | | | | | | | | merge_options() will write one more entry to the options table which is the end-of-table indicator. Allocate memory for it too. valgrind did not pick it up due to being in stack; changing alloca to malloc would make valgrind notice the issue too. Reported-by: Mobile Stream <info@mobile-stream.com>
* cache: support --latest and --upgrade to affect download policyTimo Teräs2018-09-251-3/+41
|
* move --simulate to global optionsTimo Teräs2018-09-251-5/+2
| | | | | there are several applets that support simulation but are not committing changes to database
* add: add --latest flag to help analyze why upgrade failsTimo Teräs2018-09-111-0/+6
|
* rework unpacking of packages and harden package file format requirementsTimo Teräs2018-09-106-105/+142
| | | | | | | | | | | | | | | | | | | A crafted .apk file could to trick apk writing unverified data to an unexpected file during temporary file creation due to bugs in handling long link target name and the way a regular file is extracted. Several hardening steps are implemented to avoid this: - the temporary file is now always first unlinked (apk thus reserved all filenames .apk.* to be it's working files) - the temporary file is after that created with O_EXCL to avoid races - the temporary file is no longer directly the archive entry name and thus directly controlled by potentially untrusted data - long file names and link target names are now rejected - hard link targets are now more rigorously checked - various additional checks added for the extraction process to error out early in case of malformed (or old legacy) file Reported-by: Max Justicz <max@justi.cz>
* apk: sanitize return valueTimo Teräs2018-09-051-0/+2
| | | | | | | | | Most applets return whatever apk_solver_commit() returns. It is the number of errors found (or negative for hard error). Sanitize the error value to not give false success exit code in the unlikely case of errors % 256 == 0. Reported-by: Max Justicz <max@justi.cz>
* prevent automatic repository index update with --no-networkNatanael Copa2018-08-211-1/+2
| | | | | | We should not update repository index when --no-network is specified. ref #9126
* archive: enable FIFO extractionJesse Young2018-08-141-2/+4
|
* prevent automatic repository index update for 'apk del'Timo Teräs2018-07-183-4/+7
| | | | ref #9063
* Invalidate id cache after script executionJussi Kukkonen2018-07-021-0/+4
| | | | | | | | | | | | | It's common for a pre-install script to do something like addgroup -S group 2>/dev/null When apk installs files after this, it sets the owner/group based on id cache but currently the id cache is stale and doesn't contain the new group at that point: instead the file will be installed with gid that the build host happened to have for that group -- on target this might mean a non-existing group or a completely different group. We can't know if the script really did modify id cache contents so make sure to reset the id cache on every script execution.
* list: fix segmentation fault with virtual packagesSören Tempel2018-07-021-3/+9
| | | | | | | | | | | | | | Virtual packages have the origin pointer set to NULL. Trying to print it using the BLOB_PRINTF macros causes a segmentation fault. Inspired by the `print_origin_name` function from `src/search.c` this commit attempts to fix it by checking whether `pkg->origin` is NULL before attempting to print it. If it is NULL the pkg name is printed instead. Since printing the pkg name requires a different format string this commit splits the printf call for printing the package line into multiple ones. The output format shouldn't have changed at all though.
* fetch: ignore conflicts when solving --recursive fetchesTimo Teräs2018-06-143-9/+25
|