1 /* t-exechelp.c - Module test for exechelp.c
2 * Copyright (C) 2009 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
34 print_open_fds (int *array
)
38 for (n
=0; array
[n
] != -1; n
++)
40 printf ("open file descriptors: %d", n
);
46 for (n
=0; array
[n
] != -1; n
++)
47 printf ("%d%s", array
[n
], array
[n
+1] == -1?"":" ");
55 xget_all_open_fds (void)
59 array
= get_all_open_fds ();
62 fprintf (stderr
, "%s:%d: get_all_open_fds failed: %s\n",
63 __FILE__
, __LINE__
, strerror (errno
));
70 /* That is a very crude test. To do a proper test we would need to
71 fork a test process and best return information by some other means
72 that file descriptors. */
74 test_close_all_fds (void)
76 int max_fd
= get_max_fds ();
79 int initial_count
, count
, n
;
83 snprintf (buffer
, sizeof buffer
, "/bin/ls -l /proc/%d/fd", (int)getpid ());
87 printf ("max. file descriptors: %d\n", max_fd
);
88 array
= xget_all_open_fds ();
89 print_open_fds (array
);
90 for (initial_count
=n
=0; array
[n
] != -1; n
++)
94 /* Some dups to get more file descriptors and close one. */
101 array
= xget_all_open_fds ();
103 print_open_fds (array
);
104 for (count
=n
=0; array
[n
] != -1; n
++)
106 if (count
!= initial_count
+3)
108 fprintf (stderr
, "%s:%d: dup or close failed\n",
114 /* Close the non standard ones. */
115 close_all_fds (3, NULL
);
117 /* Get a list to check whether they are all closed. */
118 array
= xget_all_open_fds ();
120 print_open_fds (array
);
121 for (count
=n
=0; array
[n
] != -1; n
++)
123 if (count
> initial_count
)
125 fprintf (stderr
, "%s:%d: not all files were closed\n",
129 initial_count
= count
;
132 /* Now let's check the realloc we use. We do this and the next
133 tests only if we are allowed to open enought descriptors. */
134 if (get_max_fds () > 32)
136 int except
[] = { 20, 23, 24, -1 };
138 for (n
=initial_count
; n
< 31; n
++)
140 array
= xget_all_open_fds ();
142 print_open_fds (array
);
144 for (n
=0; n
< 5; n
++)
147 array
= xget_all_open_fds ();
149 print_open_fds (array
);
153 /* Check whether the except list works. */
154 close_all_fds (3, except
);
155 array
= xget_all_open_fds ();
157 print_open_fds (array
);
158 for (count
=n
=0; array
[n
] != -1; n
++)
162 if (count
!= initial_count
+ DIM(except
)-1)
164 fprintf (stderr
, "%s:%d: close_all_fds failed\n",
174 main (int argc
, char **argv
)
178 if (argc
&& !strcmp (argv
[0], "--verbose"))
184 test_close_all_fds ();