1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
ipc / ipc_channel_mojo_unittest.cc [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ipc/ipc_channel_mojo.h"
#include <stddef.h>
#include <stdint.h>
#include <atomic>
#include <cstdint>
#include <memory>
#include <optional>
#include <utility>
#include "base/base_paths.h"
#include "base/containers/queue.h"
#include "base/containers/span.h"
#include "base/files/file.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/location.h"
#include "base/memory/platform_shared_memory_region.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/read_only_shared_memory_region.h"
#include "base/memory/shared_memory_mapping.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/memory/writable_shared_memory_region.h"
#include "base/message_loop/message_pump_type.h"
#include "base/path_service.h"
#include "base/pickle.h"
#include "base/process/process.h"
#include "base/run_loop.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/test/test_io_thread.h"
#include "base/test/test_shared_memory_util.h"
#include "base/test/test_timeouts.h"
#include "base/threading/thread.h"
#include "build/build_config.h"
#include "ipc/ipc_channel_mojo_unittest.test-mojom.h"
#include "ipc/ipc_message.h"
#include "ipc/ipc_message_utils.h"
#include "ipc/ipc_mojo_handle_attachment.h"
#include "ipc/ipc_mojo_message_helper.h"
#include "ipc/ipc_mojo_param_traits.h"
#include "ipc/ipc_sync_channel.h"
#include "ipc/ipc_sync_message.h"
#include "ipc/ipc_test.test-mojom.h"
#include "ipc/ipc_test_base.h"
#include "ipc/ipc_test_channel_listener.h"
#include "ipc/urgent_message_observer.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/features.h"
#include "mojo/public/cpp/bindings/lib/validation_errors.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "mojo/public/cpp/bindings/self_owned_associated_receiver.h"
#include "mojo/public/cpp/bindings/urgent_message_scope.h"
#include "mojo/public/cpp/system/functions.h"
#include "mojo/public/cpp/system/wait.h"
#include "testing/gtest/include/gtest/gtest.h"
#if BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
#include "base/file_descriptor_posix.h"
#include "ipc/ipc_platform_file_attachment_posix.h"
#endif
namespace ipc_channel_mojo_unittest {
namespace {
void SendString(IPC::Sender* sender, const std::string& str) {
IPC::Message* message = new IPC::Message(0, 2, IPC::Message::PRIORITY_NORMAL);
message->WriteString(str);
ASSERT_TRUE(sender->Send(message));
}
void SendValue(IPC::Sender* sender, int32_t value) {
IPC::Message* message = new IPC::Message(0, 2, IPC::Message::PRIORITY_NORMAL);
message->WriteInt(value);
ASSERT_TRUE(sender->Send(message));
}
class ListenerThatExpectsOK : public IPC::Listener {
public:
explicit ListenerThatExpectsOK(base::OnceClosure quit_closure)
: received_ok_(false), quit_closure_(std::move(quit_closure)) {}
~ListenerThatExpectsOK() override = default;
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
std::string should_be_ok;
EXPECT_TRUE(iter.ReadString(&should_be_ok));
EXPECT_EQ(should_be_ok, "OK");
received_ok_ = true;
std::move(quit_closure_).Run();
return true;
}
void OnChannelError() override {
// The connection should be healthy while the listener is waiting
// message. An error can occur after that because the peer
// process dies.
CHECK(received_ok_);
}
static void SendOK(IPC::Sender* sender) { SendString(sender, "OK"); }
private:
bool received_ok_;
base::OnceClosure quit_closure_;
};
class TestListenerBase : public IPC::Listener {
public:
explicit TestListenerBase(base::OnceClosure quit_closure)
: quit_closure_(std::move(quit_closure)) {}
~TestListenerBase() override = default;
void OnChannelError() override { RunQuitClosure(); }
void set_sender(IPC::Sender* sender) { sender_ = sender; }
IPC::Sender* sender() const { return sender_; }
void RunQuitClosure() {
if (quit_closure_)
std::move(quit_closure_).Run();
}
private:
raw_ptr<IPC::Sender> sender_ = nullptr;
base::OnceClosure quit_closure_;
};
using IPCChannelMojoTest = IPCChannelMojoTestBase;
class TestChannelListenerWithExtraExpectations
: public IPC::TestChannelListener {
public:
TestChannelListenerWithExtraExpectations() : is_connected_called_(false) {}
void OnChannelConnected(int32_t peer_pid) override {
IPC::TestChannelListener::OnChannelConnected(peer_pid);
EXPECT_TRUE(base::kNullProcessId != peer_pid);
is_connected_called_ = true;
}
bool is_connected_called() const { return is_connected_called_; }
private:
bool is_connected_called_;
};
TEST_F(IPCChannelMojoTest, ConnectedFromClient) {
Init("IPCChannelMojoTestClient");
// Set up IPC channel and start client.
TestChannelListenerWithExtraExpectations listener;
base::RunLoop loop;
listener.set_quit_closure(loop.QuitWhenIdleClosure());
CreateChannel(&listener);
listener.Init(sender());
ASSERT_TRUE(ConnectChannel());
IPC::TestChannelListener::SendOneMessage(sender(), "hello from parent");
loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
EXPECT_TRUE(listener.is_connected_called());
EXPECT_TRUE(listener.HasSentAll());
DestroyChannel();
}
// A long running process that connects to us
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(IPCChannelMojoTestClient) {
TestChannelListenerWithExtraExpectations listener;
Connect(&listener);
listener.Init(channel());
IPC::TestChannelListener::SendOneMessage(channel(), "hello from child");
base::RunLoop loop;
listener.set_quit_closure(loop.QuitWhenIdleClosure());
loop.Run();
EXPECT_TRUE(listener.is_connected_called());
EXPECT_TRUE(listener.HasSentAll());
Close();
}
class ListenerExpectingErrors : public TestListenerBase {
public:
ListenerExpectingErrors(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)), has_error_(false) {}
bool OnMessageReceived(const IPC::Message& message) override { return true; }
void OnChannelError() override {
has_error_ = true;
TestListenerBase::OnChannelError();
}
bool has_error() const { return has_error_; }
private:
bool has_error_;
};
class ListenerThatQuits : public IPC::Listener {
public:
explicit ListenerThatQuits(base::OnceClosure quit_closure)
: quit_closure_(std::move(quit_closure)) {}
bool OnMessageReceived(const IPC::Message& message) override { return true; }
void OnChannelConnected(int32_t peer_pid) override {
std::move(quit_closure_).Run();
}
private:
base::OnceClosure quit_closure_;
};
// A long running process that connects to us.
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(IPCChannelMojoErraticTestClient) {
base::RunLoop run_loop;
ListenerThatQuits listener(run_loop.QuitClosure());
Connect(&listener);
run_loop.Run();
Close();
}
TEST_F(IPCChannelMojoTest, SendFailWithPendingMessages) {
Init("IPCChannelMojoErraticTestClient");
// Set up IPC channel and start client.
base::RunLoop run_loop;
ListenerExpectingErrors listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
// This matches a value in mojo/edk/system/constants.h
const int kMaxMessageNumBytes = 4 * 1024 * 1024;
std::string overly_large_data(kMaxMessageNumBytes, '*');
// This messages are queued as pending.
for (size_t i = 0; i < 10; ++i) {
IPC::TestChannelListener::SendOneMessage(sender(),
overly_large_data.c_str());
}
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
EXPECT_TRUE(listener.has_error());
DestroyChannel();
}
class ListenerThatBindsATestStructPasser : public IPC::Listener,
public IPC::mojom::TestStructPasser {
public:
ListenerThatBindsATestStructPasser() = default;
~ListenerThatBindsATestStructPasser() override = default;
bool OnMessageReceived(const IPC::Message& message) override { return true; }
void OnChannelConnected(int32_t peer_pid) override {}
void OnChannelError() override { NOTREACHED(); }
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
CHECK_EQ(interface_name, IPC::mojom::TestStructPasser::Name_);
receiver_.Bind(
mojo::PendingAssociatedReceiver<IPC::mojom::TestStructPasser>(
std::move(handle)));
}
private:
// IPC::mojom::TestStructPasser:
void Pass(IPC::mojom::TestStructPtr) override { NOTREACHED(); }
mojo::AssociatedReceiver<IPC::mojom::TestStructPasser> receiver_{this};
};
class ListenerThatExpectsNoError : public IPC::Listener {
public:
ListenerThatExpectsNoError(base::OnceClosure connect_closure,
base::OnceClosure quit_closure)
: connect_closure_(std::move(connect_closure)),
quit_closure_(std::move(quit_closure)) {}
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
std::string should_be_ok;
EXPECT_TRUE(iter.ReadString(&should_be_ok));
EXPECT_EQ(should_be_ok, "OK");
std::move(quit_closure_).Run();
return true;
}
void OnChannelConnected(int32_t peer_pid) override {
std::move(connect_closure_).Run();
}
void OnChannelError() override { NOTREACHED(); }
private:
base::OnceClosure connect_closure_;
base::OnceClosure quit_closure_;
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(
IPCChannelMojoNoImplicitChanelClosureClient) {
base::RunLoop wait_to_connect_loop;
base::RunLoop wait_to_quit_loop;
ListenerThatExpectsNoError listener(wait_to_connect_loop.QuitClosure(),
wait_to_quit_loop.QuitClosure());
Connect(&listener);
wait_to_connect_loop.Run();
mojo::AssociatedRemote<IPC::mojom::TestStructPasser> passer;
channel()->GetAssociatedInterfaceSupport()->GetRemoteAssociatedInterface(
passer.BindNewEndpointAndPassReceiver());
// This avoids hitting DCHECKs in the serialization code meant to stop us from
// making such "mistakes" as the one we're about to make below.
mojo::internal::SerializationWarningObserverForTesting suppress_those_dchecks;
// Send an invalid message. The TestStruct argument is not allowed to be null.
// This will elicit a validation error in the parent process, but should not
// actually disconnect the channel.
passer->Pass(nullptr);
// Wait until the parent says it's OK to quit, so it has time to verify its
// expected behavior.
wait_to_quit_loop.Run();
Close();
}
TEST_F(IPCChannelMojoTest, NoImplicitChannelClosure) {
// Verifies that OnChannelError is not invoked due to conditions other than
// peer closure (e.g. a malformed inbound message). Instead we should always
// be able to handle validation errors via Mojo bad message reporting.
// NOTE: We can't create a RunLoop before Init() is called, but we have to set
// the default ProcessErrorCallback (which we want to reference the RunLoop)
// before Init() launches a child process. Hence the std::optional here.
std::optional<base::RunLoop> wait_for_error_loop;
bool process_error_received = false;
mojo::SetDefaultProcessErrorHandler(
base::BindLambdaForTesting([&](const std::string&) {
process_error_received = true;
wait_for_error_loop->Quit();
}));
Init("IPCChannelMojoNoImplicitChanelClosureClient");
wait_for_error_loop.emplace();
ListenerThatBindsATestStructPasser listener;
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
wait_for_error_loop->Run();
EXPECT_TRUE(process_error_received);
mojo::SetDefaultProcessErrorHandler(base::NullCallback());
// Tell the child it can quit and wait for it to shut down.
ListenerThatExpectsOK::SendOK(channel());
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
struct TestingMessagePipe {
TestingMessagePipe() {
EXPECT_EQ(MOJO_RESULT_OK, mojo::CreateMessagePipe(nullptr, &self, &peer));
}
mojo::ScopedMessagePipeHandle self;
mojo::ScopedMessagePipeHandle peer;
};
class HandleSendingHelper {
public:
static std::string GetSendingFileContent() { return "Hello"; }
static void WritePipe(IPC::Message* message, TestingMessagePipe* pipe) {
std::string content = HandleSendingHelper::GetSendingFileContent();
EXPECT_EQ(MOJO_RESULT_OK,
mojo::WriteMessageRaw(pipe->self.get(), &content[0],
static_cast<uint32_t>(content.size()),
nullptr, 0, 0));
EXPECT_TRUE(IPC::MojoMessageHelper::WriteMessagePipeTo(
message, std::move(pipe->peer)));
}
static void WritePipeThenSend(IPC::Sender* sender, TestingMessagePipe* pipe) {
IPC::Message* message =
new IPC::Message(0, 2, IPC::Message::PRIORITY_NORMAL);
WritePipe(message, pipe);
ASSERT_TRUE(sender->Send(message));
}
static void ReadReceivedPipe(const IPC::Message& message,
base::PickleIterator* iter) {
mojo::ScopedMessagePipeHandle pipe;
EXPECT_TRUE(
IPC::MojoMessageHelper::ReadMessagePipeFrom(&message, iter, &pipe));
std::vector<uint8_t> content;
ASSERT_EQ(MOJO_RESULT_OK,
mojo::Wait(pipe.get(), MOJO_HANDLE_SIGNAL_READABLE));
EXPECT_EQ(MOJO_RESULT_OK,
mojo::ReadMessageRaw(pipe.get(), &content, nullptr, 0));
EXPECT_EQ(std::string(content.begin(), content.end()),
GetSendingFileContent());
}
#if BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
static base::FilePath GetSendingFilePath(const base::FilePath& dir_path) {
return dir_path.Append("ListenerThatExpectsFile.txt");
}
static void WriteFile(IPC::Message* message, base::File& file) {
file.WriteAtCurrentPos(base::as_byte_span(GetSendingFileContent()));
file.Flush();
message->WriteAttachment(new IPC::internal::PlatformFileAttachment(
base::ScopedFD(file.TakePlatformFile())));
}
static void WriteFileThenSend(IPC::Sender* sender, base::File& file) {
IPC::Message* message =
new IPC::Message(0, 2, IPC::Message::PRIORITY_NORMAL);
WriteFile(message, file);
ASSERT_TRUE(sender->Send(message));
}
static void WriteFileAndPipeThenSend(IPC::Sender* sender,
base::File& file,
TestingMessagePipe* pipe) {
IPC::Message* message =
new IPC::Message(0, 2, IPC::Message::PRIORITY_NORMAL);
WriteFile(message, file);
WritePipe(message, pipe);
ASSERT_TRUE(sender->Send(message));
}
static void ReadReceivedFile(const IPC::Message& message,
base::PickleIterator* iter) {
scoped_refptr<base::Pickle::Attachment> attachment;
EXPECT_TRUE(message.ReadAttachment(iter, &attachment));
EXPECT_EQ(
IPC::MessageAttachment::Type::PLATFORM_FILE,
static_cast<IPC::MessageAttachment*>(attachment.get())->GetType());
base::File file(
static_cast<IPC::internal::PlatformFileAttachment*>(attachment.get())
->TakePlatformFile());
std::string content(GetSendingFileContent().size(), ' ');
file.Read(0, base::as_writable_byte_span(content));
EXPECT_EQ(content, GetSendingFileContent());
}
#endif
};
class ListenerThatExpectsMessagePipe : public TestListenerBase {
public:
ListenerThatExpectsMessagePipe(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)) {}
~ListenerThatExpectsMessagePipe() override = default;
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
HandleSendingHelper::ReadReceivedPipe(message, &iter);
ListenerThatExpectsOK::SendOK(sender());
return true;
}
};
TEST_F(IPCChannelMojoTest, SendMessagePipe) {
Init("IPCChannelMojoTestSendMessagePipeClient");
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
TestingMessagePipe pipe;
HandleSendingHelper::WritePipeThenSend(channel(), &pipe);
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(IPCChannelMojoTestSendMessagePipeClient) {
base::RunLoop run_loop;
ListenerThatExpectsMessagePipe listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
void ReadOK(mojo::MessagePipeHandle pipe) {
std::vector<uint8_t> should_be_ok;
CHECK_EQ(MOJO_RESULT_OK, mojo::Wait(pipe, MOJO_HANDLE_SIGNAL_READABLE));
CHECK_EQ(MOJO_RESULT_OK,
mojo::ReadMessageRaw(pipe, &should_be_ok, nullptr, 0));
EXPECT_EQ("OK", std::string(should_be_ok.begin(), should_be_ok.end()));
}
void WriteOK(mojo::MessagePipeHandle pipe) {
std::string ok("OK");
CHECK_EQ(MOJO_RESULT_OK,
mojo::WriteMessageRaw(pipe, &ok[0], static_cast<uint32_t>(ok.size()),
nullptr, 0, 0));
}
class ListenerThatExpectsMessagePipeUsingParamTrait : public TestListenerBase {
public:
explicit ListenerThatExpectsMessagePipeUsingParamTrait(
base::OnceClosure quit_closure,
bool receiving_valid)
: TestListenerBase(std::move(quit_closure)),
receiving_valid_(receiving_valid) {}
~ListenerThatExpectsMessagePipeUsingParamTrait() override = default;
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
mojo::MessagePipeHandle handle;
EXPECT_TRUE(IPC::ParamTraits<mojo::MessagePipeHandle>::Read(&message, &iter,
&handle));
EXPECT_EQ(handle.is_valid(), receiving_valid_);
if (receiving_valid_) {
ReadOK(handle);
MojoClose(handle.value());
}
ListenerThatExpectsOK::SendOK(sender());
return true;
}
private:
bool receiving_valid_;
};
class ParamTraitMessagePipeClient : public IpcChannelMojoTestClient {
public:
void RunTest(bool receiving_valid_handle) {
base::RunLoop run_loop;
ListenerThatExpectsMessagePipeUsingParamTrait listener(
run_loop.QuitClosure(), receiving_valid_handle);
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
};
TEST_F(IPCChannelMojoTest, ParamTraitValidMessagePipe) {
Init("ParamTraitValidMessagePipeClient");
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
TestingMessagePipe pipe;
std::unique_ptr<IPC::Message> message(new IPC::Message());
IPC::ParamTraits<mojo::MessagePipeHandle>::Write(message.get(),
pipe.peer.release());
WriteOK(pipe.self.get());
channel()->Send(message.release());
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
ParamTraitValidMessagePipeClient,
ParamTraitMessagePipeClient) {
RunTest(true);
}
TEST_F(IPCChannelMojoTest, ParamTraitInvalidMessagePipe) {
Init("ParamTraitInvalidMessagePipeClient");
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
mojo::MessagePipeHandle invalid_handle;
std::unique_ptr<IPC::Message> message(new IPC::Message());
IPC::ParamTraits<mojo::MessagePipeHandle>::Write(message.get(),
invalid_handle);
channel()->Send(message.release());
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
ParamTraitInvalidMessagePipeClient,
ParamTraitMessagePipeClient) {
RunTest(false);
}
TEST_F(IPCChannelMojoTest, SendFailAfterClose) {
Init("IPCChannelMojoTestSendOkClient");
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
run_loop.Run();
channel()->Close();
ASSERT_FALSE(channel()->Send(new IPC::Message()));
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
class ListenerSendingOneOk : public TestListenerBase {
public:
ListenerSendingOneOk(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)) {}
bool OnMessageReceived(const IPC::Message& message) override { return true; }
void OnChannelConnected(int32_t peer_pid) override {
ListenerThatExpectsOK::SendOK(sender());
RunQuitClosure();
}
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(IPCChannelMojoTestSendOkClient) {
base::RunLoop run_loop;
ListenerSendingOneOk listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
class ChannelProxyRunner {
public:
ChannelProxyRunner(mojo::ScopedMessagePipeHandle handle,
bool for_server)
: for_server_(for_server),
handle_(std::move(handle)),
io_thread_("ChannelProxyRunner IO thread"),
never_signaled_(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED) {
}
ChannelProxyRunner(const ChannelProxyRunner&) = delete;
ChannelProxyRunner& operator=(const ChannelProxyRunner&) = delete;
void CreateProxy(
IPC::Listener* listener,
IPC::UrgentMessageObserver* urgent_message_observer = nullptr) {
io_thread_.StartWithOptions(
base::Thread::Options(base::MessagePumpType::IO, 0));
proxy_ = IPC::SyncChannel::Create(
listener, io_thread_.task_runner(),
base::SingleThreadTaskRunner::GetCurrentDefault(), &never_signaled_);
proxy_->SetUrgentMessageObserver(urgent_message_observer);
}
void RunProxy() {
std::unique_ptr<IPC::ChannelFactory> factory;
if (for_server_) {
factory = IPC::ChannelMojo::CreateServerFactory(
std::move(handle_), io_thread_.task_runner(),
base::SingleThreadTaskRunner::GetCurrentDefault());
} else {
factory = IPC::ChannelMojo::CreateClientFactory(
std::move(handle_), io_thread_.task_runner(),
base::SingleThreadTaskRunner::GetCurrentDefault());
}
proxy_->Init(std::move(factory), true);
}
IPC::ChannelProxy* proxy() { return proxy_.get(); }
private:
const bool for_server_;
mojo::ScopedMessagePipeHandle handle_;
base::Thread io_thread_;
base::WaitableEvent never_signaled_;
std::unique_ptr<IPC::ChannelProxy> proxy_;
};
class IPCChannelProxyMojoTest : public IPCChannelMojoTestBase {
public:
void Init(const std::string& client_name) {
IPCChannelMojoTestBase::Init(client_name);
runner_ = std::make_unique<ChannelProxyRunner>(TakeHandle(), true);
}
void CreateProxy(
IPC::Listener* listener,
IPC::UrgentMessageObserver* urgent_message_observer = nullptr) {
runner_->CreateProxy(listener, urgent_message_observer);
}
void RunProxy() {
runner_->RunProxy();
}
void DestroyProxy() {
runner_.reset();
base::RunLoop().RunUntilIdle();
}
IPC::ChannelProxy* proxy() { return runner_->proxy(); }
private:
std::unique_ptr<ChannelProxyRunner> runner_;
};
class ListenerWithSimpleProxyAssociatedInterface
: public IPC::Listener,
public IPC::mojom::SimpleTestDriver {
public:
static const int kNumMessages;
explicit ListenerWithSimpleProxyAssociatedInterface(
base::OnceClosure quit_closure)
: quit_closure_(std::move(quit_closure)) {}
~ListenerWithSimpleProxyAssociatedInterface() override = default;
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
int32_t should_be_expected;
EXPECT_TRUE(iter.ReadInt(&should_be_expected));
EXPECT_EQ(should_be_expected, next_expected_value_);
num_messages_received_++;
return true;
}
void OnChannelError() override { CHECK(!quit_closure_); }
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
DCHECK_EQ(interface_name, IPC::mojom::SimpleTestDriver::Name_);
receiver_.Bind(
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestDriver>(
std::move(handle)));
}
bool received_all_messages() const {
return num_messages_received_ == kNumMessages && !quit_closure_;
}
private:
// IPC::mojom::SimpleTestDriver:
void ExpectValue(int32_t value) override {
next_expected_value_ = value;
}
void GetExpectedValue(GetExpectedValueCallback callback) override {
std::move(callback).Run(next_expected_value_);
}
void RequestValue(RequestValueCallback callback) override { NOTREACHED(); }
void RequestQuit(RequestQuitCallback callback) override {
std::move(callback).Run();
receiver_.reset();
std::move(quit_closure_).Run();
}
void BindReceiver(
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestDriver> receiver) {
DCHECK(!receiver_.is_bound());
receiver_.Bind(std::move(receiver));
}
int32_t next_expected_value_ = 0;
int num_messages_received_ = 0;
base::OnceClosure quit_closure_;
mojo::AssociatedReceiver<IPC::mojom::SimpleTestDriver> receiver_{this};
};
const int ListenerWithSimpleProxyAssociatedInterface::kNumMessages = 1000;
TEST_F(IPCChannelProxyMojoTest, ProxyThreadAssociatedInterface) {
Init("ProxyThreadAssociatedInterfaceClient");
base::RunLoop run_loop;
ListenerWithSimpleProxyAssociatedInterface listener(run_loop.QuitClosure());
CreateProxy(&listener);
RunProxy();
run_loop.Run();
EXPECT_TRUE(WaitForClientShutdown());
EXPECT_TRUE(listener.received_all_messages());
DestroyProxy();
}
class ChannelProxyClient {
public:
void Init(mojo::ScopedMessagePipeHandle handle) {
runner_ = std::make_unique<ChannelProxyRunner>(std::move(handle), false);
}
void CreateProxy(IPC::Listener* listener) { runner_->CreateProxy(listener); }
void RunProxy() { runner_->RunProxy(); }
void DestroyProxy() {
runner_.reset();
base::RunLoop().RunUntilIdle();
}
void RequestQuitAndWaitForAck(IPC::mojom::SimpleTestDriver* driver) {
base::RunLoop loop;
driver->RequestQuit(loop.QuitClosure());
loop.Run();
}
IPC::ChannelProxy* proxy() { return runner_->proxy(); }
private:
base::test::SingleThreadTaskEnvironment task_environment_;
std::unique_ptr<ChannelProxyRunner> runner_;
};
class DummyListener : public IPC::Listener {
public:
// IPC::Listener
bool OnMessageReceived(const IPC::Message& message) override { return true; }
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
ProxyThreadAssociatedInterfaceClient,
ChannelProxyClient) {
DummyListener listener;
CreateProxy(&listener);
RunProxy();
// Send a bunch of interleaved messages, alternating between the associated
// interface and a legacy IPC::Message.
mojo::AssociatedRemote<IPC::mojom::SimpleTestDriver> driver;
proxy()->GetRemoteAssociatedInterface(
driver.BindNewEndpointAndPassReceiver());
for (int i = 0; i < ListenerWithSimpleProxyAssociatedInterface::kNumMessages;
++i) {
driver->ExpectValue(i);
SendValue(proxy(), i);
}
base::RunLoop run_loop;
driver->RequestQuit(run_loop.QuitClosure());
run_loop.Run();
DestroyProxy();
}
class ListenerWithIndirectProxyAssociatedInterface
: public IPC::Listener,
public IPC::mojom::IndirectTestDriver,
public IPC::mojom::PingReceiver {
public:
ListenerWithIndirectProxyAssociatedInterface() = default;
~ListenerWithIndirectProxyAssociatedInterface() override = default;
// IPC::Listener:
bool OnMessageReceived(const IPC::Message& message) override { return true; }
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
DCHECK(!driver_receiver_.is_bound());
DCHECK_EQ(interface_name, IPC::mojom::IndirectTestDriver::Name_);
driver_receiver_.Bind(
mojo::PendingAssociatedReceiver<IPC::mojom::IndirectTestDriver>(
std::move(handle)));
}
void set_ping_handler(const base::RepeatingClosure& handler) {
ping_handler_ = handler;
}
private:
// IPC::mojom::IndirectTestDriver:
void GetPingReceiver(mojo::PendingAssociatedReceiver<IPC::mojom::PingReceiver>
receiver) override {
ping_receiver_receiver_.Bind(std::move(receiver));
}
// IPC::mojom::PingReceiver:
void Ping(PingCallback callback) override {
std::move(callback).Run();
ping_handler_.Run();
}
mojo::AssociatedReceiver<IPC::mojom::IndirectTestDriver> driver_receiver_{
this};
mojo::AssociatedReceiver<IPC::mojom::PingReceiver> ping_receiver_receiver_{
this};
base::RepeatingClosure ping_handler_;
};
TEST_F(IPCChannelProxyMojoTest, ProxyThreadAssociatedInterfaceIndirect) {
// Tests that we can pipeline interface requests and subsequent messages
// targeting proxy thread bindings, and the channel will still dispatch
// messages appropriately.
Init("ProxyThreadAssociatedInterfaceIndirectClient");
ListenerWithIndirectProxyAssociatedInterface listener;
CreateProxy(&listener);
RunProxy();
base::RunLoop loop;
listener.set_ping_handler(loop.QuitClosure());
loop.Run();
EXPECT_TRUE(WaitForClientShutdown());
DestroyProxy();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
ProxyThreadAssociatedInterfaceIndirectClient,
ChannelProxyClient) {
DummyListener listener;
CreateProxy(&listener);
RunProxy();
// Use an interface requested via another interface. On the remote end both
// interfaces are bound on the proxy thread. This ensures that the Ping
// message we send will still be dispatched properly even though the remote
// endpoint may not have been bound yet by the time the message is initially
// processed on the IO thread.
mojo::AssociatedRemote<IPC::mojom::IndirectTestDriver> driver;
mojo::AssociatedRemote<IPC::mojom::PingReceiver> ping_receiver;
proxy()->GetRemoteAssociatedInterface(
driver.BindNewEndpointAndPassReceiver());
driver->GetPingReceiver(ping_receiver.BindNewEndpointAndPassReceiver());
base::RunLoop loop;
ping_receiver->Ping(loop.QuitClosure());
loop.Run();
DestroyProxy();
}
class ListenerWithSyncAssociatedInterface
: public IPC::Listener,
public IPC::mojom::SimpleTestDriver {
public:
ListenerWithSyncAssociatedInterface() = default;
~ListenerWithSyncAssociatedInterface() override = default;
void set_sync_sender(IPC::Sender* sync_sender) { sync_sender_ = sync_sender; }
void RunUntilQuitRequested() {
base::RunLoop loop;
quit_closure_ = loop.QuitClosure();
loop.Run();
}
void CloseBinding() { receiver_.reset(); }
void set_response_value(int32_t response) {
response_value_ = response;
}
private:
// IPC::mojom::SimpleTestDriver:
void ExpectValue(int32_t value) override {
next_expected_value_ = value;
}
void GetExpectedValue(GetExpectedValueCallback callback) override {
std::move(callback).Run(next_expected_value_);
}
void RequestValue(RequestValueCallback callback) override {
std::move(callback).Run(response_value_);
}
void RequestQuit(RequestQuitCallback callback) override {
std::move(quit_closure_).Run();
std::move(callback).Run();
}
// IPC::Listener:
bool OnMessageReceived(const IPC::Message& message) override {
EXPECT_EQ(0u, message.type());
EXPECT_TRUE(message.is_sync());
EXPECT_TRUE(message.should_unblock());
std::unique_ptr<IPC::Message> reply(
IPC::SyncMessage::GenerateReply(&message));
reply->WriteInt(response_value_);
DCHECK(sync_sender_);
EXPECT_TRUE(sync_sender_->Send(reply.release()));
return true;
}
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
DCHECK(!receiver_.is_bound());
DCHECK_EQ(interface_name, IPC::mojom::SimpleTestDriver::Name_);
receiver_.Bind(
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestDriver>(
std::move(handle)));
}
void BindReceiver(
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestDriver> receiver) {
DCHECK(!receiver_.is_bound());
receiver_.Bind(std::move(receiver));
}
raw_ptr<IPC::Sender, DanglingUntriaged> sync_sender_ = nullptr;
int32_t next_expected_value_ = 0;
int32_t response_value_ = 0;
base::OnceClosure quit_closure_;
mojo::AssociatedReceiver<IPC::mojom::SimpleTestDriver> receiver_{this};
};
class SyncReplyReader : public IPC::MessageReplyDeserializer {
public:
explicit SyncReplyReader(int32_t* storage) : storage_(storage) {}
SyncReplyReader(const SyncReplyReader&) = delete;
SyncReplyReader& operator=(const SyncReplyReader&) = delete;
~SyncReplyReader() override = default;
private:
// IPC::MessageReplyDeserializer:
bool SerializeOutputParameters(const IPC::Message& message,
base::PickleIterator iter) override {
if (!iter.ReadInt(storage_))
return false;
return true;
}
raw_ptr<int32_t> storage_;
};
TEST_F(IPCChannelProxyMojoTest, SyncAssociatedInterface) {
Init("SyncAssociatedInterface");
ListenerWithSyncAssociatedInterface listener;
CreateProxy(&listener);
listener.set_sync_sender(proxy());
RunProxy();
// Run the client's simple sanity check to completion.
listener.RunUntilQuitRequested();
// Verify that we can send a sync IPC and service an incoming sync request
// while waiting on it
listener.set_response_value(42);
mojo::AssociatedRemote<IPC::mojom::SimpleTestClient> client;
proxy()->GetRemoteAssociatedInterface(
client.BindNewEndpointAndPassReceiver());
int32_t received_value;
EXPECT_TRUE(client->RequestValue(&received_value));
EXPECT_EQ(42, received_value);
// Do it again. This time the client will send a classical sync IPC to us
// while we wait.
received_value = 0;
EXPECT_TRUE(client->RequestValue(&received_value));
EXPECT_EQ(42, received_value);
// Now make a classical sync IPC request to the client. It will send a
// sync associated interface message to us while we wait.
received_value = 0;
auto request = std::make_unique<IPC::SyncMessage>(
0, 0, IPC::Message::PRIORITY_NORMAL,
std::make_unique<SyncReplyReader>(&received_value));
EXPECT_TRUE(proxy()->Send(request.release()));
EXPECT_EQ(42, received_value);
listener.CloseBinding();
EXPECT_TRUE(WaitForClientShutdown());
DestroyProxy();
}
class SimpleTestClientImpl : public IPC::mojom::SimpleTestClient,
public IPC::Listener {
public:
SimpleTestClientImpl() = default;
SimpleTestClientImpl(const SimpleTestClientImpl&) = delete;
SimpleTestClientImpl& operator=(const SimpleTestClientImpl&) = delete;
~SimpleTestClientImpl() override = default;
void set_driver(IPC::mojom::SimpleTestDriver* driver) { driver_ = driver; }
void set_sync_sender(IPC::Sender* sync_sender) { sync_sender_ = sync_sender; }
void WaitForValueRequest() { Run(); }
void Run() {
run_loop_ = std::make_unique<base::RunLoop>();
run_loop_->Run();
}
void UseSyncSenderForRequest(bool use_sync_sender) {
use_sync_sender_ = use_sync_sender;
}
private:
// IPC::mojom::SimpleTestClient:
void RequestValue(RequestValueCallback callback) override {
int32_t response = 0;
if (use_sync_sender_) {
auto reply = std::make_unique<IPC::SyncMessage>(
0, 0, IPC::Message::PRIORITY_NORMAL,
std::make_unique<SyncReplyReader>(&response));
EXPECT_TRUE(sync_sender_->Send(reply.release()));
} else {
DCHECK(driver_);
EXPECT_TRUE(driver_->RequestValue(&response));
}
std::move(callback).Run(response);
DCHECK(run_loop_);
run_loop_->Quit();
}
// No implementation needed. Only called on an endpoint which never binds its
// receiver.
void BindSync(
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestClient> receiver,
BindSyncCallback callback) override {
NOTREACHED();
}
void GetReceiverWithQueuedSyncMessage(
GetReceiverWithQueuedSyncMessageCallback callback) override {
// Immediately send back a sync IPC over the new pipe and expect the call to
// be interrupted without a reply. Note that we also reply *before* issuing
// the sync call to allow the main test process to make progress.
mojo::AssociatedRemote<IPC::mojom::SimpleTestClient> remote;
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestClient>
queued_receiver;
{
// The nested receiver we send will already know its peer is closed when
// it arrives.
mojo::AssociatedRemote<IPC::mojom::SimpleTestClient> unused;
queued_receiver = unused.BindNewEndpointAndPassReceiver();
}
std::move(callback).Run(remote.BindNewEndpointAndPassReceiver());
EXPECT_FALSE(remote->BindSync(std::move(queued_receiver)));
}
// IPC::Listener:
bool OnMessageReceived(const IPC::Message& message) override {
int32_t response;
DCHECK(driver_);
EXPECT_TRUE(driver_->RequestValue(&response));
std::unique_ptr<IPC::Message> reply(
IPC::SyncMessage::GenerateReply(&message));
reply->WriteInt(response);
EXPECT_TRUE(sync_sender_->Send(reply.release()));
DCHECK(run_loop_);
run_loop_->Quit();
return true;
}
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
DCHECK(!receiver_.is_bound());
DCHECK_EQ(interface_name, IPC::mojom::SimpleTestClient::Name_);
receiver_.Bind(
mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestClient>(
std::move(handle)));
}
bool use_sync_sender_ = false;
mojo::AssociatedReceiver<IPC::mojom::SimpleTestClient> receiver_{this};
raw_ptr<IPC::Sender> sync_sender_ = nullptr;
raw_ptr<IPC::mojom::SimpleTestDriver> driver_ = nullptr;
std::unique_ptr<base::RunLoop> run_loop_;
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(SyncAssociatedInterface,
ChannelProxyClient) {
SimpleTestClientImpl client_impl;
CreateProxy(&client_impl);
client_impl.set_sync_sender(proxy());
RunProxy();
mojo::AssociatedRemote<IPC::mojom::SimpleTestDriver> driver;
proxy()->GetRemoteAssociatedInterface(
driver.BindNewEndpointAndPassReceiver());
client_impl.set_driver(driver.get());
// Simple sync message sanity check.
driver->ExpectValue(42);
int32_t expected_value = 0;
EXPECT_TRUE(driver->GetExpectedValue(&expected_value));
EXPECT_EQ(42, expected_value);
RequestQuitAndWaitForAck(driver.get());
// Wait for the test driver to perform a sync call test with our own sync
// associated interface message nested inside.
client_impl.UseSyncSenderForRequest(false);
client_impl.WaitForValueRequest();
// Wait for the test driver to perform a sync call test with our own classical
// sync IPC nested inside.
client_impl.UseSyncSenderForRequest(true);
client_impl.WaitForValueRequest();
// Wait for the test driver to perform a classical sync IPC request, with our
// own sync associated interface message nested inside.
client_impl.UseSyncSenderForRequest(false);
client_impl.WaitForValueRequest();
DestroyProxy();
}
class ListenerWithClumsyBinder : public IPC::Listener {
public:
ListenerWithClumsyBinder() = default;
~ListenerWithClumsyBinder() override = default;
void RunUntilClientQuit() { run_loop_.Run(); }
private:
// IPC::Listener:
bool OnMessageReceived(const IPC::Message& message) override {
run_loop_.Quit();
return true;
}
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
// Ignore and drop the endpoint so it's closed.
}
base::RunLoop run_loop_;
};
TEST_F(IPCChannelProxyMojoTest, DropAssociatedReceiverWithSyncCallInFlight) {
// Regression test for https://crbug.com/331636067. Verifies that endpoint
// lifetime is properly managed when associated endpoints are serialized into
// a message that gets dropped before transmission.
Init("SyncCallToDroppedReceiver");
ListenerWithClumsyBinder listener;
CreateProxy(&listener);
RunProxy();
listener.RunUntilClientQuit();
EXPECT_TRUE(WaitForClientShutdown());
DestroyProxy();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
SyncCallToDroppedReceiver,
ChannelProxyClient) {
DummyListener listener;
CreateProxy(&listener);
RunProxy();
mojo::AssociatedRemote<mojom::Binder> binder;
proxy()->GetRemoteAssociatedInterface(
binder.BindNewEndpointAndPassReceiver());
// Wait for disconnection to be observed. This way we know any subsequent
// outgoing messages on `binder` will not be sent.
base::RunLoop loop;
binder.set_disconnect_handler(loop.QuitClosure());
loop.Run();
// Send another endpoint over. This receiver will be dropped, and the remote
// should be properly notified of peer closure to terminate the sync call. The
// call should return false (because no reply), but shouldn't hang.
mojo::AssociatedRemote<mojom::Binder> another_binder;
binder->Bind(another_binder.BindNewEndpointAndPassReceiver());
EXPECT_FALSE(another_binder->Ping());
SendString(proxy(), "ok bye");
DestroyProxy();
}
// TODO(crbug.com/40940810): Disabled for flaky behavior of forced
// process termination. Will be re-enabled with a fix.
TEST_F(IPCChannelProxyMojoTest, DISABLED_SyncAssociatedInterfacePipeError) {
// Regression test for https://crbug.com/1494461.
Init("SyncAssociatedInterfacePipeError");
ListenerWithSyncAssociatedInterface listener;
CreateProxy(&listener);
listener.set_sync_sender(proxy());
RunProxy();
mojo::AssociatedRemote<IPC::mojom::SimpleTestClient> client;
proxy()->GetRemoteAssociatedInterface(
client.BindNewEndpointAndPassReceiver());
mojo::AssociatedRemote<IPC::mojom::Terminator> terminator;
proxy()->GetRemoteAssociatedInterface(
terminator.BindNewEndpointAndPassReceiver());
// The setup here is to have the client process add a new associated endpoint
// with a sync message queued on it, towards us. As soon as we receive the
// endpoint we close it, but its state (including its inbound sync message
// queue) isn't actually destroyed until the peer is closed too.
//
// Note that the client creates the endpoint rather than us, because client
// endpoints are assigned lower interface IDs and will thus elicit the
// necessary endpoint ordering to trigger https://crbug.com/1494461 below.
{
base::RunLoop loop;
client->GetReceiverWithQueuedSyncMessage(base::BindLambdaForTesting(
[&loop](mojo::PendingAssociatedReceiver<IPC::mojom::SimpleTestClient>
receiver) { loop.Quit(); }));
loop.Run();
}
// If https://crbug.com/1494461 is present, it should be hit within this call,
// as soon as client termination signals a local pipe error and marks the
// above endpoint's peer as closed.
EXPECT_FALSE(terminator->Terminate());
#if BUILDFLAG(IS_ANDROID)
// NOTE: On Android, the client's forced termination will look like an error,
// but it is not.
WaitForClientShutdown();
#else
EXPECT_TRUE(WaitForClientShutdown());
#endif
DestroyProxy();
}
class TerminatorImpl : public IPC::mojom::Terminator {
public:
TerminatorImpl() = default;
~TerminatorImpl() override = default;
static void Create(
mojo::PendingAssociatedReceiver<IPC::mojom::Terminator> receiver) {
mojo::MakeSelfOwnedAssociatedReceiver(std::make_unique<TerminatorImpl>(),
std::move(receiver));
}
// IPC::mojom::Terminator:
void Terminate(TerminateCallback callback) override {
base::Process::TerminateCurrentProcessImmediately(0);
}
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
SyncAssociatedInterfacePipeError,
ChannelProxyClient) {
SimpleTestClientImpl client_impl;
CreateProxy(&client_impl);
// Let the IO thread receive a message to self-terminate this process. This
// is used to forcibly shut down the client on the test's request. Without
// doing this (and doing a clean shutdown instead) the client will clean up
// interfaces and make it impossible to trigger the regression path for
// https://crbug.com/1494461.
proxy()->AddAssociatedInterfaceForIOThread(
base::BindRepeating(&TerminatorImpl::Create));
RunProxy();
client_impl.Run();
DestroyProxy();
}
TEST_F(IPCChannelProxyMojoTest, Pause) {
// Ensures that pausing a channel elicits the expected behavior when sending
// messages, unpausing, sending more messages, and then manually flushing.
// Specifically a sequence like:
//
// Connect()
// Send(A)
// Pause()
// Send(B)
// Send(C)
// Unpause(false)
// Send(D)
// Send(E)
// Flush()
//
// must result in the other end receiving messages A, D, E, B, D; in that
// order.
//
// This behavior is required by some consumers of IPC::Channel, and it is not
// sufficient to leave this up to the consumer to implement since associated
// interface requests and messages also need to be queued according to the
// same policy.
Init("CreatePausedClient");
DummyListener listener;
CreateProxy(&listener);
RunProxy();
// This message must be sent immediately since the channel is unpaused.
SendValue(proxy(), 1);
proxy()->Pause();
// These messages must be queued internally since the channel is paused.
SendValue(proxy(), 2);
SendValue(proxy(), 3);
proxy()->Unpause(false /* flush */);
// These messages must be sent immediately since the channel is unpaused.
SendValue(proxy(), 4);
SendValue(proxy(), 5);
// Now we flush the previously queued messages.
proxy()->Flush();
EXPECT_TRUE(WaitForClientShutdown());
DestroyProxy();
}
class ExpectValueSequenceListener : public IPC::Listener {
public:
ExpectValueSequenceListener(base::queue<int32_t>* expected_values,
base::OnceClosure quit_closure)
: expected_values_(expected_values),
quit_closure_(std::move(quit_closure)) {}
ExpectValueSequenceListener(const ExpectValueSequenceListener&) = delete;
ExpectValueSequenceListener& operator=(const ExpectValueSequenceListener&) =
delete;
~ExpectValueSequenceListener() override = default;
// IPC::Listener:
bool OnMessageReceived(const IPC::Message& message) override {
DCHECK(!expected_values_->empty());
base::PickleIterator iter(message);
int32_t should_be_expected;
EXPECT_TRUE(iter.ReadInt(&should_be_expected));
EXPECT_EQ(expected_values_->front(), should_be_expected);
expected_values_->pop();
if (expected_values_->empty())
std::move(quit_closure_).Run();
return true;
}
private:
raw_ptr<base::queue<int32_t>> expected_values_;
base::OnceClosure quit_closure_;
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(CreatePausedClient,
ChannelProxyClient) {
base::queue<int32_t> expected_values;
base::RunLoop run_loop;
ExpectValueSequenceListener listener(&expected_values,
run_loop.QuitClosure());
CreateProxy(&listener);
expected_values.push(1);
expected_values.push(4);
expected_values.push(5);
expected_values.push(2);
expected_values.push(3);
RunProxy();
run_loop.Run();
EXPECT_TRUE(expected_values.empty());
DestroyProxy();
}
TEST_F(IPCChannelProxyMojoTest, AssociatedRequestClose) {
Init("DropAssociatedRequest");
DummyListener listener;
CreateProxy(&listener);
RunProxy();
mojo::AssociatedRemote<IPC::mojom::AssociatedInterfaceVendor> vendor;
proxy()->GetRemoteAssociatedInterface(
vendor.BindNewEndpointAndPassReceiver());
mojo::AssociatedRemote<IPC::mojom::SimpleTestDriver> tester;
vendor->GetTestInterface(tester.BindNewEndpointAndPassReceiver());
base::RunLoop run_loop;
tester.set_disconnect_handler(run_loop.QuitClosure());
run_loop.Run();
tester.reset();
proxy()->GetRemoteAssociatedInterface(
tester.BindNewEndpointAndPassReceiver());
EXPECT_TRUE(WaitForClientShutdown());
DestroyProxy();
}
class AssociatedInterfaceDroppingListener : public IPC::Listener {
public:
AssociatedInterfaceDroppingListener(base::OnceClosure callback)
: callback_(std::move(callback)) {}
bool OnMessageReceived(const IPC::Message& message) override { return false; }
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
if (interface_name == IPC::mojom::SimpleTestDriver::Name_)
std::move(callback_).Run();
}
private:
base::OnceClosure callback_;
};
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(DropAssociatedRequest,
ChannelProxyClient) {
base::RunLoop run_loop;
AssociatedInterfaceDroppingListener listener(run_loop.QuitClosure());
CreateProxy(&listener);
RunProxy();
run_loop.Run();
DestroyProxy();
}
#if !BUILDFLAG(IS_APPLE)
// TODO(wez): On Mac we need to set up a MachPortBroker before we can transfer
// Mach ports (which underpin Sharedmemory on Mac) across IPC.
template <class SharedMemoryRegionType>
class IPCChannelMojoSharedMemoryRegionTypedTest : public IPCChannelMojoTest {};
struct WritableRegionTraits {
using RegionType = base::WritableSharedMemoryRegion;
static const char kClientName[];
};
const char WritableRegionTraits::kClientName[] =
"IPCChannelMojoTestSendWritableSharedMemoryRegionClient";
struct UnsafeRegionTraits {
using RegionType = base::UnsafeSharedMemoryRegion;
static const char kClientName[];
};
const char UnsafeRegionTraits::kClientName[] =
"IPCChannelMojoTestSendUnsafeSharedMemoryRegionClient";
struct ReadOnlyRegionTraits {
using RegionType = base::ReadOnlySharedMemoryRegion;
static const char kClientName[];
};
const char ReadOnlyRegionTraits::kClientName[] =
"IPCChannelMojoTestSendReadOnlySharedMemoryRegionClient";
typedef ::testing::
Types<WritableRegionTraits, UnsafeRegionTraits, ReadOnlyRegionTraits>
AllSharedMemoryRegionTraits;
TYPED_TEST_SUITE(IPCChannelMojoSharedMemoryRegionTypedTest,
AllSharedMemoryRegionTraits);
template <class SharedMemoryRegionType>
class ListenerThatExpectsSharedMemoryRegion : public TestListenerBase {
public:
explicit ListenerThatExpectsSharedMemoryRegion(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)) {}
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
SharedMemoryRegionType region;
EXPECT_TRUE(IPC::ReadParam(&message, &iter, ®ion));
EXPECT_TRUE(region.IsValid());
// Verify the shared memory region has expected content.
typename SharedMemoryRegionType::MappingType mapping = region.Map();
std::string content = HandleSendingHelper::GetSendingFileContent();
EXPECT_EQ(0, memcmp(mapping.memory(), content.data(), content.size()));
ListenerThatExpectsOK::SendOK(sender());
return true;
}
};
TYPED_TEST(IPCChannelMojoSharedMemoryRegionTypedTest, Send) {
this->Init(TypeParam::kClientName);
const size_t size = 1004;
typename TypeParam::RegionType region;
base::WritableSharedMemoryMapping mapping;
std::tie(region, mapping) =
base::CreateMappedRegion<typename TypeParam::RegionType>(size);
std::string content = HandleSendingHelper::GetSendingFileContent();
memcpy(mapping.memory(), content.data(), content.size());
// Create a success listener, and launch the child process.
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
this->CreateChannel(&listener);
ASSERT_TRUE(this->ConnectChannel());
// Send the child process an IPC with |shmem| attached, to verify
// that is is correctly wrapped, transferred and unwrapped.
IPC::Message* message = new IPC::Message(0, 2, IPC::Message::PRIORITY_NORMAL);
IPC::WriteParam(message, region);
ASSERT_TRUE(this->channel()->Send(message));
run_loop.Run();
this->channel()->Close();
EXPECT_TRUE(this->WaitForClientShutdown());
EXPECT_FALSE(region.IsValid());
this->DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(
IPCChannelMojoTestSendWritableSharedMemoryRegionClient) {
base::RunLoop run_loop;
ListenerThatExpectsSharedMemoryRegion<base::WritableSharedMemoryRegion>
listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(
IPCChannelMojoTestSendUnsafeSharedMemoryRegionClient) {
base::RunLoop run_loop;
ListenerThatExpectsSharedMemoryRegion<base::UnsafeSharedMemoryRegion>
listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(
IPCChannelMojoTestSendReadOnlySharedMemoryRegionClient) {
base::RunLoop run_loop;
ListenerThatExpectsSharedMemoryRegion<base::ReadOnlySharedMemoryRegion>
listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
#endif // !BUILDFLAG(IS_APPLE)
#if BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
class ListenerThatExpectsFile : public TestListenerBase {
public:
explicit ListenerThatExpectsFile(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)) {}
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
HandleSendingHelper::ReadReceivedFile(message, &iter);
ListenerThatExpectsOK::SendOK(sender());
return true;
}
};
TEST_F(IPCChannelMojoTest, SendPlatformFile) {
Init("IPCChannelMojoTestSendPlatformFileClient");
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
base::File file(HandleSendingHelper::GetSendingFilePath(temp_dir.GetPath()),
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE |
base::File::FLAG_READ);
HandleSendingHelper::WriteFileThenSend(channel(), file);
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(IPCChannelMojoTestSendPlatformFileClient) {
base::RunLoop run_loop;
ListenerThatExpectsFile listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
class ListenerThatExpectsFileAndMessagePipe : public TestListenerBase {
public:
explicit ListenerThatExpectsFileAndMessagePipe(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)) {}
~ListenerThatExpectsFileAndMessagePipe() override = default;
bool OnMessageReceived(const IPC::Message& message) override {
base::PickleIterator iter(message);
HandleSendingHelper::ReadReceivedFile(message, &iter);
HandleSendingHelper::ReadReceivedPipe(message, &iter);
ListenerThatExpectsOK::SendOK(sender());
return true;
}
};
TEST_F(IPCChannelMojoTest, SendPlatformFileAndMessagePipe) {
Init("IPCChannelMojoTestSendPlatformFileAndMessagePipeClient");
base::RunLoop run_loop;
ListenerThatExpectsOK listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
base::File file(HandleSendingHelper::GetSendingFilePath(temp_dir.GetPath()),
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE |
base::File::FLAG_READ);
TestingMessagePipe pipe;
HandleSendingHelper::WriteFileAndPipeThenSend(channel(), file, &pipe);
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(
IPCChannelMojoTestSendPlatformFileAndMessagePipeClient) {
base::RunLoop run_loop;
ListenerThatExpectsFileAndMessagePipe listener(run_loop.QuitClosure());
Connect(&listener);
listener.set_sender(channel());
run_loop.Run();
Close();
}
#endif // BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
const base::ProcessId kMagicChildId = 54321;
class ListenerThatVerifiesPeerPid : public TestListenerBase {
public:
explicit ListenerThatVerifiesPeerPid(base::OnceClosure quit_closure)
: TestListenerBase(std::move(quit_closure)) {}
void OnChannelConnected(int32_t peer_pid) override {
EXPECT_EQ(peer_pid, kMagicChildId);
RunQuitClosure();
}
bool OnMessageReceived(const IPC::Message& message) override { NOTREACHED(); }
};
// The global PID is only used on systems that use the zygote. Hence, this
// test is disabled on other platforms.
TEST_F(IPCChannelMojoTest, VerifyGlobalPid) {
Init("IPCChannelMojoTestVerifyGlobalPidClient");
base::RunLoop run_loop;
ListenerThatVerifiesPeerPid listener(run_loop.QuitClosure());
CreateChannel(&listener);
ASSERT_TRUE(ConnectChannel());
run_loop.Run();
channel()->Close();
EXPECT_TRUE(WaitForClientShutdown());
DestroyChannel();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(IPCChannelMojoTestVerifyGlobalPidClient) {
IPC::Channel::SetGlobalPid(kMagicChildId);
base::RunLoop run_loop;
ListenerThatQuits listener(run_loop.QuitClosure());
Connect(&listener);
run_loop.Run();
Close();
}
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
class ListenerWithUrgentMessageAssociatedInterface
: public IPC::mojom::InterfaceWithUrgentMethod,
public IPC::Listener,
public IPC::UrgentMessageObserver {
public:
explicit ListenerWithUrgentMessageAssociatedInterface(
base::OnceClosure quit_closure)
: quit_closure_(std::move(quit_closure)) {}
ListenerWithUrgentMessageAssociatedInterface(
const ListenerWithUrgentMessageAssociatedInterface&) = delete;
ListenerWithUrgentMessageAssociatedInterface& operator=(
const ListenerWithUrgentMessageAssociatedInterface&) = delete;
~ListenerWithUrgentMessageAssociatedInterface() override = default;
uint32_t num_maybe_urgent_messages_received() const {
return num_maybe_urgent_messages_received_;
}
uint32_t num_urgent_messages_received() const {
return num_urgent_messages_received_;
}
uint32_t num_non_urgent_messages_received() const {
return num_non_urgent_messages_received_;
}
uint32_t num_observer_urgent_messages_received() const {
return num_observer_urgent_messages_received_.load(
std::memory_order_relaxed);
}
uint32_t num_observer_urgent_messages_processed() const {
return num_observer_urgent_messages_processed_.load(
std::memory_order_relaxed);
}
bool was_process_callback_pending_during_ipc_dispatch() const {
return was_process_callback_pending_during_ipc_dispatch_;
}
private:
// IPC::mojom::InterfaceWithUrgentMethod:
void MaybeUrgentMessage(bool is_urgent) override {
++num_maybe_urgent_messages_received_;
if (!is_urgent) {
return;
}
++num_urgent_messages_received_;
uint32_t received =
num_observer_urgent_messages_received_.load(std::memory_order_relaxed);
uint32_t processed =
num_observer_urgent_messages_processed_.load(std::memory_order_relaxed);
// The "processed" observer callback should run after the IPC is dispatched,
// so there should always be at least one less processed callback here.
was_process_callback_pending_during_ipc_dispatch_ =
was_process_callback_pending_during_ipc_dispatch_ &&
(processed < received);
}
void NonUrgentMessage() override { ++num_non_urgent_messages_received_; }
void RequestQuit(RequestQuitCallback callback) override {
std::move(quit_closure_).Run();
std::move(callback).Run();
}
// IPC::Listener:
bool OnMessageReceived(const IPC::Message& message) override { return true; }
void OnAssociatedInterfaceRequest(
const std::string& interface_name,
mojo::ScopedInterfaceEndpointHandle handle) override {
CHECK(!receiver_.is_bound());
CHECK_EQ(interface_name, IPC::mojom::InterfaceWithUrgentMethod::Name_);
receiver_.Bind(
mojo::PendingAssociatedReceiver<IPC::mojom::InterfaceWithUrgentMethod>(
std::move(handle)));
}
// IPC::UrgentMessageObserver:
void OnUrgentMessageReceived() override {
std::atomic_fetch_add_explicit(&num_observer_urgent_messages_received_,
uint32_t(1), std::memory_order_relaxed);
}
void OnUrgentMessageProcessed() override {
std::atomic_fetch_add_explicit(&num_observer_urgent_messages_processed_,
uint32_t(1), std::memory_order_relaxed);
}
base::OnceClosure quit_closure_;
mojo::AssociatedReceiver<IPC::mojom::InterfaceWithUrgentMethod> receiver_{
this};
uint32_t num_maybe_urgent_messages_received_{0};
uint32_t num_urgent_messages_received_{0};
uint32_t num_non_urgent_messages_received_{0};
std::atomic<uint32_t> num_observer_urgent_messages_received_{0};
std::atomic<uint32_t> num_observer_urgent_messages_processed_{0};
bool was_process_callback_pending_during_ipc_dispatch_{true};
};
TEST_F(IPCChannelProxyMojoTest, UrgentMessageObserver) {
Init("UrgentMessageObserverClient");
base::RunLoop run_loop;
ListenerWithUrgentMessageAssociatedInterface listener(run_loop.QuitClosure());
CreateProxy(&listener, /*urgent_message_observer=*/&listener);
RunProxy();
run_loop.Run();
EXPECT_TRUE(WaitForClientShutdown());
EXPECT_EQ(listener.num_maybe_urgent_messages_received(), 5u);
EXPECT_EQ(listener.num_urgent_messages_received(), 3u);
EXPECT_EQ(listener.num_non_urgent_messages_received(), 2u);
EXPECT_EQ(listener.num_observer_urgent_messages_received(), 3u);
EXPECT_EQ(listener.num_observer_urgent_messages_processed(), 3u);
EXPECT_TRUE(listener.was_process_callback_pending_during_ipc_dispatch());
DestroyProxy();
}
DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
UrgentMessageObserverClient,
ChannelProxyClient) {
DummyListener listener;
CreateProxy(&listener);
RunProxy();
mojo::AssociatedRemote<IPC::mojom::InterfaceWithUrgentMethod> remote;
proxy()->GetRemoteAssociatedInterface(
remote.BindNewEndpointAndPassReceiver());
{
mojo::UrgentMessageScope scope;
remote->MaybeUrgentMessage(/*is_urgent=*/true);
}
remote->NonUrgentMessage();
remote->MaybeUrgentMessage(/*is_urgent=*/false);
{
mojo::UrgentMessageScope scope;
remote->MaybeUrgentMessage(/*is_urgent=*/true);
}
remote->NonUrgentMessage();
remote->MaybeUrgentMessage(/*is_urgent=*/false);
{
mojo::UrgentMessageScope scope;
remote->MaybeUrgentMessage(/*is_urgent=*/true);
}
base::RunLoop run_loop;
remote->RequestQuit(run_loop.QuitClosure());
run_loop.Run();
DestroyProxy();
}
} // namespace
} // namespace ipc_channel_mojo_unittest