OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SECURE_MEM_H__ | 5 #ifndef SECURE_MEM_H__ |
6 #define SECURE_MEM_H__ | 6 #define SECURE_MEM_H__ |
7 | 7 |
8 #include <stdlib.h> | 8 #include <stdlib.h> |
9 #include "linux_syscall_support.h" | 9 #include "linux_syscall_support.h" |
10 | 10 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 // of safety, e.g. for thread exit. | 157 // of safety, e.g. for thread exit. |
158 SEND_LOCKED_SYNC, | 158 SEND_LOCKED_SYNC, |
159 }; | 159 }; |
160 | 160 |
161 // Sends a system call to the trusted thread for execution. | 161 // Sends a system call to the trusted thread for execution. |
162 static void sendSystemCall(const SyscallRequestInfo& rpc, LockType type) { | 162 static void sendSystemCall(const SyscallRequestInfo& rpc, LockType type) { |
163 sendSystemCallInternal(rpc, type); | 163 sendSystemCallInternal(rpc, type); |
164 } | 164 } |
165 template<class T1> static | 165 template<class T1> static |
166 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, T1 arg1) { | 166 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, T1 arg1) { |
167 sendSystemCallInternal(rpc, type, (void*)arg1); | 167 sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1)); |
168 } | 168 } |
169 template<class T1, class T2> static | 169 template<class T1, class T2> static |
170 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, | 170 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, |
171 T1 arg1, T2 arg2) { | 171 T1 arg1, T2 arg2) { |
172 sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2); | 172 sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1), |
| 173 reinterpret_cast<void*>(arg2)); |
173 } | 174 } |
174 template<class T1, class T2, class T3> static | 175 template<class T1, class T2, class T3> static |
175 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, | 176 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, |
176 T1 arg1, T2 arg2, T3 arg3) { | 177 T1 arg1, T2 arg2, T3 arg3) { |
177 sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3); | 178 sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1), |
| 179 reinterpret_cast<void*>(arg2), |
| 180 reinterpret_cast<void*>(arg3)); |
178 } | 181 } |
179 template<class T1, class T2, class T3, class T4> static | 182 template<class T1, class T2, class T3, class T4> static |
180 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, | 183 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, |
181 T1 arg1, T2 arg2, T3 arg3, T4 arg4) { | 184 T1 arg1, T2 arg2, T3 arg3, T4 arg4) { |
182 sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3, | 185 sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1), |
183 (void*)arg4); | 186 reinterpret_cast<void*>(arg2), |
| 187 reinterpret_cast<void*>(arg3), |
| 188 reinterpret_cast<void*>(arg4)); |
184 } | 189 } |
185 template<class T1, class T2, class T3, class T4, class T5> static | 190 template<class T1, class T2, class T3, class T4, class T5> static |
186 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, | 191 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, |
187 T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5) { | 192 T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5) { |
188 sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3, | 193 sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1), |
189 (void*)arg4, (void*)arg5); | 194 reinterpret_cast<void*>(arg2), |
| 195 reinterpret_cast<void*>(arg3), |
| 196 reinterpret_cast<void*>(arg4), |
| 197 reinterpret_cast<void*>(arg5)); |
190 } | 198 } |
191 template<class T1, class T2, class T3, class T4, class T5, class T6> static | 199 template<class T1, class T2, class T3, class T4, class T5, class T6> static |
192 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, | 200 void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, |
193 T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, | 201 T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, |
194 Args* newSecureMem = 0) { | 202 Args* newSecureMem = 0) { |
195 sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3, | 203 sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1), |
196 (void*)arg4, (void*)arg5, (void*)arg6, | 204 reinterpret_cast<void*>(arg2), |
197 newSecureMem); | 205 reinterpret_cast<void*>(arg3), |
| 206 reinterpret_cast<void*>(arg4), |
| 207 reinterpret_cast<void*>(arg5), |
| 208 reinterpret_cast<void*>(arg6), newSecureMem); |
198 } | 209 } |
199 | 210 |
200 private: | 211 private: |
201 // Allows the trusted process to check whether the parent process still | 212 // Allows the trusted process to check whether the parent process still |
202 // exists. If it doesn't, kill the trusted process. | 213 // exists. If it doesn't, kill the trusted process. |
203 static void dieIfParentDied(int parentMapsFd); | 214 static void dieIfParentDied(int parentMapsFd); |
204 | 215 |
205 static void sendSystemCallInternal(const SyscallRequestInfo& rpc, | 216 static void sendSystemCallInternal(const SyscallRequestInfo& rpc, |
206 LockType type, | 217 LockType type, |
207 void* arg1 = 0, void* arg2 = 0, | 218 void* arg1 = 0, void* arg2 = 0, |
208 void* arg3 = 0, void* arg4 = 0, | 219 void* arg3 = 0, void* arg4 = 0, |
209 void* arg5 = 0, void* arg6 = 0, | 220 void* arg5 = 0, void* arg6 = 0, |
210 Args* newSecureMem = 0); | 221 Args* newSecureMem = 0); |
211 }; | 222 }; |
212 | 223 |
213 } // namespace | 224 } // namespace |
214 | 225 |
215 #endif // SECURE_MEM_H__ | 226 #endif // SECURE_MEM_H__ |
OLD | NEW |