OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "content/browser/bad_message.h" | 5 #include "content/browser/bad_message.h" |
6 | 6 |
| 7 #include "base/bind.h" |
7 #include "base/logging.h" | 8 #include "base/logging.h" |
8 #include "base/metrics/sparse_histogram.h" | 9 #include "base/metrics/sparse_histogram.h" |
9 #include "content/public/browser/browser_message_filter.h" | 10 #include "content/public/browser/browser_message_filter.h" |
| 11 #include "content/public/browser/browser_thread.h" |
10 #include "content/public/browser/render_process_host.h" | 12 #include "content/public/browser/render_process_host.h" |
11 | 13 |
12 namespace content { | 14 namespace content { |
13 namespace bad_message { | 15 namespace bad_message { |
14 | 16 |
15 namespace { | 17 namespace { |
16 | 18 |
17 void LogBadMessage(BadMessageReason reason) { | 19 void LogBadMessage(BadMessageReason reason) { |
18 LOG(ERROR) << "Terminating renderer for bad IPC message, reason " << reason; | 20 LOG(ERROR) << "Terminating renderer for bad IPC message, reason " << reason; |
19 UMA_HISTOGRAM_SPARSE_SLOWLY("Stability.BadMessageTerminated.Content", reason); | 21 UMA_HISTOGRAM_SPARSE_SLOWLY("Stability.BadMessageTerminated.Content", reason); |
20 } | 22 } |
21 | 23 |
| 24 void ReceivedBadMessageOnUIThread(int render_process_id, |
| 25 BadMessageReason reason) { |
| 26 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 27 RenderProcessHost* host = RenderProcessHost::FromID(render_process_id); |
| 28 if (host) |
| 29 ReceivedBadMessage(host, reason); |
| 30 } |
| 31 |
22 } // namespace | 32 } // namespace |
23 | 33 |
24 void ReceivedBadMessage(RenderProcessHost* host, BadMessageReason reason) { | 34 void ReceivedBadMessage(RenderProcessHost* host, BadMessageReason reason) { |
25 LogBadMessage(reason); | 35 LogBadMessage(reason); |
26 host->ShutdownForBadMessage(); | 36 host->ShutdownForBadMessage(); |
27 } | 37 } |
28 | 38 |
| 39 void ReceivedBadMessage(int render_process_id, BadMessageReason reason) { |
| 40 if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) { |
| 41 BrowserThread::PostTask( |
| 42 BrowserThread::UI, |
| 43 FROM_HERE, |
| 44 base::Bind(&ReceivedBadMessageOnUIThread, render_process_id, reason)); |
| 45 return; |
| 46 } |
| 47 ReceivedBadMessageOnUIThread(render_process_id, reason); |
| 48 } |
| 49 |
29 void ReceivedBadMessage(BrowserMessageFilter* filter, BadMessageReason reason) { | 50 void ReceivedBadMessage(BrowserMessageFilter* filter, BadMessageReason reason) { |
30 LogBadMessage(reason); | 51 LogBadMessage(reason); |
31 filter->ShutdownForBadMessage(); | 52 filter->ShutdownForBadMessage(); |
32 } | 53 } |
33 | 54 |
34 } // namespace bad_message | 55 } // namespace bad_message |
35 } // namespace content | 56 } // namespace content |
OLD | NEW |