Branch
Hash :
8c9fa489
Author :
Date :
2022-04-13T18:33:16
Fix undefined behaviour. * tests/test-shiftseq.c (main2): Make input array larger.
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
/* Copyright (C) 2008, 2018, 2022 Free Software Foundation, Inc.
This file is part of the GNU LIBICONV Library.
The GNU LIBICONV Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either version 2.1
of the License, or (at your option) any later version.
The GNU LIBICONV Library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU LIBICONV Library; see the file COPYING.LIB.
If not, see <https://www.gnu.org/licenses/>. */
#include "config.h"
#include <stdlib.h>
#include <iconv.h>
#include <errno.h>
/* This test checks that the behaviour of iconv() in the situation of an
invalid multibyte character after a shift sequence is consistent whether
the entire buffer is passed at once, or whether it is passed in two
subsequent calls. Based on a bug report from
Roman Rybalko <roman_rybalko@users.sourceforge.net>
at <https://savannah.gnu.org/bugs/?24216>. */
void main1 (void)
{
static const char input[] = "+2D/YQNhB";
iconv_t cd;
char buf[20];
const char * inptr;
size_t inleft;
char * outptr;
size_t outleft;
cd = iconv_open ("UTF-8", "UTF-7");
{
size_t r;
inptr = input;
inleft = 9;
outptr = buf;
outleft = sizeof (buf);
r = iconv (cd, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft);
/*
printf ("r = %d errno = %d inconsumed = %d outproduced = %d\n",
r, errno, inptr - input, outptr - buf);
// glibc:
// r = -1 errno = 84 inconsumed = 4 outproduced = 0
// libiconv:
// r = -1 errno = 84 inconsumed = 1 outproduced = 0
*/
if (!(r == (size_t)(-1) && errno == EILSEQ
&& inptr - input == 1 && outptr - buf == 0))
abort();
}
}
void main2 (void)
{
static const char input[20] = "+2D/YQNhB";
iconv_t cd;
char buf[20];
const char * inptr;
size_t inleft;
char * outptr;
size_t outleft;
cd = iconv_open ("UTF-8", "UTF-7");
{
size_t r;
inptr = input;
inleft = 5;
outptr = buf;
outleft = sizeof (buf);
r = iconv (cd, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft);
/*
printf ("r = %d errno = %d inconsumed = %d outproduced = %d\n",
r, errno, inptr - input, outptr - buf);
// glibc:
// r = -1 errno = 84 (EILSEQ) inconsumed = 4 outproduced = 0
// libiconv:
// r = -1 errno = 22 (EINVAL) inconsumed = 1 outproduced = 0
*/
if (!(r == (size_t)(-1) && errno == EINVAL
&& inptr - input == 1 && outptr - buf == 0))
abort();
inleft = input + 20 - inptr;
r = iconv (cd, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft);
/*
printf ("r = %d errno = %d inconsumed = %d outproduced = %d\n",
r, errno, inptr - input, outptr - buf);
// glibc:
// r = -1 errno = 84 (EILSEQ) inconsumed = 4 outproduced = 0
// libiconv:
// r = -1 errno = 84 (EILSEQ) inconsumed = 1 outproduced = 0
*/
if (!(r == (size_t)(-1) && errno == EILSEQ
&& inptr - input == 1 && outptr - buf == 0))
abort();
}
}
int main ()
{
main1 ();
main2 ();
return 0;
}