Imported Upstream version 0.18.1.1
[platform/upstream/gettext.git] / gettext-tools / tests / gettext-8-prg.c
1 /* Test that gettext() does not crash by stack overflow when msgid is very long.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <haible@clisp.cons.org>, 2007.  */
18
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT
28 # include <sys/types.h>
29 # include <sys/time.h>
30 # include <sys/resource.h>
31 #endif
32
33 /* Make sure we use the included libintl, not the system's one. */
34 #undef _LIBINTL_H
35 #include "libgnuintl.h"
36
37 int
38 main ()
39 {
40   size_t n;
41   char *msg;
42
43   n = 1000000;
44
45 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT
46   {
47     struct rlimit limit;
48
49 # ifdef RLIMIT_STACK
50     if (getrlimit (RLIMIT_STACK, &limit) < 0)
51       {
52         printf ("Skipping test: getrlimit does not work\n");
53         return 77;
54       }
55     if (limit.rlim_max == RLIM_INFINITY || limit.rlim_max > n)
56       limit.rlim_max = n;
57     limit.rlim_cur = limit.rlim_max;
58     if (setrlimit (RLIMIT_STACK, &limit) < 0)
59       {
60         printf ("Skipping test: setrlimit does not work\n");
61         return 77;
62       }
63 # endif
64   }
65 #endif
66
67   msg = (char *) malloc (n + 1);
68   if (msg == NULL)
69     {
70       printf ("Skipping test: out of memory\n");
71       return 77;
72     }
73   memset (msg, 'x', n);
74   msg[n] = '\0';
75
76   msg = gettext (msg);
77
78   return 0;
79 }