commit | 69456869a17bff5052fecfba127faf0d9af52a5d | [log] [tgz] |
---|---|---|
author | Aishwarya Mallampati <amallampati@google.com> | Wed May 10 21:54:43 2023 +0000 |
committer | Kevin F. Haggerty <haggertk@lineageos.org> | Mon Aug 07 19:00:31 2023 -0600 |
tree | 606e7a6b40d1058bec2b45a732f8b0589a763dd4 | |
parent | 10f0ead36fe9a42df43863bf3fd4c0ec67d5240f [diff] |
Update file permissions using canonical path Bug: 264880895 Bug: 264880689 Test: atest android.telephonyprovider.cts.MmsPartTest atest CtsTelephonyTestCases Sanity check - sending and receiving sms and mms manually (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:6743638a096c32627f398efd2ea78f08b8a2db8c) Merged-In: I8dd888ea31ec07c9f0de38eb8e8170d3ed255686 Change-Id: I8dd888ea31ec07c9f0de38eb8e8170d3ed255686
diff --git a/src/com/android/providers/telephony/MmsProvider.java b/src/com/android/providers/telephony/MmsProvider.java index 1e33313..fade7ce 100644 --- a/src/com/android/providers/telephony/MmsProvider.java +++ b/src/com/android/providers/telephony/MmsProvider.java
@@ -823,15 +823,16 @@ uri.getPathSegments().get(1); try { + File canonicalFile = new File(path).getCanonicalFile(); String partsDirPath = getContext().getDir(PARTS_DIR_NAME, 0).getCanonicalPath(); - if (!new File(path).getCanonicalPath().startsWith(partsDirPath)) { + if (!canonicalFile.getPath().startsWith(partsDirPath + '/')) { EventLog.writeEvent(0x534e4554, "240685104", Binder.getCallingUid(), (TAG + " update: path " + path + " does not start with " + partsDirPath)); return 0; } // Reset the file permission back to read for everyone but me. - Os.chmod(path, 0644); + Os.chmod(canonicalFile.getPath(), 0644); if (LOCAL_LOGV) { Log.d(TAG, "MmsProvider.update chmod is successful for path: " + path); }