Rombobjörn

summaryrefslogtreecommitdiff
path: root/test/test_milter_package.adb
blob: fddb5e71913d4f65ada3fdabb9638f2a3b6ddaca (plain)
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
-- The Ada Milter API test milter
-- Copyright 2012 - 2013 B. Persson, Bjorn@Rombobeorn.se
--
-- This program is free software: you can redistribute it and/or modify it
-- under the terms of the GNU General Public License version 3, as published
-- by the Free Software Foundation.


with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Milter_API; use Milter_API;
with Berkeley_Exit_Codes;
with System_Log; use System_Log;
with Ada.Unchecked_Deallocation;
with Interfaces.C;
with Ada.Exceptions;
with Ada.Directories;
with Ada.Text_IO;
with GNAT.OS_Lib;

package body Test_Milter_Package is


   type Test_Action is (None, Test_Reject, Test_Discard, Test_Fail_Temporarily);


   type Message_Data is limited new Milter_Data with record
      Test_Message : Boolean;
      Action       : Test_Action;
   end record;
   type Message_Data_Pointer is access all Message_Data;
   procedure Free is new Ada.Unchecked_Deallocation(Message_Data,
                                                    Message_Data_Pointer);

   Socket_Obstructed : exception;


   function Private_Data(Context : SMFICTX_Pointer) return Message_Data_Pointer
   is
   begin
      return Message_Data_Pointer(Milter_API.Private_Data(Context));
   end Private_Data;


   function Handle_Connection
      (Context        : SMFICTX_Pointer;
       Client_Name    : String;
       Client_Address : Sockaddr)
      return Action
   is
      Local_Client : Boolean := False;
      -- Allocate a message data record for this SMTP session.
      Data : constant Message_Data_Pointer := new Message_Data;
   begin
      Log(Debug, "Handle_Connection");
      if Milter_API.Private_Data(Context) /= null then
         Log(Warning,
             "The private data pointer isn't null in Handle_Connection. " &
             "Memory is probably leaking.");
      end if;
      -- Remember the pointer to the message data record.
      Set_Private_Data(Context, Milter_Data_Pointer(Data));
      declare
         use type Interfaces.Unsigned_8;
         Addr : constant IP_Address := Address(Client_Address);
      begin
         case Addr.Family is
            when IPv4 =>
               Local_Client := Addr.IPv4_Address(1) = 127;
            when IPv6 =>
               Local_Client := Addr.IPv6_Address = (1..15 => 0, 16 => 1);
         end case;
      exception
         when No_Address =>
            Log(Warning, "The MTA didn't provide the client's IP address.");
         when Unknown_Address_Type =>
            Log(Error, "The client address is of an unknown type.");
      end;
      Log(Debug,
          "client address: " & Address(Client_Address) &
          ", local client: " & Boolean'Image(Local_Client));
      if Local_Client then
         return Continue;
      else
         -- The test milter won't touch messages from this connection.
         return Accept_Definitely;
      end if;
   end Handle_Connection;


   function Handle_Helo
      (Context     : SMFICTX_Pointer;
       Stated_Name : String)
      return Action
   is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Helo");
      return Continue;
   end Handle_Helo;


   function Handle_Sender
      (Context   : SMFICTX_Pointer;
       Sender    : String;
       Arguments : Arguments_Handle)
      return Action
   is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Sender");
      -- Initialize the message data record, or clear it of data from the
      -- previous message in the SMTP session.
      Data.Test_Message := False;
      Data.Action := None;
      return Continue;
   end Handle_Sender;


   function Handle_Recipient
      (Context   : SMFICTX_Pointer;
       Recipient : String;
       Arguments : Arguments_Handle)
      return Action
   is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Recipient " & Recipient);
      if Index(Recipient, "Ada_Milter_API_test_milter") /= 0 then
         Data.Test_Message := True;
      end if;
      return Continue;
   end Handle_Recipient;


   function Handle_Data(Context : SMFICTX_Pointer) return Action is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Data");
      if Data.Test_Message then
         return Continue;
      else
         -- This message is not intended for the test milter.
         return Accept_Definitely;
      end if;
   end Handle_Data;


   function Handle_Unknown_Command
      (Context : SMFICTX_Pointer;
       Command : String)
      return Action
   is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Unknown_Command");
      return Continue;
   end Handle_Unknown_Command;


   function Handle_Header
      (Context : SMFICTX_Pointer;
       Name    : String;
       Value   : String)
      return Action
   is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Header " & Name);
      return Continue;
   end Handle_Header;


   function Handle_End_Of_Headers(Context : SMFICTX_Pointer) return Action is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_End_Of_Headers");
      return Continue;
   end Handle_End_Of_Headers;


   function Handle_Body
      (Context    : SMFICTX_Pointer;
       Body_Chunk : String)
      return Action
   is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Body");
      return Continue;
   end Handle_Body;


   function Handle_End_Of_Message(Context : SMFICTX_Pointer) return Action is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_End_Of_Message");
      return Reject;
   end Handle_End_Of_Message;


   procedure Handle_Abort(Context : SMFICTX_Pointer) is
      Data : constant Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Abort");
   end Handle_Abort;


   procedure Handle_Close(Context : SMFICTX_Pointer) is
      Data : Message_Data_Pointer := Private_Data(Context);
   begin
      Log(Debug, "Handle_Close");
      -- Deallocate the message data record.
      Free(Data);
      Set_Private_Data(Context, null);
   end Handle_Close;


   procedure Clean_And_Set_Socket is
      Socket_Name : constant String := "/var/spool/test_milter/milter_socket";
      function umask(mask : Interfaces.C.unsigned) return Interfaces.C.unsigned;
      pragma import(C, umask);
      mask : Interfaces.C.unsigned;  -- dummy to soak up the result from umask
      pragma Unreferenced(mask);
   begin
      -- Delete the socket file if it exists, assuming it was left behind
      -- because of a crash.
      if Ada.Directories.Exists(Socket_Name) then
         Log(Warning, Socket_Name & " exists. Deleting it.");
         -- GNAT's implementation of Ada.Directories.Delete_File calls a
         -- function named Is_Regular_File and refuses to delete a socket file,
         -- so GNAT.OS_Lib.Delete_File must be used instead.
         -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56055
         declare
            OK : Boolean;
         begin
            GNAT.OS_Lib.Delete_File(Socket_Name, OK);
            if not OK then
               raise Socket_Obstructed with
                  Socket_Name & " can't be created because a file with that " &
                  "name exists and can't be deleted.";
            end if;
         end;
      end if;
      -- Clear the permissions mask to allow the MTA to use the socket.
      mask := umask(0);
      -- Tell the milter library where to create the socket.
      Set_Socket("unix:" & Socket_Name);
   end Clean_And_Set_Socket;


   function Run return Ada.Command_Line.Exit_Status is
      use Ada.Exceptions;
      use Berkeley_Exit_Codes;
      use Ada.Text_IO;
   begin
      Log(Info,
          "Starting. Milter API version " & Milter_API.Binding_Version_String &
          ", Libmilter version " & Milter_API.Libmilter_Version_String);
      Clean_And_Set_Socket;
      Register(Name                         => "test_milter/libmilter",
               Connected                    => Handle_Connection'Access,
               Helo                         => Handle_Helo'Access,
               Sender                       => Handle_Sender'Access,
               Recipient                    => Handle_Recipient'Access,
               Data                         => Handle_Data'Access,
               Unknown_Command              => Handle_Unknown_Command'Access,
               Header                       => Handle_Header'Access,
               End_Of_Headers               => Handle_End_Of_Headers'Access,
               Body_Chunk                   => Handle_Body'Access,
               End_Of_Message               => Handle_End_Of_Message'Access,
               Aborted                      => Handle_Abort'Access,
               Closed                       => Handle_Close'Access);
      Milter_API.Main;
      return Ada.Command_Line.Success;
   exception
      when E : Milter_API.Failure =>
         Log(Error, Exception_Message(E));
         return Ada.Command_Line.Failure;
      when E : Milter_API.Unknown_Error =>
         Log(Error, Exception_Message(E));
         return Software_Error;
      when E : Socket_Obstructed =>
         Log(Error, Exception_Message(E));
         return Cannot_Create_File;
      when E : others =>
         Put_Line(Standard_Error, Exception_Information(E));
         Log(Error,
             "Unexpected error: " & Exception_Name(E) & ": " &
             Exception_Message(E));
         return Software_Error;
   end Run;


end Test_Milter_Package;