Skip to content

Commit 3ff4e5e

Browse files
Merge pull request wolfSSL#8606 from mgrojo/feature/alire-usability
Ada: preparation for Alire index and fixes detected by GNATprove
2 parents 10a1126 + e6f09b8 commit 3ff4e5e

9 files changed

+59
-56
lines changed

wrapper/Ada/README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ code to zero-out stack frames used by subprograms.
1313
Unfortunately this works well for the primary stack but not
1414
for the secondary stack. The GNAT User's Guide recommends
1515
avoiding the secondary stack using the restriction
16-
No_Secondary_Stack (see the GNAT configuration file gnat.adc
16+
No_Secondary_Stack (see the GNAT configuration file restricted.adc
1717
which instructs compilation of the WolfSSL Ada binding under
1818
this restriction). Note, however, that the examples do make use of the
19-
secondary stack.
19+
secondary stack and the Alire project does not include this restriction, for
20+
letting users of the library to define it at their level.
2021

2122
Portability: The WolfSSL Ada binding makes no usage of controlled types
2223
and has no dependency upon the Ada.Finalization package.
@@ -25,11 +26,11 @@ the restriction No_Finalization. The WolfSSL Ada binding has
2526
been developed with maximum portability in mind.
2627

2728
Not only can the WolfSSL Ada binding be used in Ada applications but
28-
also SPARK applications (a subset of the Ada language suitable
29+
also SPARK applications (a subset of the Ada language suitable for
2930
formal verification). To formally verify the Ada code in this repository
30-
open the client.gpr with GNAT Studio and then select
31+
open the examples.gpr with GNAT Studio and then select
3132
SPARK -> Prove All Sources and use Proof Level 2. Or when using the command
32-
line, use `gnatprove -Pclient.gpr --level=4 -j12` (`-j12` is there in
33+
line, use `gnatprove -Pexamples.gpr --level=4 -j12` (`-j12` is there in
3334
order to instruct the prover to use 12 CPUs if available).
3435

3536
```
@@ -83,7 +84,7 @@ and use gprbuild to build the source code.
8384
cd wrapper/Ada
8485
gprclean
8586
gprbuild default.gpr
86-
gprbuild client.gpr
87+
gprbuild examples.gpr
8788

8889
cd obj/
8990
./tls_server_main &
@@ -93,7 +94,7 @@ cd obj/
9394
On Windows, build the executables with:
9495
```sh
9596
gprbuild -XOS=Windows default.gpr
96-
gprbuild -XOS=Windows client.gpr
97+
gprbuild -XOS=Windows examples.gpr
9798
```
9899

99100
## Files

wrapper/Ada/alire.toml

+3
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ licenses = "GPL-2.0-only"
99
website = "https://www.wolfssl.com/"
1010
project-files = ["wolfssl.gpr"]
1111
tags = ["ssl", "tls", "embedded", "spark"]
12+
13+
[configuration.variables]
14+
STATIC_PSK = {type = "Boolean", default = false}

wrapper/Ada/default.gpr

+12-6
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,27 @@ project Default is
1111
"../../src",
1212
"../../wolfcrypt/src");
1313

14-
-- Don't build the tls client application because it makes use
14+
-- Don't build the tls application examples because they make use
1515
-- of the Secondary Stack due to usage of the Ada.Command_Line
1616
-- package. All other Ada source code does not use the secondary stack.
17-
for Excluded_Source_Files use ("tls_client_main.adb",
18-
"tls_client.ads",
19-
"tls_client.adb");
17+
for Excluded_Source_Files use
18+
("tls_client_main.adb",
19+
"tls_client.ads",
20+
"tls_client.adb",
21+
"tls_server_main.adb",
22+
"tls_server.ads",
23+
"tls_server.adb");
2024

2125
for Object_Dir use "obj";
2226

23-
for Main use ("tls_server_main.adb");
24-
2527
package Naming is
2628
for Spec_Suffix ("C") use ".h";
2729
end Naming;
2830

31+
package Builder is
32+
for Global_Configuration_Pragmas use "restricted.adc";
33+
end Builder;
34+
2935
package Compiler is
3036
for Switches ("C") use
3137
("-DWOLFSSL_USER_SETTINGS", -- Use the user_settings.h file.

wrapper/Ada/client.gpr wrapper/Ada/examples.gpr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project Client is
1+
project Examples is
22
type OS_Kind is ("Windows", "Linux_Or_Mac");
33

44
OS : OS_Kind := external ("OS", "Linux_Or_Mac");
@@ -12,7 +12,7 @@ project Client is
1212

1313
for Object_Dir use "obj";
1414

15-
for Main use ("tls_client_main.adb");
15+
for Main use ("tls_server_main.adb", "tls_client_main.adb");
1616

1717
package Naming is
1818
for Spec_Suffix ("C") use ".h";
@@ -75,4 +75,4 @@ project Client is
7575
for Switches ("Ada") use ("-Es"); -- To include stack traces.
7676
end Binder;
7777

78-
end Client;
78+
end Examples;

wrapper/Ada/include.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
EXTRA_DIST+= wrapper/Ada/README.md
66
EXTRA_DIST+= wrapper/Ada/default.gpr
7-
EXTRA_DIST+= wrapper/Ada/gnat.adc
7+
EXTRA_DIST+= wrapper/Ada/restricted.adc
88
EXTRA_DIST+= wrapper/Ada/ada_binding.c
99
EXTRA_DIST+= wrapper/Ada/tls_client_main.adb
1010
EXTRA_DIST+= wrapper/Ada/tls_client.adb
File renamed without changes.

wrapper/Ada/tls_client.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ package body Tls_Client with SPARK_Mode is
204204
Output : WolfSSL.Write_Result;
205205

206206
Result : WolfSSL.Subprogram_Result;
207-
DTLS : Boolean;
208-
PSK : Boolean;
207+
DTLS : Boolean := False;
208+
PSK : Boolean := False;
209209
begin
210210
Result := WolfSSL.Initialize;
211211
if Result /= Success then

wrapper/Ada/tls_server.adb

+10-12
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ package body Tls_Server with SPARK_Mode is
122122
Identity_String : constant String := "Client_identity";
123123
-- Test key in hex is 0x1a2b3c4d, in decimal 439,041,101
124124
Key_String : constant String :=
125-
Character'Val (26)
126-
& Character'Val (43)
127-
& Character'Val (60)
128-
& Character'Val (77);
125+
(Character'Val (26),
126+
Character'Val (43),
127+
Character'Val (60),
128+
Character'Val (77));
129129
-- These values are aligned with test values in wolfssl/wolfssl/test.h
130130
-- and wolfssl-examples/psk/server-psk.c for testing interoperability.
131131

@@ -139,10 +139,6 @@ package body Tls_Server with SPARK_Mode is
139139
return 0;
140140
end if;
141141

142-
put_line (Interfaces.C.Strings.Value
143-
(Item => Identity,
144-
Length => Identity_String'Length) );
145-
146142
Interfaces.C.Strings.Update
147143
(Item => Key,
148144
Offset => 0,
@@ -162,7 +158,7 @@ package body Tls_Server with SPARK_Mode is
162158
Ch : Character;
163159

164160
Result : WolfSSL.Subprogram_Result;
165-
DTLS, PSK : Boolean;
161+
DTLS, PSK : Boolean := True;
166162
Shall_Continue : Boolean := True;
167163

168164
Input : WolfSSL.Read_Result;
@@ -261,13 +257,15 @@ package body Tls_Server with SPARK_Mode is
261257
if not PSK then
262258
-- Require mutual authentication.
263259
WolfSSL.Set_Verify
264-
(Context => Ctx,
260+
(Context => Ctx,
265261
Mode => WolfSSL.Verify_Peer or WolfSSL.Verify_Fail_If_No_Peer_Cert);
266262

267263
-- Check verify is set correctly (GitHub #7461)
268264
if WolfSSL.Get_Verify(Context => Ctx) /= (WolfSSL.Verify_Peer or WolfSSL.Verify_Fail_If_No_Peer_Cert) then
269-
Put ("Error: Verify does not match requested");
270-
New_Line;
265+
Put_Line ("Error: Verify does not match requested");
266+
SPARK_Sockets.Close_Socket (L);
267+
WolfSSL.Free (Context => Ctx);
268+
Set (Exit_Status_Failure);
271269
return;
272270
end if;
273271

wrapper/Ada/wolfssl.gpr

+20-25
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1+
with "config/wolfssl_config.gpr";
2+
13
library project WolfSSL is
24

35
for Library_Name use "wolfssl";
4-
-- for Library_Version use Project'Library_Name & ".so";
5-
type OS_Kind is ("Windows", "Linux_Or_Mac");
6-
7-
OS : OS_Kind := external ("OS", "Linux_Or_Mac");
86

97
for Languages use ("C", "Ada");
108

@@ -15,12 +13,13 @@ library project WolfSSL is
1513

1614
-- Don't build the tls client or server application.
1715
-- They are not needed in order to build the library.
18-
for Excluded_Source_Files use ("tls_client_main.adb",
19-
"tls_client.ads",
20-
"tls_client.adb",
21-
"tls_server_main.adb",
22-
"tls_server.ads",
23-
"tls_server.adb");
16+
for Excluded_Source_Files use
17+
("tls_client_main.adb",
18+
"tls_client.ads",
19+
"tls_client.adb",
20+
"tls_server_main.adb",
21+
"tls_server.ads",
22+
"tls_server.adb");
2423

2524
for Object_Dir use "obj";
2625
for Library_Dir use "lib";
@@ -34,12 +33,19 @@ library project WolfSSL is
3433
for Spec_Suffix ("C") use ".h";
3534
end Naming;
3635

37-
package Builder is
38-
for Global_Configuration_Pragmas use "gnat.adc";
39-
end Builder;
36+
C_Compiler_Config := ();
37+
38+
case Wolfssl_Config.STATIC_PSK is
39+
when "True" =>
40+
C_Compiler_Config :=
41+
("-DWOLFSSL_STATIC_PSK" -- Enable the static PSK cipher support
42+
);
43+
when others =>
44+
C_Compiler_Config := ();
45+
end case;
4046

4147
package Compiler is
42-
for Switches ("C") use
48+
for Switches ("C") use C_Compiler_Config &
4349
("-DWOLFSSL_USER_SETTINGS", -- Use the user_settings.h file.
4450
"-Wno-pragmas",
4551
"-Wall",
@@ -81,16 +87,5 @@ library project WolfSSL is
8187
package Binder is
8288
for Switches ("Ada") use ("-Es"); -- To include stack traces.
8389
end Binder;
84-
85-
-- case OS is
86-
-- when "Windows" =>
87-
-- for Library_Options use ("-lm", -- To include the math library (used by WolfSSL).
88-
-- "-lcrypt32"); -- Needed on Windows.
89-
-- when "Linux_Or_Mac" =>
90-
-- for Library_Options use ("-lm"); -- To include the math library (used by WolfSSL).
91-
-- end case;
92-
--
93-
-- -- Put user options in front, for options like --as-needed.
94-
-- for Leading_Library_Options use External_As_List ("LDFLAGS", " ");
9590

9691
end WolfSSl;

0 commit comments

Comments
 (0)