Imported Upstream version 0.19.7
[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, 2015 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 #include <assert.h>
27
28 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT
29 # include <sys/types.h>
30 # include <sys/time.h>
31 # include <sys/resource.h>
32 #endif
33
34 /* Make sure we use the included libintl, not the system's one. */
35 #undef _LIBINTL_H
36 #include "libgnuintl.h"
37
38 int
39 main ()
40 {
41   size_t n;
42   char *msg;
43   char *translated;
44
45   n = 1000000;
46
47 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT
48   {
49     struct rlimit limit;
50
51 # ifdef RLIMIT_STACK
52     if (getrlimit (RLIMIT_STACK, &limit) < 0)
53       {
54         printf ("Skipping test: getrlimit does not work\n");
55         return 77;
56       }
57     if (limit.rlim_max == RLIM_INFINITY || limit.rlim_max > n)
58       limit.rlim_max = n;
59     limit.rlim_cur = limit.rlim_max;
60     if (setrlimit (RLIMIT_STACK, &limit) < 0)
61       {
62         printf ("Skipping test: setrlimit does not work\n");
63         return 77;
64       }
65 # endif
66   }
67 #endif
68
69   msg = (char *) malloc (n + 1);
70   if (msg == NULL)
71     {
72       printf ("Skipping test: out of memory\n");
73       return 77;
74     }
75   memset (msg, 'x', n);
76   msg[n] = '\0';
77
78   translated = gettext (msg);
79   free (msg);
80   assert (translated != NULL);
81
82   return 0;
83 }