|
|
4824dd |
From efbfbbb723e100cfbcea287a30958bf678e83458 Mon Sep 17 00:00:00 2001
|
|
|
4824dd |
From: Ariadne Conill <ariadne@dereferenced.org>
|
|
|
4824dd |
Date: Tue, 27 Apr 2021 09:37:40 -0600
|
|
|
4824dd |
Subject: [PATCH] opj_{compress,decompress,dump}: fix possible buffer overflows
|
|
|
4824dd |
in path manipulation functions
|
|
|
4824dd |
|
|
|
4824dd |
---
|
|
|
4824dd |
src/bin/jp2/opj_compress.c | 12 ++++++------
|
|
|
4824dd |
src/bin/jp2/opj_decompress.c | 13 ++++++-------
|
|
|
4824dd |
src/bin/jp2/opj_dump.c | 14 +++++++-------
|
|
|
4824dd |
3 files changed, 19 insertions(+), 20 deletions(-)
|
|
|
4824dd |
|
|
|
4824dd |
diff --git a/src/bin/jp2/opj_compress.c b/src/bin/jp2/opj_compress.c
|
|
|
4824dd |
index 6827484..d8f894c 100644
|
|
|
4824dd |
--- a/src/bin/jp2/opj_compress.c
|
|
|
4824dd |
+++ b/src/bin/jp2/opj_compress.c
|
|
|
4824dd |
@@ -543,8 +543,8 @@ static char * get_file_name(char *name)
|
|
|
4824dd |
static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
opj_cparameters_t *parameters)
|
|
|
4824dd |
{
|
|
|
4824dd |
- char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],
|
|
|
4824dd |
- outfilename[OPJ_PATH_LEN], temp_ofname[OPJ_PATH_LEN];
|
|
|
4824dd |
+ char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN * 2],
|
|
|
4824dd |
+ outfilename[OPJ_PATH_LEN * 2], temp_ofname[OPJ_PATH_LEN];
|
|
|
4824dd |
char *temp_p, temp1[OPJ_PATH_LEN] = "";
|
|
|
4824dd |
|
|
|
4824dd |
strcpy(image_filename, dirptr->filename[imageno]);
|
|
|
4824dd |
@@ -553,7 +553,7 @@ static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
if (parameters->decod_format == -1) {
|
|
|
4824dd |
return 1;
|
|
|
4824dd |
}
|
|
|
4824dd |
- sprintf(infilename, "%s/%s", img_fol->imgdirpath, image_filename);
|
|
|
4824dd |
+ snprintf(infilename, OPJ_PATH_LEN * 2, "%s/%s", img_fol->imgdirpath, image_filename);
|
|
|
4824dd |
if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile),
|
|
|
4824dd |
infilename) != 0) {
|
|
|
4824dd |
return 1;
|
|
|
4824dd |
@@ -566,7 +566,7 @@ static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
sprintf(temp1, ".%s", temp_p);
|
|
|
4824dd |
}
|
|
|
4824dd |
if (img_fol->set_out_format == 1) {
|
|
|
4824dd |
- sprintf(outfilename, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
4824dd |
+ snprintf(outfilename, OPJ_PATH_LEN * 2, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
4824dd |
img_fol->out_format);
|
|
|
4824dd |
if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
|
|
|
4824dd |
outfilename) != 0) {
|
|
|
4824dd |
@@ -1910,9 +1910,9 @@ int main(int argc, char **argv)
|
|
|
4824dd |
num_images = get_num_images(img_fol.imgdirpath);
|
|
|
4824dd |
dirptr = (dircnt_t*)malloc(sizeof(dircnt_t));
|
|
|
4824dd |
if (dirptr) {
|
|
|
4824dd |
- dirptr->filename_buf = (char*)malloc(num_images * OPJ_PATH_LEN * sizeof(
|
|
|
4824dd |
+ dirptr->filename_buf = (char*)calloc(num_images, OPJ_PATH_LEN * sizeof(
|
|
|
4824dd |
char)); /* Stores at max 10 image file names*/
|
|
|
4824dd |
- dirptr->filename = (char**) malloc(num_images * sizeof(char*));
|
|
|
4824dd |
+ dirptr->filename = (char**) calloc(num_images, sizeof(char*));
|
|
|
4824dd |
if (!dirptr->filename_buf) {
|
|
|
4824dd |
ret = 0;
|
|
|
4824dd |
goto fin;
|
|
|
4824dd |
diff --git a/src/bin/jp2/opj_decompress.c b/src/bin/jp2/opj_decompress.c
|
|
|
4824dd |
index 2634907..e54e54f 100644
|
|
|
4824dd |
--- a/src/bin/jp2/opj_decompress.c
|
|
|
4824dd |
+++ b/src/bin/jp2/opj_decompress.c
|
|
|
4824dd |
@@ -455,13 +455,13 @@ const char* path_separator = "/";
|
|
|
4824dd |
char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
opj_decompress_parameters *parameters)
|
|
|
4824dd |
{
|
|
|
4824dd |
- char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],
|
|
|
4824dd |
- outfilename[OPJ_PATH_LEN], temp_ofname[OPJ_PATH_LEN];
|
|
|
4824dd |
+ char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN * 2],
|
|
|
4824dd |
+ outfilename[OPJ_PATH_LEN * 2], temp_ofname[OPJ_PATH_LEN];
|
|
|
4824dd |
char *temp_p, temp1[OPJ_PATH_LEN] = "";
|
|
|
4824dd |
|
|
|
4824dd |
strcpy(image_filename, dirptr->filename[imageno]);
|
|
|
4824dd |
fprintf(stderr, "File Number %d \"%s\"\n", imageno, image_filename);
|
|
|
4824dd |
- sprintf(infilename, "%s%s%s", img_fol->imgdirpath, path_separator,
|
|
|
4824dd |
+ snprintf(infilename, OPJ_PATH_LEN * 2, "%s%s%s", img_fol->imgdirpath, path_separator,
|
|
|
4824dd |
image_filename);
|
|
|
4824dd |
parameters->decod_format = infile_format(infilename);
|
|
|
4824dd |
if (parameters->decod_format == -1) {
|
|
|
4824dd |
@@ -479,7 +479,7 @@ char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
sprintf(temp1, ".%s", temp_p);
|
|
|
4824dd |
}
|
|
|
4824dd |
if (img_fol->set_out_format == 1) {
|
|
|
4824dd |
- sprintf(outfilename, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
4824dd |
+ snprintf(outfilename, OPJ_PATH_LEN * 2, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
4824dd |
img_fol->out_format);
|
|
|
4824dd |
if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
|
|
|
4824dd |
outfilename) != 0) {
|
|
|
4824dd |
@@ -1357,14 +1357,13 @@ int main(int argc, char **argv)
|
|
|
4824dd |
return EXIT_FAILURE;
|
|
|
4824dd |
}
|
|
|
4824dd |
/* Stores at max 10 image file names */
|
|
|
4824dd |
- dirptr->filename_buf = (char*)malloc(sizeof(char) *
|
|
|
4824dd |
- (size_t)num_images * OPJ_PATH_LEN);
|
|
|
4824dd |
+ dirptr->filename_buf = calloc((size_t) num_images, sizeof(char) * OPJ_PATH_LEN);
|
|
|
4824dd |
if (!dirptr->filename_buf) {
|
|
|
4824dd |
failed = 1;
|
|
|
4824dd |
goto fin;
|
|
|
4824dd |
}
|
|
|
4824dd |
|
|
|
4824dd |
- dirptr->filename = (char**) malloc((size_t)num_images * sizeof(char*));
|
|
|
4824dd |
+ dirptr->filename = (char**) calloc((size_t) num_images, sizeof(char*));
|
|
|
4824dd |
|
|
|
4824dd |
if (!dirptr->filename) {
|
|
|
4824dd |
failed = 1;
|
|
|
4824dd |
diff --git a/src/bin/jp2/opj_dump.c b/src/bin/jp2/opj_dump.c
|
|
|
4824dd |
index 6e15fee..4e19c61 100644
|
|
|
4824dd |
--- a/src/bin/jp2/opj_dump.c
|
|
|
4824dd |
+++ b/src/bin/jp2/opj_dump.c
|
|
|
4824dd |
@@ -201,8 +201,8 @@ static int get_file_format(const char *filename)
|
|
|
4824dd |
static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
opj_dparameters_t *parameters)
|
|
|
4824dd |
{
|
|
|
4824dd |
- char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],
|
|
|
4824dd |
- outfilename[OPJ_PATH_LEN], temp_ofname[OPJ_PATH_LEN];
|
|
|
4824dd |
+ char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN * 2],
|
|
|
4824dd |
+ outfilename[OPJ_PATH_LEN * 2], temp_ofname[OPJ_PATH_LEN];
|
|
|
4824dd |
char *temp_p, temp1[OPJ_PATH_LEN] = "";
|
|
|
4824dd |
|
|
|
4824dd |
strcpy(image_filename, dirptr->filename[imageno]);
|
|
|
4824dd |
@@ -211,7 +211,7 @@ static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
if (parameters->decod_format == -1) {
|
|
|
4824dd |
return 1;
|
|
|
4824dd |
}
|
|
|
4824dd |
- sprintf(infilename, "%s/%s", img_fol->imgdirpath, image_filename);
|
|
|
4824dd |
+ snprintf(infilename, OPJ_PATH_LEN * 2, "%s/%s", img_fol->imgdirpath, image_filename);
|
|
|
4824dd |
if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile),
|
|
|
4824dd |
infilename) != 0) {
|
|
|
4824dd |
return 1;
|
|
|
4824dd |
@@ -224,7 +224,7 @@ static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
4824dd |
sprintf(temp1, ".%s", temp_p);
|
|
|
4824dd |
}
|
|
|
4824dd |
if (img_fol->set_out_format == 1) {
|
|
|
4824dd |
- sprintf(outfilename, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
4824dd |
+ snprintf(outfilename, OPJ_PATH_LEN * 2, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
4824dd |
img_fol->out_format);
|
|
|
4824dd |
if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
|
|
|
4824dd |
outfilename) != 0) {
|
|
|
4824dd |
@@ -457,7 +457,7 @@ int main(int argc, char *argv[])
|
|
|
4824dd |
opj_codestream_info_v2_t* cstr_info = NULL;
|
|
|
4824dd |
opj_codestream_index_t* cstr_index = NULL;
|
|
|
4824dd |
|
|
|
4824dd |
- OPJ_INT32 num_images, imageno;
|
|
|
4824dd |
+ int num_images, imageno;
|
|
|
4824dd |
img_fol_t img_fol;
|
|
|
4824dd |
dircnt_t *dirptr = NULL;
|
|
|
4824dd |
|
|
|
4824dd |
@@ -486,13 +486,13 @@ int main(int argc, char *argv[])
|
|
|
4824dd |
if (!dirptr) {
|
|
|
4824dd |
return EXIT_FAILURE;
|
|
|
4824dd |
}
|
|
|
4824dd |
- dirptr->filename_buf = (char*)malloc((size_t)num_images * OPJ_PATH_LEN * sizeof(
|
|
|
4824dd |
+ dirptr->filename_buf = (char*) calloc((size_t) num_images, OPJ_PATH_LEN * sizeof(
|
|
|
4824dd |
char)); /* Stores at max 10 image file names*/
|
|
|
4824dd |
if (!dirptr->filename_buf) {
|
|
|
4824dd |
free(dirptr);
|
|
|
4824dd |
return EXIT_FAILURE;
|
|
|
4824dd |
}
|
|
|
4824dd |
- dirptr->filename = (char**) malloc((size_t)num_images * sizeof(char*));
|
|
|
4824dd |
+ dirptr->filename = (char**) calloc((size_t) num_images, sizeof(char*));
|
|
|
4824dd |
|
|
|
4824dd |
if (!dirptr->filename) {
|
|
|
4824dd |
goto fails;
|
|
|
4824dd |
--
|
|
|
4824dd |
2.31.1
|
|
|
4824dd |
|