{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":294701334,"defaultBranch":"ursa","name":"android_bionic","ownerLogin":"Project-Awaken","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-09-11T13:22:16.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/68725628?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1700194039.0","currentOid":""},"activityList":{"items":[{"before":"3d8e33eae4ba32ca0ce71237b427630d2c67bae2","after":"3e5334ae06dbdefabfdc0334a9fe9781e4a7627c","ref":"refs/heads/ursa","pushedAt":"2024-04-19T14:40:20.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"system_properties: Introduce native PropImitationHooks\n\nAllows spoofing first API and security patch level in order to pass\nSafetyNet CTS/Play Integrity on build fingerprints newer than 2018.\n\nInspired by https://github.com/chiteroman/PlayIntegrityFix\n\nChange-Id: If4dd24abe84edcf5e98d27fb5f78ee99f266b4bd","shortMessageHtmlLink":"system_properties: Introduce native PropImitationHooks"}},{"before":"04ea50cf91ab0c67f0c60e4db8222c11e2d280fa","after":"3d8e33eae4ba32ca0ce71237b427630d2c67bae2","ref":"refs/heads/ursa","pushedAt":"2024-01-01T08:32:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"linker: Add support for dynamic SHIM libraries\n\nAuthor: Christopher R. Palmer \nDate: Tue Nov 3 16:44:44 2015 -0500\n\n linker: Add support for dynamic \"shim\" libs\n\n Add a new environment variable\n\n LD_SHIM_LIBS\n\n that is a colon (\":\") separated list of vertical bar (\"|\") separated pairs.\n The pairs are the name for a soinfo reference (executable or shared library)\n followed by the name of the shim library to load. For example:\n\n LD_SHIM_LIBS=rmt_storage|libshim_ioprio.so:/system/lib/libicuuv.so|libshim_icu53.so\n\n will instruct the linker to load the dynamic library libshim_ioprio.so\n whenver rmt_storage is executed [*] and will load libshim_icu53.so whenever\n any executable or other shared library links against /system/lib/libicuuv.so.\n\n There are no restrictions against circular references. In this example,\n libshim_icu53.so can link against libicuuv.so which provides a simple and\n convenient means of adding compatibility symbols.\n\n [*] Note that the absolute path is not available to the linker and therefore\n using the name of executables does depend on the invocation and therefore\n should only be used if absolutely necessary. That is, running\n /system/bin/rmt_storage would not load any shim libs in this example because\n it does not match the name of the invocation of the command.\n\n If you have trouble determining the sonames being loaded, you can also set\n the environment variable LD_DEBUG=1 which will cause additional information\n to be logged to help trace the detection of the shim libs.\n\n Change-Id: I0ef80fa466167f7bcb7dac90842bef1c3cf879b6\n\nAuthor: Christopher R. Palmer \nDate: Sun Nov 15 14:26:32 2015 -0500\n\n linker: Fix the fact that shim libs do not properly call constructors\n\n Change-Id: I34333e13443a154e675b853fa41442351bc4243a\n\nAuthor: Christopher R. Palmer \nDate: Tue Dec 1 07:10:36 2015 -0500\n\n linker: Don't try to walk the g_active_shim_libs when doing dlsym\n\n This is a bug in the original shim_lib implementation which was\n doing the shim lib resolution both when loading the libraries\n and when doing the dynamic symbol resolution.\n\n Change-Id: Ib2df0498cf551b3bbd37d7c351410b9908eb1795\n\nAuthor: Christopher R. Palmer \nDate: Sun Nov 29 08:28:10 2015 -0500\n\n linker: Reset the active shim libs each time we do a dlopen\n\n We use the active libs to avoid recursively trying to load the\n same library:\n\n A -> shimlibs add B -> depends on A -> shimlibs add B -> ...\n\n However, when we repeatedly dlopen the same library we need\n to reset the active shim libs to avoid failing to add B the\n second time we dlopen A.\n\n Change-Id: I27580e3d6a53858e8bca025d6c85f981cffbea06\n\nAuthor: Danny Baumann \nDate: Fri Dec 11 10:29:16 2015 +0100\n\n Make shim lib load failure non-fatal.\n\n Instead, print an appropriate warning message. Aborting symbol\n resolution on shim lib load failure leads to weird symbol lookup\n failures, because symbols in libraries referenced after the one loading\n the shim won't be loaded anymore without a log message stating why that\n happened.\n\n Change-Id: Ic3ad7095ddae7ea1039cb6a18603d5cde8a16143\n\nAuthor: Christopher R. Palmer \nDate: Sat Dec 12 06:10:09 2015 -0500\n\n bionic: Do not allow LD_SHIM_LIBS for setuid executables\n\n That's really not safe...\n\n Change-Id: If79af951830966fc21812cd0f60a8998a752a941\n\nAuthor: Christopher R. Palmer \nDate: Sun Feb 14 11:38:44 2016 -0500\n\n bionic: linker: Load shim libs *before* the self-linked libs\n\n By loading them earlier, this allows us to override a symbol in\n a library that is being directly linked.\n\n I believe this explains why some people have had problems shimming\n one lib but when the changet he shim to be against a different\n lib it magically works.\n\n It also makes it possible to override some symbols that were\n nearly impossible to override before this change. For example, it is\n pretty much impossible to override a symbol in libutils without\n this change because it's loaded almost everywhere so no matter\n where you try to place the shimming, it will be too late and\n the other symbol will have priority.\n\n In particularly, this is necessary to be able to correctly\n shim the VectorImpl symbols for dlx.\n\n Change-Id: I461ca416bc288e28035352da00fde5f34f8d9ffa\n\nAuthor: Chirayu Desai \nDate: Thu Aug 25 19:02:41 2016 +0530\n\n linker: Update find_library call for shimlibs\n\n commits 0cdef7e7f3c6837b56a969120d9098463d1df8d8\n \"Respect caller DT_RUNPATH in dlopen().\"\n and 42d5fcb9f494eb45de3b6bf759f4a18076e84728\n \"Introducing linker namespaces\"\n added new arguments to find_library, add them here.\n\n Change-Id: I8f35a45b00d14f8b2ce01a0a96d2dc7759be04a6\n\nAuthor: Chippa-a \nDate: Sat Aug 27 14:56:30 2016 +0200\n\n linker: Update LD_SHIM_LIBS parser function\n\n * Upgrade the code using the same changes as\n 42d5fcb9f494eb45de3b6bf759f4a18076e84728\n bda20e78f0f314dbbf0f0bbcf0740cf2d6a4b85e\n\n Change-Id: Ic8be0871945bd9feccd0f94a6770f3cc78a70a0f\n\nAuthor: Danny Baumann \nDate: Wed Sep 7 16:54:06 2016 +0200\n\n Inject shim libs as if they were DT_NEEDED.\n\n The previous separate approach had one flaw: If the shim lib requires\n another lib that's already loaded, find_library_internal() would return\n the previously loaded copy, but the later load action would fail as the\n ELF reader map of the initial loading round was already discarded and\n thus a new ElfReader instance for the soinfo instance was created, which\n didn't know about the previous reading/loading state.\n\n Change-Id: Ib224dbd35d114197097e3dee14a077cc9130fedb\n\nAuthor: jrior001 \nDate: Fri Oct 7 19:36:51 2016 -0400\n\n linker: load shims prior to DT_NEEDED check\n\n This allows shims to override existing symbols, not just\n inject new symbols.\n\n Change-Id: Ib9216bcc651d8d38999c593babb94d76dc1dbc95\n\nAuthor: Adrian DC \nDate: Sat, 8 Apr 2017 22:40:01 +0200\n\n * Adapt to latest AOSP Oreo bionic linker changes\n * Additional header to avoid unused function\n\n Change-Id: Ib9216bcc651d8d38999c593babb94d76dc1dbc95\n\nAuthor: Paul Keith \nDate: Thu Feb 15 21:57:33 2018 +0100\n\n linker: Move shims to TARGET_LD_SHIM_LIBS\n\n * To reduce security exposure, let's set this at compile time,\n and block off all the code unless the board flag is set\n\n Change-Id: Ieec5f5d9e0f39a798fd48eae037ecffe9502474c\n\nAuthor: Nich \nDate: Fri Jun 8 09:48:17 2018 +0800\n\n linker: Provide soinfo path of the shimmed binary\n\n This is a forward port of part of the original change that was missed out\n since the initial port of the shim logic to O.\n\n Change-Id: I1f7ff98472cfef5cb2d2bcb303082784898cd0c6\n\nAuthor: Nich \nDate: Tue Jun 5 13:36:43 2018 +0800\n\n linker: Remove unused find_libraries declaration\n\n commit \"Inject shim libs as if they were DT_NEEDED.\" removed references\n to the forward declaration.\n\n Change-Id: I5f1aaa3a96f2af3edef07d4ea4e204b586424631\n\nAuthor: Nich \nDate: Sun Jun 10 00:45:51 2018 +0800\n\n linker: Make shim reference path absolute\n\n This way, we can filter out non-existent binaries, and ensure we get\n its absolute path before matching with get_realpath(). This for one\n allows the use of symlinks in TARGET_LD_SHIM_LIBS.\n\n Change-Id: I823815271b3257965534b6b87d8ea36ffb68bc08\n\nAuthor: Nich \nDate: Fri Jun 15 03:59:05 2018 +0800\n\n linker: Ensure active matching pairs\n\n Change-Id: I54c666b4560dbfb40839b0bf9132a7fd8d3ed2dd\n\nAuthor: Nich \nDate: Thu Jun 21 01:58:10 2018 +0800\n\n linker: Don't involve shim in for_each_dt_needed\n\n for_each_dt_needed may have other usages that shouldn't involve the\n shim, for example, in the unloading of soinfos.\n\n Change-Id: Id38de183d90c3f707767bdca032a5ea2bc82fde8\n\nAuthor: Jiyong Park \nDate: Fri Jan 25 18:18:01 2019 +0900\n\n Call realpath(3) only when the path is accessible for read\n\n Suppress the SELinux denial log spam by not calling realpath(3) when the\n path does not exist or is not accessible for read, and then not auditing\n access(2) failure.\n\n Change-Id: I729ecb8ea0bb581069eb849bae7cd28e6ab636cc\n\nChange-Id: Ic3ad7095ddae7ea1039cb6a18603d5cde8a16152\nSigned-off-by: Wang Han <416810799@qq.com>","shortMessageHtmlLink":"linker: Add support for dynamic SHIM libraries"}},{"before":"bda26c60e253c8e528375a3aa2c1b5bf4ae0c06b","after":"04ea50cf91ab0c67f0c60e4db8222c11e2d280fa","ref":"refs/heads/ursa","pushedAt":"2024-01-01T08:22:05.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"system_properties: Introduce native PropImitationHooks\n\nAllows spoofing first API and security patch level in order to pass\nSafetyNet CTS/Play Integrity on build fingerprints newer than 2018.\n\nInspired by https://github.com/chiteroman/PlayIntegrityFix\n\nChange-Id: If4dd24abe84edcf5e98d27fb5f78ee99f266b4bd","shortMessageHtmlLink":"system_properties: Introduce native PropImitationHooks"}},{"before":"bf09eedd08e77486ad3c2d41f06246c048872c36","after":"bda26c60e253c8e528375a3aa2c1b5bf4ae0c06b","ref":"refs/heads/ursa","pushedAt":"2023-11-22T14:00:34.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"Add ability to build scudo-free 32-bit libc variant.\n\nScudo seems to have issues with camera blobs,\nwhich also the case with google devices.\nhttps://android-review.googlesource.com/q/topic:%22disable-camera24-memory-mitigations%22+(status:open%20OR%20status:merged)\nThese changes are applied upstream and needed much more\ncommits in various components which makes it difficult to backport.\n\nTherefore add option to disable scudo only for 32 bit components,\nlike camera modules.\n\nChange-Id: Ie4e62477b0801413827007c511e547b12ea2f46d","shortMessageHtmlLink":"Add ability to build scudo-free 32-bit libc variant."}},{"before":"e4df46f213d8d363017dce7ded5d1f2159614425","after":"bf09eedd08e77486ad3c2d41f06246c048872c36","ref":"refs/heads/ursa","pushedAt":"2023-11-22T13:36:29.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"libc: libstdc++: Rename vendor variant to libstdc++_vendor\n\n* In Android 14, This library got listed on /vendor/etc/linker.config.pb,\n which is duplicated with /system/etc/linker.config.pb, as a result\n linkerconfig fails and stops the entire system from booting.\n\n[ 5.840677] DEBUG: Abort message: 'duplicate: libstdc++.so is provided by default and system in [vendor]'\n\nChange-Id: Ib6eee48de87100c2fb0dd765d57ee95d3159c4ef","shortMessageHtmlLink":"libc: libstdc++: Rename vendor variant to libstdc++_vendor"}},{"before":null,"after":"e4df46f213d8d363017dce7ded5d1f2159614425","ref":"refs/heads/ursa","pushedAt":"2023-11-17T04:07:19.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"[coastguard skipped] Merge sparse cherrypicks from sparse-10502572-L39700000962039696 into udc-release.\n\nCOASTGUARD_SKIP: If0736e504928641c85934eae4d298f14e711116c\nCOASTGUARD_SKIP: Ia90e3f84f6772d746c8707476e9ca2de19f17aec\nCOASTGUARD_SKIP: If7e9e5f99728c2f3a18b08346b4cf3449132f920\n\nChange-Id: Icf1c83901eb155ac0df483d2e477baa10961bc6a","shortMessageHtmlLink":"[coastguard skipped] Merge sparse cherrypicks from sparse-10502572-L3…"}},{"before":"e4a8b607fea126341589086a9773d7ff5119fa46","after":"5f3d0eeaa05479dc399d0ba9101327ea4000feaf","ref":"refs/heads/triton","pushedAt":"2023-07-30T10:08:36.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"Make tmpfile() respect $TMPDIR.\n\nContrary to the old comment, POSIX says nothing about whether or not\ntmpfile() respects $TMPDIR, and it's significantly more useful on\nAndroid if it does (because there's no shared /tmp that everyone can\nwrite to).\n\nBug: https://issuetracker.google.com/36991167\nTest: treehugger\nChange-Id: I3cc45adff167420f100c8ed1c63cba1ea67e9f70","shortMessageHtmlLink":"Make tmpfile() respect $TMPDIR."}},{"before":"73b7b97c3773ea9ef0815891e8f733aa674595c4","after":"e4a8b607fea126341589086a9773d7ff5119fa46","ref":"refs/heads/triton","pushedAt":"2023-07-06T03:35:30.000Z","pushType":"push","commitsCount":122,"pusher":{"login":"PainKiller3","name":"Ninad Patil","path":"/PainKiller3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/18658422?s=80&v=4"},"commit":{"message":"Merge tag 'android-13.0.0_r61' into triton\nAndroid 13.0.0 release 61\n\n# -----BEGIN PGP SIGNATURE-----\n#\n# iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCZKXIrwAKCRDorT+BmrEO\n# ePdaAJ9H6iBdOyx5QRd4OCuBDcs7ybe1bACcC3HZnlVcM5f/G0d9UXh3cb2w4Gw=\n# =d0eq\n# -----END PGP SIGNATURE-----\n# gpg: Signature made Thu 06 Jul 2023 01:16:55 AM IST\n# gpg: using DSA key 4340D13570EF945E83810964E8AD3F819AB10E78\n# gpg: Can't check signature: No public key\n\n* tag 'android-13.0.0_r61' of https://android.googlesource.com/platform/bionic:\n Extend bionic-unit-tests timeout.\n Disable MemtagNoteTest#SEGV for native bridge\n Fix-up for change in pwd/grp ids for PRNG seeder daemon\n stack_protector_DeathTest#modify_stack_protector: avoid flake.\n mntent_test: don't assume /proc isn't the first mount.\n Fix unistd.exec_argv0_null for new kernels.\n Fix unistd.exec_argv0_null for new kernels.\n Fix unistd.exec_argv0_null for new kernels.\n Regression test for scudo crash in resizeTaggedChunk.\n Skip the malloc_slack test on native bridge.\n Skip pthread_leak* tests with native_bridge\n Skip MTE tests with native_bridge\n Fix possible issue with cfi_basic test.\n Skip android_unsafe_frame_pointer_chase.pthread with native bridge\n Skip pthread.pthread_create__mmap_failures with native_bridge\n Add util to skip tests with native_bridge\n Remove stack address check in cfi_basic test.\n Fix linker path for emulated architecture\n Fix Bionic dlfcn.dladdr_libc test case for 64bit binary translations\n Stop executing if skip occurs.","shortMessageHtmlLink":"Merge tag 'android-13.0.0_r61' into triton"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAENUPKvAA","startCursor":null,"endCursor":null}},"title":"Activity · Project-Awaken/android_bionic"}