blob: 83e8db06d6f14d51dde971cd1006a3dca67aa865 [file] [log] [blame]
Fred Quintana60307342009-03-24 22:48:12 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jeff Sharkey7a96c392012-11-15 14:01:46 -080017package com.android.server.accounts;
Fred Quintana60307342009-03-24 22:48:12 -070018
Doug Zongker885cfc232009-10-21 16:52:44 -070019import android.Manifest;
Carlos Valdivia91979be2015-05-22 14:11:35 -070020import android.accounts.AbstractAccountAuthenticator;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080021import android.accounts.Account;
22import android.accounts.AccountAndUser;
23import android.accounts.AccountAuthenticatorResponse;
24import android.accounts.AccountManager;
25import android.accounts.AuthenticatorDescription;
Amith Yamasani23c8b962013-04-10 13:37:18 -070026import android.accounts.CantAddAccountActivity;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080027import android.accounts.GrantCredentialsPermissionActivity;
28import android.accounts.IAccountAuthenticator;
29import android.accounts.IAccountAuthenticatorResponse;
30import android.accounts.IAccountManager;
31import android.accounts.IAccountManagerResponse;
Brett Chabot3b4fcbc2011-01-09 13:41:02 -080032import android.app.ActivityManager;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070033import android.app.ActivityManagerNative;
Amith Yamasani3b458ad2013-04-18 18:40:07 -070034import android.app.AppGlobals;
Doug Zongker885cfc232009-10-21 16:52:44 -070035import android.app.Notification;
36import android.app.NotificationManager;
37import android.app.PendingIntent;
Sander Alewijnseda1350f2014-05-08 16:59:42 +010038import android.app.admin.DevicePolicyManager;
Fred Quintanaa698f422009-04-08 19:14:54 -070039import android.content.BroadcastReceiver;
Doug Zongker885cfc232009-10-21 16:52:44 -070040import android.content.ComponentName;
Fred Quintanaa698f422009-04-08 19:14:54 -070041import android.content.ContentValues;
42import android.content.Context;
43import android.content.Intent;
44import android.content.IntentFilter;
Fred Quintanab839afc2009-10-14 15:57:28 -070045import android.content.ServiceConnection;
Doug Zongker885cfc232009-10-21 16:52:44 -070046import android.content.pm.ApplicationInfo;
47import android.content.pm.PackageInfo;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070048import android.content.pm.PackageManager;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070049import android.content.pm.PackageManager.NameNotFoundException;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070050import android.content.pm.RegisteredServicesCache;
Fred Quintana3ecd5f42009-09-17 12:42:35 -070051import android.content.pm.RegisteredServicesCacheListener;
Carlos Valdivia5bab9da2013-09-29 05:11:56 -070052import android.content.pm.ResolveInfo;
Carlos Valdivia91979be2015-05-22 14:11:35 -070053import android.content.pm.Signature;
Jeff Sharkey6eb96202012-10-10 13:13:54 -070054import android.content.pm.UserInfo;
Fred Quintana60307342009-03-24 22:48:12 -070055import android.database.Cursor;
56import android.database.DatabaseUtils;
Fred Quintanaa698f422009-04-08 19:14:54 -070057import android.database.sqlite.SQLiteDatabase;
58import android.database.sqlite.SQLiteOpenHelper;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -070059import android.database.sqlite.SQLiteStatement;
Doug Zongker885cfc232009-10-21 16:52:44 -070060import android.os.Binder;
Fred Quintanaa698f422009-04-08 19:14:54 -070061import android.os.Bundle;
Oscar Montemayora8529f62009-11-18 10:14:20 -080062import android.os.Environment;
Fred Quintanaa698f422009-04-08 19:14:54 -070063import android.os.Handler;
Fred Quintanaa698f422009-04-08 19:14:54 -070064import android.os.IBinder;
65import android.os.Looper;
66import android.os.Message;
Dianne Hackborn164371f2013-10-01 19:10:13 -070067import android.os.Parcel;
Amith Yamasani27db4682013-03-30 17:07:47 -070068import android.os.Process;
Fred Quintanaa698f422009-04-08 19:14:54 -070069import android.os.RemoteException;
70import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070071import android.os.UserHandle;
Amith Yamasani258848d2012-08-10 17:06:33 -070072import android.os.UserManager;
Fred Quintanaa698f422009-04-08 19:14:54 -070073import android.text.TextUtils;
74import android.util.Log;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070075import android.util.Pair;
Jeff Sharkey6eb96202012-10-10 13:13:54 -070076import android.util.Slog;
Amith Yamasani04e0d262012-02-14 11:50:53 -080077import android.util.SparseArray;
Fred Quintana60307342009-03-24 22:48:12 -070078
Costin Manolacheb61e8fb2011-09-08 11:26:09 -070079import com.android.internal.R;
Amith Yamasani67df64b2012-12-14 12:09:36 -080080import com.android.internal.util.ArrayUtils;
Amith Yamasani04e0d262012-02-14 11:50:53 -080081import com.android.internal.util.IndentingPrintWriter;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070082import com.android.server.FgThread;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070083import com.google.android.collect.Lists;
84import com.google.android.collect.Sets;
Costin Manolacheb61e8fb2011-09-08 11:26:09 -070085
Oscar Montemayora8529f62009-11-18 10:14:20 -080086import java.io.File;
Fred Quintanaa698f422009-04-08 19:14:54 -070087import java.io.FileDescriptor;
88import java.io.PrintWriter;
Carlos Valdivia91979be2015-05-22 14:11:35 -070089import java.security.MessageDigest;
90import java.security.NoSuchAlgorithmException;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -070091import java.text.SimpleDateFormat;
Fred Quintanaa698f422009-04-08 19:14:54 -070092import java.util.ArrayList;
Fred Quintana56285a62010-12-02 14:20:51 -080093import java.util.Arrays;
Fred Quintanaa698f422009-04-08 19:14:54 -070094import java.util.Collection;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -070095import java.util.Date;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070096import java.util.HashMap;
Jeff Sharkey6ab72d72012-10-08 16:44:37 -070097import java.util.HashSet;
Fred Quintana56285a62010-12-02 14:20:51 -080098import java.util.LinkedHashMap;
Jeff Sharkey6eb96202012-10-10 13:13:54 -070099import java.util.List;
Andy McFadden2f362292012-01-20 14:43:38 -0800100import java.util.Map;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700101import java.util.concurrent.atomic.AtomicInteger;
102import java.util.concurrent.atomic.AtomicReference;
Fred Quintana60307342009-03-24 22:48:12 -0700103
Fred Quintana60307342009-03-24 22:48:12 -0700104/**
105 * A system service that provides account, password, and authtoken management for all
106 * accounts on the device. Some of these calls are implemented with the help of the corresponding
107 * {@link IAccountAuthenticator} services. This service is not accessed by users directly,
108 * instead one uses an instance of {@link AccountManager}, which can be accessed as follows:
Brian Carlstrom46703b02011-04-06 15:41:29 -0700109 * AccountManager accountManager = AccountManager.get(context);
Fred Quintana33269202009-04-20 16:05:10 -0700110 * @hide
Fred Quintana60307342009-03-24 22:48:12 -0700111 */
Fred Quintana3ecd5f42009-09-17 12:42:35 -0700112public class AccountManagerService
113 extends IAccountManager.Stub
Fred Quintana5ebbb4a2009-11-09 15:42:20 -0800114 implements RegisteredServicesCacheListener<AuthenticatorDescription> {
Fred Quintana60307342009-03-24 22:48:12 -0700115 private static final String TAG = "AccountManagerService";
116
Fred Quintana60307342009-03-24 22:48:12 -0700117 private static final String DATABASE_NAME = "accounts.db";
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700118 private static final int DATABASE_VERSION = 8;
119
120 private static final int MAX_DEBUG_DB_SIZE = 64;
Fred Quintana60307342009-03-24 22:48:12 -0700121
122 private final Context mContext;
123
Fred Quintana56285a62010-12-02 14:20:51 -0800124 private final PackageManager mPackageManager;
Amith Yamasani258848d2012-08-10 17:06:33 -0700125 private UserManager mUserManager;
Fred Quintana56285a62010-12-02 14:20:51 -0800126
Fred Quintana60307342009-03-24 22:48:12 -0700127 private final MessageHandler mMessageHandler;
128
129 // Messages that can be sent on mHandler
130 private static final int MESSAGE_TIMED_OUT = 3;
Amith Yamasani5be347b2013-03-31 17:44:31 -0700131 private static final int MESSAGE_COPY_SHARED_ACCOUNT = 4;
Fred Quintana60307342009-03-24 22:48:12 -0700132
Fred Quintana56285a62010-12-02 14:20:51 -0800133 private final IAccountAuthenticatorCache mAuthenticatorCache;
Fred Quintana60307342009-03-24 22:48:12 -0700134
135 private static final String TABLE_ACCOUNTS = "accounts";
136 private static final String ACCOUNTS_ID = "_id";
137 private static final String ACCOUNTS_NAME = "name";
138 private static final String ACCOUNTS_TYPE = "type";
Jason Parks1cd7d0e2009-09-28 14:48:34 -0700139 private static final String ACCOUNTS_TYPE_COUNT = "count(type)";
Fred Quintana60307342009-03-24 22:48:12 -0700140 private static final String ACCOUNTS_PASSWORD = "password";
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700141 private static final String ACCOUNTS_PREVIOUS_NAME = "previous_name";
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800142 private static final String ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS =
143 "last_password_entry_time_millis_epoch";
Fred Quintana60307342009-03-24 22:48:12 -0700144
145 private static final String TABLE_AUTHTOKENS = "authtokens";
146 private static final String AUTHTOKENS_ID = "_id";
147 private static final String AUTHTOKENS_ACCOUNTS_ID = "accounts_id";
148 private static final String AUTHTOKENS_TYPE = "type";
149 private static final String AUTHTOKENS_AUTHTOKEN = "authtoken";
150
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700151 private static final String TABLE_GRANTS = "grants";
152 private static final String GRANTS_ACCOUNTS_ID = "accounts_id";
153 private static final String GRANTS_AUTH_TOKEN_TYPE = "auth_token_type";
154 private static final String GRANTS_GRANTEE_UID = "uid";
155
Fred Quintana60307342009-03-24 22:48:12 -0700156 private static final String TABLE_EXTRAS = "extras";
157 private static final String EXTRAS_ID = "_id";
158 private static final String EXTRAS_ACCOUNTS_ID = "accounts_id";
159 private static final String EXTRAS_KEY = "key";
160 private static final String EXTRAS_VALUE = "value";
161
162 private static final String TABLE_META = "meta";
163 private static final String META_KEY = "key";
164 private static final String META_VALUE = "value";
165
Amith Yamasani67df64b2012-12-14 12:09:36 -0800166 private static final String TABLE_SHARED_ACCOUNTS = "shared_accounts";
167
Jason Parks1cd7d0e2009-09-28 14:48:34 -0700168 private static final String[] ACCOUNT_TYPE_COUNT_PROJECTION =
169 new String[] { ACCOUNTS_TYPE, ACCOUNTS_TYPE_COUNT};
Fred Quintana7be59642009-08-24 18:29:25 -0700170 private static final Intent ACCOUNTS_CHANGED_INTENT;
Carlos Valdivia91979be2015-05-22 14:11:35 -0700171 static {
172 ACCOUNTS_CHANGED_INTENT = new Intent(AccountManager.LOGIN_ACCOUNTS_CHANGED_ACTION);
173 ACCOUNTS_CHANGED_INTENT.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
174 }
Fred Quintanaa698f422009-04-08 19:14:54 -0700175
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700176 private static final String COUNT_OF_MATCHING_GRANTS = ""
177 + "SELECT COUNT(*) FROM " + TABLE_GRANTS + ", " + TABLE_ACCOUNTS
178 + " WHERE " + GRANTS_ACCOUNTS_ID + "=" + ACCOUNTS_ID
179 + " AND " + GRANTS_GRANTEE_UID + "=?"
180 + " AND " + GRANTS_AUTH_TOKEN_TYPE + "=?"
181 + " AND " + ACCOUNTS_NAME + "=?"
182 + " AND " + ACCOUNTS_TYPE + "=?";
183
Fred Quintana56285a62010-12-02 14:20:51 -0800184 private static final String SELECTION_AUTHTOKENS_BY_ACCOUNT =
185 AUTHTOKENS_ACCOUNTS_ID + "=(select _id FROM accounts WHERE name=? AND type=?)";
Carlos Valdivia91979be2015-05-22 14:11:35 -0700186
Fred Quintana56285a62010-12-02 14:20:51 -0800187 private static final String[] COLUMNS_AUTHTOKENS_TYPE_AND_AUTHTOKEN = {AUTHTOKENS_TYPE,
188 AUTHTOKENS_AUTHTOKEN};
189
190 private static final String SELECTION_USERDATA_BY_ACCOUNT =
191 EXTRAS_ACCOUNTS_ID + "=(select _id FROM accounts WHERE name=? AND type=?)";
192 private static final String[] COLUMNS_EXTRAS_KEY_AND_VALUE = {EXTRAS_KEY, EXTRAS_VALUE};
193
Fred Quintanaa698f422009-04-08 19:14:54 -0700194 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700195 private final AtomicInteger mNotificationIds = new AtomicInteger(1);
196
Amith Yamasani04e0d262012-02-14 11:50:53 -0800197 static class UserAccounts {
198 private final int userId;
199 private final DatabaseHelper openHelper;
200 private final HashMap<Pair<Pair<Account, String>, Integer>, Integer>
201 credentialsPermissionNotificationIds =
202 new HashMap<Pair<Pair<Account, String>, Integer>, Integer>();
203 private final HashMap<Account, Integer> signinRequiredNotificationIds =
204 new HashMap<Account, Integer>();
205 private final Object cacheLock = new Object();
206 /** protected by the {@link #cacheLock} */
Amith Yamasanib483a992012-05-22 13:14:25 -0700207 private final HashMap<String, Account[]> accountCache =
208 new LinkedHashMap<String, Account[]>();
Amith Yamasani04e0d262012-02-14 11:50:53 -0800209 /** protected by the {@link #cacheLock} */
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800210 private final HashMap<Account, HashMap<String, String>> userDataCache =
Amith Yamasani04e0d262012-02-14 11:50:53 -0800211 new HashMap<Account, HashMap<String, String>>();
212 /** protected by the {@link #cacheLock} */
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800213 private final HashMap<Account, HashMap<String, String>> authTokenCache =
Amith Yamasani04e0d262012-02-14 11:50:53 -0800214 new HashMap<Account, HashMap<String, String>>();
Carlos Valdivia91979be2015-05-22 14:11:35 -0700215
216 /** protected by the {@link #cacheLock} */
Carlos Valdiviac37ee222015-06-17 20:17:37 -0700217 private final TokenCache accountTokenCaches = new TokenCache();
Carlos Valdivia91979be2015-05-22 14:11:35 -0700218
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -0700219 /**
220 * protected by the {@link #cacheLock}
221 *
222 * Caches the previous names associated with an account. Previous names
223 * should be cached because we expect that when an Account is renamed,
224 * many clients will receive a LOGIN_ACCOUNTS_CHANGED broadcast and
225 * want to know if the accounts they care about have been renamed.
226 *
227 * The previous names are wrapped in an {@link AtomicReference} so that
228 * we can distinguish between those accounts with no previous names and
229 * those whose previous names haven't been cached (yet).
230 */
231 private final HashMap<Account, AtomicReference<String>> previousNameCache =
232 new HashMap<Account, AtomicReference<String>>();
Amith Yamasani04e0d262012-02-14 11:50:53 -0800233
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700234 private int debugDbInsertionPoint = -1;
235 private SQLiteStatement statementForLogging;
236
Amith Yamasani04e0d262012-02-14 11:50:53 -0800237 UserAccounts(Context context, int userId) {
238 this.userId = userId;
239 synchronized (cacheLock) {
240 openHelper = new DatabaseHelper(context, userId);
241 }
242 }
243 }
244
245 private final SparseArray<UserAccounts> mUsers = new SparseArray<UserAccounts>();
246
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700247 private static AtomicReference<AccountManagerService> sThis =
248 new AtomicReference<AccountManagerService>();
Fred Quintana31957f12009-10-21 13:43:10 -0700249 private static final Account[] EMPTY_ACCOUNT_ARRAY = new Account[]{};
Fred Quintana7be59642009-08-24 18:29:25 -0700250
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700251 /**
252 * This should only be called by system code. One should only call this after the service
253 * has started.
254 * @return a reference to the AccountManagerService instance
255 * @hide
256 */
257 public static AccountManagerService getSingleton() {
258 return sThis.get();
259 }
Fred Quintana60307342009-03-24 22:48:12 -0700260
Fred Quintana56285a62010-12-02 14:20:51 -0800261 public AccountManagerService(Context context) {
262 this(context, context.getPackageManager(), new AccountAuthenticatorCache(context));
Fred Quintana60307342009-03-24 22:48:12 -0700263 }
264
Fred Quintana56285a62010-12-02 14:20:51 -0800265 public AccountManagerService(Context context, PackageManager packageManager,
266 IAccountAuthenticatorCache authenticatorCache) {
Fred Quintana60307342009-03-24 22:48:12 -0700267 mContext = context;
Fred Quintana56285a62010-12-02 14:20:51 -0800268 mPackageManager = packageManager;
Fred Quintana60307342009-03-24 22:48:12 -0700269
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700270 mMessageHandler = new MessageHandler(FgThread.get().getLooper());
Fred Quintana60307342009-03-24 22:48:12 -0700271
Fred Quintana56285a62010-12-02 14:20:51 -0800272 mAuthenticatorCache = authenticatorCache;
Fred Quintana5ebbb4a2009-11-09 15:42:20 -0800273 mAuthenticatorCache.setListener(this, null /* Handler */);
Fred Quintana60307342009-03-24 22:48:12 -0700274
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700275 sThis.set(this);
Fred Quintanaafa92b82009-12-01 16:27:03 -0800276
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800277 IntentFilter intentFilter = new IntentFilter();
278 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
279 intentFilter.addDataScheme("package");
280 mContext.registerReceiver(new BroadcastReceiver() {
281 @Override
282 public void onReceive(Context context1, Intent intent) {
Carlos Valdivia23f58262014-09-05 10:52:41 -0700283 // Don't delete accounts when updating a authenticator's
284 // package.
285 if (!intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
286 purgeOldGrantsAll();
287 }
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800288 }
289 }, intentFilter);
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800290
Amith Yamasani13593602012-03-22 16:16:17 -0700291 IntentFilter userFilter = new IntentFilter();
292 userFilter.addAction(Intent.ACTION_USER_REMOVED);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800293 userFilter.addAction(Intent.ACTION_USER_STARTED);
294 mContext.registerReceiverAsUser(new BroadcastReceiver() {
Amith Yamasani13593602012-03-22 16:16:17 -0700295 @Override
296 public void onReceive(Context context, Intent intent) {
Amith Yamasani67df64b2012-12-14 12:09:36 -0800297 String action = intent.getAction();
298 if (Intent.ACTION_USER_REMOVED.equals(action)) {
299 onUserRemoved(intent);
300 } else if (Intent.ACTION_USER_STARTED.equals(action)) {
301 onUserStarted(intent);
302 }
Amith Yamasani13593602012-03-22 16:16:17 -0700303 }
Amith Yamasani67df64b2012-12-14 12:09:36 -0800304 }, UserHandle.ALL, userFilter, null, null);
Fred Quintanaafa92b82009-12-01 16:27:03 -0800305 }
306
Dianne Hackborn164371f2013-10-01 19:10:13 -0700307 @Override
308 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
309 throws RemoteException {
310 try {
311 return super.onTransact(code, data, reply, flags);
312 } catch (RuntimeException e) {
313 // The account manager only throws security exceptions, so let's
314 // log all others.
315 if (!(e instanceof SecurityException)) {
316 Slog.wtf(TAG, "Account Manager Crash", e);
317 }
318 throw e;
319 }
320 }
321
Kenny Root26ff6622012-07-30 12:58:03 -0700322 public void systemReady() {
Kenny Root26ff6622012-07-30 12:58:03 -0700323 }
324
Amith Yamasani258848d2012-08-10 17:06:33 -0700325 private UserManager getUserManager() {
326 if (mUserManager == null) {
Amith Yamasani27db4682013-03-30 17:07:47 -0700327 mUserManager = UserManager.get(mContext);
Amith Yamasani258848d2012-08-10 17:06:33 -0700328 }
329 return mUserManager;
330 }
331
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700332 /* Caller should lock mUsers */
333 private UserAccounts initUserLocked(int userId) {
334 UserAccounts accounts = mUsers.get(userId);
335 if (accounts == null) {
336 accounts = new UserAccounts(mContext, userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700337 initializeDebugDbSizeAndCompileSqlStatementForLogging(
338 accounts.openHelper.getWritableDatabase(), accounts);
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700339 mUsers.append(userId, accounts);
340 purgeOldGrants(accounts);
341 validateAccountsInternal(accounts, true /* invalidateAuthenticatorCache */);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800342 }
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700343 return accounts;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800344 }
345
346 private void purgeOldGrantsAll() {
347 synchronized (mUsers) {
348 for (int i = 0; i < mUsers.size(); i++) {
349 purgeOldGrants(mUsers.valueAt(i));
350 }
351 }
352 }
353
354 private void purgeOldGrants(UserAccounts accounts) {
355 synchronized (accounts.cacheLock) {
356 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanac1a4e5d2011-02-25 10:44:38 -0800357 final Cursor cursor = db.query(TABLE_GRANTS,
358 new String[]{GRANTS_GRANTEE_UID},
359 null, null, GRANTS_GRANTEE_UID, null, null);
360 try {
361 while (cursor.moveToNext()) {
362 final int uid = cursor.getInt(0);
363 final boolean packageExists = mPackageManager.getPackagesForUid(uid) != null;
364 if (packageExists) {
365 continue;
366 }
367 Log.d(TAG, "deleting grants for UID " + uid
368 + " because its package is no longer installed");
369 db.delete(TABLE_GRANTS, GRANTS_GRANTEE_UID + "=?",
370 new String[]{Integer.toString(uid)});
371 }
372 } finally {
373 cursor.close();
374 }
375 }
376 }
377
Jeff Sharkey6eb96202012-10-10 13:13:54 -0700378 /**
379 * Validate internal set of accounts against installed authenticators for
380 * given user. Clears cached authenticators before validating.
381 */
382 public void validateAccounts(int userId) {
383 final UserAccounts accounts = getUserAccounts(userId);
384
385 // Invalidate user-specific cache to make sure we catch any
386 // removed authenticators.
387 validateAccountsInternal(accounts, true /* invalidateAuthenticatorCache */);
388 }
389
390 /**
391 * Validate internal set of accounts against installed authenticators for
392 * given user. Clear cached authenticators before validating when requested.
393 */
394 private void validateAccountsInternal(
395 UserAccounts accounts, boolean invalidateAuthenticatorCache) {
396 if (invalidateAuthenticatorCache) {
397 mAuthenticatorCache.invalidateCache(accounts.userId);
398 }
399
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700400 final HashSet<AuthenticatorDescription> knownAuth = Sets.newHashSet();
401 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> service :
402 mAuthenticatorCache.getAllServices(accounts.userId)) {
403 knownAuth.add(service.type);
404 }
405
Amith Yamasani04e0d262012-02-14 11:50:53 -0800406 synchronized (accounts.cacheLock) {
407 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800408 boolean accountDeleted = false;
409 Cursor cursor = db.query(TABLE_ACCOUNTS,
410 new String[]{ACCOUNTS_ID, ACCOUNTS_TYPE, ACCOUNTS_NAME},
Marvin Paul48fcd4e2014-12-01 18:26:07 -0800411 null, null, null, null, ACCOUNTS_ID);
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800412 try {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800413 accounts.accountCache.clear();
Fred Quintana56285a62010-12-02 14:20:51 -0800414 final HashMap<String, ArrayList<String>> accountNamesByType =
Amith Yamasanib483a992012-05-22 13:14:25 -0700415 new LinkedHashMap<String, ArrayList<String>>();
Fred Quintana56285a62010-12-02 14:20:51 -0800416 while (cursor.moveToNext()) {
417 final long accountId = cursor.getLong(0);
418 final String accountType = cursor.getString(1);
419 final String accountName = cursor.getString(2);
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700420
421 if (!knownAuth.contains(AuthenticatorDescription.newKey(accountType))) {
Jeff Sharkey6eb96202012-10-10 13:13:54 -0700422 Slog.w(TAG, "deleting account " + accountName + " because type "
Fred Quintana56285a62010-12-02 14:20:51 -0800423 + accountType + " no longer has a registered authenticator");
424 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
425 accountDeleted = true;
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -0700426
427 logRecord(db, DebugDbHelper.ACTION_AUTHENTICATOR_REMOVE, TABLE_ACCOUNTS,
428 accountId, accounts);
429
Fred Quintana56285a62010-12-02 14:20:51 -0800430 final Account account = new Account(accountName, accountType);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800431 accounts.userDataCache.remove(account);
432 accounts.authTokenCache.remove(account);
Carlos Valdivia91979be2015-05-22 14:11:35 -0700433 accounts.accountTokenCaches.remove(account);
Fred Quintana56285a62010-12-02 14:20:51 -0800434 } else {
435 ArrayList<String> accountNames = accountNamesByType.get(accountType);
436 if (accountNames == null) {
437 accountNames = new ArrayList<String>();
438 accountNamesByType.put(accountType, accountNames);
439 }
440 accountNames.add(accountName);
441 }
442 }
Andy McFadden2f362292012-01-20 14:43:38 -0800443 for (Map.Entry<String, ArrayList<String>> cur
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800444 : accountNamesByType.entrySet()) {
Fred Quintana56285a62010-12-02 14:20:51 -0800445 final String accountType = cur.getKey();
446 final ArrayList<String> accountNames = cur.getValue();
447 final Account[] accountsForType = new Account[accountNames.size()];
448 int i = 0;
449 for (String accountName : accountNames) {
450 accountsForType[i] = new Account(accountName, accountType);
451 ++i;
452 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800453 accounts.accountCache.put(accountType, accountsForType);
Fred Quintanaafa92b82009-12-01 16:27:03 -0800454 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800455 } finally {
456 cursor.close();
457 if (accountDeleted) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800458 sendAccountsChangedBroadcast(accounts.userId);
Fred Quintanaf9f240e2011-02-24 18:27:50 -0800459 }
Fred Quintanaafa92b82009-12-01 16:27:03 -0800460 }
461 }
Fred Quintana3ecd5f42009-09-17 12:42:35 -0700462 }
463
Amith Yamasani04e0d262012-02-14 11:50:53 -0800464 private UserAccounts getUserAccountsForCaller() {
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700465 return getUserAccounts(UserHandle.getCallingUserId());
Amith Yamasani04e0d262012-02-14 11:50:53 -0800466 }
467
468 protected UserAccounts getUserAccounts(int userId) {
469 synchronized (mUsers) {
470 UserAccounts accounts = mUsers.get(userId);
471 if (accounts == null) {
Amith Yamasani0c19bf52013-10-03 10:34:58 -0700472 accounts = initUserLocked(userId);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800473 mUsers.append(userId, accounts);
474 }
475 return accounts;
476 }
477 }
478
Amith Yamasani13593602012-03-22 16:16:17 -0700479 private void onUserRemoved(Intent intent) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700480 int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
Amith Yamasani13593602012-03-22 16:16:17 -0700481 if (userId < 1) return;
482
483 UserAccounts accounts;
484 synchronized (mUsers) {
485 accounts = mUsers.get(userId);
486 mUsers.remove(userId);
487 }
488 if (accounts == null) {
489 File dbFile = new File(getDatabaseName(userId));
490 dbFile.delete();
491 return;
492 }
493
494 synchronized (accounts.cacheLock) {
495 accounts.openHelper.close();
496 File dbFile = new File(getDatabaseName(userId));
497 dbFile.delete();
498 }
499 }
500
Amith Yamasani67df64b2012-12-14 12:09:36 -0800501 private void onUserStarted(Intent intent) {
502 int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
503 if (userId < 1) return;
504
505 // Check if there's a shared account that needs to be created as an account
506 Account[] sharedAccounts = getSharedAccountsAsUser(userId);
507 if (sharedAccounts == null || sharedAccounts.length == 0) return;
508 Account[] accounts = getAccountsAsUser(null, userId);
509 for (Account sa : sharedAccounts) {
510 if (ArrayUtils.contains(accounts, sa)) continue;
511 // Account doesn't exist. Copy it now.
Esteban Talavera22dc3b72014-10-31 15:41:12 +0000512 copyAccountToUser(null /*no response*/, sa, UserHandle.USER_OWNER, userId);
Amith Yamasani67df64b2012-12-14 12:09:36 -0800513 }
514 }
515
Jeff Sharkey6ab72d72012-10-08 16:44:37 -0700516 @Override
517 public void onServiceChanged(AuthenticatorDescription desc, int userId, boolean removed) {
Jeff Sharkey6eb96202012-10-10 13:13:54 -0700518 validateAccountsInternal(getUserAccounts(userId), false /* invalidateAuthenticatorCache */);
Fred Quintana60307342009-03-24 22:48:12 -0700519 }
520
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -0800521 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -0700522 public String getPassword(Account account) {
Carlos Valdivia6eb73a52015-06-11 13:07:11 -0700523 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -0800524 if (Log.isLoggable(TAG, Log.VERBOSE)) {
525 Log.v(TAG, "getPassword: " + account
526 + ", caller's uid " + Binder.getCallingUid()
527 + ", pid " + Binder.getCallingPid());
528 }
Fred Quintana382601f2010-03-25 12:25:10 -0700529 if (account == null) throw new IllegalArgumentException("account is null");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700530 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700630 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 {
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700667 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
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700674 /**
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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700710 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);
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700730 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 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700806 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 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700814
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -0800815 if (!canUserModifyAccounts(userId) || !canUserModifyAccountsForType(userId, account.type)) {
816 return false;
817 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700818
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -0700819 long identityToken = clearCallingIdentity();
820 try {
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700821 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();
Carlos Valdiviae7ed8272015-07-27 13:06:54 -0700999 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001076 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 */
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001225 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 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001280 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;
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001288 } 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001533 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001561 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001587 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001651 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001679 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();
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07001849 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");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002372 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 /**
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002502 * 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();
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002507 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 {
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002513 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
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002599 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];
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002603 } else if (visibleAccountTypes.contains(type)) {
2604 // Prune the list down to just the requested type.
2605 visibleAccountTypes = new ArrayList<>();
2606 visibleAccountTypes.add(type);
2607 } // else aggregate all the visible accounts (it won't matter if the list is empty).
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002608
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002609 long identityToken = clearCallingIdentity();
2610 try {
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002611 return getAccountsInternal(
2612 userId,
2613 callingUid,
2614 callingPackage,
2615 visibleAccountTypes);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002616 } finally {
2617 restoreCallingIdentity(identityToken);
2618 }
2619 }
2620
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002621 private Account[] getAccountsInternal(
2622 int userId,
2623 int callingUid,
2624 String callingPackage,
2625 List<String> visibleAccountTypes) {
2626 UserAccounts accounts = getUserAccounts(userId);
2627 synchronized (accounts.cacheLock) {
2628 UserAccounts userAccounts = getUserAccounts(userId);
2629 ArrayList<Account> visibleAccounts = new ArrayList<>();
2630 for (String visibleType : visibleAccountTypes) {
2631 Account[] accountsForType = getAccountsFromCacheLocked(
2632 userAccounts, visibleType, callingUid, callingPackage);
2633 if (accountsForType != null) {
2634 visibleAccounts.addAll(Arrays.asList(accountsForType));
2635 }
2636 }
2637 Account[] result = new Account[visibleAccounts.size()];
2638 for (int i = 0; i < visibleAccounts.size(); i++) {
2639 result[i] = visibleAccounts.get(i);
2640 }
2641 return result;
2642 }
2643 }
2644
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002645 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -08002646 public boolean addSharedAccountAsUser(Account account, int userId) {
2647 userId = handleIncomingUser(userId);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002648 UserAccounts accounts = getUserAccounts(userId);
2649 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Amith Yamasani67df64b2012-12-14 12:09:36 -08002650 ContentValues values = new ContentValues();
2651 values.put(ACCOUNTS_NAME, account.name);
2652 values.put(ACCOUNTS_TYPE, account.type);
2653 db.delete(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2654 new String[] {account.name, account.type});
2655 long accountId = db.insert(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME, values);
2656 if (accountId < 0) {
2657 Log.w(TAG, "insertAccountIntoDatabase: " + account
2658 + ", skipping the DB insert failed");
2659 return false;
2660 }
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002661 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_SHARED_ACCOUNTS, accountId, accounts);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002662 return true;
2663 }
2664
2665 @Override
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002666 public boolean renameSharedAccountAsUser(Account account, String newName, int userId) {
2667 userId = handleIncomingUser(userId);
2668 UserAccounts accounts = getUserAccounts(userId);
2669 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002670 long sharedTableAccountId = getAccountIdFromSharedTable(db, account);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002671 final ContentValues values = new ContentValues();
2672 values.put(ACCOUNTS_NAME, newName);
2673 values.put(ACCOUNTS_PREVIOUS_NAME, account.name);
2674 int r = db.update(
2675 TABLE_SHARED_ACCOUNTS,
2676 values,
2677 ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2678 new String[] { account.name, account.type });
2679 if (r > 0) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002680 int callingUid = getCallingUid();
2681 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_RENAME, TABLE_SHARED_ACCOUNTS,
2682 sharedTableAccountId, accounts, callingUid);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002683 // Recursively rename the account.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002684 renameAccountInternal(accounts, account, newName);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07002685 }
2686 return r > 0;
2687 }
2688
2689 @Override
Amith Yamasani67df64b2012-12-14 12:09:36 -08002690 public boolean removeSharedAccountAsUser(Account account, int userId) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002691 return removeSharedAccountAsUser(account, userId, getCallingUid());
2692 }
2693
2694 private boolean removeSharedAccountAsUser(Account account, int userId, int callingUid) {
Amith Yamasani67df64b2012-12-14 12:09:36 -08002695 userId = handleIncomingUser(userId);
2696 UserAccounts accounts = getUserAccounts(userId);
2697 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002698 long sharedTableAccountId = getAccountIdFromSharedTable(db, account);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002699 int r = db.delete(TABLE_SHARED_ACCOUNTS, ACCOUNTS_NAME + "=? AND " + ACCOUNTS_TYPE+ "=?",
2700 new String[] {account.name, account.type});
2701 if (r > 0) {
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002702 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_REMOVE, TABLE_SHARED_ACCOUNTS,
2703 sharedTableAccountId, accounts, callingUid);
Amith Yamasani67df64b2012-12-14 12:09:36 -08002704 removeAccountInternal(accounts, account);
2705 }
2706 return r > 0;
2707 }
2708
2709 @Override
2710 public Account[] getSharedAccountsAsUser(int userId) {
2711 userId = handleIncomingUser(userId);
2712 UserAccounts accounts = getUserAccounts(userId);
2713 ArrayList<Account> accountList = new ArrayList<Account>();
2714 Cursor cursor = null;
2715 try {
2716 cursor = accounts.openHelper.getReadableDatabase()
2717 .query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_NAME, ACCOUNTS_TYPE},
2718 null, null, null, null, null);
2719 if (cursor != null && cursor.moveToFirst()) {
2720 int nameIndex = cursor.getColumnIndex(ACCOUNTS_NAME);
2721 int typeIndex = cursor.getColumnIndex(ACCOUNTS_TYPE);
2722 do {
2723 accountList.add(new Account(cursor.getString(nameIndex),
2724 cursor.getString(typeIndex)));
2725 } while (cursor.moveToNext());
2726 }
2727 } finally {
2728 if (cursor != null) {
2729 cursor.close();
2730 }
2731 }
2732 Account[] accountArray = new Account[accountList.size()];
2733 accountList.toArray(accountArray);
2734 return accountArray;
2735 }
2736
2737 @Override
Amith Yamasani2c7bc262012-11-05 16:46:02 -08002738 public Account[] getAccounts(String type) {
2739 return getAccountsAsUser(type, UserHandle.getCallingUserId());
2740 }
2741
Amith Yamasani27db4682013-03-30 17:07:47 -07002742 @Override
2743 public Account[] getAccountsForPackage(String packageName, int uid) {
2744 int callingUid = Binder.getCallingUid();
2745 if (!UserHandle.isSameApp(callingUid, Process.myUid())) {
2746 throw new SecurityException("getAccountsForPackage() called from unauthorized uid "
2747 + callingUid + " with uid=" + uid);
2748 }
2749 return getAccountsAsUser(null, UserHandle.getCallingUserId(), packageName, uid);
2750 }
2751
Amith Yamasani3b458ad2013-04-18 18:40:07 -07002752 @Override
2753 public Account[] getAccountsByTypeForPackage(String type, String packageName) {
Amith Yamasani3b458ad2013-04-18 18:40:07 -07002754 int packageUid = -1;
2755 try {
2756 packageUid = AppGlobals.getPackageManager().getPackageUid(
2757 packageName, UserHandle.getCallingUserId());
2758 } catch (RemoteException re) {
2759 Slog.e(TAG, "Couldn't determine the packageUid for " + packageName + re);
2760 return new Account[0];
2761 }
2762 return getAccountsAsUser(type, UserHandle.getCallingUserId(), packageName, packageUid);
2763 }
2764
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002765 @Override
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002766 public void getAccountsByFeatures(
2767 IAccountManagerResponse response,
2768 String type,
2769 String[] features) {
2770 int callingUid = Binder.getCallingUid();
Fred Quintana56285a62010-12-02 14:20:51 -08002771 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2772 Log.v(TAG, "getAccounts: accountType " + type
2773 + ", response " + response
2774 + ", features " + stringArrayToString(features)
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002775 + ", caller's uid " + callingUid
Fred Quintana56285a62010-12-02 14:20:51 -08002776 + ", pid " + Binder.getCallingPid());
2777 }
Fred Quintana382601f2010-03-25 12:25:10 -07002778 if (response == null) throw new IllegalArgumentException("response is null");
2779 if (type == null) throw new IllegalArgumentException("accountType is null");
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002780 int userId = UserHandle.getCallingUserId();
2781
2782 List<String> visibleAccountTypes = getTypesVisibleToCaller(callingUid, userId);
2783 if (!visibleAccountTypes.contains(type)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002784 Bundle result = new Bundle();
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002785 // Need to return just the accounts that are from matching signatures.
Carlos Valdiviac37ee222015-06-17 20:17:37 -07002786 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, new Account[0]);
2787 try {
2788 response.onResult(result);
2789 } catch (RemoteException e) {
2790 Log.e(TAG, "Cannot respond to caller do to exception." , e);
2791 }
2792 return;
2793 }
Fred Quintana33269202009-04-20 16:05:10 -07002794 long identityToken = clearCallingIdentity();
2795 try {
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07002796 UserAccounts userAccounts = getUserAccounts(userId);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002797 if (features == null || features.length == 0) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002798 Account[] accounts;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002799 synchronized (userAccounts.cacheLock) {
Amith Yamasani27db4682013-03-30 17:07:47 -07002800 accounts = getAccountsFromCacheLocked(userAccounts, type, callingUid, null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002801 }
Fred Quintanad4a9d6c2010-02-24 12:07:53 -08002802 Bundle result = new Bundle();
2803 result.putParcelableArray(AccountManager.KEY_ACCOUNTS, accounts);
2804 onResult(response, result);
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002805 return;
2806 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07002807 new GetAccountsByTypeAndFeatureSession(
2808 userAccounts,
2809 response,
2810 type,
2811 features,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002812 callingUid).bind();
Fred Quintana33269202009-04-20 16:05:10 -07002813 } finally {
2814 restoreCallingIdentity(identityToken);
Fred Quintana60307342009-03-24 22:48:12 -07002815 }
2816 }
2817
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07002818 private long getAccountIdFromSharedTable(SQLiteDatabase db, Account account) {
2819 Cursor cursor = db.query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_ID},
2820 "name=? AND type=?", new String[]{account.name, account.type}, null, null, null);
2821 try {
2822 if (cursor.moveToNext()) {
2823 return cursor.getLong(0);
2824 }
2825 return -1;
2826 } finally {
2827 cursor.close();
2828 }
2829 }
2830
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002831 private long getAccountIdLocked(SQLiteDatabase db, Account account) {
Fred Quintana60307342009-03-24 22:48:12 -07002832 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_ID},
Fred Quintanaffd0cb042009-08-15 21:45:26 -07002833 "name=? AND type=?", new String[]{account.name, account.type}, null, null, null);
Fred Quintana60307342009-03-24 22:48:12 -07002834 try {
2835 if (cursor.moveToNext()) {
2836 return cursor.getLong(0);
2837 }
2838 return -1;
2839 } finally {
2840 cursor.close();
2841 }
2842 }
2843
Fred Quintanaf9f240e2011-02-24 18:27:50 -08002844 private long getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) {
Fred Quintana60307342009-03-24 22:48:12 -07002845 Cursor cursor = db.query(TABLE_EXTRAS, new String[]{EXTRAS_ID},
2846 EXTRAS_ACCOUNTS_ID + "=" + accountId + " AND " + EXTRAS_KEY + "=?",
2847 new String[]{key}, null, null, null);
2848 try {
2849 if (cursor.moveToNext()) {
2850 return cursor.getLong(0);
2851 }
2852 return -1;
2853 } finally {
2854 cursor.close();
2855 }
2856 }
2857
Fred Quintanaa698f422009-04-08 19:14:54 -07002858 private abstract class Session extends IAccountAuthenticatorResponse.Stub
Fred Quintanab839afc2009-10-14 15:57:28 -07002859 implements IBinder.DeathRecipient, ServiceConnection {
Fred Quintana60307342009-03-24 22:48:12 -07002860 IAccountManagerResponse mResponse;
2861 final String mAccountType;
Fred Quintanaa698f422009-04-08 19:14:54 -07002862 final boolean mExpectActivityLaunch;
2863 final long mCreationTime;
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002864 final String mAccountName;
2865 // Indicates if we need to add auth details(like last credential time)
2866 final boolean mAuthDetailsRequired;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002867 // If set, we need to update the last authenticated time. This is
2868 // currently
2869 // used on
2870 // successful confirming credentials.
2871 final boolean mUpdateLastAuthenticatedTime;
Fred Quintanaa698f422009-04-08 19:14:54 -07002872
Fred Quintana33269202009-04-20 16:05:10 -07002873 public int mNumResults = 0;
Fred Quintanaa698f422009-04-08 19:14:54 -07002874 private int mNumRequestContinued = 0;
2875 private int mNumErrors = 0;
2876
Fred Quintana60307342009-03-24 22:48:12 -07002877 IAccountAuthenticator mAuthenticator = null;
2878
Fred Quintana8570f742010-02-18 10:32:54 -08002879 private final boolean mStripAuthTokenFromResult;
Amith Yamasani04e0d262012-02-14 11:50:53 -08002880 protected final UserAccounts mAccounts;
Fred Quintana8570f742010-02-18 10:32:54 -08002881
Amith Yamasani04e0d262012-02-14 11:50:53 -08002882 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType,
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002883 boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName,
2884 boolean authDetailsRequired) {
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002885 this(accounts, response, accountType, expectActivityLaunch, stripAuthTokenFromResult,
2886 accountName, authDetailsRequired, false /* updateLastAuthenticatedTime */);
2887 }
2888
2889 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType,
2890 boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName,
2891 boolean authDetailsRequired, boolean updateLastAuthenticatedTime) {
Fred Quintana60307342009-03-24 22:48:12 -07002892 super();
Amith Yamasani67df64b2012-12-14 12:09:36 -08002893 //if (response == null) throw new IllegalArgumentException("response is null");
Fred Quintana33269202009-04-20 16:05:10 -07002894 if (accountType == null) throw new IllegalArgumentException("accountType is null");
Amith Yamasani04e0d262012-02-14 11:50:53 -08002895 mAccounts = accounts;
Fred Quintana8570f742010-02-18 10:32:54 -08002896 mStripAuthTokenFromResult = stripAuthTokenFromResult;
Fred Quintana60307342009-03-24 22:48:12 -07002897 mResponse = response;
2898 mAccountType = accountType;
Fred Quintanaa698f422009-04-08 19:14:54 -07002899 mExpectActivityLaunch = expectActivityLaunch;
2900 mCreationTime = SystemClock.elapsedRealtime();
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002901 mAccountName = accountName;
2902 mAuthDetailsRequired = authDetailsRequired;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07002903 mUpdateLastAuthenticatedTime = updateLastAuthenticatedTime;
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08002904
Fred Quintanaa698f422009-04-08 19:14:54 -07002905 synchronized (mSessions) {
2906 mSessions.put(toString(), this);
2907 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08002908 if (response != null) {
2909 try {
2910 response.asBinder().linkToDeath(this, 0 /* flags */);
2911 } catch (RemoteException e) {
2912 mResponse = null;
2913 binderDied();
2914 }
Fred Quintanaa698f422009-04-08 19:14:54 -07002915 }
Fred Quintana60307342009-03-24 22:48:12 -07002916 }
2917
Fred Quintanaa698f422009-04-08 19:14:54 -07002918 IAccountManagerResponse getResponseAndClose() {
Fred Quintana60307342009-03-24 22:48:12 -07002919 if (mResponse == null) {
2920 // this session has already been closed
2921 return null;
2922 }
Fred Quintana60307342009-03-24 22:48:12 -07002923 IAccountManagerResponse response = mResponse;
Fred Quintanaa698f422009-04-08 19:14:54 -07002924 close(); // this clears mResponse so we need to save the response before this call
Fred Quintana60307342009-03-24 22:48:12 -07002925 return response;
2926 }
2927
Fred Quintanaa698f422009-04-08 19:14:54 -07002928 private void close() {
2929 synchronized (mSessions) {
2930 if (mSessions.remove(toString()) == null) {
2931 // the session was already closed, so bail out now
2932 return;
2933 }
2934 }
2935 if (mResponse != null) {
2936 // stop listening for response deaths
2937 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */);
2938
2939 // clear this so that we don't accidentally send any further results
2940 mResponse = null;
2941 }
2942 cancelTimeout();
2943 unbind();
2944 }
2945
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002946 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07002947 public void binderDied() {
2948 mResponse = null;
2949 close();
2950 }
2951
2952 protected String toDebugString() {
2953 return toDebugString(SystemClock.elapsedRealtime());
2954 }
2955
2956 protected String toDebugString(long now) {
2957 return "Session: expectLaunch " + mExpectActivityLaunch
2958 + ", connected " + (mAuthenticator != null)
2959 + ", stats (" + mNumResults + "/" + mNumRequestContinued
2960 + "/" + mNumErrors + ")"
2961 + ", lifetime " + ((now - mCreationTime) / 1000.0);
2962 }
2963
Fred Quintana60307342009-03-24 22:48:12 -07002964 void bind() {
Fred Quintanaa698f422009-04-08 19:14:54 -07002965 if (Log.isLoggable(TAG, Log.VERBOSE)) {
2966 Log.v(TAG, "initiating bind to authenticator type " + mAccountType);
2967 }
Fred Quintanab839afc2009-10-14 15:57:28 -07002968 if (!bindToAuthenticator(mAccountType)) {
Fred Quintanaa698f422009-04-08 19:14:54 -07002969 Log.d(TAG, "bind attempt failed for " + toDebugString());
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002970 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "bind failure");
Fred Quintana60307342009-03-24 22:48:12 -07002971 }
2972 }
2973
2974 private void unbind() {
2975 if (mAuthenticator != null) {
2976 mAuthenticator = null;
Fred Quintanab839afc2009-10-14 15:57:28 -07002977 mContext.unbindService(this);
Fred Quintana60307342009-03-24 22:48:12 -07002978 }
2979 }
2980
Fred Quintana60307342009-03-24 22:48:12 -07002981 public void cancelTimeout() {
2982 mMessageHandler.removeMessages(MESSAGE_TIMED_OUT, this);
2983 }
2984
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002985 @Override
Fred Quintanab839afc2009-10-14 15:57:28 -07002986 public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintana60307342009-03-24 22:48:12 -07002987 mAuthenticator = IAccountAuthenticator.Stub.asInterface(service);
Fred Quintanaa698f422009-04-08 19:14:54 -07002988 try {
2989 run();
2990 } catch (RemoteException e) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07002991 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
Fred Quintanaa698f422009-04-08 19:14:54 -07002992 "remote exception");
2993 }
Fred Quintana60307342009-03-24 22:48:12 -07002994 }
2995
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08002996 @Override
Fred Quintanab839afc2009-10-14 15:57:28 -07002997 public void onServiceDisconnected(ComponentName name) {
Fred Quintanaa698f422009-04-08 19:14:54 -07002998 mAuthenticator = null;
2999 IAccountManagerResponse response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003000 if (response != null) {
Fred Quintana166466d2011-10-24 14:51:40 -07003001 try {
3002 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
3003 "disconnected");
3004 } catch (RemoteException e) {
3005 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3006 Log.v(TAG, "Session.onServiceDisconnected: "
3007 + "caught RemoteException while responding", e);
3008 }
3009 }
Fred Quintana60307342009-03-24 22:48:12 -07003010 }
3011 }
3012
Fred Quintanab839afc2009-10-14 15:57:28 -07003013 public abstract void run() throws RemoteException;
3014
Fred Quintana60307342009-03-24 22:48:12 -07003015 public void onTimedOut() {
Fred Quintanaa698f422009-04-08 19:14:54 -07003016 IAccountManagerResponse response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003017 if (response != null) {
Fred Quintana166466d2011-10-24 14:51:40 -07003018 try {
3019 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
3020 "timeout");
3021 } catch (RemoteException e) {
3022 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3023 Log.v(TAG, "Session.onTimedOut: caught RemoteException while responding",
3024 e);
3025 }
3026 }
Fred Quintana60307342009-03-24 22:48:12 -07003027 }
3028 }
3029
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003030 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07003031 public void onResult(Bundle result) {
3032 mNumResults++;
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003033 Intent intent = null;
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003034 if (result != null) {
3035 boolean isSuccessfulConfirmCreds = result.getBoolean(
3036 AccountManager.KEY_BOOLEAN_RESULT, false);
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07003037 boolean isSuccessfulUpdateCredsOrAddAccount =
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003038 result.containsKey(AccountManager.KEY_ACCOUNT_NAME)
3039 && result.containsKey(AccountManager.KEY_ACCOUNT_TYPE);
Carlos Valdivia91979be2015-05-22 14:11:35 -07003040 // We should only update lastAuthenticated time, if
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003041 // mUpdateLastAuthenticatedTime is true and the confirmRequest
3042 // or updateRequest was successful
Carlos Valdivia91979be2015-05-22 14:11:35 -07003043 boolean needUpdate = mUpdateLastAuthenticatedTime
Simranjit Singh Kohli0b8a7c02015-06-19 12:45:27 -07003044 && (isSuccessfulConfirmCreds || isSuccessfulUpdateCredsOrAddAccount);
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003045 if (needUpdate || mAuthDetailsRequired) {
3046 boolean accountPresent = isAccountPresentForCaller(mAccountName, mAccountType);
3047 if (needUpdate && accountPresent) {
3048 updateLastAuthenticatedTime(new Account(mAccountName, mAccountType));
3049 }
3050 if (mAuthDetailsRequired) {
3051 long lastAuthenticatedTime = -1;
3052 if (accountPresent) {
3053 lastAuthenticatedTime = DatabaseUtils.longForQuery(
3054 mAccounts.openHelper.getReadableDatabase(),
3055 "select " + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS
3056 + " from " +
3057 TABLE_ACCOUNTS + " WHERE " + ACCOUNTS_NAME + "=? AND "
3058 + ACCOUNTS_TYPE + "=?",
3059 new String[] {
3060 mAccountName, mAccountType
3061 });
3062 }
Simranjit Singh Kohli1663b442015-04-28 11:11:12 -07003063 result.putLong(AccountManager.KEY_LAST_AUTHENTICATED_TIME,
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003064 lastAuthenticatedTime);
3065 }
3066 }
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003067 }
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003068 if (result != null
3069 && (intent = result.getParcelable(AccountManager.KEY_INTENT)) != null) {
3070 /*
3071 * The Authenticator API allows third party authenticators to
3072 * supply arbitrary intents to other apps that they can run,
3073 * this can be very bad when those apps are in the system like
3074 * the System Settings.
3075 */
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003076 int authenticatorUid = Binder.getCallingUid();
Carlos Valdivia416747a2013-10-14 17:22:42 -07003077 long bid = Binder.clearCallingIdentity();
3078 try {
3079 PackageManager pm = mContext.getPackageManager();
3080 ResolveInfo resolveInfo = pm.resolveActivityAsUser(intent, 0, mAccounts.userId);
3081 int targetUid = resolveInfo.activityInfo.applicationInfo.uid;
3082 if (PackageManager.SIGNATURE_MATCH !=
3083 pm.checkSignatures(authenticatorUid, targetUid)) {
3084 throw new SecurityException(
3085 "Activity to be started with KEY_INTENT must " +
3086 "share Authenticator's signatures");
3087 }
3088 } finally {
3089 Binder.restoreCallingIdentity(bid);
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003090 }
3091 }
3092 if (result != null
3093 && !TextUtils.isEmpty(result.getString(AccountManager.KEY_AUTHTOKEN))) {
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003094 String accountName = result.getString(AccountManager.KEY_ACCOUNT_NAME);
3095 String accountType = result.getString(AccountManager.KEY_ACCOUNT_TYPE);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003096 if (!TextUtils.isEmpty(accountName) && !TextUtils.isEmpty(accountType)) {
3097 Account account = new Account(accountName, accountType);
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003098 cancelNotification(getSigninRequiredNotificationId(mAccounts, account),
3099 new UserHandle(mAccounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003100 }
Fred Quintana60307342009-03-24 22:48:12 -07003101 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003102 IAccountManagerResponse response;
3103 if (mExpectActivityLaunch && result != null
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003104 && result.containsKey(AccountManager.KEY_INTENT)) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003105 response = mResponse;
3106 } else {
3107 response = getResponseAndClose();
Fred Quintana60307342009-03-24 22:48:12 -07003108 }
Fred Quintana60307342009-03-24 22:48:12 -07003109 if (response != null) {
3110 try {
Fred Quintanaa698f422009-04-08 19:14:54 -07003111 if (result == null) {
Fred Quintana56285a62010-12-02 14:20:51 -08003112 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3113 Log.v(TAG, getClass().getSimpleName()
3114 + " calling onError() on response " + response);
3115 }
Fred Quintanaf7ae77c2009-10-02 17:19:31 -07003116 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE,
Fred Quintanaa698f422009-04-08 19:14:54 -07003117 "null bundle returned");
3118 } else {
Fred Quintana8570f742010-02-18 10:32:54 -08003119 if (mStripAuthTokenFromResult) {
3120 result.remove(AccountManager.KEY_AUTHTOKEN);
3121 }
Fred Quintana56285a62010-12-02 14:20:51 -08003122 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3123 Log.v(TAG, getClass().getSimpleName()
3124 + " calling onResult() on response " + response);
3125 }
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003126 if ((result.getInt(AccountManager.KEY_ERROR_CODE, -1) > 0) &&
3127 (intent == null)) {
3128 // All AccountManager error codes are greater than 0
3129 response.onError(result.getInt(AccountManager.KEY_ERROR_CODE),
3130 result.getString(AccountManager.KEY_ERROR_MESSAGE));
3131 } else {
3132 response.onResult(result);
3133 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003134 }
Fred Quintana60307342009-03-24 22:48:12 -07003135 } catch (RemoteException e) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003136 // if the caller is dead then there is no one to care about remote exceptions
3137 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3138 Log.v(TAG, "failure while notifying response", e);
3139 }
Fred Quintana60307342009-03-24 22:48:12 -07003140 }
3141 }
3142 }
Fred Quintana60307342009-03-24 22:48:12 -07003143
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003144 @Override
Fred Quintanaa698f422009-04-08 19:14:54 -07003145 public void onRequestContinued() {
3146 mNumRequestContinued++;
Fred Quintana60307342009-03-24 22:48:12 -07003147 }
3148
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003149 @Override
Fred Quintana60307342009-03-24 22:48:12 -07003150 public void onError(int errorCode, String errorMessage) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003151 mNumErrors++;
Fred Quintanaa698f422009-04-08 19:14:54 -07003152 IAccountManagerResponse response = getResponseAndClose();
3153 if (response != null) {
3154 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Fred Quintana56285a62010-12-02 14:20:51 -08003155 Log.v(TAG, getClass().getSimpleName()
3156 + " calling onError() on response " + response);
Fred Quintanaa698f422009-04-08 19:14:54 -07003157 }
3158 try {
3159 response.onError(errorCode, errorMessage);
3160 } catch (RemoteException e) {
3161 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3162 Log.v(TAG, "Session.onError: caught RemoteException while responding", e);
3163 }
3164 }
3165 } else {
3166 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3167 Log.v(TAG, "Session.onError: already closed");
3168 }
Fred Quintana60307342009-03-24 22:48:12 -07003169 }
3170 }
Fred Quintanab839afc2009-10-14 15:57:28 -07003171
3172 /**
3173 * find the component name for the authenticator and initiate a bind
3174 * if no authenticator or the bind fails then return false, otherwise return true
3175 */
3176 private boolean bindToAuthenticator(String authenticatorType) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003177 final AccountAuthenticatorCache.ServiceInfo<AuthenticatorDescription> authenticatorInfo;
3178 authenticatorInfo = mAuthenticatorCache.getServiceInfo(
3179 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
Fred Quintanab839afc2009-10-14 15:57:28 -07003180 if (authenticatorInfo == null) {
3181 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3182 Log.v(TAG, "there is no authenticator for " + authenticatorType
3183 + ", bailing out");
3184 }
3185 return false;
3186 }
3187
3188 Intent intent = new Intent();
3189 intent.setAction(AccountManager.ACTION_AUTHENTICATOR_INTENT);
3190 intent.setComponent(authenticatorInfo.componentName);
3191 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3192 Log.v(TAG, "performing bindService to " + authenticatorInfo.componentName);
3193 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08003194 if (!mContext.bindServiceAsUser(intent, this, Context.BIND_AUTO_CREATE,
3195 new UserHandle(mAccounts.userId))) {
Fred Quintanab839afc2009-10-14 15:57:28 -07003196 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3197 Log.v(TAG, "bindService to " + authenticatorInfo.componentName + " failed");
3198 }
3199 return false;
3200 }
3201
3202
3203 return true;
3204 }
Fred Quintana60307342009-03-24 22:48:12 -07003205 }
3206
3207 private class MessageHandler extends Handler {
3208 MessageHandler(Looper looper) {
3209 super(looper);
3210 }
Costin Manolache3348f142009-09-29 18:58:36 -07003211
Carlos Valdivia5bab9da2013-09-29 05:11:56 -07003212 @Override
Fred Quintana60307342009-03-24 22:48:12 -07003213 public void handleMessage(Message msg) {
Fred Quintana60307342009-03-24 22:48:12 -07003214 switch (msg.what) {
3215 case MESSAGE_TIMED_OUT:
3216 Session session = (Session)msg.obj;
3217 session.onTimedOut();
3218 break;
3219
Amith Yamasani5be347b2013-03-31 17:44:31 -07003220 case MESSAGE_COPY_SHARED_ACCOUNT:
Esteban Talavera22dc3b72014-10-31 15:41:12 +00003221 copyAccountToUser(/*no response*/ null, (Account) msg.obj, msg.arg1, msg.arg2);
Amith Yamasani5be347b2013-03-31 17:44:31 -07003222 break;
3223
Fred Quintana60307342009-03-24 22:48:12 -07003224 default:
3225 throw new IllegalStateException("unhandled message: " + msg.what);
3226 }
3227 }
3228 }
3229
Amith Yamasani04e0d262012-02-14 11:50:53 -08003230 private static String getDatabaseName(int userId) {
3231 File systemDir = Environment.getSystemSecureDirectory();
Amith Yamasani61f57372012-08-31 12:12:28 -07003232 File databaseFile = new File(Environment.getUserSystemDirectory(userId), DATABASE_NAME);
Amith Yamasani04e0d262012-02-14 11:50:53 -08003233 if (userId == 0) {
Amith Yamasania23bb382012-04-11 15:32:07 -07003234 // Migrate old file, if it exists, to the new location.
3235 // Make sure the new file doesn't already exist. A dummy file could have been
3236 // accidentally created in the old location, causing the new one to become corrupted
3237 // as well.
Amith Yamasani04e0d262012-02-14 11:50:53 -08003238 File oldFile = new File(systemDir, DATABASE_NAME);
Amith Yamasania23bb382012-04-11 15:32:07 -07003239 if (oldFile.exists() && !databaseFile.exists()) {
Marc Blankc6b0f992012-03-18 19:16:41 -07003240 // Check for use directory; create if it doesn't exist, else renameTo will fail
Amith Yamasani61f57372012-08-31 12:12:28 -07003241 File userDir = Environment.getUserSystemDirectory(userId);
Marc Blankc6b0f992012-03-18 19:16:41 -07003242 if (!userDir.exists()) {
3243 if (!userDir.mkdirs()) {
3244 throw new IllegalStateException("User dir cannot be created: " + userDir);
3245 }
3246 }
3247 if (!oldFile.renameTo(databaseFile)) {
3248 throw new IllegalStateException("User dir cannot be migrated: " + databaseFile);
3249 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003250 }
Oscar Montemayora8529f62009-11-18 10:14:20 -08003251 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003252 return databaseFile.getPath();
Oscar Montemayora8529f62009-11-18 10:14:20 -08003253 }
3254
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003255 private static class DebugDbHelper{
3256 private DebugDbHelper() {
3257 }
3258
3259 private static String TABLE_DEBUG = "debug_table";
3260
3261 // Columns for the table
3262 private static String ACTION_TYPE = "action_type";
3263 private static String TIMESTAMP = "time";
3264 private static String CALLER_UID = "caller_uid";
3265 private static String TABLE_NAME = "table_name";
3266 private static String KEY = "primary_key";
3267
3268 // These actions correspond to the occurrence of real actions. Since
3269 // these are called by the authenticators, the uid associated will be
3270 // of the authenticator.
3271 private static String ACTION_SET_PASSWORD = "action_set_password";
3272 private static String ACTION_CLEAR_PASSWORD = "action_clear_password";
3273 private static String ACTION_ACCOUNT_ADD = "action_account_add";
3274 private static String ACTION_ACCOUNT_REMOVE = "action_account_remove";
3275 private static String ACTION_AUTHENTICATOR_REMOVE = "action_authenticator_remove";
3276 private static String ACTION_ACCOUNT_RENAME = "action_account_rename";
3277
3278 // These actions don't necessarily correspond to any action on
3279 // accountDb taking place. As an example, there might be a request for
3280 // addingAccount, which might not lead to addition of account on grounds
3281 // of bad authentication. We will still be logging it to keep track of
3282 // who called.
3283 private static String ACTION_CALLED_ACCOUNT_ADD = "action_called_account_add";
3284 private static String ACTION_CALLED_ACCOUNT_REMOVE = "action_called_account_remove";
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003285
3286 private static SimpleDateFormat dateFromat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
3287
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003288 private static void createDebugTable(SQLiteDatabase db) {
3289 db.execSQL("CREATE TABLE " + TABLE_DEBUG + " ( "
3290 + ACCOUNTS_ID + " INTEGER,"
3291 + ACTION_TYPE + " TEXT NOT NULL, "
3292 + TIMESTAMP + " DATETIME,"
3293 + CALLER_UID + " INTEGER NOT NULL,"
3294 + TABLE_NAME + " TEXT NOT NULL,"
3295 + KEY + " INTEGER PRIMARY KEY)");
3296 db.execSQL("CREATE INDEX timestamp_index ON " + TABLE_DEBUG + " (" + TIMESTAMP + ")");
3297 }
3298 }
3299
3300 private void logRecord(UserAccounts accounts, String action, String tableName) {
3301 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
3302 logRecord(db, action, tableName, -1, accounts);
3303 }
3304
Simranjit Singh Kohliba0b10a2015-07-16 20:33:14 -07003305 private void logRecordWithUid(UserAccounts accounts, String action, String tableName, int uid) {
3306 SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
3307 logRecord(db, action, tableName, -1, accounts, uid);
3308 }
3309
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003310 /*
3311 * This function receives an opened writable database.
3312 */
3313 private void logRecord(SQLiteDatabase db, String action, String tableName, long accountId,
3314 UserAccounts userAccount) {
3315 logRecord(db, action, tableName, accountId, userAccount, getCallingUid());
3316 }
3317
3318 /*
3319 * This function receives an opened writable database.
3320 */
3321 private void logRecord(SQLiteDatabase db, String action, String tableName, long accountId,
3322 UserAccounts userAccount, int callingUid) {
3323 SQLiteStatement logStatement = userAccount.statementForLogging;
3324 logStatement.bindLong(1, accountId);
3325 logStatement.bindString(2, action);
3326 logStatement.bindString(3, DebugDbHelper.dateFromat.format(new Date()));
3327 logStatement.bindLong(4, callingUid);
3328 logStatement.bindString(5, tableName);
3329 logStatement.bindLong(6, userAccount.debugDbInsertionPoint);
3330 logStatement.execute();
3331 logStatement.clearBindings();
3332 userAccount.debugDbInsertionPoint = (userAccount.debugDbInsertionPoint + 1)
3333 % MAX_DEBUG_DB_SIZE;
3334 }
3335
3336 /*
3337 * This should only be called once to compile the sql statement for logging
3338 * and to find the insertion point.
3339 */
3340 private void initializeDebugDbSizeAndCompileSqlStatementForLogging(SQLiteDatabase db,
3341 UserAccounts userAccount) {
3342 // Initialize the count if not done earlier.
3343 int size = (int) getDebugTableRowCount(db);
3344 if (size >= MAX_DEBUG_DB_SIZE) {
3345 // Table is full, and we need to find the point where to insert.
3346 userAccount.debugDbInsertionPoint = (int) getDebugTableInsertionPoint(db);
3347 } else {
3348 userAccount.debugDbInsertionPoint = size;
3349 }
3350 compileSqlStatementForLogging(db, userAccount);
3351 }
3352
3353 private void compileSqlStatementForLogging(SQLiteDatabase db, UserAccounts userAccount) {
3354 String sql = "INSERT OR REPLACE INTO " + DebugDbHelper.TABLE_DEBUG
3355 + " VALUES (?,?,?,?,?,?)";
3356 userAccount.statementForLogging = db.compileStatement(sql);
3357 }
3358
3359 private long getDebugTableRowCount(SQLiteDatabase db) {
3360 String queryCountDebugDbRows = "SELECT COUNT(*) FROM " + DebugDbHelper.TABLE_DEBUG;
3361 return DatabaseUtils.longForQuery(db, queryCountDebugDbRows, null);
3362 }
3363
3364 /*
3365 * Finds the row key where the next insertion should take place. This should
3366 * be invoked only if the table has reached its full capacity.
3367 */
3368 private long getDebugTableInsertionPoint(SQLiteDatabase db) {
3369 // This query finds the smallest timestamp value (and if 2 records have
3370 // same timestamp, the choose the lower id).
3371 String queryCountDebugDbRows = new StringBuilder()
3372 .append("SELECT ").append(DebugDbHelper.KEY)
3373 .append(" FROM ").append(DebugDbHelper.TABLE_DEBUG)
3374 .append(" ORDER BY ")
3375 .append(DebugDbHelper.TIMESTAMP).append(",").append(DebugDbHelper.KEY)
3376 .append(" LIMIT 1")
3377 .toString();
3378 return DatabaseUtils.longForQuery(db, queryCountDebugDbRows, null);
3379 }
3380
Amith Yamasani04e0d262012-02-14 11:50:53 -08003381 static class DatabaseHelper extends SQLiteOpenHelper {
Oscar Montemayora8529f62009-11-18 10:14:20 -08003382
Amith Yamasani04e0d262012-02-14 11:50:53 -08003383 public DatabaseHelper(Context context, int userId) {
3384 super(context, AccountManagerService.getDatabaseName(userId), null, DATABASE_VERSION);
Fred Quintana60307342009-03-24 22:48:12 -07003385 }
3386
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003387 /**
3388 * This call needs to be made while the mCacheLock is held. The way to
3389 * ensure this is to get the lock any time a method is called ont the DatabaseHelper
3390 * @param db The database.
3391 */
Fred Quintana60307342009-03-24 22:48:12 -07003392 @Override
3393 public void onCreate(SQLiteDatabase db) {
3394 db.execSQL("CREATE TABLE " + TABLE_ACCOUNTS + " ( "
3395 + ACCOUNTS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3396 + ACCOUNTS_NAME + " TEXT NOT NULL, "
3397 + ACCOUNTS_TYPE + " TEXT NOT NULL, "
3398 + ACCOUNTS_PASSWORD + " TEXT, "
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003399 + ACCOUNTS_PREVIOUS_NAME + " TEXT, "
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003400 + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS + " INTEGER DEFAULT 0, "
Fred Quintana60307342009-03-24 22:48:12 -07003401 + "UNIQUE(" + ACCOUNTS_NAME + "," + ACCOUNTS_TYPE + "))");
3402
3403 db.execSQL("CREATE TABLE " + TABLE_AUTHTOKENS + " ( "
3404 + AUTHTOKENS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3405 + AUTHTOKENS_ACCOUNTS_ID + " INTEGER NOT NULL, "
3406 + AUTHTOKENS_TYPE + " TEXT NOT NULL, "
3407 + AUTHTOKENS_AUTHTOKEN + " TEXT, "
3408 + "UNIQUE (" + AUTHTOKENS_ACCOUNTS_ID + "," + AUTHTOKENS_TYPE + "))");
3409
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003410 createGrantsTable(db);
3411
Fred Quintana60307342009-03-24 22:48:12 -07003412 db.execSQL("CREATE TABLE " + TABLE_EXTRAS + " ( "
3413 + EXTRAS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3414 + EXTRAS_ACCOUNTS_ID + " INTEGER, "
3415 + EXTRAS_KEY + " TEXT NOT NULL, "
3416 + EXTRAS_VALUE + " TEXT, "
3417 + "UNIQUE(" + EXTRAS_ACCOUNTS_ID + "," + EXTRAS_KEY + "))");
3418
3419 db.execSQL("CREATE TABLE " + TABLE_META + " ( "
3420 + META_KEY + " TEXT PRIMARY KEY NOT NULL, "
3421 + META_VALUE + " TEXT)");
Fred Quintanaa698f422009-04-08 19:14:54 -07003422
Amith Yamasani67df64b2012-12-14 12:09:36 -08003423 createSharedAccountsTable(db);
3424
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003425 createAccountsDeletionTrigger(db);
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003426
3427 DebugDbHelper.createDebugTable(db);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003428 }
3429
Amith Yamasani67df64b2012-12-14 12:09:36 -08003430 private void createSharedAccountsTable(SQLiteDatabase db) {
3431 db.execSQL("CREATE TABLE " + TABLE_SHARED_ACCOUNTS + " ( "
3432 + ACCOUNTS_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
3433 + ACCOUNTS_NAME + " TEXT NOT NULL, "
3434 + ACCOUNTS_TYPE + " TEXT NOT NULL, "
3435 + "UNIQUE(" + ACCOUNTS_NAME + "," + ACCOUNTS_TYPE + "))");
3436 }
3437
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003438 private void addLastSuccessfullAuthenticatedTimeColumn(SQLiteDatabase db) {
3439 db.execSQL("ALTER TABLE " + TABLE_ACCOUNTS + " ADD COLUMN "
3440 + ACCOUNTS_LAST_AUTHENTICATE_TIME_EPOCH_MILLIS + " DEFAULT 0");
3441 }
3442
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003443 private void addOldAccountNameColumn(SQLiteDatabase db) {
3444 db.execSQL("ALTER TABLE " + TABLE_ACCOUNTS + " ADD COLUMN " + ACCOUNTS_PREVIOUS_NAME);
3445 }
3446
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003447 private void addDebugTable(SQLiteDatabase db) {
3448 DebugDbHelper.createDebugTable(db);
3449 }
3450
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003451 private void createAccountsDeletionTrigger(SQLiteDatabase db) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003452 db.execSQL(""
3453 + " CREATE TRIGGER " + TABLE_ACCOUNTS + "Delete DELETE ON " + TABLE_ACCOUNTS
3454 + " BEGIN"
3455 + " DELETE FROM " + TABLE_AUTHTOKENS
3456 + " WHERE " + AUTHTOKENS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
3457 + " DELETE FROM " + TABLE_EXTRAS
3458 + " WHERE " + EXTRAS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003459 + " DELETE FROM " + TABLE_GRANTS
3460 + " WHERE " + GRANTS_ACCOUNTS_ID + "=OLD." + ACCOUNTS_ID + " ;"
Fred Quintanaa698f422009-04-08 19:14:54 -07003461 + " END");
Fred Quintana60307342009-03-24 22:48:12 -07003462 }
3463
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003464 private void createGrantsTable(SQLiteDatabase db) {
3465 db.execSQL("CREATE TABLE " + TABLE_GRANTS + " ( "
3466 + GRANTS_ACCOUNTS_ID + " INTEGER NOT NULL, "
3467 + GRANTS_AUTH_TOKEN_TYPE + " STRING NOT NULL, "
3468 + GRANTS_GRANTEE_UID + " INTEGER NOT NULL, "
3469 + "UNIQUE (" + GRANTS_ACCOUNTS_ID + "," + GRANTS_AUTH_TOKEN_TYPE
3470 + "," + GRANTS_GRANTEE_UID + "))");
3471 }
3472
Fred Quintana60307342009-03-24 22:48:12 -07003473 @Override
3474 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Fred Quintanaa698f422009-04-08 19:14:54 -07003475 Log.e(TAG, "upgrade from version " + oldVersion + " to version " + newVersion);
Fred Quintana60307342009-03-24 22:48:12 -07003476
Fred Quintanaa698f422009-04-08 19:14:54 -07003477 if (oldVersion == 1) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003478 // no longer need to do anything since the work is done
3479 // when upgrading from version 2
3480 oldVersion++;
3481 }
3482
3483 if (oldVersion == 2) {
3484 createGrantsTable(db);
3485 db.execSQL("DROP TRIGGER " + TABLE_ACCOUNTS + "Delete");
3486 createAccountsDeletionTrigger(db);
Fred Quintanaa698f422009-04-08 19:14:54 -07003487 oldVersion++;
3488 }
Costin Manolache3348f142009-09-29 18:58:36 -07003489
3490 if (oldVersion == 3) {
3491 db.execSQL("UPDATE " + TABLE_ACCOUNTS + " SET " + ACCOUNTS_TYPE +
3492 " = 'com.google' WHERE " + ACCOUNTS_TYPE + " == 'com.google.GAIA'");
3493 oldVersion++;
3494 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08003495
3496 if (oldVersion == 4) {
3497 createSharedAccountsTable(db);
3498 oldVersion++;
3499 }
3500
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07003501 if (oldVersion == 5) {
3502 addOldAccountNameColumn(db);
3503 oldVersion++;
3504 }
3505
Simranjit Singh Kohli6c7c4ad2015-02-23 18:11:14 -08003506 if (oldVersion == 6) {
3507 addLastSuccessfullAuthenticatedTimeColumn(db);
3508 oldVersion++;
3509 }
3510
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003511 if (oldVersion == 7) {
3512 addDebugTable(db);
3513 oldVersion++;
3514 }
3515
Amith Yamasani67df64b2012-12-14 12:09:36 -08003516 if (oldVersion != newVersion) {
3517 Log.e(TAG, "failed to upgrade version " + oldVersion + " to version " + newVersion);
3518 }
Fred Quintana60307342009-03-24 22:48:12 -07003519 }
3520
3521 @Override
3522 public void onOpen(SQLiteDatabase db) {
3523 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "opened database " + DATABASE_NAME);
3524 }
3525 }
3526
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003527 public IBinder onBind(@SuppressWarnings("unused") Intent intent) {
Fred Quintana60307342009-03-24 22:48:12 -07003528 return asBinder();
3529 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003530
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003531 /**
3532 * Searches array of arguments for the specified string
3533 * @param args array of argument strings
3534 * @param value value to search for
3535 * @return true if the value is contained in the array
3536 */
3537 private static boolean scanArgs(String[] args, String value) {
3538 if (args != null) {
3539 for (String arg : args) {
3540 if (value.equals(arg)) {
3541 return true;
3542 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003543 }
3544 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003545 return false;
3546 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003547
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003548 @Override
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003549 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
Kenny Root3abd75b2011-09-29 11:00:41 -07003550 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3551 != PackageManager.PERMISSION_GRANTED) {
3552 fout.println("Permission Denial: can't dump AccountsManager from from pid="
3553 + Binder.getCallingPid() + ", uid=" + Binder.getCallingUid()
3554 + " without permission " + android.Manifest.permission.DUMP);
3555 return;
3556 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003557 final boolean isCheckinRequest = scanArgs(args, "--checkin") || scanArgs(args, "-c");
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003558 final IndentingPrintWriter ipw = new IndentingPrintWriter(fout, " ");
Kenny Root3abd75b2011-09-29 11:00:41 -07003559
Jeff Sharkey6eb96202012-10-10 13:13:54 -07003560 final List<UserInfo> users = getUserManager().getUsers();
3561 for (UserInfo user : users) {
3562 ipw.println("User " + user + ":");
3563 ipw.increaseIndent();
3564 dumpUser(getUserAccounts(user.id), fd, ipw, args, isCheckinRequest);
3565 ipw.println();
3566 ipw.decreaseIndent();
Amith Yamasani04e0d262012-02-14 11:50:53 -08003567 }
3568 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003569
Amith Yamasani04e0d262012-02-14 11:50:53 -08003570 private void dumpUser(UserAccounts userAccounts, FileDescriptor fd, PrintWriter fout,
3571 String[] args, boolean isCheckinRequest) {
3572 synchronized (userAccounts.cacheLock) {
3573 final SQLiteDatabase db = userAccounts.openHelper.getReadableDatabase();
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003574
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003575 if (isCheckinRequest) {
3576 // This is a checkin request. *Only* upload the account types and the count of each.
3577 Cursor cursor = db.query(TABLE_ACCOUNTS, ACCOUNT_TYPE_COUNT_PROJECTION,
3578 null, null, ACCOUNTS_TYPE, null, null);
3579 try {
3580 while (cursor.moveToNext()) {
3581 // print type,count
3582 fout.println(cursor.getString(0) + "," + cursor.getString(1));
3583 }
3584 } finally {
3585 if (cursor != null) {
3586 cursor.close();
3587 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003588 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003589 } else {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003590 Account[] accounts = getAccountsFromCacheLocked(userAccounts, null /* type */,
Amith Yamasani27db4682013-03-30 17:07:47 -07003591 Process.myUid(), null);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003592 fout.println("Accounts: " + accounts.length);
3593 for (Account account : accounts) {
3594 fout.println(" " + account);
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003595 }
Fred Quintana307da1a2010-01-21 14:24:20 -08003596
Simranjit Singh Kohli1d0c1a62015-04-09 13:58:44 -07003597 // Add debug information.
3598 fout.println();
3599 Cursor cursor = db.query(DebugDbHelper.TABLE_DEBUG, null,
3600 null, null, null, null, DebugDbHelper.TIMESTAMP);
3601 fout.println("AccountId, Action_Type, timestamp, UID, TableName, Key");
3602 fout.println("Accounts History");
3603 try {
3604 while (cursor.moveToNext()) {
3605 // print type,count
3606 fout.println(cursor.getString(0) + "," + cursor.getString(1) + "," +
3607 cursor.getString(2) + "," + cursor.getString(3) + ","
3608 + cursor.getString(4) + "," + cursor.getString(5));
3609 }
3610 } finally {
3611 cursor.close();
3612 }
3613
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003614 fout.println();
3615 synchronized (mSessions) {
3616 final long now = SystemClock.elapsedRealtime();
3617 fout.println("Active Sessions: " + mSessions.size());
3618 for (Session session : mSessions.values()) {
3619 fout.println(" " + session.toDebugString(now));
3620 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003621 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003622
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003623 fout.println();
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003624 mAuthenticatorCache.dump(fd, fout, args, userAccounts.userId);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003625 }
Jason Parks1cd7d0e2009-09-28 14:48:34 -07003626 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003627 }
3628
Amith Yamasani04e0d262012-02-14 11:50:53 -08003629 private void doNotification(UserAccounts accounts, Account account, CharSequence message,
Dianne Hackborn41203752012-08-31 14:05:51 -07003630 Intent intent, int userId) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003631 long identityToken = clearCallingIdentity();
3632 try {
3633 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3634 Log.v(TAG, "doNotification: " + message + " intent:" + intent);
3635 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003636
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003637 if (intent.getComponent() != null &&
3638 GrantCredentialsPermissionActivity.class.getName().equals(
3639 intent.getComponent().getClassName())) {
Dianne Hackborn41203752012-08-31 14:05:51 -07003640 createNoCredentialsPermissionNotification(account, intent, userId);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003641 } else {
Amith Yamasani04e0d262012-02-14 11:50:53 -08003642 final Integer notificationId = getSigninRequiredNotificationId(accounts, account);
Fred Quintana33f889a2009-09-14 17:31:26 -07003643 intent.addCategory(String.valueOf(notificationId));
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003644 UserHandle user = new UserHandle(userId);
Kenny Guy07ad8dc2014-09-01 20:56:12 +01003645 Context contextForUser = getContextForUser(user);
Fred Quintana33f889a2009-09-14 17:31:26 -07003646 final String notificationTitleFormat =
Kenny Guy07ad8dc2014-09-01 20:56:12 +01003647 contextForUser.getText(R.string.notification_title).toString();
Chris Wren1ce4b6d2015-06-11 10:19:43 -04003648 Notification n = new Notification.Builder(contextForUser)
3649 .setWhen(0)
3650 .setSmallIcon(android.R.drawable.stat_sys_warning)
3651 .setColor(contextForUser.getColor(
3652 com.android.internal.R.color.system_notification_accent_color))
3653 .setContentTitle(String.format(notificationTitleFormat, account.name))
3654 .setContentText(message)
3655 .setContentIntent(PendingIntent.getActivityAsUser(
3656 mContext, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT,
3657 null, user))
3658 .build();
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003659 installNotification(notificationId, n, user);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003660 }
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003661 } finally {
3662 restoreCallingIdentity(identityToken);
3663 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003664 }
3665
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003666 protected void installNotification(final int notificationId, final Notification n,
3667 UserHandle user) {
Fred Quintana56285a62010-12-02 14:20:51 -08003668 ((NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE))
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003669 .notifyAsUser(null, notificationId, n, user);
Fred Quintana56285a62010-12-02 14:20:51 -08003670 }
3671
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003672 protected void cancelNotification(int id, UserHandle user) {
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003673 long identityToken = clearCallingIdentity();
3674 try {
3675 ((NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE))
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003676 .cancelAsUser(null, id, user);
Fred Quintana26fc5eb2009-04-09 15:05:50 -07003677 } finally {
3678 restoreCallingIdentity(identityToken);
3679 }
Fred Quintanaa698f422009-04-08 19:14:54 -07003680 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003681
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003682 private boolean isPermitted(int callingUid, String... permissions) {
Fred Quintanab38eb142010-02-24 13:40:54 -08003683 for (String perm : permissions) {
3684 if (mContext.checkCallingOrSelfPermission(perm) == PackageManager.PERMISSION_GRANTED) {
3685 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003686 Log.v(TAG, " caller uid " + callingUid + " has " + perm);
Fred Quintanab38eb142010-02-24 13:40:54 -08003687 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003688 return true;
Fred Quintanab38eb142010-02-24 13:40:54 -08003689 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003690 }
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003691 return false;
3692 }
3693
3694 /** Succeeds if any of the specified permissions are granted. */
3695 private void checkBinderPermission(String... permissions) {
3696 final int callingUid = Binder.getCallingUid();
3697 if (isPermitted(callingUid, permissions)) {
3698 String msg = String.format(
3699 "caller uid %s lacks any of %s",
3700 callingUid,
3701 TextUtils.join(",", permissions));
3702 Log.w(TAG, " " + msg);
3703 throw new SecurityException(msg);
3704 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003705 }
3706
Amith Yamasani67df64b2012-12-14 12:09:36 -08003707 private int handleIncomingUser(int userId) {
3708 try {
3709 return ActivityManagerNative.getDefault().handleIncomingUser(
3710 Binder.getCallingPid(), Binder.getCallingUid(), userId, true, true, "", null);
3711 } catch (RemoteException re) {
3712 // Shouldn't happen, local.
3713 }
3714 return userId;
3715 }
3716
Christopher Tateccbf84f2013-05-08 15:25:41 -07003717 private boolean isPrivileged(int callingUid) {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003718 final int callingUserId = UserHandle.getUserId(callingUid);
3719
3720 final PackageManager userPackageManager;
3721 try {
3722 userPackageManager = mContext.createPackageContextAsUser(
3723 "android", 0, new UserHandle(callingUserId)).getPackageManager();
3724 } catch (NameNotFoundException e) {
3725 return false;
3726 }
3727
3728 String[] packages = userPackageManager.getPackagesForUid(callingUid);
Fred Quintana7be59642009-08-24 18:29:25 -07003729 for (String name : packages) {
3730 try {
Jeff Sharkey6ab72d72012-10-08 16:44:37 -07003731 PackageInfo packageInfo = userPackageManager.getPackageInfo(name, 0 /* flags */);
Fred Quintana56285a62010-12-02 14:20:51 -08003732 if (packageInfo != null
Alex Klyubinb9f8a522015-02-03 11:12:59 -08003733 && (packageInfo.applicationInfo.privateFlags
3734 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
Fred Quintana7be59642009-08-24 18:29:25 -07003735 return true;
3736 }
3737 } catch (PackageManager.NameNotFoundException e) {
3738 return false;
3739 }
3740 }
3741 return false;
3742 }
3743
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003744 private boolean permissionIsGranted(
3745 Account account, String authTokenType, int callerUid, int userId) {
Christopher Tateccbf84f2013-05-08 15:25:41 -07003746 final boolean isPrivileged = isPrivileged(callerUid);
Fred Quintana31957f12009-10-21 13:43:10 -07003747 final boolean fromAuthenticator = account != null
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003748 && isAccountManagedByCaller(account.type, callerUid, userId);
Fred Quintana31957f12009-10-21 13:43:10 -07003749 final boolean hasExplicitGrants = account != null
Amith Yamasani04e0d262012-02-14 11:50:53 -08003750 && hasExplicitlyGrantedPermission(account, authTokenType, callerUid);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003751 if (Log.isLoggable(TAG, Log.VERBOSE)) {
3752 Log.v(TAG, "checkGrantsOrCallingUidAgainstAuthenticator: caller uid "
Fred Quintana56285a62010-12-02 14:20:51 -08003753 + callerUid + ", " + account
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003754 + ": is authenticator? " + fromAuthenticator
3755 + ", has explicit permission? " + hasExplicitGrants);
3756 }
Christopher Tateccbf84f2013-05-08 15:25:41 -07003757 return fromAuthenticator || hasExplicitGrants || isPrivileged;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003758 }
3759
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003760 private boolean isAccountVisibleToCaller(String accountType, int callingUid, int userId) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003761 if (accountType == null) {
3762 return false;
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003763 } else {
3764 return getTypesVisibleToCaller(callingUid, userId).contains(accountType);
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003765 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003766 }
3767
3768 private boolean isAccountManagedByCaller(String accountType, int callingUid, int userId) {
3769 if (accountType == null) {
3770 return false;
3771 } else {
3772 return getTypesManagedByCaller(callingUid, userId).contains(accountType);
3773 }
3774 }
3775
3776 private List<String> getTypesVisibleToCaller(int callingUid, int userId) {
3777 boolean isPermitted =
3778 isPermitted(callingUid, Manifest.permission.GET_ACCOUNTS,
3779 Manifest.permission.GET_ACCOUNTS_PRIVILEGED);
3780 Log.i(TAG, String.format("getTypesVisibleToCaller: isPermitted? %s", isPermitted));
3781 return getTypesForCaller(callingUid, userId, isPermitted);
3782 }
3783
3784 private List<String> getTypesManagedByCaller(int callingUid, int userId) {
3785 return getTypesForCaller(callingUid, userId, false);
3786 }
3787
3788 private List<String> getTypesForCaller(
3789 int callingUid, int userId, boolean isOtherwisePermitted) {
3790 List<String> managedAccountTypes = new ArrayList<>();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003791 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> serviceInfo :
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003792 mAuthenticatorCache.getAllServices(userId)) {
3793 final int sigChk = mPackageManager.checkSignatures(serviceInfo.uid, callingUid);
3794 if (isOtherwisePermitted || sigChk == PackageManager.SIGNATURE_MATCH) {
3795 managedAccountTypes.add(serviceInfo.type.type);
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003796 }
3797 }
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003798 return managedAccountTypes;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003799 }
3800
Simranjit Singh Kohli82d01782015-04-09 17:27:06 -07003801 private boolean isAccountPresentForCaller(String accountName, String accountType) {
3802 if (getUserAccountsForCaller().accountCache.containsKey(accountType)) {
3803 for (Account account : getUserAccountsForCaller().accountCache.get(accountType)) {
3804 if (account.name.equals(accountName)) {
3805 return true;
3806 }
3807 }
3808 }
3809 return false;
3810 }
3811
Amith Yamasani04e0d262012-02-14 11:50:53 -08003812 private boolean hasExplicitlyGrantedPermission(Account account, String authTokenType,
3813 int callerUid) {
Amith Yamasani27db4682013-03-30 17:07:47 -07003814 if (callerUid == Process.SYSTEM_UID) {
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003815 return true;
3816 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08003817 UserAccounts accounts = getUserAccountsForCaller();
3818 synchronized (accounts.cacheLock) {
3819 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
3820 String[] args = { String.valueOf(callerUid), authTokenType,
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003821 account.name, account.type};
3822 final boolean permissionGranted =
3823 DatabaseUtils.longForQuery(db, COUNT_OF_MATCHING_GRANTS, args) != 0;
3824 if (!permissionGranted && ActivityManager.isRunningInTestHarness()) {
3825 // TODO: Skip this check when running automated tests. Replace this
3826 // with a more general solution.
3827 Log.d(TAG, "no credentials permission for usage of " + account + ", "
Amith Yamasani04e0d262012-02-14 11:50:53 -08003828 + authTokenType + " by uid " + callerUid
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003829 + " but ignoring since device is in test harness.");
3830 return true;
3831 }
3832 return permissionGranted;
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003833 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003834 }
3835
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003836 private boolean isSystemUid(int callingUid) {
3837 String[] packages = null;
3838 long ident = Binder.clearCallingIdentity();
3839 try {
3840 packages = mPackageManager.getPackagesForUid(callingUid);
3841 } finally {
3842 Binder.restoreCallingIdentity(ident);
Carlos Valdiviaffb46022015-06-08 19:07:54 -07003843 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003844 if (packages != null) {
3845 for (String name : packages) {
3846 try {
3847 PackageInfo packageInfo = mPackageManager.getPackageInfo(name, 0 /* flags */);
3848 if (packageInfo != null
3849 && (packageInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM)
3850 != 0) {
3851 return true;
3852 }
3853 } catch (PackageManager.NameNotFoundException e) {
3854 Log.w(TAG, String.format("Could not find package [%s]", name), e);
3855 }
3856 }
3857 } else {
3858 Log.w(TAG, "No known packages with uid " + callingUid);
Carlos Valdiviaffb46022015-06-08 19:07:54 -07003859 }
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07003860 return false;
Carlos Valdiviadcddc472015-06-11 20:04:04 +00003861 }
3862
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003863 /** Succeeds if any of the specified permissions are granted. */
3864 private void checkReadAccountsPermitted(
3865 int callingUid,
Carlos Valdiviae7ed8272015-07-27 13:06:54 -07003866 String accountType,
3867 int userId) {
3868 if (!isAccountVisibleToCaller(accountType, callingUid, userId)) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07003869 String msg = String.format(
3870 "caller uid %s cannot access %s accounts",
3871 callingUid,
3872 accountType);
3873 Log.w(TAG, " " + msg);
3874 throw new SecurityException(msg);
3875 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003876 }
3877
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003878 private boolean canUserModifyAccounts(int userId) {
3879 if (getUserManager().getUserRestrictions(new UserHandle(userId))
3880 .getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS)) {
3881 return false;
Amith Yamasanie4cf7342012-12-17 11:12:09 -08003882 }
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003883 return true;
3884 }
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003885
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003886 private boolean canUserModifyAccountsForType(int userId, String accountType) {
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003887 DevicePolicyManager dpm = (DevicePolicyManager) mContext
3888 .getSystemService(Context.DEVICE_POLICY_SERVICE);
Alexandra Gherghina999d3942014-07-03 11:40:08 +01003889 String[] typesArray = dpm.getAccountTypesWithManagementDisabledAsUser(userId);
Adili Muguro4e68b652014-07-25 16:42:39 +02003890 if (typesArray == null) {
3891 return true;
3892 }
Sander Alewijnseda1350f2014-05-08 16:59:42 +01003893 for (String forbiddenType : typesArray) {
3894 if (forbiddenType.equals(accountType)) {
3895 return false;
3896 }
3897 }
Amith Yamasanie4cf7342012-12-17 11:12:09 -08003898 return true;
3899 }
3900
Jatin Lodhia09e7e0e2013-11-07 00:14:25 -08003901 @Override
Fred Quintanad9640ec2012-05-23 12:37:00 -07003902 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value)
3903 throws RemoteException {
3904 final int callingUid = getCallingUid();
3905
Amith Yamasani27db4682013-03-30 17:07:47 -07003906 if (callingUid != Process.SYSTEM_UID) {
Fred Quintanad9640ec2012-05-23 12:37:00 -07003907 throw new SecurityException();
3908 }
3909
3910 if (value) {
3911 grantAppPermission(account, authTokenType, uid);
3912 } else {
3913 revokeAppPermission(account, authTokenType, uid);
3914 }
3915 }
3916
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003917 /**
3918 * Allow callers with the given uid permission to get credentials for account/authTokenType.
3919 * <p>
3920 * Although this is public it can only be accessed via the AccountManagerService object
3921 * which is in the system. This means we don't need to protect it with permissions.
3922 * @hide
3923 */
Fred Quintanad9640ec2012-05-23 12:37:00 -07003924 private void grantAppPermission(Account account, String authTokenType, int uid) {
Fred Quintana382601f2010-03-25 12:25:10 -07003925 if (account == null || authTokenType == null) {
3926 Log.e(TAG, "grantAppPermission: called with invalid arguments", new Exception());
Fred Quintana31957f12009-10-21 13:43:10 -07003927 return;
3928 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003929 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08003930 synchronized (accounts.cacheLock) {
3931 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003932 db.beginTransaction();
3933 try {
3934 long accountId = getAccountIdLocked(db, account);
3935 if (accountId >= 0) {
3936 ContentValues values = new ContentValues();
3937 values.put(GRANTS_ACCOUNTS_ID, accountId);
3938 values.put(GRANTS_AUTH_TOKEN_TYPE, authTokenType);
3939 values.put(GRANTS_GRANTEE_UID, uid);
3940 db.insert(TABLE_GRANTS, GRANTS_ACCOUNTS_ID, values);
3941 db.setTransactionSuccessful();
3942 }
3943 } finally {
3944 db.endTransaction();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003945 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003946 cancelNotification(getCredentialPermissionNotificationId(account, authTokenType, uid),
3947 new UserHandle(accounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003948 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003949 }
3950
3951 /**
3952 * Don't allow callers with the given uid permission to get credentials for
3953 * account/authTokenType.
3954 * <p>
3955 * Although this is public it can only be accessed via the AccountManagerService object
3956 * which is in the system. This means we don't need to protect it with permissions.
3957 * @hide
3958 */
Fred Quintanad9640ec2012-05-23 12:37:00 -07003959 private void revokeAppPermission(Account account, String authTokenType, int uid) {
Fred Quintana382601f2010-03-25 12:25:10 -07003960 if (account == null || authTokenType == null) {
3961 Log.e(TAG, "revokeAppPermission: called with invalid arguments", new Exception());
Fred Quintana31957f12009-10-21 13:43:10 -07003962 return;
3963 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003964 UserAccounts accounts = getUserAccounts(UserHandle.getUserId(uid));
Amith Yamasani04e0d262012-02-14 11:50:53 -08003965 synchronized (accounts.cacheLock) {
3966 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003967 db.beginTransaction();
3968 try {
3969 long accountId = getAccountIdLocked(db, account);
3970 if (accountId >= 0) {
3971 db.delete(TABLE_GRANTS,
3972 GRANTS_ACCOUNTS_ID + "=? AND " + GRANTS_AUTH_TOKEN_TYPE + "=? AND "
3973 + GRANTS_GRANTEE_UID + "=?",
3974 new String[]{String.valueOf(accountId), authTokenType,
3975 String.valueOf(uid)});
3976 db.setTransactionSuccessful();
3977 }
3978 } finally {
3979 db.endTransaction();
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003980 }
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07003981 cancelNotification(getCredentialPermissionNotificationId(account, authTokenType, uid),
3982 new UserHandle(accounts.userId));
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003983 }
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07003984 }
Fred Quintana56285a62010-12-02 14:20:51 -08003985
3986 static final private String stringArrayToString(String[] value) {
3987 return value != null ? ("[" + TextUtils.join(",", value) + "]") : null;
3988 }
3989
Amith Yamasani04e0d262012-02-14 11:50:53 -08003990 private void removeAccountFromCacheLocked(UserAccounts accounts, Account account) {
3991 final Account[] oldAccountsForType = accounts.accountCache.get(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003992 if (oldAccountsForType != null) {
3993 ArrayList<Account> newAccountsList = new ArrayList<Account>();
3994 for (Account curAccount : oldAccountsForType) {
3995 if (!curAccount.equals(account)) {
3996 newAccountsList.add(curAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08003997 }
3998 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08003999 if (newAccountsList.isEmpty()) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08004000 accounts.accountCache.remove(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004001 } else {
4002 Account[] newAccountsForType = new Account[newAccountsList.size()];
4003 newAccountsForType = newAccountsList.toArray(newAccountsForType);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004004 accounts.accountCache.put(account.type, newAccountsForType);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004005 }
Fred Quintana56285a62010-12-02 14:20:51 -08004006 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08004007 accounts.userDataCache.remove(account);
4008 accounts.authTokenCache.remove(account);
Carlos Valdiviaf193b9a2014-07-18 01:34:57 -07004009 accounts.previousNameCache.remove(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004010 }
4011
4012 /**
4013 * This assumes that the caller has already checked that the account is not already present.
4014 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08004015 private void insertAccountIntoCacheLocked(UserAccounts accounts, Account account) {
4016 Account[] accountsForType = accounts.accountCache.get(account.type);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004017 int oldLength = (accountsForType != null) ? accountsForType.length : 0;
4018 Account[] newAccountsForType = new Account[oldLength + 1];
4019 if (accountsForType != null) {
4020 System.arraycopy(accountsForType, 0, newAccountsForType, 0, oldLength);
Fred Quintana56285a62010-12-02 14:20:51 -08004021 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004022 newAccountsForType[oldLength] = account;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004023 accounts.accountCache.put(account.type, newAccountsForType);
Fred Quintana56285a62010-12-02 14:20:51 -08004024 }
4025
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004026 private Account[] filterSharedAccounts(UserAccounts userAccounts, Account[] unfiltered,
Amith Yamasani27db4682013-03-30 17:07:47 -07004027 int callingUid, String callingPackage) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004028 if (getUserManager() == null || userAccounts == null || userAccounts.userId < 0
Amith Yamasani27db4682013-03-30 17:07:47 -07004029 || callingUid == Process.myUid()) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004030 return unfiltered;
4031 }
Amith Yamasani0c19bf52013-10-03 10:34:58 -07004032 UserInfo user = mUserManager.getUserInfo(userAccounts.userId);
4033 if (user != null && user.isRestricted()) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004034 String[] packages = mPackageManager.getPackagesForUid(callingUid);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004035 // If any of the packages is a white listed package, return the full set,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004036 // otherwise return non-shared accounts only.
4037 // This might be a temporary way to specify a whitelist
4038 String whiteList = mContext.getResources().getString(
4039 com.android.internal.R.string.config_appsAuthorizedForSharedAccounts);
4040 for (String packageName : packages) {
4041 if (whiteList.contains(";" + packageName + ";")) {
4042 return unfiltered;
4043 }
4044 }
4045 ArrayList<Account> allowed = new ArrayList<Account>();
4046 Account[] sharedAccounts = getSharedAccountsAsUser(userAccounts.userId);
4047 if (sharedAccounts == null || sharedAccounts.length == 0) return unfiltered;
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004048 String requiredAccountType = "";
4049 try {
Amith Yamasanie3423092013-05-22 19:41:45 -07004050 // If there's an explicit callingPackage specified, check if that package
4051 // opted in to see restricted accounts.
4052 if (callingPackage != null) {
4053 PackageInfo pi = mPackageManager.getPackageInfo(callingPackage, 0);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004054 if (pi != null && pi.restrictedAccountType != null) {
4055 requiredAccountType = pi.restrictedAccountType;
Amith Yamasanie3423092013-05-22 19:41:45 -07004056 }
4057 } else {
4058 // Otherwise check if the callingUid has a package that has opted in
4059 for (String packageName : packages) {
4060 PackageInfo pi = mPackageManager.getPackageInfo(packageName, 0);
4061 if (pi != null && pi.restrictedAccountType != null) {
4062 requiredAccountType = pi.restrictedAccountType;
Amith Yamasani27db4682013-03-30 17:07:47 -07004063 break;
4064 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004065 }
4066 }
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004067 } catch (NameNotFoundException nnfe) {
4068 }
4069 for (Account account : unfiltered) {
4070 if (account.type.equals(requiredAccountType)) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004071 allowed.add(account);
Amith Yamasani0ac1fc92013-03-27 18:56:08 -07004072 } else {
4073 boolean found = false;
4074 for (Account shared : sharedAccounts) {
4075 if (shared.equals(account)) {
4076 found = true;
4077 break;
4078 }
4079 }
4080 if (!found) {
4081 allowed.add(account);
4082 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004083 }
4084 }
4085 Account[] filtered = new Account[allowed.size()];
4086 allowed.toArray(filtered);
4087 return filtered;
4088 } else {
4089 return unfiltered;
4090 }
4091 }
4092
Amith Yamasani27db4682013-03-30 17:07:47 -07004093 /*
4094 * packageName can be null. If not null, it should be used to filter out restricted accounts
4095 * that the package is not allowed to access.
4096 */
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004097 protected Account[] getAccountsFromCacheLocked(UserAccounts userAccounts, String accountType,
Amith Yamasani27db4682013-03-30 17:07:47 -07004098 int callingUid, String callingPackage) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004099 if (accountType != null) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08004100 final Account[] accounts = userAccounts.accountCache.get(accountType);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004101 if (accounts == null) {
4102 return EMPTY_ACCOUNT_ARRAY;
Fred Quintana56285a62010-12-02 14:20:51 -08004103 } else {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08004104 return filterSharedAccounts(userAccounts, Arrays.copyOf(accounts, accounts.length),
Amith Yamasani27db4682013-03-30 17:07:47 -07004105 callingUid, callingPackage);
Fred Quintana56285a62010-12-02 14:20:51 -08004106 }
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004107 } else {
4108 int totalLength = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004109 for (Account[] accounts : userAccounts.accountCache.values()) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004110 totalLength += accounts.length;
4111 }
4112 if (totalLength == 0) {
4113 return EMPTY_ACCOUNT_ARRAY;
4114 }
4115 Account[] accounts = new Account[totalLength];
4116 totalLength = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -08004117 for (Account[] accountsOfType : userAccounts.accountCache.values()) {
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004118 System.arraycopy(accountsOfType, 0, accounts, totalLength,
4119 accountsOfType.length);
4120 totalLength += accountsOfType.length;
4121 }
Amith Yamasani27db4682013-03-30 17:07:47 -07004122 return filterSharedAccounts(userAccounts, accounts, callingUid, callingPackage);
Fred Quintana56285a62010-12-02 14:20:51 -08004123 }
4124 }
4125
Amith Yamasani04e0d262012-02-14 11:50:53 -08004126 protected void writeUserDataIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db,
4127 Account account, String key, String value) {
4128 HashMap<String, String> userDataForAccount = accounts.userDataCache.get(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004129 if (userDataForAccount == null) {
4130 userDataForAccount = readUserDataForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004131 accounts.userDataCache.put(account, userDataForAccount);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004132 }
4133 if (value == null) {
4134 userDataForAccount.remove(key);
4135 } else {
4136 userDataForAccount.put(key, value);
Fred Quintana56285a62010-12-02 14:20:51 -08004137 }
4138 }
4139
Carlos Valdivia91979be2015-05-22 14:11:35 -07004140 protected String readCachedTokenInternal(
4141 UserAccounts accounts,
4142 Account account,
4143 String tokenType,
4144 String callingPackage,
4145 byte[] pkgSigDigest) {
4146 synchronized (accounts.cacheLock) {
Carlos Valdiviac37ee222015-06-17 20:17:37 -07004147 return accounts.accountTokenCaches.get(
4148 account, tokenType, callingPackage, pkgSigDigest);
Carlos Valdivia91979be2015-05-22 14:11:35 -07004149 }
4150 }
4151
Amith Yamasani04e0d262012-02-14 11:50:53 -08004152 protected void writeAuthTokenIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db,
4153 Account account, String key, String value) {
4154 HashMap<String, String> authTokensForAccount = accounts.authTokenCache.get(account);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004155 if (authTokensForAccount == null) {
4156 authTokensForAccount = readAuthTokensForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004157 accounts.authTokenCache.put(account, authTokensForAccount);
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004158 }
4159 if (value == null) {
4160 authTokensForAccount.remove(key);
4161 } else {
4162 authTokensForAccount.put(key, value);
Fred Quintana56285a62010-12-02 14:20:51 -08004163 }
4164 }
4165
Amith Yamasani04e0d262012-02-14 11:50:53 -08004166 protected String readAuthTokenInternal(UserAccounts accounts, Account account,
4167 String authTokenType) {
4168 synchronized (accounts.cacheLock) {
4169 HashMap<String, String> authTokensForAccount = accounts.authTokenCache.get(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004170 if (authTokensForAccount == null) {
4171 // need to populate the cache for this account
Amith Yamasani04e0d262012-02-14 11:50:53 -08004172 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004173 authTokensForAccount = readAuthTokensForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004174 accounts.authTokenCache.put(account, authTokensForAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004175 }
4176 return authTokensForAccount.get(authTokenType);
4177 }
4178 }
4179
Amith Yamasani04e0d262012-02-14 11:50:53 -08004180 protected String readUserDataInternal(UserAccounts accounts, Account account, String key) {
4181 synchronized (accounts.cacheLock) {
4182 HashMap<String, String> userDataForAccount = accounts.userDataCache.get(account);
Fred Quintana56285a62010-12-02 14:20:51 -08004183 if (userDataForAccount == null) {
4184 // need to populate the cache for this account
Amith Yamasani04e0d262012-02-14 11:50:53 -08004185 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004186 userDataForAccount = readUserDataForAccountFromDatabaseLocked(db, account);
Amith Yamasani04e0d262012-02-14 11:50:53 -08004187 accounts.userDataCache.put(account, userDataForAccount);
Fred Quintana56285a62010-12-02 14:20:51 -08004188 }
4189 return userDataForAccount.get(key);
4190 }
4191 }
4192
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004193 protected HashMap<String, String> readUserDataForAccountFromDatabaseLocked(
4194 final SQLiteDatabase db, Account account) {
Fred Quintana56285a62010-12-02 14:20:51 -08004195 HashMap<String, String> userDataForAccount = new HashMap<String, String>();
Fred Quintana56285a62010-12-02 14:20:51 -08004196 Cursor cursor = db.query(TABLE_EXTRAS,
4197 COLUMNS_EXTRAS_KEY_AND_VALUE,
4198 SELECTION_USERDATA_BY_ACCOUNT,
4199 new String[]{account.name, account.type},
4200 null, null, null);
4201 try {
4202 while (cursor.moveToNext()) {
4203 final String tmpkey = cursor.getString(0);
4204 final String value = cursor.getString(1);
4205 userDataForAccount.put(tmpkey, value);
4206 }
4207 } finally {
4208 cursor.close();
4209 }
4210 return userDataForAccount;
4211 }
4212
Fred Quintanaf9f240e2011-02-24 18:27:50 -08004213 protected HashMap<String, String> readAuthTokensForAccountFromDatabaseLocked(
4214 final SQLiteDatabase db, Account account) {
Fred Quintana56285a62010-12-02 14:20:51 -08004215 HashMap<String, String> authTokensForAccount = new HashMap<String, String>();
Fred Quintana56285a62010-12-02 14:20:51 -08004216 Cursor cursor = db.query(TABLE_AUTHTOKENS,
4217 COLUMNS_AUTHTOKENS_TYPE_AND_AUTHTOKEN,
4218 SELECTION_AUTHTOKENS_BY_ACCOUNT,
4219 new String[]{account.name, account.type},
4220 null, null, null);
4221 try {
4222 while (cursor.moveToNext()) {
4223 final String type = cursor.getString(0);
4224 final String authToken = cursor.getString(1);
4225 authTokensForAccount.put(type, authToken);
4226 }
4227 } finally {
4228 cursor.close();
4229 }
4230 return authTokensForAccount;
4231 }
Kenny Guy07ad8dc2014-09-01 20:56:12 +01004232
4233 private Context getContextForUser(UserHandle user) {
4234 try {
4235 return mContext.createPackageContextAsUser(mContext.getPackageName(), 0, user);
4236 } catch (NameNotFoundException e) {
4237 // Default to mContext, not finding the package system is running as is unlikely.
4238 return mContext;
4239 }
4240 }
Fred Quintana60307342009-03-24 22:48:12 -07004241}