blob: a270974684056abf74458e44a981d0a29518786a [file] [log] [blame]
Fred Quintana60307342009-03-24 22:48:12 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jeff Sharkey7a96c392012-11-15 14:01:46 -080017package com.android.server.accounts;
Fred Quintana60307342009-03-24 22:48:12 -070018
Doug Zongker885cfc232009-10-21 16:52:44 -070019import android.Manifest;
Carlos Valdivia91979be2015-05-22 14:11:35 -070020import android.accounts.AbstractAccountAuthenticator;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080021import android.accounts.Account;
22import android.accounts.AccountAndUser;
23import android.accounts.AccountAuthenticatorResponse;
24import android.accounts.AccountManager;
25import android.accounts.AuthenticatorDescription;
Amith Yamasani23c8b962013-04-10 13:37:18 -070026import android.accounts.CantAddAccountActivity;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080027import android.accounts.GrantCredentialsPermissionActivity;
28import android.accounts.IAccountAuthenticator;
29import android.accounts.IAccountAuthenticatorResponse;
30import android.accounts.IAccountManager;
31import android.accounts.IAccountManagerResponse;
Brett Chabot3b4fcbc2011-01-09 13:41:02 -080032import android.app.ActivityManager;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070033import android.app.ActivityManagerNative;
Amith Yamasani3b458ad2013-04-18 18:40:07 -070034import android.app.AppGlobals;
Doug Zongker885cfc232009-10-21 16:52:44 -070035import android.app.Notification;
36import android.app.NotificationManager;
37import android.app.PendingIntent;
Sander Alewijnseda1350f2014-05-08 16:59:42 +010038import android.app.admin.DevicePolicyManager;
Fred Quintanaa698f422009-04-08 19:14:54 -070039import android.content.BroadcastReceiver;
Doug Zongker885cfc232009-10-21 16:52:44 -070040import android.content.ComponentName;
Fred Quintanaa698f422009-04-08 19:14:54 -070041import android.content.ContentValues;
42import android.content.Context;
43import android.content.Intent;
44import android.content.IntentFilter;
Fred Quintanab839afc2009-10-14 15:57:28 -070045import android.content.ServiceConnection;
Doug Zongker885cfc232009-10-21 16:52:44 -070046import android.content.pm.ApplicationInfo;
47import android.content.pm.PackageInfo;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070048import android.content.pm.PackageManager;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070049import android.content.pm.PackageManager.NameNotFoundException;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070050import android.content.pm.RegisteredServicesCache;
Fred Quintana3ecd5f42009-09-17 12:42:35 -070051import android.content.pm.RegisteredServicesCacheListener;
Carlos Valdivia5bab9da2013-09-29 05:11:56 -070052import android.content.pm.ResolveInfo;
Carlos Valdivia91979be2015-05-22 14:11:35 -070053import android.content.pm.Signature;
Jeff Sharkey6eb96202012-10-10 13:13:54 -070054import android.content.pm.UserInfo;
Fred Quintana60307342009-03-24 22:48:12 -070055import android.database.Cursor;
56import android.database.DatabaseUtils;
Fred Quintanaa698f422009-04-08 19:14:54 -070057import android.database.sqlite.SQLiteDatabase;
58import android.database.sqlite.SQLiteOpenHelper;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -070059import android.database.sqlite.SQLiteStatement;
Doug Zongker885cfc232009-10-21 16:52:44 -070060import android.os.Binder;
Fred Quintanaa698f422009-04-08 19:14:54 -070061import android.os.Bundle;
Oscar Montemayora8529f62009-11-18 10:14:20 -080062import android.os.Environment;
Fred Quintanaa698f422009-04-08 19:14:54 -070063import android.os.Handler;
Fred Quintanaa698f422009-04-08 19:14:54 -070064import android.os.IBinder;
65import android.os.Looper;
66import android.os.Message;
Dianne Hackborn164371f2013-10-01 19:10:13 -070067import android.os.Parcel;
Amith Yamasani27db4682013-03-30 17:07:47 -070068import android.os.Process;
Fred Quintanaa698f422009-04-08 19:14:54 -070069import android.os.RemoteException;
70import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070071import android.os.UserHandle;
Amith Yamasani258848d2012-08-10 17:06:33 -070072import android.os.UserManager;
Fred Quintanaa698f422009-04-08 19:14:54 -070073import android.text.TextUtils;
74import android.util.Log;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070075import android.util.Pair;
Jeff Sharkey6eb96202012-10-10 13:13:54 -070076import android.util.Slog;
Amith Yamasani04e0d262012-02-14 11:50:53 -080077import android.util.SparseArray;
Fred Quintana60307342009-03-24 22:48:12 -070078
Costin Manolacheb61e8fb2011-09-08 11:26:09 -070079import com.android.internal.R;
Amith Yamasani67df64b2012-12-14 12:09:36 -080080import com.android.internal.util.ArrayUtils;
Amith Yamasani04e0d262012-02-14 11:50:53 -080081import com.android.internal.util.IndentingPrintWriter;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070082import com.android.server.FgThread;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070083import com.google.android.collect.Lists;
84import com.google.android.collect.Sets;
Costin Manolacheb61e8fb2011-09-08 11:26:09 -070085
Oscar Montemayora8529f62009-11-18 10:14:20 -080086import java.io.File;
Fred Quintanaa698f422009-04-08 19:14:54 -070087import java.io.FileDescriptor;
88import java.io.PrintWriter;
Carlos Valdivia91979be2015-05-22 14:11:35 -070089import java.security.MessageDigest;
90import java.security.NoSuchAlgorithmException;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -070091import java.text.SimpleDateFormat;
Fred Quintanaa698f422009-04-08 19:14:54 -070092import java.util.ArrayList;
Fred Quintana56285a62010-12-02 14:20:51 -080093import java.util.Arrays;
Fred Quintanaa698f422009-04-08 19:14:54 -070094import java.util.Collection;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -070095import java.util.Date;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070096import java.util.HashMap;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070097import java.util.HashSet;
Fred Quintana56285a62010-12-02 14:20:51 -080098import java.util.LinkedHashMap;
Jeff Sharkey6eb96202012-10-10 13:13:54 -070099import java.util.List;
Andy McFadden2f362292012-01-20 14:43:38 -0800100import java.util.Map;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700101import java.util.concurrent.atomic.AtomicInteger;
102import java.util.concurrent.atomic.AtomicReference;
Fred Quintana60307342009-03-24 22:48:12 -0700103
Fred Quintana60307342009-03-24 22:48:12 -0700104/**
105 * A system service that provides account, password, and authtoken management for all
106 * accounts on the device. Some of these calls are implemented with the help of the corresponding
107 * {@link IAccountAuthenticator} services. This service is not accessed by users directly,
108 * instead one uses an instance of {@link AccountManager}, which can be accessed as follows:
Brian Carlstrom46703b02011-04-06 15:41:29 -0700109 * AccountManager accountManager = AccountManager.get(context);
Fred Quintana33269202009-04-20 16:05:10 -0700110 * @hide
Fred Quintana60307342009-03-24 22:48:12 -0700111 */
Fred Quintana3ecd5f42009-09-17 12:42:35 -0700112public class AccountManagerService
113 extends IAccountManager.Stub
Fred Quintana5ebbb4a2009-11-09 15:42:20 -0800114 implements RegisteredServicesCacheListener<AuthenticatorDescription> {
Fred Quintana60307342009-03-24 22:48:12 -0700115 private static final String TAG = "AccountManagerService";
116
Fred Quintana60307342009-03-24 22:48:12 -0700117 private static final String DATABASE_NAME = "accounts.db";
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700118 private static final int DATABASE_VERSION = 8;
119
120 private static final int MAX_DEBUG_DB_SIZE = 64;
Fred Quintana60307342009-03-24 22:48:12 -0700121
122 private final Context mContext;
123
Fred Quintana56285a62010-12-02 14:20:51 -0800124 private final PackageManager mPackageManager;
Amith Yamasani258848d2012-08-10 17:06:33 -0700125 private UserManager mUserManager;
Fred Quintana56285a62010-12-02 14:20:51 -0800126
Fred Quintana60307342009-03-24 22:48:12 -0700127 private final MessageHandler mMessageHandler;
128
129 // Messages that can be sent on mHandler
130 private static final int MESSAGE_TIMED_OUT = 3;
Amith Yamasani5be347b2013-03-31 17:44:31 -0700131 private static final int MESSAGE_COPY_SHARED_ACCOUNT = 4;
Fred Quintana60307342009-03-24 22:48:12 -0700132
Fred Quintana56285a62010-12-02 14:20:51 -0800133 private final IAccountAuthenticatorCache mAuthenticatorCache;
Fred Quintana60307342009-03-24 22:48:12 -0700134
135 private static final String TABLE_ACCOUNTS = "accounts";
136 private static final String ACCOUNTS_ID = "_id";
137 private static final String ACCOUNTS_NAME = "name";
138 private static final String ACCOUNTS_TYPE = "type";
Jason Parks1cd7d0e2009-09-28 14:48:34 -0700139 private static final String ACCOUNTS_TYPE_COUNT = "count(type)";
Fred Quintana60307342009-03-24 22:48:12 -0700140 private static final String ACCOUNTS_PASSWORD = "password";
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700141 private static final String ACCOUNTS_PREVIOUS_NAME = "previous_name";
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800142 private static final String ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS =
143 "last_password_entry_time_millis_epoch";
Fred Quintana60307342009-03-24 22:48:12 -0700144
145 private static final String TABLE_AUTHTOKENS = "authtokens";
146 private static final String AUTHTOKENS_ID = "_id";
147 private static final String AUTHTOKENS_ACCOUNTS_ID = "accounts_id";
148 private static final String AUTHTOKENS_TYPE = "type";
149 private static final String AUTHTOKENS_AUTHTOKEN = "authtoken";
150
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700151 private static final String TABLE_GRANTS = "grants";
152 private static final String GRANTS_ACCOUNTS_ID = "accounts_id";
153 private static final String GRANTS_AUTH_TOKEN_TYPE = "auth_token_type";
154 private static final String GRANTS_GRANTEE_UID = "uid";
155
Fred Quintana60307342009-03-24 22:48:12 -0700156 private static final String TABLE_EXTRAS = "extras";
157 private static final String EXTRAS_ID = "_id";
158 private static final String EXTRAS_ACCOUNTS_ID = "accounts_id";
159 private static final String EXTRAS_KEY = "key";
160 private static final String EXTRAS_VALUE = "value";
161
162 private static final String TABLE_META = "meta";
163 private static final String META_KEY = "key";
164 private static final String META_VALUE = "value";
165
Amith Yamasani67df64b2012-12-14 12:09:36 -0800166 private static final String TABLE_SHARED_ACCOUNTS = "shared_accounts";
167
Jason Parks1cd7d0e2009-09-28 14:48:34 -0700168 private static final String[] ACCOUNT_TYPE_COUNT_PROJECTION =
169 new String[] { ACCOUNTS_TYPE, ACCOUNTS_TYPE_COUNT};
Fred Quintana7be59642009-08-24 18:29:25 -0700170 private static final Intent ACCOUNTS_CHANGED_INTENT;
Carlos Valdivia91979be2015-05-22 14:11:35 -0700171 static {
172 ACCOUNTS_CHANGED_INTENT = new Intent(AccountManager.LOGIN_ACCOUNTS_CHANGED_ACTION);
173 ACCOUNTS_CHANGED_INTENT.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
174 }
Fred Quintanaa698f422009-04-08 19:14:54 -0700175
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700176 private static final String COUNT_OF_MATCHING_GRANTS = ""
177 + "SELECT COUNT(*) FROM " + TABLE_GRANTS + ", " + TABLE_ACCOUNTS
178 + " WHERE " + GRANTS_ACCOUNTS_ID + "=" + ACCOUNTS_ID
179 + " AND " + GRANTS_GRANTEE_UID + "=?"
180 + " AND " + GRANTS_AUTH_TOKEN_TYPE + "=?"
181 + " AND " + ACCOUNTS_NAME + "=?"
182 + " AND " + ACCOUNTS_TYPE + "=?";
183
Fred Quintana56285a62010-12-02 14:20:51 -0800184 private static final String SELECTION_AUTHTOKENS_BY_ACCOUNT =
185 AUTHTOKENS_ACCOUNTS_ID + "=(select _id FROM accounts WHERE name=? AND type=?)";
Carlos Valdivia91979be2015-05-22 14:11:35 -0700186
Fred Quintana56285a62010-12-02 14:20:51 -0800187 private static final String[] COLUMNS_AUTHTOKENS_TYPE_AND_AUTHTOKEN = {AUTHTOKENS_TYPE,
188 AUTHTOKENS_AUTHTOKEN};
189
190 private static final String SELECTION_USERDATA_BY_ACCOUNT =
191 EXTRAS_ACCOUNTS_ID + "=(select _id FROM accounts WHERE name=? AND type=?)";
192 private static final String[] COLUMNS_EXTRAS_KEY_AND_VALUE = {EXTRAS_KEY, EXTRAS_VALUE};
193
Fred Quintanaa698f422009-04-08 19:14:54 -0700194 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700195 private final AtomicInteger mNotificationIds = new AtomicInteger(1);
196
Amith Yamasani04e0d262012-02-14 11:50:53 -0800197 static class UserAccounts {
198 private final int userId;
199 private final DatabaseHelper openHelper;
200 private final HashMap<Pair<Pair<Account, String>, Integer>, Integer>
201 credentialsPermissionNotificationIds =
202 new HashMap<Pair<Pair<Account, String>, Integer>, Integer>();
203 private final HashMap<Account, Integer> signinRequiredNotificationIds =
204 new HashMap<Account, Integer>();
205 private final Object cacheLock = new Object();
206 /** protected by the {@link #cacheLock} */
Amith Yamasanib483a992012-05-22 13:14:25 -0700207 private final HashMap<String, Account[]> accountCache =
208 new LinkedHashMap<String, Account[]>();
Amith Yamasani04e0d262012-02-14 11:50:53 -0800209 /** protected by the {@link #cacheLock} */
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800210 private final HashMap<Account, HashMap<String, String>> userDataCache =
Amith Yamasani04e0d262012-02-14 11:50:53 -0800211 new HashMap<Account, HashMap<String, String>>();
212 /** protected by the {@link #cacheLock} */
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800213 private final HashMap<Account, HashMap<String, String>> authTokenCache =
Amith Yamasani04e0d262012-02-14 11:50:53 -0800214 new HashMap<Account, HashMap<String, String>>();
Carlos Valdivia91979be2015-05-22 14:11:35 -0700215
216 /** protected by the {@link #cacheLock} */
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700217 private final TokenCache accountTokenCaches = new TokenCache();
Carlos Valdivia91979be2015-05-22 14:11:35 -0700218
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700219 /**
220 * protected by the {@link #cacheLock}
221 *
222 * Caches the previous names associated with an account. Previous names
223 * should be cached because we expect that when an Account is renamed,
224 * many clients will receive a LOGIN_ACCOUNTS_CHANGED broadcast and
225 * want to know if the accounts they care about have been renamed.
226 *
227 * The previous names are wrapped in an {@link AtomicReference} so that
228 * we can distinguish between those accounts with no previous names and
229 * those whose previous names haven't been cached (yet).
230 */
231 private final HashMap<Account, AtomicReference<String>> previousNameCache =
232 new HashMap<Account, AtomicReference<String>>();
Amith Yamasani04e0d262012-02-14 11:50:53 -0800233
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700234 private int debugDbInsertionPoint = -1;
235 private SQLiteStatement statementForLogging;
236
Amith Yamasani04e0d262012-02-14 11:50:53 -0800237 UserAccounts(Context context, int userId) {
238 this.userId = userId;
239 synchronized (cacheLock) {
240 openHelper = new DatabaseHelper(context, userId);
241 }
242 }
243 }
244
245 private final SparseArray<UserAccounts> mUsers = new SparseArray<UserAccounts>();
246
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700247 private static AtomicReference<AccountManagerService> sThis =
248 new AtomicReference<AccountManagerService>();
Fred Quintana31957f12009-10-21 13:43:10 -0700249 private static final Account[] EMPTY_ACCOUNT_ARRAY = new Account[]{};
Fred Quintana7be59642009-08-24 18:29:25 -0700250
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700251 /**
252 * This should only be called by system code. One should only call this after the service
253 * has started.
254 * @return a reference to the AccountManagerService instance
255 * @hide
256 */
257 public static AccountManagerService getSingleton() {
258 return sThis.get();
259 }
Fred Quintana60307342009-03-24 22:48:12 -0700260
Fred Quintana56285a62010-12-02 14:20:51 -0800261 public AccountManagerService(Context context) {
262 this(context, context.getPackageManager(), new AccountAuthenticatorCache(context));
Fred Quintana60307342009-03-24 22:48:12 -0700263 }
264
Fred Quintana56285a62010-12-02 14:20:51 -0800265 public AccountManagerService(Context context, PackageManager packageManager,
266 IAccountAuthenticatorCache authenticatorCache) {
Fred Quintana60307342009-03-24 22:48:12 -0700267 mContext = context;
Fred Quintana56285a62010-12-02 14:20:51 -0800268 mPackageManager = packageManager;
Fred Quintana60307342009-03-24 22:48:12 -0700269
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700270 mMessageHandler = new MessageHandler(FgThread.get().getLooper());
Fred Quintana60307342009-03-24 22:48:12 -0700271
Fred Quintana56285a62010-12-02 14:20:51 -0800272 mAuthenticatorCache = authenticatorCache;
Fred Quintana5ebbb4a2009-11-09 15:42:20 -0800273 mAuthenticatorCache.setListener(this, null /* Handler */);
Fred Quintana60307342009-03-24 22:48:12 -0700274
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700275 sThis.set(this);
Fred Quintanaafa92b82009-12-01 16:27:03 -0800276
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800277 IntentFilter intentFilter = new IntentFilter();
278 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
279 intentFilter.addDataScheme("package");
280 mContext.registerReceiver(new BroadcastReceiver() {
281 @Override
282 public void onReceive(Context context1, Intent intent) {
Carlos Valdivia23f58262014-09-05 10:52:41 -0700283 // Don't delete accounts when updating a authenticator's
284 // package.
285 if (!intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
286 purgeOldGrantsAll();
287 }
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800288 }
289 }, intentFilter);
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800290
Amith Yamasani13593602012-03-22 16:16:17 -0700291 IntentFilter userFilter = new IntentFilter();
292 userFilter.addAction(Intent.ACTION_USER_REMOVED);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800293 userFilter.addAction(Intent.ACTION_USER_STARTED);
294 mContext.registerReceiverAsUser(new BroadcastReceiver() {
Amith Yamasani13593602012-03-22 16:16:17 -0700295 @Override
296 public void onReceive(Context context, Intent intent) {
Amith Yamasani67df64b2012-12-14 12:09:36 -0800297 String action = intent.getAction();
298 if (Intent.ACTION_USER_REMOVED.equals(action)) {
299 onUserRemoved(intent);
300 } else if (Intent.ACTION_USER_STARTED.equals(action)) {
301 onUserStarted(intent);
302 }
Amith Yamasani13593602012-03-22 16:16:17 -0700303 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800304 }, UserHandle.ALL, userFilter, null, null);
Fred Quintanaafa92b82009-12-01 16:27:03 -0800305 }
306
Dianne Hackborn164371f2013-10-01 19:10:13 -0700307 @Override
308 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
309 throws RemoteException {
310 try {
311 return super.onTransact(code, data, reply, flags);
312 } catch (RuntimeException e) {
313 // The account manager only throws security exceptions, so let's
314 // log all others.
315 if (!(e instanceof SecurityException)) {
316 Slog.wtf(TAG, "Account Manager Crash", e);
317 }
318 throw e;
319 }
320 }
321
Kenny Root26ff6622012-07-30 12:58:03 -0700322 public void systemReady() {
Kenny Root26ff6622012-07-30 12:58:03 -0700323 }
324
Amith Yamasani258848d2012-08-10 17:06:33 -0700325 private UserManager getUserManager() {
326 if (mUserManager == null) {
Amith Yamasani27db4682013-03-30 17:07:47 -0700327 mUserManager = UserManager.get(mContext);
Amith Yamasani258848d2012-08-10 17:06:33 -0700328 }
329 return mUserManager;
330 }
331
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700332 /* Caller should lock mUsers */
333 private UserAccounts initUserLocked(int userId) {
334 UserAccounts accounts = mUsers.get(userId);
335 if (accounts == null) {
336 accounts = new UserAccounts(mContext, userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700337 initializeDebugDbSizeAndCompileSqlStatementForLogging(
338 accounts.openHelper.getWritableDatabase(), accounts);
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700339 mUsers.append(userId, accounts);
340 purgeOldGrants(accounts);
341 validateAccountsInternal(accounts, true /* invalidateAuthenticatorCache */);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800342 }
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700343 return accounts;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800344 }
345
346 private void purgeOldGrantsAll() {
347 synchronized (mUsers) {
348 for (int i = 0; i < mUsers.size(); i++) {
349 purgeOldGrants(mUsers.valueAt(i));
350 }
351 }
352 }
353
354 private void purgeOldGrants(UserAccounts accounts) {
355 synchronized (accounts.cacheLock) {
356 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800357 final Cursor cursor = db.query(TABLE_GRANTS,
358 new String[]{GRANTS_GRANTEE_UID},
359 null, null, GRANTS_GRANTEE_UID, null, null);
360 try {
361 while (cursor.moveToNext()) {
362 final int uid = cursor.getInt(0);
363 final boolean packageExists = mPackageManager.getPackagesForUid(uid) != null;
364 if (packageExists) {
365 continue;
366 }
367 Log.d(TAG, "deleting grants for UID " + uid
368 + " because its package is no longer installed");
369 db.delete(TABLE_GRANTS, GRANTS_GRANTEE_UID + "=?",
370 new String[]{Integer.toString(uid)});
371 }
372 } finally {
373 cursor.close();
374 }
375 }
376 }
377
Jeff Sharkey6eb96202012-10-10 13:13:54 -0700378 /**
379 * Validate internal set of accounts against installed authenticators for
380 * given user. Clears cached authenticators before validating.
381 */
382 public void validateAccounts(int userId) {
383 final UserAccounts accounts = getUserAccounts(userId);
384
385 // Invalidate user-specific cache to make sure we catch any
386 // removed authenticators.
387 validateAccountsInternal(accounts, true /* invalidateAuthenticatorCache */);
388 }
389
390 /**
391 * Validate internal set of accounts against installed authenticators for
392 * given user. Clear cached authenticators before validating when requested.
393 */
394 private void validateAccountsInternal(
395 UserAccounts accounts, boolean invalidateAuthenticatorCache) {
396 if (invalidateAuthenticatorCache) {
397 mAuthenticatorCache.invalidateCache(accounts.userId);
398 }
399
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700400 final HashSet<AuthenticatorDescription> knownAuth = Sets.newHashSet();
401 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> service :
402 mAuthenticatorCache.getAllServices(accounts.userId)) {
403 knownAuth.add(service.type);
404 }
405
Amith Yamasani04e0d262012-02-14 11:50:53 -0800406 synchronized (accounts.cacheLock) {
407 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800408 boolean accountDeleted = false;
409 Cursor cursor = db.query(TABLE_ACCOUNTS,
410 new String[]{ACCOUNTS_ID, ACCOUNTS_TYPE, ACCOUNTS_NAME},
Marvin Paul48fcd4e2014-12-01 18:26:07 -0800411 null, null, null, null, ACCOUNTS_ID);
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800412 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800413 accounts.accountCache.clear();
Fred Quintana56285a62010-12-02 14:20:51 -0800414 final HashMap<String, ArrayList<String>> accountNamesByType =
Amith Yamasanib483a992012-05-22 13:14:25 -0700415 new LinkedHashMap<String, ArrayList<String>>();
Fred Quintana56285a62010-12-02 14:20:51 -0800416 while (cursor.moveToNext()) {
417 final long accountId = cursor.getLong(0);
418 final String accountType = cursor.getString(1);
419 final String accountName = cursor.getString(2);
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700420
421 if (!knownAuth.contains(AuthenticatorDescription.newKey(accountType))) {
Jeff Sharkey6eb96202012-10-10 13:13:54 -0700422 Slog.w(TAG, "deleting account " + accountName + " because type "
Fred Quintana56285a62010-12-02 14:20:51 -0800423 + accountType + " no longer has a registered authenticator");
424 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
425 accountDeleted = true;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700426
427 logRecord(db, DebugDbHelper.ACTION_AUTHENTICATOR_REMOVE, TABLE_ACCOUNTS,
428 accountId, accounts);
429
Fred Quintana56285a62010-12-02 14:20:51 -0800430 final Account account = new Account(accountName, accountType);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800431 accounts.userDataCache.remove(account);
432 accounts.authTokenCache.remove(account);
Carlos Valdivia91979be2015-05-22 14:11:35 -0700433 accounts.accountTokenCaches.remove(account);
Fred Quintana56285a62010-12-02 14:20:51 -0800434 } else {
435 ArrayList<String> accountNames = accountNamesByType.get(accountType);
436 if (accountNames == null) {
437 accountNames = new ArrayList<String>();
438 accountNamesByType.put(accountType, accountNames);
439 }
440 accountNames.add(accountName);
441 }
442 }
Andy McFadden2f362292012-01-20 14:43:38 -0800443 for (Map.Entry<String, ArrayList<String>> cur
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800444 : accountNamesByType.entrySet()) {
Fred Quintana56285a62010-12-02 14:20:51 -0800445 final String accountType = cur.getKey();
446 final ArrayList<String> accountNames = cur.getValue();
447 final Account[] accountsForType = new Account[accountNames.size()];
448 int i = 0;
449 for (String accountName : accountNames) {
450 accountsForType[i] = new Account(accountName, accountType);
451 ++i;
452 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800453 accounts.accountCache.put(accountType, accountsForType);
Fred Quintanaafa92b82009-12-01 16:27:03 -0800454 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800455 } finally {
456 cursor.close();
457 if (accountDeleted) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800458 sendAccountsChangedBroadcast(accounts.userId);
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800459 }
Fred Quintanaafa92b82009-12-01 16:27:03 -0800460 }
461 }
Fred Quintana3ecd5f42009-09-17 12:42:35 -0700462 }
463
Amith Yamasani04e0d262012-02-14 11:50:53 -0800464 private UserAccounts getUserAccountsForCaller() {
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700465 return getUserAccounts(UserHandle.getCallingUserId());
Amith Yamasani04e0d262012-02-14 11:50:53 -0800466 }
467
468 protected UserAccounts getUserAccounts(int userId) {
469 synchronized (mUsers) {
470 UserAccounts accounts = mUsers.get(userId);
471 if (accounts == null) {
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700472 accounts = initUserLocked(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800473 mUsers.append(userId, accounts);
474 }
475 return accounts;
476 }
477 }
478
Amith Yamasani13593602012-03-22 16:16:17 -0700479 private void onUserRemoved(Intent intent) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700480 int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
Amith Yamasani13593602012-03-22 16:16:17 -0700481 if (userId < 1) return;
482
483 UserAccounts accounts;
484 synchronized (mUsers) {
485 accounts = mUsers.get(userId);
486 mUsers.remove(userId);
487 }
488 if (accounts == null) {
489 File dbFile = new File(getDatabaseName(userId));
490 dbFile.delete();
491 return;
492 }
493
494 synchronized (accounts.cacheLock) {
495 accounts.openHelper.close();
496 File dbFile = new File(getDatabaseName(userId));
497 dbFile.delete();
498 }
499 }
500
Amith Yamasani67df64b2012-12-14 12:09:36 -0800501 private void onUserStarted(Intent intent) {
502 int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
503 if (userId < 1) return;
504
505 // Check if there's a shared account that needs to be created as an account
506 Account[] sharedAccounts = getSharedAccountsAsUser(userId);
507 if (sharedAccounts == null || sharedAccounts.length == 0) return;
508 Account[] accounts = getAccountsAsUser(null, userId);
509 for (Account sa : sharedAccounts) {
510 if (ArrayUtils.contains(accounts, sa)) continue;
511 // Account doesn't exist. Copy it now.
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000512 copyAccountToUser(null /*no response*/, sa, UserHandle.USER_OWNER, userId);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800513 }
514 }
515
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700516 @Override
517 public void onServiceChanged(AuthenticatorDescription desc, int userId, boolean removed) {
Jeff Sharkey6eb96202012-10-10 13:13:54 -0700518 validateAccountsInternal(getUserAccounts(userId), false /* invalidateAuthenticatorCache */);
Fred Quintana60307342009-03-24 22:48:12 -0700519 }
520
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800521 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -0700522 public String getPassword(Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700523 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800524 if (Log.isLoggable(TAG, Log.VERBOSE)) {
525 Log.v(TAG, "getPassword: " + account
526 + ", caller's uid " + Binder.getCallingUid()
527 + ", pid " + Binder.getCallingPid());
528 }
Fred Quintana382601f2010-03-25 12:25:10 -0700529 if (account == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700530 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700531 String msg = String.format(
532 "uid %s cannot get secrets for accounts of type: %s",
533 callingUid,
534 account.type);
535 throw new SecurityException(msg);
536 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800537 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700538 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -0700539 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800540 return readPasswordInternal(accounts, account);
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700541 } finally {
542 restoreCallingIdentity(identityToken);
543 }
544 }
545
Amith Yamasani04e0d262012-02-14 11:50:53 -0800546 private String readPasswordInternal(UserAccounts accounts, Account account) {
Fred Quintana31957f12009-10-21 13:43:10 -0700547 if (account == null) {
548 return null;
549 }
550
Amith Yamasani04e0d262012-02-14 11:50:53 -0800551 synchronized (accounts.cacheLock) {
552 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800553 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_PASSWORD},
554 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
555 new String[]{account.name, account.type}, null, null, null);
556 try {
557 if (cursor.moveToNext()) {
558 return cursor.getString(0);
559 }
560 return null;
561 } finally {
562 cursor.close();
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700563 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700564 }
565 }
566
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800567 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700568 public String getPreviousName(Account account) {
569 if (Log.isLoggable(TAG, Log.VERBOSE)) {
570 Log.v(TAG, "getPreviousName: " + account
571 + ", caller's uid " + Binder.getCallingUid()
572 + ", pid " + Binder.getCallingPid());
573 }
574 if (account == null) throw new IllegalArgumentException("account is null");
575 UserAccounts accounts = getUserAccountsForCaller();
576 long identityToken = clearCallingIdentity();
577 try {
578 return readPreviousNameInternal(accounts, account);
579 } finally {
580 restoreCallingIdentity(identityToken);
581 }
582 }
583
584 private String readPreviousNameInternal(UserAccounts accounts, Account account) {
585 if (account == null) {
586 return null;
587 }
588 synchronized (accounts.cacheLock) {
589 AtomicReference<String> previousNameRef = accounts.previousNameCache.get(account);
590 if (previousNameRef == null) {
591 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
592 Cursor cursor = db.query(
593 TABLE_ACCOUNTS,
594 new String[]{ ACCOUNTS_PREVIOUS_NAME },
595 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
596 new String[] { account.name, account.type },
597 null,
598 null,
599 null);
600 try {
601 if (cursor.moveToNext()) {
602 String previousName = cursor.getString(0);
603 previousNameRef = new AtomicReference<String>(previousName);
604 accounts.previousNameCache.put(account, previousNameRef);
605 return previousName;
606 } else {
607 return null;
608 }
609 } finally {
610 cursor.close();
611 }
612 } else {
613 return previousNameRef.get();
614 }
615 }
616 }
617
618 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700619 public String getUserData(Account account, String key) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700620 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800621 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700622 String msg = String.format("getUserData( account: %s, key: %s, callerUid: %s, pid: %s",
623 account, key, callingUid, Binder.getCallingPid());
624 Log.v(TAG, msg);
Fred Quintana56285a62010-12-02 14:20:51 -0800625 }
Fred Quintana382601f2010-03-25 12:25:10 -0700626 if (account == null) throw new IllegalArgumentException("account is null");
627 if (key == null) throw new IllegalArgumentException("key is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700628 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700629 String msg = String.format(
630 "uid %s cannot get user data for accounts of type: %s",
631 callingUid,
632 account.type);
633 throw new SecurityException(msg);
634 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800635 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700636 long identityToken = clearCallingIdentity();
637 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800638 return readUserDataInternal(accounts, account, key);
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700639 } finally {
640 restoreCallingIdentity(identityToken);
641 }
642 }
643
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800644 @Override
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100645 public AuthenticatorDescription[] getAuthenticatorTypes(int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700646 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800647 if (Log.isLoggable(TAG, Log.VERBOSE)) {
648 Log.v(TAG, "getAuthenticatorTypes: "
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100649 + "for user id " + userId
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700650 + "caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -0800651 + ", pid " + Binder.getCallingPid());
652 }
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100653 // Only allow the system process to read accounts of other users
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700654 if (isCrossUser(callingUid, userId)) {
655 throw new SecurityException(
656 String.format(
657 "User %s tying to get authenticator types for %s" ,
658 UserHandle.getCallingUserId(),
659 userId));
660 }
661
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700662 final long identityToken = clearCallingIdentity();
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700663 try {
Fred Quintana97889762009-06-15 12:29:24 -0700664 Collection<AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription>>
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700665 authenticatorCollection = mAuthenticatorCache.getAllServices(userId);
Fred Quintana97889762009-06-15 12:29:24 -0700666 AuthenticatorDescription[] types =
667 new AuthenticatorDescription[authenticatorCollection.size()];
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700668 int i = 0;
Fred Quintana97889762009-06-15 12:29:24 -0700669 for (AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription> authenticator
Fred Quintana718d8a22009-04-29 17:53:20 -0700670 : authenticatorCollection) {
671 types[i] = authenticator.type;
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700672 i++;
673 }
674 return types;
675 } finally {
676 restoreCallingIdentity(identityToken);
Fred Quintanaa698f422009-04-08 19:14:54 -0700677 }
Fred Quintanaa698f422009-04-08 19:14:54 -0700678 }
679
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700680 private boolean isCrossUser(int callingUid, int userId) {
681 return (userId != UserHandle.getCallingUserId()
682 && callingUid != Process.myUid()
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100683 && mContext.checkCallingOrSelfPermission(
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700684 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
685 != PackageManager.PERMISSION_GRANTED);
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100686 }
687
Jatin Lodhia3df7d692013-03-27 10:57:23 -0700688 @Override
Amith Yamasani27db4682013-03-30 17:07:47 -0700689 public boolean addAccountExplicitly(Account account, String password, Bundle extras) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700690 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800691 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Amith Yamasani27db4682013-03-30 17:07:47 -0700692 Log.v(TAG, "addAccountExplicitly: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700693 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -0800694 + ", pid " + Binder.getCallingPid());
695 }
Fred Quintana382601f2010-03-25 12:25:10 -0700696 if (account == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700697 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700698 String msg = String.format(
699 "uid %s cannot explicitly add accounts of type: %s",
700 callingUid,
701 account.type);
702 throw new SecurityException(msg);
703 }
Jatin Lodhia3df7d692013-03-27 10:57:23 -0700704 /*
705 * Child users are not allowed to add accounts. Only the accounts that are
706 * shared by the parent profile can be added to child profile.
707 *
708 * TODO: Only allow accounts that were shared to be added by
709 * a limited user.
710 */
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700711
Amith Yamasani04e0d262012-02-14 11:50:53 -0800712 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana60307342009-03-24 22:48:12 -0700713 // fails if the account already exists
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700714 int uid = getCallingUid();
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700715 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -0700716 try {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700717 return addAccountInternal(accounts, account, password, extras, false, uid);
Fred Quintana60307342009-03-24 22:48:12 -0700718 } finally {
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700719 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -0700720 }
721 }
722
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000723 @Override
724 public void copyAccountToUser(final IAccountManagerResponse response, final Account account,
725 int userFrom, int userTo) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700726 int callingUid = Binder.getCallingUid();
727 if (isCrossUser(callingUid, UserHandle.USER_ALL)) {
728 throw new SecurityException("Calling copyAccountToUser requires "
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000729 + android.Manifest.permission.INTERACT_ACROSS_USERS_FULL);
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700730 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800731 final UserAccounts fromAccounts = getUserAccounts(userFrom);
732 final UserAccounts toAccounts = getUserAccounts(userTo);
733 if (fromAccounts == null || toAccounts == null) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000734 if (response != null) {
735 Bundle result = new Bundle();
736 result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, false);
737 try {
738 response.onResult(result);
739 } catch (RemoteException e) {
740 Slog.w(TAG, "Failed to report error back to the client." + e);
741 }
742 }
743 return;
Amith Yamasani67df64b2012-12-14 12:09:36 -0800744 }
745
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000746 Slog.d(TAG, "Copying account " + account.name
747 + " from user " + userFrom + " to user " + userTo);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800748 long identityToken = clearCallingIdentity();
749 try {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000750 new Session(fromAccounts, response, account.type, false,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800751 false /* stripAuthTokenFromResult */, account.name,
752 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700753 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800754 protected String toDebugString(long now) {
755 return super.toDebugString(now) + ", getAccountCredentialsForClone"
756 + ", " + account.type;
757 }
758
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700759 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800760 public void run() throws RemoteException {
761 mAuthenticator.getAccountCredentialsForCloning(this, account);
762 }
763
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700764 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800765 public void onResult(Bundle result) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000766 if (result != null
767 && result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false)) {
768 // Create a Session for the target user and pass in the bundle
769 completeCloningAccount(response, result, account, toAccounts);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800770 } else {
Amith Yamasani67df64b2012-12-14 12:09:36 -0800771 super.onResult(result);
772 }
773 }
774 }.bind();
775 } finally {
776 restoreCallingIdentity(identityToken);
777 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800778 }
779
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800780 @Override
781 public boolean accountAuthenticated(final Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700782 final int callingUid = Binder.getCallingUid();
783 if (Log.isLoggable(TAG, Log.VERBOSE)) {
784 String msg = String.format(
785 "accountAuthenticated( account: %s, callerUid: %s)",
786 account,
787 callingUid);
788 Log.v(TAG, msg);
789 }
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800790 if (account == null) {
791 throw new IllegalArgumentException("account is null");
792 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700793 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700794 String msg = String.format(
795 "uid %s cannot notify authentication for accounts of type: %s",
796 callingUid,
797 account.type);
798 throw new SecurityException(msg);
799 }
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800800 int userId = Binder.getCallingUserHandle().getIdentifier();
801 if (!canUserModifyAccounts(userId) || !canUserModifyAccountsForType(userId, account.type)) {
802 return false;
803 }
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -0700804 return updateLastAuthenticatedTime(account);
805 }
806
807 private boolean updateLastAuthenticatedTime(Account account) {
808 final UserAccounts accounts = getUserAccountsForCaller();
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800809 synchronized (accounts.cacheLock) {
810 final ContentValues values = new ContentValues();
811 values.put(ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS, System.currentTimeMillis());
812 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
813 int i = db.update(
814 TABLE_ACCOUNTS,
815 values,
816 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE + "=?",
817 new String[] {
818 account.name, account.type
819 });
820 if (i > 0) {
821 return true;
822 }
823 }
824 return false;
825 }
826
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000827 private void completeCloningAccount(IAccountManagerResponse response,
828 final Bundle accountCredentials, final Account account, final UserAccounts targetUser) {
Amith Yamasani67df64b2012-12-14 12:09:36 -0800829 long id = clearCallingIdentity();
830 try {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000831 new Session(targetUser, response, account.type, false,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800832 false /* stripAuthTokenFromResult */, account.name,
833 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700834 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800835 protected String toDebugString(long now) {
836 return super.toDebugString(now) + ", getAccountCredentialsForClone"
837 + ", " + account.type;
838 }
839
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700840 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800841 public void run() throws RemoteException {
Amith Yamasani5be347b2013-03-31 17:44:31 -0700842 // Confirm that the owner's account still exists before this step.
843 UserAccounts owner = getUserAccounts(UserHandle.USER_OWNER);
844 synchronized (owner.cacheLock) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000845 for (Account acc : getAccounts(UserHandle.USER_OWNER)) {
Amith Yamasani5be347b2013-03-31 17:44:31 -0700846 if (acc.equals(account)) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000847 mAuthenticator.addAccountFromCredentials(
848 this, account, accountCredentials);
Amith Yamasani5be347b2013-03-31 17:44:31 -0700849 break;
850 }
851 }
852 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800853 }
854
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700855 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800856 public void onResult(Bundle result) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000857 // TODO: Anything to do if if succedded?
858 // TODO: If it failed: Show error notification? Should we remove the shadow
859 // account to avoid retries?
860 super.onResult(result);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800861 }
862
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700863 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800864 public void onError(int errorCode, String errorMessage) {
865 super.onError(errorCode, errorMessage);
866 // TODO: Show error notification to user
867 // TODO: Should we remove the shadow account so that it doesn't keep trying?
868 }
869
870 }.bind();
871 } finally {
872 restoreCallingIdentity(id);
873 }
874 }
875
Amith Yamasani04e0d262012-02-14 11:50:53 -0800876 private boolean addAccountInternal(UserAccounts accounts, Account account, String password,
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700877 Bundle extras, boolean restricted, int callingUid) {
Fred Quintana743dfad2010-07-15 10:59:25 -0700878 if (account == null) {
879 return false;
880 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800881 synchronized (accounts.cacheLock) {
882 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800883 db.beginTransaction();
884 try {
885 long numMatches = DatabaseUtils.longForQuery(db,
886 "select count(*) from " + TABLE_ACCOUNTS
887 + " WHERE " + ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
888 new String[]{account.name, account.type});
889 if (numMatches > 0) {
890 Log.w(TAG, "insertAccountIntoDatabase: " + account
891 + ", skipping since the account already exists");
892 return false;
893 }
894 ContentValues values = new ContentValues();
895 values.put(ACCOUNTS_NAME, account.name);
896 values.put(ACCOUNTS_TYPE, account.type);
897 values.put(ACCOUNTS_PASSWORD, password);
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800898 values.put(ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS, System.currentTimeMillis());
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800899 long accountId = db.insert(TABLE_ACCOUNTS, ACCOUNTS_NAME, values);
900 if (accountId < 0) {
901 Log.w(TAG, "insertAccountIntoDatabase: " + account
902 + ", skipping the DB insert failed");
903 return false;
904 }
905 if (extras != null) {
906 for (String key : extras.keySet()) {
907 final String value = extras.getString(key);
908 if (insertExtraLocked(db, accountId, key, value) < 0) {
909 Log.w(TAG, "insertAccountIntoDatabase: " + account
910 + ", skipping since insertExtra failed for key " + key);
911 return false;
912 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700913 }
914 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800915 db.setTransactionSuccessful();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700916
917 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_ACCOUNTS, accountId,
918 accounts, callingUid);
919
Amith Yamasani04e0d262012-02-14 11:50:53 -0800920 insertAccountIntoCacheLocked(accounts, account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800921 } finally {
922 db.endTransaction();
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700923 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800924 sendAccountsChangedBroadcast(accounts.userId);
Amith Yamasani5be347b2013-03-31 17:44:31 -0700925 }
926 if (accounts.userId == UserHandle.USER_OWNER) {
927 addAccountToLimitedUsers(account);
928 }
929 return true;
930 }
931
932 /**
933 * Adds the account to all limited users as shared accounts. If the user is currently
934 * running, then clone the account too.
935 * @param account the account to share with limited users
936 */
937 private void addAccountToLimitedUsers(Account account) {
Mita Yunf4c240e2013-04-01 21:12:43 -0700938 List<UserInfo> users = getUserManager().getUsers();
Amith Yamasani5be347b2013-03-31 17:44:31 -0700939 for (UserInfo user : users) {
940 if (user.isRestricted()) {
941 addSharedAccountAsUser(account, user.id);
942 try {
943 if (ActivityManagerNative.getDefault().isUserRunning(user.id, false)) {
944 mMessageHandler.sendMessage(mMessageHandler.obtainMessage(
945 MESSAGE_COPY_SHARED_ACCOUNT, UserHandle.USER_OWNER, user.id,
946 account));
947 }
948 } catch (RemoteException re) {
949 // Shouldn't happen
950 }
951 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700952 }
953 }
954
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800955 private long insertExtraLocked(SQLiteDatabase db, long accountId, String key, String value) {
Fred Quintana60307342009-03-24 22:48:12 -0700956 ContentValues values = new ContentValues();
957 values.put(EXTRAS_KEY, key);
958 values.put(EXTRAS_ACCOUNTS_ID, accountId);
959 values.put(EXTRAS_VALUE, value);
960 return db.insert(TABLE_EXTRAS, EXTRAS_KEY, values);
961 }
962
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800963 @Override
Fred Quintana3084a6f2010-01-14 18:02:03 -0800964 public void hasFeatures(IAccountManagerResponse response,
Fred Quintanabb68a4f2010-01-13 17:28:39 -0800965 Account account, String[] features) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700966 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800967 if (Log.isLoggable(TAG, Log.VERBOSE)) {
968 Log.v(TAG, "hasFeatures: " + account
969 + ", response " + response
970 + ", features " + stringArrayToString(features)
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700971 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -0800972 + ", pid " + Binder.getCallingPid());
973 }
Fred Quintana382601f2010-03-25 12:25:10 -0700974 if (response == null) throw new IllegalArgumentException("response is null");
975 if (account == null) throw new IllegalArgumentException("account is null");
976 if (features == null) throw new IllegalArgumentException("features is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700977 checkReadAccountsPermitted(callingUid, account.type);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800978 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintanabb68a4f2010-01-13 17:28:39 -0800979 long identityToken = clearCallingIdentity();
980 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800981 new TestFeaturesSession(accounts, response, account, features).bind();
Fred Quintanabb68a4f2010-01-13 17:28:39 -0800982 } finally {
983 restoreCallingIdentity(identityToken);
984 }
985 }
986
987 private class TestFeaturesSession extends Session {
988 private final String[] mFeatures;
989 private final Account mAccount;
990
Amith Yamasani04e0d262012-02-14 11:50:53 -0800991 public TestFeaturesSession(UserAccounts accounts, IAccountManagerResponse response,
Fred Quintanabb68a4f2010-01-13 17:28:39 -0800992 Account account, String[] features) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800993 super(accounts, response, account.type, false /* expectActivityLaunch */,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800994 true /* stripAuthTokenFromResult */, account.name,
995 false /* authDetailsRequired */);
Fred Quintanabb68a4f2010-01-13 17:28:39 -0800996 mFeatures = features;
997 mAccount = account;
998 }
999
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001000 @Override
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001001 public void run() throws RemoteException {
1002 try {
1003 mAuthenticator.hasFeatures(this, mAccount, mFeatures);
1004 } catch (RemoteException e) {
1005 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "remote exception");
1006 }
1007 }
1008
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001009 @Override
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001010 public void onResult(Bundle result) {
1011 IAccountManagerResponse response = getResponseAndClose();
1012 if (response != null) {
1013 try {
1014 if (result == null) {
Fred Quintana166466d2011-10-24 14:51:40 -07001015 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001016 return;
1017 }
Fred Quintana56285a62010-12-02 14:20:51 -08001018 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1019 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
1020 + response);
1021 }
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001022 final Bundle newResult = new Bundle();
1023 newResult.putBoolean(AccountManager.KEY_BOOLEAN_RESULT,
1024 result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false));
1025 response.onResult(newResult);
1026 } catch (RemoteException e) {
1027 // if the caller is dead then there is no one to care about remote exceptions
1028 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1029 Log.v(TAG, "failure while notifying response", e);
1030 }
1031 }
1032 }
1033 }
1034
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001035 @Override
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001036 protected String toDebugString(long now) {
Fred Quintana3084a6f2010-01-14 18:02:03 -08001037 return super.toDebugString(now) + ", hasFeatures"
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001038 + ", " + mAccount
1039 + ", " + (mFeatures != null ? TextUtils.join(",", mFeatures) : null);
1040 }
1041 }
Fred Quintana307da1a2010-01-21 14:24:20 -08001042
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001043 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001044 public void renameAccount(
1045 IAccountManagerResponse response, Account accountToRename, String newName) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001046 final int callingUid = Binder.getCallingUid();
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001047 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1048 Log.v(TAG, "renameAccount: " + accountToRename + " -> " + newName
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001049 + ", caller's uid " + callingUid
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001050 + ", pid " + Binder.getCallingPid());
1051 }
1052 if (accountToRename == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001053 if (!isAccountManagedByCaller(accountToRename.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001054 String msg = String.format(
1055 "uid %s cannot rename accounts of type: %s",
1056 callingUid,
1057 accountToRename.type);
1058 throw new SecurityException(msg);
1059 }
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001060 UserAccounts accounts = getUserAccountsForCaller();
1061 long identityToken = clearCallingIdentity();
1062 try {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001063 Account resultingAccount = renameAccountInternal(accounts, accountToRename, newName);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001064 Bundle result = new Bundle();
1065 result.putString(AccountManager.KEY_ACCOUNT_NAME, resultingAccount.name);
1066 result.putString(AccountManager.KEY_ACCOUNT_TYPE, resultingAccount.type);
1067 try {
1068 response.onResult(result);
1069 } catch (RemoteException e) {
1070 Log.w(TAG, e.getMessage());
1071 }
1072 } finally {
1073 restoreCallingIdentity(identityToken);
1074 }
1075 }
1076
1077 private Account renameAccountInternal(
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001078 UserAccounts accounts, Account accountToRename, String newName) {
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001079 Account resultAccount = null;
1080 /*
1081 * Cancel existing notifications. Let authenticators
1082 * re-post notifications as required. But we don't know if
1083 * the authenticators have bound their notifications to
1084 * now stale account name data.
1085 *
1086 * With a rename api, we might not need to do this anymore but it
1087 * shouldn't hurt.
1088 */
1089 cancelNotification(
1090 getSigninRequiredNotificationId(accounts, accountToRename),
1091 new UserHandle(accounts.userId));
1092 synchronized(accounts.credentialsPermissionNotificationIds) {
1093 for (Pair<Pair<Account, String>, Integer> pair:
1094 accounts.credentialsPermissionNotificationIds.keySet()) {
1095 if (accountToRename.equals(pair.first.first)) {
1096 int id = accounts.credentialsPermissionNotificationIds.get(pair);
1097 cancelNotification(id, new UserHandle(accounts.userId));
1098 }
1099 }
1100 }
1101 synchronized (accounts.cacheLock) {
1102 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
1103 db.beginTransaction();
1104 boolean isSuccessful = false;
1105 Account renamedAccount = new Account(newName, accountToRename.type);
1106 try {
1107 final ContentValues values = new ContentValues();
1108 values.put(ACCOUNTS_NAME, newName);
1109 values.put(ACCOUNTS_PREVIOUS_NAME, accountToRename.name);
1110 final long accountId = getAccountIdLocked(db, accountToRename);
1111 if (accountId >= 0) {
1112 final String[] argsAccountId = { String.valueOf(accountId) };
1113 db.update(TABLE_ACCOUNTS, values, ACCOUNTS_ID + "=?", argsAccountId);
1114 db.setTransactionSuccessful();
1115 isSuccessful = true;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001116 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_RENAME, TABLE_ACCOUNTS, accountId,
1117 accounts);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001118 }
1119 } finally {
1120 db.endTransaction();
1121 if (isSuccessful) {
1122 /*
1123 * Database transaction was successful. Clean up cached
1124 * data associated with the account in the user profile.
1125 */
1126 insertAccountIntoCacheLocked(accounts, renamedAccount);
1127 /*
1128 * Extract the data and token caches before removing the
1129 * old account to preserve the user data associated with
1130 * the account.
1131 */
1132 HashMap<String, String> tmpData = accounts.userDataCache.get(accountToRename);
1133 HashMap<String, String> tmpTokens = accounts.authTokenCache.get(accountToRename);
1134 removeAccountFromCacheLocked(accounts, accountToRename);
1135 /*
1136 * Update the cached data associated with the renamed
1137 * account.
1138 */
1139 accounts.userDataCache.put(renamedAccount, tmpData);
1140 accounts.authTokenCache.put(renamedAccount, tmpTokens);
1141 accounts.previousNameCache.put(
1142 renamedAccount,
1143 new AtomicReference<String>(accountToRename.name));
1144 resultAccount = renamedAccount;
1145
1146 if (accounts.userId == UserHandle.USER_OWNER) {
1147 /*
1148 * Owner's account was renamed, rename the account for
1149 * those users with which the account was shared.
1150 */
1151 List<UserInfo> users = mUserManager.getUsers(true);
1152 for (UserInfo user : users) {
1153 if (!user.isPrimary() && user.isRestricted()) {
1154 renameSharedAccountAsUser(accountToRename, newName, user.id);
1155 }
1156 }
1157 }
1158 sendAccountsChangedBroadcast(accounts.userId);
1159 }
1160 }
1161 }
1162 return resultAccount;
1163 }
1164
1165 @Override
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001166 public void removeAccount(IAccountManagerResponse response, Account account,
1167 boolean expectActivityLaunch) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001168 removeAccountAsUser(
1169 response,
1170 account,
1171 expectActivityLaunch,
1172 UserHandle.getCallingUserId());
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001173 }
1174
1175 @Override
1176 public void removeAccountAsUser(IAccountManagerResponse response, Account account,
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001177 boolean expectActivityLaunch, int userId) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001178 final int callingUid = Binder.getCallingUid();
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001179 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1180 Log.v(TAG, "removeAccount: " + account
1181 + ", response " + response
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001182 + ", caller's uid " + callingUid
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001183 + ", pid " + Binder.getCallingPid()
1184 + ", for user id " + userId);
1185 }
1186 if (response == null) throw new IllegalArgumentException("response is null");
1187 if (account == null) throw new IllegalArgumentException("account is null");
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001188 // Only allow the system process to modify accounts of other users
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001189 if (isCrossUser(callingUid, userId)) {
1190 throw new SecurityException(
1191 String.format(
1192 "User %s tying remove account for %s" ,
1193 UserHandle.getCallingUserId(),
1194 userId));
1195 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001196 /*
1197 * Only the system or authenticator should be allowed to remove accounts for that
1198 * authenticator. This will let users remove accounts (via Settings in the system) but not
1199 * arbitrary applications (like competing authenticators).
1200 */
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001201 if (!isAccountManagedByCaller(account.type, callingUid) && !isSystemUid(callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001202 String msg = String.format(
1203 "uid %s cannot remove accounts of type: %s",
1204 callingUid,
1205 account.type);
1206 throw new SecurityException(msg);
1207 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001208
1209 UserAccounts accounts = getUserAccounts(userId);
1210 if (!canUserModifyAccounts(userId)) {
1211 try {
1212 response.onError(AccountManager.ERROR_CODE_USER_RESTRICTED,
1213 "User cannot modify accounts");
1214 } catch (RemoteException re) {
1215 }
1216 return;
1217 }
1218 if (!canUserModifyAccountsForType(userId, account.type)) {
1219 try {
1220 response.onError(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
1221 "User cannot modify accounts of this type (policy).");
1222 } catch (RemoteException re) {
1223 }
1224 return;
1225 }
1226
1227 UserHandle user = new UserHandle(userId);
1228 long identityToken = clearCallingIdentity();
1229
1230 cancelNotification(getSigninRequiredNotificationId(accounts, account), user);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001231 synchronized(accounts.credentialsPermissionNotificationIds) {
Costin Manolacheec0c4f42010-11-16 09:57:28 -08001232 for (Pair<Pair<Account, String>, Integer> pair:
Amith Yamasani04e0d262012-02-14 11:50:53 -08001233 accounts.credentialsPermissionNotificationIds.keySet()) {
Costin Manolacheec0c4f42010-11-16 09:57:28 -08001234 if (account.equals(pair.first.first)) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001235 int id = accounts.credentialsPermissionNotificationIds.get(pair);
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001236 cancelNotification(id, user);
Costin Manolacheec0c4f42010-11-16 09:57:28 -08001237 }
1238 }
1239 }
1240
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001241 logRecord(accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_REMOVE, TABLE_ACCOUNTS);
1242
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001243 try {
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001244 new RemoveAccountSession(accounts, response, account, expectActivityLaunch).bind();
1245 } finally {
1246 restoreCallingIdentity(identityToken);
1247 }
1248 }
1249
1250 @Override
1251 public boolean removeAccountExplicitly(Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001252 final int callingUid = Binder.getCallingUid();
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001253 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1254 Log.v(TAG, "removeAccountExplicitly: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001255 + ", caller's uid " + callingUid
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001256 + ", pid " + Binder.getCallingPid());
1257 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001258 if (account == null) {
1259 /*
1260 * Null accounts should result in returning false, as per
1261 * AccountManage.addAccountExplicitly(...) java doc.
1262 */
1263 Log.e(TAG, "account is null");
1264 return false;
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001265 } else if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001266 String msg = String.format(
1267 "uid %s cannot explicitly add accounts of type: %s",
1268 callingUid,
1269 account.type);
1270 throw new SecurityException(msg);
1271 }
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001272
1273 UserAccounts accounts = getUserAccountsForCaller();
1274 int userId = Binder.getCallingUserHandle().getIdentifier();
1275 if (!canUserModifyAccounts(userId) || !canUserModifyAccountsForType(userId, account.type)) {
1276 return false;
1277 }
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001278
1279 logRecord(accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_REMOVE, TABLE_ACCOUNTS);
1280
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001281 long identityToken = clearCallingIdentity();
1282 try {
1283 return removeAccountInternal(accounts, account);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001284 } finally {
1285 restoreCallingIdentity(identityToken);
Fred Quintanaa698f422009-04-08 19:14:54 -07001286 }
Fred Quintana60307342009-03-24 22:48:12 -07001287 }
1288
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001289 private class RemoveAccountSession extends Session {
1290 final Account mAccount;
Amith Yamasani04e0d262012-02-14 11:50:53 -08001291 public RemoveAccountSession(UserAccounts accounts, IAccountManagerResponse response,
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001292 Account account, boolean expectActivityLaunch) {
1293 super(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001294 true /* stripAuthTokenFromResult */, account.name,
1295 false /* authDetailsRequired */);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001296 mAccount = account;
1297 }
1298
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001299 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001300 protected String toDebugString(long now) {
1301 return super.toDebugString(now) + ", removeAccount"
1302 + ", account " + mAccount;
1303 }
1304
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001305 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001306 public void run() throws RemoteException {
1307 mAuthenticator.getAccountRemovalAllowed(this, mAccount);
1308 }
1309
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001310 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001311 public void onResult(Bundle result) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001312 if (result != null && result.containsKey(AccountManager.KEY_BOOLEAN_RESULT)
1313 && !result.containsKey(AccountManager.KEY_INTENT)) {
1314 final boolean removalAllowed = result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001315 if (removalAllowed) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001316 removeAccountInternal(mAccounts, mAccount);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001317 }
1318 IAccountManagerResponse response = getResponseAndClose();
1319 if (response != null) {
Fred Quintana56285a62010-12-02 14:20:51 -08001320 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1321 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
1322 + response);
1323 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001324 Bundle result2 = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001325 result2.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, removalAllowed);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001326 try {
1327 response.onResult(result2);
1328 } catch (RemoteException e) {
1329 // ignore
1330 }
1331 }
1332 }
1333 super.onResult(result);
1334 }
1335 }
1336
Amith Yamasani04e0d262012-02-14 11:50:53 -08001337 /* For testing */
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001338 protected void removeAccountInternal(Account account) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001339 removeAccountInternal(getUserAccountsForCaller(), account);
1340 }
1341
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001342 private boolean removeAccountInternal(UserAccounts accounts, Account account) {
1343 int deleted;
Amith Yamasani04e0d262012-02-14 11:50:53 -08001344 synchronized (accounts.cacheLock) {
1345 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001346 final long accountId = getAccountIdLocked(db, account);
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001347 deleted = db.delete(TABLE_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE
1348 + "=?",
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001349 new String[]{account.name, account.type});
Amith Yamasani04e0d262012-02-14 11:50:53 -08001350 removeAccountFromCacheLocked(accounts, account);
1351 sendAccountsChangedBroadcast(accounts.userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001352
1353 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_REMOVE, TABLE_ACCOUNTS, accountId, accounts);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001354 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08001355 if (accounts.userId == UserHandle.USER_OWNER) {
1356 // Owner's account was removed, remove from any users that are sharing
1357 // this account.
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001358 int callingUid = getCallingUid();
Amith Yamasani67df64b2012-12-14 12:09:36 -08001359 long id = Binder.clearCallingIdentity();
1360 try {
1361 List<UserInfo> users = mUserManager.getUsers(true);
1362 for (UserInfo user : users) {
1363 if (!user.isPrimary() && user.isRestricted()) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001364 removeSharedAccountAsUser(account, user.id, callingUid);
Amith Yamasani67df64b2012-12-14 12:09:36 -08001365 }
1366 }
1367 } finally {
1368 Binder.restoreCallingIdentity(id);
1369 }
1370 }
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001371 return (deleted > 0);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001372 }
1373
Maggie Benthalla12fccf2013-03-14 18:02:12 -04001374 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001375 public void invalidateAuthToken(String accountType, String authToken) {
Carlos Valdivia91979be2015-05-22 14:11:35 -07001376 int callerUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001377 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1378 Log.v(TAG, "invalidateAuthToken: accountType " + accountType
Carlos Valdivia91979be2015-05-22 14:11:35 -07001379 + ", caller's uid " + callerUid
Fred Quintana56285a62010-12-02 14:20:51 -08001380 + ", pid " + Binder.getCallingPid());
1381 }
Fred Quintana382601f2010-03-25 12:25:10 -07001382 if (accountType == null) throw new IllegalArgumentException("accountType is null");
1383 if (authToken == null) throw new IllegalArgumentException("authToken is null");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001384 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001385 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -07001386 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001387 synchronized (accounts.cacheLock) {
1388 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001389 db.beginTransaction();
1390 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001391 invalidateAuthTokenLocked(accounts, db, accountType, authToken);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001392 invalidateCustomTokenLocked(accounts, accountType, authToken);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001393 db.setTransactionSuccessful();
1394 } finally {
1395 db.endTransaction();
1396 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001397 }
Fred Quintana60307342009-03-24 22:48:12 -07001398 } finally {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001399 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07001400 }
1401 }
1402
Carlos Valdivia91979be2015-05-22 14:11:35 -07001403 private void invalidateCustomTokenLocked(
1404 UserAccounts accounts,
1405 String accountType,
1406 String authToken) {
1407 if (authToken == null || accountType == null) {
1408 return;
1409 }
1410 // Also wipe out cached token in memory.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001411 accounts.accountTokenCaches.remove(accountType, authToken);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001412 }
1413
Amith Yamasani04e0d262012-02-14 11:50:53 -08001414 private void invalidateAuthTokenLocked(UserAccounts accounts, SQLiteDatabase db,
1415 String accountType, String authToken) {
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001416 if (authToken == null || accountType == null) {
1417 return;
1418 }
Fred Quintana33269202009-04-20 16:05:10 -07001419 Cursor cursor = db.rawQuery(
1420 "SELECT " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_ID
1421 + ", " + TABLE_ACCOUNTS + "." + ACCOUNTS_NAME
1422 + ", " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_TYPE
1423 + " FROM " + TABLE_ACCOUNTS
1424 + " JOIN " + TABLE_AUTHTOKENS
1425 + " ON " + TABLE_ACCOUNTS + "." + ACCOUNTS_ID
1426 + " = " + AUTHTOKENS_ACCOUNTS_ID
1427 + " WHERE " + AUTHTOKENS_AUTHTOKEN + " = ? AND "
1428 + TABLE_ACCOUNTS + "." + ACCOUNTS_TYPE + " = ?",
1429 new String[]{authToken, accountType});
1430 try {
1431 while (cursor.moveToNext()) {
1432 long authTokenId = cursor.getLong(0);
1433 String accountName = cursor.getString(1);
1434 String authTokenType = cursor.getString(2);
1435 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ID + "=" + authTokenId, null);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001436 writeAuthTokenIntoCacheLocked(
1437 accounts,
1438 db,
1439 new Account(accountName, accountType),
1440 authTokenType,
1441 null);
Fred Quintana60307342009-03-24 22:48:12 -07001442 }
Fred Quintana33269202009-04-20 16:05:10 -07001443 } finally {
1444 cursor.close();
Fred Quintana60307342009-03-24 22:48:12 -07001445 }
1446 }
1447
Carlos Valdivia91979be2015-05-22 14:11:35 -07001448 private void saveCachedToken(
1449 UserAccounts accounts,
1450 Account account,
1451 String callerPkg,
1452 byte[] callerSigDigest,
1453 String tokenType,
1454 String token,
1455 long expiryMillis) {
1456
1457 if (account == null || tokenType == null || callerPkg == null || callerSigDigest == null) {
1458 return;
1459 }
1460 cancelNotification(getSigninRequiredNotificationId(accounts, account),
1461 new UserHandle(accounts.userId));
1462 synchronized (accounts.cacheLock) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001463 accounts.accountTokenCaches.put(
1464 account, token, tokenType, callerPkg, callerSigDigest, expiryMillis);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001465 }
1466 }
1467
Amith Yamasani04e0d262012-02-14 11:50:53 -08001468 private boolean saveAuthTokenToDatabase(UserAccounts accounts, Account account, String type,
1469 String authToken) {
Fred Quintana31957f12009-10-21 13:43:10 -07001470 if (account == null || type == null) {
1471 return false;
1472 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001473 cancelNotification(getSigninRequiredNotificationId(accounts, account),
1474 new UserHandle(accounts.userId));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001475 synchronized (accounts.cacheLock) {
1476 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001477 db.beginTransaction();
1478 try {
1479 long accountId = getAccountIdLocked(db, account);
1480 if (accountId < 0) {
1481 return false;
1482 }
1483 db.delete(TABLE_AUTHTOKENS,
1484 AUTHTOKENS_ACCOUNTS_ID + "=" + accountId + " AND " + AUTHTOKENS_TYPE + "=?",
1485 new String[]{type});
1486 ContentValues values = new ContentValues();
1487 values.put(AUTHTOKENS_ACCOUNTS_ID, accountId);
1488 values.put(AUTHTOKENS_TYPE, type);
1489 values.put(AUTHTOKENS_AUTHTOKEN, authToken);
1490 if (db.insert(TABLE_AUTHTOKENS, AUTHTOKENS_AUTHTOKEN, values) >= 0) {
1491 db.setTransactionSuccessful();
Amith Yamasani04e0d262012-02-14 11:50:53 -08001492 writeAuthTokenIntoCacheLocked(accounts, db, account, type, authToken);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001493 return true;
1494 }
Fred Quintana33269202009-04-20 16:05:10 -07001495 return false;
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001496 } finally {
1497 db.endTransaction();
Fred Quintana33269202009-04-20 16:05:10 -07001498 }
Fred Quintana60307342009-03-24 22:48:12 -07001499 }
1500 }
1501
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001502 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001503 public String peekAuthToken(Account account, String authTokenType) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001504 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001505 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1506 Log.v(TAG, "peekAuthToken: " + account
1507 + ", authTokenType " + authTokenType
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001508 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001509 + ", pid " + Binder.getCallingPid());
1510 }
Fred Quintana382601f2010-03-25 12:25:10 -07001511 if (account == null) throw new IllegalArgumentException("account is null");
1512 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001513 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001514 String msg = String.format(
1515 "uid %s cannot peek the authtokens associated with accounts of type: %s",
1516 callingUid,
1517 account.type);
1518 throw new SecurityException(msg);
1519 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001520 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001521 long identityToken = clearCallingIdentity();
1522 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001523 return readAuthTokenInternal(accounts, account, authTokenType);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001524 } finally {
1525 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07001526 }
Fred Quintana60307342009-03-24 22:48:12 -07001527 }
1528
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001529 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001530 public void setAuthToken(Account account, String authTokenType, String authToken) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001531 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001532 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1533 Log.v(TAG, "setAuthToken: " + account
1534 + ", authTokenType " + authTokenType
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001535 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001536 + ", pid " + Binder.getCallingPid());
1537 }
Fred Quintana382601f2010-03-25 12:25:10 -07001538 if (account == null) throw new IllegalArgumentException("account is null");
1539 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001540 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001541 String msg = String.format(
1542 "uid %s cannot set auth tokens associated with accounts of type: %s",
1543 callingUid,
1544 account.type);
1545 throw new SecurityException(msg);
1546 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001547 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001548 long identityToken = clearCallingIdentity();
1549 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001550 saveAuthTokenToDatabase(accounts, account, authTokenType, authToken);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001551 } finally {
1552 restoreCallingIdentity(identityToken);
1553 }
Fred Quintana60307342009-03-24 22:48:12 -07001554 }
1555
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001556 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001557 public void setPassword(Account account, String password) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001558 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001559 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1560 Log.v(TAG, "setAuthToken: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001561 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001562 + ", pid " + Binder.getCallingPid());
1563 }
Fred Quintana382601f2010-03-25 12:25:10 -07001564 if (account == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001565 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001566 String msg = String.format(
1567 "uid %s cannot set secrets for accounts of type: %s",
1568 callingUid,
1569 account.type);
1570 throw new SecurityException(msg);
1571 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001572 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001573 long identityToken = clearCallingIdentity();
1574 try {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001575 setPasswordInternal(accounts, account, password, callingUid);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001576 } finally {
1577 restoreCallingIdentity(identityToken);
1578 }
Fred Quintana60307342009-03-24 22:48:12 -07001579 }
1580
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001581 private void setPasswordInternal(UserAccounts accounts, Account account, String password,
1582 int callingUid) {
Fred Quintana31957f12009-10-21 13:43:10 -07001583 if (account == null) {
1584 return;
1585 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001586 synchronized (accounts.cacheLock) {
1587 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001588 db.beginTransaction();
1589 try {
1590 final ContentValues values = new ContentValues();
1591 values.put(ACCOUNTS_PASSWORD, password);
1592 final long accountId = getAccountIdLocked(db, account);
1593 if (accountId >= 0) {
1594 final String[] argsAccountId = {String.valueOf(accountId)};
1595 db.update(TABLE_ACCOUNTS, values, ACCOUNTS_ID + "=?", argsAccountId);
1596 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ACCOUNTS_ID + "=?", argsAccountId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001597 accounts.authTokenCache.remove(account);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001598 accounts.accountTokenCaches.remove(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001599 db.setTransactionSuccessful();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001600
1601 String action = (password == null || password.length() == 0) ?
1602 DebugDbHelper.ACTION_CLEAR_PASSWORD
1603 : DebugDbHelper.ACTION_SET_PASSWORD;
1604 logRecord(db, action, TABLE_ACCOUNTS, accountId, accounts, callingUid);
Costin Manolachef5ffe892011-01-19 09:35:32 -08001605 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001606 } finally {
1607 db.endTransaction();
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08001608 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001609 sendAccountsChangedBroadcast(accounts.userId);
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08001610 }
Fred Quintana3ecd5f42009-09-17 12:42:35 -07001611 }
1612
Amith Yamasani04e0d262012-02-14 11:50:53 -08001613 private void sendAccountsChangedBroadcast(int userId) {
Fred Quintana56285a62010-12-02 14:20:51 -08001614 Log.i(TAG, "the accounts changed, sending broadcast of "
1615 + ACCOUNTS_CHANGED_INTENT.getAction());
Dianne Hackborn79af1dd2012-08-16 16:42:52 -07001616 mContext.sendBroadcastAsUser(ACCOUNTS_CHANGED_INTENT, new UserHandle(userId));
Fred Quintana33269202009-04-20 16:05:10 -07001617 }
1618
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001619 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001620 public void clearPassword(Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001621 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001622 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1623 Log.v(TAG, "clearPassword: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001624 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001625 + ", pid " + Binder.getCallingPid());
1626 }
Fred Quintana382601f2010-03-25 12:25:10 -07001627 if (account == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001628 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001629 String msg = String.format(
1630 "uid %s cannot clear passwords for accounts of type: %s",
1631 callingUid,
1632 account.type);
1633 throw new SecurityException(msg);
1634 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001635 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001636 long identityToken = clearCallingIdentity();
1637 try {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001638 setPasswordInternal(accounts, account, null, callingUid);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001639 } finally {
1640 restoreCallingIdentity(identityToken);
1641 }
Fred Quintana60307342009-03-24 22:48:12 -07001642 }
1643
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001644 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001645 public void setUserData(Account account, String key, String value) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001646 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001647 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1648 Log.v(TAG, "setUserData: " + account
1649 + ", key " + key
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001650 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001651 + ", pid " + Binder.getCallingPid());
1652 }
Fred Quintana382601f2010-03-25 12:25:10 -07001653 if (key == null) throw new IllegalArgumentException("key is null");
1654 if (account == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001655 if (!isAccountManagedByCaller(account.type, callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001656 String msg = String.format(
1657 "uid %s cannot set user data for accounts of type: %s",
1658 callingUid,
1659 account.type);
1660 throw new SecurityException(msg);
1661 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001662 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001663 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -07001664 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001665 setUserdataInternal(accounts, account, key, value);
Fred Quintana60307342009-03-24 22:48:12 -07001666 } finally {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001667 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07001668 }
1669 }
1670
Amith Yamasani04e0d262012-02-14 11:50:53 -08001671 private void setUserdataInternal(UserAccounts accounts, Account account, String key,
1672 String value) {
Fred Quintana31957f12009-10-21 13:43:10 -07001673 if (account == null || key == null) {
1674 return;
1675 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001676 synchronized (accounts.cacheLock) {
1677 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001678 db.beginTransaction();
1679 try {
1680 long accountId = getAccountIdLocked(db, account);
1681 if (accountId < 0) {
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001682 return;
1683 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001684 long extrasId = getExtrasIdLocked(db, accountId, key);
1685 if (extrasId < 0 ) {
1686 extrasId = insertExtraLocked(db, accountId, key, value);
1687 if (extrasId < 0) {
1688 return;
1689 }
1690 } else {
1691 ContentValues values = new ContentValues();
1692 values.put(EXTRAS_VALUE, value);
1693 if (1 != db.update(TABLE_EXTRAS, values, EXTRAS_ID + "=" + extrasId, null)) {
1694 return;
1695 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001696
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001697 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001698 writeUserDataIntoCacheLocked(accounts, db, account, key, value);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001699 db.setTransactionSuccessful();
1700 } finally {
1701 db.endTransaction();
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001702 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001703 }
1704 }
1705
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001706 private void onResult(IAccountManagerResponse response, Bundle result) {
Fred Quintana56285a62010-12-02 14:20:51 -08001707 if (result == null) {
1708 Log.e(TAG, "the result is unexpectedly null", new Exception());
1709 }
1710 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1711 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
1712 + response);
1713 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001714 try {
1715 response.onResult(result);
1716 } catch (RemoteException e) {
1717 // if the caller is dead then there is no one to care about remote
1718 // exceptions
1719 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1720 Log.v(TAG, "failure while notifying response", e);
1721 }
1722 }
1723 }
1724
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001725 @Override
Fred Quintanad9640ec2012-05-23 12:37:00 -07001726 public void getAuthTokenLabel(IAccountManagerResponse response, final String accountType,
1727 final String authTokenType)
1728 throws RemoteException {
1729 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Costin Manolache5f383ad92010-12-02 16:44:46 -08001730 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
1731
Fred Quintanad9640ec2012-05-23 12:37:00 -07001732 final int callingUid = getCallingUid();
1733 clearCallingIdentity();
Amith Yamasani27db4682013-03-30 17:07:47 -07001734 if (callingUid != Process.SYSTEM_UID) {
Fred Quintanad9640ec2012-05-23 12:37:00 -07001735 throw new SecurityException("can only call from system");
1736 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001737 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(callingUid));
Costin Manolache5f383ad92010-12-02 16:44:46 -08001738 long identityToken = clearCallingIdentity();
1739 try {
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001740 new Session(accounts, response, accountType, false /* expectActivityLaunch */,
1741 false /* stripAuthTokenFromResult */, null /* accountName */,
1742 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001743 @Override
Costin Manolache5f383ad92010-12-02 16:44:46 -08001744 protected String toDebugString(long now) {
1745 return super.toDebugString(now) + ", getAuthTokenLabel"
Fred Quintanad9640ec2012-05-23 12:37:00 -07001746 + ", " + accountType
Costin Manolache5f383ad92010-12-02 16:44:46 -08001747 + ", authTokenType " + authTokenType;
1748 }
1749
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001750 @Override
Costin Manolache5f383ad92010-12-02 16:44:46 -08001751 public void run() throws RemoteException {
1752 mAuthenticator.getAuthTokenLabel(this, authTokenType);
1753 }
1754
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001755 @Override
Costin Manolache5f383ad92010-12-02 16:44:46 -08001756 public void onResult(Bundle result) {
1757 if (result != null) {
1758 String label = result.getString(AccountManager.KEY_AUTH_TOKEN_LABEL);
1759 Bundle bundle = new Bundle();
1760 bundle.putString(AccountManager.KEY_AUTH_TOKEN_LABEL, label);
1761 super.onResult(bundle);
1762 return;
1763 } else {
1764 super.onResult(result);
1765 }
1766 }
1767 }.bind();
1768 } finally {
1769 restoreCallingIdentity(identityToken);
1770 }
1771 }
1772
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001773 @Override
Carlos Valdivia91979be2015-05-22 14:11:35 -07001774 public void getAuthToken(
1775 IAccountManagerResponse response,
1776 final Account account,
1777 final String authTokenType,
1778 final boolean notifyOnAuthFailure,
1779 final boolean expectActivityLaunch,
1780 final Bundle loginOptions) {
Fred Quintana56285a62010-12-02 14:20:51 -08001781 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1782 Log.v(TAG, "getAuthToken: " + account
1783 + ", response " + response
1784 + ", authTokenType " + authTokenType
1785 + ", notifyOnAuthFailure " + notifyOnAuthFailure
1786 + ", expectActivityLaunch " + expectActivityLaunch
1787 + ", caller's uid " + Binder.getCallingUid()
1788 + ", pid " + Binder.getCallingPid());
1789 }
Fred Quintana382601f2010-03-25 12:25:10 -07001790 if (response == null) throw new IllegalArgumentException("response is null");
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001791 try {
1792 if (account == null) {
1793 Slog.w(TAG, "getAuthToken called with null account");
1794 response.onError(AccountManager.ERROR_CODE_BAD_ARGUMENTS, "account is null");
1795 return;
1796 }
1797 if (authTokenType == null) {
1798 Slog.w(TAG, "getAuthToken called with null authTokenType");
1799 response.onError(AccountManager.ERROR_CODE_BAD_ARGUMENTS, "authTokenType is null");
1800 return;
1801 }
1802 } catch (RemoteException e) {
1803 Slog.w(TAG, "Failed to report error back to the client." + e);
1804 return;
1805 }
1806
Dianne Hackborn41203752012-08-31 14:05:51 -07001807 final UserAccounts accounts = getUserAccountsForCaller();
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07001808 final RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> authenticatorInfo;
1809 authenticatorInfo = mAuthenticatorCache.getServiceInfo(
1810 AuthenticatorDescription.newKey(account.type), accounts.userId);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001811
Costin Manolachea40c6302010-12-13 14:50:45 -08001812 final boolean customTokens =
Carlos Valdivia91979be2015-05-22 14:11:35 -07001813 authenticatorInfo != null && authenticatorInfo.type.customTokens;
Costin Manolachea40c6302010-12-13 14:50:45 -08001814
1815 // skip the check if customTokens
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07001816 final int callerUid = Binder.getCallingUid();
Costin Manolachea40c6302010-12-13 14:50:45 -08001817 final boolean permissionGranted = customTokens ||
1818 permissionIsGranted(account, authTokenType, callerUid);
1819
Carlos Valdivia91979be2015-05-22 14:11:35 -07001820 // Get the calling package. We will use it for the purpose of caching.
1821 final String callerPkg = loginOptions.getString(AccountManager.KEY_ANDROID_PACKAGE_NAME);
Amith Yamasanie7360012015-06-03 17:39:40 -07001822 List<String> callerOwnedPackageNames;
1823 long ident = Binder.clearCallingIdentity();
1824 try {
1825 callerOwnedPackageNames = Arrays.asList(mPackageManager.getPackagesForUid(callerUid));
1826 } finally {
1827 Binder.restoreCallingIdentity(ident);
1828 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001829 if (callerPkg == null || !callerOwnedPackageNames.contains(callerPkg)) {
1830 String msg = String.format(
1831 "Uid %s is attempting to illegally masquerade as package %s!",
1832 callerUid,
1833 callerPkg);
1834 throw new SecurityException(msg);
1835 }
1836
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07001837 // let authenticator know the identity of the caller
1838 loginOptions.putInt(AccountManager.KEY_CALLER_UID, callerUid);
1839 loginOptions.putInt(AccountManager.KEY_CALLER_PID, Binder.getCallingPid());
Carlos Valdivia91979be2015-05-22 14:11:35 -07001840
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07001841 if (notifyOnAuthFailure) {
1842 loginOptions.putBoolean(AccountManager.KEY_NOTIFY_ON_FAILURE, true);
Costin Manolachea40c6302010-12-13 14:50:45 -08001843 }
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07001844
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001845 long identityToken = clearCallingIdentity();
1846 try {
Amith Yamasanie7360012015-06-03 17:39:40 -07001847 // Distill the caller's package signatures into a single digest.
1848 final byte[] callerPkgSigDigest = calculatePackageSignatureDigest(callerPkg);
1849
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001850 // if the caller has permission, do the peek. otherwise go the more expensive
1851 // route of starting a Session
Costin Manolachea40c6302010-12-13 14:50:45 -08001852 if (!customTokens && permissionGranted) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001853 String authToken = readAuthTokenInternal(accounts, account, authTokenType);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001854 if (authToken != null) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001855 Bundle result = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001856 result.putString(AccountManager.KEY_AUTHTOKEN, authToken);
1857 result.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
1858 result.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001859 onResult(response, result);
1860 return;
Fred Quintanaa698f422009-04-08 19:14:54 -07001861 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001862 }
1863
Carlos Valdivia91979be2015-05-22 14:11:35 -07001864 if (customTokens) {
1865 /*
1866 * Look up tokens in the new cache only if the loginOptions don't have parameters
1867 * outside of those expected to be injected by the AccountManager, e.g.
1868 * ANDORID_PACKAGE_NAME.
1869 */
1870 String token = readCachedTokenInternal(
1871 accounts,
1872 account,
1873 authTokenType,
1874 callerPkg,
1875 callerPkgSigDigest);
1876 if (token != null) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001877 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1878 Log.v(TAG, "getAuthToken: cache hit ofr custom token authenticator.");
1879 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001880 Bundle result = new Bundle();
1881 result.putString(AccountManager.KEY_AUTHTOKEN, token);
1882 result.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
1883 result.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);
1884 onResult(response, result);
1885 return;
1886 }
1887 }
1888
Amith Yamasani04e0d262012-02-14 11:50:53 -08001889 new Session(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001890 false /* stripAuthTokenFromResult */, account.name,
1891 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001892 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001893 protected String toDebugString(long now) {
1894 if (loginOptions != null) loginOptions.keySet();
1895 return super.toDebugString(now) + ", getAuthToken"
1896 + ", " + account
1897 + ", authTokenType " + authTokenType
1898 + ", loginOptions " + loginOptions
1899 + ", notifyOnAuthFailure " + notifyOnAuthFailure;
1900 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001901
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001902 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001903 public void run() throws RemoteException {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001904 // If the caller doesn't have permission then create and return the
1905 // "grant permission" intent instead of the "getAuthToken" intent.
1906 if (!permissionGranted) {
1907 mAuthenticator.getAuthTokenLabel(this, authTokenType);
1908 } else {
1909 mAuthenticator.getAuthToken(this, account, authTokenType, loginOptions);
1910 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001911 }
1912
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001913 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001914 public void onResult(Bundle result) {
1915 if (result != null) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001916 if (result.containsKey(AccountManager.KEY_AUTH_TOKEN_LABEL)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001917 Intent intent = newGrantCredentialsPermissionIntent(
1918 account,
1919 callerUid,
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001920 new AccountAuthenticatorResponse(this),
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001921 authTokenType);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001922 Bundle bundle = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001923 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001924 onResult(bundle);
1925 return;
1926 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001927 String authToken = result.getString(AccountManager.KEY_AUTHTOKEN);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001928 if (authToken != null) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001929 String name = result.getString(AccountManager.KEY_ACCOUNT_NAME);
1930 String type = result.getString(AccountManager.KEY_ACCOUNT_TYPE);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001931 if (TextUtils.isEmpty(type) || TextUtils.isEmpty(name)) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001932 onError(AccountManager.ERROR_CODE_INVALID_RESPONSE,
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001933 "the type and name should not be empty");
1934 return;
1935 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001936 Account resultAccount = new Account(name, type);
Costin Manolachea40c6302010-12-13 14:50:45 -08001937 if (!customTokens) {
Carlos Valdivia91979be2015-05-22 14:11:35 -07001938 saveAuthTokenToDatabase(
1939 mAccounts,
1940 resultAccount,
1941 authTokenType,
1942 authToken);
1943 }
1944 long expiryMillis = result.getLong(
1945 AbstractAccountAuthenticator.KEY_CUSTOM_TOKEN_EXPIRY, 0L);
1946 if (customTokens
1947 && expiryMillis > System.currentTimeMillis()) {
1948 saveCachedToken(
1949 mAccounts,
1950 account,
1951 callerPkg,
1952 callerPkgSigDigest,
1953 authTokenType,
1954 authToken,
1955 expiryMillis);
Costin Manolachea40c6302010-12-13 14:50:45 -08001956 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001957 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001958
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001959 Intent intent = result.getParcelable(AccountManager.KEY_INTENT);
Costin Manolached6060452011-01-24 16:11:36 -08001960 if (intent != null && notifyOnAuthFailure && !customTokens) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001961 doNotification(mAccounts,
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001962 account, result.getString(AccountManager.KEY_AUTH_FAILED_MESSAGE),
Dianne Hackborn41203752012-08-31 14:05:51 -07001963 intent, accounts.userId);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001964 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001965 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001966 super.onResult(result);
Fred Quintanaa698f422009-04-08 19:14:54 -07001967 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001968 }.bind();
1969 } finally {
1970 restoreCallingIdentity(identityToken);
1971 }
Fred Quintana60307342009-03-24 22:48:12 -07001972 }
1973
Carlos Valdivia91979be2015-05-22 14:11:35 -07001974 private byte[] calculatePackageSignatureDigest(String callerPkg) {
1975 MessageDigest digester;
1976 try {
1977 digester = MessageDigest.getInstance("SHA-256");
1978 PackageInfo pkgInfo = mPackageManager.getPackageInfo(
1979 callerPkg, PackageManager.GET_SIGNATURES);
1980 for (Signature sig : pkgInfo.signatures) {
1981 digester.update(sig.toByteArray());
1982 }
1983 } catch (NoSuchAlgorithmException x) {
1984 Log.wtf(TAG, "SHA-256 should be available", x);
1985 digester = null;
1986 } catch (NameNotFoundException e) {
1987 Log.w(TAG, "Could not find packageinfo for: " + callerPkg);
1988 digester = null;
1989 }
1990 return (digester == null) ? null : digester.digest();
1991 }
1992
Dianne Hackborn41203752012-08-31 14:05:51 -07001993 private void createNoCredentialsPermissionNotification(Account account, Intent intent,
1994 int userId) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001995 int uid = intent.getIntExtra(
1996 GrantCredentialsPermissionActivity.EXTRAS_REQUESTING_UID, -1);
1997 String authTokenType = intent.getStringExtra(
1998 GrantCredentialsPermissionActivity.EXTRAS_AUTH_TOKEN_TYPE);
Eric Fischeree452ee2009-08-31 17:58:06 -07001999 final String titleAndSubtitle =
2000 mContext.getString(R.string.permission_request_notification_with_subtitle,
2001 account.name);
2002 final int index = titleAndSubtitle.indexOf('\n');
Costin Manolache85e72792011-10-07 09:42:49 -07002003 String title = titleAndSubtitle;
2004 String subtitle = "";
2005 if (index > 0) {
2006 title = titleAndSubtitle.substring(0, index);
Maggie Benthalla12fccf2013-03-14 18:02:12 -04002007 subtitle = titleAndSubtitle.substring(index + 1);
Costin Manolache85e72792011-10-07 09:42:49 -07002008 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07002009 UserHandle user = new UserHandle(userId);
Kenny Guy07ad8dc2014-09-01 20:56:12 +01002010 Context contextForUser = getContextForUser(user);
Chris Wren1ce4b6d2015-06-11 10:19:43 -04002011 Notification n = new Notification.Builder(contextForUser)
2012 .setSmallIcon(android.R.drawable.stat_sys_warning)
2013 .setWhen(0)
2014 .setColor(contextForUser.getColor(
2015 com.android.internal.R.color.system_notification_accent_color))
2016 .setContentTitle(title)
2017 .setContentText(subtitle)
2018 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0, intent,
2019 PendingIntent.FLAG_CANCEL_CURRENT, null, user))
2020 .build();
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07002021 installNotification(getCredentialPermissionNotificationId(
2022 account, authTokenType, uid), n, user);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002023 }
2024
Costin Manolache5f383ad92010-12-02 16:44:46 -08002025 private Intent newGrantCredentialsPermissionIntent(Account account, int uid,
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002026 AccountAuthenticatorResponse response, String authTokenType) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002027
2028 Intent intent = new Intent(mContext, GrantCredentialsPermissionActivity.class);
Brian Carlstrom46703b02011-04-06 15:41:29 -07002029 // See FLAG_ACTIVITY_NEW_TASK docs for limitations and benefits of the flag.
Costin Manolache9ec17362011-01-17 12:12:37 -08002030 // Since it was set in Eclair+ we can't change it without breaking apps using
2031 // the intent from a non-Activity context.
2032 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002033 intent.addCategory(
2034 String.valueOf(getCredentialPermissionNotificationId(account, authTokenType, uid)));
Costin Manolache5f383ad92010-12-02 16:44:46 -08002035
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002036 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_ACCOUNT, account);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002037 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_AUTH_TOKEN_TYPE, authTokenType);
2038 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_RESPONSE, response);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002039 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_REQUESTING_UID, uid);
Costin Manolache5f383ad92010-12-02 16:44:46 -08002040
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002041 return intent;
2042 }
2043
2044 private Integer getCredentialPermissionNotificationId(Account account, String authTokenType,
2045 int uid) {
2046 Integer id;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07002047 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08002048 synchronized (accounts.credentialsPermissionNotificationIds) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002049 final Pair<Pair<Account, String>, Integer> key =
2050 new Pair<Pair<Account, String>, Integer>(
2051 new Pair<Account, String>(account, authTokenType), uid);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002052 id = accounts.credentialsPermissionNotificationIds.get(key);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002053 if (id == null) {
2054 id = mNotificationIds.incrementAndGet();
Amith Yamasani04e0d262012-02-14 11:50:53 -08002055 accounts.credentialsPermissionNotificationIds.put(key, id);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002056 }
2057 }
2058 return id;
2059 }
2060
Amith Yamasani04e0d262012-02-14 11:50:53 -08002061 private Integer getSigninRequiredNotificationId(UserAccounts accounts, Account account) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002062 Integer id;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002063 synchronized (accounts.signinRequiredNotificationIds) {
2064 id = accounts.signinRequiredNotificationIds.get(account);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002065 if (id == null) {
2066 id = mNotificationIds.incrementAndGet();
Amith Yamasani04e0d262012-02-14 11:50:53 -08002067 accounts.signinRequiredNotificationIds.put(account, id);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002068 }
2069 }
2070 return id;
2071 }
2072
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002073 @Override
Amith Yamasani27db4682013-03-30 17:07:47 -07002074 public void addAccount(final IAccountManagerResponse response, final String accountType,
Fred Quintana33269202009-04-20 16:05:10 -07002075 final String authTokenType, final String[] requiredFeatures,
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07002076 final boolean expectActivityLaunch, final Bundle optionsIn) {
Fred Quintana56285a62010-12-02 14:20:51 -08002077 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2078 Log.v(TAG, "addAccount: accountType " + accountType
2079 + ", response " + response
2080 + ", authTokenType " + authTokenType
2081 + ", requiredFeatures " + stringArrayToString(requiredFeatures)
2082 + ", expectActivityLaunch " + expectActivityLaunch
2083 + ", caller's uid " + Binder.getCallingUid()
2084 + ", pid " + Binder.getCallingPid());
2085 }
Fred Quintana382601f2010-03-25 12:25:10 -07002086 if (response == null) throw new IllegalArgumentException("response is null");
2087 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07002088
Amith Yamasani71e6c692013-03-24 17:39:28 -07002089 // Is user disallowed from modifying accounts?
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002090 int userId = Binder.getCallingUserHandle().getIdentifier();
2091 if (!canUserModifyAccounts(userId)) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002092 try {
2093 response.onError(AccountManager.ERROR_CODE_USER_RESTRICTED,
2094 "User is not allowed to add an account!");
2095 } catch (RemoteException re) {
2096 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002097 showCantAddAccount(AccountManager.ERROR_CODE_USER_RESTRICTED, userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002098 return;
2099 }
2100 if (!canUserModifyAccountsForType(userId, accountType)) {
Amith Yamasani23c8b962013-04-10 13:37:18 -07002101 try {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002102 response.onError(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2103 "User cannot modify accounts of this type (policy).");
2104 } catch (RemoteException re) {
Amith Yamasani23c8b962013-04-10 13:37:18 -07002105 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002106 showCantAddAccount(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2107 userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002108 return;
2109 }
2110
Amith Yamasani04e0d262012-02-14 11:50:53 -08002111 UserAccounts accounts = getUserAccountsForCaller();
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07002112 final int pid = Binder.getCallingPid();
2113 final int uid = Binder.getCallingUid();
2114 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn;
2115 options.putInt(AccountManager.KEY_CALLER_UID, uid);
2116 options.putInt(AccountManager.KEY_CALLER_PID, pid);
2117
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002118 logRecord(accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_ADD, TABLE_ACCOUNTS);
2119
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002120 long identityToken = clearCallingIdentity();
2121 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002122 new Session(accounts, response, accountType, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002123 true /* stripAuthTokenFromResult */, null /* accountName */,
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07002124 false /* authDetailsRequired */, true /* updateLastAuthenticationTime */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002125 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002126 public void run() throws RemoteException {
Costin Manolache3348f142009-09-29 18:58:36 -07002127 mAuthenticator.addAccount(this, mAccountType, authTokenType, requiredFeatures,
Fred Quintana33269202009-04-20 16:05:10 -07002128 options);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002129 }
Fred Quintanaa698f422009-04-08 19:14:54 -07002130
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002131 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002132 protected String toDebugString(long now) {
2133 return super.toDebugString(now) + ", addAccount"
Fred Quintana33269202009-04-20 16:05:10 -07002134 + ", accountType " + accountType
2135 + ", requiredFeatures "
2136 + (requiredFeatures != null
2137 ? TextUtils.join(",", requiredFeatures)
2138 : null);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002139 }
2140 }.bind();
2141 } finally {
2142 restoreCallingIdentity(identityToken);
2143 }
Fred Quintana60307342009-03-24 22:48:12 -07002144 }
2145
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002146 @Override
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002147 public void addAccountAsUser(final IAccountManagerResponse response, final String accountType,
2148 final String authTokenType, final String[] requiredFeatures,
2149 final boolean expectActivityLaunch, final Bundle optionsIn, int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002150 int callingUid = Binder.getCallingUid();
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002151 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2152 Log.v(TAG, "addAccount: accountType " + accountType
2153 + ", response " + response
2154 + ", authTokenType " + authTokenType
2155 + ", requiredFeatures " + stringArrayToString(requiredFeatures)
2156 + ", expectActivityLaunch " + expectActivityLaunch
2157 + ", caller's uid " + Binder.getCallingUid()
2158 + ", pid " + Binder.getCallingPid()
2159 + ", for user id " + userId);
2160 }
2161 if (response == null) throw new IllegalArgumentException("response is null");
2162 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002163 // Only allow the system process to add accounts of other users
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002164 if (isCrossUser(callingUid, userId)) {
2165 throw new SecurityException(
2166 String.format(
2167 "User %s trying to add account for %s" ,
2168 UserHandle.getCallingUserId(),
2169 userId));
2170 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002171
2172 // Is user disallowed from modifying accounts?
2173 if (!canUserModifyAccounts(userId)) {
2174 try {
2175 response.onError(AccountManager.ERROR_CODE_USER_RESTRICTED,
2176 "User is not allowed to add an account!");
2177 } catch (RemoteException re) {
2178 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002179 showCantAddAccount(AccountManager.ERROR_CODE_USER_RESTRICTED, userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002180 return;
2181 }
2182 if (!canUserModifyAccountsForType(userId, accountType)) {
2183 try {
2184 response.onError(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2185 "User cannot modify accounts of this type (policy).");
2186 } catch (RemoteException re) {
2187 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002188 showCantAddAccount(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2189 userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002190 return;
2191 }
2192
2193 UserAccounts accounts = getUserAccounts(userId);
2194 final int pid = Binder.getCallingPid();
2195 final int uid = Binder.getCallingUid();
2196 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn;
2197 options.putInt(AccountManager.KEY_CALLER_UID, uid);
2198 options.putInt(AccountManager.KEY_CALLER_PID, pid);
2199
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002200 logRecord(accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_ADD, TABLE_ACCOUNTS);
2201
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002202 long identityToken = clearCallingIdentity();
2203 try {
2204 new Session(accounts, response, accountType, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002205 true /* stripAuthTokenFromResult */, null /* accountName */,
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07002206 false /* authDetailsRequired */, true /* updateLastAuthenticationTime */) {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002207 @Override
2208 public void run() throws RemoteException {
2209 mAuthenticator.addAccount(this, mAccountType, authTokenType, requiredFeatures,
2210 options);
2211 }
2212
2213 @Override
2214 protected String toDebugString(long now) {
2215 return super.toDebugString(now) + ", addAccount"
2216 + ", accountType " + accountType
2217 + ", requiredFeatures "
2218 + (requiredFeatures != null
2219 ? TextUtils.join(",", requiredFeatures)
2220 : null);
2221 }
2222 }.bind();
2223 } finally {
2224 restoreCallingIdentity(identityToken);
2225 }
2226 }
2227
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002228 private void showCantAddAccount(int errorCode, int userId) {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002229 Intent cantAddAccount = new Intent(mContext, CantAddAccountActivity.class);
2230 cantAddAccount.putExtra(CantAddAccountActivity.EXTRA_ERROR_CODE, errorCode);
2231 cantAddAccount.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2232 long identityToken = clearCallingIdentity();
2233 try {
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002234 mContext.startActivityAsUser(cantAddAccount, new UserHandle(userId));
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002235 } finally {
2236 restoreCallingIdentity(identityToken);
2237 }
2238 }
2239
2240 @Override
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002241 public void confirmCredentialsAsUser(
2242 IAccountManagerResponse response,
2243 final Account account,
2244 final Bundle options,
2245 final boolean expectActivityLaunch,
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002246 int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002247 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002248 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2249 Log.v(TAG, "confirmCredentials: " + account
2250 + ", response " + response
2251 + ", expectActivityLaunch " + expectActivityLaunch
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002252 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002253 + ", pid " + Binder.getCallingPid());
2254 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002255 // Only allow the system process to read accounts of other users
2256 if (isCrossUser(callingUid, userId)) {
2257 throw new SecurityException(
2258 String.format(
2259 "User %s trying to confirm account credentials for %s" ,
2260 UserHandle.getCallingUserId(),
2261 userId));
2262 }
Fred Quintana382601f2010-03-25 12:25:10 -07002263 if (response == null) throw new IllegalArgumentException("response is null");
2264 if (account == null) throw new IllegalArgumentException("account is null");
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002265 UserAccounts accounts = getUserAccounts(userId);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002266 long identityToken = clearCallingIdentity();
2267 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002268 new Session(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002269 true /* stripAuthTokenFromResult */, account.name,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002270 true /* authDetailsRequired */, true /* updateLastAuthenticatedTime */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002271 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002272 public void run() throws RemoteException {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002273 mAuthenticator.confirmCredentials(this, account, options);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002274 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002275 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002276 protected String toDebugString(long now) {
2277 return super.toDebugString(now) + ", confirmCredentials"
2278 + ", " + account;
2279 }
2280 }.bind();
2281 } finally {
2282 restoreCallingIdentity(identityToken);
2283 }
Fred Quintana60307342009-03-24 22:48:12 -07002284 }
2285
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002286 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002287 public void updateCredentials(IAccountManagerResponse response, final Account account,
2288 final String authTokenType, final boolean expectActivityLaunch,
2289 final Bundle loginOptions) {
Fred Quintana56285a62010-12-02 14:20:51 -08002290 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2291 Log.v(TAG, "updateCredentials: " + account
2292 + ", response " + response
2293 + ", authTokenType " + authTokenType
2294 + ", expectActivityLaunch " + expectActivityLaunch
2295 + ", caller's uid " + Binder.getCallingUid()
2296 + ", pid " + Binder.getCallingPid());
2297 }
Fred Quintana382601f2010-03-25 12:25:10 -07002298 if (response == null) throw new IllegalArgumentException("response is null");
2299 if (account == null) throw new IllegalArgumentException("account is null");
2300 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
Amith Yamasani04e0d262012-02-14 11:50:53 -08002301 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002302 long identityToken = clearCallingIdentity();
2303 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002304 new Session(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002305 true /* stripAuthTokenFromResult */, account.name,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002306 false /* authDetailsRequired */, true /* updateLastCredentialTime */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002307 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002308 public void run() throws RemoteException {
2309 mAuthenticator.updateCredentials(this, account, authTokenType, loginOptions);
2310 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002311 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002312 protected String toDebugString(long now) {
2313 if (loginOptions != null) loginOptions.keySet();
2314 return super.toDebugString(now) + ", updateCredentials"
2315 + ", " + account
2316 + ", authTokenType " + authTokenType
2317 + ", loginOptions " + loginOptions;
2318 }
2319 }.bind();
2320 } finally {
2321 restoreCallingIdentity(identityToken);
2322 }
Fred Quintana60307342009-03-24 22:48:12 -07002323 }
2324
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002325 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002326 public void editProperties(IAccountManagerResponse response, final String accountType,
2327 final boolean expectActivityLaunch) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07002328 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002329 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2330 Log.v(TAG, "editProperties: accountType " + accountType
2331 + ", response " + response
2332 + ", expectActivityLaunch " + expectActivityLaunch
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07002333 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002334 + ", pid " + Binder.getCallingPid());
2335 }
Fred Quintana382601f2010-03-25 12:25:10 -07002336 if (response == null) throw new IllegalArgumentException("response is null");
2337 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002338 if (!isAccountManagedByCaller(accountType, callingUid) && !isSystemUid(callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07002339 String msg = String.format(
2340 "uid %s cannot edit authenticator properites for account type: %s",
2341 callingUid,
2342 accountType);
2343 throw new SecurityException(msg);
2344 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08002345 UserAccounts accounts = getUserAccountsForCaller();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002346 long identityToken = clearCallingIdentity();
2347 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002348 new Session(accounts, response, accountType, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002349 true /* stripAuthTokenFromResult */, null /* accountName */,
2350 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002351 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002352 public void run() throws RemoteException {
2353 mAuthenticator.editProperties(this, mAccountType);
2354 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002355 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002356 protected String toDebugString(long now) {
2357 return super.toDebugString(now) + ", editProperties"
2358 + ", accountType " + accountType;
2359 }
2360 }.bind();
2361 } finally {
2362 restoreCallingIdentity(identityToken);
2363 }
Fred Quintana60307342009-03-24 22:48:12 -07002364 }
2365
Fred Quintana33269202009-04-20 16:05:10 -07002366 private class GetAccountsByTypeAndFeatureSession extends Session {
2367 private final String[] mFeatures;
2368 private volatile Account[] mAccountsOfType = null;
2369 private volatile ArrayList<Account> mAccountsWithFeatures = null;
2370 private volatile int mCurrentAccount = 0;
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002371 private final int mCallingUid;
Fred Quintana33269202009-04-20 16:05:10 -07002372
Amith Yamasani04e0d262012-02-14 11:50:53 -08002373 public GetAccountsByTypeAndFeatureSession(UserAccounts accounts,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002374 IAccountManagerResponse response, String type, String[] features, int callingUid) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002375 super(accounts, response, type, false /* expectActivityLaunch */,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002376 true /* stripAuthTokenFromResult */, null /* accountName */,
2377 false /* authDetailsRequired */);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002378 mCallingUid = callingUid;
Fred Quintana33269202009-04-20 16:05:10 -07002379 mFeatures = features;
2380 }
2381
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002382 @Override
Fred Quintana33269202009-04-20 16:05:10 -07002383 public void run() throws RemoteException {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002384 synchronized (mAccounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002385 mAccountsOfType = getAccountsFromCacheLocked(mAccounts, mAccountType, mCallingUid,
2386 null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002387 }
Fred Quintana33269202009-04-20 16:05:10 -07002388 // check whether each account matches the requested features
2389 mAccountsWithFeatures = new ArrayList<Account>(mAccountsOfType.length);
2390 mCurrentAccount = 0;
2391
2392 checkAccount();
2393 }
2394
2395 public void checkAccount() {
2396 if (mCurrentAccount >= mAccountsOfType.length) {
2397 sendResult();
2398 return;
Fred Quintanaa698f422009-04-08 19:14:54 -07002399 }
Fred Quintana33269202009-04-20 16:05:10 -07002400
Fred Quintana29e94b82010-03-10 12:11:51 -08002401 final IAccountAuthenticator accountAuthenticator = mAuthenticator;
2402 if (accountAuthenticator == null) {
2403 // It is possible that the authenticator has died, which is indicated by
2404 // mAuthenticator being set to null. If this happens then just abort.
2405 // There is no need to send back a result or error in this case since
2406 // that already happened when mAuthenticator was cleared.
2407 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2408 Log.v(TAG, "checkAccount: aborting session since we are no longer"
2409 + " connected to the authenticator, " + toDebugString());
2410 }
2411 return;
2412 }
Fred Quintana33269202009-04-20 16:05:10 -07002413 try {
Fred Quintana29e94b82010-03-10 12:11:51 -08002414 accountAuthenticator.hasFeatures(this, mAccountsOfType[mCurrentAccount], mFeatures);
Fred Quintana33269202009-04-20 16:05:10 -07002415 } catch (RemoteException e) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002416 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "remote exception");
Fred Quintana33269202009-04-20 16:05:10 -07002417 }
2418 }
2419
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002420 @Override
Fred Quintana33269202009-04-20 16:05:10 -07002421 public void onResult(Bundle result) {
2422 mNumResults++;
2423 if (result == null) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002424 onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
Fred Quintana33269202009-04-20 16:05:10 -07002425 return;
2426 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002427 if (result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false)) {
Fred Quintana33269202009-04-20 16:05:10 -07002428 mAccountsWithFeatures.add(mAccountsOfType[mCurrentAccount]);
2429 }
2430 mCurrentAccount++;
2431 checkAccount();
2432 }
2433
2434 public void sendResult() {
2435 IAccountManagerResponse response = getResponseAndClose();
2436 if (response != null) {
2437 try {
2438 Account[] accounts = new Account[mAccountsWithFeatures.size()];
2439 for (int i = 0; i < accounts.length; i++) {
2440 accounts[i] = mAccountsWithFeatures.get(i);
2441 }
Fred Quintana56285a62010-12-02 14:20:51 -08002442 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2443 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
2444 + response);
2445 }
Fred Quintana33269202009-04-20 16:05:10 -07002446 Bundle result = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002447 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, accounts);
Fred Quintana33269202009-04-20 16:05:10 -07002448 response.onResult(result);
2449 } catch (RemoteException e) {
2450 // if the caller is dead then there is no one to care about remote exceptions
2451 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2452 Log.v(TAG, "failure while notifying response", e);
2453 }
2454 }
2455 }
2456 }
2457
2458
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002459 @Override
Fred Quintana33269202009-04-20 16:05:10 -07002460 protected String toDebugString(long now) {
2461 return super.toDebugString(now) + ", getAccountsByTypeAndFeatures"
2462 + ", " + (mFeatures != null ? TextUtils.join(",", mFeatures) : null);
2463 }
2464 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002465
Amith Yamasani04e0d262012-02-14 11:50:53 -08002466 /**
2467 * Returns the accounts for a specific user
2468 * @hide
2469 */
2470 public Account[] getAccounts(int userId) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002471 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002472 int callingUid = Binder.getCallingUid();
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002473 if (!isReadAccountsPermitted(callingUid, null)) {
2474 return new Account[0];
2475 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08002476 long identityToken = clearCallingIdentity();
2477 try {
2478 synchronized (accounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002479 return getAccountsFromCacheLocked(accounts, null, callingUid, null);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002480 }
2481 } finally {
2482 restoreCallingIdentity(identityToken);
2483 }
2484 }
2485
Amith Yamasanif29f2362012-04-05 18:29:52 -07002486 /**
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002487 * Returns accounts for all running users.
2488 *
Amith Yamasanif29f2362012-04-05 18:29:52 -07002489 * @hide
2490 */
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002491 public AccountAndUser[] getRunningAccounts() {
2492 final int[] runningUserIds;
2493 try {
2494 runningUserIds = ActivityManagerNative.getDefault().getRunningUserIds();
2495 } catch (RemoteException e) {
2496 // Running in system_server; should never happen
2497 throw new RuntimeException(e);
2498 }
Jeff Sharkey6eb96202012-10-10 13:13:54 -07002499 return getAccounts(runningUserIds);
2500 }
Amith Yamasanif29f2362012-04-05 18:29:52 -07002501
Jeff Sharkey6eb96202012-10-10 13:13:54 -07002502 /** {@hide} */
2503 public AccountAndUser[] getAllAccounts() {
2504 final List<UserInfo> users = getUserManager().getUsers();
2505 final int[] userIds = new int[users.size()];
2506 for (int i = 0; i < userIds.length; i++) {
2507 userIds[i] = users.get(i).id;
2508 }
2509 return getAccounts(userIds);
2510 }
2511
2512 private AccountAndUser[] getAccounts(int[] userIds) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002513 final ArrayList<AccountAndUser> runningAccounts = Lists.newArrayList();
Amith Yamasani0c19bf52013-10-03 10:34:58 -07002514 for (int userId : userIds) {
2515 UserAccounts userAccounts = getUserAccounts(userId);
2516 if (userAccounts == null) continue;
2517 synchronized (userAccounts.cacheLock) {
2518 Account[] accounts = getAccountsFromCacheLocked(userAccounts, null,
2519 Binder.getCallingUid(), null);
2520 for (int a = 0; a < accounts.length; a++) {
2521 runningAccounts.add(new AccountAndUser(accounts[a], userId));
Amith Yamasanif29f2362012-04-05 18:29:52 -07002522 }
2523 }
2524 }
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002525
2526 AccountAndUser[] accountsArray = new AccountAndUser[runningAccounts.size()];
2527 return runningAccounts.toArray(accountsArray);
Amith Yamasanif29f2362012-04-05 18:29:52 -07002528 }
2529
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002530 @Override
2531 public Account[] getAccountsAsUser(String type, int userId) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002532 return getAccountsAsUser(type, userId, null, -1);
2533 }
2534
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002535 private Account[] getAccountsAsUser(
2536 String type,
2537 int userId,
2538 String callingPackage,
Amith Yamasani27db4682013-03-30 17:07:47 -07002539 int packageUid) {
2540 int callingUid = Binder.getCallingUid();
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002541 // Only allow the system process to read accounts of other users
2542 if (userId != UserHandle.getCallingUserId()
Amith Yamasanibb49e852013-03-30 19:20:18 -07002543 && callingUid != Process.myUid()
Jim Miller464f5302013-02-27 18:33:25 -08002544 && mContext.checkCallingOrSelfPermission(
2545 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
2546 != PackageManager.PERMISSION_GRANTED) {
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002547 throw new SecurityException("User " + UserHandle.getCallingUserId()
2548 + " trying to get account for " + userId);
2549 }
2550
Fred Quintana56285a62010-12-02 14:20:51 -08002551 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2552 Log.v(TAG, "getAccounts: accountType " + type
2553 + ", caller's uid " + Binder.getCallingUid()
2554 + ", pid " + Binder.getCallingPid());
2555 }
Amith Yamasani27db4682013-03-30 17:07:47 -07002556 // If the original calling app was using the framework account chooser activity, we'll
2557 // be passed in the original caller's uid here, which is what should be used for filtering.
2558 if (packageUid != -1 && UserHandle.isSameApp(callingUid, Process.myUid())) {
2559 callingUid = packageUid;
2560 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002561
2562 // Authenticators should be able to see their own accounts regardless of permissions.
2563 if (TextUtils.isEmpty(type) && !isReadAccountsPermitted(callingUid, type)) {
2564 return new Account[0];
2565 }
2566
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002567 long identityToken = clearCallingIdentity();
2568 try {
Simranjit Singh Kohli6a184872015-05-19 10:58:01 -07002569 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002570 synchronized (accounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002571 return getAccountsFromCacheLocked(accounts, type, callingUid, callingPackage);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002572 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002573 } finally {
2574 restoreCallingIdentity(identityToken);
2575 }
2576 }
2577
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002578 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -08002579 public boolean addSharedAccountAsUser(Account account, int userId) {
2580 userId = handleIncomingUser(userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002581 UserAccounts accounts = getUserAccounts(userId);
2582 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Amith Yamasani67df64b2012-12-14 12:09:36 -08002583 ContentValues values = new ContentValues();
2584 values.put(ACCOUNTS_NAME, account.name);
2585 values.put(ACCOUNTS_TYPE, account.type);
2586 db.delete(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2587 new String[] {account.name, account.type});
2588 long accountId = db.insert(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME, values);
2589 if (accountId < 0) {
2590 Log.w(TAG, "insertAccountIntoDatabase: " + account
2591 + ", skipping the DB insert failed");
2592 return false;
2593 }
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002594 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_SHARED_ACCOUNTS, accountId, accounts);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002595 return true;
2596 }
2597
2598 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002599 public boolean renameSharedAccountAsUser(Account account, String newName, int userId) {
2600 userId = handleIncomingUser(userId);
2601 UserAccounts accounts = getUserAccounts(userId);
2602 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002603 long sharedTableAccountId = getAccountIdFromSharedTable(db, account);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002604 final ContentValues values = new ContentValues();
2605 values.put(ACCOUNTS_NAME, newName);
2606 values.put(ACCOUNTS_PREVIOUS_NAME, account.name);
2607 int r = db.update(
2608 TABLE_SHARED_ACCOUNTS,
2609 values,
2610 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2611 new String[] { account.name, account.type });
2612 if (r > 0) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002613 int callingUid = getCallingUid();
2614 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_RENAME, TABLE_SHARED_ACCOUNTS,
2615 sharedTableAccountId, accounts, callingUid);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002616 // Recursively rename the account.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002617 renameAccountInternal(accounts, account, newName);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002618 }
2619 return r > 0;
2620 }
2621
2622 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -08002623 public boolean removeSharedAccountAsUser(Account account, int userId) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002624 return removeSharedAccountAsUser(account, userId, getCallingUid());
2625 }
2626
2627 private boolean removeSharedAccountAsUser(Account account, int userId, int callingUid) {
Amith Yamasani67df64b2012-12-14 12:09:36 -08002628 userId = handleIncomingUser(userId);
2629 UserAccounts accounts = getUserAccounts(userId);
2630 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002631 long sharedTableAccountId = getAccountIdFromSharedTable(db, account);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002632 int r = db.delete(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2633 new String[] {account.name, account.type});
2634 if (r > 0) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002635 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_REMOVE, TABLE_SHARED_ACCOUNTS,
2636 sharedTableAccountId, accounts, callingUid);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002637 removeAccountInternal(accounts, account);
2638 }
2639 return r > 0;
2640 }
2641
2642 @Override
2643 public Account[] getSharedAccountsAsUser(int userId) {
2644 userId = handleIncomingUser(userId);
2645 UserAccounts accounts = getUserAccounts(userId);
2646 ArrayList<Account> accountList = new ArrayList<Account>();
2647 Cursor cursor = null;
2648 try {
2649 cursor = accounts.openHelper.getReadableDatabase()
2650 .query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_NAME, ACCOUNTS_TYPE},
2651 null, null, null, null, null);
2652 if (cursor != null && cursor.moveToFirst()) {
2653 int nameIndex = cursor.getColumnIndex(ACCOUNTS_NAME);
2654 int typeIndex = cursor.getColumnIndex(ACCOUNTS_TYPE);
2655 do {
2656 accountList.add(new Account(cursor.getString(nameIndex),
2657 cursor.getString(typeIndex)));
2658 } while (cursor.moveToNext());
2659 }
2660 } finally {
2661 if (cursor != null) {
2662 cursor.close();
2663 }
2664 }
2665 Account[] accountArray = new Account[accountList.size()];
2666 accountList.toArray(accountArray);
2667 return accountArray;
2668 }
2669
2670 @Override
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002671 public Account[] getAccounts(String type) {
2672 return getAccountsAsUser(type, UserHandle.getCallingUserId());
2673 }
2674
Amith Yamasani27db4682013-03-30 17:07:47 -07002675 @Override
2676 public Account[] getAccountsForPackage(String packageName, int uid) {
2677 int callingUid = Binder.getCallingUid();
2678 if (!UserHandle.isSameApp(callingUid, Process.myUid())) {
2679 throw new SecurityException("getAccountsForPackage() called from unauthorized uid "
2680 + callingUid + " with uid=" + uid);
2681 }
2682 return getAccountsAsUser(null, UserHandle.getCallingUserId(), packageName, uid);
2683 }
2684
Amith Yamasani3b458ad2013-04-18 18:40:07 -07002685 @Override
2686 public Account[] getAccountsByTypeForPackage(String type, String packageName) {
Amith Yamasani3b458ad2013-04-18 18:40:07 -07002687 int packageUid = -1;
2688 try {
2689 packageUid = AppGlobals.getPackageManager().getPackageUid(
2690 packageName, UserHandle.getCallingUserId());
2691 } catch (RemoteException re) {
2692 Slog.e(TAG, "Couldn't determine the packageUid for " + packageName + re);
2693 return new Account[0];
2694 }
2695 return getAccountsAsUser(type, UserHandle.getCallingUserId(), packageName, packageUid);
2696 }
2697
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002698 @Override
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002699 public void getAccountsByFeatures(
2700 IAccountManagerResponse response,
2701 String type,
2702 String[] features) {
2703 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002704 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2705 Log.v(TAG, "getAccounts: accountType " + type
2706 + ", response " + response
2707 + ", features " + stringArrayToString(features)
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002708 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002709 + ", pid " + Binder.getCallingPid());
2710 }
Fred Quintana382601f2010-03-25 12:25:10 -07002711 if (response == null) throw new IllegalArgumentException("response is null");
2712 if (type == null) throw new IllegalArgumentException("accountType is null");
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002713 if (!isReadAccountsPermitted(callingUid, type)) {
2714 Bundle result = new Bundle();
2715 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, new Account[0]);
2716 try {
2717 response.onResult(result);
2718 } catch (RemoteException e) {
2719 Log.e(TAG, "Cannot respond to caller do to exception." , e);
2720 }
2721 return;
2722 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08002723 UserAccounts userAccounts = getUserAccountsForCaller();
Fred Quintana33269202009-04-20 16:05:10 -07002724 long identityToken = clearCallingIdentity();
2725 try {
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002726 if (features == null || features.length == 0) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002727 Account[] accounts;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002728 synchronized (userAccounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002729 accounts = getAccountsFromCacheLocked(userAccounts, type, callingUid, null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002730 }
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08002731 Bundle result = new Bundle();
2732 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, accounts);
2733 onResult(response, result);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002734 return;
2735 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002736 new GetAccountsByTypeAndFeatureSession(userAccounts, response, type, features,
2737 callingUid).bind();
Fred Quintana33269202009-04-20 16:05:10 -07002738 } finally {
2739 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07002740 }
2741 }
2742
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002743 private long getAccountIdFromSharedTable(SQLiteDatabase db, Account account) {
2744 Cursor cursor = db.query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_ID},
2745 "name=? AND type=?", new String[]{account.name, account.type}, null, null, null);
2746 try {
2747 if (cursor.moveToNext()) {
2748 return cursor.getLong(0);
2749 }
2750 return -1;
2751 } finally {
2752 cursor.close();
2753 }
2754 }
2755
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002756 private long getAccountIdLocked(SQLiteDatabase db, Account account) {
Fred Quintana60307342009-03-24 22:48:12 -07002757 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_ID},
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002758 "name=? AND type=?", new String[]{account.name, account.type}, null, null, null);
Fred Quintana60307342009-03-24 22:48:12 -07002759 try {
2760 if (cursor.moveToNext()) {
2761 return cursor.getLong(0);
2762 }
2763 return -1;
2764 } finally {
2765 cursor.close();
2766 }
2767 }
2768
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002769 private long getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) {
Fred Quintana60307342009-03-24 22:48:12 -07002770 Cursor cursor = db.query(TABLE_EXTRAS, new String[]{EXTRAS_ID},
2771 EXTRAS_ACCOUNTS_ID + "=" + accountId + " AND " + EXTRAS_KEY + "=?",
2772 new String[]{key}, null, null, null);
2773 try {
2774 if (cursor.moveToNext()) {
2775 return cursor.getLong(0);
2776 }
2777 return -1;
2778 } finally {
2779 cursor.close();
2780 }
2781 }
2782
Fred Quintanaa698f422009-04-08 19:14:54 -07002783 private abstract class Session extends IAccountAuthenticatorResponse.Stub
Fred Quintanab839afc2009-10-14 15:57:28 -07002784 implements IBinder.DeathRecipient, ServiceConnection {
Fred Quintana60307342009-03-24 22:48:12 -07002785 IAccountManagerResponse mResponse;
2786 final String mAccountType;
Fred Quintanaa698f422009-04-08 19:14:54 -07002787 final boolean mExpectActivityLaunch;
2788 final long mCreationTime;
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002789 final String mAccountName;
2790 // Indicates if we need to add auth details(like last credential time)
2791 final boolean mAuthDetailsRequired;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002792 // If set, we need to update the last authenticated time. This is
2793 // currently
2794 // used on
2795 // successful confirming credentials.
2796 final boolean mUpdateLastAuthenticatedTime;
Fred Quintanaa698f422009-04-08 19:14:54 -07002797
Fred Quintana33269202009-04-20 16:05:10 -07002798 public int mNumResults = 0;
Fred Quintanaa698f422009-04-08 19:14:54 -07002799 private int mNumRequestContinued = 0;
2800 private int mNumErrors = 0;
2801
Fred Quintana60307342009-03-24 22:48:12 -07002802 IAccountAuthenticator mAuthenticator = null;
2803
Fred Quintana8570f742010-02-18 10:32:54 -08002804 private final boolean mStripAuthTokenFromResult;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002805 protected final UserAccounts mAccounts;
Fred Quintana8570f742010-02-18 10:32:54 -08002806
Amith Yamasani04e0d262012-02-14 11:50:53 -08002807 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002808 boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName,
2809 boolean authDetailsRequired) {
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002810 this(accounts, response, accountType, expectActivityLaunch, stripAuthTokenFromResult,
2811 accountName, authDetailsRequired, false /* updateLastAuthenticatedTime */);
2812 }
2813
2814 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType,
2815 boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName,
2816 boolean authDetailsRequired, boolean updateLastAuthenticatedTime) {
Fred Quintana60307342009-03-24 22:48:12 -07002817 super();
Amith Yamasani67df64b2012-12-14 12:09:36 -08002818 //if (response == null) throw new IllegalArgumentException("response is null");
Fred Quintana33269202009-04-20 16:05:10 -07002819 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Amith Yamasani04e0d262012-02-14 11:50:53 -08002820 mAccounts = accounts;
Fred Quintana8570f742010-02-18 10:32:54 -08002821 mStripAuthTokenFromResult = stripAuthTokenFromResult;
Fred Quintana60307342009-03-24 22:48:12 -07002822 mResponse = response;
2823 mAccountType = accountType;
Fred Quintanaa698f422009-04-08 19:14:54 -07002824 mExpectActivityLaunch = expectActivityLaunch;
2825 mCreationTime = SystemClock.elapsedRealtime();
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002826 mAccountName = accountName;
2827 mAuthDetailsRequired = authDetailsRequired;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002828 mUpdateLastAuthenticatedTime = updateLastAuthenticatedTime;
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002829
Fred Quintanaa698f422009-04-08 19:14:54 -07002830 synchronized (mSessions) {
2831 mSessions.put(toString(), this);
2832 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08002833 if (response != null) {
2834 try {
2835 response.asBinder().linkToDeath(this, 0 /* flags */);
2836 } catch (RemoteException e) {
2837 mResponse = null;
2838 binderDied();
2839 }
Fred Quintanaa698f422009-04-08 19:14:54 -07002840 }
Fred Quintana60307342009-03-24 22:48:12 -07002841 }
2842
Fred Quintanaa698f422009-04-08 19:14:54 -07002843 IAccountManagerResponse getResponseAndClose() {
Fred Quintana60307342009-03-24 22:48:12 -07002844 if (mResponse == null) {
2845 // this session has already been closed
2846 return null;
2847 }
Fred Quintana60307342009-03-24 22:48:12 -07002848 IAccountManagerResponse response = mResponse;
Fred Quintanaa698f422009-04-08 19:14:54 -07002849 close(); // this clears mResponse so we need to save the response before this call
Fred Quintana60307342009-03-24 22:48:12 -07002850 return response;
2851 }
2852
Fred Quintanaa698f422009-04-08 19:14:54 -07002853 private void close() {
2854 synchronized (mSessions) {
2855 if (mSessions.remove(toString()) == null) {
2856 // the session was already closed, so bail out now
2857 return;
2858 }
2859 }
2860 if (mResponse != null) {
2861 // stop listening for response deaths
2862 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */);
2863
2864 // clear this so that we don't accidentally send any further results
2865 mResponse = null;
2866 }
2867 cancelTimeout();
2868 unbind();
2869 }
2870
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002871 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002872 public void binderDied() {
2873 mResponse = null;
2874 close();
2875 }
2876
2877 protected String toDebugString() {
2878 return toDebugString(SystemClock.elapsedRealtime());
2879 }
2880
2881 protected String toDebugString(long now) {
2882 return "Session: expectLaunch " + mExpectActivityLaunch
2883 + ", connected " + (mAuthenticator != null)
2884 + ", stats (" + mNumResults + "/" + mNumRequestContinued
2885 + "/" + mNumErrors + ")"
2886 + ", lifetime " + ((now - mCreationTime) / 1000.0);
2887 }
2888
Fred Quintana60307342009-03-24 22:48:12 -07002889 void bind() {
Fred Quintanaa698f422009-04-08 19:14:54 -07002890 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2891 Log.v(TAG, "initiating bind to authenticator type " + mAccountType);
2892 }
Fred Quintanab839afc2009-10-14 15:57:28 -07002893 if (!bindToAuthenticator(mAccountType)) {
Fred Quintanaa698f422009-04-08 19:14:54 -07002894 Log.d(TAG, "bind attempt failed for " + toDebugString());
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002895 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "bind failure");
Fred Quintana60307342009-03-24 22:48:12 -07002896 }
2897 }
2898
2899 private void unbind() {
2900 if (mAuthenticator != null) {
2901 mAuthenticator = null;
Fred Quintanab839afc2009-10-14 15:57:28 -07002902 mContext.unbindService(this);
Fred Quintana60307342009-03-24 22:48:12 -07002903 }
2904 }
2905
Fred Quintana60307342009-03-24 22:48:12 -07002906 public void cancelTimeout() {
2907 mMessageHandler.removeMessages(MESSAGE_TIMED_OUT, this);
2908 }
2909
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002910 @Override
Fred Quintanab839afc2009-10-14 15:57:28 -07002911 public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintana60307342009-03-24 22:48:12 -07002912 mAuthenticator = IAccountAuthenticator.Stub.asInterface(service);
Fred Quintanaa698f422009-04-08 19:14:54 -07002913 try {
2914 run();
2915 } catch (RemoteException e) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002916 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
Fred Quintanaa698f422009-04-08 19:14:54 -07002917 "remote exception");
2918 }
Fred Quintana60307342009-03-24 22:48:12 -07002919 }
2920
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002921 @Override
Fred Quintanab839afc2009-10-14 15:57:28 -07002922 public void onServiceDisconnected(ComponentName name) {
Fred Quintanaa698f422009-04-08 19:14:54 -07002923 mAuthenticator = null;
2924 IAccountManagerResponse response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07002925 if (response != null) {
Fred Quintana166466d2011-10-24 14:51:40 -07002926 try {
2927 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
2928 "disconnected");
2929 } catch (RemoteException e) {
2930 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2931 Log.v(TAG, "Session.onServiceDisconnected: "
2932 + "caught RemoteException while responding", e);
2933 }
2934 }
Fred Quintana60307342009-03-24 22:48:12 -07002935 }
2936 }
2937
Fred Quintanab839afc2009-10-14 15:57:28 -07002938 public abstract void run() throws RemoteException;
2939
Fred Quintana60307342009-03-24 22:48:12 -07002940 public void onTimedOut() {
Fred Quintanaa698f422009-04-08 19:14:54 -07002941 IAccountManagerResponse response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07002942 if (response != null) {
Fred Quintana166466d2011-10-24 14:51:40 -07002943 try {
2944 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
2945 "timeout");
2946 } catch (RemoteException e) {
2947 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2948 Log.v(TAG, "Session.onTimedOut: caught RemoteException while responding",
2949 e);
2950 }
2951 }
Fred Quintana60307342009-03-24 22:48:12 -07002952 }
2953 }
2954
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002955 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002956 public void onResult(Bundle result) {
2957 mNumResults++;
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002958 Intent intent = null;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002959 if (result != null) {
2960 boolean isSuccessfulConfirmCreds = result.getBoolean(
2961 AccountManager.KEY_BOOLEAN_RESULT, false);
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07002962 boolean isSuccessfulUpdateCredsOrAddAccount =
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002963 result.containsKey(AccountManager.KEY_ACCOUNT_NAME)
2964 && result.containsKey(AccountManager.KEY_ACCOUNT_TYPE);
Carlos Valdivia91979be2015-05-22 14:11:35 -07002965 // We should only update lastAuthenticated time, if
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002966 // mUpdateLastAuthenticatedTime is true and the confirmRequest
2967 // or updateRequest was successful
Carlos Valdivia91979be2015-05-22 14:11:35 -07002968 boolean needUpdate = mUpdateLastAuthenticatedTime
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07002969 && (isSuccessfulConfirmCreds || isSuccessfulUpdateCredsOrAddAccount);
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002970 if (needUpdate || mAuthDetailsRequired) {
2971 boolean accountPresent = isAccountPresentForCaller(mAccountName, mAccountType);
2972 if (needUpdate && accountPresent) {
2973 updateLastAuthenticatedTime(new Account(mAccountName, mAccountType));
2974 }
2975 if (mAuthDetailsRequired) {
2976 long lastAuthenticatedTime = -1;
2977 if (accountPresent) {
2978 lastAuthenticatedTime = DatabaseUtils.longForQuery(
2979 mAccounts.openHelper.getReadableDatabase(),
2980 "select " + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS
2981 + " from " +
2982 TABLE_ACCOUNTS + " WHERE " + ACCOUNTS_NAME + "=? AND "
2983 + ACCOUNTS_TYPE + "=?",
2984 new String[] {
2985 mAccountName, mAccountType
2986 });
2987 }
Simranjit Singh Kohli1663b442015-04-28 11:11:12 -07002988 result.putLong(AccountManager.KEY_LAST_AUTHENTICATED_TIME,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002989 lastAuthenticatedTime);
2990 }
2991 }
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002992 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002993 if (result != null
2994 && (intent = result.getParcelable(AccountManager.KEY_INTENT)) != null) {
2995 /*
2996 * The Authenticator API allows third party authenticators to
2997 * supply arbitrary intents to other apps that they can run,
2998 * this can be very bad when those apps are in the system like
2999 * the System Settings.
3000 */
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003001 int authenticatorUid = Binder.getCallingUid();
Carlos Valdivia416747a2013-10-14 17:22:42 -07003002 long bid = Binder.clearCallingIdentity();
3003 try {
3004 PackageManager pm = mContext.getPackageManager();
3005 ResolveInfo resolveInfo = pm.resolveActivityAsUser(intent, 0, mAccounts.userId);
3006 int targetUid = resolveInfo.activityInfo.applicationInfo.uid;
3007 if (PackageManager.SIGNATURE_MATCH !=
3008 pm.checkSignatures(authenticatorUid, targetUid)) {
3009 throw new SecurityException(
3010 "Activity to be started with KEY_INTENT must " +
3011 "share Authenticator's signatures");
3012 }
3013 } finally {
3014 Binder.restoreCallingIdentity(bid);
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003015 }
3016 }
3017 if (result != null
3018 && !TextUtils.isEmpty(result.getString(AccountManager.KEY_AUTHTOKEN))) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003019 String accountName = result.getString(AccountManager.KEY_ACCOUNT_NAME);
3020 String accountType = result.getString(AccountManager.KEY_ACCOUNT_TYPE);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003021 if (!TextUtils.isEmpty(accountName) && !TextUtils.isEmpty(accountType)) {
3022 Account account = new Account(accountName, accountType);
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003023 cancelNotification(getSigninRequiredNotificationId(mAccounts, account),
3024 new UserHandle(mAccounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003025 }
Fred Quintana60307342009-03-24 22:48:12 -07003026 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003027 IAccountManagerResponse response;
3028 if (mExpectActivityLaunch && result != null
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003029 && result.containsKey(AccountManager.KEY_INTENT)) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003030 response = mResponse;
3031 } else {
3032 response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003033 }
Fred Quintana60307342009-03-24 22:48:12 -07003034 if (response != null) {
3035 try {
Fred Quintanaa698f422009-04-08 19:14:54 -07003036 if (result == null) {
Fred Quintana56285a62010-12-02 14:20:51 -08003037 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3038 Log.v(TAG, getClass().getSimpleName()
3039 + " calling onError() on response " + response);
3040 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003041 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE,
Fred Quintanaa698f422009-04-08 19:14:54 -07003042 "null bundle returned");
3043 } else {
Fred Quintana8570f742010-02-18 10:32:54 -08003044 if (mStripAuthTokenFromResult) {
3045 result.remove(AccountManager.KEY_AUTHTOKEN);
3046 }
Fred Quintana56285a62010-12-02 14:20:51 -08003047 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3048 Log.v(TAG, getClass().getSimpleName()
3049 + " calling onResult() on response " + response);
3050 }
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003051 if ((result.getInt(AccountManager.KEY_ERROR_CODE, -1) > 0) &&
3052 (intent == null)) {
3053 // All AccountManager error codes are greater than 0
3054 response.onError(result.getInt(AccountManager.KEY_ERROR_CODE),
3055 result.getString(AccountManager.KEY_ERROR_MESSAGE));
3056 } else {
3057 response.onResult(result);
3058 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003059 }
Fred Quintana60307342009-03-24 22:48:12 -07003060 } catch (RemoteException e) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003061 // if the caller is dead then there is no one to care about remote exceptions
3062 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3063 Log.v(TAG, "failure while notifying response", e);
3064 }
Fred Quintana60307342009-03-24 22:48:12 -07003065 }
3066 }
3067 }
Fred Quintana60307342009-03-24 22:48:12 -07003068
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003069 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07003070 public void onRequestContinued() {
3071 mNumRequestContinued++;
Fred Quintana60307342009-03-24 22:48:12 -07003072 }
3073
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003074 @Override
Fred Quintana60307342009-03-24 22:48:12 -07003075 public void onError(int errorCode, String errorMessage) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003076 mNumErrors++;
Fred Quintanaa698f422009-04-08 19:14:54 -07003077 IAccountManagerResponse response = getResponseAndClose();
3078 if (response != null) {
3079 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Fred Quintana56285a62010-12-02 14:20:51 -08003080 Log.v(TAG, getClass().getSimpleName()
3081 + " calling onError() on response " + response);
Fred Quintanaa698f422009-04-08 19:14:54 -07003082 }
3083 try {
3084 response.onError(errorCode, errorMessage);
3085 } catch (RemoteException e) {
3086 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3087 Log.v(TAG, "Session.onError: caught RemoteException while responding", e);
3088 }
3089 }
3090 } else {
3091 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3092 Log.v(TAG, "Session.onError: already closed");
3093 }
Fred Quintana60307342009-03-24 22:48:12 -07003094 }
3095 }
Fred Quintanab839afc2009-10-14 15:57:28 -07003096
3097 /**
3098 * find the component name for the authenticator and initiate a bind
3099 * if no authenticator or the bind fails then return false, otherwise return true
3100 */
3101 private boolean bindToAuthenticator(String authenticatorType) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003102 final AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription> authenticatorInfo;
3103 authenticatorInfo = mAuthenticatorCache.getServiceInfo(
3104 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
Fred Quintanab839afc2009-10-14 15:57:28 -07003105 if (authenticatorInfo == null) {
3106 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3107 Log.v(TAG, "there is no authenticator for " + authenticatorType
3108 + ", bailing out");
3109 }
3110 return false;
3111 }
3112
3113 Intent intent = new Intent();
3114 intent.setAction(AccountManager.ACTION_AUTHENTICATOR_INTENT);
3115 intent.setComponent(authenticatorInfo.componentName);
3116 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3117 Log.v(TAG, "performing bindService to " + authenticatorInfo.componentName);
3118 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08003119 if (!mContext.bindServiceAsUser(intent, this, Context.BIND_AUTO_CREATE,
3120 new UserHandle(mAccounts.userId))) {
Fred Quintanab839afc2009-10-14 15:57:28 -07003121 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3122 Log.v(TAG, "bindService to " + authenticatorInfo.componentName + " failed");
3123 }
3124 return false;
3125 }
3126
3127
3128 return true;
3129 }
Fred Quintana60307342009-03-24 22:48:12 -07003130 }
3131
3132 private class MessageHandler extends Handler {
3133 MessageHandler(Looper looper) {
3134 super(looper);
3135 }
Costin Manolache3348f142009-09-29 18:58:36 -07003136
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003137 @Override
Fred Quintana60307342009-03-24 22:48:12 -07003138 public void handleMessage(Message msg) {
Fred Quintana60307342009-03-24 22:48:12 -07003139 switch (msg.what) {
3140 case MESSAGE_TIMED_OUT:
3141 Session session = (Session)msg.obj;
3142 session.onTimedOut();
3143 break;
3144
Amith Yamasani5be347b2013-03-31 17:44:31 -07003145 case MESSAGE_COPY_SHARED_ACCOUNT:
Esteban Talavera22dc3b72014-10-31 15:41:12 +00003146 copyAccountToUser(/*no response*/ null, (Account) msg.obj, msg.arg1, msg.arg2);
Amith Yamasani5be347b2013-03-31 17:44:31 -07003147 break;
3148
Fred Quintana60307342009-03-24 22:48:12 -07003149 default:
3150 throw new IllegalStateException("unhandled message: " + msg.what);
3151 }
3152 }
3153 }
3154
Amith Yamasani04e0d262012-02-14 11:50:53 -08003155 private static String getDatabaseName(int userId) {
3156 File systemDir = Environment.getSystemSecureDirectory();
Amith Yamasani61f57372012-08-31 12:12:28 -07003157 File databaseFile = new File(Environment.getUserSystemDirectory(userId), DATABASE_NAME);
Amith Yamasani04e0d262012-02-14 11:50:53 -08003158 if (userId == 0) {
Amith Yamasania23bb382012-04-11 15:32:07 -07003159 // Migrate old file, if it exists, to the new location.
3160 // Make sure the new file doesn't already exist. A dummy file could have been
3161 // accidentally created in the old location, causing the new one to become corrupted
3162 // as well.
Amith Yamasani04e0d262012-02-14 11:50:53 -08003163 File oldFile = new File(systemDir, DATABASE_NAME);
Amith Yamasania23bb382012-04-11 15:32:07 -07003164 if (oldFile.exists() && !databaseFile.exists()) {
Marc Blankc6b0f992012-03-18 19:16:41 -07003165 // Check for use directory; create if it doesn't exist, else renameTo will fail
Amith Yamasani61f57372012-08-31 12:12:28 -07003166 File userDir = Environment.getUserSystemDirectory(userId);
Marc Blankc6b0f992012-03-18 19:16:41 -07003167 if (!userDir.exists()) {
3168 if (!userDir.mkdirs()) {
3169 throw new IllegalStateException("User dir cannot be created: " + userDir);
3170 }
3171 }
3172 if (!oldFile.renameTo(databaseFile)) {
3173 throw new IllegalStateException("User dir cannot be migrated: " + databaseFile);
3174 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003175 }
Oscar Montemayora8529f62009-11-18 10:14:20 -08003176 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003177 return databaseFile.getPath();
Oscar Montemayora8529f62009-11-18 10:14:20 -08003178 }
3179
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003180 private static class DebugDbHelper{
3181 private DebugDbHelper() {
3182 }
3183
3184 private static String TABLE_DEBUG = "debug_table";
3185
3186 // Columns for the table
3187 private static String ACTION_TYPE = "action_type";
3188 private static String TIMESTAMP = "time";
3189 private static String CALLER_UID = "caller_uid";
3190 private static String TABLE_NAME = "table_name";
3191 private static String KEY = "primary_key";
3192
3193 // These actions correspond to the occurrence of real actions. Since
3194 // these are called by the authenticators, the uid associated will be
3195 // of the authenticator.
3196 private static String ACTION_SET_PASSWORD = "action_set_password";
3197 private static String ACTION_CLEAR_PASSWORD = "action_clear_password";
3198 private static String ACTION_ACCOUNT_ADD = "action_account_add";
3199 private static String ACTION_ACCOUNT_REMOVE = "action_account_remove";
3200 private static String ACTION_AUTHENTICATOR_REMOVE = "action_authenticator_remove";
3201 private static String ACTION_ACCOUNT_RENAME = "action_account_rename";
3202
3203 // These actions don't necessarily correspond to any action on
3204 // accountDb taking place. As an example, there might be a request for
3205 // addingAccount, which might not lead to addition of account on grounds
3206 // of bad authentication. We will still be logging it to keep track of
3207 // who called.
3208 private static String ACTION_CALLED_ACCOUNT_ADD = "action_called_account_add";
3209 private static String ACTION_CALLED_ACCOUNT_REMOVE = "action_called_account_remove";
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003210
3211 private static SimpleDateFormat dateFromat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
3212
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003213 private static void createDebugTable(SQLiteDatabase db) {
3214 db.execSQL("CREATE TABLE " + TABLE_DEBUG + " ( "
3215 + ACCOUNTS_ID + " INTEGER,"
3216 + ACTION_TYPE + " TEXT NOT NULL, "
3217 + TIMESTAMP + " DATETIME,"
3218 + CALLER_UID + " INTEGER NOT NULL,"
3219 + TABLE_NAME + " TEXT NOT NULL,"
3220 + KEY + " INTEGER PRIMARY KEY)");
3221 db.execSQL("CREATE INDEX timestamp_index ON " + TABLE_DEBUG + " (" + TIMESTAMP + ")");
3222 }
3223 }
3224
3225 private void logRecord(UserAccounts accounts, String action, String tableName) {
3226 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
3227 logRecord(db, action, tableName, -1, accounts);
3228 }
3229
3230 /*
3231 * This function receives an opened writable database.
3232 */
3233 private void logRecord(SQLiteDatabase db, String action, String tableName, long accountId,
3234 UserAccounts userAccount) {
3235 logRecord(db, action, tableName, accountId, userAccount, getCallingUid());
3236 }
3237
3238 /*
3239 * This function receives an opened writable database.
3240 */
3241 private void logRecord(SQLiteDatabase db, String action, String tableName, long accountId,
3242 UserAccounts userAccount, int callingUid) {
3243 SQLiteStatement logStatement = userAccount.statementForLogging;
3244 logStatement.bindLong(1, accountId);
3245 logStatement.bindString(2, action);
3246 logStatement.bindString(3, DebugDbHelper.dateFromat.format(new Date()));
3247 logStatement.bindLong(4, callingUid);
3248 logStatement.bindString(5, tableName);
3249 logStatement.bindLong(6, userAccount.debugDbInsertionPoint);
3250 logStatement.execute();
3251 logStatement.clearBindings();
3252 userAccount.debugDbInsertionPoint = (userAccount.debugDbInsertionPoint + 1)
3253 % MAX_DEBUG_DB_SIZE;
3254 }
3255
3256 /*
3257 * This should only be called once to compile the sql statement for logging
3258 * and to find the insertion point.
3259 */
3260 private void initializeDebugDbSizeAndCompileSqlStatementForLogging(SQLiteDatabase db,
3261 UserAccounts userAccount) {
3262 // Initialize the count if not done earlier.
3263 int size = (int) getDebugTableRowCount(db);
3264 if (size >= MAX_DEBUG_DB_SIZE) {
3265 // Table is full, and we need to find the point where to insert.
3266 userAccount.debugDbInsertionPoint = (int) getDebugTableInsertionPoint(db);
3267 } else {
3268 userAccount.debugDbInsertionPoint = size;
3269 }
3270 compileSqlStatementForLogging(db, userAccount);
3271 }
3272
3273 private void compileSqlStatementForLogging(SQLiteDatabase db, UserAccounts userAccount) {
3274 String sql = "INSERT OR REPLACE INTO " + DebugDbHelper.TABLE_DEBUG
3275 + " VALUES (?,?,?,?,?,?)";
3276 userAccount.statementForLogging = db.compileStatement(sql);
3277 }
3278
3279 private long getDebugTableRowCount(SQLiteDatabase db) {
3280 String queryCountDebugDbRows = "SELECT COUNT(*) FROM " + DebugDbHelper.TABLE_DEBUG;
3281 return DatabaseUtils.longForQuery(db, queryCountDebugDbRows, null);
3282 }
3283
3284 /*
3285 * Finds the row key where the next insertion should take place. This should
3286 * be invoked only if the table has reached its full capacity.
3287 */
3288 private long getDebugTableInsertionPoint(SQLiteDatabase db) {
3289 // This query finds the smallest timestamp value (and if 2 records have
3290 // same timestamp, the choose the lower id).
3291 String queryCountDebugDbRows = new StringBuilder()
3292 .append("SELECT ").append(DebugDbHelper.KEY)
3293 .append(" FROM ").append(DebugDbHelper.TABLE_DEBUG)
3294 .append(" ORDER BY ")
3295 .append(DebugDbHelper.TIMESTAMP).append(",").append(DebugDbHelper.KEY)
3296 .append(" LIMIT 1")
3297 .toString();
3298 return DatabaseUtils.longForQuery(db, queryCountDebugDbRows, null);
3299 }
3300
Amith Yamasani04e0d262012-02-14 11:50:53 -08003301 static class DatabaseHelper extends SQLiteOpenHelper {
Oscar Montemayora8529f62009-11-18 10:14:20 -08003302
Amith Yamasani04e0d262012-02-14 11:50:53 -08003303 public DatabaseHelper(Context context, int userId) {
3304 super(context, AccountManagerService.getDatabaseName(userId), null, DATABASE_VERSION);
Fred Quintana60307342009-03-24 22:48:12 -07003305 }
3306
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003307 /**
3308 * This call needs to be made while the mCacheLock is held. The way to
3309 * ensure this is to get the lock any time a method is called ont the DatabaseHelper
3310 * @param db The database.
3311 */
Fred Quintana60307342009-03-24 22:48:12 -07003312 @Override
3313 public void onCreate(SQLiteDatabase db) {
3314 db.execSQL("CREATE TABLE " + TABLE_ACCOUNTS + " ( "
3315 + ACCOUNTS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3316 + ACCOUNTS_NAME + " TEXT NOT NULL, "
3317 + ACCOUNTS_TYPE + " TEXT NOT NULL, "
3318 + ACCOUNTS_PASSWORD + " TEXT, "
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003319 + ACCOUNTS_PREVIOUS_NAME + " TEXT, "
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003320 + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS + " INTEGER DEFAULT 0, "
Fred Quintana60307342009-03-24 22:48:12 -07003321 + "UNIQUE(" + ACCOUNTS_NAME + "," + ACCOUNTS_TYPE + "))");
3322
3323 db.execSQL("CREATE TABLE " + TABLE_AUTHTOKENS + " ( "
3324 + AUTHTOKENS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3325 + AUTHTOKENS_ACCOUNTS_ID + " INTEGER NOT NULL, "
3326 + AUTHTOKENS_TYPE + " TEXT NOT NULL, "
3327 + AUTHTOKENS_AUTHTOKEN + " TEXT, "
3328 + "UNIQUE (" + AUTHTOKENS_ACCOUNTS_ID + "," + AUTHTOKENS_TYPE + "))");
3329
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003330 createGrantsTable(db);
3331
Fred Quintana60307342009-03-24 22:48:12 -07003332 db.execSQL("CREATE TABLE " + TABLE_EXTRAS + " ( "
3333 + EXTRAS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3334 + EXTRAS_ACCOUNTS_ID + " INTEGER, "
3335 + EXTRAS_KEY + " TEXT NOT NULL, "
3336 + EXTRAS_VALUE + " TEXT, "
3337 + "UNIQUE(" + EXTRAS_ACCOUNTS_ID + "," + EXTRAS_KEY + "))");
3338
3339 db.execSQL("CREATE TABLE " + TABLE_META + " ( "
3340 + META_KEY + " TEXT PRIMARY KEY NOT NULL, "
3341 + META_VALUE + " TEXT)");
Fred Quintanaa698f422009-04-08 19:14:54 -07003342
Amith Yamasani67df64b2012-12-14 12:09:36 -08003343 createSharedAccountsTable(db);
3344
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003345 createAccountsDeletionTrigger(db);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003346
3347 DebugDbHelper.createDebugTable(db);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003348 }
3349
Amith Yamasani67df64b2012-12-14 12:09:36 -08003350 private void createSharedAccountsTable(SQLiteDatabase db) {
3351 db.execSQL("CREATE TABLE " + TABLE_SHARED_ACCOUNTS + " ( "
3352 + ACCOUNTS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3353 + ACCOUNTS_NAME + " TEXT NOT NULL, "
3354 + ACCOUNTS_TYPE + " TEXT NOT NULL, "
3355 + "UNIQUE(" + ACCOUNTS_NAME + "," + ACCOUNTS_TYPE + "))");
3356 }
3357
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003358 private void addLastSuccessfullAuthenticatedTimeColumn(SQLiteDatabase db) {
3359 db.execSQL("ALTER TABLE " + TABLE_ACCOUNTS + " ADD COLUMN "
3360 + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS + " DEFAULT 0");
3361 }
3362
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003363 private void addOldAccountNameColumn(SQLiteDatabase db) {
3364 db.execSQL("ALTER TABLE " + TABLE_ACCOUNTS + " ADD COLUMN " + ACCOUNTS_PREVIOUS_NAME);
3365 }
3366
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003367 private void addDebugTable(SQLiteDatabase db) {
3368 DebugDbHelper.createDebugTable(db);
3369 }
3370
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003371 private void createAccountsDeletionTrigger(SQLiteDatabase db) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003372 db.execSQL(""
3373 + " CREATE TRIGGER " + TABLE_ACCOUNTS + "Delete DELETE ON " + TABLE_ACCOUNTS
3374 + " BEGIN"
3375 + " DELETE FROM " + TABLE_AUTHTOKENS
3376 + " WHERE " + AUTHTOKENS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
3377 + " DELETE FROM " + TABLE_EXTRAS
3378 + " WHERE " + EXTRAS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003379 + " DELETE FROM " + TABLE_GRANTS
3380 + " WHERE " + GRANTS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
Fred Quintanaa698f422009-04-08 19:14:54 -07003381 + " END");
Fred Quintana60307342009-03-24 22:48:12 -07003382 }
3383
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003384 private void createGrantsTable(SQLiteDatabase db) {
3385 db.execSQL("CREATE TABLE " + TABLE_GRANTS + " ( "
3386 + GRANTS_ACCOUNTS_ID + " INTEGER NOT NULL, "
3387 + GRANTS_AUTH_TOKEN_TYPE + " STRING NOT NULL, "
3388 + GRANTS_GRANTEE_UID + " INTEGER NOT NULL, "
3389 + "UNIQUE (" + GRANTS_ACCOUNTS_ID + "," + GRANTS_AUTH_TOKEN_TYPE
3390 + "," + GRANTS_GRANTEE_UID + "))");
3391 }
3392
Fred Quintana60307342009-03-24 22:48:12 -07003393 @Override
3394 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003395 Log.e(TAG, "upgrade from version " + oldVersion + " to version " + newVersion);
Fred Quintana60307342009-03-24 22:48:12 -07003396
Fred Quintanaa698f422009-04-08 19:14:54 -07003397 if (oldVersion == 1) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003398 // no longer need to do anything since the work is done
3399 // when upgrading from version 2
3400 oldVersion++;
3401 }
3402
3403 if (oldVersion == 2) {
3404 createGrantsTable(db);
3405 db.execSQL("DROP TRIGGER " + TABLE_ACCOUNTS + "Delete");
3406 createAccountsDeletionTrigger(db);
Fred Quintanaa698f422009-04-08 19:14:54 -07003407 oldVersion++;
3408 }
Costin Manolache3348f142009-09-29 18:58:36 -07003409
3410 if (oldVersion == 3) {
3411 db.execSQL("UPDATE " + TABLE_ACCOUNTS + " SET " + ACCOUNTS_TYPE +
3412 " = 'com.google' WHERE " + ACCOUNTS_TYPE + " == 'com.google.GAIA'");
3413 oldVersion++;
3414 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08003415
3416 if (oldVersion == 4) {
3417 createSharedAccountsTable(db);
3418 oldVersion++;
3419 }
3420
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003421 if (oldVersion == 5) {
3422 addOldAccountNameColumn(db);
3423 oldVersion++;
3424 }
3425
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003426 if (oldVersion == 6) {
3427 addLastSuccessfullAuthenticatedTimeColumn(db);
3428 oldVersion++;
3429 }
3430
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003431 if (oldVersion == 7) {
3432 addDebugTable(db);
3433 oldVersion++;
3434 }
3435
Amith Yamasani67df64b2012-12-14 12:09:36 -08003436 if (oldVersion != newVersion) {
3437 Log.e(TAG, "failed to upgrade version " + oldVersion + " to version " + newVersion);
3438 }
Fred Quintana60307342009-03-24 22:48:12 -07003439 }
3440
3441 @Override
3442 public void onOpen(SQLiteDatabase db) {
3443 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "opened database " + DATABASE_NAME);
3444 }
3445 }
3446
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003447 public IBinder onBind(@SuppressWarnings("unused") Intent intent) {
Fred Quintana60307342009-03-24 22:48:12 -07003448 return asBinder();
3449 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003450
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003451 /**
3452 * Searches array of arguments for the specified string
3453 * @param args array of argument strings
3454 * @param value value to search for
3455 * @return true if the value is contained in the array
3456 */
3457 private static boolean scanArgs(String[] args, String value) {
3458 if (args != null) {
3459 for (String arg : args) {
3460 if (value.equals(arg)) {
3461 return true;
3462 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003463 }
3464 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003465 return false;
3466 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003467
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003468 @Override
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003469 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
Kenny Root3abd75b2011-09-29 11:00:41 -07003470 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3471 != PackageManager.PERMISSION_GRANTED) {
3472 fout.println("Permission Denial: can't dump AccountsManager from from pid="
3473 + Binder.getCallingPid() + ", uid=" + Binder.getCallingUid()
3474 + " without permission " + android.Manifest.permission.DUMP);
3475 return;
3476 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003477 final boolean isCheckinRequest = scanArgs(args, "--checkin") || scanArgs(args, "-c");
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003478 final IndentingPrintWriter ipw = new IndentingPrintWriter(fout, " ");
Kenny Root3abd75b2011-09-29 11:00:41 -07003479
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003480 final List<UserInfo> users = getUserManager().getUsers();
3481 for (UserInfo user : users) {
3482 ipw.println("User " + user + ":");
3483 ipw.increaseIndent();
3484 dumpUser(getUserAccounts(user.id), fd, ipw, args, isCheckinRequest);
3485 ipw.println();
3486 ipw.decreaseIndent();
Amith Yamasani04e0d262012-02-14 11:50:53 -08003487 }
3488 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003489
Amith Yamasani04e0d262012-02-14 11:50:53 -08003490 private void dumpUser(UserAccounts userAccounts, FileDescriptor fd, PrintWriter fout,
3491 String[] args, boolean isCheckinRequest) {
3492 synchronized (userAccounts.cacheLock) {
3493 final SQLiteDatabase db = userAccounts.openHelper.getReadableDatabase();
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003494
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003495 if (isCheckinRequest) {
3496 // This is a checkin request. *Only* upload the account types and the count of each.
3497 Cursor cursor = db.query(TABLE_ACCOUNTS, ACCOUNT_TYPE_COUNT_PROJECTION,
3498 null, null, ACCOUNTS_TYPE, null, null);
3499 try {
3500 while (cursor.moveToNext()) {
3501 // print type,count
3502 fout.println(cursor.getString(0) + "," + cursor.getString(1));
3503 }
3504 } finally {
3505 if (cursor != null) {
3506 cursor.close();
3507 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003508 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003509 } else {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003510 Account[] accounts = getAccountsFromCacheLocked(userAccounts, null /* type */,
Amith Yamasani27db4682013-03-30 17:07:47 -07003511 Process.myUid(), null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003512 fout.println("Accounts: " + accounts.length);
3513 for (Account account : accounts) {
3514 fout.println(" " + account);
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003515 }
Fred Quintana307da1a2010-01-21 14:24:20 -08003516
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003517 // Add debug information.
3518 fout.println();
3519 Cursor cursor = db.query(DebugDbHelper.TABLE_DEBUG, null,
3520 null, null, null, null, DebugDbHelper.TIMESTAMP);
3521 fout.println("AccountId, Action_Type, timestamp, UID, TableName, Key");
3522 fout.println("Accounts History");
3523 try {
3524 while (cursor.moveToNext()) {
3525 // print type,count
3526 fout.println(cursor.getString(0) + "," + cursor.getString(1) + "," +
3527 cursor.getString(2) + "," + cursor.getString(3) + ","
3528 + cursor.getString(4) + "," + cursor.getString(5));
3529 }
3530 } finally {
3531 cursor.close();
3532 }
3533
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003534 fout.println();
3535 synchronized (mSessions) {
3536 final long now = SystemClock.elapsedRealtime();
3537 fout.println("Active Sessions: " + mSessions.size());
3538 for (Session session : mSessions.values()) {
3539 fout.println(" " + session.toDebugString(now));
3540 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003541 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003542
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003543 fout.println();
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003544 mAuthenticatorCache.dump(fd, fout, args, userAccounts.userId);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003545 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003546 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003547 }
3548
Amith Yamasani04e0d262012-02-14 11:50:53 -08003549 private void doNotification(UserAccounts accounts, Account account, CharSequence message,
Dianne Hackborn41203752012-08-31 14:05:51 -07003550 Intent intent, int userId) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003551 long identityToken = clearCallingIdentity();
3552 try {
3553 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3554 Log.v(TAG, "doNotification: " + message + " intent:" + intent);
3555 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003556
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003557 if (intent.getComponent() != null &&
3558 GrantCredentialsPermissionActivity.class.getName().equals(
3559 intent.getComponent().getClassName())) {
Dianne Hackborn41203752012-08-31 14:05:51 -07003560 createNoCredentialsPermissionNotification(account, intent, userId);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003561 } else {
Amith Yamasani04e0d262012-02-14 11:50:53 -08003562 final Integer notificationId = getSigninRequiredNotificationId(accounts, account);
Fred Quintana33f889a2009-09-14 17:31:26 -07003563 intent.addCategory(String.valueOf(notificationId));
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003564 UserHandle user = new UserHandle(userId);
Kenny Guy07ad8dc2014-09-01 20:56:12 +01003565 Context contextForUser = getContextForUser(user);
Fred Quintana33f889a2009-09-14 17:31:26 -07003566 final String notificationTitleFormat =
Kenny Guy07ad8dc2014-09-01 20:56:12 +01003567 contextForUser.getText(R.string.notification_title).toString();
Chris Wren1ce4b6d2015-06-11 10:19:43 -04003568 Notification n = new Notification.Builder(contextForUser)
3569 .setWhen(0)
3570 .setSmallIcon(android.R.drawable.stat_sys_warning)
3571 .setColor(contextForUser.getColor(
3572 com.android.internal.R.color.system_notification_accent_color))
3573 .setContentTitle(String.format(notificationTitleFormat, account.name))
3574 .setContentText(message)
3575 .setContentIntent(PendingIntent.getActivityAsUser(
3576 mContext, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT,
3577 null, user))
3578 .build();
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003579 installNotification(notificationId, n, user);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003580 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003581 } finally {
3582 restoreCallingIdentity(identityToken);
3583 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003584 }
3585
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003586 protected void installNotification(final int notificationId, final Notification n,
3587 UserHandle user) {
Fred Quintana56285a62010-12-02 14:20:51 -08003588 ((NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE))
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003589 .notifyAsUser(null, notificationId, n, user);
Fred Quintana56285a62010-12-02 14:20:51 -08003590 }
3591
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003592 protected void cancelNotification(int id, UserHandle user) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003593 long identityToken = clearCallingIdentity();
3594 try {
3595 ((NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE))
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003596 .cancelAsUser(null, id, user);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003597 } finally {
3598 restoreCallingIdentity(identityToken);
3599 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003600 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003601
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003602 private boolean isPermitted(int callingUid, String... permissions) {
Fred Quintanab38eb142010-02-24 13:40:54 -08003603 for (String perm : permissions) {
3604 if (mContext.checkCallingOrSelfPermission(perm) == PackageManager.PERMISSION_GRANTED) {
3605 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003606 Log.v(TAG, " caller uid " + callingUid + " has " + perm);
Fred Quintanab38eb142010-02-24 13:40:54 -08003607 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003608 return true;
Fred Quintanab38eb142010-02-24 13:40:54 -08003609 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003610 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003611 return false;
3612 }
3613
3614 /** Succeeds if any of the specified permissions are granted. */
3615 private void checkBinderPermission(String... permissions) {
3616 final int callingUid = Binder.getCallingUid();
3617 if (isPermitted(callingUid, permissions)) {
3618 String msg = String.format(
3619 "caller uid %s lacks any of %s",
3620 callingUid,
3621 TextUtils.join(",", permissions));
3622 Log.w(TAG, " " + msg);
3623 throw new SecurityException(msg);
3624 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003625 }
3626
Amith Yamasani67df64b2012-12-14 12:09:36 -08003627 private int handleIncomingUser(int userId) {
3628 try {
3629 return ActivityManagerNative.getDefault().handleIncomingUser(
3630 Binder.getCallingPid(), Binder.getCallingUid(), userId, true, true, "", null);
3631 } catch (RemoteException re) {
3632 // Shouldn't happen, local.
3633 }
3634 return userId;
3635 }
3636
Christopher Tateccbf84f2013-05-08 15:25:41 -07003637 private boolean isPrivileged(int callingUid) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003638 final int callingUserId = UserHandle.getUserId(callingUid);
3639
3640 final PackageManager userPackageManager;
3641 try {
3642 userPackageManager = mContext.createPackageContextAsUser(
3643 "android", 0, new UserHandle(callingUserId)).getPackageManager();
3644 } catch (NameNotFoundException e) {
3645 return false;
3646 }
3647
3648 String[] packages = userPackageManager.getPackagesForUid(callingUid);
Fred Quintana7be59642009-08-24 18:29:25 -07003649 for (String name : packages) {
3650 try {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003651 PackageInfo packageInfo = userPackageManager.getPackageInfo(name, 0 /* flags */);
Fred Quintana56285a62010-12-02 14:20:51 -08003652 if (packageInfo != null
Alex Klyubinb9f8a522015-02-03 11:12:59 -08003653 && (packageInfo.applicationInfo.privateFlags
3654 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
Fred Quintana7be59642009-08-24 18:29:25 -07003655 return true;
3656 }
3657 } catch (PackageManager.NameNotFoundException e) {
3658 return false;
3659 }
3660 }
3661 return false;
3662 }
3663
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003664 private boolean permissionIsGranted(Account account, String authTokenType, int callerUid) {
Christopher Tateccbf84f2013-05-08 15:25:41 -07003665 final boolean isPrivileged = isPrivileged(callerUid);
Fred Quintana31957f12009-10-21 13:43:10 -07003666 final boolean fromAuthenticator = account != null
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003667 && isAccountManagedByCaller(account.type, callerUid);
Fred Quintana31957f12009-10-21 13:43:10 -07003668 final boolean hasExplicitGrants = account != null
Amith Yamasani04e0d262012-02-14 11:50:53 -08003669 && hasExplicitlyGrantedPermission(account, authTokenType, callerUid);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003670 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3671 Log.v(TAG, "checkGrantsOrCallingUidAgainstAuthenticator: caller uid "
Fred Quintana56285a62010-12-02 14:20:51 -08003672 + callerUid + ", " + account
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003673 + ": is authenticator? " + fromAuthenticator
3674 + ", has explicit permission? " + hasExplicitGrants);
3675 }
Christopher Tateccbf84f2013-05-08 15:25:41 -07003676 return fromAuthenticator || hasExplicitGrants || isPrivileged;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003677 }
3678
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003679 private boolean isAccountManagedByCaller(String accountType, int callingUid) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003680 if (accountType == null) {
3681 return false;
3682 }
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003683 final int callingUserId = UserHandle.getUserId(callingUid);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003684 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> serviceInfo :
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003685 mAuthenticatorCache.getAllServices(callingUserId)) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003686 if (serviceInfo.type.type.equals(accountType)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003687 /*
3688 * We can't simply compare uids because uids can be recycled before the
3689 * authenticator cache is updated.
3690 */
3691 final int sigChk = mPackageManager.checkSignatures(serviceInfo.uid, callingUid);
3692 return sigChk == PackageManager.SIGNATURE_MATCH;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003693 }
3694 }
3695 return false;
3696 }
3697
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003698 private boolean isAccountPresentForCaller(String accountName, String accountType) {
3699 if (getUserAccountsForCaller().accountCache.containsKey(accountType)) {
3700 for (Account account : getUserAccountsForCaller().accountCache.get(accountType)) {
3701 if (account.name.equals(accountName)) {
3702 return true;
3703 }
3704 }
3705 }
3706 return false;
3707 }
3708
Amith Yamasani04e0d262012-02-14 11:50:53 -08003709 private boolean hasExplicitlyGrantedPermission(Account account, String authTokenType,
3710 int callerUid) {
Amith Yamasani27db4682013-03-30 17:07:47 -07003711 if (callerUid == Process.SYSTEM_UID) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003712 return true;
3713 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003714 UserAccounts accounts = getUserAccountsForCaller();
3715 synchronized (accounts.cacheLock) {
3716 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
3717 String[] args = { String.valueOf(callerUid), authTokenType,
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003718 account.name, account.type};
3719 final boolean permissionGranted =
3720 DatabaseUtils.longForQuery(db, COUNT_OF_MATCHING_GRANTS, args) != 0;
3721 if (!permissionGranted && ActivityManager.isRunningInTestHarness()) {
3722 // TODO: Skip this check when running automated tests. Replace this
3723 // with a more general solution.
3724 Log.d(TAG, "no credentials permission for usage of " + account + ", "
Amith Yamasani04e0d262012-02-14 11:50:53 -08003725 + authTokenType + " by uid " + callerUid
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003726 + " but ignoring since device is in test harness.");
3727 return true;
3728 }
3729 return permissionGranted;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003730 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003731 }
3732
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003733 private boolean isSystemUid(int callingUid) {
3734 String[] packages = null;
3735 long ident = Binder.clearCallingIdentity();
3736 try {
3737 packages = mPackageManager.getPackagesForUid(callingUid);
3738 } finally {
3739 Binder.restoreCallingIdentity(ident);
Carlos Valdiviaffb46022015-06-08 19:07:54 -07003740 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003741 if (packages != null) {
3742 for (String name : packages) {
3743 try {
3744 PackageInfo packageInfo = mPackageManager.getPackageInfo(name, 0 /* flags */);
3745 if (packageInfo != null
3746 && (packageInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM)
3747 != 0) {
3748 return true;
3749 }
3750 } catch (PackageManager.NameNotFoundException e) {
3751 Log.w(TAG, String.format("Could not find package [%s]", name), e);
3752 }
3753 }
3754 } else {
3755 Log.w(TAG, "No known packages with uid " + callingUid);
Carlos Valdiviaffb46022015-06-08 19:07:54 -07003756 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003757 return false;
Carlos Valdiviadcddc472015-06-11 20:04:04 +00003758 }
3759
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003760 private boolean isReadAccountsPermitted(int callingUid, String accountType) {
3761 /*
3762 * Settings app (which is in the same uid as AcocuntManagerService), apps with the
3763 * GET_ACCOUNTS permission or authenticators that own the account type should be able to
3764 * access accounts of the specified account.
3765 */
3766 boolean isPermitted =
3767 isPermitted(callingUid, Manifest.permission.GET_ACCOUNTS);
3768 boolean isAccountManagedByCaller = isAccountManagedByCaller(accountType, callingUid);
3769 Log.w(TAG, String.format(
3770 "isReadAccountPermitted: isPermitted: %s, isAM: %s",
3771 isPermitted,
3772 isAccountManagedByCaller));
3773 return isPermitted || isAccountManagedByCaller;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003774 }
3775
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003776 /** Succeeds if any of the specified permissions are granted. */
3777 private void checkReadAccountsPermitted(
3778 int callingUid,
3779 String accountType) {
3780 if (!isReadAccountsPermitted(callingUid, accountType)) {
3781 String msg = String.format(
3782 "caller uid %s cannot access %s accounts",
3783 callingUid,
3784 accountType);
3785 Log.w(TAG, " " + msg);
3786 throw new SecurityException(msg);
3787 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003788 }
3789
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003790 private boolean canUserModifyAccounts(int userId) {
3791 if (getUserManager().getUserRestrictions(new UserHandle(userId))
3792 .getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS)) {
3793 return false;
Amith Yamasanie4cf7342012-12-17 11:12:09 -08003794 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003795 return true;
3796 }
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003797
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003798 private boolean canUserModifyAccountsForType(int userId, String accountType) {
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003799 DevicePolicyManager dpm = (DevicePolicyManager) mContext
3800 .getSystemService(Context.DEVICE_POLICY_SERVICE);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003801 String[] typesArray = dpm.getAccountTypesWithManagementDisabledAsUser(userId);
Adili Muguro4e68b652014-07-25 16:42:39 +02003802 if (typesArray == null) {
3803 return true;
3804 }
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003805 for (String forbiddenType : typesArray) {
3806 if (forbiddenType.equals(accountType)) {
3807 return false;
3808 }
3809 }
Amith Yamasanie4cf7342012-12-17 11:12:09 -08003810 return true;
3811 }
3812
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003813 @Override
Fred Quintanad9640ec2012-05-23 12:37:00 -07003814 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value)
3815 throws RemoteException {
3816 final int callingUid = getCallingUid();
3817
Amith Yamasani27db4682013-03-30 17:07:47 -07003818 if (callingUid != Process.SYSTEM_UID) {
Fred Quintanad9640ec2012-05-23 12:37:00 -07003819 throw new SecurityException();
3820 }
3821
3822 if (value) {
3823 grantAppPermission(account, authTokenType, uid);
3824 } else {
3825 revokeAppPermission(account, authTokenType, uid);
3826 }
3827 }
3828
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003829 /**
3830 * Allow callers with the given uid permission to get credentials for account/authTokenType.
3831 * <p>
3832 * Although this is public it can only be accessed via the AccountManagerService object
3833 * which is in the system. This means we don't need to protect it with permissions.
3834 * @hide
3835 */
Fred Quintanad9640ec2012-05-23 12:37:00 -07003836 private void grantAppPermission(Account account, String authTokenType, int uid) {
Fred Quintana382601f2010-03-25 12:25:10 -07003837 if (account == null || authTokenType == null) {
3838 Log.e(TAG, "grantAppPermission: called with invalid arguments", new Exception());
Fred Quintana31957f12009-10-21 13:43:10 -07003839 return;
3840 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003841 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08003842 synchronized (accounts.cacheLock) {
3843 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003844 db.beginTransaction();
3845 try {
3846 long accountId = getAccountIdLocked(db, account);
3847 if (accountId >= 0) {
3848 ContentValues values = new ContentValues();
3849 values.put(GRANTS_ACCOUNTS_ID, accountId);
3850 values.put(GRANTS_AUTH_TOKEN_TYPE, authTokenType);
3851 values.put(GRANTS_GRANTEE_UID, uid);
3852 db.insert(TABLE_GRANTS, GRANTS_ACCOUNTS_ID, values);
3853 db.setTransactionSuccessful();
3854 }
3855 } finally {
3856 db.endTransaction();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003857 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003858 cancelNotification(getCredentialPermissionNotificationId(account, authTokenType, uid),
3859 new UserHandle(accounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003860 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003861 }
3862
3863 /**
3864 * Don't allow callers with the given uid permission to get credentials for
3865 * account/authTokenType.
3866 * <p>
3867 * Although this is public it can only be accessed via the AccountManagerService object
3868 * which is in the system. This means we don't need to protect it with permissions.
3869 * @hide
3870 */
Fred Quintanad9640ec2012-05-23 12:37:00 -07003871 private void revokeAppPermission(Account account, String authTokenType, int uid) {
Fred Quintana382601f2010-03-25 12:25:10 -07003872 if (account == null || authTokenType == null) {
3873 Log.e(TAG, "revokeAppPermission: called with invalid arguments", new Exception());
Fred Quintana31957f12009-10-21 13:43:10 -07003874 return;
3875 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003876 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08003877 synchronized (accounts.cacheLock) {
3878 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003879 db.beginTransaction();
3880 try {
3881 long accountId = getAccountIdLocked(db, account);
3882 if (accountId >= 0) {
3883 db.delete(TABLE_GRANTS,
3884 GRANTS_ACCOUNTS_ID + "=? AND " + GRANTS_AUTH_TOKEN_TYPE + "=? AND "
3885 + GRANTS_GRANTEE_UID + "=?",
3886 new String[]{String.valueOf(accountId), authTokenType,
3887 String.valueOf(uid)});
3888 db.setTransactionSuccessful();
3889 }
3890 } finally {
3891 db.endTransaction();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003892 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003893 cancelNotification(getCredentialPermissionNotificationId(account, authTokenType, uid),
3894 new UserHandle(accounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003895 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003896 }
Fred Quintana56285a62010-12-02 14:20:51 -08003897
3898 static final private String stringArrayToString(String[] value) {
3899 return value != null ? ("[" + TextUtils.join(",", value) + "]") : null;
3900 }
3901
Amith Yamasani04e0d262012-02-14 11:50:53 -08003902 private void removeAccountFromCacheLocked(UserAccounts accounts, Account account) {
3903 final Account[] oldAccountsForType = accounts.accountCache.get(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003904 if (oldAccountsForType != null) {
3905 ArrayList<Account> newAccountsList = new ArrayList<Account>();
3906 for (Account curAccount : oldAccountsForType) {
3907 if (!curAccount.equals(account)) {
3908 newAccountsList.add(curAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08003909 }
3910 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003911 if (newAccountsList.isEmpty()) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08003912 accounts.accountCache.remove(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003913 } else {
3914 Account[] newAccountsForType = new Account[newAccountsList.size()];
3915 newAccountsForType = newAccountsList.toArray(newAccountsForType);
Amith Yamasani04e0d262012-02-14 11:50:53 -08003916 accounts.accountCache.put(account.type, newAccountsForType);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003917 }
Fred Quintana56285a62010-12-02 14:20:51 -08003918 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003919 accounts.userDataCache.remove(account);
3920 accounts.authTokenCache.remove(account);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003921 accounts.previousNameCache.remove(account);
Fred Quintana56285a62010-12-02 14:20:51 -08003922 }
3923
3924 /**
3925 * This assumes that the caller has already checked that the account is not already present.
3926 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08003927 private void insertAccountIntoCacheLocked(UserAccounts accounts, Account account) {
3928 Account[] accountsForType = accounts.accountCache.get(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003929 int oldLength = (accountsForType != null) ? accountsForType.length : 0;
3930 Account[] newAccountsForType = new Account[oldLength + 1];
3931 if (accountsForType != null) {
3932 System.arraycopy(accountsForType, 0, newAccountsForType, 0, oldLength);
Fred Quintana56285a62010-12-02 14:20:51 -08003933 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003934 newAccountsForType[oldLength] = account;
Amith Yamasani04e0d262012-02-14 11:50:53 -08003935 accounts.accountCache.put(account.type, newAccountsForType);
Fred Quintana56285a62010-12-02 14:20:51 -08003936 }
3937
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003938 private Account[] filterSharedAccounts(UserAccounts userAccounts, Account[] unfiltered,
Amith Yamasani27db4682013-03-30 17:07:47 -07003939 int callingUid, String callingPackage) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003940 if (getUserManager() == null || userAccounts == null || userAccounts.userId < 0
Amith Yamasani27db4682013-03-30 17:07:47 -07003941 || callingUid == Process.myUid()) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003942 return unfiltered;
3943 }
Amith Yamasani0c19bf52013-10-03 10:34:58 -07003944 UserInfo user = mUserManager.getUserInfo(userAccounts.userId);
3945 if (user != null && user.isRestricted()) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003946 String[] packages = mPackageManager.getPackagesForUid(callingUid);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07003947 // If any of the packages is a white listed package, return the full set,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003948 // otherwise return non-shared accounts only.
3949 // This might be a temporary way to specify a whitelist
3950 String whiteList = mContext.getResources().getString(
3951 com.android.internal.R.string.config_appsAuthorizedForSharedAccounts);
3952 for (String packageName : packages) {
3953 if (whiteList.contains(";" + packageName + ";")) {
3954 return unfiltered;
3955 }
3956 }
3957 ArrayList<Account> allowed = new ArrayList<Account>();
3958 Account[] sharedAccounts = getSharedAccountsAsUser(userAccounts.userId);
3959 if (sharedAccounts == null || sharedAccounts.length == 0) return unfiltered;
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07003960 String requiredAccountType = "";
3961 try {
Amith Yamasanie3423092013-05-22 19:41:45 -07003962 // If there's an explicit callingPackage specified, check if that package
3963 // opted in to see restricted accounts.
3964 if (callingPackage != null) {
3965 PackageInfo pi = mPackageManager.getPackageInfo(callingPackage, 0);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07003966 if (pi != null && pi.restrictedAccountType != null) {
3967 requiredAccountType = pi.restrictedAccountType;
Amith Yamasanie3423092013-05-22 19:41:45 -07003968 }
3969 } else {
3970 // Otherwise check if the callingUid has a package that has opted in
3971 for (String packageName : packages) {
3972 PackageInfo pi = mPackageManager.getPackageInfo(packageName, 0);
3973 if (pi != null && pi.restrictedAccountType != null) {
3974 requiredAccountType = pi.restrictedAccountType;
Amith Yamasani27db4682013-03-30 17:07:47 -07003975 break;
3976 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003977 }
3978 }
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07003979 } catch (NameNotFoundException nnfe) {
3980 }
3981 for (Account account : unfiltered) {
3982 if (account.type.equals(requiredAccountType)) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003983 allowed.add(account);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07003984 } else {
3985 boolean found = false;
3986 for (Account shared : sharedAccounts) {
3987 if (shared.equals(account)) {
3988 found = true;
3989 break;
3990 }
3991 }
3992 if (!found) {
3993 allowed.add(account);
3994 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003995 }
3996 }
3997 Account[] filtered = new Account[allowed.size()];
3998 allowed.toArray(filtered);
3999 return filtered;
4000 } else {
4001 return unfiltered;
4002 }
4003 }
4004
Amith Yamasani27db4682013-03-30 17:07:47 -07004005 /*
4006 * packageName can be null. If not null, it should be used to filter out restricted accounts
4007 * that the package is not allowed to access.
4008 */
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004009 protected Account[] getAccountsFromCacheLocked(UserAccounts userAccounts, String accountType,
Amith Yamasani27db4682013-03-30 17:07:47 -07004010 int callingUid, String callingPackage) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004011 if (accountType != null) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08004012 final Account[] accounts = userAccounts.accountCache.get(accountType);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004013 if (accounts == null) {
4014 return EMPTY_ACCOUNT_ARRAY;
Fred Quintana56285a62010-12-02 14:20:51 -08004015 } else {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004016 return filterSharedAccounts(userAccounts, Arrays.copyOf(accounts, accounts.length),
Amith Yamasani27db4682013-03-30 17:07:47 -07004017 callingUid, callingPackage);
Fred Quintana56285a62010-12-02 14:20:51 -08004018 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004019 } else {
4020 int totalLength = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004021 for (Account[] accounts : userAccounts.accountCache.values()) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004022 totalLength += accounts.length;
4023 }
4024 if (totalLength == 0) {
4025 return EMPTY_ACCOUNT_ARRAY;
4026 }
4027 Account[] accounts = new Account[totalLength];
4028 totalLength = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004029 for (Account[] accountsOfType : userAccounts.accountCache.values()) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004030 System.arraycopy(accountsOfType, 0, accounts, totalLength,
4031 accountsOfType.length);
4032 totalLength += accountsOfType.length;
4033 }
Amith Yamasani27db4682013-03-30 17:07:47 -07004034 return filterSharedAccounts(userAccounts, accounts, callingUid, callingPackage);
Fred Quintana56285a62010-12-02 14:20:51 -08004035 }
4036 }
4037
Amith Yamasani04e0d262012-02-14 11:50:53 -08004038 protected void writeUserDataIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db,
4039 Account account, String key, String value) {
4040 HashMap<String, String> userDataForAccount = accounts.userDataCache.get(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004041 if (userDataForAccount == null) {
4042 userDataForAccount = readUserDataForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004043 accounts.userDataCache.put(account, userDataForAccount);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004044 }
4045 if (value == null) {
4046 userDataForAccount.remove(key);
4047 } else {
4048 userDataForAccount.put(key, value);
Fred Quintana56285a62010-12-02 14:20:51 -08004049 }
4050 }
4051
Carlos Valdivia91979be2015-05-22 14:11:35 -07004052 protected String readCachedTokenInternal(
4053 UserAccounts accounts,
4054 Account account,
4055 String tokenType,
4056 String callingPackage,
4057 byte[] pkgSigDigest) {
4058 synchronized (accounts.cacheLock) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07004059 return accounts.accountTokenCaches.get(
4060 account, tokenType, callingPackage, pkgSigDigest);
Carlos Valdivia91979be2015-05-22 14:11:35 -07004061 }
4062 }
4063
Amith Yamasani04e0d262012-02-14 11:50:53 -08004064 protected void writeAuthTokenIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db,
4065 Account account, String key, String value) {
4066 HashMap<String, String> authTokensForAccount = accounts.authTokenCache.get(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004067 if (authTokensForAccount == null) {
4068 authTokensForAccount = readAuthTokensForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004069 accounts.authTokenCache.put(account, authTokensForAccount);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004070 }
4071 if (value == null) {
4072 authTokensForAccount.remove(key);
4073 } else {
4074 authTokensForAccount.put(key, value);
Fred Quintana56285a62010-12-02 14:20:51 -08004075 }
4076 }
4077
Amith Yamasani04e0d262012-02-14 11:50:53 -08004078 protected String readAuthTokenInternal(UserAccounts accounts, Account account,
4079 String authTokenType) {
4080 synchronized (accounts.cacheLock) {
4081 HashMap<String, String> authTokensForAccount = accounts.authTokenCache.get(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004082 if (authTokensForAccount == null) {
4083 // need to populate the cache for this account
Amith Yamasani04e0d262012-02-14 11:50:53 -08004084 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004085 authTokensForAccount = readAuthTokensForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004086 accounts.authTokenCache.put(account, authTokensForAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004087 }
4088 return authTokensForAccount.get(authTokenType);
4089 }
4090 }
4091
Amith Yamasani04e0d262012-02-14 11:50:53 -08004092 protected String readUserDataInternal(UserAccounts accounts, Account account, String key) {
4093 synchronized (accounts.cacheLock) {
4094 HashMap<String, String> userDataForAccount = accounts.userDataCache.get(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004095 if (userDataForAccount == null) {
4096 // need to populate the cache for this account
Amith Yamasani04e0d262012-02-14 11:50:53 -08004097 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004098 userDataForAccount = readUserDataForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004099 accounts.userDataCache.put(account, userDataForAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004100 }
4101 return userDataForAccount.get(key);
4102 }
4103 }
4104
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004105 protected HashMap<String, String> readUserDataForAccountFromDatabaseLocked(
4106 final SQLiteDatabase db, Account account) {
Fred Quintana56285a62010-12-02 14:20:51 -08004107 HashMap<String, String> userDataForAccount = new HashMap<String, String>();
Fred Quintana56285a62010-12-02 14:20:51 -08004108 Cursor cursor = db.query(TABLE_EXTRAS,
4109 COLUMNS_EXTRAS_KEY_AND_VALUE,
4110 SELECTION_USERDATA_BY_ACCOUNT,
4111 new String[]{account.name, account.type},
4112 null, null, null);
4113 try {
4114 while (cursor.moveToNext()) {
4115 final String tmpkey = cursor.getString(0);
4116 final String value = cursor.getString(1);
4117 userDataForAccount.put(tmpkey, value);
4118 }
4119 } finally {
4120 cursor.close();
4121 }
4122 return userDataForAccount;
4123 }
4124
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004125 protected HashMap<String, String> readAuthTokensForAccountFromDatabaseLocked(
4126 final SQLiteDatabase db, Account account) {
Fred Quintana56285a62010-12-02 14:20:51 -08004127 HashMap<String, String> authTokensForAccount = new HashMap<String, String>();
Fred Quintana56285a62010-12-02 14:20:51 -08004128 Cursor cursor = db.query(TABLE_AUTHTOKENS,
4129 COLUMNS_AUTHTOKENS_TYPE_AND_AUTHTOKEN,
4130 SELECTION_AUTHTOKENS_BY_ACCOUNT,
4131 new String[]{account.name, account.type},
4132 null, null, null);
4133 try {
4134 while (cursor.moveToNext()) {
4135 final String type = cursor.getString(0);
4136 final String authToken = cursor.getString(1);
4137 authTokensForAccount.put(type, authToken);
4138 }
4139 } finally {
4140 cursor.close();
4141 }
4142 return authTokensForAccount;
4143 }
Kenny Guy07ad8dc2014-09-01 20:56:12 +01004144
4145 private Context getContextForUser(UserHandle user) {
4146 try {
4147 return mContext.createPackageContextAsUser(mContext.getPackageName(), 0, user);
4148 } catch (NameNotFoundException e) {
4149 // Default to mContext, not finding the package system is running as is unlikely.
4150 return mContext;
4151 }
4152 }
Fred Quintana60307342009-03-24 22:48:12 -07004153}