/usr/share/ada/adainclude/aws/aws-net-websocket-protocol-rfc6455.adb is in libaws3.3.2-dev 3.3.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2012-2014, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 3, 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. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are --
-- granted additional permissions described in the GCC Runtime Library --
-- Exception, version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- 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. --
------------------------------------------------------------------------------
pragma Ada_2012;
-- This implements the WebSocket protocol as defined in RFC-6455
with Ada.Strings.Fixed;
with System;
with GNAT.Byte_Swapping;
with GNAT.SHA1;
with AWS.Messages;
with AWS.Net.Buffered;
with AWS.Translator;
package body AWS.Net.WebSocket.Protocol.RFC6455 is
type Bit is range 0 .. 1;
for Bit'Size use 1;
O_Continuation : constant Opcode := 16#0#;
O_Text : constant Opcode := 16#1#;
O_Binary : constant Opcode := 16#2#;
O_Connection_Close : constant Opcode := 16#8#;
O_Ping : constant Opcode := 16#9#;
O_Pong : constant Opcode := 16#A#;
pragma Warnings (Off);
-- This is needed to kill warnings on big-endian targets
type Frame_Header is record
FIN : Bit;
RSV1 : Bit;
RSV2 : Bit;
RSV3 : Bit;
Opcd : Opcode;
Mask : Bit;
Payload_Length : Integer range 0 .. 127;
end record with Pack;
for Frame_Header'Size use 16;
for Frame_Header'Alignment use 1;
for Frame_Header'Bit_Order use System.High_Order_First;
for Frame_Header use record
-- Byte 1
FIN at 0 range 0 .. 0;
RSV1 at 0 range 1 .. 1;
RSV2 at 0 range 2 .. 2;
RSV3 at 0 range 3 .. 3;
Opcd at 0 range 4 .. 7;
-- Byte 2
Mask at 1 range 0 .. 0;
Payload_Length at 1 range 1 .. 7;
end record;
pragma Warnings (On);
procedure Send_Frame_Header
(Protocol : in out State;
Socket : Object;
Opcd : Opcode;
Data_Length : Stream_Element_Offset);
-- Send the frame header only
procedure Send_Frame
(Protocol : in out State;
Socket : Object;
Opcd : Opcode;
Data : Stream_Element_Array;
Error : Status_Code := 0);
-- Send the frame (header + data)
function Is_Library_Error (Code : Interfaces.Unsigned_16) return Boolean;
-- Returns True if Code is a valid library error code
function Is_Valid_Close_Code (Error : Error_Type) return Boolean;
-- Returns True if the Error code is valid
-----------
-- Close --
-----------
overriding procedure Close
(Protocol : in out State;
Socket : Object;
Data : String;
Error : Status_Code) is
begin
Send_Frame
(Protocol, Socket, O_Connection_Close,
Translator.To_Stream_Element_Array (Data), Error);
Protocol.Close_Sent := True;
end Close;
--------------------
-- End_Of_Message --
--------------------
overriding function End_Of_Message (Protocol : State) return Boolean is
begin
return Protocol.Remaining = 0 and then Protocol.Last_Fragment;
end End_Of_Message;
--------------------
-- Is_Error_Valid --
--------------------
function Is_Library_Error (Code : Interfaces.Unsigned_16) return Boolean is
begin
return Code in 3000 .. 4999;
end Is_Library_Error;
-------------------------
-- Is_Valid_Close_Code --
-------------------------
function Is_Valid_Close_Code (Error : Error_Type) return Boolean is
begin
case Error is
when Normal_Closure | Going_Away | Protocol_Error | Unsupported_Data
| Invalid_Frame_Payload_Data .. Internal_Server_Error
=>
return True;
when others =>
return False;
end case;
end Is_Valid_Close_Code;
-------------
-- Receive --
-------------
overriding procedure Receive
(Protocol : in out State;
Socket : Object;
Data : out Stream_Element_Array;
Last : out Stream_Element_Offset)
is
use GNAT;
use System;
procedure Read_Payload
(Protocol : in out State; Length : Stream_Element_Offset);
-- Read the Length bytes of the payload
procedure Read_Data (Data : out Stream_Element_Array);
-- Read data from the socket to fill Data array
---------------
-- Read_Data --
---------------
procedure Read_Data (Data : out Stream_Element_Array) is
First : Stream_Element_Offset := Data'First;
Last : Stream_Element_Offset;
begin
loop
Socket.Socket.Receive (Data (First .. Data'Last), Last);
exit when Last = Data'Last;
First := Last + 1;
end loop;
end Read_Data;
------------------
-- Read_Payload --
------------------
procedure Read_Payload
(Protocol : in out State;
Length : Stream_Element_Offset)
is
Read_Before : constant Stream_Element_Offset := Protocol.Read;
Read : Stream_Element_Offset;
First : Stream_Element_Offset := Data'First;
Max : Stream_Element_Offset;
begin
Last := Data'First + Length - 1;
Max := Stream_Element_Offset'Min (Data'Last, Last);
if Length > 0 then
loop
Socket.Socket.Receive (Data (First .. Max), Last);
Read := Last - First + 1;
Protocol.Read := Protocol.Read + Read;
Protocol.Remaining := Protocol.Remaining - Read;
exit when Protocol.Remaining = 0
or else Last = Data'Last;
First := Last + 1;
end loop;
-- If the message is masked, apply it
if Protocol.Has_Mask then
for K in Data'First .. Last loop
Data (K) := Data (K)
xor Protocol.Mask ((Read_Before + K - Data'First) mod 4);
end loop;
end if;
end if;
end Read_Payload;
D_Header : Stream_Element_Array (1 .. 2) := (0, 0);
Header : Frame_Header;
for Header'Address use D_Header'Address;
D_16 : Stream_Element_Array (1 .. 2);
for D_16'Alignment use Interfaces.Unsigned_16'Alignment;
L_16 : Interfaces.Unsigned_16;
for L_16'Address use D_16'Address;
D_64 : Stream_Element_Array (1 .. 8);
for D_64'Alignment use Interfaces.Unsigned_64'Alignment;
L_64 : Interfaces.Unsigned_64;
for L_64'Address use D_64'Address;
To_Read : Stream_Element_Offset;
L_State : State := Protocol;
Opcd : Opcode;
Bad_Header : Boolean := False;
begin
pragma Assert (Data'Length > 10);
-- This is to ease reading frame header data
-- if a new message is expected, read header
if L_State.Remaining = 0 then
Read_Data (D_Header);
if Header.Payload_Length = 126 then
Read_Data (D_16);
if Default_Bit_Order = Low_Order_First then
Byte_Swapping.Swap2 (L_16'Address);
end if;
L_State.Remaining := Stream_Element_Offset (L_16);
elsif Header.Payload_Length = 127 then
Read_Data (D_64);
if Default_Bit_Order = Low_Order_First then
Byte_Swapping.Swap8 (L_64'Address);
end if;
L_State.Remaining := Stream_Element_Offset (L_64);
else
L_State.Remaining :=
Stream_Element_Offset (Header.Payload_Length);
end if;
if Header.Mask = 1 then
Read_Data (Stream_Element_Array (L_State.Mask));
end if;
-- Check for wrong headers:
-- - RSV? must be zero
-- - continuation frame when there is nothing to continue
Bad_Header := Header.RSV1 /= 0
or else Header.RSV2 /= 0
or else Header.RSV3 /= 0
or else (Header.Opcd = O_Continuation
and then Protocol.Last_Fragment);
-- Set corresponding data in protocol state.
-- In case of a continuation frame we reuse the previous code.
if Header.Opcd = O_Continuation then
Opcd := L_State.Opcd;
else
Opcd := Header.Opcd;
-- In case we have a O_Text or O_Binary message that is in fact
-- a continuation of a message we must fail. The protocol requires
-- that a continuation frame must have O_Continuation.
Bad_Header := Bad_Header
or else
((Header.Opcd = O_Text or else Header.Opcd = O_Binary)
and then not Protocol.Last_Fragment);
end if;
if Bad_Header then
Socket.State.Kind := Unknown;
Last := 0;
return;
end if;
L_State.Has_Mask := Header.Mask = 1;
L_State.Read := 0;
L_State.Last_Fragment := Header.FIN = 1;
L_State.Opcd := Opcd;
else
Opcd := L_State.Opcd;
end if;
-- Read payload data
To_Read := Stream_Element_Offset'Min (Data'Length, L_State.Remaining);
case Opcd is
when O_Text =>
Socket.State.Kind := Text;
Read_Payload (L_State, To_Read);
Protocol := L_State;
when O_Binary =>
Socket.State.Kind := Binary;
Read_Payload (L_State, To_Read);
Protocol := L_State;
when O_Connection_Close =>
Read_Payload (L_State, To_Read);
-- A control frame must not be fragmented and have max 125
-- bytes payload.
if Header.Payload_Length <= 125 and then Header.FIN = 1 then
-- Check the error code if any
if Last - Data'First >= 1 then
-- The first two bytes are the status code
declare
D : Stream_Element_Array (1 .. 2) :=
Data (Data'First .. Data'First + 1);
E : Interfaces.Unsigned_16;
for E'Address use D'Address;
begin
if Default_Bit_Order = Low_Order_First then
Byte_Swapping.Swap2 (E'Address);
end if;
Socket.State.Errno := E;
-- If we have a wrong code this is a Protocol_Error
if (Is_Library_Error (E)
or else Is_Valid_Close_Code (Error (Socket)))
and then
-- A close message must be a valid UTF-8 string
Utils.Is_Valid_UTF8
(Translator.To_String
(Data (Data'First + 2 .. Last)))
then
null;
else
E := Error_Code (Protocol_Error);
end if;
-- Set back Errno
Socket.State.Errno := E;
end;
elsif Last - Data'First = 0 then
-- A single byte, we are missing the status code
Socket.State.Errno := Error_Code (Protocol_Error);
else
-- Empty payload, this is a normal closure
Socket.State.Errno := Error_Code (Normal_Closure);
end if;
-- If needed send a close frame
if not Protocol.Close_Sent then
Protocol.Close_Sent := True;
-- Just echo the status code we received as per RFC
Send_Frame
(Protocol,
Socket, O_Connection_Close,
Data (Data'First + 2 .. Last),
Error => Socket.State.Errno);
end if;
Socket.State.Kind := Connection_Close;
else
Socket.State.Kind := Unknown;
end if;
when O_Ping =>
Socket.State.Kind := Ping;
Read_Payload (L_State, To_Read);
-- Just echo with the application data. Note that a control
-- message must not be fragmented.
if Header.Payload_Length <= 125 and then Header.FIN = 1 then
Send_Frame
(Protocol, Socket, O_Pong, Data (Data'First .. Last));
else
Socket.State.Kind := Unknown;
end if;
when O_Pong =>
Socket.State.Kind := Pong;
Read_Payload (L_State, To_Read);
-- Note that a control message must not be fragmented
if Header.Payload_Length > 125 or else Header.FIN = 0 then
Socket.State.Kind := Unknown;
end if;
when O_Continuation =>
-- Nothing to do in this case. Continuation frames are handled
-- above by changing the code to the proper one.
null;
when others =>
-- Opcode for future enhancement of the protocol, they are
-- illegal at this stage and the connection is required to be
-- shutdown.
Socket.State.Kind := Unknown;
end case;
end Receive;
----------
-- Send --
----------
overriding procedure Send
(Protocol : in out State;
Socket : Object;
Data : Unbounded_String)
is
Len_Data : constant Natural := Length (Data);
Chunk_Size : constant Positive := 4_096;
First : Positive := 1;
Last : Natural;
begin
if Socket.State.Kind = Text then
Send_Frame_Header
(Protocol, Socket, O_Text, Stream_Element_Offset (Len_Data));
else
Send_Frame_Header
(Protocol, Socket, O_Binary, Stream_Element_Offset (Len_Data));
end if;
Send_Data : loop
Last := Positive'Min (Len_Data, First + Chunk_Size - 1);
Net.Buffered.Write
(Socket,
Translator.To_Stream_Element_Array (Slice (Data, First, Last)));
exit Send_Data when Last = Len_Data;
First := Last + 1;
end loop Send_Data;
Net.Buffered.Flush (Socket);
end Send;
overriding procedure Send
(Protocol : in out State;
Socket : Object;
Data : Stream_Element_Array) is
begin
if Socket.State.Kind = Text then
Send_Frame_Header (Protocol, Socket, O_Text, Data'Length);
else
Send_Frame_Header (Protocol, Socket, O_Binary, Data'Length);
end if;
-- Send payload
Net.Buffered.Write (Socket, Data);
Net.Buffered.Flush (Socket);
end Send;
----------------
-- Send_Frame --
----------------
procedure Send_Frame
(Protocol : in out State;
Socket : Object;
Opcd : Opcode;
Data : Stream_Element_Array;
Error : Status_Code := 0)
is
use GNAT;
use System;
use type Status_Code;
Error_Code_Needed : constant Boolean :=
Opcd = O_Connection_Close and then Error > 0;
Frame_Length : constant Stream_Element_Offset :=
Data'Length + (if Error_Code_Needed then 2 else 0);
begin
Send_Frame_Header (Protocol, Socket, Opcd, Frame_Length);
-- Send the 2-byte error code for close control frame
if Error_Code_Needed then
declare
D : Stream_Element_Array (1 .. 2);
for D'Alignment use Interfaces.Unsigned_16'Alignment;
E : Interfaces.Unsigned_16 := Error;
for E'Address use D'Address;
begin
if Default_Bit_Order = Low_Order_First then
Byte_Swapping.Swap2 (E'Address);
end if;
Net.Buffered.Write (Socket, D);
end;
end if;
-- Send payload
Net.Buffered.Write (Socket, Data);
Net.Buffered.Flush (Socket);
end Send_Frame;
-----------------------
-- Send_Frame_Header --
-----------------------
procedure Send_Frame_Header
(Protocol : in out State;
Socket : Object;
Opcd : Opcode;
Data_Length : Stream_Element_Offset)
is
pragma Unreferenced (Protocol);
use GNAT;
use System;
D_Header : Stream_Element_Array (1 .. 2) := (0, 0);
Header : Frame_Header;
for Header'Address use D_Header'Address;
D_16 : Stream_Element_Array (1 .. 2);
for D_16'Alignment use Interfaces.Unsigned_16'Alignment;
L_16 : Interfaces.Unsigned_16;
for L_16'Address use D_16'Address;
D_64 : Stream_Element_Array (1 .. 8);
for D_64'Alignment use Interfaces.Unsigned_64'Alignment;
L_64 : Interfaces.Unsigned_64;
for L_64'Address use D_64'Address;
begin
Header.FIN := 1;
Header.Opcd := Opcd;
Header.Mask := 0;
Header.RSV1 := 0;
Header.RSV2 := 0;
Header.RSV3 := 0;
-- Compute proper message length, see RFC-6455 for a full description
--
-- <= 125 Payload_Length is the actual length
-- <= 65535 The actual length is in the 2 following bytes
-- and set payload length to 126
-- otherwise The actual length is in the 8 following bytes
-- and set payload length to 127
if Data_Length <= 125 then
Header.Payload_Length := Integer (Data_Length);
elsif Data_Length <= 65535 then
Header.Payload_Length := 126;
L_16 := Interfaces.Unsigned_16 (Data_Length);
if Default_Bit_Order = Low_Order_First then
Byte_Swapping.Swap2 (L_16'Address);
end if;
else
Header.Payload_Length := 127;
L_64 := Interfaces.Unsigned_64 (Data_Length);
if Default_Bit_Order = Low_Order_First then
Byte_Swapping.Swap8 (L_64'Address);
end if;
end if;
-- Send header
Net.Buffered.Write (Socket, D_Header);
-- Send extended length if any
if Data_Length <= 125 then
null;
elsif Data_Length <= 65535 then
Net.Buffered.Write (Socket, D_16);
else
Net.Buffered.Write (Socket, D_64);
end if;
end Send_Frame_Header;
-----------------
-- Send_Header --
-----------------
procedure Send_Header
(Sock : Net.Socket_Type'Class; Request : AWS.Status.Data)
is
use GNAT;
GUID : constant String :=
"258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
-- As specified into the RFC-6455
Key : constant String :=
Strings.Fixed.Trim
(AWS.Status.Sec_WebSocket_Key (Request), Strings.Both);
begin
declare
SHA : constant String := SHA1.Digest (Key & GUID);
-- The SHA-1 as a string
Hex : Stream_Element_Array (1 .. SHA'Length / 2);
-- The SHA-1 as an hexadecimal array
-- ??? Use new service to retrieve the SHA-1 in binary format when
-- GNAT GPL supports it.
begin
for K in 1 .. SHA'Length / 2 loop
Hex (Stream_Element_Offset (K)) :=
Stream_Element'Value ("16#" & SHA (K * 2 - 1 .. K * 2) & '#');
end loop;
Net.Buffered.Put_Line
(Sock,
Messages.Sec_WebSocket_Accept (Translator.Base64_Encode (Hex)));
end;
end Send_Header;
end AWS.Net.WebSocket.Protocol.RFC6455;
|