blob: aab6374cff83b71caac6d698c4d0b2ea19a9aa54 [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");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000530 int userId = UserHandle.getCallingUserId();
531 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700532 String msg = String.format(
533 "uid %s cannot get secrets for accounts of type: %s",
534 callingUid,
535 account.type);
536 throw new SecurityException(msg);
537 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700538 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -0700539 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700540 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800541 return readPasswordInternal(accounts, account);
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700542 } finally {
543 restoreCallingIdentity(identityToken);
544 }
545 }
546
Amith Yamasani04e0d262012-02-14 11:50:53 -0800547 private String readPasswordInternal(UserAccounts accounts, Account account) {
Fred Quintana31957f12009-10-21 13:43:10 -0700548 if (account == null) {
549 return null;
550 }
551
Amith Yamasani04e0d262012-02-14 11:50:53 -0800552 synchronized (accounts.cacheLock) {
553 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800554 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_PASSWORD},
555 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
556 new String[]{account.name, account.type}, null, null, null);
557 try {
558 if (cursor.moveToNext()) {
559 return cursor.getString(0);
560 }
561 return null;
562 } finally {
563 cursor.close();
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700564 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700565 }
566 }
567
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800568 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700569 public String getPreviousName(Account account) {
570 if (Log.isLoggable(TAG, Log.VERBOSE)) {
571 Log.v(TAG, "getPreviousName: " + account
572 + ", caller's uid " + Binder.getCallingUid()
573 + ", pid " + Binder.getCallingPid());
574 }
575 if (account == null) throw new IllegalArgumentException("account is null");
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700576 int userId = UserHandle.getCallingUserId();
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700577 long identityToken = clearCallingIdentity();
578 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700579 UserAccounts accounts = getUserAccounts(userId);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700580 return readPreviousNameInternal(accounts, account);
581 } finally {
582 restoreCallingIdentity(identityToken);
583 }
584 }
585
586 private String readPreviousNameInternal(UserAccounts accounts, Account account) {
587 if (account == null) {
588 return null;
589 }
590 synchronized (accounts.cacheLock) {
591 AtomicReference<String> previousNameRef = accounts.previousNameCache.get(account);
592 if (previousNameRef == null) {
593 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
594 Cursor cursor = db.query(
595 TABLE_ACCOUNTS,
596 new String[]{ ACCOUNTS_PREVIOUS_NAME },
597 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
598 new String[] { account.name, account.type },
599 null,
600 null,
601 null);
602 try {
603 if (cursor.moveToNext()) {
604 String previousName = cursor.getString(0);
605 previousNameRef = new AtomicReference<String>(previousName);
606 accounts.previousNameCache.put(account, previousNameRef);
607 return previousName;
608 } else {
609 return null;
610 }
611 } finally {
612 cursor.close();
613 }
614 } else {
615 return previousNameRef.get();
616 }
617 }
618 }
619
620 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700621 public String getUserData(Account account, String key) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700622 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800623 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700624 String msg = String.format("getUserData( account: %s, key: %s, callerUid: %s, pid: %s",
625 account, key, callingUid, Binder.getCallingPid());
626 Log.v(TAG, msg);
Fred Quintana56285a62010-12-02 14:20:51 -0800627 }
Fred Quintana382601f2010-03-25 12:25:10 -0700628 if (account == null) throw new IllegalArgumentException("account is null");
629 if (key == null) throw new IllegalArgumentException("key is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000630 int userId = UserHandle.getCallingUserId();
631 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700632 String msg = String.format(
633 "uid %s cannot get user data for accounts of type: %s",
634 callingUid,
635 account.type);
636 throw new SecurityException(msg);
637 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700638 long identityToken = clearCallingIdentity();
639 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700640 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800641 return readUserDataInternal(accounts, account, key);
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700642 } finally {
643 restoreCallingIdentity(identityToken);
644 }
645 }
646
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800647 @Override
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100648 public AuthenticatorDescription[] getAuthenticatorTypes(int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700649 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800650 if (Log.isLoggable(TAG, Log.VERBOSE)) {
651 Log.v(TAG, "getAuthenticatorTypes: "
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100652 + "for user id " + userId
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700653 + "caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -0800654 + ", pid " + Binder.getCallingPid());
655 }
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100656 // Only allow the system process to read accounts of other users
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700657 if (isCrossUser(callingUid, userId)) {
658 throw new SecurityException(
659 String.format(
660 "User %s tying to get authenticator types for %s" ,
661 UserHandle.getCallingUserId(),
662 userId));
663 }
664
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700665 final long identityToken = clearCallingIdentity();
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700666 try {
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000667 return getAuthenticatorTypesInternal(userId);
668
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700669 } finally {
670 restoreCallingIdentity(identityToken);
Fred Quintanaa698f422009-04-08 19:14:54 -0700671 }
Fred Quintanaa698f422009-04-08 19:14:54 -0700672 }
673
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000674 /**
675 * Should only be called inside of a clearCallingIdentity block.
676 */
677 private AuthenticatorDescription[] getAuthenticatorTypesInternal(int userId) {
678 Collection<AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription>>
679 authenticatorCollection = mAuthenticatorCache.getAllServices(userId);
680 AuthenticatorDescription[] types =
681 new AuthenticatorDescription[authenticatorCollection.size()];
682 int i = 0;
683 for (AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription> authenticator
684 : authenticatorCollection) {
685 types[i] = authenticator.type;
686 i++;
687 }
688 return types;
689 }
690
691
692
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700693 private boolean isCrossUser(int callingUid, int userId) {
694 return (userId != UserHandle.getCallingUserId()
695 && callingUid != Process.myUid()
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100696 && mContext.checkCallingOrSelfPermission(
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700697 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
698 != PackageManager.PERMISSION_GRANTED);
Alexandra Gherghinac1cf1612014-06-05 10:49:14 +0100699 }
700
Jatin Lodhia3df7d692013-03-27 10:57:23 -0700701 @Override
Amith Yamasani27db4682013-03-30 17:07:47 -0700702 public boolean addAccountExplicitly(Account account, String password, Bundle extras) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700703 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800704 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Amith Yamasani27db4682013-03-30 17:07:47 -0700705 Log.v(TAG, "addAccountExplicitly: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700706 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -0800707 + ", pid " + Binder.getCallingPid());
708 }
Fred Quintana382601f2010-03-25 12:25:10 -0700709 if (account == null) throw new IllegalArgumentException("account is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000710 int userId = UserHandle.getCallingUserId();
711 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700712 String msg = String.format(
713 "uid %s cannot explicitly add accounts of type: %s",
714 callingUid,
715 account.type);
716 throw new SecurityException(msg);
717 }
Jatin Lodhia3df7d692013-03-27 10:57:23 -0700718 /*
719 * Child users are not allowed to add accounts. Only the accounts that are
720 * shared by the parent profile can be added to child profile.
721 *
722 * TODO: Only allow accounts that were shared to be added by
723 * a limited user.
724 */
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700725
Fred Quintana60307342009-03-24 22:48:12 -0700726 // fails if the account already exists
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700727 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -0700728 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700729 UserAccounts accounts = getUserAccounts(userId);
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000730 return addAccountInternal(accounts, account, password, extras, false, callingUid);
Fred Quintana60307342009-03-24 22:48:12 -0700731 } finally {
Fred Quintana26fc5eb2009-04-09 15:05:50 -0700732 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -0700733 }
734 }
735
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000736 @Override
737 public void copyAccountToUser(final IAccountManagerResponse response, final Account account,
738 int userFrom, int userTo) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700739 int callingUid = Binder.getCallingUid();
740 if (isCrossUser(callingUid, UserHandle.USER_ALL)) {
741 throw new SecurityException("Calling copyAccountToUser requires "
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000742 + android.Manifest.permission.INTERACT_ACROSS_USERS_FULL);
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700743 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800744 final UserAccounts fromAccounts = getUserAccounts(userFrom);
745 final UserAccounts toAccounts = getUserAccounts(userTo);
746 if (fromAccounts == null || toAccounts == null) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000747 if (response != null) {
748 Bundle result = new Bundle();
749 result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, false);
750 try {
751 response.onResult(result);
752 } catch (RemoteException e) {
753 Slog.w(TAG, "Failed to report error back to the client." + e);
754 }
755 }
756 return;
Amith Yamasani67df64b2012-12-14 12:09:36 -0800757 }
758
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000759 Slog.d(TAG, "Copying account " + account.name
760 + " from user " + userFrom + " to user " + userTo);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800761 long identityToken = clearCallingIdentity();
762 try {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000763 new Session(fromAccounts, response, account.type, false,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800764 false /* stripAuthTokenFromResult */, account.name,
765 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700766 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800767 protected String toDebugString(long now) {
768 return super.toDebugString(now) + ", getAccountCredentialsForClone"
769 + ", " + account.type;
770 }
771
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700772 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800773 public void run() throws RemoteException {
774 mAuthenticator.getAccountCredentialsForCloning(this, account);
775 }
776
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700777 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800778 public void onResult(Bundle result) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000779 if (result != null
780 && result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false)) {
781 // Create a Session for the target user and pass in the bundle
782 completeCloningAccount(response, result, account, toAccounts);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800783 } else {
Amith Yamasani67df64b2012-12-14 12:09:36 -0800784 super.onResult(result);
785 }
786 }
787 }.bind();
788 } finally {
789 restoreCallingIdentity(identityToken);
790 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800791 }
792
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800793 @Override
794 public boolean accountAuthenticated(final Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700795 final int callingUid = Binder.getCallingUid();
796 if (Log.isLoggable(TAG, Log.VERBOSE)) {
797 String msg = String.format(
798 "accountAuthenticated( account: %s, callerUid: %s)",
799 account,
800 callingUid);
801 Log.v(TAG, msg);
802 }
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800803 if (account == null) {
804 throw new IllegalArgumentException("account is null");
805 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000806 int userId = UserHandle.getCallingUserId();
807 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700808 String msg = String.format(
809 "uid %s cannot notify authentication for accounts of type: %s",
810 callingUid,
811 account.type);
812 throw new SecurityException(msg);
813 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000814
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800815 if (!canUserModifyAccounts(userId) || !canUserModifyAccountsForType(userId, account.type)) {
816 return false;
817 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000818
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700819 long identityToken = clearCallingIdentity();
820 try {
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000821 UserAccounts accounts = getUserAccounts(userId);
822 return updateLastAuthenticatedTime(account);
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700823 } finally {
824 restoreCallingIdentity(identityToken);
825 }
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -0700826 }
827
828 private boolean updateLastAuthenticatedTime(Account account) {
829 final UserAccounts accounts = getUserAccountsForCaller();
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800830 synchronized (accounts.cacheLock) {
831 final ContentValues values = new ContentValues();
832 values.put(ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS, System.currentTimeMillis());
833 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
834 int i = db.update(
835 TABLE_ACCOUNTS,
836 values,
837 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE + "=?",
838 new String[] {
839 account.name, account.type
840 });
841 if (i > 0) {
842 return true;
843 }
844 }
845 return false;
846 }
847
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000848 private void completeCloningAccount(IAccountManagerResponse response,
849 final Bundle accountCredentials, final Account account, final UserAccounts targetUser) {
Amith Yamasani67df64b2012-12-14 12:09:36 -0800850 long id = clearCallingIdentity();
851 try {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000852 new Session(targetUser, response, account.type, false,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800853 false /* stripAuthTokenFromResult */, account.name,
854 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700855 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800856 protected String toDebugString(long now) {
857 return super.toDebugString(now) + ", getAccountCredentialsForClone"
858 + ", " + account.type;
859 }
860
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700861 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800862 public void run() throws RemoteException {
Amith Yamasani5be347b2013-03-31 17:44:31 -0700863 // Confirm that the owner's account still exists before this step.
864 UserAccounts owner = getUserAccounts(UserHandle.USER_OWNER);
865 synchronized (owner.cacheLock) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000866 for (Account acc : getAccounts(UserHandle.USER_OWNER)) {
Amith Yamasani5be347b2013-03-31 17:44:31 -0700867 if (acc.equals(account)) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000868 mAuthenticator.addAccountFromCredentials(
869 this, account, accountCredentials);
Amith Yamasani5be347b2013-03-31 17:44:31 -0700870 break;
871 }
872 }
873 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800874 }
875
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700876 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800877 public void onResult(Bundle result) {
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000878 // TODO: Anything to do if if succedded?
879 // TODO: If it failed: Show error notification? Should we remove the shadow
880 // account to avoid retries?
881 super.onResult(result);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800882 }
883
Carlos Valdivia5bab9da2013-09-29 05:11:56 -0700884 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -0800885 public void onError(int errorCode, String errorMessage) {
886 super.onError(errorCode, errorMessage);
887 // TODO: Show error notification to user
888 // TODO: Should we remove the shadow account so that it doesn't keep trying?
889 }
890
891 }.bind();
892 } finally {
893 restoreCallingIdentity(id);
894 }
895 }
896
Amith Yamasani04e0d262012-02-14 11:50:53 -0800897 private boolean addAccountInternal(UserAccounts accounts, Account account, String password,
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700898 Bundle extras, boolean restricted, int callingUid) {
Fred Quintana743dfad2010-07-15 10:59:25 -0700899 if (account == null) {
900 return false;
901 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800902 synchronized (accounts.cacheLock) {
903 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800904 db.beginTransaction();
905 try {
906 long numMatches = DatabaseUtils.longForQuery(db,
907 "select count(*) from " + TABLE_ACCOUNTS
908 + " WHERE " + ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
909 new String[]{account.name, account.type});
910 if (numMatches > 0) {
911 Log.w(TAG, "insertAccountIntoDatabase: " + account
912 + ", skipping since the account already exists");
913 return false;
914 }
915 ContentValues values = new ContentValues();
916 values.put(ACCOUNTS_NAME, account.name);
917 values.put(ACCOUNTS_TYPE, account.type);
918 values.put(ACCOUNTS_PASSWORD, password);
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800919 values.put(ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS, System.currentTimeMillis());
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800920 long accountId = db.insert(TABLE_ACCOUNTS, ACCOUNTS_NAME, values);
921 if (accountId < 0) {
922 Log.w(TAG, "insertAccountIntoDatabase: " + account
923 + ", skipping the DB insert failed");
924 return false;
925 }
926 if (extras != null) {
927 for (String key : extras.keySet()) {
928 final String value = extras.getString(key);
929 if (insertExtraLocked(db, accountId, key, value) < 0) {
930 Log.w(TAG, "insertAccountIntoDatabase: " + account
931 + ", skipping since insertExtra failed for key " + key);
932 return false;
933 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700934 }
935 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800936 db.setTransactionSuccessful();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700937
938 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_ACCOUNTS, accountId,
939 accounts, callingUid);
940
Amith Yamasani04e0d262012-02-14 11:50:53 -0800941 insertAccountIntoCacheLocked(accounts, account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800942 } finally {
943 db.endTransaction();
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700944 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800945 sendAccountsChangedBroadcast(accounts.userId);
Amith Yamasani5be347b2013-03-31 17:44:31 -0700946 }
947 if (accounts.userId == UserHandle.USER_OWNER) {
948 addAccountToLimitedUsers(account);
949 }
950 return true;
951 }
952
953 /**
954 * Adds the account to all limited users as shared accounts. If the user is currently
955 * running, then clone the account too.
956 * @param account the account to share with limited users
957 */
958 private void addAccountToLimitedUsers(Account account) {
Mita Yunf4c240e2013-04-01 21:12:43 -0700959 List<UserInfo> users = getUserManager().getUsers();
Amith Yamasani5be347b2013-03-31 17:44:31 -0700960 for (UserInfo user : users) {
961 if (user.isRestricted()) {
962 addSharedAccountAsUser(account, user.id);
963 try {
964 if (ActivityManagerNative.getDefault().isUserRunning(user.id, false)) {
965 mMessageHandler.sendMessage(mMessageHandler.obtainMessage(
966 MESSAGE_COPY_SHARED_ACCOUNT, UserHandle.USER_OWNER, user.id,
967 account));
968 }
969 } catch (RemoteException re) {
970 // Shouldn't happen
971 }
972 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -0700973 }
974 }
975
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800976 private long insertExtraLocked(SQLiteDatabase db, long accountId, String key, String value) {
Fred Quintana60307342009-03-24 22:48:12 -0700977 ContentValues values = new ContentValues();
978 values.put(EXTRAS_KEY, key);
979 values.put(EXTRAS_ACCOUNTS_ID, accountId);
980 values.put(EXTRAS_VALUE, value);
981 return db.insert(TABLE_EXTRAS, EXTRAS_KEY, values);
982 }
983
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800984 @Override
Fred Quintana3084a6f2010-01-14 18:02:03 -0800985 public void hasFeatures(IAccountManagerResponse response,
Fred Quintanabb68a4f2010-01-13 17:28:39 -0800986 Account account, String[] features) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700987 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800988 if (Log.isLoggable(TAG, Log.VERBOSE)) {
989 Log.v(TAG, "hasFeatures: " + account
990 + ", response " + response
991 + ", features " + stringArrayToString(features)
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700992 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -0800993 + ", pid " + Binder.getCallingPid());
994 }
Fred Quintana382601f2010-03-25 12:25:10 -0700995 if (response == null) throw new IllegalArgumentException("response is null");
996 if (account == null) throw new IllegalArgumentException("account is null");
997 if (features == null) throw new IllegalArgumentException("features is null");
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700998 int userId = UserHandle.getCallingUserId();
Ian Pedowitz6cc066d2015-08-05 14:23:43 +0000999 checkReadAccountsPermitted(callingUid, account.type, userId);
1000
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001001 long identityToken = clearCallingIdentity();
1002 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001003 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001004 new TestFeaturesSession(accounts, response, account, features).bind();
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001005 } finally {
1006 restoreCallingIdentity(identityToken);
1007 }
1008 }
1009
1010 private class TestFeaturesSession extends Session {
1011 private final String[] mFeatures;
1012 private final Account mAccount;
1013
Amith Yamasani04e0d262012-02-14 11:50:53 -08001014 public TestFeaturesSession(UserAccounts accounts, IAccountManagerResponse response,
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001015 Account account, String[] features) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001016 super(accounts, response, account.type, false /* expectActivityLaunch */,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001017 true /* stripAuthTokenFromResult */, account.name,
1018 false /* authDetailsRequired */);
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001019 mFeatures = features;
1020 mAccount = account;
1021 }
1022
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001023 @Override
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001024 public void run() throws RemoteException {
1025 try {
1026 mAuthenticator.hasFeatures(this, mAccount, mFeatures);
1027 } catch (RemoteException e) {
1028 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "remote exception");
1029 }
1030 }
1031
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001032 @Override
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001033 public void onResult(Bundle result) {
1034 IAccountManagerResponse response = getResponseAndClose();
1035 if (response != null) {
1036 try {
1037 if (result == null) {
Fred Quintana166466d2011-10-24 14:51:40 -07001038 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001039 return;
1040 }
Fred Quintana56285a62010-12-02 14:20:51 -08001041 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1042 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
1043 + response);
1044 }
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001045 final Bundle newResult = new Bundle();
1046 newResult.putBoolean(AccountManager.KEY_BOOLEAN_RESULT,
1047 result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false));
1048 response.onResult(newResult);
1049 } catch (RemoteException e) {
1050 // if the caller is dead then there is no one to care about remote exceptions
1051 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1052 Log.v(TAG, "failure while notifying response", e);
1053 }
1054 }
1055 }
1056 }
1057
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001058 @Override
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001059 protected String toDebugString(long now) {
Fred Quintana3084a6f2010-01-14 18:02:03 -08001060 return super.toDebugString(now) + ", hasFeatures"
Fred Quintanabb68a4f2010-01-13 17:28:39 -08001061 + ", " + mAccount
1062 + ", " + (mFeatures != null ? TextUtils.join(",", mFeatures) : null);
1063 }
1064 }
Fred Quintana307da1a2010-01-21 14:24:20 -08001065
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001066 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001067 public void renameAccount(
1068 IAccountManagerResponse response, Account accountToRename, String newName) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001069 final int callingUid = Binder.getCallingUid();
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001070 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1071 Log.v(TAG, "renameAccount: " + accountToRename + " -> " + newName
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001072 + ", caller's uid " + callingUid
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001073 + ", pid " + Binder.getCallingPid());
1074 }
1075 if (accountToRename == null) throw new IllegalArgumentException("account is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001076 int userId = UserHandle.getCallingUserId();
1077 if (!isAccountManagedByCaller(accountToRename.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001078 String msg = String.format(
1079 "uid %s cannot rename accounts of type: %s",
1080 callingUid,
1081 accountToRename.type);
1082 throw new SecurityException(msg);
1083 }
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001084 long identityToken = clearCallingIdentity();
1085 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001086 UserAccounts accounts = getUserAccounts(userId);
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001087 Account resultingAccount = renameAccountInternal(accounts, accountToRename, newName);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001088 Bundle result = new Bundle();
1089 result.putString(AccountManager.KEY_ACCOUNT_NAME, resultingAccount.name);
1090 result.putString(AccountManager.KEY_ACCOUNT_TYPE, resultingAccount.type);
1091 try {
1092 response.onResult(result);
1093 } catch (RemoteException e) {
1094 Log.w(TAG, e.getMessage());
1095 }
1096 } finally {
1097 restoreCallingIdentity(identityToken);
1098 }
1099 }
1100
1101 private Account renameAccountInternal(
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001102 UserAccounts accounts, Account accountToRename, String newName) {
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001103 Account resultAccount = null;
1104 /*
1105 * Cancel existing notifications. Let authenticators
1106 * re-post notifications as required. But we don't know if
1107 * the authenticators have bound their notifications to
1108 * now stale account name data.
1109 *
1110 * With a rename api, we might not need to do this anymore but it
1111 * shouldn't hurt.
1112 */
1113 cancelNotification(
1114 getSigninRequiredNotificationId(accounts, accountToRename),
1115 new UserHandle(accounts.userId));
1116 synchronized(accounts.credentialsPermissionNotificationIds) {
1117 for (Pair<Pair<Account, String>, Integer> pair:
1118 accounts.credentialsPermissionNotificationIds.keySet()) {
1119 if (accountToRename.equals(pair.first.first)) {
1120 int id = accounts.credentialsPermissionNotificationIds.get(pair);
1121 cancelNotification(id, new UserHandle(accounts.userId));
1122 }
1123 }
1124 }
1125 synchronized (accounts.cacheLock) {
1126 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
1127 db.beginTransaction();
1128 boolean isSuccessful = false;
1129 Account renamedAccount = new Account(newName, accountToRename.type);
1130 try {
1131 final ContentValues values = new ContentValues();
1132 values.put(ACCOUNTS_NAME, newName);
1133 values.put(ACCOUNTS_PREVIOUS_NAME, accountToRename.name);
1134 final long accountId = getAccountIdLocked(db, accountToRename);
1135 if (accountId >= 0) {
1136 final String[] argsAccountId = { String.valueOf(accountId) };
1137 db.update(TABLE_ACCOUNTS, values, ACCOUNTS_ID + "=?", argsAccountId);
1138 db.setTransactionSuccessful();
1139 isSuccessful = true;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001140 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_RENAME, TABLE_ACCOUNTS, accountId,
1141 accounts);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07001142 }
1143 } finally {
1144 db.endTransaction();
1145 if (isSuccessful) {
1146 /*
1147 * Database transaction was successful. Clean up cached
1148 * data associated with the account in the user profile.
1149 */
1150 insertAccountIntoCacheLocked(accounts, renamedAccount);
1151 /*
1152 * Extract the data and token caches before removing the
1153 * old account to preserve the user data associated with
1154 * the account.
1155 */
1156 HashMap<String, String> tmpData = accounts.userDataCache.get(accountToRename);
1157 HashMap<String, String> tmpTokens = accounts.authTokenCache.get(accountToRename);
1158 removeAccountFromCacheLocked(accounts, accountToRename);
1159 /*
1160 * Update the cached data associated with the renamed
1161 * account.
1162 */
1163 accounts.userDataCache.put(renamedAccount, tmpData);
1164 accounts.authTokenCache.put(renamedAccount, tmpTokens);
1165 accounts.previousNameCache.put(
1166 renamedAccount,
1167 new AtomicReference<String>(accountToRename.name));
1168 resultAccount = renamedAccount;
1169
1170 if (accounts.userId == UserHandle.USER_OWNER) {
1171 /*
1172 * Owner's account was renamed, rename the account for
1173 * those users with which the account was shared.
1174 */
1175 List<UserInfo> users = mUserManager.getUsers(true);
1176 for (UserInfo user : users) {
1177 if (!user.isPrimary() && user.isRestricted()) {
1178 renameSharedAccountAsUser(accountToRename, newName, user.id);
1179 }
1180 }
1181 }
1182 sendAccountsChangedBroadcast(accounts.userId);
1183 }
1184 }
1185 }
1186 return resultAccount;
1187 }
1188
1189 @Override
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001190 public void removeAccount(IAccountManagerResponse response, Account account,
1191 boolean expectActivityLaunch) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001192 removeAccountAsUser(
1193 response,
1194 account,
1195 expectActivityLaunch,
1196 UserHandle.getCallingUserId());
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001197 }
1198
1199 @Override
1200 public void removeAccountAsUser(IAccountManagerResponse response, Account account,
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001201 boolean expectActivityLaunch, int userId) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001202 final int callingUid = Binder.getCallingUid();
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001203 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1204 Log.v(TAG, "removeAccount: " + account
1205 + ", response " + response
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001206 + ", caller's uid " + callingUid
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001207 + ", pid " + Binder.getCallingPid()
1208 + ", for user id " + userId);
1209 }
1210 if (response == null) throw new IllegalArgumentException("response is null");
1211 if (account == null) throw new IllegalArgumentException("account is null");
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001212 // Only allow the system process to modify accounts of other users
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001213 if (isCrossUser(callingUid, userId)) {
1214 throw new SecurityException(
1215 String.format(
1216 "User %s tying remove account for %s" ,
1217 UserHandle.getCallingUserId(),
1218 userId));
1219 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001220 /*
1221 * Only the system or authenticator should be allowed to remove accounts for that
1222 * authenticator. This will let users remove accounts (via Settings in the system) but not
1223 * arbitrary applications (like competing authenticators).
1224 */
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001225 UserHandle user = new UserHandle(userId);
1226 if (!isAccountManagedByCaller(account.type, callingUid, user.getIdentifier())
1227 && !isSystemUid(callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001228 String msg = String.format(
1229 "uid %s cannot remove accounts of type: %s",
1230 callingUid,
1231 account.type);
1232 throw new SecurityException(msg);
1233 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001234 if (!canUserModifyAccounts(userId)) {
1235 try {
1236 response.onError(AccountManager.ERROR_CODE_USER_RESTRICTED,
1237 "User cannot modify accounts");
1238 } catch (RemoteException re) {
1239 }
1240 return;
1241 }
1242 if (!canUserModifyAccountsForType(userId, account.type)) {
1243 try {
1244 response.onError(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
1245 "User cannot modify accounts of this type (policy).");
1246 } catch (RemoteException re) {
1247 }
1248 return;
1249 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001250 long identityToken = clearCallingIdentity();
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001251 UserAccounts accounts = getUserAccounts(userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01001252 cancelNotification(getSigninRequiredNotificationId(accounts, account), user);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001253 synchronized(accounts.credentialsPermissionNotificationIds) {
Costin Manolacheec0c4f42010-11-16 09:57:28 -08001254 for (Pair<Pair<Account, String>, Integer> pair:
Amith Yamasani04e0d262012-02-14 11:50:53 -08001255 accounts.credentialsPermissionNotificationIds.keySet()) {
Costin Manolacheec0c4f42010-11-16 09:57:28 -08001256 if (account.equals(pair.first.first)) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001257 int id = accounts.credentialsPermissionNotificationIds.get(pair);
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001258 cancelNotification(id, user);
Costin Manolacheec0c4f42010-11-16 09:57:28 -08001259 }
1260 }
1261 }
1262
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001263 logRecord(accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_REMOVE, TABLE_ACCOUNTS);
1264
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001265 try {
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001266 new RemoveAccountSession(accounts, response, account, expectActivityLaunch).bind();
1267 } finally {
1268 restoreCallingIdentity(identityToken);
1269 }
1270 }
1271
1272 @Override
1273 public boolean removeAccountExplicitly(Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001274 final int callingUid = Binder.getCallingUid();
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001275 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1276 Log.v(TAG, "removeAccountExplicitly: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001277 + ", caller's uid " + callingUid
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001278 + ", pid " + Binder.getCallingPid());
1279 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001280 int userId = Binder.getCallingUserHandle().getIdentifier();
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001281 if (account == null) {
1282 /*
1283 * Null accounts should result in returning false, as per
1284 * AccountManage.addAccountExplicitly(...) java doc.
1285 */
1286 Log.e(TAG, "account is null");
1287 return false;
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001288 } else if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001289 String msg = String.format(
1290 "uid %s cannot explicitly add accounts of type: %s",
1291 callingUid,
1292 account.type);
1293 throw new SecurityException(msg);
1294 }
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001295 UserAccounts accounts = getUserAccountsForCaller();
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001296 if (!canUserModifyAccounts(userId) || !canUserModifyAccountsForType(userId, account.type)) {
1297 return false;
1298 }
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001299 logRecord(accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_REMOVE, TABLE_ACCOUNTS);
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001300 long identityToken = clearCallingIdentity();
1301 try {
1302 return removeAccountInternal(accounts, account);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001303 } finally {
1304 restoreCallingIdentity(identityToken);
Fred Quintanaa698f422009-04-08 19:14:54 -07001305 }
Fred Quintana60307342009-03-24 22:48:12 -07001306 }
1307
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001308 private class RemoveAccountSession extends Session {
1309 final Account mAccount;
Amith Yamasani04e0d262012-02-14 11:50:53 -08001310 public RemoveAccountSession(UserAccounts accounts, IAccountManagerResponse response,
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001311 Account account, boolean expectActivityLaunch) {
1312 super(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001313 true /* stripAuthTokenFromResult */, account.name,
1314 false /* authDetailsRequired */);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001315 mAccount = account;
1316 }
1317
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001318 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001319 protected String toDebugString(long now) {
1320 return super.toDebugString(now) + ", removeAccount"
1321 + ", account " + mAccount;
1322 }
1323
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001324 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001325 public void run() throws RemoteException {
1326 mAuthenticator.getAccountRemovalAllowed(this, mAccount);
1327 }
1328
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001329 @Override
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001330 public void onResult(Bundle result) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001331 if (result != null && result.containsKey(AccountManager.KEY_BOOLEAN_RESULT)
1332 && !result.containsKey(AccountManager.KEY_INTENT)) {
1333 final boolean removalAllowed = result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001334 if (removalAllowed) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001335 removeAccountInternal(mAccounts, mAccount);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001336 }
1337 IAccountManagerResponse response = getResponseAndClose();
1338 if (response != null) {
Fred Quintana56285a62010-12-02 14:20:51 -08001339 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1340 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
1341 + response);
1342 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001343 Bundle result2 = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001344 result2.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, removalAllowed);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001345 try {
1346 response.onResult(result2);
1347 } catch (RemoteException e) {
1348 // ignore
1349 }
1350 }
1351 }
1352 super.onResult(result);
1353 }
1354 }
1355
Amith Yamasani04e0d262012-02-14 11:50:53 -08001356 /* For testing */
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001357 protected void removeAccountInternal(Account account) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001358 removeAccountInternal(getUserAccountsForCaller(), account);
1359 }
1360
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001361 private boolean removeAccountInternal(UserAccounts accounts, Account account) {
1362 int deleted;
Amith Yamasani04e0d262012-02-14 11:50:53 -08001363 synchronized (accounts.cacheLock) {
1364 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001365 final long accountId = getAccountIdLocked(db, account);
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001366 deleted = db.delete(TABLE_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE
1367 + "=?",
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001368 new String[]{account.name, account.type});
Amith Yamasani04e0d262012-02-14 11:50:53 -08001369 removeAccountFromCacheLocked(accounts, account);
1370 sendAccountsChangedBroadcast(accounts.userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001371
1372 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_REMOVE, TABLE_ACCOUNTS, accountId, accounts);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001373 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08001374 if (accounts.userId == UserHandle.USER_OWNER) {
1375 // Owner's account was removed, remove from any users that are sharing
1376 // this account.
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001377 int callingUid = getCallingUid();
Amith Yamasani67df64b2012-12-14 12:09:36 -08001378 long id = Binder.clearCallingIdentity();
1379 try {
1380 List<UserInfo> users = mUserManager.getUsers(true);
1381 for (UserInfo user : users) {
1382 if (!user.isPrimary() && user.isRestricted()) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001383 removeSharedAccountAsUser(account, user.id, callingUid);
Amith Yamasani67df64b2012-12-14 12:09:36 -08001384 }
1385 }
1386 } finally {
1387 Binder.restoreCallingIdentity(id);
1388 }
1389 }
Simranjit Singh Kohli8778f992014-11-05 21:33:55 -08001390 return (deleted > 0);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001391 }
1392
Maggie Benthalla12fccf2013-03-14 18:02:12 -04001393 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001394 public void invalidateAuthToken(String accountType, String authToken) {
Carlos Valdivia91979be2015-05-22 14:11:35 -07001395 int callerUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001396 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1397 Log.v(TAG, "invalidateAuthToken: accountType " + accountType
Carlos Valdivia91979be2015-05-22 14:11:35 -07001398 + ", caller's uid " + callerUid
Fred Quintana56285a62010-12-02 14:20:51 -08001399 + ", pid " + Binder.getCallingPid());
1400 }
Fred Quintana382601f2010-03-25 12:25:10 -07001401 if (accountType == null) throw new IllegalArgumentException("accountType is null");
1402 if (authToken == null) throw new IllegalArgumentException("authToken is null");
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001403 int userId = UserHandle.getCallingUserId();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001404 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -07001405 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001406 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001407 synchronized (accounts.cacheLock) {
1408 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001409 db.beginTransaction();
1410 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001411 invalidateAuthTokenLocked(accounts, db, accountType, authToken);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001412 invalidateCustomTokenLocked(accounts, accountType, authToken);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001413 db.setTransactionSuccessful();
1414 } finally {
1415 db.endTransaction();
1416 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001417 }
Fred Quintana60307342009-03-24 22:48:12 -07001418 } finally {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001419 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07001420 }
1421 }
1422
Carlos Valdivia91979be2015-05-22 14:11:35 -07001423 private void invalidateCustomTokenLocked(
1424 UserAccounts accounts,
1425 String accountType,
1426 String authToken) {
1427 if (authToken == null || accountType == null) {
1428 return;
1429 }
1430 // Also wipe out cached token in memory.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001431 accounts.accountTokenCaches.remove(accountType, authToken);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001432 }
1433
Amith Yamasani04e0d262012-02-14 11:50:53 -08001434 private void invalidateAuthTokenLocked(UserAccounts accounts, SQLiteDatabase db,
1435 String accountType, String authToken) {
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001436 if (authToken == null || accountType == null) {
1437 return;
1438 }
Fred Quintana33269202009-04-20 16:05:10 -07001439 Cursor cursor = db.rawQuery(
1440 "SELECT " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_ID
1441 + ", " + TABLE_ACCOUNTS + "." + ACCOUNTS_NAME
1442 + ", " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_TYPE
1443 + " FROM " + TABLE_ACCOUNTS
1444 + " JOIN " + TABLE_AUTHTOKENS
1445 + " ON " + TABLE_ACCOUNTS + "." + ACCOUNTS_ID
1446 + " = " + AUTHTOKENS_ACCOUNTS_ID
1447 + " WHERE " + AUTHTOKENS_AUTHTOKEN + " = ? AND "
1448 + TABLE_ACCOUNTS + "." + ACCOUNTS_TYPE + " = ?",
1449 new String[]{authToken, accountType});
1450 try {
1451 while (cursor.moveToNext()) {
1452 long authTokenId = cursor.getLong(0);
1453 String accountName = cursor.getString(1);
1454 String authTokenType = cursor.getString(2);
1455 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ID + "=" + authTokenId, null);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001456 writeAuthTokenIntoCacheLocked(
1457 accounts,
1458 db,
1459 new Account(accountName, accountType),
1460 authTokenType,
1461 null);
Fred Quintana60307342009-03-24 22:48:12 -07001462 }
Fred Quintana33269202009-04-20 16:05:10 -07001463 } finally {
1464 cursor.close();
Fred Quintana60307342009-03-24 22:48:12 -07001465 }
1466 }
1467
Carlos Valdivia91979be2015-05-22 14:11:35 -07001468 private void saveCachedToken(
1469 UserAccounts accounts,
1470 Account account,
1471 String callerPkg,
1472 byte[] callerSigDigest,
1473 String tokenType,
1474 String token,
1475 long expiryMillis) {
1476
1477 if (account == null || tokenType == null || callerPkg == null || callerSigDigest == null) {
1478 return;
1479 }
1480 cancelNotification(getSigninRequiredNotificationId(accounts, account),
1481 new UserHandle(accounts.userId));
1482 synchronized (accounts.cacheLock) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001483 accounts.accountTokenCaches.put(
1484 account, token, tokenType, callerPkg, callerSigDigest, expiryMillis);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001485 }
1486 }
1487
Amith Yamasani04e0d262012-02-14 11:50:53 -08001488 private boolean saveAuthTokenToDatabase(UserAccounts accounts, Account account, String type,
1489 String authToken) {
Fred Quintana31957f12009-10-21 13:43:10 -07001490 if (account == null || type == null) {
1491 return false;
1492 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001493 cancelNotification(getSigninRequiredNotificationId(accounts, account),
1494 new UserHandle(accounts.userId));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001495 synchronized (accounts.cacheLock) {
1496 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001497 db.beginTransaction();
1498 try {
1499 long accountId = getAccountIdLocked(db, account);
1500 if (accountId < 0) {
1501 return false;
1502 }
1503 db.delete(TABLE_AUTHTOKENS,
1504 AUTHTOKENS_ACCOUNTS_ID + "=" + accountId + " AND " + AUTHTOKENS_TYPE + "=?",
1505 new String[]{type});
1506 ContentValues values = new ContentValues();
1507 values.put(AUTHTOKENS_ACCOUNTS_ID, accountId);
1508 values.put(AUTHTOKENS_TYPE, type);
1509 values.put(AUTHTOKENS_AUTHTOKEN, authToken);
1510 if (db.insert(TABLE_AUTHTOKENS, AUTHTOKENS_AUTHTOKEN, values) >= 0) {
1511 db.setTransactionSuccessful();
Amith Yamasani04e0d262012-02-14 11:50:53 -08001512 writeAuthTokenIntoCacheLocked(accounts, db, account, type, authToken);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001513 return true;
1514 }
Fred Quintana33269202009-04-20 16:05:10 -07001515 return false;
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001516 } finally {
1517 db.endTransaction();
Fred Quintana33269202009-04-20 16:05:10 -07001518 }
Fred Quintana60307342009-03-24 22:48:12 -07001519 }
1520 }
1521
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001522 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001523 public String peekAuthToken(Account account, String authTokenType) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001524 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001525 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1526 Log.v(TAG, "peekAuthToken: " + account
1527 + ", authTokenType " + authTokenType
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001528 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001529 + ", pid " + Binder.getCallingPid());
1530 }
Fred Quintana382601f2010-03-25 12:25:10 -07001531 if (account == null) throw new IllegalArgumentException("account is null");
1532 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001533 int userId = UserHandle.getCallingUserId();
1534 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001535 String msg = String.format(
1536 "uid %s cannot peek the authtokens associated with accounts of type: %s",
1537 callingUid,
1538 account.type);
1539 throw new SecurityException(msg);
1540 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001541 long identityToken = clearCallingIdentity();
1542 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001543 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001544 return readAuthTokenInternal(accounts, account, authTokenType);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001545 } finally {
1546 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07001547 }
Fred Quintana60307342009-03-24 22:48:12 -07001548 }
1549
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001550 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001551 public void setAuthToken(Account account, String authTokenType, String authToken) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001552 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001553 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1554 Log.v(TAG, "setAuthToken: " + account
1555 + ", authTokenType " + authTokenType
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001556 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001557 + ", pid " + Binder.getCallingPid());
1558 }
Fred Quintana382601f2010-03-25 12:25:10 -07001559 if (account == null) throw new IllegalArgumentException("account is null");
1560 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001561 int userId = UserHandle.getCallingUserId();
1562 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001563 String msg = String.format(
1564 "uid %s cannot set auth tokens associated with accounts of type: %s",
1565 callingUid,
1566 account.type);
1567 throw new SecurityException(msg);
1568 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001569 long identityToken = clearCallingIdentity();
1570 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001571 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001572 saveAuthTokenToDatabase(accounts, account, authTokenType, authToken);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001573 } finally {
1574 restoreCallingIdentity(identityToken);
1575 }
Fred Quintana60307342009-03-24 22:48:12 -07001576 }
1577
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001578 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001579 public void setPassword(Account account, String password) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001580 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001581 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1582 Log.v(TAG, "setAuthToken: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001583 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001584 + ", pid " + Binder.getCallingPid());
1585 }
Fred Quintana382601f2010-03-25 12:25:10 -07001586 if (account == null) throw new IllegalArgumentException("account is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001587 int userId = UserHandle.getCallingUserId();
1588 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001589 String msg = String.format(
1590 "uid %s cannot set secrets for accounts of type: %s",
1591 callingUid,
1592 account.type);
1593 throw new SecurityException(msg);
1594 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001595 long identityToken = clearCallingIdentity();
1596 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001597 UserAccounts accounts = getUserAccounts(userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001598 setPasswordInternal(accounts, account, password, callingUid);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001599 } finally {
1600 restoreCallingIdentity(identityToken);
1601 }
Fred Quintana60307342009-03-24 22:48:12 -07001602 }
1603
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001604 private void setPasswordInternal(UserAccounts accounts, Account account, String password,
1605 int callingUid) {
Fred Quintana31957f12009-10-21 13:43:10 -07001606 if (account == null) {
1607 return;
1608 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001609 synchronized (accounts.cacheLock) {
1610 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001611 db.beginTransaction();
1612 try {
1613 final ContentValues values = new ContentValues();
1614 values.put(ACCOUNTS_PASSWORD, password);
1615 final long accountId = getAccountIdLocked(db, account);
1616 if (accountId >= 0) {
1617 final String[] argsAccountId = {String.valueOf(accountId)};
1618 db.update(TABLE_ACCOUNTS, values, ACCOUNTS_ID + "=?", argsAccountId);
1619 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ACCOUNTS_ID + "=?", argsAccountId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001620 accounts.authTokenCache.remove(account);
Carlos Valdivia91979be2015-05-22 14:11:35 -07001621 accounts.accountTokenCaches.remove(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001622 db.setTransactionSuccessful();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001623
1624 String action = (password == null || password.length() == 0) ?
1625 DebugDbHelper.ACTION_CLEAR_PASSWORD
1626 : DebugDbHelper.ACTION_SET_PASSWORD;
1627 logRecord(db, action, TABLE_ACCOUNTS, accountId, accounts, callingUid);
Costin Manolachef5ffe892011-01-19 09:35:32 -08001628 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001629 } finally {
1630 db.endTransaction();
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08001631 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001632 sendAccountsChangedBroadcast(accounts.userId);
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08001633 }
Fred Quintana3ecd5f42009-09-17 12:42:35 -07001634 }
1635
Amith Yamasani04e0d262012-02-14 11:50:53 -08001636 private void sendAccountsChangedBroadcast(int userId) {
Fred Quintana56285a62010-12-02 14:20:51 -08001637 Log.i(TAG, "the accounts changed, sending broadcast of "
1638 + ACCOUNTS_CHANGED_INTENT.getAction());
Dianne Hackborn79af1dd2012-08-16 16:42:52 -07001639 mContext.sendBroadcastAsUser(ACCOUNTS_CHANGED_INTENT, new UserHandle(userId));
Fred Quintana33269202009-04-20 16:05:10 -07001640 }
1641
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001642 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001643 public void clearPassword(Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001644 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001645 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1646 Log.v(TAG, "clearPassword: " + account
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001647 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001648 + ", pid " + Binder.getCallingPid());
1649 }
Fred Quintana382601f2010-03-25 12:25:10 -07001650 if (account == null) throw new IllegalArgumentException("account is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001651 int userId = UserHandle.getCallingUserId();
1652 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001653 String msg = String.format(
1654 "uid %s cannot clear passwords for accounts of type: %s",
1655 callingUid,
1656 account.type);
1657 throw new SecurityException(msg);
1658 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001659 long identityToken = clearCallingIdentity();
1660 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001661 UserAccounts accounts = getUserAccounts(userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07001662 setPasswordInternal(accounts, account, null, callingUid);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001663 } finally {
1664 restoreCallingIdentity(identityToken);
1665 }
Fred Quintana60307342009-03-24 22:48:12 -07001666 }
1667
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001668 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07001669 public void setUserData(Account account, String key, String value) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001670 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08001671 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1672 Log.v(TAG, "setUserData: " + account
1673 + ", key " + key
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001674 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08001675 + ", pid " + Binder.getCallingPid());
1676 }
Fred Quintana382601f2010-03-25 12:25:10 -07001677 if (key == null) throw new IllegalArgumentException("key is null");
1678 if (account == null) throw new IllegalArgumentException("account is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001679 int userId = UserHandle.getCallingUserId();
1680 if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001681 String msg = String.format(
1682 "uid %s cannot set user data for accounts of type: %s",
1683 callingUid,
1684 account.type);
1685 throw new SecurityException(msg);
1686 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001687 long identityToken = clearCallingIdentity();
Fred Quintana60307342009-03-24 22:48:12 -07001688 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001689 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001690 setUserdataInternal(accounts, account, key, value);
Fred Quintana60307342009-03-24 22:48:12 -07001691 } finally {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001692 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07001693 }
1694 }
1695
Amith Yamasani04e0d262012-02-14 11:50:53 -08001696 private void setUserdataInternal(UserAccounts accounts, Account account, String key,
1697 String value) {
Fred Quintana31957f12009-10-21 13:43:10 -07001698 if (account == null || key == null) {
1699 return;
1700 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001701 synchronized (accounts.cacheLock) {
1702 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001703 db.beginTransaction();
1704 try {
1705 long accountId = getAccountIdLocked(db, account);
1706 if (accountId < 0) {
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001707 return;
1708 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001709 long extrasId = getExtrasIdLocked(db, accountId, key);
1710 if (extrasId < 0 ) {
1711 extrasId = insertExtraLocked(db, accountId, key, value);
1712 if (extrasId < 0) {
1713 return;
1714 }
1715 } else {
1716 ContentValues values = new ContentValues();
1717 values.put(EXTRAS_VALUE, value);
1718 if (1 != db.update(TABLE_EXTRAS, values, EXTRAS_ID + "=" + extrasId, null)) {
1719 return;
1720 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001721
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001722 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001723 writeUserDataIntoCacheLocked(accounts, db, account, key, value);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08001724 db.setTransactionSuccessful();
1725 } finally {
1726 db.endTransaction();
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001727 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07001728 }
1729 }
1730
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001731 private void onResult(IAccountManagerResponse response, Bundle result) {
Fred Quintana56285a62010-12-02 14:20:51 -08001732 if (result == null) {
1733 Log.e(TAG, "the result is unexpectedly null", new Exception());
1734 }
1735 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1736 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
1737 + response);
1738 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001739 try {
1740 response.onResult(result);
1741 } catch (RemoteException e) {
1742 // if the caller is dead then there is no one to care about remote
1743 // exceptions
1744 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1745 Log.v(TAG, "failure while notifying response", e);
1746 }
1747 }
1748 }
1749
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001750 @Override
Fred Quintanad9640ec2012-05-23 12:37:00 -07001751 public void getAuthTokenLabel(IAccountManagerResponse response, final String accountType,
1752 final String authTokenType)
1753 throws RemoteException {
1754 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Costin Manolache5f383ad92010-12-02 16:44:46 -08001755 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
1756
Fred Quintanad9640ec2012-05-23 12:37:00 -07001757 final int callingUid = getCallingUid();
1758 clearCallingIdentity();
Amith Yamasani27db4682013-03-30 17:07:47 -07001759 if (callingUid != Process.SYSTEM_UID) {
Fred Quintanad9640ec2012-05-23 12:37:00 -07001760 throw new SecurityException("can only call from system");
1761 }
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001762 int userId = UserHandle.getUserId(callingUid);
Costin Manolache5f383ad92010-12-02 16:44:46 -08001763 long identityToken = clearCallingIdentity();
1764 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001765 UserAccounts accounts = getUserAccounts(userId);
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001766 new Session(accounts, response, accountType, false /* expectActivityLaunch */,
1767 false /* stripAuthTokenFromResult */, null /* accountName */,
1768 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001769 @Override
Costin Manolache5f383ad92010-12-02 16:44:46 -08001770 protected String toDebugString(long now) {
1771 return super.toDebugString(now) + ", getAuthTokenLabel"
Fred Quintanad9640ec2012-05-23 12:37:00 -07001772 + ", " + accountType
Costin Manolache5f383ad92010-12-02 16:44:46 -08001773 + ", authTokenType " + authTokenType;
1774 }
1775
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001776 @Override
Costin Manolache5f383ad92010-12-02 16:44:46 -08001777 public void run() throws RemoteException {
1778 mAuthenticator.getAuthTokenLabel(this, authTokenType);
1779 }
1780
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001781 @Override
Costin Manolache5f383ad92010-12-02 16:44:46 -08001782 public void onResult(Bundle result) {
1783 if (result != null) {
1784 String label = result.getString(AccountManager.KEY_AUTH_TOKEN_LABEL);
1785 Bundle bundle = new Bundle();
1786 bundle.putString(AccountManager.KEY_AUTH_TOKEN_LABEL, label);
1787 super.onResult(bundle);
1788 return;
1789 } else {
1790 super.onResult(result);
1791 }
1792 }
1793 }.bind();
1794 } finally {
1795 restoreCallingIdentity(identityToken);
1796 }
1797 }
1798
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001799 @Override
Carlos Valdivia91979be2015-05-22 14:11:35 -07001800 public void getAuthToken(
1801 IAccountManagerResponse response,
1802 final Account account,
1803 final String authTokenType,
1804 final boolean notifyOnAuthFailure,
1805 final boolean expectActivityLaunch,
1806 final Bundle loginOptions) {
Fred Quintana56285a62010-12-02 14:20:51 -08001807 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1808 Log.v(TAG, "getAuthToken: " + account
1809 + ", response " + response
1810 + ", authTokenType " + authTokenType
1811 + ", notifyOnAuthFailure " + notifyOnAuthFailure
1812 + ", expectActivityLaunch " + expectActivityLaunch
1813 + ", caller's uid " + Binder.getCallingUid()
1814 + ", pid " + Binder.getCallingPid());
1815 }
Fred Quintana382601f2010-03-25 12:25:10 -07001816 if (response == null) throw new IllegalArgumentException("response is null");
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08001817 try {
1818 if (account == null) {
1819 Slog.w(TAG, "getAuthToken called with null account");
1820 response.onError(AccountManager.ERROR_CODE_BAD_ARGUMENTS, "account is null");
1821 return;
1822 }
1823 if (authTokenType == null) {
1824 Slog.w(TAG, "getAuthToken called with null authTokenType");
1825 response.onError(AccountManager.ERROR_CODE_BAD_ARGUMENTS, "authTokenType is null");
1826 return;
1827 }
1828 } catch (RemoteException e) {
1829 Slog.w(TAG, "Failed to report error back to the client." + e);
1830 return;
1831 }
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001832 int userId = UserHandle.getCallingUserId();
1833 long ident = Binder.clearCallingIdentity();
1834 final UserAccounts accounts;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07001835 final RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> authenticatorInfo;
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001836 try {
1837 accounts = getUserAccounts(userId);
1838 authenticatorInfo = mAuthenticatorCache.getServiceInfo(
1839 AuthenticatorDescription.newKey(account.type), accounts.userId);
1840 } finally {
1841 Binder.restoreCallingIdentity(ident);
1842 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001843
Costin Manolachea40c6302010-12-13 14:50:45 -08001844 final boolean customTokens =
Carlos Valdivia91979be2015-05-22 14:11:35 -07001845 authenticatorInfo != null && authenticatorInfo.type.customTokens;
Costin Manolachea40c6302010-12-13 14:50:45 -08001846
1847 // skip the check if customTokens
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07001848 final int callerUid = Binder.getCallingUid();
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00001849 final boolean permissionGranted =
1850 customTokens || permissionIsGranted(account, authTokenType, callerUid, userId);
Costin Manolachea40c6302010-12-13 14:50:45 -08001851
Carlos Valdivia91979be2015-05-22 14:11:35 -07001852 // Get the calling package. We will use it for the purpose of caching.
1853 final String callerPkg = loginOptions.getString(AccountManager.KEY_ANDROID_PACKAGE_NAME);
Amith Yamasanie7360012015-06-03 17:39:40 -07001854 List<String> callerOwnedPackageNames;
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07001855 ident = Binder.clearCallingIdentity();
Amith Yamasanie7360012015-06-03 17:39:40 -07001856 try {
1857 callerOwnedPackageNames = Arrays.asList(mPackageManager.getPackagesForUid(callerUid));
1858 } finally {
1859 Binder.restoreCallingIdentity(ident);
1860 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001861 if (callerPkg == null || !callerOwnedPackageNames.contains(callerPkg)) {
1862 String msg = String.format(
1863 "Uid %s is attempting to illegally masquerade as package %s!",
1864 callerUid,
1865 callerPkg);
1866 throw new SecurityException(msg);
1867 }
1868
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07001869 // let authenticator know the identity of the caller
1870 loginOptions.putInt(AccountManager.KEY_CALLER_UID, callerUid);
1871 loginOptions.putInt(AccountManager.KEY_CALLER_PID, Binder.getCallingPid());
Carlos Valdivia91979be2015-05-22 14:11:35 -07001872
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07001873 if (notifyOnAuthFailure) {
1874 loginOptions.putBoolean(AccountManager.KEY_NOTIFY_ON_FAILURE, true);
Costin Manolachea40c6302010-12-13 14:50:45 -08001875 }
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07001876
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001877 long identityToken = clearCallingIdentity();
1878 try {
Amith Yamasanie7360012015-06-03 17:39:40 -07001879 // Distill the caller's package signatures into a single digest.
1880 final byte[] callerPkgSigDigest = calculatePackageSignatureDigest(callerPkg);
1881
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001882 // if the caller has permission, do the peek. otherwise go the more expensive
1883 // route of starting a Session
Costin Manolachea40c6302010-12-13 14:50:45 -08001884 if (!customTokens && permissionGranted) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001885 String authToken = readAuthTokenInternal(accounts, account, authTokenType);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001886 if (authToken != null) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001887 Bundle result = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001888 result.putString(AccountManager.KEY_AUTHTOKEN, authToken);
1889 result.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
1890 result.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001891 onResult(response, result);
1892 return;
Fred Quintanaa698f422009-04-08 19:14:54 -07001893 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001894 }
1895
Carlos Valdivia91979be2015-05-22 14:11:35 -07001896 if (customTokens) {
1897 /*
1898 * Look up tokens in the new cache only if the loginOptions don't have parameters
1899 * outside of those expected to be injected by the AccountManager, e.g.
1900 * ANDORID_PACKAGE_NAME.
1901 */
1902 String token = readCachedTokenInternal(
1903 accounts,
1904 account,
1905 authTokenType,
1906 callerPkg,
1907 callerPkgSigDigest);
1908 if (token != null) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001909 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1910 Log.v(TAG, "getAuthToken: cache hit ofr custom token authenticator.");
1911 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001912 Bundle result = new Bundle();
1913 result.putString(AccountManager.KEY_AUTHTOKEN, token);
1914 result.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
1915 result.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);
1916 onResult(response, result);
1917 return;
1918 }
1919 }
1920
Amith Yamasani04e0d262012-02-14 11:50:53 -08001921 new Session(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08001922 false /* stripAuthTokenFromResult */, account.name,
1923 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001924 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001925 protected String toDebugString(long now) {
1926 if (loginOptions != null) loginOptions.keySet();
1927 return super.toDebugString(now) + ", getAuthToken"
1928 + ", " + account
1929 + ", authTokenType " + authTokenType
1930 + ", loginOptions " + loginOptions
1931 + ", notifyOnAuthFailure " + notifyOnAuthFailure;
1932 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001933
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001934 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001935 public void run() throws RemoteException {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001936 // If the caller doesn't have permission then create and return the
1937 // "grant permission" intent instead of the "getAuthToken" intent.
1938 if (!permissionGranted) {
1939 mAuthenticator.getAuthTokenLabel(this, authTokenType);
1940 } else {
1941 mAuthenticator.getAuthToken(this, account, authTokenType, loginOptions);
1942 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001943 }
1944
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07001945 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001946 public void onResult(Bundle result) {
1947 if (result != null) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001948 if (result.containsKey(AccountManager.KEY_AUTH_TOKEN_LABEL)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001949 Intent intent = newGrantCredentialsPermissionIntent(
1950 account,
1951 callerUid,
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001952 new AccountAuthenticatorResponse(this),
Carlos Valdiviac37ee222015-06-17 20:17:37 -07001953 authTokenType);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001954 Bundle bundle = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001955 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001956 onResult(bundle);
1957 return;
1958 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001959 String authToken = result.getString(AccountManager.KEY_AUTHTOKEN);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001960 if (authToken != null) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001961 String name = result.getString(AccountManager.KEY_ACCOUNT_NAME);
1962 String type = result.getString(AccountManager.KEY_ACCOUNT_TYPE);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001963 if (TextUtils.isEmpty(type) || TextUtils.isEmpty(name)) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001964 onError(AccountManager.ERROR_CODE_INVALID_RESPONSE,
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001965 "the type and name should not be empty");
1966 return;
1967 }
Carlos Valdivia91979be2015-05-22 14:11:35 -07001968 Account resultAccount = new Account(name, type);
Costin Manolachea40c6302010-12-13 14:50:45 -08001969 if (!customTokens) {
Carlos Valdivia91979be2015-05-22 14:11:35 -07001970 saveAuthTokenToDatabase(
1971 mAccounts,
1972 resultAccount,
1973 authTokenType,
1974 authToken);
1975 }
1976 long expiryMillis = result.getLong(
1977 AbstractAccountAuthenticator.KEY_CUSTOM_TOKEN_EXPIRY, 0L);
1978 if (customTokens
1979 && expiryMillis > System.currentTimeMillis()) {
1980 saveCachedToken(
1981 mAccounts,
1982 account,
1983 callerPkg,
1984 callerPkgSigDigest,
1985 authTokenType,
1986 authToken,
1987 expiryMillis);
Costin Manolachea40c6302010-12-13 14:50:45 -08001988 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001989 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001990
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001991 Intent intent = result.getParcelable(AccountManager.KEY_INTENT);
Costin Manolached6060452011-01-24 16:11:36 -08001992 if (intent != null && notifyOnAuthFailure && !customTokens) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001993 doNotification(mAccounts,
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07001994 account, result.getString(AccountManager.KEY_AUTH_FAILED_MESSAGE),
Dianne Hackborn41203752012-08-31 14:05:51 -07001995 intent, accounts.userId);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001996 }
Fred Quintanaa698f422009-04-08 19:14:54 -07001997 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07001998 super.onResult(result);
Fred Quintanaa698f422009-04-08 19:14:54 -07001999 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002000 }.bind();
2001 } finally {
2002 restoreCallingIdentity(identityToken);
2003 }
Fred Quintana60307342009-03-24 22:48:12 -07002004 }
2005
Carlos Valdivia91979be2015-05-22 14:11:35 -07002006 private byte[] calculatePackageSignatureDigest(String callerPkg) {
2007 MessageDigest digester;
2008 try {
2009 digester = MessageDigest.getInstance("SHA-256");
2010 PackageInfo pkgInfo = mPackageManager.getPackageInfo(
2011 callerPkg, PackageManager.GET_SIGNATURES);
2012 for (Signature sig : pkgInfo.signatures) {
2013 digester.update(sig.toByteArray());
2014 }
2015 } catch (NoSuchAlgorithmException x) {
2016 Log.wtf(TAG, "SHA-256 should be available", x);
2017 digester = null;
2018 } catch (NameNotFoundException e) {
2019 Log.w(TAG, "Could not find packageinfo for: " + callerPkg);
2020 digester = null;
2021 }
2022 return (digester == null) ? null : digester.digest();
2023 }
2024
Dianne Hackborn41203752012-08-31 14:05:51 -07002025 private void createNoCredentialsPermissionNotification(Account account, Intent intent,
2026 int userId) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002027 int uid = intent.getIntExtra(
2028 GrantCredentialsPermissionActivity.EXTRAS_REQUESTING_UID, -1);
2029 String authTokenType = intent.getStringExtra(
2030 GrantCredentialsPermissionActivity.EXTRAS_AUTH_TOKEN_TYPE);
Eric Fischeree452ee2009-08-31 17:58:06 -07002031 final String titleAndSubtitle =
2032 mContext.getString(R.string.permission_request_notification_with_subtitle,
2033 account.name);
2034 final int index = titleAndSubtitle.indexOf('\n');
Costin Manolache85e72792011-10-07 09:42:49 -07002035 String title = titleAndSubtitle;
2036 String subtitle = "";
2037 if (index > 0) {
2038 title = titleAndSubtitle.substring(0, index);
Maggie Benthalla12fccf2013-03-14 18:02:12 -04002039 subtitle = titleAndSubtitle.substring(index + 1);
Costin Manolache85e72792011-10-07 09:42:49 -07002040 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07002041 UserHandle user = new UserHandle(userId);
Kenny Guy07ad8dc2014-09-01 20:56:12 +01002042 Context contextForUser = getContextForUser(user);
Chris Wren1ce4b6d2015-06-11 10:19:43 -04002043 Notification n = new Notification.Builder(contextForUser)
2044 .setSmallIcon(android.R.drawable.stat_sys_warning)
2045 .setWhen(0)
2046 .setColor(contextForUser.getColor(
2047 com.android.internal.R.color.system_notification_accent_color))
2048 .setContentTitle(title)
2049 .setContentText(subtitle)
2050 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0, intent,
2051 PendingIntent.FLAG_CANCEL_CURRENT, null, user))
2052 .build();
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07002053 installNotification(getCredentialPermissionNotificationId(
2054 account, authTokenType, uid), n, user);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002055 }
2056
Costin Manolache5f383ad92010-12-02 16:44:46 -08002057 private Intent newGrantCredentialsPermissionIntent(Account account, int uid,
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002058 AccountAuthenticatorResponse response, String authTokenType) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002059
2060 Intent intent = new Intent(mContext, GrantCredentialsPermissionActivity.class);
Brian Carlstrom46703b02011-04-06 15:41:29 -07002061 // See FLAG_ACTIVITY_NEW_TASK docs for limitations and benefits of the flag.
Costin Manolache9ec17362011-01-17 12:12:37 -08002062 // Since it was set in Eclair+ we can't change it without breaking apps using
2063 // the intent from a non-Activity context.
2064 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002065 intent.addCategory(
2066 String.valueOf(getCredentialPermissionNotificationId(account, authTokenType, uid)));
Costin Manolache5f383ad92010-12-02 16:44:46 -08002067
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002068 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_ACCOUNT, account);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002069 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_AUTH_TOKEN_TYPE, authTokenType);
2070 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_RESPONSE, response);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002071 intent.putExtra(GrantCredentialsPermissionActivity.EXTRAS_REQUESTING_UID, uid);
Costin Manolache5f383ad92010-12-02 16:44:46 -08002072
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002073 return intent;
2074 }
2075
2076 private Integer getCredentialPermissionNotificationId(Account account, String authTokenType,
2077 int uid) {
2078 Integer id;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07002079 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08002080 synchronized (accounts.credentialsPermissionNotificationIds) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002081 final Pair<Pair<Account, String>, Integer> key =
2082 new Pair<Pair<Account, String>, Integer>(
2083 new Pair<Account, String>(account, authTokenType), uid);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002084 id = accounts.credentialsPermissionNotificationIds.get(key);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002085 if (id == null) {
2086 id = mNotificationIds.incrementAndGet();
Amith Yamasani04e0d262012-02-14 11:50:53 -08002087 accounts.credentialsPermissionNotificationIds.put(key, id);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002088 }
2089 }
2090 return id;
2091 }
2092
Amith Yamasani04e0d262012-02-14 11:50:53 -08002093 private Integer getSigninRequiredNotificationId(UserAccounts accounts, Account account) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002094 Integer id;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002095 synchronized (accounts.signinRequiredNotificationIds) {
2096 id = accounts.signinRequiredNotificationIds.get(account);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002097 if (id == null) {
2098 id = mNotificationIds.incrementAndGet();
Amith Yamasani04e0d262012-02-14 11:50:53 -08002099 accounts.signinRequiredNotificationIds.put(account, id);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002100 }
2101 }
2102 return id;
2103 }
2104
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002105 @Override
Amith Yamasani27db4682013-03-30 17:07:47 -07002106 public void addAccount(final IAccountManagerResponse response, final String accountType,
Fred Quintana33269202009-04-20 16:05:10 -07002107 final String authTokenType, final String[] requiredFeatures,
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07002108 final boolean expectActivityLaunch, final Bundle optionsIn) {
Fred Quintana56285a62010-12-02 14:20:51 -08002109 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2110 Log.v(TAG, "addAccount: accountType " + accountType
2111 + ", response " + response
2112 + ", authTokenType " + authTokenType
2113 + ", requiredFeatures " + stringArrayToString(requiredFeatures)
2114 + ", expectActivityLaunch " + expectActivityLaunch
2115 + ", caller's uid " + Binder.getCallingUid()
2116 + ", pid " + Binder.getCallingPid());
2117 }
Fred Quintana382601f2010-03-25 12:25:10 -07002118 if (response == null) throw new IllegalArgumentException("response is null");
2119 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07002120
Amith Yamasani71e6c692013-03-24 17:39:28 -07002121 // Is user disallowed from modifying accounts?
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002122 int userId = Binder.getCallingUserHandle().getIdentifier();
2123 if (!canUserModifyAccounts(userId)) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002124 try {
2125 response.onError(AccountManager.ERROR_CODE_USER_RESTRICTED,
2126 "User is not allowed to add an account!");
2127 } catch (RemoteException re) {
2128 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002129 showCantAddAccount(AccountManager.ERROR_CODE_USER_RESTRICTED, userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002130 return;
2131 }
2132 if (!canUserModifyAccountsForType(userId, accountType)) {
Amith Yamasani23c8b962013-04-10 13:37:18 -07002133 try {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002134 response.onError(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2135 "User cannot modify accounts of this type (policy).");
2136 } catch (RemoteException re) {
Amith Yamasani23c8b962013-04-10 13:37:18 -07002137 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002138 showCantAddAccount(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2139 userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002140 return;
2141 }
2142
Costin Manolacheb61e8fb2011-09-08 11:26:09 -07002143 final int pid = Binder.getCallingPid();
2144 final int uid = Binder.getCallingUid();
2145 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn;
2146 options.putInt(AccountManager.KEY_CALLER_UID, uid);
2147 options.putInt(AccountManager.KEY_CALLER_PID, pid);
2148
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002149 int usrId = UserHandle.getCallingUserId();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002150 long identityToken = clearCallingIdentity();
2151 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002152 UserAccounts accounts = getUserAccounts(usrId);
2153 logRecordWithUid(
2154 accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_ADD, TABLE_ACCOUNTS, uid);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002155 new Session(accounts, response, accountType, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002156 true /* stripAuthTokenFromResult */, null /* accountName */,
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07002157 false /* authDetailsRequired */, true /* updateLastAuthenticationTime */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002158 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002159 public void run() throws RemoteException {
Costin Manolache3348f142009-09-29 18:58:36 -07002160 mAuthenticator.addAccount(this, mAccountType, authTokenType, requiredFeatures,
Fred Quintana33269202009-04-20 16:05:10 -07002161 options);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002162 }
Fred Quintanaa698f422009-04-08 19:14:54 -07002163
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002164 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002165 protected String toDebugString(long now) {
2166 return super.toDebugString(now) + ", addAccount"
Fred Quintana33269202009-04-20 16:05:10 -07002167 + ", accountType " + accountType
2168 + ", requiredFeatures "
2169 + (requiredFeatures != null
2170 ? TextUtils.join(",", requiredFeatures)
2171 : null);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002172 }
2173 }.bind();
2174 } finally {
2175 restoreCallingIdentity(identityToken);
2176 }
Fred Quintana60307342009-03-24 22:48:12 -07002177 }
2178
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002179 @Override
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002180 public void addAccountAsUser(final IAccountManagerResponse response, final String accountType,
2181 final String authTokenType, final String[] requiredFeatures,
2182 final boolean expectActivityLaunch, final Bundle optionsIn, int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002183 int callingUid = Binder.getCallingUid();
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002184 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2185 Log.v(TAG, "addAccount: accountType " + accountType
2186 + ", response " + response
2187 + ", authTokenType " + authTokenType
2188 + ", requiredFeatures " + stringArrayToString(requiredFeatures)
2189 + ", expectActivityLaunch " + expectActivityLaunch
2190 + ", caller's uid " + Binder.getCallingUid()
2191 + ", pid " + Binder.getCallingPid()
2192 + ", for user id " + userId);
2193 }
2194 if (response == null) throw new IllegalArgumentException("response is null");
2195 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002196 // Only allow the system process to add accounts of other users
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002197 if (isCrossUser(callingUid, userId)) {
2198 throw new SecurityException(
2199 String.format(
2200 "User %s trying to add account for %s" ,
2201 UserHandle.getCallingUserId(),
2202 userId));
2203 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002204
2205 // Is user disallowed from modifying accounts?
2206 if (!canUserModifyAccounts(userId)) {
2207 try {
2208 response.onError(AccountManager.ERROR_CODE_USER_RESTRICTED,
2209 "User is not allowed to add an account!");
2210 } catch (RemoteException re) {
2211 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002212 showCantAddAccount(AccountManager.ERROR_CODE_USER_RESTRICTED, userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002213 return;
2214 }
2215 if (!canUserModifyAccountsForType(userId, accountType)) {
2216 try {
2217 response.onError(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2218 "User cannot modify accounts of this type (policy).");
2219 } catch (RemoteException re) {
2220 }
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002221 showCantAddAccount(AccountManager.ERROR_CODE_MANAGEMENT_DISABLED_FOR_ACCOUNT_TYPE,
2222 userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002223 return;
2224 }
2225
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002226 final int pid = Binder.getCallingPid();
2227 final int uid = Binder.getCallingUid();
2228 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn;
2229 options.putInt(AccountManager.KEY_CALLER_UID, uid);
2230 options.putInt(AccountManager.KEY_CALLER_PID, pid);
2231
2232 long identityToken = clearCallingIdentity();
2233 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002234 UserAccounts accounts = getUserAccounts(userId);
2235 logRecordWithUid(
2236 accounts, DebugDbHelper.ACTION_CALLED_ACCOUNT_ADD, TABLE_ACCOUNTS, userId);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002237 new Session(accounts, response, accountType, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002238 true /* stripAuthTokenFromResult */, null /* accountName */,
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07002239 false /* authDetailsRequired */, true /* updateLastAuthenticationTime */) {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002240 @Override
2241 public void run() throws RemoteException {
2242 mAuthenticator.addAccount(this, mAccountType, authTokenType, requiredFeatures,
2243 options);
2244 }
2245
2246 @Override
2247 protected String toDebugString(long now) {
2248 return super.toDebugString(now) + ", addAccount"
2249 + ", accountType " + accountType
2250 + ", requiredFeatures "
2251 + (requiredFeatures != null
2252 ? TextUtils.join(",", requiredFeatures)
2253 : null);
2254 }
2255 }.bind();
2256 } finally {
2257 restoreCallingIdentity(identityToken);
2258 }
2259 }
2260
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002261 private void showCantAddAccount(int errorCode, int userId) {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002262 Intent cantAddAccount = new Intent(mContext, CantAddAccountActivity.class);
2263 cantAddAccount.putExtra(CantAddAccountActivity.EXTRA_ERROR_CODE, errorCode);
2264 cantAddAccount.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2265 long identityToken = clearCallingIdentity();
2266 try {
Amith Yamasaniae7034a2014-09-22 12:42:12 -07002267 mContext.startActivityAsUser(cantAddAccount, new UserHandle(userId));
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002268 } finally {
2269 restoreCallingIdentity(identityToken);
2270 }
2271 }
2272
2273 @Override
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002274 public void confirmCredentialsAsUser(
2275 IAccountManagerResponse response,
2276 final Account account,
2277 final Bundle options,
2278 final boolean expectActivityLaunch,
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002279 int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002280 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002281 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2282 Log.v(TAG, "confirmCredentials: " + account
2283 + ", response " + response
2284 + ", expectActivityLaunch " + expectActivityLaunch
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002285 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002286 + ", pid " + Binder.getCallingPid());
2287 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002288 // Only allow the system process to read accounts of other users
2289 if (isCrossUser(callingUid, userId)) {
2290 throw new SecurityException(
2291 String.format(
2292 "User %s trying to confirm account credentials for %s" ,
2293 UserHandle.getCallingUserId(),
2294 userId));
2295 }
Fred Quintana382601f2010-03-25 12:25:10 -07002296 if (response == null) throw new IllegalArgumentException("response is null");
2297 if (account == null) throw new IllegalArgumentException("account is null");
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002298 long identityToken = clearCallingIdentity();
2299 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002300 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002301 new Session(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002302 true /* stripAuthTokenFromResult */, account.name,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002303 true /* authDetailsRequired */, true /* updateLastAuthenticatedTime */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002304 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002305 public void run() throws RemoteException {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002306 mAuthenticator.confirmCredentials(this, account, options);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002307 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002308 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002309 protected String toDebugString(long now) {
2310 return super.toDebugString(now) + ", confirmCredentials"
2311 + ", " + account;
2312 }
2313 }.bind();
2314 } finally {
2315 restoreCallingIdentity(identityToken);
2316 }
Fred Quintana60307342009-03-24 22:48:12 -07002317 }
2318
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002319 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002320 public void updateCredentials(IAccountManagerResponse response, final Account account,
2321 final String authTokenType, final boolean expectActivityLaunch,
2322 final Bundle loginOptions) {
Fred Quintana56285a62010-12-02 14:20:51 -08002323 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2324 Log.v(TAG, "updateCredentials: " + account
2325 + ", response " + response
2326 + ", authTokenType " + authTokenType
2327 + ", expectActivityLaunch " + expectActivityLaunch
2328 + ", caller's uid " + Binder.getCallingUid()
2329 + ", pid " + Binder.getCallingPid());
2330 }
Fred Quintana382601f2010-03-25 12:25:10 -07002331 if (response == null) throw new IllegalArgumentException("response is null");
2332 if (account == null) throw new IllegalArgumentException("account is null");
2333 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002334 int userId = UserHandle.getCallingUserId();
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002335 long identityToken = clearCallingIdentity();
2336 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002337 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002338 new Session(accounts, response, account.type, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002339 true /* stripAuthTokenFromResult */, account.name,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002340 false /* authDetailsRequired */, true /* updateLastCredentialTime */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002341 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002342 public void run() throws RemoteException {
2343 mAuthenticator.updateCredentials(this, account, authTokenType, loginOptions);
2344 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002345 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002346 protected String toDebugString(long now) {
2347 if (loginOptions != null) loginOptions.keySet();
2348 return super.toDebugString(now) + ", updateCredentials"
2349 + ", " + account
2350 + ", authTokenType " + authTokenType
2351 + ", loginOptions " + loginOptions;
2352 }
2353 }.bind();
2354 } finally {
2355 restoreCallingIdentity(identityToken);
2356 }
Fred Quintana60307342009-03-24 22:48:12 -07002357 }
2358
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002359 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002360 public void editProperties(IAccountManagerResponse response, final String accountType,
2361 final boolean expectActivityLaunch) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07002362 final int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002363 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2364 Log.v(TAG, "editProperties: accountType " + accountType
2365 + ", response " + response
2366 + ", expectActivityLaunch " + expectActivityLaunch
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07002367 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002368 + ", pid " + Binder.getCallingPid());
2369 }
Fred Quintana382601f2010-03-25 12:25:10 -07002370 if (response == null) throw new IllegalArgumentException("response is null");
2371 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002372 int userId = UserHandle.getCallingUserId();
2373 if (!isAccountManagedByCaller(accountType, callingUid, userId) && !isSystemUid(callingUid)) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07002374 String msg = String.format(
2375 "uid %s cannot edit authenticator properites for account type: %s",
2376 callingUid,
2377 accountType);
2378 throw new SecurityException(msg);
2379 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002380 long identityToken = clearCallingIdentity();
2381 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002382 UserAccounts accounts = getUserAccounts(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002383 new Session(accounts, response, accountType, expectActivityLaunch,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002384 true /* stripAuthTokenFromResult */, null /* accountName */,
2385 false /* authDetailsRequired */) {
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002386 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002387 public void run() throws RemoteException {
2388 mAuthenticator.editProperties(this, mAccountType);
2389 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002390 @Override
Fred Quintana26fc5eb2009-04-09 15:05:50 -07002391 protected String toDebugString(long now) {
2392 return super.toDebugString(now) + ", editProperties"
2393 + ", accountType " + accountType;
2394 }
2395 }.bind();
2396 } finally {
2397 restoreCallingIdentity(identityToken);
2398 }
Fred Quintana60307342009-03-24 22:48:12 -07002399 }
2400
Fred Quintana33269202009-04-20 16:05:10 -07002401 private class GetAccountsByTypeAndFeatureSession extends Session {
2402 private final String[] mFeatures;
2403 private volatile Account[] mAccountsOfType = null;
2404 private volatile ArrayList<Account> mAccountsWithFeatures = null;
2405 private volatile int mCurrentAccount = 0;
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002406 private final int mCallingUid;
Fred Quintana33269202009-04-20 16:05:10 -07002407
Amith Yamasani04e0d262012-02-14 11:50:53 -08002408 public GetAccountsByTypeAndFeatureSession(UserAccounts accounts,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002409 IAccountManagerResponse response, String type, String[] features, int callingUid) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002410 super(accounts, response, type, false /* expectActivityLaunch */,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002411 true /* stripAuthTokenFromResult */, null /* accountName */,
2412 false /* authDetailsRequired */);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002413 mCallingUid = callingUid;
Fred Quintana33269202009-04-20 16:05:10 -07002414 mFeatures = features;
2415 }
2416
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002417 @Override
Fred Quintana33269202009-04-20 16:05:10 -07002418 public void run() throws RemoteException {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002419 synchronized (mAccounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002420 mAccountsOfType = getAccountsFromCacheLocked(mAccounts, mAccountType, mCallingUid,
2421 null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002422 }
Fred Quintana33269202009-04-20 16:05:10 -07002423 // check whether each account matches the requested features
2424 mAccountsWithFeatures = new ArrayList<Account>(mAccountsOfType.length);
2425 mCurrentAccount = 0;
2426
2427 checkAccount();
2428 }
2429
2430 public void checkAccount() {
2431 if (mCurrentAccount >= mAccountsOfType.length) {
2432 sendResult();
2433 return;
Fred Quintanaa698f422009-04-08 19:14:54 -07002434 }
Fred Quintana33269202009-04-20 16:05:10 -07002435
Fred Quintana29e94b82010-03-10 12:11:51 -08002436 final IAccountAuthenticator accountAuthenticator = mAuthenticator;
2437 if (accountAuthenticator == null) {
2438 // It is possible that the authenticator has died, which is indicated by
2439 // mAuthenticator being set to null. If this happens then just abort.
2440 // There is no need to send back a result or error in this case since
2441 // that already happened when mAuthenticator was cleared.
2442 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2443 Log.v(TAG, "checkAccount: aborting session since we are no longer"
2444 + " connected to the authenticator, " + toDebugString());
2445 }
2446 return;
2447 }
Fred Quintana33269202009-04-20 16:05:10 -07002448 try {
Fred Quintana29e94b82010-03-10 12:11:51 -08002449 accountAuthenticator.hasFeatures(this, mAccountsOfType[mCurrentAccount], mFeatures);
Fred Quintana33269202009-04-20 16:05:10 -07002450 } catch (RemoteException e) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002451 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "remote exception");
Fred Quintana33269202009-04-20 16:05:10 -07002452 }
2453 }
2454
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002455 @Override
Fred Quintana33269202009-04-20 16:05:10 -07002456 public void onResult(Bundle result) {
2457 mNumResults++;
2458 if (result == null) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002459 onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
Fred Quintana33269202009-04-20 16:05:10 -07002460 return;
2461 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002462 if (result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false)) {
Fred Quintana33269202009-04-20 16:05:10 -07002463 mAccountsWithFeatures.add(mAccountsOfType[mCurrentAccount]);
2464 }
2465 mCurrentAccount++;
2466 checkAccount();
2467 }
2468
2469 public void sendResult() {
2470 IAccountManagerResponse response = getResponseAndClose();
2471 if (response != null) {
2472 try {
2473 Account[] accounts = new Account[mAccountsWithFeatures.size()];
2474 for (int i = 0; i < accounts.length; i++) {
2475 accounts[i] = mAccountsWithFeatures.get(i);
2476 }
Fred Quintana56285a62010-12-02 14:20:51 -08002477 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2478 Log.v(TAG, getClass().getSimpleName() + " calling onResult() on response "
2479 + response);
2480 }
Fred Quintana33269202009-04-20 16:05:10 -07002481 Bundle result = new Bundle();
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002482 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, accounts);
Fred Quintana33269202009-04-20 16:05:10 -07002483 response.onResult(result);
2484 } catch (RemoteException e) {
2485 // if the caller is dead then there is no one to care about remote exceptions
2486 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2487 Log.v(TAG, "failure while notifying response", e);
2488 }
2489 }
2490 }
2491 }
2492
2493
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07002494 @Override
Fred Quintana33269202009-04-20 16:05:10 -07002495 protected String toDebugString(long now) {
2496 return super.toDebugString(now) + ", getAccountsByTypeAndFeatures"
2497 + ", " + (mFeatures != null ? TextUtils.join(",", mFeatures) : null);
2498 }
2499 }
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002500
Amith Yamasani04e0d262012-02-14 11:50:53 -08002501 /**
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002502 * Returns the accounts visible to the client within the context of a specific user
Amith Yamasani04e0d262012-02-14 11:50:53 -08002503 * @hide
2504 */
2505 public Account[] getAccounts(int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002506 int callingUid = Binder.getCallingUid();
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002507 List<String> visibleAccountTypes = getTypesVisibleToCaller(callingUid, userId);
2508 if (visibleAccountTypes.isEmpty()) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002509 return new Account[0];
2510 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08002511 long identityToken = clearCallingIdentity();
2512 try {
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002513 return getAccountsInternal(
2514 userId,
2515 callingUid,
2516 null, // packageName
2517 visibleAccountTypes);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002518 } finally {
2519 restoreCallingIdentity(identityToken);
2520 }
2521 }
2522
Amith Yamasanif29f2362012-04-05 18:29:52 -07002523 /**
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002524 * Returns accounts for all running users.
2525 *
Amith Yamasanif29f2362012-04-05 18:29:52 -07002526 * @hide
2527 */
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002528 public AccountAndUser[] getRunningAccounts() {
2529 final int[] runningUserIds;
2530 try {
2531 runningUserIds = ActivityManagerNative.getDefault().getRunningUserIds();
2532 } catch (RemoteException e) {
2533 // Running in system_server; should never happen
2534 throw new RuntimeException(e);
2535 }
Jeff Sharkey6eb96202012-10-10 13:13:54 -07002536 return getAccounts(runningUserIds);
2537 }
Amith Yamasanif29f2362012-04-05 18:29:52 -07002538
Jeff Sharkey6eb96202012-10-10 13:13:54 -07002539 /** {@hide} */
2540 public AccountAndUser[] getAllAccounts() {
2541 final List<UserInfo> users = getUserManager().getUsers();
2542 final int[] userIds = new int[users.size()];
2543 for (int i = 0; i < userIds.length; i++) {
2544 userIds[i] = users.get(i).id;
2545 }
2546 return getAccounts(userIds);
2547 }
2548
2549 private AccountAndUser[] getAccounts(int[] userIds) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002550 final ArrayList<AccountAndUser> runningAccounts = Lists.newArrayList();
Amith Yamasani0c19bf52013-10-03 10:34:58 -07002551 for (int userId : userIds) {
2552 UserAccounts userAccounts = getUserAccounts(userId);
2553 if (userAccounts == null) continue;
2554 synchronized (userAccounts.cacheLock) {
2555 Account[] accounts = getAccountsFromCacheLocked(userAccounts, null,
2556 Binder.getCallingUid(), null);
2557 for (int a = 0; a < accounts.length; a++) {
2558 runningAccounts.add(new AccountAndUser(accounts[a], userId));
Amith Yamasanif29f2362012-04-05 18:29:52 -07002559 }
2560 }
2561 }
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07002562
2563 AccountAndUser[] accountsArray = new AccountAndUser[runningAccounts.size()];
2564 return runningAccounts.toArray(accountsArray);
Amith Yamasanif29f2362012-04-05 18:29:52 -07002565 }
2566
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002567 @Override
2568 public Account[] getAccountsAsUser(String type, int userId) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002569 return getAccountsAsUser(type, userId, null, -1);
2570 }
2571
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002572 private Account[] getAccountsAsUser(
2573 String type,
2574 int userId,
2575 String callingPackage,
Amith Yamasani27db4682013-03-30 17:07:47 -07002576 int packageUid) {
2577 int callingUid = Binder.getCallingUid();
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002578 // Only allow the system process to read accounts of other users
2579 if (userId != UserHandle.getCallingUserId()
Amith Yamasanibb49e852013-03-30 19:20:18 -07002580 && callingUid != Process.myUid()
Jim Miller464f5302013-02-27 18:33:25 -08002581 && mContext.checkCallingOrSelfPermission(
2582 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
2583 != PackageManager.PERMISSION_GRANTED) {
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002584 throw new SecurityException("User " + UserHandle.getCallingUserId()
2585 + " trying to get account for " + userId);
2586 }
2587
Fred Quintana56285a62010-12-02 14:20:51 -08002588 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2589 Log.v(TAG, "getAccounts: accountType " + type
2590 + ", caller's uid " + Binder.getCallingUid()
2591 + ", pid " + Binder.getCallingPid());
2592 }
Amith Yamasani27db4682013-03-30 17:07:47 -07002593 // If the original calling app was using the framework account chooser activity, we'll
2594 // be passed in the original caller's uid here, which is what should be used for filtering.
2595 if (packageUid != -1 && UserHandle.isSameApp(callingUid, Process.myUid())) {
2596 callingUid = packageUid;
2597 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002598
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002599 List<String> visibleAccountTypes = getTypesVisibleToCaller(callingUid, userId);
2600 if (visibleAccountTypes.isEmpty()
2601 || (type != null && !visibleAccountTypes.contains(type))) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002602 return new Account[0];
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002603 } else if (visibleAccountTypes.contains(type)) {
2604 // Prune the list down to just the requested type.
2605 visibleAccountTypes = new ArrayList<>();
2606 visibleAccountTypes.add(type);
Simranjit Singh Kohlib77d8b62015-08-07 17:07:23 -07002607 } // else aggregate all the visible accounts (it won't matter if the
2608 // list is empty).
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002609
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002610 long identityToken = clearCallingIdentity();
2611 try {
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002612 return getAccountsInternal(
2613 userId,
2614 callingUid,
2615 callingPackage,
2616 visibleAccountTypes);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002617 } finally {
2618 restoreCallingIdentity(identityToken);
2619 }
2620 }
2621
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002622 private Account[] getAccountsInternal(
2623 int userId,
2624 int callingUid,
2625 String callingPackage,
2626 List<String> visibleAccountTypes) {
2627 UserAccounts accounts = getUserAccounts(userId);
2628 synchronized (accounts.cacheLock) {
2629 UserAccounts userAccounts = getUserAccounts(userId);
2630 ArrayList<Account> visibleAccounts = new ArrayList<>();
2631 for (String visibleType : visibleAccountTypes) {
2632 Account[] accountsForType = getAccountsFromCacheLocked(
2633 userAccounts, visibleType, callingUid, callingPackage);
2634 if (accountsForType != null) {
2635 visibleAccounts.addAll(Arrays.asList(accountsForType));
2636 }
2637 }
2638 Account[] result = new Account[visibleAccounts.size()];
2639 for (int i = 0; i < visibleAccounts.size(); i++) {
2640 result[i] = visibleAccounts.get(i);
2641 }
2642 return result;
2643 }
2644 }
2645
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002646 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -08002647 public boolean addSharedAccountAsUser(Account account, int userId) {
2648 userId = handleIncomingUser(userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002649 UserAccounts accounts = getUserAccounts(userId);
2650 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Amith Yamasani67df64b2012-12-14 12:09:36 -08002651 ContentValues values = new ContentValues();
2652 values.put(ACCOUNTS_NAME, account.name);
2653 values.put(ACCOUNTS_TYPE, account.type);
2654 db.delete(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2655 new String[] {account.name, account.type});
2656 long accountId = db.insert(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME, values);
2657 if (accountId < 0) {
2658 Log.w(TAG, "insertAccountIntoDatabase: " + account
2659 + ", skipping the DB insert failed");
2660 return false;
2661 }
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002662 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_SHARED_ACCOUNTS, accountId, accounts);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002663 return true;
2664 }
2665
2666 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002667 public boolean renameSharedAccountAsUser(Account account, String newName, int userId) {
2668 userId = handleIncomingUser(userId);
2669 UserAccounts accounts = getUserAccounts(userId);
2670 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002671 long sharedTableAccountId = getAccountIdFromSharedTable(db, account);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002672 final ContentValues values = new ContentValues();
2673 values.put(ACCOUNTS_NAME, newName);
2674 values.put(ACCOUNTS_PREVIOUS_NAME, account.name);
2675 int r = db.update(
2676 TABLE_SHARED_ACCOUNTS,
2677 values,
2678 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2679 new String[] { account.name, account.type });
2680 if (r > 0) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002681 int callingUid = getCallingUid();
2682 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_RENAME, TABLE_SHARED_ACCOUNTS,
2683 sharedTableAccountId, accounts, callingUid);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002684 // Recursively rename the account.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002685 renameAccountInternal(accounts, account, newName);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002686 }
2687 return r > 0;
2688 }
2689
2690 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -08002691 public boolean removeSharedAccountAsUser(Account account, int userId) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002692 return removeSharedAccountAsUser(account, userId, getCallingUid());
2693 }
2694
2695 private boolean removeSharedAccountAsUser(Account account, int userId, int callingUid) {
Amith Yamasani67df64b2012-12-14 12:09:36 -08002696 userId = handleIncomingUser(userId);
2697 UserAccounts accounts = getUserAccounts(userId);
2698 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002699 long sharedTableAccountId = getAccountIdFromSharedTable(db, account);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002700 int r = db.delete(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2701 new String[] {account.name, account.type});
2702 if (r > 0) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002703 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_REMOVE, TABLE_SHARED_ACCOUNTS,
2704 sharedTableAccountId, accounts, callingUid);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002705 removeAccountInternal(accounts, account);
2706 }
2707 return r > 0;
2708 }
2709
2710 @Override
2711 public Account[] getSharedAccountsAsUser(int userId) {
2712 userId = handleIncomingUser(userId);
2713 UserAccounts accounts = getUserAccounts(userId);
2714 ArrayList<Account> accountList = new ArrayList<Account>();
2715 Cursor cursor = null;
2716 try {
2717 cursor = accounts.openHelper.getReadableDatabase()
2718 .query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_NAME, ACCOUNTS_TYPE},
2719 null, null, null, null, null);
2720 if (cursor != null && cursor.moveToFirst()) {
2721 int nameIndex = cursor.getColumnIndex(ACCOUNTS_NAME);
2722 int typeIndex = cursor.getColumnIndex(ACCOUNTS_TYPE);
2723 do {
2724 accountList.add(new Account(cursor.getString(nameIndex),
2725 cursor.getString(typeIndex)));
2726 } while (cursor.moveToNext());
2727 }
2728 } finally {
2729 if (cursor != null) {
2730 cursor.close();
2731 }
2732 }
2733 Account[] accountArray = new Account[accountList.size()];
2734 accountList.toArray(accountArray);
2735 return accountArray;
2736 }
2737
2738 @Override
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002739 public Account[] getAccounts(String type) {
2740 return getAccountsAsUser(type, UserHandle.getCallingUserId());
2741 }
2742
Amith Yamasani27db4682013-03-30 17:07:47 -07002743 @Override
2744 public Account[] getAccountsForPackage(String packageName, int uid) {
2745 int callingUid = Binder.getCallingUid();
2746 if (!UserHandle.isSameApp(callingUid, Process.myUid())) {
2747 throw new SecurityException("getAccountsForPackage() called from unauthorized uid "
2748 + callingUid + " with uid=" + uid);
2749 }
2750 return getAccountsAsUser(null, UserHandle.getCallingUserId(), packageName, uid);
2751 }
2752
Amith Yamasani3b458ad2013-04-18 18:40:07 -07002753 @Override
2754 public Account[] getAccountsByTypeForPackage(String type, String packageName) {
Amith Yamasani3b458ad2013-04-18 18:40:07 -07002755 int packageUid = -1;
2756 try {
2757 packageUid = AppGlobals.getPackageManager().getPackageUid(
2758 packageName, UserHandle.getCallingUserId());
2759 } catch (RemoteException re) {
2760 Slog.e(TAG, "Couldn't determine the packageUid for " + packageName + re);
2761 return new Account[0];
2762 }
2763 return getAccountsAsUser(type, UserHandle.getCallingUserId(), packageName, packageUid);
2764 }
2765
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002766 @Override
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002767 public void getAccountsByFeatures(
2768 IAccountManagerResponse response,
2769 String type,
2770 String[] features) {
2771 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002772 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2773 Log.v(TAG, "getAccounts: accountType " + type
2774 + ", response " + response
2775 + ", features " + stringArrayToString(features)
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002776 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002777 + ", pid " + Binder.getCallingPid());
2778 }
Fred Quintana382601f2010-03-25 12:25:10 -07002779 if (response == null) throw new IllegalArgumentException("response is null");
2780 if (type == null) throw new IllegalArgumentException("accountType is null");
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002781 int userId = UserHandle.getCallingUserId();
2782
2783 List<String> visibleAccountTypes = getTypesVisibleToCaller(callingUid, userId);
2784 if (!visibleAccountTypes.contains(type)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002785 Bundle result = new Bundle();
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002786 // Need to return just the accounts that are from matching signatures.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002787 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, new Account[0]);
2788 try {
2789 response.onResult(result);
2790 } catch (RemoteException e) {
2791 Log.e(TAG, "Cannot respond to caller do to exception." , e);
2792 }
2793 return;
2794 }
Fred Quintana33269202009-04-20 16:05:10 -07002795 long identityToken = clearCallingIdentity();
2796 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002797 UserAccounts userAccounts = getUserAccounts(userId);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002798 if (features == null || features.length == 0) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002799 Account[] accounts;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002800 synchronized (userAccounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002801 accounts = getAccountsFromCacheLocked(userAccounts, type, callingUid, null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002802 }
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08002803 Bundle result = new Bundle();
2804 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, accounts);
2805 onResult(response, result);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002806 return;
2807 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00002808 new GetAccountsByTypeAndFeatureSession(
2809 userAccounts,
2810 response,
2811 type,
2812 features,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002813 callingUid).bind();
Fred Quintana33269202009-04-20 16:05:10 -07002814 } finally {
2815 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07002816 }
2817 }
2818
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002819 private long getAccountIdFromSharedTable(SQLiteDatabase db, Account account) {
2820 Cursor cursor = db.query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_ID},
2821 "name=? AND type=?", new String[]{account.name, account.type}, null, null, null);
2822 try {
2823 if (cursor.moveToNext()) {
2824 return cursor.getLong(0);
2825 }
2826 return -1;
2827 } finally {
2828 cursor.close();
2829 }
2830 }
2831
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002832 private long getAccountIdLocked(SQLiteDatabase db, Account account) {
Fred Quintana60307342009-03-24 22:48:12 -07002833 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_ID},
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002834 "name=? AND type=?", new String[]{account.name, account.type}, null, null, null);
Fred Quintana60307342009-03-24 22:48:12 -07002835 try {
2836 if (cursor.moveToNext()) {
2837 return cursor.getLong(0);
2838 }
2839 return -1;
2840 } finally {
2841 cursor.close();
2842 }
2843 }
2844
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002845 private long getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) {
Fred Quintana60307342009-03-24 22:48:12 -07002846 Cursor cursor = db.query(TABLE_EXTRAS, new String[]{EXTRAS_ID},
2847 EXTRAS_ACCOUNTS_ID + "=" + accountId + " AND " + EXTRAS_KEY + "=?",
2848 new String[]{key}, null, null, null);
2849 try {
2850 if (cursor.moveToNext()) {
2851 return cursor.getLong(0);
2852 }
2853 return -1;
2854 } finally {
2855 cursor.close();
2856 }
2857 }
2858
Fred Quintanaa698f422009-04-08 19:14:54 -07002859 private abstract class Session extends IAccountAuthenticatorResponse.Stub
Fred Quintanab839afc2009-10-14 15:57:28 -07002860 implements IBinder.DeathRecipient, ServiceConnection {
Fred Quintana60307342009-03-24 22:48:12 -07002861 IAccountManagerResponse mResponse;
2862 final String mAccountType;
Fred Quintanaa698f422009-04-08 19:14:54 -07002863 final boolean mExpectActivityLaunch;
2864 final long mCreationTime;
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002865 final String mAccountName;
2866 // Indicates if we need to add auth details(like last credential time)
2867 final boolean mAuthDetailsRequired;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002868 // If set, we need to update the last authenticated time. This is
2869 // currently
2870 // used on
2871 // successful confirming credentials.
2872 final boolean mUpdateLastAuthenticatedTime;
Fred Quintanaa698f422009-04-08 19:14:54 -07002873
Fred Quintana33269202009-04-20 16:05:10 -07002874 public int mNumResults = 0;
Fred Quintanaa698f422009-04-08 19:14:54 -07002875 private int mNumRequestContinued = 0;
2876 private int mNumErrors = 0;
2877
Fred Quintana60307342009-03-24 22:48:12 -07002878 IAccountAuthenticator mAuthenticator = null;
2879
Fred Quintana8570f742010-02-18 10:32:54 -08002880 private final boolean mStripAuthTokenFromResult;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002881 protected final UserAccounts mAccounts;
Fred Quintana8570f742010-02-18 10:32:54 -08002882
Amith Yamasani04e0d262012-02-14 11:50:53 -08002883 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002884 boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName,
2885 boolean authDetailsRequired) {
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002886 this(accounts, response, accountType, expectActivityLaunch, stripAuthTokenFromResult,
2887 accountName, authDetailsRequired, false /* updateLastAuthenticatedTime */);
2888 }
2889
2890 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType,
2891 boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName,
2892 boolean authDetailsRequired, boolean updateLastAuthenticatedTime) {
Fred Quintana60307342009-03-24 22:48:12 -07002893 super();
Amith Yamasani67df64b2012-12-14 12:09:36 -08002894 //if (response == null) throw new IllegalArgumentException("response is null");
Fred Quintana33269202009-04-20 16:05:10 -07002895 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Amith Yamasani04e0d262012-02-14 11:50:53 -08002896 mAccounts = accounts;
Fred Quintana8570f742010-02-18 10:32:54 -08002897 mStripAuthTokenFromResult = stripAuthTokenFromResult;
Fred Quintana60307342009-03-24 22:48:12 -07002898 mResponse = response;
2899 mAccountType = accountType;
Fred Quintanaa698f422009-04-08 19:14:54 -07002900 mExpectActivityLaunch = expectActivityLaunch;
2901 mCreationTime = SystemClock.elapsedRealtime();
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002902 mAccountName = accountName;
2903 mAuthDetailsRequired = authDetailsRequired;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002904 mUpdateLastAuthenticatedTime = updateLastAuthenticatedTime;
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002905
Fred Quintanaa698f422009-04-08 19:14:54 -07002906 synchronized (mSessions) {
2907 mSessions.put(toString(), this);
2908 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08002909 if (response != null) {
2910 try {
2911 response.asBinder().linkToDeath(this, 0 /* flags */);
2912 } catch (RemoteException e) {
2913 mResponse = null;
2914 binderDied();
2915 }
Fred Quintanaa698f422009-04-08 19:14:54 -07002916 }
Fred Quintana60307342009-03-24 22:48:12 -07002917 }
2918
Fred Quintanaa698f422009-04-08 19:14:54 -07002919 IAccountManagerResponse getResponseAndClose() {
Fred Quintana60307342009-03-24 22:48:12 -07002920 if (mResponse == null) {
2921 // this session has already been closed
2922 return null;
2923 }
Fred Quintana60307342009-03-24 22:48:12 -07002924 IAccountManagerResponse response = mResponse;
Fred Quintanaa698f422009-04-08 19:14:54 -07002925 close(); // this clears mResponse so we need to save the response before this call
Fred Quintana60307342009-03-24 22:48:12 -07002926 return response;
2927 }
2928
Fred Quintanaa698f422009-04-08 19:14:54 -07002929 private void close() {
2930 synchronized (mSessions) {
2931 if (mSessions.remove(toString()) == null) {
2932 // the session was already closed, so bail out now
2933 return;
2934 }
2935 }
2936 if (mResponse != null) {
2937 // stop listening for response deaths
2938 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */);
2939
2940 // clear this so that we don't accidentally send any further results
2941 mResponse = null;
2942 }
2943 cancelTimeout();
2944 unbind();
2945 }
2946
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002947 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002948 public void binderDied() {
2949 mResponse = null;
2950 close();
2951 }
2952
2953 protected String toDebugString() {
2954 return toDebugString(SystemClock.elapsedRealtime());
2955 }
2956
2957 protected String toDebugString(long now) {
2958 return "Session: expectLaunch " + mExpectActivityLaunch
2959 + ", connected " + (mAuthenticator != null)
2960 + ", stats (" + mNumResults + "/" + mNumRequestContinued
2961 + "/" + mNumErrors + ")"
2962 + ", lifetime " + ((now - mCreationTime) / 1000.0);
2963 }
2964
Fred Quintana60307342009-03-24 22:48:12 -07002965 void bind() {
Fred Quintanaa698f422009-04-08 19:14:54 -07002966 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2967 Log.v(TAG, "initiating bind to authenticator type " + mAccountType);
2968 }
Fred Quintanab839afc2009-10-14 15:57:28 -07002969 if (!bindToAuthenticator(mAccountType)) {
Fred Quintanaa698f422009-04-08 19:14:54 -07002970 Log.d(TAG, "bind attempt failed for " + toDebugString());
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002971 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "bind failure");
Fred Quintana60307342009-03-24 22:48:12 -07002972 }
2973 }
2974
2975 private void unbind() {
2976 if (mAuthenticator != null) {
2977 mAuthenticator = null;
Fred Quintanab839afc2009-10-14 15:57:28 -07002978 mContext.unbindService(this);
Fred Quintana60307342009-03-24 22:48:12 -07002979 }
2980 }
2981
Fred Quintana60307342009-03-24 22:48:12 -07002982 public void cancelTimeout() {
2983 mMessageHandler.removeMessages(MESSAGE_TIMED_OUT, this);
2984 }
2985
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002986 @Override
Fred Quintanab839afc2009-10-14 15:57:28 -07002987 public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintana60307342009-03-24 22:48:12 -07002988 mAuthenticator = IAccountAuthenticator.Stub.asInterface(service);
Fred Quintanaa698f422009-04-08 19:14:54 -07002989 try {
2990 run();
2991 } catch (RemoteException e) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002992 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
Fred Quintanaa698f422009-04-08 19:14:54 -07002993 "remote exception");
2994 }
Fred Quintana60307342009-03-24 22:48:12 -07002995 }
2996
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002997 @Override
Fred Quintanab839afc2009-10-14 15:57:28 -07002998 public void onServiceDisconnected(ComponentName name) {
Fred Quintanaa698f422009-04-08 19:14:54 -07002999 mAuthenticator = null;
3000 IAccountManagerResponse response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003001 if (response != null) {
Fred Quintana166466d2011-10-24 14:51:40 -07003002 try {
3003 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
3004 "disconnected");
3005 } catch (RemoteException e) {
3006 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3007 Log.v(TAG, "Session.onServiceDisconnected: "
3008 + "caught RemoteException while responding", e);
3009 }
3010 }
Fred Quintana60307342009-03-24 22:48:12 -07003011 }
3012 }
3013
Fred Quintanab839afc2009-10-14 15:57:28 -07003014 public abstract void run() throws RemoteException;
3015
Fred Quintana60307342009-03-24 22:48:12 -07003016 public void onTimedOut() {
Fred Quintanaa698f422009-04-08 19:14:54 -07003017 IAccountManagerResponse response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003018 if (response != null) {
Fred Quintana166466d2011-10-24 14:51:40 -07003019 try {
3020 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
3021 "timeout");
3022 } catch (RemoteException e) {
3023 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3024 Log.v(TAG, "Session.onTimedOut: caught RemoteException while responding",
3025 e);
3026 }
3027 }
Fred Quintana60307342009-03-24 22:48:12 -07003028 }
3029 }
3030
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003031 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07003032 public void onResult(Bundle result) {
3033 mNumResults++;
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003034 Intent intent = null;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003035 if (result != null) {
3036 boolean isSuccessfulConfirmCreds = result.getBoolean(
3037 AccountManager.KEY_BOOLEAN_RESULT, false);
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07003038 boolean isSuccessfulUpdateCredsOrAddAccount =
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003039 result.containsKey(AccountManager.KEY_ACCOUNT_NAME)
3040 && result.containsKey(AccountManager.KEY_ACCOUNT_TYPE);
Carlos Valdivia91979be2015-05-22 14:11:35 -07003041 // We should only update lastAuthenticated time, if
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003042 // mUpdateLastAuthenticatedTime is true and the confirmRequest
3043 // or updateRequest was successful
Carlos Valdivia91979be2015-05-22 14:11:35 -07003044 boolean needUpdate = mUpdateLastAuthenticatedTime
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07003045 && (isSuccessfulConfirmCreds || isSuccessfulUpdateCredsOrAddAccount);
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003046 if (needUpdate || mAuthDetailsRequired) {
3047 boolean accountPresent = isAccountPresentForCaller(mAccountName, mAccountType);
3048 if (needUpdate && accountPresent) {
3049 updateLastAuthenticatedTime(new Account(mAccountName, mAccountType));
3050 }
3051 if (mAuthDetailsRequired) {
3052 long lastAuthenticatedTime = -1;
3053 if (accountPresent) {
3054 lastAuthenticatedTime = DatabaseUtils.longForQuery(
3055 mAccounts.openHelper.getReadableDatabase(),
3056 "select " + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS
3057 + " from " +
3058 TABLE_ACCOUNTS + " WHERE " + ACCOUNTS_NAME + "=? AND "
3059 + ACCOUNTS_TYPE + "=?",
3060 new String[] {
3061 mAccountName, mAccountType
3062 });
3063 }
Simranjit Singh Kohli1663b442015-04-28 11:11:12 -07003064 result.putLong(AccountManager.KEY_LAST_AUTHENTICATED_TIME,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003065 lastAuthenticatedTime);
3066 }
3067 }
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003068 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003069 if (result != null
3070 && (intent = result.getParcelable(AccountManager.KEY_INTENT)) != null) {
3071 /*
3072 * The Authenticator API allows third party authenticators to
3073 * supply arbitrary intents to other apps that they can run,
3074 * this can be very bad when those apps are in the system like
3075 * the System Settings.
3076 */
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003077 int authenticatorUid = Binder.getCallingUid();
Carlos Valdivia416747a2013-10-14 17:22:42 -07003078 long bid = Binder.clearCallingIdentity();
3079 try {
3080 PackageManager pm = mContext.getPackageManager();
3081 ResolveInfo resolveInfo = pm.resolveActivityAsUser(intent, 0, mAccounts.userId);
3082 int targetUid = resolveInfo.activityInfo.applicationInfo.uid;
3083 if (PackageManager.SIGNATURE_MATCH !=
3084 pm.checkSignatures(authenticatorUid, targetUid)) {
3085 throw new SecurityException(
3086 "Activity to be started with KEY_INTENT must " +
3087 "share Authenticator's signatures");
3088 }
3089 } finally {
3090 Binder.restoreCallingIdentity(bid);
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003091 }
3092 }
3093 if (result != null
3094 && !TextUtils.isEmpty(result.getString(AccountManager.KEY_AUTHTOKEN))) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003095 String accountName = result.getString(AccountManager.KEY_ACCOUNT_NAME);
3096 String accountType = result.getString(AccountManager.KEY_ACCOUNT_TYPE);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003097 if (!TextUtils.isEmpty(accountName) && !TextUtils.isEmpty(accountType)) {
3098 Account account = new Account(accountName, accountType);
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003099 cancelNotification(getSigninRequiredNotificationId(mAccounts, account),
3100 new UserHandle(mAccounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003101 }
Fred Quintana60307342009-03-24 22:48:12 -07003102 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003103 IAccountManagerResponse response;
3104 if (mExpectActivityLaunch && result != null
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003105 && result.containsKey(AccountManager.KEY_INTENT)) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003106 response = mResponse;
3107 } else {
3108 response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003109 }
Fred Quintana60307342009-03-24 22:48:12 -07003110 if (response != null) {
3111 try {
Fred Quintanaa698f422009-04-08 19:14:54 -07003112 if (result == null) {
Fred Quintana56285a62010-12-02 14:20:51 -08003113 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3114 Log.v(TAG, getClass().getSimpleName()
3115 + " calling onError() on response " + response);
3116 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003117 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE,
Fred Quintanaa698f422009-04-08 19:14:54 -07003118 "null bundle returned");
3119 } else {
Fred Quintana8570f742010-02-18 10:32:54 -08003120 if (mStripAuthTokenFromResult) {
3121 result.remove(AccountManager.KEY_AUTHTOKEN);
3122 }
Fred Quintana56285a62010-12-02 14:20:51 -08003123 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3124 Log.v(TAG, getClass().getSimpleName()
3125 + " calling onResult() on response " + response);
3126 }
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003127 if ((result.getInt(AccountManager.KEY_ERROR_CODE, -1) > 0) &&
3128 (intent == null)) {
3129 // All AccountManager error codes are greater than 0
3130 response.onError(result.getInt(AccountManager.KEY_ERROR_CODE),
3131 result.getString(AccountManager.KEY_ERROR_MESSAGE));
3132 } else {
3133 response.onResult(result);
3134 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003135 }
Fred Quintana60307342009-03-24 22:48:12 -07003136 } catch (RemoteException e) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003137 // if the caller is dead then there is no one to care about remote exceptions
3138 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3139 Log.v(TAG, "failure while notifying response", e);
3140 }
Fred Quintana60307342009-03-24 22:48:12 -07003141 }
3142 }
3143 }
Fred Quintana60307342009-03-24 22:48:12 -07003144
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003145 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07003146 public void onRequestContinued() {
3147 mNumRequestContinued++;
Fred Quintana60307342009-03-24 22:48:12 -07003148 }
3149
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003150 @Override
Fred Quintana60307342009-03-24 22:48:12 -07003151 public void onError(int errorCode, String errorMessage) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003152 mNumErrors++;
Fred Quintanaa698f422009-04-08 19:14:54 -07003153 IAccountManagerResponse response = getResponseAndClose();
3154 if (response != null) {
3155 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Fred Quintana56285a62010-12-02 14:20:51 -08003156 Log.v(TAG, getClass().getSimpleName()
3157 + " calling onError() on response " + response);
Fred Quintanaa698f422009-04-08 19:14:54 -07003158 }
3159 try {
3160 response.onError(errorCode, errorMessage);
3161 } catch (RemoteException e) {
3162 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3163 Log.v(TAG, "Session.onError: caught RemoteException while responding", e);
3164 }
3165 }
3166 } else {
3167 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3168 Log.v(TAG, "Session.onError: already closed");
3169 }
Fred Quintana60307342009-03-24 22:48:12 -07003170 }
3171 }
Fred Quintanab839afc2009-10-14 15:57:28 -07003172
3173 /**
3174 * find the component name for the authenticator and initiate a bind
3175 * if no authenticator or the bind fails then return false, otherwise return true
3176 */
3177 private boolean bindToAuthenticator(String authenticatorType) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003178 final AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription> authenticatorInfo;
3179 authenticatorInfo = mAuthenticatorCache.getServiceInfo(
3180 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
Fred Quintanab839afc2009-10-14 15:57:28 -07003181 if (authenticatorInfo == null) {
3182 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3183 Log.v(TAG, "there is no authenticator for " + authenticatorType
3184 + ", bailing out");
3185 }
3186 return false;
3187 }
3188
3189 Intent intent = new Intent();
3190 intent.setAction(AccountManager.ACTION_AUTHENTICATOR_INTENT);
3191 intent.setComponent(authenticatorInfo.componentName);
3192 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3193 Log.v(TAG, "performing bindService to " + authenticatorInfo.componentName);
3194 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08003195 if (!mContext.bindServiceAsUser(intent, this, Context.BIND_AUTO_CREATE,
3196 new UserHandle(mAccounts.userId))) {
Fred Quintanab839afc2009-10-14 15:57:28 -07003197 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3198 Log.v(TAG, "bindService to " + authenticatorInfo.componentName + " failed");
3199 }
3200 return false;
3201 }
3202
3203
3204 return true;
3205 }
Fred Quintana60307342009-03-24 22:48:12 -07003206 }
3207
3208 private class MessageHandler extends Handler {
3209 MessageHandler(Looper looper) {
3210 super(looper);
3211 }
Costin Manolache3348f142009-09-29 18:58:36 -07003212
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003213 @Override
Fred Quintana60307342009-03-24 22:48:12 -07003214 public void handleMessage(Message msg) {
Fred Quintana60307342009-03-24 22:48:12 -07003215 switch (msg.what) {
3216 case MESSAGE_TIMED_OUT:
3217 Session session = (Session)msg.obj;
3218 session.onTimedOut();
3219 break;
3220
Amith Yamasani5be347b2013-03-31 17:44:31 -07003221 case MESSAGE_COPY_SHARED_ACCOUNT:
Esteban Talavera22dc3b72014-10-31 15:41:12 +00003222 copyAccountToUser(/*no response*/ null, (Account) msg.obj, msg.arg1, msg.arg2);
Amith Yamasani5be347b2013-03-31 17:44:31 -07003223 break;
3224
Fred Quintana60307342009-03-24 22:48:12 -07003225 default:
3226 throw new IllegalStateException("unhandled message: " + msg.what);
3227 }
3228 }
3229 }
3230
Amith Yamasani04e0d262012-02-14 11:50:53 -08003231 private static String getDatabaseName(int userId) {
3232 File systemDir = Environment.getSystemSecureDirectory();
Amith Yamasani61f57372012-08-31 12:12:28 -07003233 File databaseFile = new File(Environment.getUserSystemDirectory(userId), DATABASE_NAME);
Amith Yamasani04e0d262012-02-14 11:50:53 -08003234 if (userId == 0) {
Amith Yamasania23bb382012-04-11 15:32:07 -07003235 // Migrate old file, if it exists, to the new location.
3236 // Make sure the new file doesn't already exist. A dummy file could have been
3237 // accidentally created in the old location, causing the new one to become corrupted
3238 // as well.
Amith Yamasani04e0d262012-02-14 11:50:53 -08003239 File oldFile = new File(systemDir, DATABASE_NAME);
Amith Yamasania23bb382012-04-11 15:32:07 -07003240 if (oldFile.exists() && !databaseFile.exists()) {
Marc Blankc6b0f992012-03-18 19:16:41 -07003241 // Check for use directory; create if it doesn't exist, else renameTo will fail
Amith Yamasani61f57372012-08-31 12:12:28 -07003242 File userDir = Environment.getUserSystemDirectory(userId);
Marc Blankc6b0f992012-03-18 19:16:41 -07003243 if (!userDir.exists()) {
3244 if (!userDir.mkdirs()) {
3245 throw new IllegalStateException("User dir cannot be created: " + userDir);
3246 }
3247 }
3248 if (!oldFile.renameTo(databaseFile)) {
3249 throw new IllegalStateException("User dir cannot be migrated: " + databaseFile);
3250 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003251 }
Oscar Montemayora8529f62009-11-18 10:14:20 -08003252 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003253 return databaseFile.getPath();
Oscar Montemayora8529f62009-11-18 10:14:20 -08003254 }
3255
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003256 private static class DebugDbHelper{
3257 private DebugDbHelper() {
3258 }
3259
3260 private static String TABLE_DEBUG = "debug_table";
3261
3262 // Columns for the table
3263 private static String ACTION_TYPE = "action_type";
3264 private static String TIMESTAMP = "time";
3265 private static String CALLER_UID = "caller_uid";
3266 private static String TABLE_NAME = "table_name";
3267 private static String KEY = "primary_key";
3268
3269 // These actions correspond to the occurrence of real actions. Since
3270 // these are called by the authenticators, the uid associated will be
3271 // of the authenticator.
3272 private static String ACTION_SET_PASSWORD = "action_set_password";
3273 private static String ACTION_CLEAR_PASSWORD = "action_clear_password";
3274 private static String ACTION_ACCOUNT_ADD = "action_account_add";
3275 private static String ACTION_ACCOUNT_REMOVE = "action_account_remove";
3276 private static String ACTION_AUTHENTICATOR_REMOVE = "action_authenticator_remove";
3277 private static String ACTION_ACCOUNT_RENAME = "action_account_rename";
3278
3279 // These actions don't necessarily correspond to any action on
3280 // accountDb taking place. As an example, there might be a request for
3281 // addingAccount, which might not lead to addition of account on grounds
3282 // of bad authentication. We will still be logging it to keep track of
3283 // who called.
3284 private static String ACTION_CALLED_ACCOUNT_ADD = "action_called_account_add";
3285 private static String ACTION_CALLED_ACCOUNT_REMOVE = "action_called_account_remove";
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003286
3287 private static SimpleDateFormat dateFromat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
3288
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003289 private static void createDebugTable(SQLiteDatabase db) {
3290 db.execSQL("CREATE TABLE " + TABLE_DEBUG + " ( "
3291 + ACCOUNTS_ID + " INTEGER,"
3292 + ACTION_TYPE + " TEXT NOT NULL, "
3293 + TIMESTAMP + " DATETIME,"
3294 + CALLER_UID + " INTEGER NOT NULL,"
3295 + TABLE_NAME + " TEXT NOT NULL,"
3296 + KEY + " INTEGER PRIMARY KEY)");
3297 db.execSQL("CREATE INDEX timestamp_index ON " + TABLE_DEBUG + " (" + TIMESTAMP + ")");
3298 }
3299 }
3300
3301 private void logRecord(UserAccounts accounts, String action, String tableName) {
3302 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
3303 logRecord(db, action, tableName, -1, accounts);
3304 }
3305
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07003306 private void logRecordWithUid(UserAccounts accounts, String action, String tableName, int uid) {
3307 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
3308 logRecord(db, action, tableName, -1, accounts, uid);
3309 }
3310
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003311 /*
3312 * This function receives an opened writable database.
3313 */
3314 private void logRecord(SQLiteDatabase db, String action, String tableName, long accountId,
3315 UserAccounts userAccount) {
3316 logRecord(db, action, tableName, accountId, userAccount, getCallingUid());
3317 }
3318
3319 /*
3320 * This function receives an opened writable database.
3321 */
3322 private void logRecord(SQLiteDatabase db, String action, String tableName, long accountId,
3323 UserAccounts userAccount, int callingUid) {
3324 SQLiteStatement logStatement = userAccount.statementForLogging;
3325 logStatement.bindLong(1, accountId);
3326 logStatement.bindString(2, action);
3327 logStatement.bindString(3, DebugDbHelper.dateFromat.format(new Date()));
3328 logStatement.bindLong(4, callingUid);
3329 logStatement.bindString(5, tableName);
3330 logStatement.bindLong(6, userAccount.debugDbInsertionPoint);
3331 logStatement.execute();
3332 logStatement.clearBindings();
3333 userAccount.debugDbInsertionPoint = (userAccount.debugDbInsertionPoint + 1)
3334 % MAX_DEBUG_DB_SIZE;
3335 }
3336
3337 /*
3338 * This should only be called once to compile the sql statement for logging
3339 * and to find the insertion point.
3340 */
3341 private void initializeDebugDbSizeAndCompileSqlStatementForLogging(SQLiteDatabase db,
3342 UserAccounts userAccount) {
3343 // Initialize the count if not done earlier.
3344 int size = (int) getDebugTableRowCount(db);
3345 if (size >= MAX_DEBUG_DB_SIZE) {
3346 // Table is full, and we need to find the point where to insert.
3347 userAccount.debugDbInsertionPoint = (int) getDebugTableInsertionPoint(db);
3348 } else {
3349 userAccount.debugDbInsertionPoint = size;
3350 }
3351 compileSqlStatementForLogging(db, userAccount);
3352 }
3353
3354 private void compileSqlStatementForLogging(SQLiteDatabase db, UserAccounts userAccount) {
3355 String sql = "INSERT OR REPLACE INTO " + DebugDbHelper.TABLE_DEBUG
3356 + " VALUES (?,?,?,?,?,?)";
3357 userAccount.statementForLogging = db.compileStatement(sql);
3358 }
3359
3360 private long getDebugTableRowCount(SQLiteDatabase db) {
3361 String queryCountDebugDbRows = "SELECT COUNT(*) FROM " + DebugDbHelper.TABLE_DEBUG;
3362 return DatabaseUtils.longForQuery(db, queryCountDebugDbRows, null);
3363 }
3364
3365 /*
3366 * Finds the row key where the next insertion should take place. This should
3367 * be invoked only if the table has reached its full capacity.
3368 */
3369 private long getDebugTableInsertionPoint(SQLiteDatabase db) {
3370 // This query finds the smallest timestamp value (and if 2 records have
3371 // same timestamp, the choose the lower id).
3372 String queryCountDebugDbRows = new StringBuilder()
3373 .append("SELECT ").append(DebugDbHelper.KEY)
3374 .append(" FROM ").append(DebugDbHelper.TABLE_DEBUG)
3375 .append(" ORDER BY ")
3376 .append(DebugDbHelper.TIMESTAMP).append(",").append(DebugDbHelper.KEY)
3377 .append(" LIMIT 1")
3378 .toString();
3379 return DatabaseUtils.longForQuery(db, queryCountDebugDbRows, null);
3380 }
3381
Amith Yamasani04e0d262012-02-14 11:50:53 -08003382 static class DatabaseHelper extends SQLiteOpenHelper {
Oscar Montemayora8529f62009-11-18 10:14:20 -08003383
Amith Yamasani04e0d262012-02-14 11:50:53 -08003384 public DatabaseHelper(Context context, int userId) {
3385 super(context, AccountManagerService.getDatabaseName(userId), null, DATABASE_VERSION);
Fred Quintana60307342009-03-24 22:48:12 -07003386 }
3387
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003388 /**
3389 * This call needs to be made while the mCacheLock is held. The way to
3390 * ensure this is to get the lock any time a method is called ont the DatabaseHelper
3391 * @param db The database.
3392 */
Fred Quintana60307342009-03-24 22:48:12 -07003393 @Override
3394 public void onCreate(SQLiteDatabase db) {
3395 db.execSQL("CREATE TABLE " + TABLE_ACCOUNTS + " ( "
3396 + ACCOUNTS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3397 + ACCOUNTS_NAME + " TEXT NOT NULL, "
3398 + ACCOUNTS_TYPE + " TEXT NOT NULL, "
3399 + ACCOUNTS_PASSWORD + " TEXT, "
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003400 + ACCOUNTS_PREVIOUS_NAME + " TEXT, "
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003401 + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS + " INTEGER DEFAULT 0, "
Fred Quintana60307342009-03-24 22:48:12 -07003402 + "UNIQUE(" + ACCOUNTS_NAME + "," + ACCOUNTS_TYPE + "))");
3403
3404 db.execSQL("CREATE TABLE " + TABLE_AUTHTOKENS + " ( "
3405 + AUTHTOKENS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3406 + AUTHTOKENS_ACCOUNTS_ID + " INTEGER NOT NULL, "
3407 + AUTHTOKENS_TYPE + " TEXT NOT NULL, "
3408 + AUTHTOKENS_AUTHTOKEN + " TEXT, "
3409 + "UNIQUE (" + AUTHTOKENS_ACCOUNTS_ID + "," + AUTHTOKENS_TYPE + "))");
3410
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003411 createGrantsTable(db);
3412
Fred Quintana60307342009-03-24 22:48:12 -07003413 db.execSQL("CREATE TABLE " + TABLE_EXTRAS + " ( "
3414 + EXTRAS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3415 + EXTRAS_ACCOUNTS_ID + " INTEGER, "
3416 + EXTRAS_KEY + " TEXT NOT NULL, "
3417 + EXTRAS_VALUE + " TEXT, "
3418 + "UNIQUE(" + EXTRAS_ACCOUNTS_ID + "," + EXTRAS_KEY + "))");
3419
3420 db.execSQL("CREATE TABLE " + TABLE_META + " ( "
3421 + META_KEY + " TEXT PRIMARY KEY NOT NULL, "
3422 + META_VALUE + " TEXT)");
Fred Quintanaa698f422009-04-08 19:14:54 -07003423
Amith Yamasani67df64b2012-12-14 12:09:36 -08003424 createSharedAccountsTable(db);
3425
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003426 createAccountsDeletionTrigger(db);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003427
3428 DebugDbHelper.createDebugTable(db);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003429 }
3430
Amith Yamasani67df64b2012-12-14 12:09:36 -08003431 private void createSharedAccountsTable(SQLiteDatabase db) {
3432 db.execSQL("CREATE TABLE " + TABLE_SHARED_ACCOUNTS + " ( "
3433 + ACCOUNTS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3434 + ACCOUNTS_NAME + " TEXT NOT NULL, "
3435 + ACCOUNTS_TYPE + " TEXT NOT NULL, "
3436 + "UNIQUE(" + ACCOUNTS_NAME + "," + ACCOUNTS_TYPE + "))");
3437 }
3438
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003439 private void addLastSuccessfullAuthenticatedTimeColumn(SQLiteDatabase db) {
3440 db.execSQL("ALTER TABLE " + TABLE_ACCOUNTS + " ADD COLUMN "
3441 + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS + " DEFAULT 0");
3442 }
3443
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003444 private void addOldAccountNameColumn(SQLiteDatabase db) {
3445 db.execSQL("ALTER TABLE " + TABLE_ACCOUNTS + " ADD COLUMN " + ACCOUNTS_PREVIOUS_NAME);
3446 }
3447
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003448 private void addDebugTable(SQLiteDatabase db) {
3449 DebugDbHelper.createDebugTable(db);
3450 }
3451
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003452 private void createAccountsDeletionTrigger(SQLiteDatabase db) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003453 db.execSQL(""
3454 + " CREATE TRIGGER " + TABLE_ACCOUNTS + "Delete DELETE ON " + TABLE_ACCOUNTS
3455 + " BEGIN"
3456 + " DELETE FROM " + TABLE_AUTHTOKENS
3457 + " WHERE " + AUTHTOKENS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
3458 + " DELETE FROM " + TABLE_EXTRAS
3459 + " WHERE " + EXTRAS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003460 + " DELETE FROM " + TABLE_GRANTS
3461 + " WHERE " + GRANTS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
Fred Quintanaa698f422009-04-08 19:14:54 -07003462 + " END");
Fred Quintana60307342009-03-24 22:48:12 -07003463 }
3464
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003465 private void createGrantsTable(SQLiteDatabase db) {
3466 db.execSQL("CREATE TABLE " + TABLE_GRANTS + " ( "
3467 + GRANTS_ACCOUNTS_ID + " INTEGER NOT NULL, "
3468 + GRANTS_AUTH_TOKEN_TYPE + " STRING NOT NULL, "
3469 + GRANTS_GRANTEE_UID + " INTEGER NOT NULL, "
3470 + "UNIQUE (" + GRANTS_ACCOUNTS_ID + "," + GRANTS_AUTH_TOKEN_TYPE
3471 + "," + GRANTS_GRANTEE_UID + "))");
3472 }
3473
Fred Quintana60307342009-03-24 22:48:12 -07003474 @Override
3475 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003476 Log.e(TAG, "upgrade from version " + oldVersion + " to version " + newVersion);
Fred Quintana60307342009-03-24 22:48:12 -07003477
Fred Quintanaa698f422009-04-08 19:14:54 -07003478 if (oldVersion == 1) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003479 // no longer need to do anything since the work is done
3480 // when upgrading from version 2
3481 oldVersion++;
3482 }
3483
3484 if (oldVersion == 2) {
3485 createGrantsTable(db);
3486 db.execSQL("DROP TRIGGER " + TABLE_ACCOUNTS + "Delete");
3487 createAccountsDeletionTrigger(db);
Fred Quintanaa698f422009-04-08 19:14:54 -07003488 oldVersion++;
3489 }
Costin Manolache3348f142009-09-29 18:58:36 -07003490
3491 if (oldVersion == 3) {
3492 db.execSQL("UPDATE " + TABLE_ACCOUNTS + " SET " + ACCOUNTS_TYPE +
3493 " = 'com.google' WHERE " + ACCOUNTS_TYPE + " == 'com.google.GAIA'");
3494 oldVersion++;
3495 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08003496
3497 if (oldVersion == 4) {
3498 createSharedAccountsTable(db);
3499 oldVersion++;
3500 }
3501
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003502 if (oldVersion == 5) {
3503 addOldAccountNameColumn(db);
3504 oldVersion++;
3505 }
3506
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003507 if (oldVersion == 6) {
3508 addLastSuccessfullAuthenticatedTimeColumn(db);
3509 oldVersion++;
3510 }
3511
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003512 if (oldVersion == 7) {
3513 addDebugTable(db);
3514 oldVersion++;
3515 }
3516
Amith Yamasani67df64b2012-12-14 12:09:36 -08003517 if (oldVersion != newVersion) {
3518 Log.e(TAG, "failed to upgrade version " + oldVersion + " to version " + newVersion);
3519 }
Fred Quintana60307342009-03-24 22:48:12 -07003520 }
3521
3522 @Override
3523 public void onOpen(SQLiteDatabase db) {
3524 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "opened database " + DATABASE_NAME);
3525 }
3526 }
3527
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003528 public IBinder onBind(@SuppressWarnings("unused") Intent intent) {
Fred Quintana60307342009-03-24 22:48:12 -07003529 return asBinder();
3530 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003531
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003532 /**
3533 * Searches array of arguments for the specified string
3534 * @param args array of argument strings
3535 * @param value value to search for
3536 * @return true if the value is contained in the array
3537 */
3538 private static boolean scanArgs(String[] args, String value) {
3539 if (args != null) {
3540 for (String arg : args) {
3541 if (value.equals(arg)) {
3542 return true;
3543 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003544 }
3545 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003546 return false;
3547 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003548
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003549 @Override
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003550 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
Kenny Root3abd75b2011-09-29 11:00:41 -07003551 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3552 != PackageManager.PERMISSION_GRANTED) {
3553 fout.println("Permission Denial: can't dump AccountsManager from from pid="
3554 + Binder.getCallingPid() + ", uid=" + Binder.getCallingUid()
3555 + " without permission " + android.Manifest.permission.DUMP);
3556 return;
3557 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003558 final boolean isCheckinRequest = scanArgs(args, "--checkin") || scanArgs(args, "-c");
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003559 final IndentingPrintWriter ipw = new IndentingPrintWriter(fout, " ");
Kenny Root3abd75b2011-09-29 11:00:41 -07003560
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003561 final List<UserInfo> users = getUserManager().getUsers();
3562 for (UserInfo user : users) {
3563 ipw.println("User " + user + ":");
3564 ipw.increaseIndent();
3565 dumpUser(getUserAccounts(user.id), fd, ipw, args, isCheckinRequest);
3566 ipw.println();
3567 ipw.decreaseIndent();
Amith Yamasani04e0d262012-02-14 11:50:53 -08003568 }
3569 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003570
Amith Yamasani04e0d262012-02-14 11:50:53 -08003571 private void dumpUser(UserAccounts userAccounts, FileDescriptor fd, PrintWriter fout,
3572 String[] args, boolean isCheckinRequest) {
3573 synchronized (userAccounts.cacheLock) {
3574 final SQLiteDatabase db = userAccounts.openHelper.getReadableDatabase();
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003575
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003576 if (isCheckinRequest) {
3577 // This is a checkin request. *Only* upload the account types and the count of each.
3578 Cursor cursor = db.query(TABLE_ACCOUNTS, ACCOUNT_TYPE_COUNT_PROJECTION,
3579 null, null, ACCOUNTS_TYPE, null, null);
3580 try {
3581 while (cursor.moveToNext()) {
3582 // print type,count
3583 fout.println(cursor.getString(0) + "," + cursor.getString(1));
3584 }
3585 } finally {
3586 if (cursor != null) {
3587 cursor.close();
3588 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003589 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003590 } else {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003591 Account[] accounts = getAccountsFromCacheLocked(userAccounts, null /* type */,
Amith Yamasani27db4682013-03-30 17:07:47 -07003592 Process.myUid(), null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003593 fout.println("Accounts: " + accounts.length);
3594 for (Account account : accounts) {
3595 fout.println(" " + account);
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003596 }
Fred Quintana307da1a2010-01-21 14:24:20 -08003597
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003598 // Add debug information.
3599 fout.println();
3600 Cursor cursor = db.query(DebugDbHelper.TABLE_DEBUG, null,
3601 null, null, null, null, DebugDbHelper.TIMESTAMP);
3602 fout.println("AccountId, Action_Type, timestamp, UID, TableName, Key");
3603 fout.println("Accounts History");
3604 try {
3605 while (cursor.moveToNext()) {
3606 // print type,count
3607 fout.println(cursor.getString(0) + "," + cursor.getString(1) + "," +
3608 cursor.getString(2) + "," + cursor.getString(3) + ","
3609 + cursor.getString(4) + "," + cursor.getString(5));
3610 }
3611 } finally {
3612 cursor.close();
3613 }
3614
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003615 fout.println();
3616 synchronized (mSessions) {
3617 final long now = SystemClock.elapsedRealtime();
3618 fout.println("Active Sessions: " + mSessions.size());
3619 for (Session session : mSessions.values()) {
3620 fout.println(" " + session.toDebugString(now));
3621 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003622 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003623
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003624 fout.println();
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003625 mAuthenticatorCache.dump(fd, fout, args, userAccounts.userId);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003626 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003627 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003628 }
3629
Amith Yamasani04e0d262012-02-14 11:50:53 -08003630 private void doNotification(UserAccounts accounts, Account account, CharSequence message,
Dianne Hackborn41203752012-08-31 14:05:51 -07003631 Intent intent, int userId) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003632 long identityToken = clearCallingIdentity();
3633 try {
3634 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3635 Log.v(TAG, "doNotification: " + message + " intent:" + intent);
3636 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003637
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003638 if (intent.getComponent() != null &&
3639 GrantCredentialsPermissionActivity.class.getName().equals(
3640 intent.getComponent().getClassName())) {
Dianne Hackborn41203752012-08-31 14:05:51 -07003641 createNoCredentialsPermissionNotification(account, intent, userId);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003642 } else {
Amith Yamasani04e0d262012-02-14 11:50:53 -08003643 final Integer notificationId = getSigninRequiredNotificationId(accounts, account);
Fred Quintana33f889a2009-09-14 17:31:26 -07003644 intent.addCategory(String.valueOf(notificationId));
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003645 UserHandle user = new UserHandle(userId);
Kenny Guy07ad8dc2014-09-01 20:56:12 +01003646 Context contextForUser = getContextForUser(user);
Fred Quintana33f889a2009-09-14 17:31:26 -07003647 final String notificationTitleFormat =
Kenny Guy07ad8dc2014-09-01 20:56:12 +01003648 contextForUser.getText(R.string.notification_title).toString();
Chris Wren1ce4b6d2015-06-11 10:19:43 -04003649 Notification n = new Notification.Builder(contextForUser)
3650 .setWhen(0)
3651 .setSmallIcon(android.R.drawable.stat_sys_warning)
3652 .setColor(contextForUser.getColor(
3653 com.android.internal.R.color.system_notification_accent_color))
3654 .setContentTitle(String.format(notificationTitleFormat, account.name))
3655 .setContentText(message)
3656 .setContentIntent(PendingIntent.getActivityAsUser(
3657 mContext, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT,
3658 null, user))
3659 .build();
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003660 installNotification(notificationId, n, user);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003661 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003662 } finally {
3663 restoreCallingIdentity(identityToken);
3664 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003665 }
3666
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003667 protected void installNotification(final int notificationId, final Notification n,
3668 UserHandle user) {
Fred Quintana56285a62010-12-02 14:20:51 -08003669 ((NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE))
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003670 .notifyAsUser(null, notificationId, n, user);
Fred Quintana56285a62010-12-02 14:20:51 -08003671 }
3672
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003673 protected void cancelNotification(int id, UserHandle user) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003674 long identityToken = clearCallingIdentity();
3675 try {
3676 ((NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE))
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003677 .cancelAsUser(null, id, user);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003678 } finally {
3679 restoreCallingIdentity(identityToken);
3680 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003681 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003682
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003683 private boolean isPermitted(int callingUid, String... permissions) {
Fred Quintanab38eb142010-02-24 13:40:54 -08003684 for (String perm : permissions) {
3685 if (mContext.checkCallingOrSelfPermission(perm) == PackageManager.PERMISSION_GRANTED) {
3686 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003687 Log.v(TAG, " caller uid " + callingUid + " has " + perm);
Fred Quintanab38eb142010-02-24 13:40:54 -08003688 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003689 return true;
Fred Quintanab38eb142010-02-24 13:40:54 -08003690 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003691 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003692 return false;
3693 }
3694
3695 /** Succeeds if any of the specified permissions are granted. */
3696 private void checkBinderPermission(String... permissions) {
3697 final int callingUid = Binder.getCallingUid();
3698 if (isPermitted(callingUid, permissions)) {
3699 String msg = String.format(
3700 "caller uid %s lacks any of %s",
3701 callingUid,
3702 TextUtils.join(",", permissions));
3703 Log.w(TAG, " " + msg);
3704 throw new SecurityException(msg);
3705 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003706 }
3707
Amith Yamasani67df64b2012-12-14 12:09:36 -08003708 private int handleIncomingUser(int userId) {
3709 try {
3710 return ActivityManagerNative.getDefault().handleIncomingUser(
3711 Binder.getCallingPid(), Binder.getCallingUid(), userId, true, true, "", null);
3712 } catch (RemoteException re) {
3713 // Shouldn't happen, local.
3714 }
3715 return userId;
3716 }
3717
Christopher Tateccbf84f2013-05-08 15:25:41 -07003718 private boolean isPrivileged(int callingUid) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003719 final int callingUserId = UserHandle.getUserId(callingUid);
3720
3721 final PackageManager userPackageManager;
3722 try {
3723 userPackageManager = mContext.createPackageContextAsUser(
3724 "android", 0, new UserHandle(callingUserId)).getPackageManager();
3725 } catch (NameNotFoundException e) {
3726 return false;
3727 }
3728
3729 String[] packages = userPackageManager.getPackagesForUid(callingUid);
Fred Quintana7be59642009-08-24 18:29:25 -07003730 for (String name : packages) {
3731 try {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003732 PackageInfo packageInfo = userPackageManager.getPackageInfo(name, 0 /* flags */);
Fred Quintana56285a62010-12-02 14:20:51 -08003733 if (packageInfo != null
Alex Klyubinb9f8a522015-02-03 11:12:59 -08003734 && (packageInfo.applicationInfo.privateFlags
3735 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
Fred Quintana7be59642009-08-24 18:29:25 -07003736 return true;
3737 }
3738 } catch (PackageManager.NameNotFoundException e) {
3739 return false;
3740 }
3741 }
3742 return false;
3743 }
3744
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003745 private boolean permissionIsGranted(
3746 Account account, String authTokenType, int callerUid, int userId) {
Christopher Tateccbf84f2013-05-08 15:25:41 -07003747 final boolean isPrivileged = isPrivileged(callerUid);
Fred Quintana31957f12009-10-21 13:43:10 -07003748 final boolean fromAuthenticator = account != null
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003749 && isAccountManagedByCaller(account.type, callerUid, userId);
Fred Quintana31957f12009-10-21 13:43:10 -07003750 final boolean hasExplicitGrants = account != null
Amith Yamasani04e0d262012-02-14 11:50:53 -08003751 && hasExplicitlyGrantedPermission(account, authTokenType, callerUid);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003752 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3753 Log.v(TAG, "checkGrantsOrCallingUidAgainstAuthenticator: caller uid "
Fred Quintana56285a62010-12-02 14:20:51 -08003754 + callerUid + ", " + account
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003755 + ": is authenticator? " + fromAuthenticator
3756 + ", has explicit permission? " + hasExplicitGrants);
3757 }
Christopher Tateccbf84f2013-05-08 15:25:41 -07003758 return fromAuthenticator || hasExplicitGrants || isPrivileged;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003759 }
3760
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003761 private boolean isAccountVisibleToCaller(String accountType, int callingUid, int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003762 if (accountType == null) {
3763 return false;
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003764 } else {
3765 return getTypesVisibleToCaller(callingUid, userId).contains(accountType);
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003766 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003767 }
3768
3769 private boolean isAccountManagedByCaller(String accountType, int callingUid, int userId) {
3770 if (accountType == null) {
3771 return false;
3772 } else {
3773 return getTypesManagedByCaller(callingUid, userId).contains(accountType);
3774 }
3775 }
3776
3777 private List<String> getTypesVisibleToCaller(int callingUid, int userId) {
3778 boolean isPermitted =
3779 isPermitted(callingUid, Manifest.permission.GET_ACCOUNTS,
3780 Manifest.permission.GET_ACCOUNTS_PRIVILEGED);
3781 Log.i(TAG, String.format("getTypesVisibleToCaller: isPermitted? %s", isPermitted));
3782 return getTypesForCaller(callingUid, userId, isPermitted);
3783 }
3784
3785 private List<String> getTypesManagedByCaller(int callingUid, int userId) {
3786 return getTypesForCaller(callingUid, userId, false);
3787 }
3788
3789 private List<String> getTypesForCaller(
3790 int callingUid, int userId, boolean isOtherwisePermitted) {
3791 List<String> managedAccountTypes = new ArrayList<>();
Simranjit Singh Kohlib77d8b62015-08-07 17:07:23 -07003792 long identityToken = Binder.clearCallingIdentity();
3793 Collection<RegisteredServicesCache.ServiceInfo<AuthenticatorDescription>> serviceInfos;
3794 try {
3795 serviceInfos = mAuthenticatorCache.getAllServices(userId);
3796 } finally {
3797 Binder.restoreCallingIdentity(identityToken);
3798 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003799 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> serviceInfo :
Simranjit Singh Kohlib77d8b62015-08-07 17:07:23 -07003800 serviceInfos) {
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003801 final int sigChk = mPackageManager.checkSignatures(serviceInfo.uid, callingUid);
3802 if (isOtherwisePermitted || sigChk == PackageManager.SIGNATURE_MATCH) {
3803 managedAccountTypes.add(serviceInfo.type.type);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003804 }
3805 }
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003806 return managedAccountTypes;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003807 }
3808
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003809 private boolean isAccountPresentForCaller(String accountName, String accountType) {
3810 if (getUserAccountsForCaller().accountCache.containsKey(accountType)) {
3811 for (Account account : getUserAccountsForCaller().accountCache.get(accountType)) {
3812 if (account.name.equals(accountName)) {
3813 return true;
3814 }
3815 }
3816 }
3817 return false;
3818 }
3819
Amith Yamasani04e0d262012-02-14 11:50:53 -08003820 private boolean hasExplicitlyGrantedPermission(Account account, String authTokenType,
3821 int callerUid) {
Amith Yamasani27db4682013-03-30 17:07:47 -07003822 if (callerUid == Process.SYSTEM_UID) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003823 return true;
3824 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003825 UserAccounts accounts = getUserAccountsForCaller();
3826 synchronized (accounts.cacheLock) {
3827 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
3828 String[] args = { String.valueOf(callerUid), authTokenType,
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003829 account.name, account.type};
3830 final boolean permissionGranted =
3831 DatabaseUtils.longForQuery(db, COUNT_OF_MATCHING_GRANTS, args) != 0;
3832 if (!permissionGranted && ActivityManager.isRunningInTestHarness()) {
3833 // TODO: Skip this check when running automated tests. Replace this
3834 // with a more general solution.
3835 Log.d(TAG, "no credentials permission for usage of " + account + ", "
Amith Yamasani04e0d262012-02-14 11:50:53 -08003836 + authTokenType + " by uid " + callerUid
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003837 + " but ignoring since device is in test harness.");
3838 return true;
3839 }
3840 return permissionGranted;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003841 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003842 }
3843
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003844 private boolean isSystemUid(int callingUid) {
3845 String[] packages = null;
3846 long ident = Binder.clearCallingIdentity();
3847 try {
3848 packages = mPackageManager.getPackagesForUid(callingUid);
3849 } finally {
3850 Binder.restoreCallingIdentity(ident);
Carlos Valdiviaffb46022015-06-08 19:07:54 -07003851 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003852 if (packages != null) {
3853 for (String name : packages) {
3854 try {
3855 PackageInfo packageInfo = mPackageManager.getPackageInfo(name, 0 /* flags */);
3856 if (packageInfo != null
3857 && (packageInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM)
3858 != 0) {
3859 return true;
3860 }
3861 } catch (PackageManager.NameNotFoundException e) {
3862 Log.w(TAG, String.format("Could not find package [%s]", name), e);
3863 }
3864 }
3865 } else {
3866 Log.w(TAG, "No known packages with uid " + callingUid);
Carlos Valdiviaffb46022015-06-08 19:07:54 -07003867 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003868 return false;
Carlos Valdiviadcddc472015-06-11 20:04:04 +00003869 }
3870
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003871 /** Succeeds if any of the specified permissions are granted. */
3872 private void checkReadAccountsPermitted(
3873 int callingUid,
Ian Pedowitz6cc066d2015-08-05 14:23:43 +00003874 String accountType,
3875 int userId) {
3876 if (!isAccountVisibleToCaller(accountType, callingUid, userId)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003877 String msg = String.format(
3878 "caller uid %s cannot access %s accounts",
3879 callingUid,
3880 accountType);
3881 Log.w(TAG, " " + msg);
3882 throw new SecurityException(msg);
3883 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003884 }
3885
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003886 private boolean canUserModifyAccounts(int userId) {
3887 if (getUserManager().getUserRestrictions(new UserHandle(userId))
3888 .getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS)) {
3889 return false;
Amith Yamasanie4cf7342012-12-17 11:12:09 -08003890 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003891 return true;
3892 }
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003893
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003894 private boolean canUserModifyAccountsForType(int userId, String accountType) {
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003895 DevicePolicyManager dpm = (DevicePolicyManager) mContext
3896 .getSystemService(Context.DEVICE_POLICY_SERVICE);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003897 String[] typesArray = dpm.getAccountTypesWithManagementDisabledAsUser(userId);
Adili Muguro4e68b652014-07-25 16:42:39 +02003898 if (typesArray == null) {
3899 return true;
3900 }
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003901 for (String forbiddenType : typesArray) {
3902 if (forbiddenType.equals(accountType)) {
3903 return false;
3904 }
3905 }
Amith Yamasanie4cf7342012-12-17 11:12:09 -08003906 return true;
3907 }
3908
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003909 @Override
Fred Quintanad9640ec2012-05-23 12:37:00 -07003910 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value)
3911 throws RemoteException {
3912 final int callingUid = getCallingUid();
3913
Amith Yamasani27db4682013-03-30 17:07:47 -07003914 if (callingUid != Process.SYSTEM_UID) {
Fred Quintanad9640ec2012-05-23 12:37:00 -07003915 throw new SecurityException();
3916 }
3917
3918 if (value) {
3919 grantAppPermission(account, authTokenType, uid);
3920 } else {
3921 revokeAppPermission(account, authTokenType, uid);
3922 }
3923 }
3924
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003925 /**
3926 * Allow callers with the given uid permission to get credentials for account/authTokenType.
3927 * <p>
3928 * Although this is public it can only be accessed via the AccountManagerService object
3929 * which is in the system. This means we don't need to protect it with permissions.
3930 * @hide
3931 */
Fred Quintanad9640ec2012-05-23 12:37:00 -07003932 private void grantAppPermission(Account account, String authTokenType, int uid) {
Fred Quintana382601f2010-03-25 12:25:10 -07003933 if (account == null || authTokenType == null) {
3934 Log.e(TAG, "grantAppPermission: called with invalid arguments", new Exception());
Fred Quintana31957f12009-10-21 13:43:10 -07003935 return;
3936 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003937 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08003938 synchronized (accounts.cacheLock) {
3939 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003940 db.beginTransaction();
3941 try {
3942 long accountId = getAccountIdLocked(db, account);
3943 if (accountId >= 0) {
3944 ContentValues values = new ContentValues();
3945 values.put(GRANTS_ACCOUNTS_ID, accountId);
3946 values.put(GRANTS_AUTH_TOKEN_TYPE, authTokenType);
3947 values.put(GRANTS_GRANTEE_UID, uid);
3948 db.insert(TABLE_GRANTS, GRANTS_ACCOUNTS_ID, values);
3949 db.setTransactionSuccessful();
3950 }
3951 } finally {
3952 db.endTransaction();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003953 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003954 cancelNotification(getCredentialPermissionNotificationId(account, authTokenType, uid),
3955 new UserHandle(accounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003956 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003957 }
3958
3959 /**
3960 * Don't allow callers with the given uid permission to get credentials for
3961 * account/authTokenType.
3962 * <p>
3963 * Although this is public it can only be accessed via the AccountManagerService object
3964 * which is in the system. This means we don't need to protect it with permissions.
3965 * @hide
3966 */
Fred Quintanad9640ec2012-05-23 12:37:00 -07003967 private void revokeAppPermission(Account account, String authTokenType, int uid) {
Fred Quintana382601f2010-03-25 12:25:10 -07003968 if (account == null || authTokenType == null) {
3969 Log.e(TAG, "revokeAppPermission: called with invalid arguments", new Exception());
Fred Quintana31957f12009-10-21 13:43:10 -07003970 return;
3971 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003972 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08003973 synchronized (accounts.cacheLock) {
3974 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003975 db.beginTransaction();
3976 try {
3977 long accountId = getAccountIdLocked(db, account);
3978 if (accountId >= 0) {
3979 db.delete(TABLE_GRANTS,
3980 GRANTS_ACCOUNTS_ID + "=? AND " + GRANTS_AUTH_TOKEN_TYPE + "=? AND "
3981 + GRANTS_GRANTEE_UID + "=?",
3982 new String[]{String.valueOf(accountId), authTokenType,
3983 String.valueOf(uid)});
3984 db.setTransactionSuccessful();
3985 }
3986 } finally {
3987 db.endTransaction();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003988 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003989 cancelNotification(getCredentialPermissionNotificationId(account, authTokenType, uid),
3990 new UserHandle(accounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003991 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003992 }
Fred Quintana56285a62010-12-02 14:20:51 -08003993
3994 static final private String stringArrayToString(String[] value) {
3995 return value != null ? ("[" + TextUtils.join(",", value) + "]") : null;
3996 }
3997
Amith Yamasani04e0d262012-02-14 11:50:53 -08003998 private void removeAccountFromCacheLocked(UserAccounts accounts, Account account) {
3999 final Account[] oldAccountsForType = accounts.accountCache.get(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004000 if (oldAccountsForType != null) {
4001 ArrayList<Account> newAccountsList = new ArrayList<Account>();
4002 for (Account curAccount : oldAccountsForType) {
4003 if (!curAccount.equals(account)) {
4004 newAccountsList.add(curAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004005 }
4006 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004007 if (newAccountsList.isEmpty()) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08004008 accounts.accountCache.remove(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004009 } else {
4010 Account[] newAccountsForType = new Account[newAccountsList.size()];
4011 newAccountsForType = newAccountsList.toArray(newAccountsForType);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004012 accounts.accountCache.put(account.type, newAccountsForType);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004013 }
Fred Quintana56285a62010-12-02 14:20:51 -08004014 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08004015 accounts.userDataCache.remove(account);
4016 accounts.authTokenCache.remove(account);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07004017 accounts.previousNameCache.remove(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004018 }
4019
4020 /**
4021 * This assumes that the caller has already checked that the account is not already present.
4022 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08004023 private void insertAccountIntoCacheLocked(UserAccounts accounts, Account account) {
4024 Account[] accountsForType = accounts.accountCache.get(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004025 int oldLength = (accountsForType != null) ? accountsForType.length : 0;
4026 Account[] newAccountsForType = new Account[oldLength + 1];
4027 if (accountsForType != null) {
4028 System.arraycopy(accountsForType, 0, newAccountsForType, 0, oldLength);
Fred Quintana56285a62010-12-02 14:20:51 -08004029 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004030 newAccountsForType[oldLength] = account;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004031 accounts.accountCache.put(account.type, newAccountsForType);
Fred Quintana56285a62010-12-02 14:20:51 -08004032 }
4033
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004034 private Account[] filterSharedAccounts(UserAccounts userAccounts, Account[] unfiltered,
Amith Yamasani27db4682013-03-30 17:07:47 -07004035 int callingUid, String callingPackage) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004036 if (getUserManager() == null || userAccounts == null || userAccounts.userId < 0
Amith Yamasani27db4682013-03-30 17:07:47 -07004037 || callingUid == Process.myUid()) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004038 return unfiltered;
4039 }
Amith Yamasani0c19bf52013-10-03 10:34:58 -07004040 UserInfo user = mUserManager.getUserInfo(userAccounts.userId);
4041 if (user != null && user.isRestricted()) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004042 String[] packages = mPackageManager.getPackagesForUid(callingUid);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004043 // If any of the packages is a white listed package, return the full set,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004044 // otherwise return non-shared accounts only.
4045 // This might be a temporary way to specify a whitelist
4046 String whiteList = mContext.getResources().getString(
4047 com.android.internal.R.string.config_appsAuthorizedForSharedAccounts);
4048 for (String packageName : packages) {
4049 if (whiteList.contains(";" + packageName + ";")) {
4050 return unfiltered;
4051 }
4052 }
4053 ArrayList<Account> allowed = new ArrayList<Account>();
4054 Account[] sharedAccounts = getSharedAccountsAsUser(userAccounts.userId);
4055 if (sharedAccounts == null || sharedAccounts.length == 0) return unfiltered;
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004056 String requiredAccountType = "";
4057 try {
Amith Yamasanie3423092013-05-22 19:41:45 -07004058 // If there's an explicit callingPackage specified, check if that package
4059 // opted in to see restricted accounts.
4060 if (callingPackage != null) {
4061 PackageInfo pi = mPackageManager.getPackageInfo(callingPackage, 0);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004062 if (pi != null && pi.restrictedAccountType != null) {
4063 requiredAccountType = pi.restrictedAccountType;
Amith Yamasanie3423092013-05-22 19:41:45 -07004064 }
4065 } else {
4066 // Otherwise check if the callingUid has a package that has opted in
4067 for (String packageName : packages) {
4068 PackageInfo pi = mPackageManager.getPackageInfo(packageName, 0);
4069 if (pi != null && pi.restrictedAccountType != null) {
4070 requiredAccountType = pi.restrictedAccountType;
Amith Yamasani27db4682013-03-30 17:07:47 -07004071 break;
4072 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004073 }
4074 }
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004075 } catch (NameNotFoundException nnfe) {
4076 }
4077 for (Account account : unfiltered) {
4078 if (account.type.equals(requiredAccountType)) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004079 allowed.add(account);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004080 } else {
4081 boolean found = false;
4082 for (Account shared : sharedAccounts) {
4083 if (shared.equals(account)) {
4084 found = true;
4085 break;
4086 }
4087 }
4088 if (!found) {
4089 allowed.add(account);
4090 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004091 }
4092 }
4093 Account[] filtered = new Account[allowed.size()];
4094 allowed.toArray(filtered);
4095 return filtered;
4096 } else {
4097 return unfiltered;
4098 }
4099 }
4100
Amith Yamasani27db4682013-03-30 17:07:47 -07004101 /*
4102 * packageName can be null. If not null, it should be used to filter out restricted accounts
4103 * that the package is not allowed to access.
4104 */
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004105 protected Account[] getAccountsFromCacheLocked(UserAccounts userAccounts, String accountType,
Amith Yamasani27db4682013-03-30 17:07:47 -07004106 int callingUid, String callingPackage) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004107 if (accountType != null) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08004108 final Account[] accounts = userAccounts.accountCache.get(accountType);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004109 if (accounts == null) {
4110 return EMPTY_ACCOUNT_ARRAY;
Fred Quintana56285a62010-12-02 14:20:51 -08004111 } else {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004112 return filterSharedAccounts(userAccounts, Arrays.copyOf(accounts, accounts.length),
Amith Yamasani27db4682013-03-30 17:07:47 -07004113 callingUid, callingPackage);
Fred Quintana56285a62010-12-02 14:20:51 -08004114 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004115 } else {
4116 int totalLength = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004117 for (Account[] accounts : userAccounts.accountCache.values()) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004118 totalLength += accounts.length;
4119 }
4120 if (totalLength == 0) {
4121 return EMPTY_ACCOUNT_ARRAY;
4122 }
4123 Account[] accounts = new Account[totalLength];
4124 totalLength = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004125 for (Account[] accountsOfType : userAccounts.accountCache.values()) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004126 System.arraycopy(accountsOfType, 0, accounts, totalLength,
4127 accountsOfType.length);
4128 totalLength += accountsOfType.length;
4129 }
Amith Yamasani27db4682013-03-30 17:07:47 -07004130 return filterSharedAccounts(userAccounts, accounts, callingUid, callingPackage);
Fred Quintana56285a62010-12-02 14:20:51 -08004131 }
4132 }
4133
Amith Yamasani04e0d262012-02-14 11:50:53 -08004134 protected void writeUserDataIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db,
4135 Account account, String key, String value) {
4136 HashMap<String, String> userDataForAccount = accounts.userDataCache.get(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004137 if (userDataForAccount == null) {
4138 userDataForAccount = readUserDataForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004139 accounts.userDataCache.put(account, userDataForAccount);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004140 }
4141 if (value == null) {
4142 userDataForAccount.remove(key);
4143 } else {
4144 userDataForAccount.put(key, value);
Fred Quintana56285a62010-12-02 14:20:51 -08004145 }
4146 }
4147
Carlos Valdivia91979be2015-05-22 14:11:35 -07004148 protected String readCachedTokenInternal(
4149 UserAccounts accounts,
4150 Account account,
4151 String tokenType,
4152 String callingPackage,
4153 byte[] pkgSigDigest) {
4154 synchronized (accounts.cacheLock) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07004155 return accounts.accountTokenCaches.get(
4156 account, tokenType, callingPackage, pkgSigDigest);
Carlos Valdivia91979be2015-05-22 14:11:35 -07004157 }
4158 }
4159
Amith Yamasani04e0d262012-02-14 11:50:53 -08004160 protected void writeAuthTokenIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db,
4161 Account account, String key, String value) {
4162 HashMap<String, String> authTokensForAccount = accounts.authTokenCache.get(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004163 if (authTokensForAccount == null) {
4164 authTokensForAccount = readAuthTokensForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004165 accounts.authTokenCache.put(account, authTokensForAccount);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004166 }
4167 if (value == null) {
4168 authTokensForAccount.remove(key);
4169 } else {
4170 authTokensForAccount.put(key, value);
Fred Quintana56285a62010-12-02 14:20:51 -08004171 }
4172 }
4173
Amith Yamasani04e0d262012-02-14 11:50:53 -08004174 protected String readAuthTokenInternal(UserAccounts accounts, Account account,
4175 String authTokenType) {
4176 synchronized (accounts.cacheLock) {
4177 HashMap<String, String> authTokensForAccount = accounts.authTokenCache.get(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004178 if (authTokensForAccount == null) {
4179 // need to populate the cache for this account
Amith Yamasani04e0d262012-02-14 11:50:53 -08004180 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004181 authTokensForAccount = readAuthTokensForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004182 accounts.authTokenCache.put(account, authTokensForAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004183 }
4184 return authTokensForAccount.get(authTokenType);
4185 }
4186 }
4187
Amith Yamasani04e0d262012-02-14 11:50:53 -08004188 protected String readUserDataInternal(UserAccounts accounts, Account account, String key) {
4189 synchronized (accounts.cacheLock) {
4190 HashMap<String, String> userDataForAccount = accounts.userDataCache.get(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004191 if (userDataForAccount == null) {
4192 // need to populate the cache for this account
Amith Yamasani04e0d262012-02-14 11:50:53 -08004193 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004194 userDataForAccount = readUserDataForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004195 accounts.userDataCache.put(account, userDataForAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004196 }
4197 return userDataForAccount.get(key);
4198 }
4199 }
4200
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004201 protected HashMap<String, String> readUserDataForAccountFromDatabaseLocked(
4202 final SQLiteDatabase db, Account account) {
Fred Quintana56285a62010-12-02 14:20:51 -08004203 HashMap<String, String> userDataForAccount = new HashMap<String, String>();
Fred Quintana56285a62010-12-02 14:20:51 -08004204 Cursor cursor = db.query(TABLE_EXTRAS,
4205 COLUMNS_EXTRAS_KEY_AND_VALUE,
4206 SELECTION_USERDATA_BY_ACCOUNT,
4207 new String[]{account.name, account.type},
4208 null, null, null);
4209 try {
4210 while (cursor.moveToNext()) {
4211 final String tmpkey = cursor.getString(0);
4212 final String value = cursor.getString(1);
4213 userDataForAccount.put(tmpkey, value);
4214 }
4215 } finally {
4216 cursor.close();
4217 }
4218 return userDataForAccount;
4219 }
4220
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004221 protected HashMap<String, String> readAuthTokensForAccountFromDatabaseLocked(
4222 final SQLiteDatabase db, Account account) {
Fred Quintana56285a62010-12-02 14:20:51 -08004223 HashMap<String, String> authTokensForAccount = new HashMap<String, String>();
Fred Quintana56285a62010-12-02 14:20:51 -08004224 Cursor cursor = db.query(TABLE_AUTHTOKENS,
4225 COLUMNS_AUTHTOKENS_TYPE_AND_AUTHTOKEN,
4226 SELECTION_AUTHTOKENS_BY_ACCOUNT,
4227 new String[]{account.name, account.type},
4228 null, null, null);
4229 try {
4230 while (cursor.moveToNext()) {
4231 final String type = cursor.getString(0);
4232 final String authToken = cursor.getString(1);
4233 authTokensForAccount.put(type, authToken);
4234 }
4235 } finally {
4236 cursor.close();
4237 }
4238 return authTokensForAccount;
4239 }
Kenny Guy07ad8dc2014-09-01 20:56:12 +01004240
4241 private Context getContextForUser(UserHandle user) {
4242 try {
4243 return mContext.createPackageContextAsUser(mContext.getPackageName(), 0, user);
4244 } catch (NameNotFoundException e) {
4245 // Default to mContext, not finding the package system is running as is unlikely.
4246 return mContext;
4247 }
4248 }
Fred Quintana60307342009-03-24 22:48:12 -07004249}