gid_12.0.0_86d6be08/test/steg.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
--
--  Minimal steganography tool.
--
--  This demo is derived from mini.adb.
--

--  To do:
--    - encryption

with GID;

with Ada.Calendar,
     Ada.Characters.Handling,
     Ada.Command_Line,
     Ada.Float_Text_IO,
     Ada.Numerics.Elementary_Functions,
     Ada.Streams.Stream_IO,
     Ada.Text_IO,
     Ada.Unchecked_Deallocation;

with Interfaces;

procedure Steg is

  use Ada.Characters.Handling, Ada.Streams.Stream_IO, Ada.Text_IO;

  procedure Blurb is
  begin
    Put_Line (Standard_Error, "Steg * Minimal steganography tool");
    New_Line (Standard_Error);
    Put_Line (Standard_Error, "  Encoding: converts any image file to a PPM image file, with");
    Put_Line (Standard_Error, "            inclusion of a hidden data file. The PPM image can then");
    Put_Line (Standard_Error, "            be converted to a lossless-compressed format like PNG.");
    New_Line (Standard_Error);
    Put_Line (Standard_Error, "  Decoding: extracts a hidden file from an image.");
    New_Line (Standard_Error);
    Put_Line (Standard_Error, "GID version " & GID.version & " dated " & GID.reference);
    Put_Line (Standard_Error, "URL: " & GID.web);
    New_Line (Standard_Error);
    Put_Line (Standard_Error, "Syntax:");
    Put_Line (Standard_Error, " steg [e|d] <image> <file>");
    New_Line (Standard_Error);
  end Blurb;

  use Interfaces;

  type Byte_Array is array (Integer range <>) of Unsigned_8;
  type p_Byte_Array is access Byte_Array;
  procedure Dispose is new Ada.Unchecked_Deallocation (Byte_Array, p_Byte_Array);

  img_buf : p_Byte_Array := null;

  --  Load image into a 24-bit truecolor RGB raw bitmap (for a PPM output)
  procedure Load_Raw_Image
    (image      : in out GID.Image_Descriptor;
     buffer     : in out p_Byte_Array;
     next_frame :    out Ada.Calendar.Day_Duration)
  is
    subtype Primary_Color_Range is Unsigned_8;
    image_width  : constant Positive := GID.Pixel_Width (image);
    image_height : constant Positive := GID.Pixel_Height (image);
    idx : Natural;
    --
    procedure Set_X_Y (x, y : Natural) is
    begin
      idx := 3 * (x + image_width * (image_height - 1 - y));
    end Set_X_Y;
    --
    procedure Put_Pixel
      (red, green, blue : Primary_Color_Range;
       alpha            : Primary_Color_Range)
    is
    pragma Warnings (off, alpha);  --  alpha is ignored
    begin
      buffer (idx .. idx + 2) := (red, green, blue);
      idx := idx + 3;
      --  ^ GID requires us to look to next pixel on the right for next time.
    end Put_Pixel;

    stars : Natural := 0;
    procedure Feedback (percents : Natural) is
      so_far : constant Natural := percents / 5;
    begin
      for i in stars + 1 .. so_far loop
        Put (Standard_Error, '*');
      end loop;
      stars := so_far;
    end Feedback;

    procedure Load_image is
      new GID.Load_Image_Contents
        (Primary_Color_Range, Set_X_Y,
         Put_Pixel, Feedback, GID.fast);

  begin
    Dispose (buffer);
    buffer := new Byte_Array (0 .. 3 * image_width * image_height - 1);
    Load_image (image, next_frame);
  end Load_Raw_Image;

  procedure Dump_PPM (name : String; i : GID.Image_Descriptor) is
    f : Ada.Streams.Stream_IO.File_Type;
    ppm_name : constant String := name & ".ppm";
  begin
    Create (f, Out_File, ppm_name);
    Put_Line (Standard_Error, "Creating PPM image, name = " & ppm_name & " ...");
    --  PPM Header:
    String'Write
      (Stream (f),
       "P6 " &
       Integer'Image (GID.Pixel_Width (i)) &
       Integer'Image (GID.Pixel_Height (i)) & " 255" & ASCII.LF);
    --  PPM raw BGR image:
    Byte_Array'Write (Stream (f), img_buf.all);
    --  ^ slow on some Ada systems, see to_bmp to have a faster version
    Close (f);
  end Dump_PPM;

  type Operation is (encoding, decoding);

  Data_too_large : exception;

  procedure Process (image_name, data_name : String; op : Operation) is
    f_im, f_dt : Ada.Streams.Stream_IO.File_Type;
    --
    procedure Encode is
      idx : Natural := img_buf'Last;
      --  ^ Start with buffer's end (the image's bottom), with the hope it
      --    is "noisier": often there is a blue sky, or some smooth
      --    background like that, on the image's top...
      --
      procedure Encode_Byte (b : Unsigned_8) is
      begin
        --  One pixel contains one data byte.
        --  Blue:
        img_buf (idx) := (img_buf (idx) and 2#1111_1100#) or (b and 2#0000_0011#);
        idx := idx - 1;
        --  Green:
        img_buf (idx) := (img_buf (idx) and 2#1111_1000#) or Shift_Right (b and 2#0001_1100#, 2);
        idx := idx - 1;
        --  Red:
        img_buf (idx) := (img_buf (idx) and 2#1111_1000#) or Shift_Right (b, 5);
        idx := idx - 1;
      end Encode_Byte;
      --
      b : Unsigned_8;
      data_size : Unsigned_64;
      needed_size : Unsigned_64;
      available_size : constant Unsigned_64 := img_buf'Length / 3;  --  1 byte per pixel;
      factor : Float;
      use Ada.Float_Text_IO, Ada.Numerics.Elementary_Functions;
      function Percents_Image (x : Float) return String is (Integer (100.0 * x)'Image & '%');
      function Suggested_Scaling_Percents return String is (Percents_Image (Sqrt (factor)));
    begin
      Open (f_dt, In_File, data_name);
      data_size := Unsigned_64 (Size (f_dt));
      needed_size := data_size + 8;
      factor := Float (needed_size) / Float (available_size);
      if needed_size > available_size then
        factor := factor + 0.01;  --  Adjust for avoiding exception message with exactly "100%".
        raise Data_too_large with
          "Needs around" & Percents_Image (factor) & " raw size scaling, i.e. around" &
          Suggested_Scaling_Percents & " image scaling in both dimensions";
      end if;
      Put (Standard_Error, "Data size:" & data_size'Image & ", using ");
      Put (Standard_Error, 100.0 * factor, 0, 3, 0);
      Put_Line (Standard_Error,  "% of image data");
      if factor < 0.98 then
        Put_Line
          (Standard_Error,
           "You could still encode the data on a reduced image, scaled down to" &
           Suggested_Scaling_Percents & " in both dimensions");
      end if;
      for i in 1 .. 8 loop
        Encode_Byte (Unsigned_8 (data_size and 16#FF#));
        data_size := Shift_Right (data_size, 8);
      end loop;
      while not End_Of_File (f_dt) loop
        Unsigned_8'Read (Stream (f_dt), b);
        Encode_Byte (b);
      end loop;
      Close (f_dt);
    end Encode;
    --
    procedure Decode is
      idx : Natural := img_buf'Last;
      --
      procedure Decode_Byte (b : out Unsigned_8) is
      begin
        --  One pixel contains one data byte.
        --  Blue:
        b := img_buf (idx) and 2#0000_0011#;
        idx := idx - 1;
        --  Green:
        b := b + Shift_Left (img_buf (idx) and 2#0000_0111#, 2);
        idx := idx - 1;
        --  Red:
        b := b + Shift_Left (img_buf (idx) and 2#0000_0111#, 5);
        idx := idx - 1;
      end Decode_Byte;
      --
      b : Unsigned_8;
      data_size : Unsigned_64 := 0;
    begin
      for i in 0 .. 7 loop
        Decode_Byte (b);
        data_size := data_size + Shift_Left (Unsigned_64 (b), i * 8);
      end loop;
      if data_size * 3 > Unsigned_64 (idx + 1) then
        raise Data_too_large with
          "Data size (as stored in the image) exceeds the image's" &
          " capacity. It seems that either the steganography has been" &
          " altered, or that there is no steganography at all.";
      end if;
      Create (f_dt, Out_File, data_name);
      for i in 1 .. data_size loop
        Decode_Byte (b);
        Unsigned_8'Write (Stream (f_dt), b);
      end loop;
      Close (f_dt);
    end Decode;
    --
    i : GID.Image_Descriptor;
    up_name : constant String := To_Upper (image_name);
    --
    next_frame : Ada.Calendar.Day_Duration;
  begin
    --
    --  Load the image in its original format
    --
    Open (f_im, In_File, image_name);
    Put_Line (Standard_Error, "Processing " & image_name & "...");
    --
    GID.Load_Image_Header
      (i,
       Stream (f_im).all,
       try_tga =>
         image_name'Length >= 4 and then
         up_name (up_name'Last - 3 .. up_name'Last) = ".TGA");
    Put_Line (Standard_Error, ".........v.........v");
    --
    Load_Raw_Image (i, img_buf, next_frame);
    New_Line (Standard_Error);
    Close (f_im);
    case op is
      when encoding =>
        Encode;
        Dump_PPM (image_name, i);  --  Output encoded image
      when decoding =>
        Decode;
    end case;
  end Process;

  op : Operation;

  use Ada.Command_Line;

begin
  if Argument_Count /= 3 then
    Blurb;
    return;
  end if;
  if To_Lower (Argument (1)) = "e" then
    op := encoding;
  elsif To_Lower (Argument (1)) = "d" then
    op := decoding;
  else
    Blurb;
    return;
  end if;
  Process (Argument (2), Argument (3), op);
end Steg;