simple_components_4.62.0_a5c16c1d/gnat-sockets-server-openssl.adb

   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
--                                                                    --
--  package                         Copyright (c)  Dmitry A. Kazakov  --
--     GNAT.Sockets.Server.OpenSSL                 Luebeck            --
--  Implementation                                 Winter, 2019       --
--                                                                    --
--                                Last revision :  09:42 12 Dec 2020  --
--                                                                    --
--  This  library  is  free software; you can redistribute it and/or  --
--  modify it under the terms of the GNU General Public  License  as  --
--  published by the Free Software Foundation; either version  2  of  --
--  the License, or (at your option) any later version. This library  --
--  is distributed in the hope that it will be useful,  but  WITHOUT  --
--  ANY   WARRANTY;   without   even   the   implied   warranty   of  --
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  --
--  General  Public  License  for  more  details.  You  should  have  --
--  received  a  copy  of  the GNU General Public License along with  --
--  this library; if not, write to  the  Free  Software  Foundation,  --
--  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.    --
--                                                                    --
--  As a special exception, if other files instantiate generics from  --
--  this unit, or you link this unit with other files to produce  an  --
--  executable, this unit does not by  itself  cause  the  resulting  --
--  executable to be covered by the GNU General Public License. This  --
--  exception  does not however invalidate any other reasons why the  --
--  executable file might be covered by the GNU Public License.       --
--____________________________________________________________________--

with Ada.IO_Exceptions;        use Ada.IO_Exceptions;
with Interfaces.C.Strings;     use Interfaces.C.Strings;
with Synchronization.Mutexes;  use Synchronization.Mutexes;

with Ada.Unchecked_Deallocation;
with System.Address_To_Access_Conversions;

