The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 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 | |
| 17 | #ifndef ANDROID_IPC_THREAD_STATE_H |
| 18 | #define ANDROID_IPC_THREAD_STATE_H |
| 19 | |
| 20 | #include <utils/Errors.h> |
Mathias Agopian | 0795272 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 21 | #include <binder/Parcel.h> |
| 22 | #include <binder/ProcessState.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | #include <utils/Vector.h> |
| 24 | |
| 25 | #ifdef HAVE_WIN32_PROC |
| 26 | typedef int uid_t; |
| 27 | #endif |
| 28 | |
| 29 | // --------------------------------------------------------------------------- |
| 30 | namespace android { |
| 31 | |
| 32 | class IPCThreadState |
| 33 | { |
| 34 | public: |
| 35 | static IPCThreadState* self(); |
| 36 | |
| 37 | sp<ProcessState> process(); |
| 38 | |
| 39 | status_t clearLastError(); |
| 40 | |
| 41 | int getCallingPid(); |
| 42 | int getCallingUid(); |
Brad Fitzpatrick | 27b3a7a | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 43 | |
| 44 | void setStrictModePolicy(int32_t policy); |
| 45 | int32_t getStrictModePolicy() const; |
Brad Fitzpatrick | 0234376 | 2010-08-30 16:01:16 -0700 | [diff] [blame^] | 46 | |
| 47 | void setLastTransactionBinderFlags(int32_t flags); |
| 48 | int32_t getLastTransactionBinderFlags() const; |
| 49 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | int64_t clearCallingIdentity(); |
| 51 | void restoreCallingIdentity(int64_t token); |
| 52 | |
| 53 | void flushCommands(); |
| 54 | |
| 55 | void joinThreadPool(bool isMain = true); |
| 56 | |
| 57 | // Stop the local process. |
| 58 | void stopProcess(bool immediate = true); |
| 59 | |
| 60 | status_t transact(int32_t handle, |
| 61 | uint32_t code, const Parcel& data, |
| 62 | Parcel* reply, uint32_t flags); |
| 63 | |
| 64 | void incStrongHandle(int32_t handle); |
| 65 | void decStrongHandle(int32_t handle); |
| 66 | void incWeakHandle(int32_t handle); |
| 67 | void decWeakHandle(int32_t handle); |
| 68 | status_t attemptIncStrongHandle(int32_t handle); |
| 69 | static void expungeHandle(int32_t handle, IBinder* binder); |
| 70 | status_t requestDeathNotification( int32_t handle, |
| 71 | BpBinder* proxy); |
| 72 | status_t clearDeathNotification( int32_t handle, |
| 73 | BpBinder* proxy); |
| 74 | |
| 75 | static void shutdown(); |
| 76 | |
Dianne Hackborn | 887f355 | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 77 | // Call this to disable switching threads to background scheduling when |
| 78 | // receiving incoming IPC calls. This is specifically here for the |
| 79 | // Android system process, since it expects to have background apps calling |
| 80 | // in to it but doesn't want to acquire locks in its services while in |
| 81 | // the background. |
| 82 | static void disableBackgroundScheduling(bool disable); |
| 83 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 84 | private: |
| 85 | IPCThreadState(); |
| 86 | ~IPCThreadState(); |
| 87 | |
| 88 | status_t sendReply(const Parcel& reply, uint32_t flags); |
| 89 | status_t waitForResponse(Parcel *reply, |
| 90 | status_t *acquireResult=NULL); |
| 91 | status_t talkWithDriver(bool doReceive=true); |
| 92 | status_t writeTransactionData(int32_t cmd, |
| 93 | uint32_t binderFlags, |
| 94 | int32_t handle, |
| 95 | uint32_t code, |
| 96 | const Parcel& data, |
| 97 | status_t* statusBuffer); |
| 98 | status_t executeCommand(int32_t command); |
| 99 | |
| 100 | void clearCaller(); |
| 101 | |
| 102 | static void threadDestructor(void *st); |
| 103 | static void freeBuffer(Parcel* parcel, |
| 104 | const uint8_t* data, size_t dataSize, |
| 105 | const size_t* objects, size_t objectsSize, |
| 106 | void* cookie); |
| 107 | |
| 108 | const sp<ProcessState> mProcess; |
Dianne Hackborn | 887f355 | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 109 | const pid_t mMyThreadId; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 110 | Vector<BBinder*> mPendingStrongDerefs; |
| 111 | Vector<RefBase::weakref_type*> mPendingWeakDerefs; |
Dianne Hackborn | 887f355 | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 112 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 113 | Parcel mIn; |
| 114 | Parcel mOut; |
| 115 | status_t mLastError; |
| 116 | pid_t mCallingPid; |
| 117 | uid_t mCallingUid; |
Brad Fitzpatrick | 27b3a7a | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 118 | int32_t mStrictModePolicy; |
Brad Fitzpatrick | 0234376 | 2010-08-30 16:01:16 -0700 | [diff] [blame^] | 119 | int32_t mLastTransactionBinderFlags; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 120 | }; |
Brad Fitzpatrick | 27b3a7a | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 121 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 122 | }; // namespace android |
| 123 | |
| 124 | // --------------------------------------------------------------------------- |
| 125 | |
| 126 | #endif // ANDROID_IPC_THREAD_STATE_H |