summaryrefslogtreecommitdiff
path: root/adservices/service/java/com/android/server/adservices/AdServicesManagerService.java
blob: 239fabda15dc07756305dc6022784596b5bdc348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
/*
 * Copyright (C) 2022 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 com.android.server.adservices;

import static android.adservices.common.AdServicesPermissions.ACCESS_ADSERVICES_MANAGER;
import static android.app.adservices.AdServicesManager.AD_SERVICES_SYSTEM_SERVICE;

import android.adservices.common.AdServicesPermissions;
import android.annotation.NonNull;
import android.annotation.RequiresPermission;
import android.app.adservices.AdServicesManager;
import android.app.adservices.IAdServicesManager;
import android.app.adservices.consent.ConsentParcel;
import android.app.adservices.topics.TopicParcel;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.content.pm.VersionedPackage;
import android.content.rollback.PackageRollbackInfo;
import android.content.rollback.RollbackInfo;
import android.content.rollback.RollbackManager;
import android.os.Binder;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.ParcelFileDescriptor;
import android.os.UserHandle;
import android.provider.DeviceConfig;
import android.util.ArrayMap;
import android.util.Dumpable;

import com.android.adservices.service.CommonFlagsConstants;
import com.android.internal.annotations.GuardedBy;
import com.android.internal.annotations.VisibleForTesting;
import com.android.modules.utils.BackgroundThread;
import com.android.server.LocalManagerRegistry;
import com.android.server.SystemService;
import com.android.server.adservices.data.topics.TopicsDao;
import com.android.server.adservices.feature.PrivacySandboxFeatureType;
import com.android.server.adservices.feature.PrivacySandboxUxCollection;
import com.android.server.sdksandbox.SdkSandboxManagerLocal;

import java.io.FileDescriptor;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Objects;

/** @hide */
// TODO(b/267667963): Offload methods from binder thread to background thread.
public class AdServicesManagerService extends IAdServicesManager.Stub {
    // The base directory for AdServices System Service.
    private static final String SYSTEM_DATA = "/data/system/";
    public static String ADSERVICES_BASE_DIR = SYSTEM_DATA + "adservices";
    private static final String ERROR_MESSAGE_NOT_PERMITTED_TO_CALL_ADSERVICESMANAGER_API =
            "Unauthorized caller. Permission to call AdServicesManager API is not granted in System"
                    + " Server.";
    private final Object mRegisterReceiverLock = new Object();
    private final Object mRollbackCheckLock = new Object();
    private final Object mSetPackageVersionLock = new Object();

    /**
     * Broadcast send from the system service to the AdServices module when a package has been
     * installed/uninstalled. This intent must match the intent defined in the AdServices manifest.
     */
    private static final String PACKAGE_CHANGED_BROADCAST =
            "com.android.adservices.PACKAGE_CHANGED";

    /** Key for designating the specific action. */
    private static final String ACTION_KEY = "action";

    /** Value if the package change was an uninstallation. */
    private static final String PACKAGE_FULLY_REMOVED = "package_fully_removed";

    /** Value if the package change was an installation. */
    private static final String PACKAGE_ADDED = "package_added";

    /** Value if the package has its data cleared. */
    private static final String PACKAGE_DATA_CLEARED = "package_data_cleared";

    private final Context mContext;

    @GuardedBy("mRegisterReceiverLock")
    private BroadcastReceiver mSystemServicePackageChangedReceiver;

    @GuardedBy("mRegisterReceiverLock")
    private BroadcastReceiver mSystemServiceUserActionReceiver;

    @GuardedBy("mRegisterReceiverLock")
    private HandlerThread mHandlerThread;

    @GuardedBy("mRegisterReceiverLock")
    private Handler mHandler;

    @GuardedBy("mSetPackageVersionLock")
    private int mAdServicesModuleVersion;

    @GuardedBy("mSetPackageVersionLock")
    private String mAdServicesModuleName;

    @GuardedBy("mRollbackCheckLock")
    private final Map<Integer, VersionedPackage> mAdServicesPackagesRolledBackFrom =
            new ArrayMap<>();

    @GuardedBy("mRollbackCheckLock")
    private final Map<Integer, VersionedPackage> mAdServicesPackagesRolledBackTo = new ArrayMap<>();

    // This will be triggered when there is a flag change.
    private final DeviceConfig.OnPropertiesChangedListener mOnFlagsChangedListener =
            properties -> {
                if (!properties.getNamespace().equals(DeviceConfig.NAMESPACE_ADSERVICES)) {
                    return;
                }
                registerReceivers();
                setAdServicesApexVersion();
                setRollbackStatus();
            };

    private final UserInstanceManager mUserInstanceManager;

