OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Crashpad Authors. All rights reserved. | |
2 // | |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 // you may not use this file except in compliance with the License. | |
5 // You may obtain a copy of the License at | |
6 // | |
7 // http://www.apache.org/licenses/LICENSE-2.0 | |
8 // | |
9 // Unless required by applicable law or agreed to in writing, software | |
10 // distributed under the License is distributed on an "AS IS" BASIS, | |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 // See the License for the specific language governing permissions and | |
13 // limitations under the License. | |
14 | |
15 #include "util/win/registration_protocol_win.h" | |
16 | |
17 #include <windows.h> | |
18 | |
19 #include "base/logging.h" | |
20 | |
21 namespace crashpad { | |
22 namespace internal { | |
23 | |
24 bool RegisterWithCrashHandlerServer( | |
25 const base::string16& pipe_name, | |
26 const crashpad::RegistrationRequest& request, | |
27 crashpad::RegistrationResponse* response) { | |
28 HANDLE pipe = CreateFile(pipe_name.c_str(), | |
scottmg
2015/08/27 01:04:38
I realized this does need to retry. We only have t
| |
29 GENERIC_READ | GENERIC_WRITE, | |
30 0, | |
31 nullptr, | |
32 OPEN_EXISTING, | |
33 SECURITY_SQOS_PRESENT | SECURITY_IDENTIFICATION, | |
34 nullptr); | |
35 if (pipe == INVALID_HANDLE_VALUE) { | |
36 PLOG(ERROR) << "CreateFile"; | |
37 return false; | |
38 } | |
39 DWORD mode = PIPE_READMODE_MESSAGE; | |
40 if (!SetNamedPipeHandleState(pipe, &mode, nullptr, nullptr)) { | |
41 PLOG(ERROR) << "SetNamedPipeHandleState"; | |
42 return false; | |
43 } | |
44 DWORD bytes_read = 0; | |
45 BOOL result = | |
46 TransactNamedPipe(pipe, | |
47 // This is [in], but is incorrectly declared non-const. | |
48 const_cast<crashpad::RegistrationRequest*>(&request), | |
49 sizeof(request), | |
50 response, | |
51 sizeof(*response), | |
52 &bytes_read, | |
53 nullptr); | |
54 if (!result) { | |
55 PLOG(ERROR) << "TransactNamedPipe"; | |
56 return false; | |
57 } | |
58 if (bytes_read != sizeof(*response)) { | |
59 LOG(ERROR) << "TransactNamedPipe read incorrect number of bytes"; | |
60 return false; | |
61 } | |
62 return true; | |
63 } | |
64 | |
65 } // namespace internal | |
66 } // namespace crashpad | |
OLD | NEW |