blob: 12eb4ab644751b9a610d3a52b122e2bcf9b9f4c6 [file] [log] [blame]
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +00001/*
2 * cjpeg.c
3 *
noel@chromium.org3395bcc2014-04-14 06:56:00 +00004 * This file was part of the Independent JPEG Group's software:
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +00005 * Copyright (C) 1991-1998, Thomas G. Lane.
noel@chromium.org3395bcc2014-04-14 06:56:00 +00006 * Modified 2003-2011 by Guido Vollbeding.
7 * libjpeg-turbo Modifications:
Jonathan Wright22f1a222022-03-01 15:53:34 +00008 * Copyright (C) 2010, 2013-2014, 2017, 2019-2022, D. R. Commander.
Tom Hudson0d47d2d2016-05-04 13:22:56 -04009 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000011 *
12 * This file contains a command-line user interface for the JPEG compressor.
13 * It should work on any system with Unix- or MS-DOS-style command lines.
14 *
15 * Two different command line styles are permitted, depending on the
16 * compile-time switch TWO_FILE_COMMANDLINE:
Tom Hudson0d47d2d2016-05-04 13:22:56 -040017 * cjpeg [options] inputfile outputfile
18 * cjpeg [options] [inputfile]
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000019 * In the second style, output is always to standard output, which you'd
20 * normally redirect to a file or pipe to some other program. Input is
21 * either from a named file or from standard input (typically redirected).
22 * The second style is convenient on Unix but is unhelpful on systems that
23 * don't support pipes. Also, you MUST use the first style if your system
24 * doesn't do binary I/O to stdin/stdout.
25 * To simplify script writing, the "-outfile" switch is provided. The syntax
Tom Hudson0d47d2d2016-05-04 13:22:56 -040026 * cjpeg [options] -outfile outputfile inputfile
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000027 * works regardless of which command line style is used.
28 */
29
Jonathan Wright22f1a222022-03-01 15:53:34 +000030#ifdef _MSC_VER
31#define _CRT_SECURE_NO_DEPRECATE
32#endif
33
Jonathan Wright24e31052021-04-26 12:10:48 +010034#ifdef CJPEG_FUZZER
35#define JPEG_INTERNALS
36#endif
Tom Hudson0d47d2d2016-05-04 13:22:56 -040037#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
38#include "jversion.h" /* for version message */
39#include "jconfigint.h"
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000040
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000041
42/* Create the add-on message string table. */
43
Chris Blumecca8c4d2019-03-01 01:09:50 -080044#define JMESSAGE(code, string) string,
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000045
46static const char * const cdjpeg_message_table[] = {
47#include "cderror.h"
48 NULL
49};
50
51
52/*
53 * This routine determines what format the input file is,
54 * and selects the appropriate input-reading module.
55 *
56 * To determine which family of input formats the file belongs to,
57 * we may look only at the first byte of the file, since C does not
58 * guarantee that more than one character can be pushed back with ungetc.
59 * Looking at additional bytes would require one of these approaches:
60 * 1) assume we can fseek() the input file (fails for piped input);
61 * 2) assume we can push back more than one character (works in
62 * some C implementations, but unportable);
63 * 3) provide our own buffering (breaks input readers that want to use
Jonathan Wrightbbb82822020-11-25 13:36:43 +000064 * stdio directly);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000065 * or 4) don't put back the data, and modify the input_init methods to assume
Jonathan Wrightbbb82822020-11-25 13:36:43 +000066 * they start reading after the start of file.
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000067 * #1 is attractive for MS-DOS but is untenable on Unix.
68 *
69 * The most portable solution for file types that can't be identified by their
70 * first byte is to make the user tell us what they are. This is also the
71 * only approach for "raw" file types that contain only arbitrary values.
72 * We presently apply this method for Targa files. Most of the time Targa
73 * files start with 0x00, so we recognize that case. Potentially, however,
74 * a Targa file could start with any byte value (byte 0 is the length of the
75 * seldom-used ID field), so we provide a switch to force Targa input mode.
76 */
77
Tom Hudson0d47d2d2016-05-04 13:22:56 -040078static boolean is_targa; /* records user -targa switch */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000079
80
81LOCAL(cjpeg_source_ptr)
Chris Blumecca8c4d2019-03-01 01:09:50 -080082select_file_type(j_compress_ptr cinfo, FILE *infile)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000083{
84 int c;
85
86 if (is_targa) {
87#ifdef TARGA_SUPPORTED
88 return jinit_read_targa(cinfo);
89#else
90 ERREXIT(cinfo, JERR_TGA_NOTCOMP);
91#endif
92 }
93
94 if ((c = getc(infile)) == EOF)
95 ERREXIT(cinfo, JERR_INPUT_EMPTY);
96 if (ungetc(c, infile) == EOF)
97 ERREXIT(cinfo, JERR_UNGETC_FAILED);
98
99 switch (c) {
100#ifdef BMP_SUPPORTED
101 case 'B':
Chris Blumecca8c4d2019-03-01 01:09:50 -0800102 return jinit_read_bmp(cinfo, TRUE);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000103#endif
104#ifdef GIF_SUPPORTED
105 case 'G':
106 return jinit_read_gif(cinfo);
107#endif
108#ifdef PPM_SUPPORTED
109 case 'P':
110 return jinit_read_ppm(cinfo);
111#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000112#ifdef TARGA_SUPPORTED
113 case 0x00:
114 return jinit_read_targa(cinfo);
115#endif
116 default:
117 ERREXIT(cinfo, JERR_UNKNOWN_FORMAT);
118 break;
119 }
120
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400121 return NULL; /* suppress compiler warnings */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000122}
123
124
125/*
126 * Argument-parsing code.
127 * The switch parser is designed to be useful with DOS-style command line
128 * syntax, ie, intermixed switches and file names, where only the switches
129 * to the left of a given file name affect processing of that file.
130 * The main program in this file doesn't actually use this capability...
131 */
132
133
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400134static const char *progname; /* program name for error messages */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800135static char *icc_filename; /* for -icc switch */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400136static char *outfilename; /* for -outfile switch */
Jonathan Wright24e31052021-04-26 12:10:48 +0100137boolean memdst; /* for -memdst switch */
138boolean report; /* for -report switch */
Jonathan Wright02959c32021-11-22 10:27:51 +0000139boolean strict; /* for -strict switch */
Jonathan Wright24e31052021-04-26 12:10:48 +0100140
141
142#ifdef CJPEG_FUZZER
143
144#include <setjmp.h>
145
146struct my_error_mgr {
147 struct jpeg_error_mgr pub;
148 jmp_buf setjmp_buffer;
149};
150
151void my_error_exit(j_common_ptr cinfo)
152{
153 struct my_error_mgr *myerr = (struct my_error_mgr *)cinfo->err;
154
155 longjmp(myerr->setjmp_buffer, 1);
156}
157
Jonathan Wright22f1a222022-03-01 15:53:34 +0000158static void my_emit_message_fuzzer(j_common_ptr cinfo, int msg_level)
Jonathan Wright24e31052021-04-26 12:10:48 +0100159{
160 if (msg_level < 0)
161 cinfo->err->num_warnings++;
162}
163
164#define HANDLE_ERROR() { \
165 if (cinfo.global_state > CSTATE_START) { \
166 if (memdst && outbuffer) \
167 (*cinfo.dest->term_destination) (&cinfo); \
168 jpeg_abort_compress(&cinfo); \
169 } \
170 jpeg_destroy_compress(&cinfo); \
171 if (input_file != stdin && input_file != NULL) \
172 fclose(input_file); \
173 if (memdst) \
174 free(outbuffer); \
175 return EXIT_FAILURE; \
176}
177
178#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000179
180
181LOCAL(void)
Chris Blumecca8c4d2019-03-01 01:09:50 -0800182usage(void)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000183/* complain about bad command line */
184{
185 fprintf(stderr, "usage: %s [switches] ", progname);
186#ifdef TWO_FILE_COMMANDLINE
187 fprintf(stderr, "inputfile outputfile\n");
188#else
189 fprintf(stderr, "[inputfile]\n");
190#endif
191
192 fprintf(stderr, "Switches (names may be abbreviated):\n");
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400193 fprintf(stderr, " -quality N[,...] Compression quality (0..100; 5-95 is most useful range,\n");
194 fprintf(stderr, " default is 75)\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000195 fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000196 fprintf(stderr, " -rgb Create RGB JPEG file\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000197#ifdef ENTROPY_OPT_SUPPORTED
198 fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
199#endif
200#ifdef C_PROGRESSIVE_SUPPORTED
201 fprintf(stderr, " -progressive Create progressive JPEG file\n");
202#endif
203#ifdef TARGA_SUPPORTED
204 fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
205#endif
206 fprintf(stderr, "Switches for advanced users:\n");
hbono@chromium.orgdf5ffdd2012-05-11 07:46:03 +0000207#ifdef C_ARITH_CODING_SUPPORTED
208 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
209#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000210#ifdef DCT_ISLOW_SUPPORTED
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000211 fprintf(stderr, " -dct int Use accurate integer DCT method%s\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400212 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000213#endif
214#ifdef DCT_IFAST_SUPPORTED
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000215 fprintf(stderr, " -dct fast Use less accurate integer DCT method [legacy feature]%s\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400216 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000217#endif
218#ifdef DCT_FLOAT_SUPPORTED
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000219 fprintf(stderr, " -dct float Use floating-point DCT method [legacy feature]%s\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400220 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000221#endif
Chris Blumecca8c4d2019-03-01 01:09:50 -0800222 fprintf(stderr, " -icc FILE Embed ICC profile contained in FILE\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000223 fprintf(stderr, " -restart N Set restart interval in rows, or in blocks with B\n");
224#ifdef INPUT_SMOOTHING_SUPPORTED
225 fprintf(stderr, " -smooth N Smooth dithered input (N=1..100 is strength)\n");
226#endif
227 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
228 fprintf(stderr, " -outfile name Specify name for output file\n");
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000229#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
230 fprintf(stderr, " -memdst Compress to memory instead of file (useful for benchmarking)\n");
231#endif
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000232 fprintf(stderr, " -report Report compression progress\n");
Jonathan Wright02959c32021-11-22 10:27:51 +0000233 fprintf(stderr, " -strict Treat all warnings as fatal\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000234 fprintf(stderr, " -verbose or -debug Emit debug output\n");
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400235 fprintf(stderr, " -version Print version information and exit\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000236 fprintf(stderr, "Switches for wizards:\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000237 fprintf(stderr, " -baseline Force baseline quantization tables\n");
Chris Blumecca8c4d2019-03-01 01:09:50 -0800238 fprintf(stderr, " -qtables FILE Use quantization tables given in FILE\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000239 fprintf(stderr, " -qslots N[,...] Set component quantization tables\n");
240 fprintf(stderr, " -sample HxV[,...] Set component sampling factors\n");
241#ifdef C_MULTISCAN_FILES_SUPPORTED
Chris Blumecca8c4d2019-03-01 01:09:50 -0800242 fprintf(stderr, " -scans FILE Create multi-scan JPEG per script FILE\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000243#endif
244 exit(EXIT_FAILURE);
245}
246
247
248LOCAL(int)
Chris Blumecca8c4d2019-03-01 01:09:50 -0800249parse_switches(j_compress_ptr cinfo, int argc, char **argv,
250 int last_file_arg_seen, boolean for_real)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000251/* Parse optional switches.
252 * Returns argv[] index of first file-name argument (== argc if none).
253 * Any file names with indexes <= last_file_arg_seen are ignored;
254 * they have presumably been processed in a previous iteration.
255 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
256 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
257 * processing.
258 */
259{
260 int argn;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400261 char *arg;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000262 boolean force_baseline;
263 boolean simple_progressive;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400264 char *qualityarg = NULL; /* saves -quality parm if any */
265 char *qtablefile = NULL; /* saves -qtables filename if any */
266 char *qslotsarg = NULL; /* saves -qslots parm if any */
267 char *samplearg = NULL; /* saves -sample parm if any */
268 char *scansarg = NULL; /* saves -scans parm if any */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000269
270 /* Set up default JPEG parameters. */
hbono@chromium.org98626972011-08-03 03:13:08 +0000271
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400272 force_baseline = FALSE; /* by default, allow 16-bit quantizers */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000273 simple_progressive = FALSE;
274 is_targa = FALSE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800275 icc_filename = NULL;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000276 outfilename = NULL;
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000277 memdst = FALSE;
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000278 report = FALSE;
Jonathan Wright02959c32021-11-22 10:27:51 +0000279 strict = FALSE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000280 cinfo->err->trace_level = 0;
281
282 /* Scan command line options, adjust parameters */
283
284 for (argn = 1; argn < argc; argn++) {
285 arg = argv[argn];
286 if (*arg != '-') {
287 /* Not a switch, must be a file name argument */
288 if (argn <= last_file_arg_seen) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400289 outfilename = NULL; /* -outfile applies to just one input file */
290 continue; /* ignore this name if previously processed */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000291 }
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400292 break; /* else done parsing switches */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000293 }
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400294 arg++; /* advance past switch marker character */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000295
296 if (keymatch(arg, "arithmetic", 1)) {
297 /* Use arithmetic coding. */
298#ifdef C_ARITH_CODING_SUPPORTED
299 cinfo->arith_code = TRUE;
300#else
301 fprintf(stderr, "%s: sorry, arithmetic coding not supported\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400302 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000303 exit(EXIT_FAILURE);
304#endif
305
306 } else if (keymatch(arg, "baseline", 1)) {
307 /* Force baseline-compatible output (8-bit quantizer values). */
308 force_baseline = TRUE;
309
310 } else if (keymatch(arg, "dct", 2)) {
311 /* Select DCT algorithm. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400312 if (++argn >= argc) /* advance to next argument */
313 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000314 if (keymatch(argv[argn], "int", 1)) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400315 cinfo->dct_method = JDCT_ISLOW;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000316 } else if (keymatch(argv[argn], "fast", 2)) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400317 cinfo->dct_method = JDCT_IFAST;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000318 } else if (keymatch(argv[argn], "float", 2)) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400319 cinfo->dct_method = JDCT_FLOAT;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000320 } else
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400321 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000322
323 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
324 /* Enable debug printouts. */
325 /* On first -d, print version identification */
326 static boolean printed_version = FALSE;
327
Chris Blumecca8c4d2019-03-01 01:09:50 -0800328 if (!printed_version) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400329 fprintf(stderr, "%s version %s (build %s)\n",
330 PACKAGE_NAME, VERSION, BUILD);
331 fprintf(stderr, "%s\n\n", JCOPYRIGHT);
332 fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
333 JVERSION);
334 printed_version = TRUE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000335 }
336 cinfo->err->trace_level++;
337
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400338 } else if (keymatch(arg, "version", 4)) {
339 fprintf(stderr, "%s version %s (build %s)\n",
340 PACKAGE_NAME, VERSION, BUILD);
341 exit(EXIT_SUCCESS);
342
Chris Blumecca8c4d2019-03-01 01:09:50 -0800343 } else if (keymatch(arg, "grayscale", 2) ||
344 keymatch(arg, "greyscale", 2)) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000345 /* Force a monochrome JPEG file to be generated. */
346 jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);
347
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000348 } else if (keymatch(arg, "rgb", 3)) {
349 /* Force an RGB JPEG file to be generated. */
350 jpeg_set_colorspace(cinfo, JCS_RGB);
351
Chris Blumecca8c4d2019-03-01 01:09:50 -0800352 } else if (keymatch(arg, "icc", 1)) {
353 /* Set ICC filename. */
354 if (++argn >= argc) /* advance to next argument */
355 usage();
356 icc_filename = argv[argn];
357
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000358 } else if (keymatch(arg, "maxmemory", 3)) {
359 /* Maximum memory in Kb (or Mb with 'm'). */
360 long lval;
361 char ch = 'x';
362
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400363 if (++argn >= argc) /* advance to next argument */
364 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000365 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400366 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000367 if (ch == 'm' || ch == 'M')
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400368 lval *= 1000L;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000369 cinfo->mem->max_memory_to_use = lval * 1000L;
370
371 } else if (keymatch(arg, "optimize", 1) || keymatch(arg, "optimise", 1)) {
372 /* Enable entropy parm optimization. */
373#ifdef ENTROPY_OPT_SUPPORTED
374 cinfo->optimize_coding = TRUE;
375#else
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000376 fprintf(stderr, "%s: sorry, entropy optimization was not compiled in\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400377 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000378 exit(EXIT_FAILURE);
379#endif
380
381 } else if (keymatch(arg, "outfile", 4)) {
382 /* Set output file name. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400383 if (++argn >= argc) /* advance to next argument */
384 usage();
385 outfilename = argv[argn]; /* save it away for later use */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000386
387 } else if (keymatch(arg, "progressive", 1)) {
388 /* Select simple progressive mode. */
389#ifdef C_PROGRESSIVE_SUPPORTED
390 simple_progressive = TRUE;
391 /* We must postpone execution until num_components is known. */
392#else
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000393 fprintf(stderr, "%s: sorry, progressive output was not compiled in\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400394 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000395 exit(EXIT_FAILURE);
396#endif
397
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000398 } else if (keymatch(arg, "memdst", 2)) {
399 /* Use in-memory destination manager */
400#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
401 memdst = TRUE;
402#else
403 fprintf(stderr, "%s: sorry, in-memory destination manager was not compiled in\n",
404 progname);
405 exit(EXIT_FAILURE);
406#endif
407
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000408 } else if (keymatch(arg, "quality", 1)) {
hbono@chromium.org98626972011-08-03 03:13:08 +0000409 /* Quality ratings (quantization table scaling factors). */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400410 if (++argn >= argc) /* advance to next argument */
411 usage();
hbono@chromium.org98626972011-08-03 03:13:08 +0000412 qualityarg = argv[argn];
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000413
414 } else if (keymatch(arg, "qslots", 2)) {
415 /* Quantization table slot numbers. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400416 if (++argn >= argc) /* advance to next argument */
417 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000418 qslotsarg = argv[argn];
419 /* Must delay setting qslots until after we have processed any
420 * colorspace-determining switches, since jpeg_set_colorspace sets
421 * default quant table numbers.
422 */
423
424 } else if (keymatch(arg, "qtables", 2)) {
425 /* Quantization tables fetched from file. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400426 if (++argn >= argc) /* advance to next argument */
427 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000428 qtablefile = argv[argn];
429 /* We postpone actually reading the file in case -quality comes later. */
430
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000431 } else if (keymatch(arg, "report", 3)) {
432 report = TRUE;
433
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000434 } else if (keymatch(arg, "restart", 1)) {
435 /* Restart interval in MCU rows (or in MCUs with 'b'). */
436 long lval;
437 char ch = 'x';
438
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400439 if (++argn >= argc) /* advance to next argument */
440 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000441 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400442 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000443 if (lval < 0 || lval > 65535L)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400444 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000445 if (ch == 'b' || ch == 'B') {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800446 cinfo->restart_interval = (unsigned int)lval;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400447 cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000448 } else {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800449 cinfo->restart_in_rows = (int)lval;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400450 /* restart_interval will be computed during startup */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000451 }
452
453 } else if (keymatch(arg, "sample", 2)) {
454 /* Set sampling factors. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400455 if (++argn >= argc) /* advance to next argument */
456 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000457 samplearg = argv[argn];
458 /* Must delay setting sample factors until after we have processed any
459 * colorspace-determining switches, since jpeg_set_colorspace sets
460 * default sampling factors.
461 */
462
hbono@chromium.org98626972011-08-03 03:13:08 +0000463 } else if (keymatch(arg, "scans", 4)) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000464 /* Set scan script. */
465#ifdef C_MULTISCAN_FILES_SUPPORTED
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400466 if (++argn >= argc) /* advance to next argument */
467 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000468 scansarg = argv[argn];
469 /* We must postpone reading the file in case -progressive appears. */
470#else
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000471 fprintf(stderr, "%s: sorry, multi-scan output was not compiled in\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400472 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000473 exit(EXIT_FAILURE);
474#endif
475
476 } else if (keymatch(arg, "smooth", 2)) {
477 /* Set input smoothing factor. */
478 int val;
479
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400480 if (++argn >= argc) /* advance to next argument */
481 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000482 if (sscanf(argv[argn], "%d", &val) != 1)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400483 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000484 if (val < 0 || val > 100)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400485 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000486 cinfo->smoothing_factor = val;
487
Jonathan Wright02959c32021-11-22 10:27:51 +0000488 } else if (keymatch(arg, "strict", 2)) {
489 strict = TRUE;
490
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000491 } else if (keymatch(arg, "targa", 1)) {
492 /* Input file is Targa format. */
493 is_targa = TRUE;
494
495 } else {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400496 usage(); /* bogus switch */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000497 }
498 }
499
500 /* Post-switch-scanning cleanup */
501
502 if (for_real) {
503
504 /* Set quantization tables for selected quality. */
505 /* Some or all may be overridden if -qtables is present. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400506 if (qualityarg != NULL) /* process -quality if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800507 if (!set_quality_ratings(cinfo, qualityarg, force_baseline))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400508 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000509
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400510 if (qtablefile != NULL) /* process -qtables if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800511 if (!read_quant_tables(cinfo, qtablefile, force_baseline))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400512 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000513
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400514 if (qslotsarg != NULL) /* process -qslots if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800515 if (!set_quant_slots(cinfo, qslotsarg))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400516 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000517
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400518 if (samplearg != NULL) /* process -sample if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800519 if (!set_sample_factors(cinfo, samplearg))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400520 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000521
522#ifdef C_PROGRESSIVE_SUPPORTED
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400523 if (simple_progressive) /* process -progressive; -scans can override */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000524 jpeg_simple_progression(cinfo);
525#endif
526
527#ifdef C_MULTISCAN_FILES_SUPPORTED
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400528 if (scansarg != NULL) /* process -scans if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800529 if (!read_scan_script(cinfo, scansarg))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400530 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000531#endif
532 }
533
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400534 return argn; /* return index of next arg (file name) */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000535}
536
537
Jonathan Wright02959c32021-11-22 10:27:51 +0000538METHODDEF(void)
539my_emit_message(j_common_ptr cinfo, int msg_level)
540{
541 if (msg_level < 0) {
542 /* Treat warning as fatal */
543 cinfo->err->error_exit(cinfo);
544 } else {
545 if (cinfo->err->trace_level >= msg_level)
546 cinfo->err->output_message(cinfo);
547 }
548}
549
550
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000551/*
552 * The main program.
553 */
554
555int
Jonathan Wright5961ab92020-06-21 13:11:49 +0100556#ifdef GTEST
557cjpeg(int argc, char **argv)
558#else
Chris Blumecca8c4d2019-03-01 01:09:50 -0800559main(int argc, char **argv)
Jonathan Wright5961ab92020-06-21 13:11:49 +0100560#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000561{
562 struct jpeg_compress_struct cinfo;
Jonathan Wright24e31052021-04-26 12:10:48 +0100563#ifdef CJPEG_FUZZER
564 struct my_error_mgr myerr;
565 struct jpeg_error_mgr &jerr = myerr.pub;
566#else
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000567 struct jpeg_error_mgr jerr;
Jonathan Wright24e31052021-04-26 12:10:48 +0100568#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000569 struct cdjpeg_progress_mgr progress;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000570 int file_index;
571 cjpeg_source_ptr src_mgr;
Jonathan Wright24e31052021-04-26 12:10:48 +0100572 FILE *input_file = NULL;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800573 FILE *icc_file;
574 JOCTET *icc_profile = NULL;
575 long icc_len = 0;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400576 FILE *output_file = NULL;
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000577 unsigned char *outbuffer = NULL;
578 unsigned long outsize = 0;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000579 JDIMENSION num_scanlines;
580
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000581 progname = argv[0];
582 if (progname == NULL || progname[0] == 0)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400583 progname = "cjpeg"; /* in case C library doesn't provide it */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000584
585 /* Initialize the JPEG compression object with default error handling. */
586 cinfo.err = jpeg_std_error(&jerr);
587 jpeg_create_compress(&cinfo);
588 /* Add some application-specific error messages (from cderror.h) */
589 jerr.addon_message_table = cdjpeg_message_table;
590 jerr.first_addon_message = JMSG_FIRSTADDONCODE;
591 jerr.last_addon_message = JMSG_LASTADDONCODE;
592
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000593 /* Initialize JPEG parameters.
594 * Much of this may be overridden later.
595 * In particular, we don't yet know the input file's color space,
596 * but we need to provide some value for jpeg_set_defaults() to work.
597 */
598
599 cinfo.in_color_space = JCS_RGB; /* arbitrary guess */
600 jpeg_set_defaults(&cinfo);
601
602 /* Scan command line to find file names.
603 * It is convenient to use just one switch-parsing routine, but the switch
604 * values read here are ignored; we will rescan the switches after opening
605 * the input file.
606 */
607
608 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
609
Jonathan Wright02959c32021-11-22 10:27:51 +0000610 if (strict)
611 jerr.emit_message = my_emit_message;
612
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000613#ifdef TWO_FILE_COMMANDLINE
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000614 if (!memdst) {
615 /* Must have either -outfile switch or explicit output file name */
616 if (outfilename == NULL) {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800617 if (file_index != argc - 2) {
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000618 fprintf(stderr, "%s: must name one input and one output file\n",
619 progname);
620 usage();
621 }
Chris Blumecca8c4d2019-03-01 01:09:50 -0800622 outfilename = argv[file_index + 1];
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000623 } else {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800624 if (file_index != argc - 1) {
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000625 fprintf(stderr, "%s: must name one input and one output file\n",
626 progname);
627 usage();
628 }
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000629 }
630 }
631#else
632 /* Unix style: expect zero or one file name */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800633 if (file_index < argc - 1) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000634 fprintf(stderr, "%s: only one input file\n", progname);
635 usage();
636 }
637#endif /* TWO_FILE_COMMANDLINE */
638
639 /* Open the input file. */
640 if (file_index < argc) {
641 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
642 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100643 return EXIT_FAILURE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000644 }
645 } else {
646 /* default input file is stdin */
647 input_file = read_stdin();
648 }
649
650 /* Open the output file. */
651 if (outfilename != NULL) {
652 if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
653 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100654 return EXIT_FAILURE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000655 }
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000656 } else if (!memdst) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000657 /* default output file is stdout */
658 output_file = write_stdout();
659 }
660
Chris Blumecca8c4d2019-03-01 01:09:50 -0800661 if (icc_filename != NULL) {
662 if ((icc_file = fopen(icc_filename, READ_BINARY)) == NULL) {
663 fprintf(stderr, "%s: can't open %s\n", progname, icc_filename);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100664 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800665 }
666 if (fseek(icc_file, 0, SEEK_END) < 0 ||
667 (icc_len = ftell(icc_file)) < 1 ||
668 fseek(icc_file, 0, SEEK_SET) < 0) {
669 fprintf(stderr, "%s: can't determine size of %s\n", progname,
670 icc_filename);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100671 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800672 }
673 if ((icc_profile = (JOCTET *)malloc(icc_len)) == NULL) {
674 fprintf(stderr, "%s: can't allocate memory for ICC profile\n", progname);
675 fclose(icc_file);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100676 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800677 }
678 if (fread(icc_profile, icc_len, 1, icc_file) < 1) {
679 fprintf(stderr, "%s: can't read ICC profile from %s\n", progname,
680 icc_filename);
681 free(icc_profile);
682 fclose(icc_file);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100683 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800684 }
685 fclose(icc_file);
686 }
687
Jonathan Wright24e31052021-04-26 12:10:48 +0100688#ifdef CJPEG_FUZZER
689 jerr.error_exit = my_error_exit;
Jonathan Wright22f1a222022-03-01 15:53:34 +0000690 jerr.emit_message = my_emit_message_fuzzer;
Jonathan Wright24e31052021-04-26 12:10:48 +0100691 if (setjmp(myerr.setjmp_buffer))
692 HANDLE_ERROR()
693#endif
694
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000695 if (report) {
696 start_progress_monitor((j_common_ptr)&cinfo, &progress);
697 progress.report = report;
698 }
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000699
700 /* Figure out the input file format, and set up to read it. */
701 src_mgr = select_file_type(&cinfo, input_file);
702 src_mgr->input_file = input_file;
Jonathan Wright24e31052021-04-26 12:10:48 +0100703#ifdef CJPEG_FUZZER
704 src_mgr->max_pixels = 1048576;
705#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000706
707 /* Read the input file header to obtain file size & colorspace. */
708 (*src_mgr->start_input) (&cinfo, src_mgr);
709
710 /* Now that we know input colorspace, fix colorspace-dependent defaults */
711 jpeg_default_colorspace(&cinfo);
712
713 /* Adjust default compression parameters by re-parsing the options */
714 file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
715
716 /* Specify data destination for compression */
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000717#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
718 if (memdst)
719 jpeg_mem_dest(&cinfo, &outbuffer, &outsize);
720 else
721#endif
722 jpeg_stdio_dest(&cinfo, output_file);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000723
Jonathan Wright24e31052021-04-26 12:10:48 +0100724#ifdef CJPEG_FUZZER
725 if (setjmp(myerr.setjmp_buffer))
726 HANDLE_ERROR()
727#endif
728
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000729 /* Start compressor */
730 jpeg_start_compress(&cinfo, TRUE);
731
Chris Blumecca8c4d2019-03-01 01:09:50 -0800732 if (icc_profile != NULL)
733 jpeg_write_icc_profile(&cinfo, icc_profile, (unsigned int)icc_len);
734
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000735 /* Process data */
736 while (cinfo.next_scanline < cinfo.image_height) {
737 num_scanlines = (*src_mgr->get_pixel_rows) (&cinfo, src_mgr);
Chris Blumecca8c4d2019-03-01 01:09:50 -0800738 (void)jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000739 }
740
741 /* Finish compression and release memory */
742 (*src_mgr->finish_input) (&cinfo, src_mgr);
743 jpeg_finish_compress(&cinfo);
744 jpeg_destroy_compress(&cinfo);
745
746 /* Close files, if we opened them */
747 if (input_file != stdin)
748 fclose(input_file);
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000749 if (output_file != stdout && output_file != NULL)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000750 fclose(output_file);
751
Jonathan Wrightbbb82822020-11-25 13:36:43 +0000752 if (report)
753 end_progress_monitor((j_common_ptr)&cinfo);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000754
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000755 if (memdst) {
Jonathan Wright24e31052021-04-26 12:10:48 +0100756#ifndef CJPEG_FUZZER
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000757 fprintf(stderr, "Compressed size: %lu bytes\n", outsize);
Jonathan Wright24e31052021-04-26 12:10:48 +0100758#endif
Jonathan Wrightdb870df2020-08-05 11:42:22 +0100759 free(outbuffer);
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000760 }
761
Jonathan Wrightdb870df2020-08-05 11:42:22 +0100762 free(icc_profile);
Chris Blumecca8c4d2019-03-01 01:09:50 -0800763
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000764 /* All done. */
Jonathan Wright5961ab92020-06-21 13:11:49 +0100765 return (jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000766}