This file is indexed.

/usr/share/ada/adainclude/florist/posix-group_database.adb is in libflorist2014-dev 2014-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
------------------------------------------------------------------------------
--                                                                          --
--            FLORIST (FSU Implementation of POSIX.5) COMPONENTS            --
--                                                                          --
--                  P O S I X . G R O U P _ D A T A B A S E                 --
--                                                                          --
--                                  B o d y                                 --
--                                                                          --
--                                                                          --
--             Copyright (C) 1996-1997 Florida State University             --
--                     Copyright (C) 1998-2006 AdaCore                      --
--                                                                          --
--  This file is a component of FLORIST, an  implementation of an  Ada API  --
--  for the POSIX OS services, for use with  the  GNAT  Ada  compiler  and  --
--  the FSU Gnu Ada Runtime Library (GNARL).   The  interface  is intended  --
--  to be close to that specified in  IEEE STD  1003.5: 1990  and IEEE STD  --
--  1003.5b: 1996.                                                          --
--                                                                          --
--  FLORIST 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  2, or (at  your option) any  --
--  later version.  FLORIST 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.  You  should have  received a  --
--  copy of the GNU General Public License  distributed  with  GNARL;  see  --
--  file  COPYING.  If not,  write to  the  Free  Software  Foundation, 59  --
--  Temple Place - Suite 330, Boston, MA 02111-1307, USA.                   --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
------------------------------------------------------------------------------

with POSIX.Implementation,
     Unchecked_Conversion;

package body POSIX.Group_Database is

   use POSIX.C,
       POSIX.Implementation;

   function To_gid is new Unchecked_Conversion
      (POSIX.Process_Identification.Group_ID, gid_t);
   function To_Group_ID is new Unchecked_Conversion
      (gid_t, POSIX.Process_Identification.Group_ID);

   --  Operations to get information from a Group_Database_Item

   ---------------------
   --  Group_Name_Of  --
   ---------------------

   function Group_Name_Of (DB_Item : Group_Database_Item)
      return POSIX.POSIX_String is
   begin
      if DB_Item = null then
         Raise_POSIX_Error (Invalid_Argument);
      end if;
      return Form_POSIX_String (group_ptr (DB_Item).gr_name);
   end Group_Name_Of;

   -------------------
   --  Group_ID_Of  --
   -------------------

   function Group_ID_Of (DB_Item : Group_Database_Item)
      return POSIX.Process_Identification.Group_ID is
   begin
      if DB_Item = null then
         Raise_POSIX_Error (Invalid_Argument);
      end if;
      return To_Group_ID (group_ptr (DB_Item).gr_gid);
   end Group_ID_Of;

   ------------------------
   --  Group_ID_List_Of  --
   ------------------------

   function Group_ID_List_Of (DB_Item : Group_Database_Item)
      return Group_ID_List is
   begin
      if DB_Item = null then
         Raise_POSIX_Error (Invalid_Argument);
      end if;
      return Group_ID_List (group_ptr (DB_Item).gr_mem);
   end Group_ID_List_Of;

   ------------------------
   --  For_Every_Member  --
   ------------------------

   procedure For_Every_Member (List : Group_ID_List) is
      Quit : Boolean := False;
      P : char_ptr_ptr;
   begin
      P := char_ptr_ptr (List);
      if P = null then
         return;
      end if;
      while P.all /= null loop
         declare
            S : constant POSIX_String := Form_POSIX_String (P.all);
         begin
            Action (S, Quit);
            exit when Quit;
         end;
         Advance (P);
      end loop;
   end For_Every_Member;

   --------------
   --  Length  --
   --------------

   function Length (Member_List : Group_ID_List) return Natural is
      P : char_ptr_ptr := char_ptr_ptr (Member_List);
      Length : Natural := 0;
   begin
      if P = null then
         return 0;
      end if;
      while P.all /= null loop
         Length := Length + 1; Advance (P);
      end loop;
      return Length;
   end Length;

   -------------------------------
   --  Get_Group_Database_Item  --
   -------------------------------

   function getgrgid (gid : gid_t) return group_ptr;
   pragma Import (C, getgrgid, "getgrgid");
   function getgrnam (name : char_ptr) return group_ptr;
   pragma Import (C, getgrnam, "getgrnam");

   function Get_Group_Database_Item
      (GID : POSIX.Process_Identification.Group_ID)
     return Group_Database_Item is
      G : group_ptr;
   begin
      G := getgrgid (To_gid (GID));
      if G = null then
         Raise_POSIX_Error (Invalid_Argument);
      end if;
      return Group_Database_Item (G);
   end Get_Group_Database_Item;

   -------------------------------
   --  Get_Group_Database_Item  --
   -------------------------------

   function Get_Group_Database_Item
      (Name : POSIX_String)
     return Group_Database_Item is
      Name_With_NUL : POSIX_String := Name & NUL;
      G : group_ptr;
   begin
      G := getgrnam (Name_With_NUL (Name_With_NUL'First)'Unchecked_Access);
      if G = null then
         Raise_POSIX_Error (Invalid_Argument);
      end if;
      return Group_Database_Item (G);
   end Get_Group_Database_Item;

end POSIX.Group_Database;