diff options
| author | Felipe Leme <felipeal@google.com> | 2018-03-21 12:56:05 -0700 |
|---|---|---|
| committer | Felipe Leme <felipeal@google.com> | 2018-03-21 14:13:17 -0700 |
| commit | 25960891466a5291c4e71309a07cb9f53fea9c16 (patch) | |
| tree | 0c9398bf08b085cef4a70ebfa206df3726c05bf1 /core/java/android | |
| parent | 655877cd84d274ff66bc29f5889dec554a439312 (diff) | |
Don't allow null ids on FillResponse.Builder.setAuthentication()
It would crash the system when save is invoked.
The issue was reproduced by passing a null id on
AuthenticationTest#testFillResponseAuthServiceHasNoDataButCanSave , but that
change was not committed because with the fix the builder would throw an
exception.
Test: atest CtsAutoFillServiceTestCases:FillResponseTest
Fixes: 76097200
Change-Id: Ifa8105ee1451ba7107082a94a538a8f84f50df18
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/service/autofill/AutofillServiceHelper.java | 35 | ||||
| -rw-r--r-- | core/java/android/service/autofill/FillResponse.java | 19 | ||||
| -rw-r--r-- | core/java/android/service/autofill/SaveInfo.java | 12 |
3 files changed, 47 insertions, 19 deletions
diff --git a/core/java/android/service/autofill/AutofillServiceHelper.java b/core/java/android/service/autofill/AutofillServiceHelper.java new file mode 100644 index 000000000000..bbaebff439fb --- /dev/null +++ b/core/java/android/service/autofill/AutofillServiceHelper.java @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2018 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.service.autofill; + +import android.annotation.Nullable; +import android.view.autofill.AutofillId; + +import com.android.internal.util.Preconditions; + +/** @hide */ +final class AutofillServiceHelper { + + static AutofillId[] assertValid(@Nullable AutofillId[] ids) { + Preconditions.checkArgument(ids != null && ids.length > 0, "must have at least one id"); + return Preconditions.checkArrayElementsNotNull(ids, "ids"); + } + + private AutofillServiceHelper() { + throw new UnsupportedOperationException("contains static members only"); + } +} diff --git a/core/java/android/service/autofill/FillResponse.java b/core/java/android/service/autofill/FillResponse.java index 3a4b6bb8037e..be84ba9d837d 100644 --- a/core/java/android/service/autofill/FillResponse.java +++ b/core/java/android/service/autofill/FillResponse.java @@ -16,6 +16,7 @@ package android.service.autofill; +import static android.service.autofill.AutofillServiceHelper.assertValid; import static android.service.autofill.FillRequest.INVALID_REQUEST_ID; import static android.view.autofill.Helper.sDebug; @@ -245,10 +246,15 @@ public final class FillResponse implements Parcelable { * @param ids id of Views that when focused will display the authentication UI. * * @return This builder. - - * @throws IllegalArgumentException if {@code ids} is {@code null} or empty, or if - * both {@code authentication} and {@code presentation} are {@code null}, or if - * both {@code authentication} and {@code presentation} are non-{@code null} + * + * @throws IllegalArgumentException if any of the following occurs: + * <ul> + * <li>{@code ids} is {@code null}</li> + * <li>{@code ids} is empty</li> + * <li>{@code ids} contains a {@code null} element</li> + * <li>both {@code authentication} and {@code presentation} are {@code null}</li> + * <li>both {@code authentication} and {@code presentation} are non-{@code null}</li> + * </ul> * * @throws IllegalStateException if a {@link #setHeader(RemoteViews) header} or a * {@link #setFooter(RemoteViews) footer} are already set for this builder. @@ -263,16 +269,13 @@ public final class FillResponse implements Parcelable { throw new IllegalStateException("Already called #setHeader() or #setFooter()"); } - if (ids == null || ids.length == 0) { - throw new IllegalArgumentException("ids cannot be null or empry"); - } if (authentication == null ^ presentation == null) { throw new IllegalArgumentException("authentication and presentation" + " must be both non-null or null"); } mAuthentication = authentication; mPresentation = presentation; - mAuthenticationIds = ids; + mAuthenticationIds = assertValid(ids); return this; } diff --git a/core/java/android/service/autofill/SaveInfo.java b/core/java/android/service/autofill/SaveInfo.java index a5a6177dedc3..1be1be64548a 100644 --- a/core/java/android/service/autofill/SaveInfo.java +++ b/core/java/android/service/autofill/SaveInfo.java @@ -16,6 +16,7 @@ package android.service.autofill; +import static android.service.autofill.AutofillServiceHelper.assertValid; import static android.view.autofill.Helper.sDebug; import android.annotation.IntDef; @@ -405,17 +406,6 @@ public final class SaveInfo implements Parcelable { mRequiredIds = null; } - private AutofillId[] assertValid(AutofillId[] ids) { - Preconditions.checkArgument(ids != null && ids.length > 0, - "must have at least one id: " + Arrays.toString(ids)); - for (int i = 0; i < ids.length; i++) { - final AutofillId id = ids[i]; - Preconditions.checkArgument(id != null, - "cannot have null id: " + Arrays.toString(ids)); - } - return ids; - } - /** * Sets flags changing the save behavior. * |