    @VisibleForTesting
    AdServicesManagerService(Context context, UserInstanceManager userInstanceManager) {
        mContext = context;
        mUserInstanceManager = userInstanceManager;

        // TODO(b/298635325): use AdServices shared background thread pool instead.
        DeviceConfig.addOnPropertiesChangedListener(
                DeviceConfig.NAMESPACE_ADSERVICES,
                BackgroundThread.getExecutor(),
                mOnFlagsChangedListener);

        registerReceivers();
        setAdServicesApexVersion();
        setRollbackStatus();
    }

    /** @hide */
    public static final class Lifecycle extends SystemService implements Dumpable {
        private final AdServicesManagerService mService;

        /** @hide */
        public Lifecycle(Context context) {
            this(
                    context,
                    new AdServicesManagerService(
                            context,
                            new UserInstanceManager(
                                    TopicsDao.getInstance(context), ADSERVICES_BASE_DIR)));
        }

        /** @hide */
        @VisibleForTesting
        public Lifecycle(Context context, AdServicesManagerService service) {
            super(context);
            mService = service;
            LogUtil.d("AdServicesManagerService constructed!");
        }

        /** @hide */
        @Override
        public void onStart() {
            LogUtil.d("AdServicesManagerService started!");

            boolean published = false;

            try {
                publishBinderService();
                published = true;
            } catch (RuntimeException e) {
                LogUtil.w(
                        e,
                        "Failed to publish %s service; will piggyback it into SdkSandbox anyways",
                        AD_SERVICES_SYSTEM_SERVICE);
            }

            // TODO(b/282239822): Remove this workaround (and try-catch above) on Android VIC

            // Register the AdServicesManagerService with the SdkSandboxManagerService.
            // This is a workaround for b/262282035.
            // This works since we start the SdkSandboxManagerService before the
            // AdServicesManagerService in the SystemServer.java
            SdkSandboxManagerLocal sdkSandboxManagerLocal =
                    LocalManagerRegistry.getManager(SdkSandboxManagerLocal.class);
            if (sdkSandboxManagerLocal != null) {
                sdkSandboxManagerLocal.registerAdServicesManagerService(mService, published);
            } else {
                throw new IllegalStateException(
                        "SdkSandboxManagerLocal not found when registering AdServicesManager!");
            }
        }

        // Need to encapsulate call to publishBinderService(...) because:
        // - Superclass method is protected final (hence it cannot be mocked or extended)
        // - Underlying method calls ServiceManager.addService(), which is hidden (and hence cannot
        //   be mocked by our tests)
        @VisibleForTesting
        void publishBinderService() {
            publishBinderService(AD_SERVICES_SYSTEM_SERVICE, mService);
        }

        @Override
        public String getDumpableName() {
            return "AdServices";
        }

        @Override
        public void dump(PrintWriter writer, String[] args) {
            // Dumps the service when it could not be published as a binder service.
            // Usage: adb shell dumpsys system_server_dumper --name AdServices
            mService.dump(/* fd= */ null, writer, args);
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public ConsentParcel getConsent(@ConsentParcel.ConsentApiType int consentApiType) {
        return executeGetter(/* defaultReturn= */
                ConsentParcel.createRevokedConsent(consentApiType),
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getConsent(consentApiType));
    }

    // Return the User Identifier from the CallingUid.
    private int getUserIdentifierFromBinderCallingUid() {
        return UserHandle.getUserHandleForUid(Binder.getCallingUid()).getIdentifier();
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setConsent(ConsentParcel consentParcel) {
        enforceAdServicesManagerPermission();

        Objects.requireNonNull(consentParcel);

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setConsent() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setConsent(consentParcel);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to persist the consent.");
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordNotificationDisplayed(boolean wasNotificationDisplayed) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordNotificationDisplayed() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordNotificationDisplayed(wasNotificationDisplayed);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to Record Notification Displayed.");
        }
    }

    /**
     * Record blocked topics.
     *
     * @param blockedTopicParcels the blocked topics to record
     */
    @Override
    @RequiresPermission(ACCESS_ADSERVICES_MANAGER)
    public void recordBlockedTopic(@NonNull List<TopicParcel> blockedTopicParcels) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordBlockedTopic() for User Identifier %d", userIdentifier);
        mUserInstanceManager
                .getOrCreateUserBlockedTopicsManagerInstance(userIdentifier)
                .recordBlockedTopic(blockedTopicParcels);
    }

    /**
     * Remove a blocked topic.
     *
     * @param blockedTopicParcel the blocked topic to remove
     */
    @Override
    @RequiresPermission(ACCESS_ADSERVICES_MANAGER)
    public void removeBlockedTopic(@NonNull TopicParcel blockedTopicParcel) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("removeBlockedTopic() for User Identifier %d", userIdentifier);
        mUserInstanceManager
                .getOrCreateUserBlockedTopicsManagerInstance(userIdentifier)
                .removeBlockedTopic(blockedTopicParcel);
    }

