/usr/share/ada/adainclude/anet/anet-sockets.adb is in libanet0.3.1-dev 0.3.1-1.
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 | --
-- Copyright (C) 2011-2013 secunet Security Networks AG
-- Copyright (C) 2011-2014 Reto Buerki <reet@codelabs.ch>
-- Copyright (C) 2011-2014 Adrian-Ken Rueegsegger <ken@codelabs.ch>
--
-- This program 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. See <http://www.fsf.org/copyleft/gpl.txt>.
--
-- This program 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.
--
-- 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 GNAT.OS_Lib;
with Anet.Sockets.Thin;
package body Anet.Sockets is
package C renames Interfaces.C;
-------------------------------------------------------------------------
function Check_Accept (Result : Interfaces.C.int) return Accept_Result_Type
is
begin
if Result = C_Failure then
if GNAT.OS_Lib.Errno = Constants.Sys.EINTR then
-- Aborted, most probably via an ATC in the receiver task.
return Accept_Op_Aborted;
end if;
-- Some other error occurred.
return Accept_Op_Error;
end if;
return Accept_Op_Ok;
end Check_Accept;
-------------------------------------------------------------------------
procedure Check_Complete_Send
(Item : Ada.Streams.Stream_Element_Array;
Result : Interfaces.C.long;
Error_Msg : String)
is
use Ada.Streams;
Sent_Bytes : constant Stream_Element_Offset
:= Item'First + (Stream_Element_Offset (Result) - Item'First);
begin
if Sent_Bytes /= Item'Length then
raise Socket_Error with Error_Msg & ", only" & Sent_Bytes'Img & " of"
& Item'Length'Img & " bytes sent";
end if;
end Check_Complete_Send;
-------------------------------------------------------------------------
function Check_Receive (Result : Interfaces.C.long) return Recv_Result_Type
is
begin
if Result = 0 then
-- The peer performed an orderly shutdown.
return Recv_Op_Orderly_Shutdown;
end if;
if Result = C_Failure then
if GNAT.OS_Lib.Errno = Constants.Sys.EINTR then
-- Aborted, most probably via an ATC in the receiver task.
return Recv_Op_Aborted;
end if;
-- Some other error occurred.
return Recv_Op_Error;
end if;
return Recv_Op_Ok;
end Check_Receive;
-------------------------------------------------------------------------
procedure Close (Socket : in out Socket_Type)
is
Res : C.int;
begin
if Socket.Sock_FD /= -1 then
Res := Thin.C_Close (Socket.Sock_FD);
if Res = C_Failure then
raise Socket_Error with "Unable to close socket: "
& Get_Errno_String;
end if;
Socket.Sock_FD := -1;
Socket.Protocol := 0;
end if;
end Close;
-------------------------------------------------------------------------
procedure Finalize (Socket : in out Socket_Type)
is
begin
Socket_Type'Class (Socket).Close;
end Finalize;
-------------------------------------------------------------------------
procedure Init
(Socket : in out Socket_Type;
Family : Socket_Families.Family_Type;
Mode : Mode_Type;
Protocol : Double_Byte := 0)
is
Res : C.int;
begin
Res := Thin.C_Socket (Domain => Socket_Families.Families (Family),
Typ => Modes (Mode),
Protocol => C.int (Protocol));
if Res = C_Failure then
raise Socket_Error with "Unable to create socket (" & Family'Img & "/"
& Mode'Img & ", protocol" & Protocol'Img & "): "
& Get_Errno_String;
end if;
Socket.Sock_FD := Res;
Socket.Protocol := Protocol;
end Init;
-------------------------------------------------------------------------
procedure Listen
(Socket : Socket_Type;
Backlog : Positive := 1)
is
Res : C.int;
begin
Res := Thin.C_Listen (Socket => Socket.Sock_FD,
Backlog => C.int (Backlog));
if Res = C_Failure then
raise Socket_Error with "Unable to listen on socket with backlog"
& Backlog'Img & " - " & Get_Errno_String;
end if;
end Listen;
-------------------------------------------------------------------------
procedure Receive
(Socket : Socket_Type;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset)
is
use type Ada.Streams.Stream_Element_Offset;
Res : C.long;
begin
Last := 0;
Res := Thin.C_Recv (S => Socket.Sock_FD,
Msg => Item'Address,
Len => Item'Length,
Flags => 0);
case Check_Receive (Result => Res)
is
when Recv_Op_Orderly_Shutdown | Recv_Op_Aborted => return;
when Recv_Op_Error =>
raise Socket_Error with "Error receiving data from socket: "
& Get_Errno_String;
when Recv_Op_Ok =>
Last := Item'First + Ada.Streams.Stream_Element_Offset (Res - 1);
end case;
end Receive;
-------------------------------------------------------------------------
procedure Send
(Socket : Socket_Type;
Item : Ada.Streams.Stream_Element_Array)
is
Res : C.long;
begin
Res := Thin.C_Send (S => Socket.Sock_FD,
Buf => Item'Address,
Len => Item'Length,
Flags => 0);
if Res = C_Failure then
raise Socket_Error with "Unable to send data on socket - "
& Get_Errno_String;
end if;
Check_Complete_Send
(Item => Item,
Result => Res,
Error_Msg => "Incomplete send operation on socket");
end Send;
-------------------------------------------------------------------------
procedure Set_Socket_Option
(Socket : Socket_Type;
Option : Option_Name_Bool;
Value : Boolean)
is
Val : C.int := C.int (Boolean'Pos (Value));
Res : C.int;
begin
Res := Thin.C_Setsockopt
(S => Socket.Sock_FD,
Level => Levels (Socket_Level),
Optname => Options_Bool (Option),
Optval => Val'Address,
Optlen => Val'Size / 8);
if Res = C_Failure then
raise Socket_Error with "Unable set boolean socket option "
& Option'Img & " to " & Value'Img & ": " & Get_Errno_String;
end if;
end Set_Socket_Option;
-------------------------------------------------------------------------
procedure Set_Socket_Option
(Socket : Socket_Type;
Option : Option_Name_Str;
Value : String)
is
Val : constant C.char_array := C.To_C (Value);
Res : C.int;
begin
Res := Thin.C_Setsockopt
(S => Socket.Sock_FD,
Level => Levels (Socket_Level),
Optname => Options_Str (Option),
Optval => Val'Address,
Optlen => Val'Size / 8);
if Res = C_Failure then
raise Socket_Error with "Unable set string socket option "
& Option'Img & " to '" & Value & "': " & Get_Errno_String;
end if;
end Set_Socket_Option;
end Anet.Sockets;
|