mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-11 22:01:08 +02:00
* xreadline.c: New. Based on the iobuf_read_line function.
* no-libgcrypt.c (gcry_realloc, gcry_xmalloc, gcry_xcalloc): New. * gpgconf-comp.c (retrieve_options_from_program) (retrieve_options_from_file, change_options_file) (change_options_program, gc_component_change_options): Replaced getline by read_line and test for allocation failure.
This commit is contained in:
parent
5836ea925a
commit
feb40e2c6e
@ -1,3 +1,7 @@
|
|||||||
|
2004-06-14 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* xreadline.c: New. Based on the iobuf_read_line function.
|
||||||
|
|
||||||
2004-05-12 Werner Koch <wk@gnupg.org>
|
2004-05-12 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* util.h (xtrycalloc_secure,xtrymalloc_secure): New.
|
* util.h (xtrycalloc_secure,xtrymalloc_secure): New.
|
||||||
|
@ -36,6 +36,7 @@ libcommon_a_SOURCES = \
|
|||||||
b64enc.c \
|
b64enc.c \
|
||||||
miscellaneous.c \
|
miscellaneous.c \
|
||||||
xasprintf.c \
|
xasprintf.c \
|
||||||
|
xreadline.c \
|
||||||
membuf.c membuf.h \
|
membuf.c membuf.h \
|
||||||
iobuf.c iobuf.h \
|
iobuf.c iobuf.h \
|
||||||
ttyio.c ttyio.h \
|
ttyio.c ttyio.h \
|
||||||
|
@ -99,6 +99,11 @@ int answer_is_yes (const char *s);
|
|||||||
int answer_is_yes_no_default (const char *s, int def_answer);
|
int answer_is_yes_no_default (const char *s, int def_answer);
|
||||||
int answer_is_yes_no_quit (const char *s);
|
int answer_is_yes_no_quit (const char *s);
|
||||||
|
|
||||||
|
/*-- xreadline.c --*/
|
||||||
|
ssize_t read_line (FILE *fp,
|
||||||
|
char **addr_of_buffer, size_t *length_of_buffer,
|
||||||
|
size_t *max_length);
|
||||||
|
|
||||||
|
|
||||||
/*-- b64enc.c --*/
|
/*-- b64enc.c --*/
|
||||||
struct b64state
|
struct b64state
|
||||||
|
116
common/xreadline.c
Normal file
116
common/xreadline.c
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
/* xreadline.c - fgets replacement function
|
||||||
|
* Copyright (C) 1999, 2004 Free Software Foundation, Inc.
|
||||||
|
*
|
||||||
|
* This file is part of GnuPG.
|
||||||
|
*
|
||||||
|
* GnuPG is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* GnuPG 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* Same as fgets() but if the provided buffer is too short a larger
|
||||||
|
one will be allocated. This is similar to getline. A line is
|
||||||
|
considered a byte stream ending in a LF.
|
||||||
|
|
||||||
|
If MAX_LENGTH is not NULL, it shall point to a value with the
|
||||||
|
maximum allowed allocation.
|
||||||
|
|
||||||
|
Returns the length of the line. EOF is indicated by a line of
|
||||||
|
length zero. A truncated line is indicated my setting the value at
|
||||||
|
MAX_LENGTH to 0. If the returned value is less then 0 not enough
|
||||||
|
memory was enable and ERRNO is set accordingly.
|
||||||
|
|
||||||
|
If a line has been truncated, the file pointer is moved forward to
|
||||||
|
the end of the line so that the next read start with tghe next
|
||||||
|
line. Note that MAX_LENGTH must be re-initialzied in this case..
|
||||||
|
|
||||||
|
Note: The returned buffer is allocated with enough extra space to
|
||||||
|
append a CR,LF,Nul
|
||||||
|
*/
|
||||||
|
ssize_t
|
||||||
|
read_line (FILE *fp,
|
||||||
|
char **addr_of_buffer, size_t *length_of_buffer,
|
||||||
|
size_t *max_length)
|
||||||
|
{
|
||||||
|
int c;
|
||||||
|
char *buffer = *addr_of_buffer;
|
||||||
|
size_t length = *length_of_buffer;
|
||||||
|
size_t nbytes = 0;
|
||||||
|
size_t maxlen = max_length? *max_length : 0;
|
||||||
|
char *p;
|
||||||
|
|
||||||
|
if (!buffer)
|
||||||
|
{ /* No buffer given - allocate a new one. */
|
||||||
|
length = 256;
|
||||||
|
buffer = xtrymalloc (length);
|
||||||
|
*addr_of_buffer = buffer;
|
||||||
|
if (!buffer)
|
||||||
|
{
|
||||||
|
*length_of_buffer = 0;
|
||||||
|
if (max_length)
|
||||||
|
*max_length = 0;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
*length_of_buffer = length;
|
||||||
|
}
|
||||||
|
|
||||||
|
length -= 3; /* Reserve 3 bytes for CR,LF,EOL. */
|
||||||
|
p = buffer;
|
||||||
|
while ((c = getc (fp)) != EOF)
|
||||||
|
{
|
||||||
|
if (nbytes == length)
|
||||||
|
{ /* Enlarge the buffer. */
|
||||||
|
if (maxlen && length > maxlen) /* But not beyond our limit. */
|
||||||
|
{
|
||||||
|
/* Skip the rest of the line. */
|
||||||
|
while (c != '\n' && (c=getc (fp)) != EOF)
|
||||||
|
;
|
||||||
|
*p++ = '\n'; /* Always append a LF (we reserved some space). */
|
||||||
|
nbytes++;
|
||||||
|
if (max_length)
|
||||||
|
*max_length = 0; /* Indicate truncation. */
|
||||||
|
break; /* the while loop. */
|
||||||
|
}
|
||||||
|
length += 3; /* Adjust for the reserved bytes. */
|
||||||
|
length += length < 1024? 256 : 1024;
|
||||||
|
*addr_of_buffer = xtryrealloc (buffer, length);
|
||||||
|
if (!*addr_of_buffer)
|
||||||
|
{
|
||||||
|
int save_errno = errno;
|
||||||
|
xfree (buffer);
|
||||||
|
*length_of_buffer = *max_length = 0;
|
||||||
|
errno = save_errno;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
buffer = *addr_of_buffer;
|
||||||
|
*length_of_buffer = length;
|
||||||
|
length -= 3;
|
||||||
|
p = buffer + nbytes;
|
||||||
|
}
|
||||||
|
*p++ = c;
|
||||||
|
nbytes++;
|
||||||
|
if (c == '\n')
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
*p = 0; /* Make sure the line is a string. */
|
||||||
|
|
||||||
|
return nbytes;
|
||||||
|
}
|
@ -1,3 +1,12 @@
|
|||||||
|
2004-06-14 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* no-libgcrypt.c (gcry_realloc, gcry_xmalloc, gcry_xcalloc): New.
|
||||||
|
|
||||||
|
* gpgconf-comp.c (retrieve_options_from_program)
|
||||||
|
(retrieve_options_from_file, change_options_file)
|
||||||
|
(change_options_program, gc_component_change_options): Replaced
|
||||||
|
getline by read_line and test for allocation failure.
|
||||||
|
|
||||||
2004-05-21 Marcus Brinkmann <marcus@g10code.de>
|
2004-05-21 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* gpgconf-comp.c (gc_options_dirmngr): Remove CRL group, put its
|
* gpgconf-comp.c (gc_options_dirmngr): Remove CRL group, put its
|
||||||
|
@ -42,13 +42,6 @@
|
|||||||
|
|
||||||
|
|
||||||
/* TODO:
|
/* TODO:
|
||||||
Portability - Add gnulib replacements for getline, etc.
|
|
||||||
|
|
||||||
XXX Marcus: Please use the read_line code from dirmngr/src/http.c - it
|
|
||||||
has been in use for may years and provides the ability to limit the
|
|
||||||
length of the line and thus thwart DoS (not a issue here but at many
|
|
||||||
other places).
|
|
||||||
|
|
||||||
Components: Add more components and their options.
|
Components: Add more components and their options.
|
||||||
Robustness: Do more validation. Call programs to do validation for us.
|
Robustness: Do more validation. Call programs to do validation for us.
|
||||||
Don't use popen, as this will not tell us if the program had a
|
Don't use popen, as this will not tell us if the program had a
|
||||||
@ -1252,7 +1245,7 @@ retrieve_options_from_program (gc_component_t component, gc_backend_t backend)
|
|||||||
if (!config)
|
if (!config)
|
||||||
gc_error (1, errno, "could not gather active options from %s", cmd_line);
|
gc_error (1, errno, "could not gather active options from %s", cmd_line);
|
||||||
|
|
||||||
while ((length = getline (&line, &line_len, config)) > 0)
|
while ((length = read_line (config, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
gc_option_t *option;
|
gc_option_t *option;
|
||||||
char *linep;
|
char *linep;
|
||||||
@ -1319,7 +1312,7 @@ retrieve_options_from_program (gc_component_t component, gc_backend_t backend)
|
|||||||
option->default_value = xstrdup (default_value);
|
option->default_value = xstrdup (default_value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ferror (config))
|
if (length < 0 || ferror (config))
|
||||||
gc_error (1, errno, "error reading from %s", cmd_line);
|
gc_error (1, errno, "error reading from %s", cmd_line);
|
||||||
if (fclose (config) && ferror (config))
|
if (fclose (config) && ferror (config))
|
||||||
gc_error (1, errno, "error closing %s", cmd_line);
|
gc_error (1, errno, "error closing %s", cmd_line);
|
||||||
@ -1334,7 +1327,7 @@ retrieve_options_from_program (gc_component_t component, gc_backend_t backend)
|
|||||||
config_pathname);
|
config_pathname);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
while ((length = getline (&line, &line_len, config)) > 0)
|
while ((length = read_line (config, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
char *name;
|
char *name;
|
||||||
char *value;
|
char *value;
|
||||||
@ -1415,14 +1408,13 @@ retrieve_options_from_program (gc_component_t component, gc_backend_t backend)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ferror (config))
|
if (length < 0 || ferror (config))
|
||||||
gc_error (1, errno, "error reading from %s", config_pathname);
|
gc_error (1, errno, "error reading from %s", config_pathname);
|
||||||
if (fclose (config) && ferror (config))
|
if (fclose (config) && ferror (config))
|
||||||
gc_error (1, errno, "error closing %s", config_pathname);
|
gc_error (1, errno, "error closing %s", config_pathname);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1451,7 +1443,7 @@ retrieve_options_from_file (gc_component_t component, gc_backend_t backend)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
while ((length = getline (&line, &line_len, list_file)) > 0)
|
while ((length = read_line (list_file, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
char *start;
|
char *start;
|
||||||
char *end;
|
char *end;
|
||||||
@ -1484,15 +1476,14 @@ retrieve_options_from_file (gc_component_t component, gc_backend_t backend)
|
|||||||
else
|
else
|
||||||
list = xasprintf ("\"%s", percent_escape (start));
|
list = xasprintf ("\"%s", percent_escape (start));
|
||||||
}
|
}
|
||||||
if (ferror (list_file))
|
if (length < 0 || ferror (list_file))
|
||||||
gc_error (1, errno, "can not read list file %s", list_pathname);
|
gc_error (1, errno, "can not read list file %s", list_pathname);
|
||||||
}
|
}
|
||||||
|
|
||||||
list_option->active = 1;
|
list_option->active = 1;
|
||||||
list_option->value = list;
|
list_option->value = list;
|
||||||
|
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1735,7 +1726,7 @@ change_options_file (gc_component_t component, gc_backend_t backend,
|
|||||||
if (!dest_file)
|
if (!dest_file)
|
||||||
goto change_file_one_err;
|
goto change_file_one_err;
|
||||||
|
|
||||||
while ((length = getline (&line, &line_len, dest_file)) > 0)
|
while ((length = read_line (dest_file, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
int disable = 0;
|
int disable = 0;
|
||||||
char *start;
|
char *start;
|
||||||
@ -1823,7 +1814,7 @@ change_options_file (gc_component_t component, gc_backend_t backend,
|
|||||||
goto change_file_one_err;
|
goto change_file_one_err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ferror (dest_file))
|
if (length < 0 || ferror (dest_file))
|
||||||
goto change_file_one_err;
|
goto change_file_one_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1889,17 +1880,18 @@ change_options_file (gc_component_t component, gc_backend_t backend,
|
|||||||
}
|
}
|
||||||
if (dest_file)
|
if (dest_file)
|
||||||
{
|
{
|
||||||
while ((length = getline (&line, &line_len, dest_file)) > 0)
|
while ((length = read_line (dest_file, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
fprintf (src_file, "%s", line);
|
fprintf (src_file, "%s", line);
|
||||||
if (ferror (src_file))
|
if (ferror (src_file))
|
||||||
goto change_file_one_err;
|
goto change_file_one_err;
|
||||||
}
|
}
|
||||||
if (ferror (dest_file))
|
if (length < 0 || ferror (dest_file))
|
||||||
goto change_file_one_err;
|
goto change_file_one_err;
|
||||||
}
|
}
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
line = NULL;
|
||||||
|
|
||||||
res = fclose (src_file);
|
res = fclose (src_file);
|
||||||
if (res)
|
if (res)
|
||||||
{
|
{
|
||||||
@ -1920,8 +1912,7 @@ change_options_file (gc_component_t component, gc_backend_t backend,
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
change_file_one_err:
|
change_file_one_err:
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
|
||||||
res = errno;
|
res = errno;
|
||||||
if (src_file)
|
if (src_file)
|
||||||
{
|
{
|
||||||
@ -1999,7 +1990,7 @@ change_options_program (gc_component_t component, gc_backend_t backend,
|
|||||||
if (!dest_file)
|
if (!dest_file)
|
||||||
goto change_one_err;
|
goto change_one_err;
|
||||||
|
|
||||||
while ((length = getline (&line, &line_len, dest_file)) > 0)
|
while ((length = read_line (dest_file, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
int disable = 0;
|
int disable = 0;
|
||||||
char *start;
|
char *start;
|
||||||
@ -2054,7 +2045,7 @@ change_options_program (gc_component_t component, gc_backend_t backend,
|
|||||||
goto change_one_err;
|
goto change_one_err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ferror (dest_file))
|
if (length < 0 || ferror (dest_file))
|
||||||
goto change_one_err;
|
goto change_one_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2172,17 +2163,18 @@ change_options_program (gc_component_t component, gc_backend_t backend,
|
|||||||
}
|
}
|
||||||
if (dest_file)
|
if (dest_file)
|
||||||
{
|
{
|
||||||
while ((length = getline (&line, &line_len, dest_file)) > 0)
|
while ((length = read_line (dest_file, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
fprintf (src_file, "%s", line);
|
fprintf (src_file, "%s", line);
|
||||||
if (ferror (src_file))
|
if (ferror (src_file))
|
||||||
goto change_one_err;
|
goto change_one_err;
|
||||||
}
|
}
|
||||||
if (ferror (dest_file))
|
if (length < 0 || ferror (dest_file))
|
||||||
goto change_one_err;
|
goto change_one_err;
|
||||||
}
|
}
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
line = NULL;
|
||||||
|
|
||||||
res = fclose (src_file);
|
res = fclose (src_file);
|
||||||
if (res)
|
if (res)
|
||||||
{
|
{
|
||||||
@ -2203,8 +2195,7 @@ change_options_program (gc_component_t component, gc_backend_t backend,
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
change_one_err:
|
change_one_err:
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
|
||||||
res = errno;
|
res = errno;
|
||||||
if (src_file)
|
if (src_file)
|
||||||
{
|
{
|
||||||
@ -2241,7 +2232,7 @@ gc_component_change_options (int component, FILE *in)
|
|||||||
orig_pathname[backend] = NULL;
|
orig_pathname[backend] = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((length = getline (&line, &line_len, in)) > 0)
|
while ((length = read_line (in, &line, &line_len, NULL)) > 0)
|
||||||
{
|
{
|
||||||
char *linep;
|
char *linep;
|
||||||
unsigned long flags = 0;
|
unsigned long flags = 0;
|
||||||
@ -2439,6 +2430,5 @@ gc_component_change_options (int component, FILE *in)
|
|||||||
rename (orig_pathname[backend], backup_pathname);
|
rename (orig_pathname[backend], backup_pathname);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (line)
|
xfree (line);
|
||||||
free (line);
|
|
||||||
}
|
}
|
||||||
|
@ -38,6 +38,12 @@ out_of_core (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void *
|
||||||
|
gcry_malloc (size_t n)
|
||||||
|
{
|
||||||
|
return malloc (n);
|
||||||
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
gcry_xmalloc (size_t n)
|
gcry_xmalloc (size_t n)
|
||||||
{
|
{
|
||||||
@ -47,6 +53,13 @@ gcry_xmalloc (size_t n)
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void *
|
||||||
|
gcry_realloc (void *a, size_t n)
|
||||||
|
{
|
||||||
|
return realloc (a, n);
|
||||||
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
gcry_xrealloc (void *a, size_t n)
|
gcry_xrealloc (void *a, size_t n)
|
||||||
{
|
{
|
||||||
@ -56,6 +69,14 @@ gcry_xrealloc (void *a, size_t n)
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void *
|
||||||
|
gcry_calloc (size_t n, size_t m)
|
||||||
|
{
|
||||||
|
return calloc (n, m);
|
||||||
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
gcry_xcalloc (size_t n, size_t m)
|
gcry_xcalloc (size_t n, size_t m)
|
||||||
{
|
{
|
||||||
@ -65,6 +86,7 @@ gcry_xcalloc (size_t n, size_t m)
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
char *
|
char *
|
||||||
gcry_xstrdup (const char *string)
|
gcry_xstrdup (const char *string)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user