package body GNAT.Sockets.Server.OpenSSL is

   procedure Free is
      new Ada.Unchecked_Deallocation (Encoder'Class, Encoder_Ptr);

   package Conversions is
      new System.Address_To_Access_Conversions (OpenSSL_Session);

   function "+" (Ptr : chars_ptr) return String is
   begin
      if Ptr = Null_Ptr then
         return "";
      else
         return Value (Ptr);
      end if;
   end "+";

   Lock         : aliased Mutex;
   Init         : Boolean    := False;
   Read_Method  : BIO_METHOD := No_METHOD;
   Write_Method : BIO_METHOD := No_METHOD;

   function BIO_Control
            (  b   : BIO;
               cmd : BIO_CTRL;
               num : long;
               ptr : System.Address
            )  return long is
   begin
      case cmd is
         when BIO_CTRL_FLUSH | BIO_CTRL_PUSH | BIO_CTRL_POP =>
            return 1;
         when others =>
            return 0;
      end case;
   end BIO_Control;

   function BIO_Gets
            (  b    : BIO;
               data : Stream_Element_Pointers.Pointer;
               dlen : int
            )  return int is
      use Stream_Element_Pointers;
      Written : int     := 0;
      Count   : aliased size_t;
      Ptr     : Pointer := data;
   begin
      while Written < dlen loop
         if BIO_read (b, Ptr.all'Address, 1, Count'Access) <= 0 then
            return -1;
         end if;
         Written := Written + 1;
         exit when Ptr.all = 0;
         Increment (Ptr);
      end loop;
      return Written;
   end BIO_Gets;

   function BIO_Puts
            (  b    : BIO;
               data : Stream_Element_Pointers.Pointer
            )  return int is
      use Stream_Element_Pointers;
      Length : constant size_t := size_t (Virtual_Length (data));
      Count  : aliased size_t;
   begin
      if 0 < BIO_Write
             (  b,
                data.all'Address,
                size_t (Length),
                Count'Access
             )  then
         return int (Count);
      else
         return -1;
      end if;
   end BIO_Puts;

   function BIO_Read
            (  b         : BIO;
               data      : System.Address;
               dlen      : size_t;
               readbytes : access size_t
            )  return int is
      use Conversions;
      subtype Buffer_Type is
         Stream_Element_Array (1..Stream_Element_Count (dlen));
      Session : Object_Pointer := To_Pointer (BIO_get_data (b));
      Pointer : Stream_Element_Offset := 1;
      Buffer  : Buffer_Type;
      for Buffer'Address use data;
   begin
      BIO_clear_flags (b, BIO_FLAGS_RWS + BIO_FLAGS_SHOULD_RETRY);
      if Session = null then
         readbytes.all := 0;
      else
         Pull (Session.Client.Read, Buffer, Pointer);
         readbytes.all := size_t (Pointer - 1);
      end if;
      if dlen > readbytes.all then
         BIO_set_flags (b, BIO_FLAGS_READ + BIO_FLAGS_SHOULD_RETRY);
      end if;
      return 1;
   end BIO_Read;

   function BIO_Read
            (  b    : BIO;
               data : System.Address;
               dlen : int
            )  return int is
      Count : aliased size_t;
   begin
      if BIO_Read (b, data, size_t (dlen), Count'Access) > 0 then
         return int (Count);
      else
         return -1;
      end if;
   end BIO_Read;

   function BIO_Write
            (  b       : BIO;
               data    : System.Address;
               dlen    : size_t;
               written : access size_t
            )  return int is
      subtype Buffer_Type is
         Stream_Element_Array (1..Stream_Element_Count (dlen));
      Session : OpenSSL_Session renames
                Conversions.To_Pointer (BIO_get_data (b)).all;
      Client  : Connection'Class renames Session.Client.all;
      Last    : Stream_Element_Offset;
      Buffer  : Buffer_Type;
      for Buffer'Address use data;
   begin
      BIO_clear_flags (b, BIO_FLAGS_RWS + BIO_FLAGS_SHOULD_RETRY);
      Send_Socket (Get_Socket (Client), Buffer, Last);
      if Last > 0 then
         if Is_Trace_Received_On
            (  Client.Socket_Listener.Factory.all,
               Trace_Encoded
            )  then
            Trace_Sent
            (  Factory => Client.Socket_Listener.Factory.all,
               Client  => Client,
               Data    => Buffer,
               From    => Buffer'First,
               To      => Last,
               Encoded => True
            );
         end if;
         Client.Data_Sent := True;
      end if;
      written.all := size_t (Last);
      if dlen > written.all then
         BIO_set_flags (b, BIO_FLAGS_WRITE + BIO_FLAGS_SHOULD_RETRY);
      end if;
      return 1;
   exception
      when Error : Socket_Error =>
         Receive_Error (Client, Error);
         written.all := size_t (Last);
         return 0;
      when Error : others =>
         Trace_Error
         (  Client.Socket_Listener.Factory.all,
            "TLS transport writing",
            Error
         );
         written.all := size_t (Last);
         return 0;
   end BIO_Write;

   function BIO_Write
            (  b    : BIO;
               data : System.Address;
               dlen : int
            )  return int is
      Count : aliased size_t;
   begin
      if BIO_Write (b, data, size_t (dlen), Count'Access) > 0 then
         return int (Count);
      else
         return -1;
      end if;
   end BIO_Write;

   procedure Check_Private_Key (Session : SSL) is
   begin
      if SSL_check_private_key (Session) <= 0 then
         Check_Error (Use_Error'Identity);
      end if;
   end Check_Private_Key;

   procedure Check_Private_Key
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if SSL_CTX_check_private_key (Factory.Client_Context) <= 0 then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if SSL_CTX_check_private_key (Factory.Server_Context) <= 0 then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Check_Private_Key;

   procedure Clear_Options (Session : SSL; Options : SSL_OP) is
      Result : SSL_OP;
   begin
      Result := SSL_clear_options (Session, Options);
   end Clear_Options;

   procedure Clear_Options
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                Options : SSL_OP
             )  is
      Result : SSL_OP;
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         Result :=
            SSL_CTX_clear_options (Factory.Client_Context, Options);
      end if;
      if Context in Any_Context..Server_Context then
         Result :=
            SSL_CTX_clear_options (Factory.Server_Context, Options);
      end if;
   end Clear_Options;

   procedure Create_Context
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type
             )  is
      Result : int;
   begin
      declare
         Exclusive : Holder (Lock'Access);
      begin
         if not Init then
            if OPENSSL_init_ssl (OPENSSL_INIT_SSL_DEFAULT) <= 0 then
               Check_Error (Status_Error'Identity);
            end if;
            Read_Method :=
               BIO_meth_new (BIO_get_new_index, "GNAT sockets read");
            Result := BIO_meth_set_gets (Read_Method, BIO_Gets'Access);
            Result :=
               BIO_meth_set_read_ex (Read_Method, BIO_Read'Access);
            Result :=
               BIO_meth_set_ctrl (Read_Method, BIO_Control'Access);

            Write_Method :=
               BIO_meth_new (BIO_get_new_index, "GNAT sockets write");
            Result := BIO_meth_set_puts (Write_Method, BIO_Puts'Access);
            Result :=
               BIO_meth_set_write_ex (Write_Method, BIO_Write'Access);
            Result :=
               BIO_meth_set_ctrl (Write_Method, BIO_Control'Access);
            Init := True;
         end if;
      end;
      if Context in Client_Context..Any_Context then
         if Factory.Client_Context = No_SSL_CTX then
            Factory.Client_Context := SSL_CTX_new (TLS_client_method);
            if Factory.Client_Context = No_SSL_CTX then
               Check_Error (Data_Error'Identity);
            end if;
            Result := SSL_CTX_up_ref (Factory.Client_Context);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         Factory.Server_Context := SSL_CTX_new (TLS_server_method);
         if Factory.Server_Context = No_SSL_CTX then
            Check_Error (Data_Error'Identity);
         end if;
         Result := SSL_CTX_up_ref (Factory.Server_Context);
      end if;
   end Create_Context;

   function Create_Transport
            (  Factory  : access Abstract_OpenSSL_Factory;
               Listener : access Connections_Server'Class;
               Client   : access Connection'Class
            )  return Encoder_Ptr is
      Result : Encoder_Ptr;
   begin
      if Client.Client then
         Create_Context (Factory.all, Client_Context);
         Result := new OpenSSL_Session
                       (  Client.all'Unchecked_Access,
                          Factory.Decoded_Size
                       );
      else
         Create_Context (Factory.all, Server_Context);
         Result := new OpenSSL_Session
                       (  Client.all'Unchecked_Access,
                          Factory.Decoded_Size
                       );
      end if;
      declare
         Session : OpenSSL_Session renames OpenSSL_Session (Result.all);
         Self    : Abstract_OpenSSL_Factory'Class renames
                   Abstract_OpenSSL_Factory'Class (Factory.all);
      begin
         if Client.Client then
            Session.SSL_Session := SSL_new (Factory.Client_Context);
            SSL_set_connect_state (Session.SSL_Session);
            if Session.SSL_Session = No_SSL then
               Check_Error (Data_Error'Identity);
            end if;
            Factory.Client_Context :=  No_SSL_CTX;
         else
            Session.SSL_Session := SSL_new (Factory.Server_Context);
            SSL_set_accept_state (Session.SSL_Session);
            if Session.SSL_Session = No_SSL then
               Check_Error (Data_Error'Identity);
            end if;
            Factory.Server_Context :=  No_SSL_CTX;
         end if;
         Session.Input := BIO_new (Read_Method);
         BIO_set_data (Session.Input,  Session'Address);
         SSL_set0_rbio (Session.SSL_Session, Session.Input);

         Session.Output := BIO_new (Write_Method);
         BIO_set_data (Session.Output, Session'Address);
         SSL_set0_wbio (Session.SSL_Session, Session.Output);

         if Factory.Trace_Session then
            Trace (Self, "OpenSSL setting up session");
         end if;
         Prepare (Self, Client.all, Session.SSL_Session);
         if Factory.Trace_Session then
            Trace (Self, "OpenSSL handshake engaged");
         end if;
      end;
      return Result;
   exception
      when Error : others =>
         Free (Result);
         Trace_Error
         (  Factory.all,
            "OpenSSL transport creation fault",
            Error
         );
         return null;
   end Create_Transport;

   procedure Decrypt
             (  Transport : in out OpenSSL_Session;
                Client    : in out Connection'Class;
                Got_It    : out Boolean
             )  is
      Factory : Connections_Factory'Class renames
                Client.Socket_Listener.Factory.all;
      Result  : int;
      Count   : aliased size_t := 0;
      Buffer  : Input_Buffer renames Transport.Buffer;
      Last    : Stream_Element_Offset;
   begin
--        if not Has_Data (Client) then
--  ada.Text_IO.Put_Line("   no data read");
--           Got_It := False;
--           return;
--        end if;
      if Buffer.Free_To_Read < Buffer.First_Read then
         --
         -- [XXXXXXXXXXXXXX              XXXXX]
         --   Free_To_Read |  First_Read |
         --
         Last := Buffer.First_Read - 2;
         if Last <= Buffer.First_Read then -- Read buffer is full
            Got_It := True;
            return;
         end if;
      else
         --
         -- [           XXXXXXXXX             ]
         --  First_Read |        | Free_To_Read
         --
         if (  Buffer.Free_To_Read - Buffer.First_Read
            >= Buffer.Read'Length
            )
         then -- Read buffer is full
            Got_It := True;
            return;
         elsif Buffer.Free_To_Read > Buffer.Read'Last then -- Wrap
            Buffer.Free_To_Read := Buffer.Read'First;
            Last := Buffer.First_Read - 2;
         else
            Last := Buffer.Read'Last;
         end if;
      end if;
      Result :=
         SSL_read_ex
         (  Transport.SSL_Session,
            Buffer.Read (Buffer.Free_To_Read)'Access,
            int (Last - Buffer.Free_To_Read + 1),
            Count'Access
         );
      if Result <= 0 then
         case SSL_get_error (Transport.SSL_Session, Result) is
            when SSL_ERROR_NONE                 |
                 SSL_ERROR_WANT_ACCEPT          |
                 SSL_ERROR_WANT_CLIENT_HELLO_CB |
                 SSL_ERROR_WANT_CONNECT         |
                 SSL_ERROR_WANT_READ            |
                 SSL_ERROR_WANT_WRITE           |
                 SSL_ERROR_WANT_X509_LOOKUP     =>
               Last := (  Buffer.Free_To_Read
                       +  Stream_Element_Offset (Count)
                       -  1
                       );
            when SSL_ERROR_ZERO_RETURN =>
               Last := Buffer.Free_To_Read - 1;
            when others =>
               Last := Buffer.Free_To_Read - 1;
               Check_Error (Data_Error'Identity);
         end case;
      else
         Last :=
            Buffer.Free_To_Read + Stream_Element_Offset (Count) - 1;
      end if;
      if Last + 1 /= Buffer.Free_To_Read then -- Some data read
         Got_It := True;
         if Is_Trace_Received_On (Factory, Trace_Decoded) then
            Trace_Received
            (  Factory => Factory,
               Client  => Client,
               Data    => Buffer.Read,
               From    => Buffer.Free_To_Read,
               To      => Last,
               Encoded => False
            );
         end if;
         Buffer.Expected :=
            Stream_Element_Offset'Max
            (  Buffer.Expected - (Last - Buffer.Free_To_Read + 1),
               0
            );
         Buffer.Free_To_Read := Last + 1;
      else
         Got_It := False;
      end if;
   exception
      when End_Error =>
         raise Connection_Error;
   end Decrypt;

   procedure Encode
             (  Transport : in out OpenSSL_Session;
                Client    : in out Connection'Class;
                Data      : Stream_Element_Array;
                Last      : out Stream_Element_Offset
             )  is
      Result : int;
      Count  : aliased size_t := 0;
   begin
      Result :=
         SSL_write_ex
         (  Transport.SSL_Session,
            Data (Data'First)'Address,
            Data'Length,
            Count'Access
         );
      if Result <= 0 then
         case SSL_get_error (Transport.SSL_Session, Result) is
            when SSL_ERROR_NONE                 |
                 SSL_ERROR_WANT_ACCEPT          |
                 SSL_ERROR_WANT_CLIENT_HELLO_CB |
                 SSL_ERROR_WANT_CONNECT         |
                 SSL_ERROR_WANT_READ            |
                 SSL_ERROR_WANT_WRITE           |
                 SSL_ERROR_WANT_X509_LOOKUP     =>
               Last := Data'First + Stream_Element_Offset (Count) - 1;
            when SSL_ERROR_ZERO_RETURN =>
               Last := Data'First - 1;
            when others =>
               Check_Error (Data_Error'Identity);
               Last := Data'First - 1;
         end case;
      else
         Last := Data'First + Stream_Element_Offset (Count) - 1;
      end if;
   end Encode;

   procedure Finalize (Factory : in out Abstract_OpenSSL_Factory) is
   begin
      Finalize (Connections_Factory (Factory));
      if Factory.Client_Context /= No_SSL_CTX then
         SSL_CTX_free (Factory.Client_Context);
         Factory.Client_Context := No_SSL_CTX;
      end if;
      if Factory.Server_Context /= No_SSL_CTX then
         SSL_CTX_free (Factory.Server_Context);
         Factory.Server_Context := No_SSL_CTX;
      end if;
   end Finalize;

   procedure Finalize (Session : in out OpenSSL_Session) is
   begin
      if Session.SSL_Session /= No_SSL then
         SSL_free (Session.SSL_Session);
         Session.SSL_Session := No_SSL;
      end if;
      Finalize (Encoder (Session));
   end Finalize;

   function Get_Cipher_List (Session : SSL; Priority : int)
      return String is
      Result : constant chars_ptr :=
                        SSL_get_cipher_list (Session, Priority);
   begin
      if Result = Null_Ptr then
         return "";
      else
         return Value (Result);
      end if;
   end Get_Cipher_List;

   function Get_Name_Of_Cipher
            (  Session : SSL;
               Index   : Positive
            )  return String is
      Stack  : OPENSSL_STACK;
      Cipher : SSL_CIPHER;
      No     : int := int (Index);
   begin
      Stack := SSL_get_ciphers (Session);
      if Stack /= No_STACK then
         if No <= OPENSSL_sk_num (Stack) then
            Cipher := OPENSSL_sk_value (Stack, No - 1);
            if Cipher = No_CIPHER then
               return "";
            else
               return +SSL_CIPHER_get_name (Cipher);
            end if;
         end if;
      end if;
      Raise_Exception
      (  Constraint_Error'Identity,
         "Wrong cipher number"
      );
   end Get_Name_Of_Cipher;

   function Get_Name_Of_Cipher
            (  Factory : Abstract_OpenSSL_Factory;
               Context : Context_Type;
               Index   : Positive
            )  return String is
      Result : Natural := 0;
      Stack  : OPENSSL_STACK;
      Cipher : SSL_CIPHER;
      No     : int := int (Index);
   begin
      if Context in Client_Context..Any_Context then
         if Factory.Client_Context /= No_SSL_CTX then
            Stack := SSL_CTX_get_ciphers (Factory.Client_Context);
            if Stack /= No_STACK then
               if No <= OPENSSL_sk_num (Stack) then
                  Cipher := OPENSSL_sk_value (Stack, No - 1);
                  if Cipher = No_CIPHER then
                     return "";
                  else
                     return +SSL_CIPHER_get_name (Cipher);
                  end if;
               else
                  No := No - OPENSSL_sk_num (Stack);
               end if;
            end if;
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if Factory.Server_Context /= No_SSL_CTX then
            Stack := SSL_CTX_get_ciphers (Factory.Server_Context);
            if Stack /= No_STACK then
               if No <= OPENSSL_sk_num (Stack) then
                  Cipher := OPENSSL_sk_value (Stack, No - 1);
                  if Cipher = No_CIPHER then
                     return "";
                  else
                     return +SSL_CIPHER_get_name (Cipher);
                  end if;
               else
                  No := No - OPENSSL_sk_num (Stack);
               end if;
            end if;
         end if;
      end if;
      Raise_Exception
      (  Constraint_Error'Identity,
         "Wrong cipher number"
      );
   end Get_Name_Of_Cipher;

   function Get_Name_Of_Client_Cipher
            (  Session : SSL;
               Index   : Positive
            )  return String is
      Stack  : OPENSSL_STACK;
      Cipher : SSL_CIPHER;
      No     : int := int (Index);
   begin
      Stack := SSL_get_client_ciphers (Session);
      if Stack /= No_STACK then
         if No <= OPENSSL_sk_num (Stack) then
            Cipher := OPENSSL_sk_value (Stack, No - 1);
            if Cipher = No_CIPHER then
               return "";
            else
               return +SSL_CIPHER_get_name (Cipher);
            end if;
         end if;
      end if;
      Raise_Exception
      (  Constraint_Error'Identity,
         "Wrong cipher number"
      );
   end Get_Name_Of_Client_Cipher;

   function Get_Name_Of_Supported_Cipher
            (  Session : SSL;
               Index   : Positive
            )  return String is
      Stack  : OPENSSL_STACK;
      Cipher : SSL_CIPHER;
      No     : int := int (Index);
   begin
      Stack := SSL_get1_supported_ciphers (Session);
      if Stack /= No_STACK then
         if No <= OPENSSL_sk_num (Stack) then
            Cipher := OPENSSL_sk_value (Stack, No - 1);
            if Cipher = No_CIPHER then
               return "";
            else
               return +SSL_CIPHER_get_name (Cipher);
            end if;
         end if;
      end if;
      Raise_Exception
      (  Constraint_Error'Identity,
         "Wrong cipher number"
      );
   end Get_Name_Of_Supported_Cipher;

   function Get_Number_Of_Ciphers (Session : SSL) return Natural is
      Stack : OPENSSL_STACK;
   begin
      Stack := SSL_get_ciphers (Session);
      if Stack = No_STACK then
         return 0;
      else
         return Natural (OPENSSL_sk_num (Stack));
      end if;
   end Get_Number_Of_Ciphers;

   function Get_Number_Of_Ciphers
            (  Factory : Abstract_OpenSSL_Factory;
               Context : Context_Type
            )  return Natural is
      Result : int := 0;
      Stack  : OPENSSL_STACK;
   begin
      if Context in Client_Context..Any_Context then
         if Factory.Client_Context /= No_SSL_CTX then
            Stack := SSL_CTX_get_ciphers (Factory.Client_Context);
            if Stack /= No_STACK then
               Result := Result + OPENSSL_sk_num (Stack);
            end if;
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if Factory.Server_Context /= No_SSL_CTX then
            Stack := SSL_CTX_get_ciphers (Factory.Server_Context);
            if Stack /= No_Stack then
               Result := Result + OPENSSL_sk_num (Stack);
            end if;
         end if;
      end if;
      return Natural (Result);
   end Get_Number_Of_Ciphers;

   function Get_Number_Of_Client_Ciphers (Session : SSL)
      return Natural is
      Stack : OPENSSL_STACK;
   begin
      Stack := SSL_get_client_ciphers (Session);
      if Stack = No_STACK then
         return 0;
      else
         return Natural (OPENSSL_sk_num (Stack));
      end if;
   end Get_Number_Of_Client_Ciphers;

   function Get_Number_Of_Supported_Ciphers (Session : SSL)
      return Natural is
      Stack : OPENSSL_STACK;
   begin
      Stack := SSL_get1_supported_ciphers (Session);
      if Stack = No_STACK then
         return 0;
      else
         return Natural (OPENSSL_sk_num (Stack));
      end if;
   end Get_Number_Of_Supported_Ciphers;

   function Get_Options (Session : SSL) return SSL_OP is
   begin
     return SSL_get_options (Session);
   end Get_Options;

   function Get_Options
            (  Factory : Abstract_OpenSSL_Factory;
               Context : Context_Type
            )  return SSL_OP is
      Result : SSL_OP := 0;
   begin
      if Context in Client_Context..Any_Context then
         if Factory.Client_Context /= No_SSL_CTX then
            Result := Result
                   or SSL_CTX_get_options (Factory.Client_Context);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if Factory.Server_Context /= No_SSL_CTX then
            Result := Result
                   or SSL_CTX_get_options (Factory.Server_Context);
         end if;
      end if;
      return Result;
   end Get_Options;

   procedure Get_Proto_Version
             (  Session : SSL;
                Minimal : out SSL_Version_No;
                Maximal : out SSL_Version_No
             )  is
   begin
      Minimal :=
         SSL_Version_No
         (  SSL_ctrl (Session, SSL_CTRL_GET_MIN_PROTO_VERSION, 0)
         );
      Maximal :=
         SSL_Version_No
         (  SSL_ctrl (Session, SSL_CTRL_GET_MAX_PROTO_VERSION, 0)
         );
   end Get_Proto_Version;

   procedure Get_Proto_Version
             (  Factory : Abstract_OpenSSL_Factory;
                Context : Context_Type;
                Minimal : out SSL_Version_No;
                Maximal : out SSL_Version_No
             )  is
   begin
      Minimal := 0;
      Maximal := SSL_Version_No'Last;
      if (  Context in Client_Context..Any_Context
        and then
            Factory.Client_Context /= No_SSL_CTX
         )  then
         Minimal :=
            SSL_Version_No'Max
            (  Minimal,
               SSL_Version_No
               (  SSL_CTX_ctrl
                  (  Factory.Client_Context,
                     SSL_CTRL_GET_MIN_PROTO_VERSION,
                     0
            )  )  );
         Maximal :=
            SSL_Version_No'Min
            (  Maximal,
               SSL_Version_No
               (  SSL_CTX_ctrl
                  (  Factory.Client_Context,
                     SSL_CTRL_GET_MAX_PROTO_VERSION,
                     0
            )  )  );
      end if;
      if (  Context in Any_Context..Server_Context
        and then
            Factory.Server_Context /= No_SSL_CTX
         )  then
         Minimal :=
            SSL_Version_No'Max
            (  Minimal,
               SSL_Version_No
               (  SSL_CTX_ctrl
                  (  Factory.Server_Context,
                     SSL_CTRL_GET_MIN_PROTO_VERSION,
                     0
            )  )  );
         Maximal :=
            SSL_Version_No'Min
            (  Maximal,
               SSL_Version_No
               (  SSL_CTX_ctrl
                  (  Factory.Server_Context,
                     SSL_CTRL_GET_MAX_PROTO_VERSION,
                     0
            )  )  );
      end if;
   end Get_Proto_Version;

   function Get_Shared_Ciphers (Session : SSL) return String is
      List   : chars_ptr;
      Buffer : char_array (1..1024);
   begin
      List := SSL_get_shared_ciphers (Session, Buffer, Buffer'Length);
      if List = Null_Ptr then
         return "";
      else
         return Value (List);
      end if;
   end Get_Shared_Ciphers;

   function Get_Session
            (  Client : Connection'Class
            )  return SSL is
   begin
      return OpenSSL_Session (Client.Transport.all).SSL_Session;
   end Get_Session;

   procedure Handshake_Completed
             (  Factory : in out Abstract_OpenSSL_Factory;
                Client  : in out Connection'Class;
                Session : SSL
             )  is
   begin
      null;
   end Handshake_Completed;

   function Is_TLS_Capable
            (  Factory : Abstract_OpenSSL_Factory
            )  return Boolean is
   begin
      return True;
   end Is_TLS_Capable;

   function Is_Trace_Decoded (Factory : Abstract_OpenSSL_Factory)
      return Boolean is
   begin
      return Factory.Trace_Decoded;
   end Is_Trace_Decoded;

   function Is_Trace_Session (Factory : Abstract_OpenSSL_Factory)
      return Boolean is
   begin
      return Factory.Trace_Session;
   end Is_Trace_Session;

   procedure Load_Verify_Locations
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                CA_File : String := "";
                CA_Path : String := ""
             )  is
      File   : aliased char_array := To_C (CA_File);
      Path   : aliased char_array := To_C (CA_Path);
      Result : int;
   begin
      if CA_File = "" and then CA_Path = "" then
         return;
      end if;
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if CA_Path = "" then
            Result := SSL_CTX_load_verify_locations
                      (  Factory.Client_Context,
                         To_Chars_Ptr (File'Unchecked_Access),
                         Null_Ptr
                      );
         elsif CA_File = "" then
            Result := SSL_CTX_load_verify_locations
                      (  Factory.Client_Context,
                         Null_Ptr,
                         To_Chars_Ptr (Path'Unchecked_Access)
                      );
         else
            Result := SSL_CTX_load_verify_locations
                      (  Factory.Client_Context,
                         To_Chars_Ptr (File'Unchecked_Access),
                         To_Chars_Ptr (Path'Unchecked_Access)
                      );
         end if;
      end if;
      if Result <= 0 then
         Check_Error (Use_Error'Identity);
      end if;
      if Context in Any_Context..Server_Context then
         if CA_Path = "" then
            Result := SSL_CTX_load_verify_locations
                      (  Factory.Server_Context,
                         To_Chars_Ptr (File'Unchecked_Access),
                         Null_Ptr
                      );
         elsif CA_File = "" then
            Result := SSL_CTX_load_verify_locations
                      (  Factory.Server_Context,
                         Null_Ptr,
                         To_Chars_Ptr (Path'Unchecked_Access)
                      );
         else
            Result := SSL_CTX_load_verify_locations
                      (  Factory.Server_Context,
                         To_Chars_Ptr (File'Unchecked_Access),
                         To_Chars_Ptr (Path'Unchecked_Access)
                      );
         end if;
      end if;
      if Result <= 0 then
         Check_Error (Use_Error'Identity);
      end if;
   end Load_Verify_Locations;

   procedure Process
             (  Transport : in out OpenSSL_Session;
                Listener  : in out Connections_Server'Class;
                Client    : in out Connection'Class;
                Data_Left : out Boolean
             )  is
     Result : int;
   begin
      case Transport.State is
         when TLS_Handshake =>
            if Client.Client then -- A client
               Result := SSL_connect (Transport.SSL_Session);
            else
               Result := SSL_accept (Transport.SSL_Session);
            end if;
            if Result <= 0 then
               case SSL_get_error (Transport.SSL_Session, Result) is
                  when SSL_ERROR_NONE =>
                     null;
                  when SSL_ERROR_ZERO_RETURN =>
                     raise Connection_Error;
                  when SSL_ERROR_WANT_ACCEPT          |
                       SSL_ERROR_WANT_CLIENT_HELLO_CB |
                       SSL_ERROR_WANT_CONNECT         |
                       SSL_ERROR_WANT_READ            |
                       SSL_ERROR_WANT_WRITE           |
                       SSL_ERROR_WANT_X509_LOOKUP     =>
                     Data_Left := Has_Data (Client);
                     return; -- Pump I/O
                  when others =>
                     Check_Error (Data_Error'Identity);
                     Data_Left := Has_Data (Client);
                     return;
               end case;
            end if;
            declare
               Factory : Abstract_OpenSSL_Factory'Class renames
                         Abstract_OpenSSL_Factory'Class
                         (  Listener.Factory.all
                         );
            begin
               begin
                  Handshake_Completed
                  (  Factory,
                     Client,
                     Transport.SSL_Session
                  );
               exception
                  when Connection_Error =>
                     if Factory.Trace_Session then
                        Trace
                        (  Factory,
                           "OpenSSL successful handshake rejected"
                        );
                     end if;
                     raise;
                  when Error : others =>
                     if Factory.Trace_Session then
                        Trace
                        (  Factory,
                           "OpenSSL successful handshake rejected"
                        );
                     end if;
                     Trace_Error
                     (  Factory,
                        "OpenSSL handshake completion",
                        Error
                     );
                     raise Connection_Error;
               end;
               Transport.State := TLS_Exchange;
               if Factory.Trace_Session then
                  if 0 = SSL_session_reused (Transport.SSL_Session) then
                     Trace
                     (  Factory,
                        "OpenSSL handshake successful, new session"
                     );
                  else
                     Trace
                     (  Factory,
                        "OpenSSL handshake successful, resumed session"
                     );
                  end if;
               end if;
               declare
                  Saved : constant Session_State := Client.Session;
               begin
                  Client.Session := Session_Connected;
                  if Is_Opportunistic (Client) then
                     Elevated (Client);
                  else
                     Connected (Client);
                  end if;
                  Connected (Listener, Client);
                  Client.Session := Session_Active;
               exception
                  when others =>
                     if Client.Session = Session_Connected then
                        Client.Session := Saved;
                     end if;
                    raise;
               end;
            end;
            Data_Left := Has_Data (Client);
         when TLS_Exchange =>
            null;
      end case;
      loop
         Decrypt (Transport, Client, Data_Left);
         exit when not Data_Left;
         Process (Transport.Buffer, Client, Data_Left);
         exit when Data_Left; -- Won't handle it right now
      end loop;
   end Process;

   procedure Prepare
             (  Factory : in out Abstract_OpenSSL_Factory;
                Client  : in out Connection'Class;
                Session : SSL
             )  is
   begin
      null;
   end Prepare;

   procedure Read
             (  Client  : in out Connection'Class;
                Data    : in out Stream_Element_Array;
                Pointer : in out Stream_Element_Offset
             )  is
      Start : Stream_Element_Offset := Pointer;
   begin
      Pull (Client.Read, Data, Pointer);
   exception
      when Error : others =>
         Trace_Error
         (  Client.Socket_Listener.Factory.all,
            "OpenSSL transport reading",
            Error
         );
         raise;
   end Read;

   procedure Set_Cipher_List (Session : SSL; List : String) is
   begin
      if SSL_set_cipher_list (Session, To_C (List)) <= 0 then
         Check_Error (Use_Error'Identity);
      end if;
   end Set_Cipher_List;

   procedure Set_Cipher_List
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                List    : String
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if SSL_CTX_set_cipher_list
            (  Factory.Client_Context,
               To_C (List)
            )  <= 0
         then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if SSL_CTX_set_cipher_list
            (  Factory.Server_Context,
               To_C (List)
            )  <= 0
         then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Set_Cipher_List;

   procedure Set_Cipher_Suites (Session : SSL; List : String) is
   begin
      if SSL_set_ciphersuites (Session, To_C (List)) <= 0 then
         Check_Error (Use_Error'Identity);
      end if;
   end Set_Cipher_Suites;

   procedure Set_Cipher_Suites
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                List    : String
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if SSL_CTX_set_ciphersuites
            (  Factory.Client_Context,
               To_C (List)
            )  <= 0
         then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if SSL_CTX_set_ciphersuites
            (  Factory.Server_Context,
               To_C (List)
            )  <= 0
         then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Set_Cipher_Suites;

   procedure Set_Default_Verify_Dir
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_set_default_verify_dir (Factory.Client_Context)
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_set_default_verify_dir (Factory.Server_Context)
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Set_Default_Verify_Dir;

   procedure Set_Default_Verify_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_set_default_verify_file (Factory.Client_Context)
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_set_default_verify_file (Factory.Server_Context)
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Set_Default_Verify_File;

   procedure Set_Default_Verify_Paths
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_set_default_verify_paths (Factory.Client_Context)
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_set_default_verify_paths (Factory.Server_Context)
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Set_Default_Verify_Paths;

   procedure Set_Options (Session : SSL; Options : SSL_OP) is
      Result : SSL_OP;
   begin
      Result := SSL_set_options (Session, Options);
   end Set_Options;

   procedure Set_Options
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                Options : SSL_OP
             )  is
      Result : SSL_OP;
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         Result :=
            SSL_CTX_set_options (Factory.Client_Context, Options);
      end if;
      if Context in Any_Context..Server_Context then
         Result :=
            SSL_CTX_set_options (Factory.Server_Context, Options);
      end if;
   end Set_Options;

   procedure Set_Proto_Version
             (  Session : SSL;
                Minimal : SSL_Version_No;
                Maximal : SSL_Version_No
             )  is
   begin
      if (  SSL_ctrl
            (  Session,
               SSL_CTRL_SET_MIN_PROTO_VERSION,
               long (Minimal)
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
      if (  SSL_ctrl
            (  Session,
               SSL_CTRL_SET_MAX_PROTO_VERSION,
               long (Maximal)
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Set_Proto_Version;

   procedure Set_Proto_Version
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                Minimal : SSL_Version_No;
                Maximal : SSL_Version_No
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_ctrl
               (  Factory.Client_Context,
                  SSL_CTRL_SET_MIN_PROTO_VERSION,
                  long (Minimal)
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
         if (  SSL_CTX_ctrl
               (  Factory.Client_Context,
                  SSL_CTRL_SET_MAX_PROTO_VERSION,
                  long (Maximal)
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_ctrl
               (  Factory.Server_Context,
                  SSL_CTRL_SET_MIN_PROTO_VERSION,
                  long (Minimal)
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
         if (  SSL_CTX_ctrl
               (  Factory.Server_Context,
                  SSL_CTRL_SET_MAX_PROTO_VERSION,
                  long (Maximal)
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Set_Proto_Version;

   procedure Set_TLS_Tracing
             (  Factory : in out Abstract_OpenSSL_Factory;
                Session : Boolean;
                Decoded : Boolean
             )  is
   begin
      Factory.Trace_Session := Session;
      Factory.Trace_Decoded := Decoded;
   end Set_TLS_Tracing;

   procedure Use_Certificate_Chain_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if SSL_use_certificate_chain_file (Session, To_C (File)) <= 0
      then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Certificate_Chain_File;

   procedure Use_Certificate_Chain_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_certificate_chain_file
               (  Factory.Client_Context,
                  To_C (File)
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_certificate_chain_file
               (  Factory.Server_Context,
                  To_C (File)
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Certificate_Chain_File;

   procedure Use_Certificate_ASN1
             (  Session     : SSL;
                Certificate : Stream_Element_Array
             )  is
   begin
      if (  SSL_use_certificate_ASN1
            (  Session,
               Certificate'Length,
               Certificate (Certificate'First)'Address
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Certificate_ASN1;

   procedure Use_Certificate_ASN1
             (  Factory     : in out Abstract_OpenSSL_Factory;
                Context     : Context_Type;
                Certificate : Stream_Element_Array
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_certificate_ASN1
               (  Factory.Client_Context,
                  Certificate'Length,
                  Certificate (Certificate'First)'Address
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_certificate_ASN1
               (  Factory.Server_Context,
                  Certificate'Length,
                  Certificate (Certificate'First)'Address
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Certificate_ASN1;

   procedure Use_Certificate_ASN1_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if (  SSL_use_certificate_file
            (  Session,
               To_C (File),
               SSL_FILETYPE_ASN1
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Certificate_ASN1_File;

   procedure Use_Certificate_ASN1_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
      Name : aliased char_array := To_C (File);
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_certificate_file
               (  Factory.Client_Context,
                  Name,
                  SSL_FILETYPE_ASN1
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_certificate_file
               (  Factory.Server_Context,
                  Name,
                  SSL_FILETYPE_ASN1
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Certificate_ASN1_File;

   procedure Use_Certificate_PEM_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if (  SSL_use_certificate_file
            (  Session,
               To_C (File),
               SSL_FILETYPE_PEM
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Certificate_PEM_File;

   procedure Use_Certificate_PEM_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
      Name : aliased char_array := To_C (File);
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_certificate_file
               (  Factory.Client_Context,
                  Name,
                  SSL_FILETYPE_PEM
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_certificate_file
               (  Factory.Server_Context,
                  Name,
                  SSL_FILETYPE_PEM
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Certificate_PEM_File;

   procedure Use_Key_ASN1
             (  Session : SSL;
                Key     : Stream_Element_Array
             )  is
   begin
      if (  SSL_use_PrivateKey_ASN1
            (  Session,
               Key'Length,
               Key (Key'First)'Address
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Key_ASN1;

   procedure Use_Key_ASN1
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                Key     : Stream_Element_Array
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_PrivateKey_ASN1
               (  Factory.Client_Context,
                  Key'Length,
                  Key (Key'First)'Address
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_PrivateKey_ASN1
               (  Factory.Server_Context,
                  Key'Length,
                  Key (Key'First)'Address
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Key_ASN1;

   procedure Use_Key_ASN1_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if (  SSL_use_PrivateKey_file
            (  Session,
               To_C (File),
               SSL_FILETYPE_ASN1
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Key_ASN1_File;

   procedure Use_Key_ASN1_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
      Name : aliased char_array := To_C (File);
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_PrivateKey_file
               (  Factory.Client_Context,
                  Name,
                  SSL_FILETYPE_ASN1
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_PrivateKey_file
               (  Factory.Server_Context,
                  Name,
                  SSL_FILETYPE_ASN1
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Key_ASN1_File;

   procedure Use_Key_PEM_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if (  SSL_use_PrivateKey_file
            (  Session,
               To_C (File),
               SSL_FILETYPE_PEM
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_Key_PEM_File;

   procedure Use_Key_PEM_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
      Name : aliased char_array := To_C (File);
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_PrivateKey_file
               (  Factory.Client_Context,
                  Name,
                  SSL_FILETYPE_PEM
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_PrivateKey_file
               (  Factory.Server_Context,
                  Name,
                  SSL_FILETYPE_PEM
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_Key_PEM_File;

   procedure Use_RSA_Key_ASN1
             (  Session : SSL;
                Key     : Stream_Element_Array
             )  is
   begin
      if (  SSL_use_RSAPrivateKey_ASN1
            (  Session,
               Key'Length,
               Key (Key'First)'Address
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_RSA_Key_ASN1;

   procedure Use_RSA_Key_ASN1
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                Key     : Stream_Element_Array
             )  is
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_RSAPrivateKey_ASN1
               (  Factory.Client_Context,
                  Key'Length,
                  Key (Key'First)'Address
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_RSAPrivateKey_ASN1
               (  Factory.Server_Context,
                  Key'Length,
                  Key (Key'First)'Address
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_RSA_Key_ASN1;

   procedure Use_RSA_Key_ASN1_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if (  SSL_use_RSAPrivateKey_file
            (  Session,
               To_C (File),
               SSL_FILETYPE_ASN1
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_RSA_Key_ASN1_File;

   procedure Use_RSA_Key_ASN1_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
      Name : aliased char_array := To_C (File);
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_RSAPrivateKey_file
               (  Factory.Client_Context,
                  Name,
                  SSL_FILETYPE_ASN1
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_RSAPrivateKey_file
               (  Factory.Server_Context,
                  Name,
                  SSL_FILETYPE_ASN1
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_RSA_Key_ASN1_File;

   procedure Use_RSA_Key_PEM_File
             (  Session : SSL;
                File    : String
             )  is
   begin
      if (  SSL_use_RSAPrivateKey_file
            (  Session,
               To_C (File),
               SSL_FILETYPE_PEM
            )
         <= 0
         )  then
         Check_Error (Use_Error'Identity);
      end if;
   end Use_RSA_Key_PEM_File;

   procedure Use_RSA_Key_PEM_File
             (  Factory : in out Abstract_OpenSSL_Factory;
                Context : Context_Type;
                File    : String
             )  is
      Name : aliased char_array := To_C (File);
   begin
      Create_Context (Factory, Context);
      if Context in Client_Context..Any_Context then
         if (  SSL_CTX_use_RSAPrivateKey_file
               (  Factory.Client_Context,
                  Name,
                  SSL_FILETYPE_PEM
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
      if Context in Any_Context..Server_Context then
         if (  SSL_CTX_use_RSAPrivateKey_file
               (  Factory.Server_Context,
                  Name,
                  SSL_FILETYPE_PEM
               )
            <= 0
            )  then
            Check_Error (Use_Error'Identity);
         end if;
      end if;
   end Use_RSA_Key_PEM_File;

   procedure Write
             (  Client  : in out Connection'Class;
                Data    : Stream_Element_Array;
                Pointer : in out Stream_Element_Offset
             )  is
      Last : Stream_Element_Offset;
   begin
      Send_Socket
      (  Get_Socket (Client),
         Data (Pointer..Data'Last),
         Last
      );
      if (  Last >= Pointer
         and then
            Is_Trace_Received_On
            (  Client.Socket_Listener.Factory.all,
               Trace_Encoded
         )   )
      then
         Trace_Sent
         (  Factory => Client.Socket_Listener.Factory.all,
            Client  => Client,
            Data    => Data,
            From    => Pointer,
            To      => Last,
            Encoded => True
         );
      end if;
      if Last >= Pointer then
         Client.Data_Sent := True;
         Pointer := Last + 1;
      end if;
   exception
      when Error : Socket_Error =>
         Send_Error (Client, Error);
         raise;
      when Error : others =>
         Trace_Error
         (  Client.Socket_Listener.Factory.all,
            "OpenSSL transport writing",
            Error
         );
         raise;
   end Write;

end GNAT.Sockets.Server.OpenSSL;