    /**
     * Get all blocked topics.
     *
     * @return a {@code List} of all blocked topics.
     */
    @Override
    @RequiresPermission(ACCESS_ADSERVICES_MANAGER)
    public List<TopicParcel> retrieveAllBlockedTopics() {
        return executeGetter(/* defaultReturn= */ List.of(),
                (userId) -> mUserInstanceManager
                        .getOrCreateUserBlockedTopicsManagerInstance(userId)
                        .retrieveAllBlockedTopics());
    }

    /** Clear all Blocked Topics */
    @Override
    @RequiresPermission(ACCESS_ADSERVICES_MANAGER)
    public void clearAllBlockedTopics() {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("clearAllBlockedTopics() for User Identifier %d", userIdentifier);
        mUserInstanceManager
                .getOrCreateUserBlockedTopicsManagerInstance(userIdentifier)
                .clearAllBlockedTopics();
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean wasNotificationDisplayed() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .wasNotificationDisplayed());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordGaUxNotificationDisplayed(boolean wasNotificationDisplayed) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordGaUxNotificationDisplayed() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordGaUxNotificationDisplayed(wasNotificationDisplayed);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to Record GA UX Notification Displayed.");
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordDefaultConsent(boolean defaultConsent) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordDefaultConsent() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordDefaultConsent(defaultConsent);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to record default consent: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordTopicsDefaultConsent(boolean defaultConsent) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordTopicsDefaultConsent() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordTopicsDefaultConsent(defaultConsent);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to record topics default consent: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordFledgeDefaultConsent(boolean defaultConsent) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordFledgeDefaultConsent() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordFledgeDefaultConsent(defaultConsent);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to record fledge default consent: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordMeasurementDefaultConsent(boolean defaultConsent) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordMeasurementDefaultConsent() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordMeasurementDefaultConsent(defaultConsent);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to record measurement default consent: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordDefaultAdIdState(boolean defaultAdIdState) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("recordDefaultAdIdState() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordDefaultAdIdState(defaultAdIdState);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to record default AdId state: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordUserManualInteractionWithConsent(int interaction) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v(
                "recordUserManualInteractionWithConsent() for User Identifier %d, interaction %d",
                userIdentifier, interaction);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .recordUserManualInteractionWithConsent(interaction);
        } catch (IOException e) {
            LogUtil.e(
                    e, "Fail to record default manual interaction with consent: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean getTopicsDefaultConsent() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getTopicsDefaultConsent());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean getFledgeDefaultConsent() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getFledgeDefaultConsent());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean getMeasurementDefaultConsent() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getMeasurementDefaultConsent());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean getDefaultAdIdState() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getDefaultAdIdState());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public int getUserManualInteractionWithConsent() {
        return executeGetter(/* defaultReturn= */ 0,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getUserManualInteractionWithConsent());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean wasGaUxNotificationDisplayed() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .wasGaUxNotificationDisplayed());
    }

    /** retrieves the default consent of a user. */
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean getDefaultConsent() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userId)
                        .getDefaultConsent());
    }

    /** Get the currently running privacy sandbox feature on device. */
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public String getCurrentPrivacySandboxFeature() {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("getCurrentPrivacySandboxFeature() for User Identifier %d", userIdentifier);
        try {
            for (PrivacySandboxFeatureType featureType : PrivacySandboxFeatureType.values()) {
                if (mUserInstanceManager
                        .getOrCreateUserConsentManagerInstance(userIdentifier)
                        .isPrivacySandboxFeatureEnabled(featureType)) {
                    return featureType.name();
                }
            }
        } catch (IOException e) {
            LogUtil.e(e, "Fail to get the privacy sandbox feature state: " + e.getMessage());
        }
        return PrivacySandboxFeatureType.PRIVACY_SANDBOX_UNSUPPORTED.name();
    }

    /** Set the currently running privacy sandbox feature on device. */
    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setCurrentPrivacySandboxFeature(String featureType) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setCurrentPrivacySandboxFeature() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setCurrentPrivacySandboxFeature(featureType);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to set current privacy sandbox feature: " + e.getMessage());
        }
    }

    @Override
    @RequiresPermission
    public List<String> getKnownAppsWithConsent(@NonNull List<String> installedPackages) {
        return executeGetter(/* defaultReturn= */ List.of(),
                (userId) -> mUserInstanceManager
                        .getOrCreateUserAppConsentManagerInstance(userId)
                        .getKnownAppsWithConsent(installedPackages));
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public List<String> getAppsWithRevokedConsent(@NonNull List<String> installedPackages) {
        return executeGetter(/* defaultReturn= */ List.of(),
                (userId) -> mUserInstanceManager
                        .getOrCreateUserAppConsentManagerInstance(userId)
                        .getAppsWithRevokedConsent(installedPackages));
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setConsentForApp(
            @NonNull String packageName, int packageUid, boolean isConsentRevoked) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();

        LogUtil.v(
                "setConsentForApp() for User Identifier %d, package name %s, and package uid %d to"
                        + " %s.",
                userIdentifier, packageName, packageUid, isConsentRevoked);
        try {
            mUserInstanceManager
                    .getOrCreateUserAppConsentManagerInstance(userIdentifier)
                    .setConsentForApp(packageName, packageUid, isConsentRevoked);
        } catch (IOException e) {
            LogUtil.e(
                    e,
                    "Failed to setConsentForApp() for User Identifier %d, package name %s, and"
                            + " package uid %d to %s.",
                    userIdentifier,
                    packageName,
                    packageUid,
                    isConsentRevoked);
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void clearKnownAppsWithConsent() {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("clearKnownAppsWithConsent() for user identifier %d.", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserAppConsentManagerInstance(userIdentifier)
                    .clearKnownAppsWithConsent();
        } catch (IOException e) {
            LogUtil.e(
                    e,
                    "Failed to clearKnownAppsWithConsent() for user identifier %d",
                    userIdentifier);
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void clearAllAppConsentData() {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("clearAllAppConsentData() for user identifier %d.", userIdentifier);

        try {
            mUserInstanceManager
                    .getOrCreateUserAppConsentManagerInstance(userIdentifier)
                    .clearAllAppConsentData();
        } catch (IOException e) {
            LogUtil.e(
                    e, "Failed to clearAllAppConsentData() for user identifier %d", userIdentifier);
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean isConsentRevokedForApp(@NonNull String packageName, int packageUid)
            throws IllegalArgumentException {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v(
                "isConsentRevokedForApp() for user identifier %d, package name %s, and package uid"
                        + " %d.",
                userIdentifier, packageName, packageUid);
        try {
            return mUserInstanceManager
                    .getOrCreateUserAppConsentManagerInstance(userIdentifier)
                    .isConsentRevokedForApp(packageName, packageUid);
        } catch (IOException e) {
            LogUtil.e(
                    e,
                    "Failed to call isConsentRevokedForApp() for user identifier %d, package name"
                            + " %s, and package uid %d.",
                    userIdentifier,
                    packageName,
                    packageUid);
            return true;
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean setConsentForAppIfNew(
            @NonNull String packageName, int packageUid, boolean isConsentRevoked)
            throws IllegalArgumentException {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v(
                "setConsentForAppIfNew() for user identifier %d, package name"
                        + " %s, and package uid %d to %s.",
                userIdentifier, packageName, packageUid, isConsentRevoked);
        try {
            return mUserInstanceManager
                    .getOrCreateUserAppConsentManagerInstance(userIdentifier)
                    .setConsentForAppIfNew(packageName, packageUid, isConsentRevoked);
        } catch (IOException e) {
            LogUtil.e(
                    e,
                    "Failed to setConsentForAppIfNew() for user identifier %d, package name"
                            + " %s, and package uid %d to %s.",
                    userIdentifier,
                    packageName,
                    packageUid,
                    isConsentRevoked);
            return true;
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void clearConsentForUninstalledApp(@NonNull String packageName, int packageUid) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v(
                "clearConsentForUninstalledApp() for user identifier %d, package name"
                        + " %s, and package uid %d.",
                userIdentifier, packageName, packageUid);
        try {
            mUserInstanceManager
                    .getOrCreateUserAppConsentManagerInstance(userIdentifier)
                    .clearConsentForUninstalledApp(packageName, packageUid);
        } catch (IOException e) {
            LogUtil.e(
                    e,
                    "Failed to clearConsentForUninstalledApp() for user identifier %d, package name"
                            + " %s, and package uid %d.",
                    userIdentifier,
                    packageName,
                    packageUid);
        }
    }

    @Override
    @RequiresPermission(android.Manifest.permission.DUMP)
    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
        mContext.enforceCallingPermission(android.Manifest.permission.DUMP, /* message= */ null);
        synchronized (mSetPackageVersionLock) {
            pw.printf("mAdServicesModuleName: %s\n", mAdServicesModuleName);
            pw.printf("mAdServicesModuleVersion: %d\n", mAdServicesModuleVersion);
        }
        synchronized (mRegisterReceiverLock) {
            pw.printf("mHandlerThread: %s\n", mHandlerThread);
        }
        synchronized (mRollbackCheckLock) {
            pw.printf("mAdServicesPackagesRolledBackFrom: %s\n", mAdServicesPackagesRolledBackFrom);
            pw.printf("mAdServicesPackagesRolledBackTo: %s\n", mAdServicesPackagesRolledBackTo);
        }
        pw.printf("ShellCmd enabled: %b\n", isShellCmdEnabled());
        mUserInstanceManager.dump(pw, args);
    }

    private static boolean isShellCmdEnabled() {
        return FlagsFactory.getFlags().getAdServicesShellCommandEnabled();
    }

    @Override
    public int handleShellCommand(
            ParcelFileDescriptor in,
            ParcelFileDescriptor out,
            ParcelFileDescriptor err,
            String[] args) {

        if (!isShellCmdEnabled()) {
            LogUtil.d(
                    "handleShellCommand(%s): disabled by flag %s",
                    Arrays.toString(args),
                    CommonFlagsConstants.KEY_ADSERVICES_SHELL_COMMAND_ENABLED);
            return super.handleShellCommand(in, out, err, args);
        }

        LogUtil.v("Executing shell cmd: %s", Arrays.toString(args));
        return new AdServicesShellCommand(mContext)
                .exec(
                        this,
                        in.getFileDescriptor(),
                        out.getFileDescriptor(),
                        err.getFileDescriptor(),
                        args);
    }

    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void recordAdServicesDeletionOccurred(
            @AdServicesManager.DeletionApiType int deletionType) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        try {
            LogUtil.v(
                    "recordAdServicesDeletionOccurred() for user identifier %d, api type %d",
                    userIdentifier, deletionType);
            mUserInstanceManager
                    .getOrCreateUserRollbackHandlingManagerInstance(
                            userIdentifier, getAdServicesApexVersion())
                    .recordAdServicesDataDeletion(deletionType);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to persist the deletion status.");
        }
    }

    public boolean needsToHandleRollbackReconciliation(
            @AdServicesManager.DeletionApiType int deletionType) {
        // Check if there was at least one rollback of the AdServices module.
        if (getAdServicesPackagesRolledBackFrom().isEmpty()) {
            return false;
        }

        // Check if the deletion bit is set.
        if (!hasAdServicesDeletionOccurred(deletionType)) {
            return false;
        }

        // For each rollback, check if the rolled back from version matches the previously stored
        // version and the rolled back to version matches the current version.
        int previousStoredVersion = getPreviousStoredVersion(deletionType);
        for (Integer rollbackId : getAdServicesPackagesRolledBackFrom().keySet()) {
            if (getAdServicesPackagesRolledBackFrom().get(rollbackId).getLongVersionCode()
                            == previousStoredVersion
                    && getAdServicesPackagesRolledBackTo().get(rollbackId).getLongVersionCode()
                            == getAdServicesApexVersion()) {
                resetAdServicesDeletionOccurred(deletionType);
                return true;
            }
        }

        // None of the stored rollbacks match the versions.
        return false;
    }

    @VisibleForTesting
    boolean hasAdServicesDeletionOccurred(@AdServicesManager.DeletionApiType int deletionType) {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager.getOrCreateUserRollbackHandlingManagerInstance(
                                userId, getAdServicesApexVersion())
                        .wasAdServicesDataDeleted(deletionType));
    }

    @VisibleForTesting
    void resetAdServicesDeletionOccurred(@AdServicesManager.DeletionApiType int deletionType) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        try {
            LogUtil.v("resetMeasurementDeletionOccurred() for user identifier %d", userIdentifier);
            mUserInstanceManager
                    .getOrCreateUserRollbackHandlingManagerInstance(
                            userIdentifier, getAdServicesApexVersion())
                    .resetAdServicesDataDeletion(deletionType);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to remove the fmeasurement deletion status.");
        }
    }

    @VisibleForTesting
    int getPreviousStoredVersion(@AdServicesManager.DeletionApiType int deletionType) {
        return executeGetter(/* defaultReturn= */ 0,
                (userId) -> mUserInstanceManager.getOrCreateUserRollbackHandlingManagerInstance(
                                userId, getAdServicesApexVersion())
                        .getPreviousStoredVersion(deletionType));
    }

    @VisibleForTesting
    void registerReceivers() {
        // There could be race condition between registerReceivers call
        // in the AdServicesManagerService constructor and the mOnFlagsChangedListener.
        synchronized (mRegisterReceiverLock) {
            if (!FlagsFactory.getFlags().getAdServicesSystemServiceEnabled()) {
                LogUtil.d("AdServicesSystemServiceEnabled is FALSE.");
                // If there is a SystemServicePackageChangeReceiver, unregister it.
                if (mSystemServicePackageChangedReceiver != null) {
                    LogUtil.d("Unregistering the existing SystemServicePackageChangeReceiver");
                    mContext.unregisterReceiver(mSystemServicePackageChangedReceiver);
                    mSystemServicePackageChangedReceiver = null;
                }

                // If there is a SystemServiceUserActionReceiver, unregister it.
                if (mSystemServiceUserActionReceiver != null) {
                    LogUtil.d("Unregistering the existing SystemServiceUserActionReceiver");
                    mContext.unregisterReceiver(mSystemServiceUserActionReceiver);
                    mSystemServiceUserActionReceiver = null;
                }

                if (mHandler != null) {
                    mHandlerThread.quitSafely();
                    mHandler = null;
                }
                return;
            }

            // Start the handler thread.
            if (mHandler == null) {
                mHandlerThread = new HandlerThread("AdServicesManagerServiceHandler");
                mHandlerThread.start();
                mHandler = new Handler(mHandlerThread.getLooper());
            }
            registerPackagedChangedBroadcastReceiversLocked();
            registerUserActionBroadcastReceiverLocked();
        }
    }

    @VisibleForTesting
    /**
     * Stores the AdServices module version locally. Users other than the main user do not have the
     * permission to get the version through the PackageManager, so we have to get the version when
     * the AdServices system service starts.
     */
    void setAdServicesApexVersion() {
        synchronized (mSetPackageVersionLock) {
            if (!FlagsFactory.getFlags().getAdServicesSystemServiceEnabled()) {
                LogUtil.d("AdServicesSystemServiceEnabled is FALSE.");
                return;
            }

            PackageManager packageManager = mContext.getPackageManager();

            List<PackageInfo> installedPackages =
                    packageManager.getInstalledPackages(
                            PackageManager.PackageInfoFlags.of(PackageManager.MATCH_APEX));

            installedPackages.forEach(
                    packageInfo -> {
                        if (packageInfo.packageName.contains("adservices") && packageInfo.isApex) {
                            mAdServicesModuleName = packageInfo.packageName;
                            mAdServicesModuleVersion = (int) packageInfo.getLongVersionCode();
                        }
                    });
        }
    }

    @VisibleForTesting
    int getAdServicesApexVersion() {
        return mAdServicesModuleVersion;
    }

    @VisibleForTesting
    /** Checks the RollbackManager to see the rollback status of the AdServices module. */
    void setRollbackStatus() {
        synchronized (mRollbackCheckLock) {
            if (!FlagsFactory.getFlags().getAdServicesSystemServiceEnabled()) {
                LogUtil.d("AdServicesSystemServiceEnabled is FALSE.");
                resetRollbackArraysRCLocked();
                return;
            }

            RollbackManager rollbackManager = mContext.getSystemService(RollbackManager.class);
            if (rollbackManager == null) {
                LogUtil.d("Failed to get the RollbackManager service.");
                resetRollbackArraysRCLocked();
                return;
            }
            List<RollbackInfo> recentlyCommittedRollbacks =
                    rollbackManager.getRecentlyCommittedRollbacks();

            for (RollbackInfo rollbackInfo : recentlyCommittedRollbacks) {
                for (PackageRollbackInfo packageRollbackInfo : rollbackInfo.getPackages()) {
                    if (packageRollbackInfo.getPackageName().equals(mAdServicesModuleName)) {
                        mAdServicesPackagesRolledBackFrom.put(
                                rollbackInfo.getRollbackId(),
                                packageRollbackInfo.getVersionRolledBackFrom());
                        mAdServicesPackagesRolledBackTo.put(
                                rollbackInfo.getRollbackId(),
                                packageRollbackInfo.getVersionRolledBackTo());
                        LogUtil.d(
                                "Rollback of AdServices module occurred, "
                                        + "from version %d to version %d",
                                packageRollbackInfo.getVersionRolledBackFrom().getLongVersionCode(),
                                packageRollbackInfo.getVersionRolledBackTo().getLongVersionCode());
                    }
                }
            }
        }
    }

    @GuardedBy("mRollbackCheckLock")
    private void resetRollbackArraysRCLocked() {
        mAdServicesPackagesRolledBackFrom.clear();
        mAdServicesPackagesRolledBackTo.clear();
    }

    @VisibleForTesting
    Map<Integer, VersionedPackage> getAdServicesPackagesRolledBackFrom() {
        return mAdServicesPackagesRolledBackFrom;
    }

    @VisibleForTesting
    Map<Integer, VersionedPackage> getAdServicesPackagesRolledBackTo() {
        return mAdServicesPackagesRolledBackTo;
    }

    /**
     * Registers a receiver for any broadcasts related to user profile removal for all users on the
     * device at boot up. After receiving the broadcast, we delete consent manager instance and
     * remove the user related data.
     */
    private void registerUserActionBroadcastReceiverLocked() {
        if (mSystemServiceUserActionReceiver != null) {
            // We already register the receiver.
            LogUtil.d("SystemServiceUserActionReceiver is already registered.");
            return;
        }
        mSystemServiceUserActionReceiver =
                new BroadcastReceiver() {
                    @Override
                    public void onReceive(Context context, Intent intent) {
                        mHandler.post(() -> onUserRemoved(intent));
                    }
                };
        mContext.registerReceiverForAllUsers(
                mSystemServiceUserActionReceiver,
                new IntentFilter(Intent.ACTION_USER_REMOVED),
                /* broadcastPermission= */ null,
                mHandler);
        LogUtil.d("SystemServiceUserActionReceiver registered.");
    }

    /** Deletes the user instance and remove the user consent related data. */
    @VisibleForTesting
    void onUserRemoved(@NonNull Intent intent) {
        Objects.requireNonNull(intent);
        if (Intent.ACTION_USER_REMOVED.equals(intent.getAction())) {
            UserHandle userHandle = intent.getParcelableExtra(Intent.EXTRA_USER, UserHandle.class);
            if (userHandle == null) {
                LogUtil.e("Extra " + Intent.EXTRA_USER + " is missing in the intent: " + intent);
                return;
            }
            LogUtil.d("Deleting user instance with user id: " + userHandle.getIdentifier());
            try {
                mUserInstanceManager.deleteUserInstance(userHandle.getIdentifier());
            } catch (Exception e) {
                LogUtil.e(e, "Failed to delete the consent manager directory");
            }
        }
    }

    /**
     * Registers a receiver for any broadcasts regarding changes to any packages for all users on
     * the device at boot up. After receiving the broadcast, send an explicit broadcast to the
     * AdServices module as that user.
     */
    private void registerPackagedChangedBroadcastReceiversLocked() {
        if (mSystemServicePackageChangedReceiver != null) {
            // We already register the receiver.
            LogUtil.d("SystemServicePackageChangedReceiver is already registered.");
            return;
        }

        final IntentFilter packageChangedIntentFilter = new IntentFilter();
        packageChangedIntentFilter.addAction(Intent.ACTION_PACKAGE_FULLY_REMOVED);
        packageChangedIntentFilter.addAction(Intent.ACTION_PACKAGE_DATA_CLEARED);
        packageChangedIntentFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
        packageChangedIntentFilter.addDataScheme("package");

        mSystemServicePackageChangedReceiver =
                new BroadcastReceiver() {
                    @Override
                    public void onReceive(Context context, Intent intent) {
                        UserHandle user = getSendingUser();
                        mHandler.post(() -> onPackageChange(intent, user));
                    }
                };
        mContext.registerReceiverForAllUsers(
                mSystemServicePackageChangedReceiver,
                packageChangedIntentFilter,
                /* broadcastPermission */ null,
                mHandler);
        LogUtil.d("Package changed broadcast receivers registered.");
    }

    /** Sends an explicit broadcast to the AdServices module when a package change occurs. */
    @VisibleForTesting
    public void onPackageChange(Intent intent, UserHandle user) {
        Intent explicitBroadcast = new Intent();
        explicitBroadcast.setAction(PACKAGE_CHANGED_BROADCAST);
        explicitBroadcast.setData(intent.getData());

        final Intent i = new Intent(PACKAGE_CHANGED_BROADCAST);
        final List<ResolveInfo> resolveInfo =
                mContext.getPackageManager()
                        .queryBroadcastReceiversAsUser(
                                i,
                                PackageManager.ResolveInfoFlags.of(PackageManager.GET_RECEIVERS),
                                user);
        if (resolveInfo != null && !resolveInfo.isEmpty()) {
            for (ResolveInfo info : resolveInfo) {
                explicitBroadcast.setClassName(
                        info.activityInfo.packageName, info.activityInfo.name);
                int uidChanged = intent.getIntExtra(Intent.EXTRA_UID, -1);
                LogUtil.v("Package changed with UID " + uidChanged);
                explicitBroadcast.putExtra(Intent.EXTRA_UID, uidChanged);
                switch (intent.getAction()) {
                    case Intent.ACTION_PACKAGE_DATA_CLEARED:
                        explicitBroadcast.putExtra(ACTION_KEY, PACKAGE_DATA_CLEARED);
                        mContext.sendBroadcastAsUser(explicitBroadcast, user);
                        break;
                    case Intent.ACTION_PACKAGE_FULLY_REMOVED:
                        // TODO (b/233373604): Propagate broadcast to users not currently running
                        explicitBroadcast.putExtra(ACTION_KEY, PACKAGE_FULLY_REMOVED);
                        mContext.sendBroadcastAsUser(explicitBroadcast, user);
                        break;
                    case Intent.ACTION_PACKAGE_ADDED:
                        explicitBroadcast.putExtra(ACTION_KEY, PACKAGE_ADDED);
                        // For users where the app is merely being updated rather than added, we
                        // don't want to send the broadcast.
                        if (!intent.getExtras().getBoolean(Intent.EXTRA_REPLACING, false)) {
                            mContext.sendBroadcastAsUser(explicitBroadcast, user);
                        }
                        break;
                }
            }
        }
    }

    // Check if caller has permission to invoke AdServicesManager APIs.
    @VisibleForTesting
    void enforceAdServicesManagerPermission() {
        mContext.enforceCallingPermission(
                AdServicesPermissions.ACCESS_ADSERVICES_MANAGER,
                ERROR_MESSAGE_NOT_PERMITTED_TO_CALL_ADSERVICESMANAGER_API);
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean isAdIdEnabled() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager.getOrCreateUserConsentManagerInstance(
                        userId).isAdIdEnabled());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setAdIdEnabled(boolean isAdIdEnabled) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setAdIdEnabled() for User Identifier %d", userIdentifier);

        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setAdIdEnabled(isAdIdEnabled);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to call setAdIdEnabled().");
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean isU18Account() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager.getOrCreateUserConsentManagerInstance(
                        userId).isU18Account());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setU18Account(boolean isU18Account) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setU18Account() for User Identifier %d", userIdentifier);

        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setU18Account(isU18Account);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to call setU18Account().");
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean isEntryPointEnabled() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager.getOrCreateUserConsentManagerInstance(
                        userId).isEntryPointEnabled());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setEntryPointEnabled(boolean isEntryPointEnabled) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setEntryPointEnabled() for User Identifier %d", userIdentifier);

        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setEntryPointEnabled(isEntryPointEnabled);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to call setEntryPointEnabled().");
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean isAdultAccount() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager.getOrCreateUserConsentManagerInstance(
                        userId).isAdultAccount());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setAdultAccount(boolean isAdultAccount) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setAdultAccount() for User Identifier %d", userIdentifier);

        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setAdultAccount(isAdultAccount);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to call setAdultAccount().");
        }
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public boolean wasU18NotificationDisplayed() {
        return executeGetter(/* defaultReturn= */ false,
                (userId) -> mUserInstanceManager.getOrCreateUserConsentManagerInstance(
                        userId).wasU18NotificationDisplayed());
    }

    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setU18NotificationDisplayed(boolean wasU18NotificationDisplayed) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setU18NotificationDisplayed() for User Identifier %d", userIdentifier);

        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setU18NotificationDisplayed(wasU18NotificationDisplayed);
        } catch (IOException e) {
            LogUtil.e(e, "Failed to call setU18NotificationDisplayed().");
        }
    }

    /** Get the current UX. */
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public String getUx() {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("getUx() for User Identifier %d", userIdentifier);
        try {
            return mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .getUx();
        } catch (IOException e) {
            LogUtil.e(e, "Fail to get current UX: " + e.getMessage());
        }
        return PrivacySandboxUxCollection.UNSUPPORTED_UX.toString();
    }

    /** Set the currently running privacy sandbox feature on device. */
    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setUx(String ux) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setUx() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager.getOrCreateUserConsentManagerInstance(userIdentifier).setUx(ux);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to set current UX: " + e.getMessage());
        }
    }

    /** Get the current enrollment channel. */
    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public String getEnrollmentChannel() {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("getUx() for User Identifier %d", userIdentifier);
        try {
            return mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .getEnrollmentChannel();
        } catch (IOException e) {
            LogUtil.e(e, "Fail to get current enrollment channel: " + e.getMessage());
        }
        return PrivacySandboxUxCollection.UNSUPPORTED_UX.toString();
    }

    /** Set the current enrollment channel. */
    @Override
    @RequiresPermission(AdServicesPermissions.ACCESS_ADSERVICES_MANAGER)
    public void setEnrollmentChannel(String enrollmentChannel) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();
        LogUtil.v("setUx() for User Identifier %d", userIdentifier);
        try {
            mUserInstanceManager
                    .getOrCreateUserConsentManagerInstance(userIdentifier)
                    .setEnrollmentChannel(enrollmentChannel);
        } catch (IOException e) {
            LogUtil.e(e, "Fail to set current enrollment channel: " + e.getMessage());
        }
    }

    @FunctionalInterface
    interface ThrowableGetter<R> {
        R apply(int userId) throws IOException;
    }

    private <R> R executeGetter(R r, ThrowableGetter<R> function) {
        enforceAdServicesManagerPermission();

        final int userIdentifier = getUserIdentifierFromBinderCallingUid();

        String logPrefix = getClass().getSimpleName() + function.toString();
        LogUtil.v(logPrefix + " called.", userIdentifier);

        try {
            return function.apply(userIdentifier);
        } catch (IOException e) {
            LogUtil.e(e, logPrefix + " failed.");
            return r;
        }
    }
}