mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-12-12 01:14:22 -05:00
14/19/20: November 2024 ASB Picks
Signed-off-by: Tavi <tavi@divested.dev>
This commit is contained in:
parent
5a8d90d2b1
commit
a245234db2
48
Patches/LineageOS-14.1/android_external_skia/407794.patch
Normal file
48
Patches/LineageOS-14.1/android_external_skia/407794.patch
Normal file
@ -0,0 +1,48 @@
|
||||
From 261d6dc3a3fd7b094928a00e8f413539ecda097a Mon Sep 17 00:00:00 2001
|
||||
From: Brian Osman <brianosman@google.com>
|
||||
Date: Tue, 27 Aug 2024 14:22:52 -0400
|
||||
Subject: [PATCH] RESTRICT AUTOMERGE: Avoid potential overflow when allocating
|
||||
3D mask from emboss filter
|
||||
|
||||
Note: the original fix landed after
|
||||
Iac8b937e516dbfbbcefef54360dd5b7300bacb67 introduced SkMaskBuilder, so
|
||||
this cherry-pick had to be tweaked to avoid conflicts. Unfortuantely
|
||||
that means we need RESTRICT AUTOMERGE to prevent this modified version
|
||||
from flowing through API boundaries into VIC, and we need to manually
|
||||
cherry-pick it to each API level.
|
||||
|
||||
Bug: 344620577
|
||||
Test: N/A -- unclear if even reachable
|
||||
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/893738
|
||||
Commit-Queue: Brian Osman <brianosman@google.com>
|
||||
Reviewed-by: Ben Wagner <bungeman@google.com>
|
||||
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:2bc38734eec777bf2574d4b38a7fd4fc05f0ecde)
|
||||
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:bd6b1b730157b35457c9dbdb3bbf15ede15f6ba7)
|
||||
Merged-In: Ia35860371d45120baca63238e77faa5c0eb25d51
|
||||
Change-Id: Ia35860371d45120baca63238e77faa5c0eb25d51
|
||||
---
|
||||
src/effects/SkEmbossMaskFilter.cpp | 10 ++++++----
|
||||
1 file changed, 6 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/effects/SkEmbossMaskFilter.cpp b/src/effects/SkEmbossMaskFilter.cpp
|
||||
index 64afa49447d..f0e97dd1d37 100644
|
||||
--- a/src/effects/SkEmbossMaskFilter.cpp
|
||||
+++ b/src/effects/SkEmbossMaskFilter.cpp
|
||||
@@ -95,11 +95,13 @@ bool SkEmbossMaskFilter::filterMask(SkMask* dst, const SkMask& src,
|
||||
|
||||
{
|
||||
uint8_t* alphaPlane = dst->fImage;
|
||||
- size_t planeSize = dst->computeImageSize();
|
||||
- if (0 == planeSize) {
|
||||
- return false; // too big to allocate, abort
|
||||
+ size_t totalSize = dst->computeTotalImageSize();
|
||||
+ if (totalSize == 0) {
|
||||
+ return false; // too big to allocate, abort
|
||||
}
|
||||
- dst->fImage = SkMask::AllocImage(planeSize * 3);
|
||||
+ size_t planeSize = dst->computeImageSize();
|
||||
+ SkASSERT(planeSize != 0); // if totalSize didn't overflow, this can't either
|
||||
+ dst->fImage = SkMask::AllocImage(totalSize);
|
||||
memcpy(dst->fImage, alphaPlane, planeSize);
|
||||
SkMask::FreeImage(alphaPlane);
|
||||
}
|
37
Patches/LineageOS-14.1/android_frameworks_base/407791.patch
Normal file
37
Patches/LineageOS-14.1/android_frameworks_base/407791.patch
Normal file
@ -0,0 +1,37 @@
|
||||
From 90cdc60d6b846c5f07556e350c108b937c809fd6 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Dementyev <dementyev@google.com>
|
||||
Date: Tue, 2 Jul 2024 11:02:07 -0700
|
||||
Subject: [PATCH] [BACKPORT] Remove authenticator data if it was disabled.
|
||||
|
||||
Test: manual
|
||||
Bug: 343440463
|
||||
Flag: EXEMPT bugfix
|
||||
(cherry picked from commit ddfc078af7e89641360b896f99af23a6b371b847)
|
||||
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:cd372149336675c82e032fe2613d1dc8b03122f6)
|
||||
Merged-In: I36bd6bf101da03c9c30a6d3c0080b801e7898bc6
|
||||
Change-Id: I36bd6bf101da03c9c30a6d3c0080b801e7898bc6
|
||||
---
|
||||
.../android/server/accounts/AccountManagerService.java | 10 ++++++++++
|
||||
1 file changed, 10 insertions(+)
|
||||
|
||||
diff --git a/services/core/java/com/android/server/accounts/AccountManagerService.java b/services/core/java/com/android/server/accounts/AccountManagerService.java
|
||||
index 126955add01a9..9e8f1708b8520 100644
|
||||
--- a/services/core/java/com/android/server/accounts/AccountManagerService.java
|
||||
+++ b/services/core/java/com/android/server/accounts/AccountManagerService.java
|
||||
@@ -633,6 +633,16 @@ private void validateAccountsInternal(
|
||||
META_KEY_FOR_AUTHENTICATOR_UID_FOR_TYPE_PREFIX + type,
|
||||
uid}
|
||||
);
|
||||
+ } else if (knownUid != null && !uid.equals(knownUid.toString())) {
|
||||
+ Slog.w(TAG, "authenticator no longer exist for type " + type);
|
||||
+ obsoleteAuthType.add(type);
|
||||
+ db.delete(
|
||||
+ TABLE_META,
|
||||
+ META_KEY + "=? AND " + META_VALUE + "=?",
|
||||
+ new String[] {
|
||||
+ META_KEY_FOR_AUTHENTICATOR_UID_FOR_TYPE_PREFIX + type,
|
||||
+ uid}
|
||||
+ );
|
||||
}
|
||||
}
|
||||
}
|
84
Patches/LineageOS-14.1/android_frameworks_base/407792.patch
Normal file
84
Patches/LineageOS-14.1/android_frameworks_base/407792.patch
Normal file
@ -0,0 +1,84 @@
|
||||
From 4f133c1c3c9b219d070046e575cc3a8074788cef Mon Sep 17 00:00:00 2001
|
||||
From: Ben Murdoch <benm@google.com>
|
||||
Date: Fri, 30 Aug 2024 17:22:59 +0000
|
||||
Subject: [PATCH] RESTRICT AUTOMERGE Clear app-provided shortcut icons
|
||||
|
||||
When displaying keyboard shortcuts provided by an app, clear
|
||||
any icon that may have been set (this is only possible via
|
||||
reflection, and is not a intended for usage outside of the system).
|
||||
|
||||
Bug: 331180422
|
||||
Test: Verify on device
|
||||
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:8dc5ed150f2c0e08870f656f3170f304ba9ad260)
|
||||
Merged-In: If7e291eb2254c3cbec23673c65e7477e6ad45b09
|
||||
Change-Id: If7e291eb2254c3cbec23673c65e7477e6ad45b09
|
||||
|
||||
Change-Id: I03cd38e124f393f950c520f8aa9619c42a755ebb
|
||||
---
|
||||
core/java/android/view/KeyboardShortcutInfo.java | 13 +++++++++++--
|
||||
.../systemui/statusbar/KeyboardShortcuts.java | 9 +++++++++
|
||||
2 files changed, 20 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/core/java/android/view/KeyboardShortcutInfo.java b/core/java/android/view/KeyboardShortcutInfo.java
|
||||
index a9f2699a6bb16..b3965fde115b3 100644
|
||||
--- a/core/java/android/view/KeyboardShortcutInfo.java
|
||||
+++ b/core/java/android/view/KeyboardShortcutInfo.java
|
||||
@@ -28,7 +28,7 @@
|
||||
*/
|
||||
public final class KeyboardShortcutInfo implements Parcelable {
|
||||
private final CharSequence mLabel;
|
||||
- private final Icon mIcon;
|
||||
+ private Icon mIcon;
|
||||
private final char mBaseCharacter;
|
||||
private final int mKeycode;
|
||||
private final int mModifiers;
|
||||
@@ -114,6 +114,15 @@ public Icon getIcon() {
|
||||
return mIcon;
|
||||
}
|
||||
|
||||
+ /**
|
||||
+ * Removes an icon that was previously set.
|
||||
+ *
|
||||
+ * @hide
|
||||
+ */
|
||||
+ public void clearIcon() {
|
||||
+ mIcon = null;
|
||||
+ }
|
||||
+
|
||||
/**
|
||||
* Returns the base keycode that, combined with the modifiers, triggers this shortcut. If the
|
||||
* base character was set instead, returns {@link KeyEvent#KEYCODE_UNKNOWN}. Valid keycodes are
|
||||
@@ -164,4 +173,4 @@ public KeyboardShortcutInfo[] newArray(int size) {
|
||||
return new KeyboardShortcutInfo[size];
|
||||
}
|
||||
};
|
||||
-}
|
||||
\ No newline at end of file
|
||||
+}
|
||||
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java
|
||||
index 9972d0d52b05d..c3028659cdf1f 100644
|
||||
--- a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java
|
||||
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java
|
||||
@@ -362,6 +362,7 @@ private void showKeyboardShortcuts(int deviceId) {
|
||||
@Override
|
||||
public void onKeyboardShortcutsReceived(
|
||||
final List<KeyboardShortcutGroup> result) {
|
||||
+ sanitiseShortcuts(result);
|
||||
result.add(getSystemShortcuts());
|
||||
final KeyboardShortcutGroup appShortcuts = getDefaultApplicationShortcuts();
|
||||
if (appShortcuts != null) {
|
||||
@@ -372,6 +373,14 @@ public void onKeyboardShortcutsReceived(
|
||||
}, deviceId);
|
||||
}
|
||||
|
||||
+ static void sanitiseShortcuts(List<KeyboardShortcutGroup> shortcutGroups) {
|
||||
+ for (KeyboardShortcutGroup group : shortcutGroups) {
|
||||
+ for (KeyboardShortcutInfo info : group.getItems()) {
|
||||
+ info.clearIcon();
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
private void dismissKeyboardShortcuts() {
|
||||
if (mKeyboardShortcutsDialog != null) {
|
||||
mKeyboardShortcutsDialog.dismiss();
|
@ -0,0 +1,33 @@
|
||||
From 26cf73176cdffde0864cf87b9656afcc1fb8ba13 Mon Sep 17 00:00:00 2001
|
||||
From: Adam Bookatz <bookatz@google.com>
|
||||
Date: Mon, 22 Jul 2024 17:03:12 -0700
|
||||
Subject: [PATCH] startActivityForResult with new Intent
|
||||
|
||||
Rather than use the raw Intent, we make a copy of it. See bug.
|
||||
|
||||
Bug: 330722900
|
||||
Flag: EXEMPT bugfix
|
||||
Test: manual
|
||||
Test: atest com.android.settings.users.UserSettingsTest
|
||||
com.android.settings.users.UserDetailsSettingsTest
|
||||
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:1189e24e47571eae86634aeaa7dc60b8fe7f4820)
|
||||
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:73210aa26773ae91f23361f51eb00399643726a8)
|
||||
Merged-In: Id74e4b7ae261f2916eedaef04a679f83409a4b67
|
||||
Change-Id: Id74e4b7ae261f2916eedaef04a679f83409a4b67
|
||||
---
|
||||
src/com/android/settings/users/AppRestrictionsFragment.java | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/com/android/settings/users/AppRestrictionsFragment.java b/src/com/android/settings/users/AppRestrictionsFragment.java
|
||||
index f72bf9e97bf..9971d103fe2 100644
|
||||
--- a/src/com/android/settings/users/AppRestrictionsFragment.java
|
||||
+++ b/src/com/android/settings/users/AppRestrictionsFragment.java
|
||||
@@ -638,7 +638,7 @@ public void onReceive(Context context, Intent intent) {
|
||||
int requestCode = generateCustomActivityRequestCode(
|
||||
RestrictionsResultReceiver.this.preference);
|
||||
AppRestrictionsFragment.this.startActivityForResult(
|
||||
- restrictionsIntent, requestCode);
|
||||
+ new Intent(restrictionsIntent), requestCode);
|
||||
}
|
||||
}
|
||||
}
|
@ -1 +1 @@
|
||||
Subproject commit 9ed056697c2f924eaf069f6e72b3a978f0a458db
|
||||
Subproject commit ee95ec7291d107f711e19226c350daa0118767f0
|
@ -82,7 +82,7 @@ sed -i '50i$(my_res_package): PRIVATE_AAPT_FLAGS += --auto-add-overlay' core/aap
|
||||
sed -i '296iLOCAL_AAPT_FLAGS += --auto-add-overlay' core/package_internal.mk;
|
||||
awk -i inplace '!/Email/' target/product/core.mk; #Remove Email
|
||||
awk -i inplace '!/Exchange2/' target/product/core.mk;
|
||||
sed -i 's/2021-06-05/2024-10-05/' core/version_defaults.mk; #Bump Security String #n-asb-2024-10 #XXX
|
||||
sed -i 's/2021-06-05/2024-11-05/' core/version_defaults.mk; #Bump Security String #n-asb-2024-11 #XXX
|
||||
fi;
|
||||
|
||||
if enterAndClear "device/qcom/sepolicy"; then
|
||||
@ -176,6 +176,10 @@ if enterAndClear "external/libxml2"; then
|
||||
applyPatch "$DOS_PATCHES/android_external_libxml2/367634.patch"; #n-asb-2023-10 malloc-fail: Fix OOB read after xmlRegGetCounter
|
||||
fi;
|
||||
|
||||
if enterAndClear "external/skia"; then
|
||||
applyPatch "$DOS_PATCHES/android_external_skia/351107.patch"; #n-asb-2024-11 Avoid potential overflow when allocating 3D mask from emboss filter
|
||||
fi;
|
||||
|
||||
if enterAndClear "external/sonivox"; then
|
||||
applyPatch "$DOS_PATCHES/android_external_sonivox/317038.patch"; #n-asb-2021-10 Fix global buffer overflow in WT_InterpolateNoLoop
|
||||
applyPatch "$DOS_PATCHES_COMMON/android_external_sonivox/391896.patch"; #n-asb-2024-05 Fix buffer overrun in eas_wtengine
|
||||
@ -300,6 +304,8 @@ applyPatch "$DOS_PATCHES/android_frameworks_base/399269.patch"; #n-asb-2024-08 R
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/400926.patch"; #n-asb-2024-09 Sanitized uri scheme by removing scheme delimiter
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/405038.patch"; #n-asb-2024-10 Fail parseUri if end is missing
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/405039.patch"; #n-asb-2024-10 Update AccountManagerService checkKeyIntent.
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/407791.patch"; #n-asb-2024-11 Remove authenticator data if it was disabled.
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/407792.patch"; #n-asb-2024-11 Clear app-provided shortcut icons
|
||||
git revert --no-edit 0326bb5e41219cf502727c3aa44ebf2daa19a5b3; #Re-enable doze on devices without gms
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/248599.patch"; #Make SET_TIME_ZONE permission match SET_TIME (AOSP)
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/0001-Reduced_Resolution.patch"; #Allow reducing resolution to save power TODO: Add 800x480 (DivestOS)
|
||||
@ -481,6 +487,7 @@ applyPatch "$DOS_PATCHES/android_packages_apps_Settings/345679.patch"; #n-asb-20
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Settings/358738.patch"; #n-asb-2023-06 Convert argument to intent in AddAccountSettings.
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Settings/367639.patch"; #n-asb-2023-10 Restrict ApnEditor settings
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Settings/400927.patch"; #n-asb-2024-09 Limit wifi item edit content's max length to 500
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Settings/407793.patch"; #n-asb-2024-11 startActivityForResult with new Intent
|
||||
git revert --no-edit 2ebe6058c546194a301c1fd22963d6be4adbf961; #Don't hide OEM unlock
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Settings/201113.patch"; #wifi: Add world regulatory domain country code (syphyr)
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Settings/0001-Captive_Portal_Toggle.patch"; #Add option to disable captive portal checks (MSe1969)
|
||||
|
@ -68,7 +68,7 @@ patchWorkspaceReal() {
|
||||
|
||||
source build/envsetup.sh;
|
||||
#repopick -ift twelve-bt-sbc-hd-dualchannel;
|
||||
repopick -it S_asb_2024-10;
|
||||
repopick -it S_asb_2024-11;
|
||||
|
||||
sh "$DOS_SCRIPTS/Patch.sh";
|
||||
sh "$DOS_SCRIPTS_COMMON/Enable_Verity.sh";
|
||||
|
@ -95,7 +95,7 @@ applyPatch "$DOS_PATCHES_COMMON/android_build/0001-verity-openssl3.patch"; #Fix
|
||||
sed -i '75i$(my_res_package): PRIVATE_AAPT_FLAGS += --auto-add-overlay' core/aapt2.mk; #Enable auto-add-overlay for packages, this allows the vendor overlay to easily work across all branches.
|
||||
awk -i inplace '!/updatable_apex.mk/' target/product/generic_system.mk; #Disable APEX
|
||||
sed -i 's/PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION := 23/PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION := 28/' core/version_defaults.mk; #Set the minimum supported target SDK to Pie (GrapheneOS)
|
||||
sed -i 's/2024-09-05/2024-10-05/' core/version_defaults.mk; #Bump Security String #S_asb_2024-10
|
||||
sed -i 's/2024-10-05/2024-11-05/' core/version_defaults.mk; #Bump Security String #S_asb_2024-11
|
||||
fi;
|
||||
|
||||
if enterAndClear "build/soong"; then
|
||||
@ -133,6 +133,10 @@ sed -i '/LOCAL_MODULE/s/Camera/SecureCamera/' Android.mk; #Change module name
|
||||
sed -i '11iLOCAL_OVERRIDES_PACKAGES := Camera Camera2 LegacyCamera Snap OpenCamera' Android.mk; #Replace the others
|
||||
fi;
|
||||
|
||||
if enterAndClear "external/skia"; then
|
||||
git fetch https://github.com/LineageOS/android_external_skia refs/changes/54/408154/1 && git cherry-pick FETCH_HEAD; #S_asb_2024-11 Avoid potential overflow when allocating 3D mask from emboss filter
|
||||
fi;
|
||||
|
||||
if enterAndClear "frameworks/base"; then
|
||||
git revert --no-edit 83fe523914728a3674debba17a6019cb74803045; #Reverts "Allow signature spoofing for microG Companion/Services" in favor of below patch
|
||||
applyPatch "$DOS_PATCHES/android_frameworks_base/344888-backport.patch"; #fixup! fw/b: Add support for allowing/disallowing apps on cellular, vpn and wifi networks (CalyxOS)
|
||||
|
@ -162,7 +162,8 @@ patchWorkspaceReal() {
|
||||
verifyAllPlatformTags;
|
||||
gpgVerifyGitHead "$DOS_BUILD_BASE/external/chromium-webview";
|
||||
|
||||
#source build/envsetup.sh;
|
||||
source build/envsetup.sh;
|
||||
repopick -it T_asb_2024-11;
|
||||
|
||||
sh "$DOS_SCRIPTS/Patch.sh";
|
||||
sh "$DOS_SCRIPTS_COMMON/Enable_Verity.sh";
|
||||
|
@ -125,6 +125,10 @@ sed -i 's/34359738368/2147483648/' Android.bp; #revert 48-bit address space requ
|
||||
sed -i -e '76,78d;' Android.bp; #fix compile under A13
|
||||
fi;
|
||||
|
||||
if enterAndClear "external/skia"; then
|
||||
git fetch https://github.com/LineageOS/android_external_skia refs/changes/23/408123/1 && git cherry-pick FETCH_HEAD; #T_asb_2024-11 Avoid potential overflow when allocating 3D mask from emboss filter
|
||||
fi;
|
||||
|
||||
if enterAndClear "frameworks/base"; then
|
||||
git revert --no-edit d36faad3267522c6d3ff91ba9dcca8f6274bccd1; #Reverts "JobScheduler: Respect allow-in-power-save perm" in favor of below patch
|
||||
git revert --no-edit 90d6826548189ca850d91692e71fcc1be426f453; #Reverts "Remove sensitive info from SUPL requests" in favor of below patch
|
||||
|
Loading…
Reference in New Issue
Block a user