1 /*
2 * cjpeg.c
3 *
4 * This file was part of the Independent JPEG Group's software:
5 * Copyright (C) 1991-1998, Thomas G. Lane.
6 * Modified 2003-2011 by Guido Vollbeding.
7 * libjpeg-turbo Modifications:
8 * Copyright (C) 2010, 2013-2014, 2017, 2019-2022, D. R. Commander.
9 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
11 *
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:
17 * cjpeg [options] inputfile outputfile
18 * cjpeg [options] [inputfile]
19 * 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
26 * cjpeg [options] -outfile outputfile inputfile
27 * works regardless of which command line style is used.
28 */
29
30 #ifdef _MSC_VER
31 #define _CRT_SECURE_NO_DEPRECATE
32 #endif
33
34 #ifdef CJPEG_FUZZER
35 #define JPEG_INTERNALS
36 #endif
37 #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
38 #include "jversion.h" /* for version message */
39 #include "jconfigint.h"
40
41
42 /* Create the add-on message string table. */
43
44 #define JMESSAGE(code, string) string,
45
46 static 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
64 * stdio directly);
65 * or 4) don't put back the data, and modify the input_init methods to assume
66 * they start reading after the start of file.
67 * #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
78 static boolean is_targa; /* records user -targa switch */
79
80
81 LOCAL(cjpeg_source_ptr)
select_file_type(j_compress_ptr cinfo,FILE * infile)82 select_file_type(j_compress_ptr cinfo, FILE *infile)
83 {
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':
102 return jinit_read_bmp(cinfo, TRUE);
103 #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
112 #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
121 return NULL; /* suppress compiler warnings */
122 }
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
134 static const char *progname; /* program name for error messages */
135 static char *icc_filename; /* for -icc switch */
136 static char *outfilename; /* for -outfile switch */
137 boolean memdst; /* for -memdst switch */
138 boolean report; /* for -report switch */
139 boolean strict; /* for -strict switch */
140
141
142 #ifdef CJPEG_FUZZER
143
144 #include <setjmp.h>
145
146 struct my_error_mgr {
147 struct jpeg_error_mgr pub;
148 jmp_buf setjmp_buffer;
149 };
150
my_error_exit(j_common_ptr cinfo)151 void 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
my_emit_message_fuzzer(j_common_ptr cinfo,int msg_level)158 static void my_emit_message_fuzzer(j_common_ptr cinfo, int msg_level)
159 {
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
179
180
181 LOCAL(void)
usage(void)182 usage(void)
183 /* 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");
193 fprintf(stderr, " -quality N[,...] Compression quality (0..100; 5-95 is most useful range,\n");
194 fprintf(stderr, " default is 75)\n");
195 fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
196 fprintf(stderr, " -rgb Create RGB JPEG file\n");
197 #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");
207 #ifdef C_ARITH_CODING_SUPPORTED
208 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
209 #endif
210 #ifdef DCT_ISLOW_SUPPORTED
211 fprintf(stderr, " -dct int Use accurate integer DCT method%s\n",
212 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
213 #endif
214 #ifdef DCT_IFAST_SUPPORTED
215 fprintf(stderr, " -dct fast Use less accurate integer DCT method [legacy feature]%s\n",
216 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
217 #endif
218 #ifdef DCT_FLOAT_SUPPORTED
219 fprintf(stderr, " -dct float Use floating-point DCT method [legacy feature]%s\n",
220 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
221 #endif
222 fprintf(stderr, " -icc FILE Embed ICC profile contained in FILE\n");
223 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");
229 #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
232 fprintf(stderr, " -report Report compression progress\n");
233 fprintf(stderr, " -strict Treat all warnings as fatal\n");
234 fprintf(stderr, " -verbose or -debug Emit debug output\n");
235 fprintf(stderr, " -version Print version information and exit\n");
236 fprintf(stderr, "Switches for wizards:\n");
237 fprintf(stderr, " -baseline Force baseline quantization tables\n");
238 fprintf(stderr, " -qtables FILE Use quantization tables given in FILE\n");
239 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
242 fprintf(stderr, " -scans FILE Create multi-scan JPEG per script FILE\n");
243 #endif
244 exit(EXIT_FAILURE);
245 }
246
247
248 LOCAL(int)
parse_switches(j_compress_ptr cinfo,int argc,char ** argv,int last_file_arg_seen,boolean for_real)249 parse_switches(j_compress_ptr cinfo, int argc, char **argv,
250 int last_file_arg_seen, boolean for_real)
251 /* 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;
261 char *arg;
262 boolean force_baseline;
263 boolean simple_progressive;
264 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 */
269
270 /* Set up default JPEG parameters. */
271
272 force_baseline = FALSE; /* by default, allow 16-bit quantizers */
273 simple_progressive = FALSE;
274 is_targa = FALSE;
275 icc_filename = NULL;
276 outfilename = NULL;
277 memdst = FALSE;
278 report = FALSE;
279 strict = FALSE;
280 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) {
289 outfilename = NULL; /* -outfile applies to just one input file */
290 continue; /* ignore this name if previously processed */
291 }
292 break; /* else done parsing switches */
293 }
294 arg++; /* advance past switch marker character */
295
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",
302 progname);
303 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. */
312 if (++argn >= argc) /* advance to next argument */
313 usage();
314 if (keymatch(argv[argn], "int", 1)) {
315 cinfo->dct_method = JDCT_ISLOW;
316 } else if (keymatch(argv[argn], "fast", 2)) {
317 cinfo->dct_method = JDCT_IFAST;
318 } else if (keymatch(argv[argn], "float", 2)) {
319 cinfo->dct_method = JDCT_FLOAT;
320 } else
321 usage();
322
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
328 if (!printed_version) {
329 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;
335 }
336 cinfo->err->trace_level++;
337
338 } 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
343 } else if (keymatch(arg, "grayscale", 2) ||
344 keymatch(arg, "greyscale", 2)) {
345 /* Force a monochrome JPEG file to be generated. */
346 jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);
347
348 } else if (keymatch(arg, "rgb", 3)) {
349 /* Force an RGB JPEG file to be generated. */
350 jpeg_set_colorspace(cinfo, JCS_RGB);
351
352 } 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
358 } else if (keymatch(arg, "maxmemory", 3)) {
359 /* Maximum memory in Kb (or Mb with 'm'). */
360 long lval;
361 char ch = 'x';
362
363 if (++argn >= argc) /* advance to next argument */
364 usage();
365 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
366 usage();
367 if (ch == 'm' || ch == 'M')
368 lval *= 1000L;
369 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
376 fprintf(stderr, "%s: sorry, entropy optimization was not compiled in\n",
377 progname);
378 exit(EXIT_FAILURE);
379 #endif
380
381 } else if (keymatch(arg, "outfile", 4)) {
382 /* Set output file name. */
383 if (++argn >= argc) /* advance to next argument */
384 usage();
385 outfilename = argv[argn]; /* save it away for later use */
386
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
393 fprintf(stderr, "%s: sorry, progressive output was not compiled in\n",
394 progname);
395 exit(EXIT_FAILURE);
396 #endif
397
398 } 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
408 } else if (keymatch(arg, "quality", 1)) {
409 /* Quality ratings (quantization table scaling factors). */
410 if (++argn >= argc) /* advance to next argument */
411 usage();
412 qualityarg = argv[argn];
413
414 } else if (keymatch(arg, "qslots", 2)) {
415 /* Quantization table slot numbers. */
416 if (++argn >= argc) /* advance to next argument */
417 usage();
418 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. */
426 if (++argn >= argc) /* advance to next argument */
427 usage();
428 qtablefile = argv[argn];
429 /* We postpone actually reading the file in case -quality comes later. */
430
431 } else if (keymatch(arg, "report", 3)) {
432 report = TRUE;
433
434 } 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
439 if (++argn >= argc) /* advance to next argument */
440 usage();
441 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
442 usage();
443 if (lval < 0 || lval > 65535L)
444 usage();
445 if (ch == 'b' || ch == 'B') {
446 cinfo->restart_interval = (unsigned int)lval;
447 cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
448 } else {
449 cinfo->restart_in_rows = (int)lval;
450 /* restart_interval will be computed during startup */
451 }
452
453 } else if (keymatch(arg, "sample", 2)) {
454 /* Set sampling factors. */
455 if (++argn >= argc) /* advance to next argument */
456 usage();
457 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
463 } else if (keymatch(arg, "scans", 4)) {
464 /* Set scan script. */
465 #ifdef C_MULTISCAN_FILES_SUPPORTED
466 if (++argn >= argc) /* advance to next argument */
467 usage();
468 scansarg = argv[argn];
469 /* We must postpone reading the file in case -progressive appears. */
470 #else
471 fprintf(stderr, "%s: sorry, multi-scan output was not compiled in\n",
472 progname);
473 exit(EXIT_FAILURE);
474 #endif
475
476 } else if (keymatch(arg, "smooth", 2)) {
477 /* Set input smoothing factor. */
478 int val;
479
480 if (++argn >= argc) /* advance to next argument */
481 usage();
482 if (sscanf(argv[argn], "%d", &val) != 1)
483 usage();
484 if (val < 0 || val > 100)
485 usage();
486 cinfo->smoothing_factor = val;
487
488 } else if (keymatch(arg, "strict", 2)) {
489 strict = TRUE;
490
491 } else if (keymatch(arg, "targa", 1)) {
492 /* Input file is Targa format. */
493 is_targa = TRUE;
494
495 } else {
496 usage(); /* bogus switch */
497 }
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. */
506 if (qualityarg != NULL) /* process -quality if it was present */
507 if (!set_quality_ratings(cinfo, qualityarg, force_baseline))
508 usage();
509
510 if (qtablefile != NULL) /* process -qtables if it was present */
511 if (!read_quant_tables(cinfo, qtablefile, force_baseline))
512 usage();
513
514 if (qslotsarg != NULL) /* process -qslots if it was present */
515 if (!set_quant_slots(cinfo, qslotsarg))
516 usage();
517
518 if (samplearg != NULL) /* process -sample if it was present */
519 if (!set_sample_factors(cinfo, samplearg))
520 usage();
521
522 #ifdef C_PROGRESSIVE_SUPPORTED
523 if (simple_progressive) /* process -progressive; -scans can override */
524 jpeg_simple_progression(cinfo);
525 #endif
526
527 #ifdef C_MULTISCAN_FILES_SUPPORTED
528 if (scansarg != NULL) /* process -scans if it was present */
529 if (!read_scan_script(cinfo, scansarg))
530 usage();
531 #endif
532 }
533
534 return argn; /* return index of next arg (file name) */
535 }
536
537
538 METHODDEF(void)
my_emit_message(j_common_ptr cinfo,int msg_level)539 my_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
551 /*
552 * The main program.
553 */
554
555 int
556 #ifdef GTEST
cjpeg(int argc,char ** argv)557 cjpeg(int argc, char **argv)
558 #else
559 main(int argc, char **argv)
560 #endif
561 {
562 struct jpeg_compress_struct cinfo;
563 #ifdef CJPEG_FUZZER
564 struct my_error_mgr myerr;
565 struct jpeg_error_mgr &jerr = myerr.pub;
566 #else
567 struct jpeg_error_mgr jerr;
568 #endif
569 struct cdjpeg_progress_mgr progress;
570 int file_index;
571 cjpeg_source_ptr src_mgr;
572 FILE *input_file = NULL;
573 FILE *icc_file;
574 JOCTET *icc_profile = NULL;
575 long icc_len = 0;
576 FILE *output_file = NULL;
577 unsigned char *outbuffer = NULL;
578 unsigned long outsize = 0;
579 JDIMENSION num_scanlines;
580
581 progname = argv[0];
582 if (progname == NULL || progname[0] == 0)
583 progname = "cjpeg"; /* in case C library doesn't provide it */
584
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
593 /* 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
610 if (strict)
611 jerr.emit_message = my_emit_message;
612
613 #ifdef TWO_FILE_COMMANDLINE
614 if (!memdst) {
615 /* Must have either -outfile switch or explicit output file name */
616 if (outfilename == NULL) {
617 if (file_index != argc - 2) {
618 fprintf(stderr, "%s: must name one input and one output file\n",
619 progname);
620 usage();
621 }
622 outfilename = argv[file_index + 1];
623 } else {
624 if (file_index != argc - 1) {
625 fprintf(stderr, "%s: must name one input and one output file\n",
626 progname);
627 usage();
628 }
629 }
630 }
631 #else
632 /* Unix style: expect zero or one file name */
633 if (file_index < argc - 1) {
634 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]);
643 return EXIT_FAILURE;
644 }
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);
654 return EXIT_FAILURE;
655 }
656 } else if (!memdst) {
657 /* default output file is stdout */
658 output_file = write_stdout();
659 }
660
661 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);
664 return EXIT_FAILURE;
665 }
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);
671 return EXIT_FAILURE;
672 }
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);
676 return EXIT_FAILURE;
677 }
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);
683 return EXIT_FAILURE;
684 }
685 fclose(icc_file);
686 }
687
688 #ifdef CJPEG_FUZZER
689 jerr.error_exit = my_error_exit;
690 jerr.emit_message = my_emit_message_fuzzer;
691 if (setjmp(myerr.setjmp_buffer))
692 HANDLE_ERROR()
693 #endif
694
695 if (report) {
696 start_progress_monitor((j_common_ptr)&cinfo, &progress);
697 progress.report = report;
698 }
699
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;
703 #ifdef CJPEG_FUZZER
704 src_mgr->max_pixels = 1048576;
705 #endif
706
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 */
717 #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);
723
724 #ifdef CJPEG_FUZZER
725 if (setjmp(myerr.setjmp_buffer))
726 HANDLE_ERROR()
727 #endif
728
729 /* Start compressor */
730 jpeg_start_compress(&cinfo, TRUE);
731
732 if (icc_profile != NULL)
733 jpeg_write_icc_profile(&cinfo, icc_profile, (unsigned int)icc_len);
734
735 /* Process data */
736 while (cinfo.next_scanline < cinfo.image_height) {
737 num_scanlines = (*src_mgr->get_pixel_rows) (&cinfo, src_mgr);
738 (void)jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
739 }
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);
749 if (output_file != stdout && output_file != NULL)
750 fclose(output_file);
751
752 if (report)
753 end_progress_monitor((j_common_ptr)&cinfo);
754
755 if (memdst) {
756 #ifndef CJPEG_FUZZER
757 fprintf(stderr, "Compressed size: %lu bytes\n", outsize);
758 #endif
759 free(outbuffer);
760 }
761
762 free(icc_profile);
763
764 /* All done. */
765 return (jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
766 }
767