forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.13
16324 lines (12009 loc) · 724 KB
/
ChangeLog-3.13
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
Wed Aug 22 00:17:07 UTC 2018 Adam Mitz <[email protected]>
commit ef2d7100f8237f77525f58219f6620d91d21517c
Merge pull request #916 from
objectcomputing/flexible-git-submodule-support
Flexible git submodule support
Tue Aug 21 20:40:46 UTC 2018 Mason McParlane <[email protected]>
commit a1ff050b13b2137229ad59e7b28844dc2c52fdac
* MPC/config/googlemock.mpb:
* MPC/config/googletest.mpb:
* configure:
switched ssl switch to openssl; fixed bug with win32 host missing
ProgramFiles(x86)
Tue Aug 21 19:41:19 UTC 2018 Mason McParlane <[email protected]>
commit ffbecbf4de4ec6fcb365bb0fd92eee80abae9810
* configure:
Fixed configure issues on Linux
Tue Aug 21 19:16:17 UTC 2018 Mason McParlane <[email protected]>
commit 0d917033b6c02cdd335c3147236291925de11f3b
* MPC/config/googlemock.mpb:
* MPC/config/googletest.mpb:
Added backward-compatible paths to googlemock/googletest mpbs
Tue Aug 21 18:10:23 UTC 2018 Mason McParlane <[email protected]>
commit bdade91a9ef9cb1f84912e82530f7c29c3dbaa27
* MPC/config/googlemock.mpb:
* MPC/config/googletest.mpb:
* configure:
Added rapidjson submodule detection; refactored gtest detection
to mitigate differences in submodule layout vs system pkg layout
Mon Aug 20 23:15:53 UTC 2018 Mason McParlane <[email protected]>
commit d06f86fa552f32e25f71f0ce92f4c0c8138d56a5
* MPC/config/googlemock.mpb:
* MPC/config/googletest.mpb:
* MPC/config/itl.mpb:
* configure:
Added initial support for multiple gtest submodule paths
Mon Aug 20 22:25:24 UTC 2018 Adam Mitz <[email protected]>
commit 496153a959ac2ad6c440e486a377b21ce9577d6f
Merge pull request #915 from mitza-oci/master
Updates for upcoming release
Mon Aug 20 22:25:09 UTC 2018 Adam Mitz <[email protected]>
commit dc0a20b2b5d2c2db15a1ebb2bc69277e3b4f77d7
Merge pull request #914 from simpsont-oci/master
Fixing unreachable code warning. Fix multiple permissions grant
support.
Mon Aug 20 22:25:02 UTC 2018 Adam Mitz <[email protected]>
commit bea69b87db265e80fd3fd1bf9983daf8abfb8e28
Merge pull request #913 from
iguessthislldo/igtd/wireshark_improvements
dissector: Check if Deserialization Failed
Mon Aug 20 20:12:08 UTC 2018 Adam Mitz <[email protected]>
commit 273f3306a5e61ae6667925df92bc5ad45e135a23
* NEWS.md:
* README.md:
Updates for upcoming release
Mon Aug 20 20:11:13 UTC 2018 Adam Mitz <[email protected]>
commit b4c5c4af3d5e35e3c2098c3d040521421a6026c1
* tests/security/Authentication/AuthenticationTest.cpp:
fixed an uninitialized value in a test
Mon Aug 20 19:40:12 UTC 2018 Fred Hornsey <[email protected]>
commit 7832160fc5939267bd1191e7dddd9344bd3f4f99
* tools/dissector/sample_dissector.cpp:
dissector: Added Parentheses around inline if
Also made both true/false strings consistent (lowercase
capitalization).
Mon Aug 20 19:35:51 UTC 2018 Timothy Simpson <[email protected]>
commit fec350b5d15c70119e13d168ec79e4a592bc1fc1
* tests/security/security_tests.lst:
Adding new test to auto run test list
Mon Aug 20 19:19:53 UTC 2018 Timothy Simpson <[email protected]>
commit 20b5ae478e0e53a1789f4ea692c751790a90ad0a
* dds/DCPS/security/AccessControl/Permissions.cpp:
* dds/DCPS/security/AccessControl/Permissions.h:
* dds/DCPS/security/AccessControlBuiltInImpl.cpp:
* dds/DCPS/security/AccessControlBuiltInImpl.h:
* tests/security/attributes/permissions/permissions_multi_p_01_02_03_04_readwrite.xml:
* tests/security/attributes/permissions/permissions_multi_p_01_02_03_04_readwrite_signed.p7s:
* tests/security/attributes/run_test.pl:
Fixing unreachable code warning for check_XXX_topic by adding
subject name check. Fixing subject name and domain id checking
for multiple grants per permissions file.
Mon Aug 20 19:07:37 UTC 2018 Fred Hornsey <[email protected]>
commit 6467a5bc36ed7040e0b9fd9368500c97ed48fe68
* tools/dissector/sample_dissector.cpp:
* tools/dissector/sample_dissector.h:
dissector: Check if Deserialization Failed
Mon Aug 20 17:52:02 UTC 2018 Adam Mitz <[email protected]>
commit 05927aee3a410b069df1ed4ddac99cdb99c3fd44
Merge pull request #912 from mitza-oci/master
fixed warnings
Mon Aug 20 14:59:25 UTC 2018 Adam Mitz <[email protected]>
commit 926e3e8cb8f90654ebb17f0ba223c362f6b3d323
* dds/DCPS/security/AccessControlBuiltInImpl.cpp:
* dds/DCPS/security/CryptoBuiltInImpl.cpp:
* tests/security/framework/SecurityConfigTest.cpp:
fixed warnings
Fri Aug 17 22:02:40 UTC 2018 Adam Mitz <[email protected]>
commit e9beef5ed580a11b122353b79004f90eda7a5add
Merge pull request #911 from
objectcomputing/fix-configure-cmake-path
CMake on PATH now overrides auto-detection routine
Fri Aug 17 21:24:17 UTC 2018 Mason McParlane <[email protected]>
commit e46a642c60270bf903c0e568d926e4e37dfb657c
* configure:
Replaced more hard-coded paths to use env. variables
Fri Aug 17 21:13:20 UTC 2018 Mason McParlane <[email protected]>
commit 23ba52877cf732c2421c343d992739b22b444374
* configure:
Modified hard-coded path to use env. variables instead'
Fri Aug 17 20:56:21 UTC 2018 Mason McParlane <[email protected]>
commit 2dcc9214ee68e1a19d5c6955c49168fee3d74a7b
* configure:
Removed unused path_parent_dir subroutine'
Fri Aug 17 20:44:49 UTC 2018 Mason McParlane <[email protected]>
commit af81fa335fae3474729e1703a56175744ae0234c
* configure:
Added custom cmake auto-detection
Fri Aug 17 19:28:15 UTC 2018 Mason McParlane <[email protected]>
commit cd8830bb05fd994c7cd25c7e95f89b5162c73fee
* configure:
Removed CMake from optdep hash
Fri Aug 17 18:49:05 UTC 2018 Mason McParlane <[email protected]>
commit b1214c13dec80ae2680c873549d3b035883595bf
* configure:
CMake on PATH now overrides auto-detection routine
Thu Aug 16 22:45:27 UTC 2018 Adam Mitz <[email protected]>
commit 2c0e47d5bb4b56baa73b71c07f860e8fc80dea53
* configure:
configure: usage message updates
Thu Aug 16 22:45:11 UTC 2018 Adam Mitz <[email protected]>
commit 142b660104d4b1caf9790f3c24b543a20d01fa3b
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.cpp:
fixed stray conflict markers
Thu Aug 16 22:38:10 UTC 2018 Adam Mitz <[email protected]>
commit 5a7a293d21e3ffd073556c3a7cdb7157852b082b
Merge pull request #909 from mitza-oci/dockerfile
include security in Dockerfile
Thu Aug 16 22:38:00 UTC 2018 Adam Mitz <[email protected]>
commit 964fa4bdf5e38ec330efda622cfa2ef45a1dc994
Merge pull request #907 from mitza-oci/openssl-1_0
Set up OpenSSL in unit tests (for 1.0.x compat)
Thu Aug 16 22:37:51 UTC 2018 Adam Mitz <[email protected]>
commit 6dc6ca117f2ca9b4cf7153a997438cdcef23aeb1
Merge pull request #906 from simpsont-oci/master
Check for BUILTIN entity kind when sending builtin crypto tokens.
Thu Aug 16 22:37:39 UTC 2018 Adam Mitz <[email protected]>
commit 4ba70dfd223be4249bfa62bfc33efb4eb46baed7
Merge pull request #904 from objectcomputing/fix-local-acl-data
Deferred URL parsing logic to LocalAccessCredentialData members
Thu Aug 16 22:37:22 UTC 2018 Adam Mitz <[email protected]>
commit 2cf5ce3d791828d60d905bf8e747db08c79aa0c8
Merge pull request #908 from objectcomputing/security
Security configure script changes
Thu Aug 16 22:36:01 UTC 2018 Adam Mitz <[email protected]>
commit 40b629ec5ad37ed4405a0c89615f1e5cf5910e1b
* Dockerfile:
include security in Dockerfile
Thu Aug 16 20:31:18 UTC 2018 Adam Mitz <[email protected]>
commit 7988bc13769ab2ac2ace83c27a7b8c6ced5d4036
* tests/security/AccessControlTest.cpp:
* tests/security/Authentication/AuthenticationTest.cpp:
Set up OpenSSL in unit tests (for 1.0.x compat)
Thu Aug 16 18:04:49 UTC 2018 Timothy Simpson <[email protected]>
commit e4eb10e213ff29b243b30508d81d099cd5c3768d
* dds/DCPS/GuidUtils.h:
* dds/DCPS/RTPS/Sedp.cpp:
Actually, let's have send_builtin_crypto_tokens() check for all
types of readers instead, including builtin readers. And let's
update the comments for KIND_READER and KIND_WRITER to make it
clear the builtins readers and writers are no longer included in
those kinds.
Thu Aug 16 17:36:13 UTC 2018 Timothy Simpson <[email protected]>
commit df759f61dd7705cfb7be50428809f4cedec0fac8
* dds/DCPS/RTPS/Sedp.cpp:
send_builtin_crypto_tokens() should be checking for BUILTIN
entity kinds to differentiate between readers and writers. Small
debug logging cleanup to match create_and_send_datareader_tokens
debug logging lines.
Thu Aug 16 17:09:36 UTC 2018 Mason McParlane <[email protected]>
commit 00bd2cd43f565fac60a314e615ab6c5e42a79dc9
Merge branch 'master' into fix-local-acl-data
Thu Aug 16 15:27:28 UTC 2018 Mason McParlane <[email protected]>
commit c81ffee642fad1714981e553bd66b76ca94b37e9
* configure:
Fixed security checks for enabled tests; Enabled error context in
various die routines
Thu Aug 16 14:45:10 UTC 2018 Mason McParlane <[email protected]>
commit 1ef615fc513d12f7016f0fa1c568eab81f474dd1
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.cpp:
Fixed scoping/constness and potential compiler warning on systems
with 64-bit size_t
Wed Aug 15 23:06:46 UTC 2018 Adam Mitz <[email protected]>
commit cac3add4b57dd8edea8521a3b8a6ccbead12a292
Merge pull request #903 from mitza-oci/master
versioned namespaces for security lib
Wed Aug 15 21:27:55 UTC 2018 Mason McParlane <[email protected]>
commit 72b5836bea0f01b847d3f44b2975b619367bf5f1
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.cpp:
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.h:
Deferred URL parsing logic to LocalAccessCredentialData members
Wed Aug 15 20:22:30 UTC 2018 Adam Mitz <[email protected]>
commit 8f9a7d9f0834543a0b262f283cc50e64513ba9d2
Merge remote-tracking branch 'upstream/security'
# Conflicts:
# dds/DCPS/security/AccessControl/LocalCredentialData.cpp
# dds/DCPS/security/AccessControl/LocalCredentialData.h
Wed Aug 15 20:21:30 UTC 2018 Mason McParlane <[email protected]>
commit ec26c43e3d8b2be7d51843b886f660911c44f156
* configure:
Configure now sets proper shared library location for xerces and
openssl
Wed Aug 15 18:55:17 UTC 2018 Adam Mitz <[email protected]>
commit f4caf36a9c32534e7dba1a4cdc8f55a29d282628
* dds/DCPS/security/SSL/DiffieHellman.cpp:
Compile with OpenSSL 1.0.1, but DH parameters are not supported.
ECDH should still work.
OpenSSL 1.1.x is preferred, 1.0.2 should also work.
Wed Aug 15 18:41:55 UTC 2018 Adam Mitz <[email protected]>
commit 4a51d9baaef25acafab641895606c947690d8d19
* dds/DCPS/security/SSL/Certificate.h:
* dds/DCPS/security/SSL/DiffieHellman.h:
* dds/DCPS/security/SSL/SignedDocument.cpp:
* dds/DCPS/security/SSL/SignedDocument.h:
* dds/DCPS/security/SSL/SubjectName.h:
* dds/DCPS/security/TokenReader.h:
* dds/DCPS/security/TokenWriter.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpReceiveStrategy.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpSendStrategy.cpp:
warnings and guidelines fixes
Wed Aug 15 17:03:30 UTC 2018 Adam Mitz <[email protected]>
commit ce2a89d6c15517d7dfc764ccf6f8a9882bd6eecf
* dds/DCPS/security/Authentication/LocalAuthCredentialData.cpp:
* dds/DCPS/security/SSL/Certificate.cpp:
fixed build and fuzz issues
Wed Aug 15 16:35:56 UTC 2018 Mason McParlane <[email protected]>
commit 4f1c9d90c92408de5e58304827549e5ba52f080f
* configure:
Fixed configuration warning on Non-Windows platforms
Wed Aug 15 16:08:32 UTC 2018 Mason McParlane <[email protected]>
commit 918aa3f0d2f917c888dbe92aa5ddbe7e08401611
* configure:
Fixed bug with cmake default location
Wed Aug 15 16:07:06 UTC 2018 Adam Mitz <[email protected]>
commit d18fd35c37555d83f9d84f288081aac2c2fd6f0e
* dds/DCPS/DiscoveryBase.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/Qos_Helper.inl:
* dds/DCPS/RTPS/BaseMessageUtils.cpp:
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/SequenceIterator.h:
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.cpp:
* dds/DCPS/security/AccessControlBuiltInImpl.cpp:
* dds/DCPS/security/Authentication/LocalAuthCredentialData.cpp:
* dds/DCPS/security/AuthenticationBuiltInImpl.cpp:
* dds/DCPS/security/CryptoBuiltInImpl.cpp:
* dds/DCPS/security/SSL/Certificate.cpp:
* dds/DCPS/security/SSL/DiffieHellman.cpp:
* dds/DCPS/security/SSL/PrivateKey.cpp:
* dds/DCPS/security/SSL/SignedDocument.cpp:
* dds/DCPS/security/SSL/Utils.cpp:
* dds/DCPS/security/TokenWriter.cpp:
fixed warnings, style issues, OpenSSL 1.0.x compat
Wed Aug 15 15:47:47 UTC 2018 Mason McParlane <[email protected]>
commit 72cc1b12ffa841a0ffb2411d08fe574b1c239b9b
* configure:
Selecting default win32 directories depends on arch.
Wed Aug 15 14:45:45 UTC 2018 Mason McParlane <[email protected]>
commit 1646290a0fe28b608daa0808b2b0956b9bae81e2
* .gitignore:
Added Visual Studio Code to gitignore'
Wed Aug 15 14:45:06 UTC 2018 Mason McParlane <[email protected]>
commit 4d987a055aabdfd7433b339afd45eceec14b6c69
* dds/DCPS/security/AccessControl/LocalCredentialData.cpp:
* dds/DCPS/security/AccessControl/LocalCredentialData.h:
Deferred URL parsing logic to AccessCredentialData members
Wed Aug 15 05:07:59 UTC 2018 Adam Mitz <[email protected]>
commit e6ecb1ba3994a9ebbe239f8ed3d73582533d896c
* dds/DCPS/security/BuiltInSecurityPluginInst.cpp:
* dds/DCPS/security/CommonUtilities.cpp:
* dds/DCPS/security/TokenReader.cpp:
versioned namespace
Wed Aug 15 03:35:47 UTC 2018 Adam Mitz <[email protected]>
commit 1882a2429aada8e7bc0e33144f928ae6eb1ea50a
* dds/DCPS/security/Authentication/LocalAuthCredentialData.cpp:
* dds/DCPS/security/Authentication/LocalAuthCredentialData.h:
* dds/DCPS/security/DdsSecurity.mpc:
* dds/DCPS/security/SSL/Utils.cpp:
* dds/DCPS/security/SSL/Utils.h:
versioned namespace and follow coding guidelines
Wed Aug 15 02:23:17 UTC 2018 Mason McParlane <[email protected]>
commit a95f4c6b7caf5010fbf4525d4c17041f79005c65
* configure:
Fixed Google Test compile error by forcing shared CRT
Wed Aug 15 01:47:57 UTC 2018 Mason McParlane <[email protected]>
commit 8805fd0fa51a78775fe03a8113a17db0dbc2fb8c
* configure:
Added cmake generator mapping for Win32 Google Test compilation
Tue Aug 14 22:05:20 UTC 2018 Adam Mitz <[email protected]>
commit 61b1cfddc4f2f54d0271c2d6594cfc84005212b8
Merge pull request #902 from mitza-oci/untabify
Untabify old NEWS and ChangeLogs, update script
Tue Aug 14 22:04:36 UTC 2018 Adam Mitz <[email protected]>
commit a41132212db26e7af1d25410b04d5d5f1d27450d
Merge pull request #901 from mitza-oci/master
versioned namespace and follow coding guidelines
Tue Aug 14 22:04:26 UTC 2018 Adam Mitz <[email protected]>
commit d51257457192e7a89d54e13dc6a484f46b879ca7
Merge pull request #899 from huangminghuang/master
Avoid unnecessary code gen for security IDLs
Tue Aug 14 22:03:35 UTC 2018 Adam Mitz <[email protected]>
commit 9673e732cb6595c0d4414aebd4dd0a910bc7f4a3
* docs/history/ChangeLog-3.10:
* docs/history/ChangeLog-3.11:
* docs/history/ChangeLog-3.12:
* docs/history/ChangeLog-3.7:
* docs/history/ChangeLog-compliance_profile_feature_guards:
* docs/history/NEWS-0.md:
* docs/history/NEWS-1.md:
* tools/scripts/gitrelease.pl:
tabs to spaces
Tue Aug 14 20:38:57 UTC 2018 Adam Mitz <[email protected]>
commit 139d10ab88a27fe4d4487bce59c138c0199a6fbd
* dds/DCPS/SequenceIterator.h:
* dds/DCPS/security/AccessControl/Governance.cpp:
* dds/DCPS/security/AccessControl/Governance.h:
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.cpp:
* dds/DCPS/security/AccessControl/LocalAccessCredentialData.h:
* dds/DCPS/security/AccessControl/LocalCredentialData.cpp:
* dds/DCPS/security/AccessControl/LocalCredentialData.h:
* dds/DCPS/security/AccessControl/Permissions.cpp:
* dds/DCPS/security/AccessControl/Permissions.h:
* dds/DCPS/security/AccessControlBuiltInImpl.cpp:
* dds/DCPS/security/AccessControlBuiltInImpl.h:
* dds/DCPS/security/Authentication/LocalAuthCredentialData.cpp:
* dds/DCPS/security/Authentication/LocalAuthCredentialData.h:
* dds/DCPS/security/Authentication/LocalCredentialData.cpp:
* dds/DCPS/security/Authentication/LocalCredentialData.h:
* dds/DCPS/security/AuthenticationBuiltInImpl.h:
* dds/DCPS/security/SSL/Certificate.cpp:
* dds/DCPS/security/SSL/Certificate.h:
* dds/DCPS/security/SSL/DiffieHellman.cpp:
* dds/DCPS/security/SSL/DiffieHellman.h:
* dds/DCPS/security/SSL/PrivateKey.cpp:
* dds/DCPS/security/SSL/PrivateKey.h:
* dds/DCPS/security/SSL/SignedDocument.cpp:
* dds/DCPS/security/SSL/SignedDocument.h:
* tests/security/Authentication/LocalCredentialDataTest.cpp:
* tests/security/SSL/PrivateKeyTest.cpp:
versioned namespace and follow coding guidelines
Tue Aug 14 19:32:46 UTC 2018 Adam Mitz <[email protected]>
commit c7c32a980a91dd0934af43a62fa98526ee70c72d
* dds/DCPS/RTPS/Spdp.cpp:
Spdp: removed unused function
Tue Aug 14 18:34:10 UTC 2018 Huang-Ming Huang <[email protected]>
commit 6efd5dd344b06c900ce459ae68cf6532f7584080
* dds/DCPS/RTPS/RtpsSecurity.idl:
* dds/DdsSecurityCore.idl:
* dds/DdsSecurityParams.idl:
Avoid unnecessary code gen for security IDLs
Tue Aug 14 18:19:03 UTC 2018 Adam Mitz <[email protected]>
commit 905eaff3b8de8f7e6adcbb6d9e03d9d262be3c95
* dds/DCPS/RTPS/Sedp.cpp:
Sedp: check is_security_enabled()
Tue Aug 14 16:46:57 UTC 2018 Adam Mitz <[email protected]>
commit c8112739972d3bed2231c10b121edd6795f1eda1
* .travis.yml:
travis-ci: enable DDS Security
Tue Aug 14 15:49:19 UTC 2018 Adam Mitz <[email protected]>
commit 391cb1f8a46caebf5f64fba80843ee1ce6630a47
* .travis.yml:
travis-ci: versioned_namespace
Tue Aug 14 14:02:41 UTC 2018 Mason McParlane <[email protected]>
commit d1bddfa581840d7694804db403a5aefeaac318a5
* configure:
Added ssl and xerces3 default paths for Windows
Tue Aug 14 05:02:07 UTC 2018 Adam Mitz <[email protected]>
commit 4c7e6faa2df414570a4f2502f35998d2d7b57b72
Merge pull request #898 from mitza-oci/master
Build new code in Safety Profile
Tue Aug 14 05:01:57 UTC 2018 Adam Mitz <[email protected]>
commit 9fb20ed50b255a9db07343b17fbf0fdaf58b147a
Merge pull request #897 from huangminghuang/master
Added pragma once for some headers
Tue Aug 14 04:41:42 UTC 2018 Adam Mitz <[email protected]>
commit 65f1d3611ce8009b6e6cf04075a6632b9a4f27e1
* tools/repoctl/repoctl.cpp:
repoctl fixes
Tue Aug 14 02:30:49 UTC 2018 Adam Mitz <[email protected]>
commit be25fabebde422889c5766cb64c2b92a267176d9
* dds/DCPS/RTPS/SecurityHelpers.h:
versioned namespace
Tue Aug 14 02:24:27 UTC 2018 Adam Mitz <[email protected]>
commit 95ade0534c0d9550c160ecdcd6f376eebdf95ec7
* examples/DCPS/ishapes/main.cpp:
wchar for ishapes
Mon Aug 13 23:32:23 UTC 2018 Adam Mitz <[email protected]>
commit d27d79ac0f29c798703b6a1d76f4bf271cec98eb
* dds/DCPS/RTPS/ParameterListConverter.h:
* tests/security/framework/SecurityConfigTest.cpp:
build fixes
Mon Aug 13 22:17:37 UTC 2018 Adam Mitz <[email protected]>
commit 37daaea4c49971284ecfd3a17ac41afe530b5d6b
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/RTPS/ParameterListConverter.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/security/BuiltInPluginLoader.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
build fixes for the with-security configuration
Mon Aug 13 21:51:34 UTC 2018 Adam Mitz <[email protected]>
commit 1d4343b0952045d53ecb2bfbae42edddf3a32af4
* java/dds/DDS/.gitignore:
* java/dds/OpenDDS/DCPS/.gitignore:
regenerated .gitignore for Java bindings core libs
Mon Aug 13 21:27:58 UTC 2018 Adam Mitz <[email protected]>
commit a10f193fc362373c5332abe55e95a5aa022876cd
* dds/DCPS/Discovery.h:
* dds/DCPS/DiscoveryBase.h:
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* dds/DCPS/RTPS/ParameterListConverter.h:
* dds/DCPS/RTPS/RtpsCore.idl:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/security/BuiltInSecurityPluginInst.cpp:
* dds/DCPS/security/BuiltInSecurityPluginInst.h:
* dds/DCPS/security/framework/SecurityConfig.cpp:
* dds/DCPS/security/framework/SecurityConfig.h:
* dds/DCPS/security/framework/SecurityConfig_rch.h:
* dds/DCPS/security/framework/SecurityPluginInst.h:
* dds/DCPS/security/framework/SecurityRegistry.cpp:
* dds/DCPS/security/framework/SecurityRegistry.h:
* dds/DdsDcps.mpc:
* dds/dcps_optional_safety.mpb:
Build new code in Safety Profile / Use OPENDDS_SECURITY to reduce
what needs to be compiled when security is not in use
Mon Aug 13 21:27:12 UTC 2018 Adam Mitz <[email protected]>
commit 38c10190cfa39cd87bbfdafd3280c1e2d9067af8
* dds/DCPS/RecorderImpl.cpp:
* tools/repoctl/repoctl.cpp:
Fixed memory leaks
Wed Jul 05 13:38:41 UTC 2017 Huang-Ming Huang <[email protected]>
commit 38bd6c44a736df076417dba0dfab9601b0d0f101
* dds/DCPS/RTPS/GuidGenerator.h:
* performance-tests/Bench/src/Test.h:
* performance-tests/DCPS/Priority/Publisher.h:
* performance-tests/DCPS/Priority/Subscriber.h:
* performance-tests/DCPS/Priority/Test.h:
* performance-tests/DCPS/UDPNoKeyTest/common.h:
* tests/DCPS/CompatibilityTest/common.h:
* tests/DCPS/LivelinessTest/common.h:
* tests/DCPS/LivelinessTimeout/common.h:
* tests/DCPS/ManyTopicMultiProcess/common.h:
* tests/DCPS/ManyTopicTest/common.h:
* tests/DCPS/Priority/Publisher.h:
* tests/DCPS/Priority/Subscriber.h:
* tests/DCPS/Priority/Test.h:
* tests/DCPS/WaitForAck/Publisher.h:
* tests/DCPS/WaitForAck/Subscriber.h:
* tests/DCPS/WaitForAck/Test.h:
* tools/monitor/GraphGenerator.h:
* tools/monitor/NodeGenerator.h:
Added pragma once for some headers
Mon Aug 13 19:00:57 UTC 2018 Adam Mitz <[email protected]>
commit 254a3ba9bda3b55116c74165ef47fec41832382a
Merge pull request #896 from mitza-oci/master
security post-merge fixes
Mon Aug 13 17:02:40 UTC 2018 Adam Mitz <[email protected]>
commit e8559fc67b4c892ad379a5aa69dda38a9c08882d
* dds/DCPS/DiscoveryBase.h:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpSendStrategy.cpp:
fixed coverity issues in new code
Mon Aug 13 16:04:27 UTC 2018 Adam Mitz <[email protected]>
commit a10f16e0b107d1e535bef47ff4f2e8ac2885836c
* dds/DCPS/transport/framework/TransportSendControlElement.h:
removed unused class member
Mon Aug 13 15:21:27 UTC 2018 Adam Mitz <[email protected]>
commit 338c708701f2b72ac0baf03c5ea0fb506d451fe9
* DDS.mwc:
* contrib/README:
* contrib/wrapper/DDSWrapper_OpenDDS.mpc:
* contrib/wrapper/DDSWrapper_export.h:
* contrib/wrapper/DataReader_Listener_Base.cpp:
* contrib/wrapper/DataReader_Listener_Base.h:
* contrib/wrapper/DataReader_Listener_Base.inl:
* contrib/wrapper/Domain_Manager.cpp:
* contrib/wrapper/Domain_Manager.h:
* contrib/wrapper/Domain_Manager.inl:
* contrib/wrapper/Domain_Manager_Impl.cpp:
* contrib/wrapper/Domain_Manager_Impl.h:
* contrib/wrapper/Exit_Signal_Handler.cpp:
* contrib/wrapper/Exit_Signal_Handler.h:
* contrib/wrapper/OpenDDS/OpenDDS_Domain_Manager.cpp:
* contrib/wrapper/OpenDDS/OpenDDS_Domain_Manager.h:
* contrib/wrapper/OpenDDS/OpenDDS_Domain_Manager.inl:
* contrib/wrapper/OpenDDS/OpenDDS_Publication_Manager.cpp:
* contrib/wrapper/OpenDDS/OpenDDS_Publication_Manager.h:
* contrib/wrapper/OpenDDS/OpenDDS_Publication_Manager.inl:
* contrib/wrapper/OpenDDS/OpenDDS_Subscription_Manager.cpp:
* contrib/wrapper/OpenDDS/OpenDDS_Subscription_Manager.h:
* contrib/wrapper/OpenDDS/OpenDDS_Subscription_Manager.inl:
* contrib/wrapper/OpenDDS/OpenDDS_create_domain_manager.cpp:
* contrib/wrapper/Publication_Manager.cpp:
* contrib/wrapper/Publication_Manager.h:
* contrib/wrapper/Publication_Manager.inl:
* contrib/wrapper/Publication_Manager_Impl.cpp:
* contrib/wrapper/Publication_Manager_Impl.h:
* contrib/wrapper/README:
* contrib/wrapper/Subscription_Manager.cpp:
* contrib/wrapper/Subscription_Manager.h:
* contrib/wrapper/Subscription_Manager.inl:
* contrib/wrapper/Subscription_Manager_Impl.cpp:
* contrib/wrapper/Subscription_Manager_Impl.h:
* contrib/wrapper/Topic_Manager.cpp:
* contrib/wrapper/Topic_Manager.h:
* contrib/wrapper/Topic_Manager.inl:
* contrib/wrapper/Topic_Manager_Impl.cpp:
* contrib/wrapper/Topic_Manager_Impl.h:
* contrib/wrapper/Topic_Manager_T.cpp:
* contrib/wrapper/Topic_Manager_T.h:
* contrib/wrapper/example/.gitignore:
* contrib/wrapper/example/ExchangeEventDataReaderListenerImpl.cpp:
* contrib/wrapper/example/ExchangeEventDataReaderListenerImpl.h:
* contrib/wrapper/example/QuoteDataReaderListenerImpl.cpp:
* contrib/wrapper/example/QuoteDataReaderListenerImpl.h:
* contrib/wrapper/example/README:
* contrib/wrapper/example/StockQuoter.idl:
* contrib/wrapper/example/StockQuoterCommon_Export.h:
* contrib/wrapper/example/WrapperStockQuoter.mpc:
* contrib/wrapper/example/WrapperStockQuoter.mwc:
* contrib/wrapper/example/dds_tcp_conf.ini:
* contrib/wrapper/example/pub_udp_conf.ini:
* contrib/wrapper/example/publisher.cpp:
* contrib/wrapper/example/run_test.pl:
* contrib/wrapper/example/sub2_udp_conf.ini:
* contrib/wrapper/example/sub_udp_conf.ini:
* contrib/wrapper/example/subscriber.cpp:
* contrib/wrapper/wrapper_config.h:
* contrib/wrapper/wrapper_publication.h:
* contrib/wrapper/wrapper_subscription.h:
contrib/wrapper is unmaintained, removing
Mon Aug 13 14:55:28 UTC 2018 Adam Mitz <[email protected]>
commit 35c9648952f172b630160383555958f13d3d8328
* examples/DCPS/ishapes/ShapesWidget.cpp:
* examples/DCPS/ishapes/main.cpp:
security ifdefs for shapes demo
Mon Aug 13 14:54:31 UTC 2018 Adam Mitz <[email protected]>
commit 3c4f1cbd1cdae024f29161fe9fd1b6b16816bb87
* dds/DCPS/security/framework/SecurityRegistry.cpp:
wchar for new security code
Mon Aug 13 14:45:20 UTC 2018 Adam Mitz <[email protected]>
commit f789bd5b191b9921cc6d8de5717fac2cdcec248f
* dds/DCPS/security/framework/SecurityPluginInst.cpp:
versioned namespace for new security class
Fri Aug 10 17:49:53 UTC 2018 Mason McParlane <[email protected]>
commit 1ca4e2f8184a668f9cb15ed1bb815b2ac400426c
* configure:
Added openssl 1.1 version-detection / feature-injection
Fri Aug 10 16:21:20 UTC 2018 Adam Mitz <[email protected]>
commit 2c0ab1e23ba14049da534571db4673b62b2b29dc
Merge remote-tracking branch 'upstream/security'
Fri Aug 10 15:34:46 UTC 2018 Adam Mitz <[email protected]>
commit bbdbc3fe244f961b3c90b20d729ab38d8cbf8ad6
* dds/DCPS/DiscoveryBase.h:
safety profile fixes
Fri Aug 10 15:31:41 UTC 2018 Mason McParlane <[email protected]>
commit d1699d0e2cd2be1cedcd359dee85bc3b4f509035
* configure:
Removed unnecessary array from %optdep
Fri Aug 10 15:09:03 UTC 2018 Adam Mitz <[email protected]>
commit 54b46aca913e90d79bbc8347105fea6def5ada0f
* .travis.yml:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/security/AccessControlBuiltInImpl.h:
* dds/DdsSecurityCore.idl:
* tests/security/attributes/governance/gov_gen.cpp:
* tests/security/attributes/publisher.cpp:
* tests/security/attributes/subscriber.cpp:
* tests/security/framework/SecurityConfigTest.cpp:
* tests/security/sign_governance_and_permissions_files.pl:
* tools/scripts/dds_fuzz.pl:
fuzz script fixes
Fri Aug 10 14:50:43 UTC 2018 Adam Mitz <[email protected]>
commit b3a8bdb48c849d3dca8a23fa81f8bac672bec902
Merge remote-tracking branch 'upstream/security'
Fri Aug 10 14:48:52 UTC 2018 Adam Mitz <[email protected]>
commit e13244aee30d28128920ba184e2a17eb5ff205dc
* dds/InfoRepo/PersistenceUpdater.cpp:
removed dead code
Fri Aug 10 05:09:22 UTC 2018 Adam Mitz <[email protected]>
commit 578b2524c86b4a1632a16f6409061f4183aed65a
Merge pull request #893 from iguessthislldo/master
Add Missing ACE_TEXTs to concatenated string literals
Thu Aug 09 23:38:48 UTC 2018 Mason McParlane <[email protected]>
commit 6176f7681e1a2a09788c008c7260ea11b7d8b69c
Merge branch 'security' of github.com:objectcomputing/OpenDDS
into security
Thu Aug 09 23:37:14 UTC 2018 Mason McParlane <[email protected]>
commit 918251cb7ebd056048cd2beefef41a2ddfd44b0a
* configure:
Implemented google-test build
Thu Aug 09 22:44:10 UTC 2018 Fred Hornsey <[email protected]>
commit 27c89052f5602d9d0ff803a9a11ae947b86f6a05
* dds/DCPS/DataReaderImpl_T.h:
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/InstanceState.cpp:
* dds/DCPS/transport/tcp/TcpConnection.cpp:
* dds/InfoRepo/PersistenceUpdater.cpp:
Add Missing ACE_TEXTs to concated literals
Thu Aug 09 21:48:06 UTC 2018 Adam Mitz <[email protected]>
commit a3c68cd47415538007ca00204c3bea09d45f0ac7
* dds/DCPS/RTPS/GuidGenerator.cpp:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/security/SSL/Certificate.cpp:
* dds/DCPS/security/SSL/DiffieHellman.cpp:
* dds/idl/itl_generator.cpp:
cppcheck cleanup
Thu Aug 09 21:13:42 UTC 2018 Adam Mitz <[email protected]>
commit 282e74b0837357b1fc53416b144ddcbea9272650
* dds/DCPS/security/SSL/Certificate.cpp:
* dds/DCPS/security/SSL/DiffieHellman.cpp:
OpenSSL 1.0 compatibility
Thu Aug 09 20:02:38 UTC 2018 Mason McParlane <[email protected]>
commit 69c98bc2595fc169657b211ae8478d04bd590b5f
Merge branch 'security' of github.com:objectcomputing/OpenDDS
into security
Thu Aug 09 20:02:29 UTC 2018 Mason McParlane <[email protected]>
commit 5395f9adfaf0fc14ae6f9a2470658e2270302cfc
* configure:
Updated checks for security dependencies
Thu Aug 09 19:57:59 UTC 2018 Adam Mitz <[email protected]>
commit ea56c717def0f96fce3bcb05ad451829a78a5ff9
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
Spdp/Sedp: cppcheck cleanup
Thu Aug 09 19:57:54 UTC 2018 Adam Mitz <[email protected]>
commit 72f3226b531b467117183ea94109006b8f000761
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/DomainParticipantImpl.cpp:
post-merge cleanup; fixed method names in logging statements
Thu Aug 09 19:02:17 UTC 2018 Adam Mitz <[email protected]>
commit 3571734535e1de6925b4f1750a27cdc340993b5c
Merge remote-tracking branch 'upstream/master' into security
Thu Aug 09 17:34:24 UTC 2018 Adam Mitz <[email protected]>
commit e3f0a3ad1b162381cddfb213afe2a4d357d7ceb4
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/RTPS/Spdp.h:
Spdp/Sedp: simplify namespace usage; new helper for
send_builtin_crypto_tokens
Thu Aug 09 15:42:55 UTC 2018 Adam Mitz <[email protected]>
commit 9124f222b7b743e29fc9ed62161179eb885c91a5
Merge pull request #863 from iguessthislldo/bit
BIT Test
Thu Aug 09 15:42:45 UTC 2018 Adam Mitz <[email protected]>
commit 807584c16a86ad19fc875195ea461b1e1add6dec
Merge pull request #890 from mitza-oci/master
Misc cleanups
Thu Aug 09 15:42:33 UTC 2018 Adam Mitz <[email protected]>
commit d7317e7e7b2f22aa0967b00289319173c1a89793
Merge pull request #891 from simpsont-oci/master
Prevent end historic data from incrementing sedp writer sequence
numb…
Thu Aug 09 15:42:23 UTC 2018 Adam Mitz <[email protected]>
commit ca1005c4157e24c4d434641e11efa10b57e6ec19
Merge pull request #892 from jwillemsen/jwi-acetaox51
Upgrade to DOC Group ACE/TAO x.5.1
Thu Aug 09 15:41:48 UTC 2018 Adam Mitz <[email protected]>
commit 3c5148355362e130e6f380858f7889ab91ad0a4f
* dds/DCPS/RTPS/Spdp.cpp:
initialize padding bytes when passing OctetSeq to auth plugin
Thu Aug 09 09:09:30 UTC 2018 Johnny Willemsen <[email protected]>
commit 6db87f08777694ac4651d1c61757ecb03a14a3d4
* configure: