OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [vsnprintf-chk.c] - Diff between revs 297 and 338

Only display areas with differences | Details | Blame | View Log

Rev 297 Rev 338
/* Copyright (C) 2004, 2005  Free Software Foundation.
/* Copyright (C) 2004, 2005  Free Software Foundation.
 
 
   Ensure builtin __vsnprintf_chk performs correctly.  */
   Ensure builtin __vsnprintf_chk performs correctly.  */
 
 
#include <stdarg.h>
#include <stdarg.h>
 
 
extern void abort (void);
extern void abort (void);
typedef __SIZE_TYPE__ size_t;
typedef __SIZE_TYPE__ size_t;
extern size_t strlen(const char *);
extern size_t strlen(const char *);
extern void *memcpy (void *, const void *, size_t);
extern void *memcpy (void *, const void *, size_t);
extern char *strcpy (char *, const char *);
extern char *strcpy (char *, const char *);
extern int memcmp (const void *, const void *, size_t);
extern int memcmp (const void *, const void *, size_t);
extern void *memset (void *, int, size_t);
extern void *memset (void *, int, size_t);
extern int vsnprintf (char *, size_t, const char *, va_list);
extern int vsnprintf (char *, size_t, const char *, va_list);
 
 
#include "chk.h"
#include "chk.h"
 
 
const char s1[] = "123";
const char s1[] = "123";
char p[32] = "";
char p[32] = "";
char *s2 = "defg";
char *s2 = "defg";
char *s3 = "FGH";
char *s3 = "FGH";
char *s4;
char *s4;
size_t l1 = 1;
size_t l1 = 1;
static char buffer[32];
static char buffer[32];
char *ptr = "barf";
char *ptr = "barf";
 
 
int
int
__attribute__((noinline))
__attribute__((noinline))
test1_sub (int i, ...)
test1_sub (int i, ...)
{
{
  int ret = 0;
  int ret = 0;
  va_list ap;
  va_list ap;
  va_start (ap, i);
  va_start (ap, i);
  switch (i)
  switch (i)
    {
    {
    case 0:
    case 0:
      vsnprintf (buffer, 4, "foo", ap);
      vsnprintf (buffer, 4, "foo", ap);
      break;
      break;
    case 1:
    case 1:
      ret = vsnprintf (buffer, 4, "foo bar", ap);
      ret = vsnprintf (buffer, 4, "foo bar", ap);
      break;
      break;
    case 2:
    case 2:
      vsnprintf (buffer, 32, "%s", ap);
      vsnprintf (buffer, 32, "%s", ap);
      break;
      break;
    case 3:
    case 3:
      ret = vsnprintf (buffer, 21, "%s", ap);
      ret = vsnprintf (buffer, 21, "%s", ap);
      break;
      break;
    case 4:
    case 4:
      ret = vsnprintf (buffer, 4, "%d%d%d", ap);
      ret = vsnprintf (buffer, 4, "%d%d%d", ap);
      break;
      break;
    case 5:
    case 5:
      ret = vsnprintf (buffer, 32, "%d%d%d", ap);
      ret = vsnprintf (buffer, 32, "%d%d%d", ap);
      break;
      break;
    case 6:
    case 6:
      ret = vsnprintf (buffer, strlen (ptr) + 1, "%s", ap);
      ret = vsnprintf (buffer, strlen (ptr) + 1, "%s", ap);
      break;
      break;
    case 7:
    case 7:
      vsnprintf (buffer, l1 + 31, "%d - %c", ap);
      vsnprintf (buffer, l1 + 31, "%d - %c", ap);
      break;
      break;
    case 8:
    case 8:
      vsnprintf (s4, l1 + 6, "%d - %c", ap);
      vsnprintf (s4, l1 + 6, "%d - %c", ap);
      break;
      break;
    }
    }
  va_end (ap);
  va_end (ap);
  return ret;
  return ret;
}
}
 
 
void
void
__attribute__((noinline))
__attribute__((noinline))
test1 (void)
test1 (void)
{
{
  chk_calls = 0;
  chk_calls = 0;
  /* vsnprintf_disallowed = 1; */
  /* vsnprintf_disallowed = 1; */
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  test1_sub (0);
  test1_sub (0);
  if (memcmp (buffer, "foo", 4) || buffer[4] != 'A')
  if (memcmp (buffer, "foo", 4) || buffer[4] != 'A')
    abort ();
    abort ();
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  if (test1_sub (1) != 7)
  if (test1_sub (1) != 7)
    abort ();
    abort ();
  if (memcmp (buffer, "foo", 4) || buffer[4] != 'A')
  if (memcmp (buffer, "foo", 4) || buffer[4] != 'A')
    abort ();
    abort ();
 
 
  vsnprintf_disallowed = 0;
  vsnprintf_disallowed = 0;
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  test1_sub (2, "bar");
  test1_sub (2, "bar");
  if (memcmp (buffer, "bar", 4) || buffer[4] != 'A')
  if (memcmp (buffer, "bar", 4) || buffer[4] != 'A')
    abort ();
    abort ();
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  if (test1_sub (3, "bar") != 3)
  if (test1_sub (3, "bar") != 3)
    abort ();
    abort ();
  if (memcmp (buffer, "bar", 4) || buffer[4] != 'A')
  if (memcmp (buffer, "bar", 4) || buffer[4] != 'A')
    abort ();
    abort ();
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  if (test1_sub (4, (int) l1, (int) l1 + 1, (int) l1 + 12) != 4)
  if (test1_sub (4, (int) l1, (int) l1 + 1, (int) l1 + 12) != 4)
    abort ();
    abort ();
  if (memcmp (buffer, "121", 4) || buffer[4] != 'A')
  if (memcmp (buffer, "121", 4) || buffer[4] != 'A')
    abort ();
    abort ();
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  if (test1_sub (5, (int) l1, (int) l1 + 1, (int) l1 + 12) != 4)
  if (test1_sub (5, (int) l1, (int) l1 + 1, (int) l1 + 12) != 4)
    abort ();
    abort ();
  if (memcmp (buffer, "1213", 5) || buffer[5] != 'A')
  if (memcmp (buffer, "1213", 5) || buffer[5] != 'A')
    abort ();
    abort ();
 
 
  if (chk_calls)
  if (chk_calls)
    abort ();
    abort ();
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  test1_sub (6, ptr);
  test1_sub (6, ptr);
  if (memcmp (buffer, "barf", 5) || buffer[5] != 'A')
  if (memcmp (buffer, "barf", 5) || buffer[5] != 'A')
    abort ();
    abort ();
 
 
  memset (buffer, 'A', 32);
  memset (buffer, 'A', 32);
  test1_sub (7, (int) l1 + 27, *ptr);
  test1_sub (7, (int) l1 + 27, *ptr);
  if (memcmp (buffer, "28 - b\0AAAAA", 12))
  if (memcmp (buffer, "28 - b\0AAAAA", 12))
    abort ();
    abort ();
 
 
  if (chk_calls != 2)
  if (chk_calls != 2)
    abort ();
    abort ();
  chk_calls = 0;
  chk_calls = 0;
 
 
  memset (s4, 'A', 32);
  memset (s4, 'A', 32);
  test1_sub (8, (int) l1 - 17, ptr[1]);
  test1_sub (8, (int) l1 - 17, ptr[1]);
  if (memcmp (s4, "-16 - \0AAA", 10))
  if (memcmp (s4, "-16 - \0AAA", 10))
    abort ();
    abort ();
  if (chk_calls)
  if (chk_calls)
    abort ();
    abort ();
}
}
 
 
void
void
__attribute__((noinline))
__attribute__((noinline))
test2_sub (int i, ...)
test2_sub (int i, ...)
{
{
  va_list ap;
  va_list ap;
  struct A { char buf1[10]; char buf2[10]; } a;
  struct A { char buf1[10]; char buf2[10]; } a;
  char *r = l1 == 1 ? &a.buf1[5] : &a.buf2[4];
  char *r = l1 == 1 ? &a.buf1[5] : &a.buf2[4];
  char buf3[20];
  char buf3[20];
  int j;
  int j;
 
 
  va_start (ap, i);
  va_start (ap, i);
  /* The following calls should do runtime checking
  /* The following calls should do runtime checking
     - length is not known, but destination is.  */
     - length is not known, but destination is.  */
  switch (i)
  switch (i)
    {
    {
    case 0:
    case 0:
      vsnprintf (a.buf1 + 2, l1, "%s", ap);
      vsnprintf (a.buf1 + 2, l1, "%s", ap);
      break;
      break;
    case 1:
    case 1:
      vsnprintf (r, l1 + 4, "%s%c", ap);
      vsnprintf (r, l1 + 4, "%s%c", ap);
      break;
      break;
    case 2:
    case 2:
      r = l1 == 1 ? __builtin_alloca (4) : &a.buf2[7];
      r = l1 == 1 ? __builtin_alloca (4) : &a.buf2[7];
      vsnprintf (r, strlen (s2) - 2, "%c %s", ap);
      vsnprintf (r, strlen (s2) - 2, "%c %s", ap);
      break;
      break;
    case 3:
    case 3:
      r = l1 == 1 ? __builtin_alloca (4) : &a.buf2[7];
      r = l1 == 1 ? __builtin_alloca (4) : &a.buf2[7];
      vsnprintf (r + 2, l1, s3 + 3, ap);
      vsnprintf (r + 2, l1, s3 + 3, ap);
      break;
      break;
    case 4:
    case 4:
    case 7:
    case 7:
      r = buf3;
      r = buf3;
      for (j = 0; j < 4; ++j)
      for (j = 0; j < 4; ++j)
        {
        {
          if (j == l1 - 1)
          if (j == l1 - 1)
            r = &a.buf1[1];
            r = &a.buf1[1];
          else if (j == l1)
          else if (j == l1)
            r = &a.buf2[7];
            r = &a.buf2[7];
          else if (j == l1 + 1)
          else if (j == l1 + 1)
            r = &buf3[5];
            r = &buf3[5];
          else if (j == l1 + 2)
          else if (j == l1 + 2)
            r = &a.buf1[9];
            r = &a.buf1[9];
        }
        }
      if (i == 4)
      if (i == 4)
        vsnprintf (r, l1, s2 + 4, ap);
        vsnprintf (r, l1, s2 + 4, ap);
      else
      else
        vsnprintf (r, 1, "a", ap);
        vsnprintf (r, 1, "a", ap);
      break;
      break;
    case 5:
    case 5:
      r = l1 == 1 ? __builtin_alloca (4) : &a.buf2[7];
      r = l1 == 1 ? __builtin_alloca (4) : &a.buf2[7];
      vsnprintf (r, l1 + 3, "%s", ap);
      vsnprintf (r, l1 + 3, "%s", ap);
      break;
      break;
    case 6:
    case 6:
      vsnprintf (a.buf1 + 2, 4, "", ap);
      vsnprintf (a.buf1 + 2, 4, "", ap);
      break;
      break;
    case 8:
    case 8:
      vsnprintf (s4, 3, "%s %d", ap);
      vsnprintf (s4, 3, "%s %d", ap);
      break;
      break;
    }
    }
  va_end (ap);
  va_end (ap);
}
}
 
 
/* Test whether compile time checking is done where it should
/* Test whether compile time checking is done where it should
   and so is runtime object size checking.  */
   and so is runtime object size checking.  */
void
void
__attribute__((noinline))
__attribute__((noinline))
test2 (void)
test2 (void)
{
{
  /* The following calls should do runtime checking
  /* The following calls should do runtime checking
     - length is not known, but destination is.  */
     - length is not known, but destination is.  */
  chk_calls = 0;
  chk_calls = 0;
  test2_sub (0, s3 + 3);
  test2_sub (0, s3 + 3);
  test2_sub (1, s3 + 3, s3[3]);
  test2_sub (1, s3 + 3, s3[3]);
  test2_sub (2, s2[2], s2 + 4);
  test2_sub (2, s2[2], s2 + 4);
  test2_sub (3);
  test2_sub (3);
  test2_sub (4);
  test2_sub (4);
  test2_sub (5, s1 + 1);
  test2_sub (5, s1 + 1);
  if (chk_calls != 6)
  if (chk_calls != 6)
    abort ();
    abort ();
 
 
  /* Following have known destination and known source length,
  /* Following have known destination and known source length,
     so if optimizing certainly shouldn't result in the checking
     so if optimizing certainly shouldn't result in the checking
     variants.  */
     variants.  */
  chk_calls = 0;
  chk_calls = 0;
  /* vsnprintf_disallowed = 1; */
  /* vsnprintf_disallowed = 1; */
  test2_sub (6);
  test2_sub (6);
  test2_sub (7);
  test2_sub (7);
  vsnprintf_disallowed = 0;
  vsnprintf_disallowed = 0;
  /* Unknown destination and source, no checking.  */
  /* Unknown destination and source, no checking.  */
  test2_sub (8, s3, 0);
  test2_sub (8, s3, 0);
  if (chk_calls)
  if (chk_calls)
    abort ();
    abort ();
}
}
 
 
void
void
__attribute__((noinline))
__attribute__((noinline))
test3_sub (int i, ...)
test3_sub (int i, ...)
{
{
  va_list ap;
  va_list ap;
  struct A { char buf1[10]; char buf2[10]; } a;
  struct A { char buf1[10]; char buf2[10]; } a;
  char buf3[20];
  char buf3[20];
 
 
  va_start (ap, i);
  va_start (ap, i);
  /* The following calls should do runtime checking
  /* The following calls should do runtime checking
     - source length is not known, but destination is.  */
     - source length is not known, but destination is.  */
  switch (i)
  switch (i)
    {
    {
    case 0:
    case 0:
      vsnprintf (&a.buf2[9], l1 + 1, "%c%s", ap);
      vsnprintf (&a.buf2[9], l1 + 1, "%c%s", ap);
      break;
      break;
    case 1:
    case 1:
      vsnprintf (&a.buf2[7], l1 + 30, "%s%c", ap);
      vsnprintf (&a.buf2[7], l1 + 30, "%s%c", ap);
      break;
      break;
    case 2:
    case 2:
      vsnprintf (&a.buf2[7], l1 + 3, "%d", ap);
      vsnprintf (&a.buf2[7], l1 + 3, "%d", ap);
      break;
      break;
    case 3:
    case 3:
      vsnprintf (&buf3[17], l1 + 3, "%s", ap);
      vsnprintf (&buf3[17], l1 + 3, "%s", ap);
      break;
      break;
    case 4:
    case 4:
      vsnprintf (&buf3[19], 2, "a", ap);
      vsnprintf (&buf3[19], 2, "a", ap);
      break;
      break;
    case 5:
    case 5:
      vsnprintf (&buf3[16], 5, "a", ap);
      vsnprintf (&buf3[16], 5, "a", ap);
      break;
      break;
    }
    }
  va_end (ap);
  va_end (ap);
}
}
 
 
/* Test whether runtime and/or compile time checking catches
/* Test whether runtime and/or compile time checking catches
   buffer overflows.  */
   buffer overflows.  */
void
void
__attribute__((noinline))
__attribute__((noinline))
test3 (void)
test3 (void)
{
{
  chk_fail_allowed = 1;
  chk_fail_allowed = 1;
  /* Runtime checks.  */
  /* Runtime checks.  */
  if (__builtin_setjmp (chk_fail_buf) == 0)
  if (__builtin_setjmp (chk_fail_buf) == 0)
    {
    {
      test3_sub (0, s2[3], s2 + 4);
      test3_sub (0, s2[3], s2 + 4);
      abort ();
      abort ();
    }
    }
  if (__builtin_setjmp (chk_fail_buf) == 0)
  if (__builtin_setjmp (chk_fail_buf) == 0)
    {
    {
      test3_sub (1, s3 + strlen (s3) - 2, *s3);
      test3_sub (1, s3 + strlen (s3) - 2, *s3);
      abort ();
      abort ();
    }
    }
  if (__builtin_setjmp (chk_fail_buf) == 0)
  if (__builtin_setjmp (chk_fail_buf) == 0)
    {
    {
      test3_sub (2, (int) l1 + 9999);
      test3_sub (2, (int) l1 + 9999);
      abort ();
      abort ();
    }
    }
  if (__builtin_setjmp (chk_fail_buf) == 0)
  if (__builtin_setjmp (chk_fail_buf) == 0)
    {
    {
      test3_sub (3, "abc");
      test3_sub (3, "abc");
      abort ();
      abort ();
    }
    }
  /* This should be detectable at compile time already.  */
  /* This should be detectable at compile time already.  */
  if (__builtin_setjmp (chk_fail_buf) == 0)
  if (__builtin_setjmp (chk_fail_buf) == 0)
    {
    {
      test3_sub (4);
      test3_sub (4);
      abort ();
      abort ();
    }
    }
  if (__builtin_setjmp (chk_fail_buf) == 0)
  if (__builtin_setjmp (chk_fail_buf) == 0)
    {
    {
      test3_sub (5);
      test3_sub (5);
      abort ();
      abort ();
    }
    }
  chk_fail_allowed = 0;
  chk_fail_allowed = 0;
}
}
 
 
void
void
main_test (void)
main_test (void)
{
{
#ifndef __OPTIMIZE__
#ifndef __OPTIMIZE__
  /* Object size checking is only intended for -O[s123].  */
  /* Object size checking is only intended for -O[s123].  */
  return;
  return;
#endif
#endif
  __asm ("" : "=r" (s2) : "0" (s2));
  __asm ("" : "=r" (s2) : "0" (s2));
  __asm ("" : "=r" (s3) : "0" (s3));
  __asm ("" : "=r" (s3) : "0" (s3));
  __asm ("" : "=r" (l1) : "0" (l1));
  __asm ("" : "=r" (l1) : "0" (l1));
  s4 = p;
  s4 = p;
  test1 ();
  test1 ();
  test2 ();
  test2 ();
  test3 ();
  test3 ();
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.