blob: 8a4e74161e78c51c04cb2600353e9c7db2c8f969 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * wrjpgcom.c
3 *
DRCa8fb48b2014-05-29 19:31:45 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1994-1997, Thomas G. Lane.
DRCb7d6e842014-06-22 20:36:50 +00006 * libjpeg-turbo Modifications:
DRC123f7252016-05-24 10:23:56 -05007 * Copyright (C) 2014, D. R. Commander.
DRC7e3acc02015-10-10 10:25:46 -05008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000010 *
11 * This file contains a very simple stand-alone application that inserts
12 * user-supplied text as a COM (comment) marker in a JFIF file.
13 * This may be useful as an example of the minimum logic needed to parse
14 * JPEG markers.
15 */
16
DRCe5eaf372014-05-09 18:00:32 +000017#define JPEG_CJPEG_DJPEG /* to get the command-line config symbols */
18#include "jinclude.h" /* get auto-config symbols, <stdio.h> */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000019
DRCe5eaf372014-05-09 18:00:32 +000020#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc() */
DRC19c791c2018-03-08 10:55:20 -060021extern void *malloc();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000022#endif
DRCe5eaf372014-05-09 18:00:32 +000023#include <ctype.h> /* to declare isupper(), tolower() */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000024#ifdef USE_SETMODE
DRCe5eaf372014-05-09 18:00:32 +000025#include <fcntl.h> /* to declare setmode()'s parameter macros */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000026/* If you have setmode() but not <io.h>, just delete this line: */
DRCe5eaf372014-05-09 18:00:32 +000027#include <io.h> /* to declare setmode() */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000028#endif
29
DRCe5eaf372014-05-09 18:00:32 +000030#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000031#ifdef __MWERKS__
Thomas G. Lane489583f1996-02-07 00:00:00 +000032#include <SIOUX.h> /* Metrowerks needs this */
DRCe5eaf372014-05-09 18:00:32 +000033#include <console.h> /* ... and this */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000034#endif
35#ifdef THINK_C
DRCe5eaf372014-05-09 18:00:32 +000036#include <console.h> /* Think declares it here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000037#endif
38#endif
39
DRCe5eaf372014-05-09 18:00:32 +000040#ifdef DONT_USE_B_MODE /* define mode parameters for fopen() */
41#define READ_BINARY "r"
42#define WRITE_BINARY "w"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000043#else
DRCe5eaf372014-05-09 18:00:32 +000044#define READ_BINARY "rb"
45#define WRITE_BINARY "wb"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000046#endif
47
DRCe5eaf372014-05-09 18:00:32 +000048#ifndef EXIT_FAILURE /* define exit() codes if not provided */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000049#define EXIT_FAILURE 1
50#endif
51#ifndef EXIT_SUCCESS
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000052#define EXIT_SUCCESS 0
53#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000054
55/* Reduce this value if your malloc() can't allocate blocks up to 64K.
56 * On DOS, compiling in large model is usually a better solution.
57 */
58
59#ifndef MAX_COM_LENGTH
DRC293263c2018-03-17 15:14:35 -050060#define MAX_COM_LENGTH 65000L /* must be <= 65533 in any case */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000061#endif
62
63
64/*
65 * These macros are used to read the input file and write the output file.
66 * To reuse this code in another application, you might need to change these.
67 */
68
DRCbd498032016-02-19 08:53:33 -060069static FILE *infile; /* input JPEG file */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000070
71/* Return next input byte, or EOF if no more */
72#define NEXTBYTE() getc(infile)
73
DRCbd498032016-02-19 08:53:33 -060074static FILE *outfile; /* output JPEG file */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000075
76/* Emit an output byte */
77#define PUTBYTE(x) putc((x), outfile)
78
79
80/* Error exit handler */
81#define ERREXIT(msg) (fprintf(stderr, "%s\n", msg), exit(EXIT_FAILURE))
82
83
84/* Read one byte, testing for EOF */
85static int
DRC19c791c2018-03-08 10:55:20 -060086read_1_byte(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000087{
88 int c;
89
90 c = NEXTBYTE();
91 if (c == EOF)
92 ERREXIT("Premature EOF in JPEG file");
93 return c;
94}
95
96/* Read 2 bytes, convert to unsigned int */
97/* All 2-byte quantities in JPEG markers are MSB first */
98static unsigned int
DRC19c791c2018-03-08 10:55:20 -060099read_2_bytes(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100{
101 int c1, c2;
102
103 c1 = NEXTBYTE();
104 if (c1 == EOF)
105 ERREXIT("Premature EOF in JPEG file");
106 c2 = NEXTBYTE();
107 if (c2 == EOF)
108 ERREXIT("Premature EOF in JPEG file");
DRC19c791c2018-03-08 10:55:20 -0600109 return (((unsigned int)c1) << 8) + ((unsigned int)c2);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000110}
111
112
113/* Routines to write data to output file */
114
115static void
DRC19c791c2018-03-08 10:55:20 -0600116write_1_byte(int c)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000117{
118 PUTBYTE(c);
119}
120
121static void
DRC19c791c2018-03-08 10:55:20 -0600122write_2_bytes(unsigned int val)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000123{
124 PUTBYTE((val >> 8) & 0xFF);
125 PUTBYTE(val & 0xFF);
126}
127
128static void
DRC19c791c2018-03-08 10:55:20 -0600129write_marker(int marker)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000130{
131 PUTBYTE(0xFF);
132 PUTBYTE(marker);
133}
134
135static void
DRC19c791c2018-03-08 10:55:20 -0600136copy_rest_of_file(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000137{
138 int c;
139
140 while ((c = NEXTBYTE()) != EOF)
141 PUTBYTE(c);
142}
143
144
145/*
146 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
147 * code byte (which is not an FF). Here are the marker codes of interest
148 * in this program. (See jdmarker.c for a more complete list.)
149 */
150
DRC293263c2018-03-17 15:14:35 -0500151#define M_SOF0 0xC0 /* Start Of Frame N */
152#define M_SOF1 0xC1 /* N indicates which compression process */
153#define M_SOF2 0xC2 /* Only SOF0-SOF2 are now in common use */
154#define M_SOF3 0xC3
155#define M_SOF5 0xC5 /* NB: codes C4 and CC are NOT SOF markers */
156#define M_SOF6 0xC6
157#define M_SOF7 0xC7
158#define M_SOF9 0xC9
159#define M_SOF10 0xCA
160#define M_SOF11 0xCB
161#define M_SOF13 0xCD
162#define M_SOF14 0xCE
163#define M_SOF15 0xCF
164#define M_SOI 0xD8 /* Start Of Image (beginning of datastream) */
165#define M_EOI 0xD9 /* End Of Image (end of datastream) */
166#define M_SOS 0xDA /* Start Of Scan (begins compressed data) */
167#define M_COM 0xFE /* COMment */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000168
169
170/*
171 * Find the next JPEG marker and return its marker code.
172 * We expect at least one FF byte, possibly more if the compressor used FFs
173 * to pad the file. (Padding FFs will NOT be replicated in the output file.)
174 * There could also be non-FF garbage between markers. The treatment of such
175 * garbage is unspecified; we choose to skip over it but emit a warning msg.
176 * NB: this routine must not be used after seeing SOS marker, since it will
177 * not deal correctly with FF/00 sequences in the compressed image data...
178 */
179
180static int
DRC19c791c2018-03-08 10:55:20 -0600181next_marker(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000182{
183 int c;
184 int discarded_bytes = 0;
185
186 /* Find 0xFF byte; count and skip any non-FFs. */
187 c = read_1_byte();
188 while (c != 0xFF) {
189 discarded_bytes++;
190 c = read_1_byte();
191 }
192 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
193 * are legal as pad bytes, so don't count them in discarded_bytes.
194 */
195 do {
196 c = read_1_byte();
197 } while (c == 0xFF);
198
199 if (discarded_bytes != 0) {
200 fprintf(stderr, "Warning: garbage data found in JPEG file\n");
201 }
202
203 return c;
204}
205
206
207/*
208 * Read the initial marker, which should be SOI.
209 * For a JFIF file, the first two bytes of the file should be literally
210 * 0xFF M_SOI. To be more general, we could use next_marker, but if the
211 * input file weren't actually JPEG at all, next_marker might read the whole
212 * file and then return a misleading error message...
213 */
214
215static int
DRC19c791c2018-03-08 10:55:20 -0600216first_marker(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000217{
218 int c1, c2;
219
220 c1 = NEXTBYTE();
221 c2 = NEXTBYTE();
222 if (c1 != 0xFF || c2 != M_SOI)
223 ERREXIT("Not a JPEG file");
224 return c2;
225}
226
227
228/*
229 * Most types of marker are followed by a variable-length parameter segment.
230 * This routine skips over the parameters for any marker we don't otherwise
231 * want to process.
232 * Note that we MUST skip the parameter segment explicitly in order not to
233 * be fooled by 0xFF bytes that might appear within the parameter segment;
234 * such bytes do NOT introduce new markers.
235 */
236
237static void
DRC19c791c2018-03-08 10:55:20 -0600238copy_variable(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000239/* Copy an unknown or uninteresting variable-length marker */
240{
241 unsigned int length;
242
243 /* Get the marker parameter length count */
244 length = read_2_bytes();
245 write_2_bytes(length);
246 /* Length includes itself, so must be at least 2 */
247 if (length < 2)
248 ERREXIT("Erroneous JPEG marker length");
249 length -= 2;
nygba6e9d82017-09-05 18:23:04 +0200250 /* Copy the remaining bytes */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000251 while (length > 0) {
252 write_1_byte(read_1_byte());
253 length--;
254 }
255}
256
257static void
DRC19c791c2018-03-08 10:55:20 -0600258skip_variable(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000259/* Skip over an unknown or uninteresting variable-length marker */
260{
261 unsigned int length;
262
263 /* Get the marker parameter length count */
264 length = read_2_bytes();
265 /* Length includes itself, so must be at least 2 */
266 if (length < 2)
267 ERREXIT("Erroneous JPEG marker length");
268 length -= 2;
269 /* Skip over the remaining bytes */
270 while (length > 0) {
DRC19c791c2018-03-08 10:55:20 -0600271 (void)read_1_byte();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000272 length--;
273 }
274}
275
276
277/*
278 * Parse the marker stream until SOFn or EOI is seen;
279 * copy data to output, but discard COM markers unless keep_COM is true.
280 */
281
282static int
DRC19c791c2018-03-08 10:55:20 -0600283scan_JPEG_header(int keep_COM)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000284{
285 int marker;
286
287 /* Expect SOI at start of file */
288 if (first_marker() != M_SOI)
289 ERREXIT("Expected SOI marker first");
290 write_marker(M_SOI);
291
292 /* Scan miscellaneous markers until we reach SOFn. */
293 for (;;) {
294 marker = next_marker();
295 switch (marker) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000296 /* Note that marker codes 0xC4, 0xC8, 0xCC are not, and must not be,
297 * treated as SOFn. C4 in particular is actually DHT.
298 */
DRCe5eaf372014-05-09 18:00:32 +0000299 case M_SOF0: /* Baseline */
300 case M_SOF1: /* Extended sequential, Huffman */
301 case M_SOF2: /* Progressive, Huffman */
302 case M_SOF3: /* Lossless, Huffman */
303 case M_SOF5: /* Differential sequential, Huffman */
304 case M_SOF6: /* Differential progressive, Huffman */
305 case M_SOF7: /* Differential lossless, Huffman */
306 case M_SOF9: /* Extended sequential, arithmetic */
307 case M_SOF10: /* Progressive, arithmetic */
308 case M_SOF11: /* Lossless, arithmetic */
309 case M_SOF13: /* Differential sequential, arithmetic */
310 case M_SOF14: /* Differential progressive, arithmetic */
311 case M_SOF15: /* Differential lossless, arithmetic */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000312 return marker;
313
DRCe5eaf372014-05-09 18:00:32 +0000314 case M_SOS: /* should not see compressed data before SOF */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000315 ERREXIT("SOS without prior SOFn");
316 break;
317
DRCe5eaf372014-05-09 18:00:32 +0000318 case M_EOI: /* in case it's a tables-only JPEG stream */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000319 return marker;
320
DRCe5eaf372014-05-09 18:00:32 +0000321 case M_COM: /* Existing COM: conditionally discard */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000322 if (keep_COM) {
DRCe5eaf372014-05-09 18:00:32 +0000323 write_marker(marker);
324 copy_variable();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325 } else {
DRCe5eaf372014-05-09 18:00:32 +0000326 skip_variable();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000327 }
328 break;
329
DRCe5eaf372014-05-09 18:00:32 +0000330 default: /* Anything else just gets copied */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000331 write_marker(marker);
DRCe5eaf372014-05-09 18:00:32 +0000332 copy_variable(); /* we assume it has a parameter count... */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000333 break;
334 }
335 } /* end loop */
336}
337
338
339/* Command line parsing code */
340
DRCbd498032016-02-19 08:53:33 -0600341static const char *progname; /* program name for error messages */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000342
343
344static void
DRC19c791c2018-03-08 10:55:20 -0600345usage(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000346/* complain about bad command line */
347{
348 fprintf(stderr, "wrjpgcom inserts a textual comment in a JPEG file.\n");
349 fprintf(stderr, "You can add to or replace any existing comment(s).\n");
350
351 fprintf(stderr, "Usage: %s [switches] ", progname);
352#ifdef TWO_FILE_COMMANDLINE
353 fprintf(stderr, "inputfile outputfile\n");
354#else
355 fprintf(stderr, "[inputfile]\n");
356#endif
357
358 fprintf(stderr, "Switches (names may be abbreviated):\n");
359 fprintf(stderr, " -replace Delete any existing comments\n");
360 fprintf(stderr, " -comment \"text\" Insert comment with given text\n");
361 fprintf(stderr, " -cfile name Read comment from named file\n");
362 fprintf(stderr, "Notice that you must put quotes around the comment text\n");
363 fprintf(stderr, "when you use -comment.\n");
364 fprintf(stderr, "If you do not give either -comment or -cfile on the command line,\n");
365 fprintf(stderr, "then the comment text is read from standard input.\n");
366 fprintf(stderr, "It can be multiple lines, up to %u characters total.\n",
DRC19c791c2018-03-08 10:55:20 -0600367 (unsigned int)MAX_COM_LENGTH);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000368#ifndef TWO_FILE_COMMANDLINE
369 fprintf(stderr, "You must specify an input JPEG file name when supplying\n");
370 fprintf(stderr, "comment text from standard input.\n");
371#endif
372
373 exit(EXIT_FAILURE);
374}
375
376
377static int
DRC19c791c2018-03-08 10:55:20 -0600378keymatch(char *arg, const char *keyword, int minchars)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000379/* Case-insensitive matching of (possibly abbreviated) keyword switches. */
380/* keyword is the constant keyword (must be lower case already), */
381/* minchars is length of minimum legal abbreviation. */
382{
383 register int ca, ck;
384 register int nmatched = 0;
385
386 while ((ca = *arg++) != '\0') {
387 if ((ck = *keyword++) == '\0')
DRCe5eaf372014-05-09 18:00:32 +0000388 return 0; /* arg longer than keyword, no good */
389 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000390 ca = tolower(ca);
391 if (ca != ck)
DRCe5eaf372014-05-09 18:00:32 +0000392 return 0; /* no good */
393 nmatched++; /* count matched characters */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000394 }
395 /* reached end of argument; fail if it's too short for unique abbrev */
396 if (nmatched < minchars)
397 return 0;
DRCe5eaf372014-05-09 18:00:32 +0000398 return 1; /* A-OK */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000399}
400
401
402/*
403 * The main program.
404 */
405
406int
DRC19c791c2018-03-08 10:55:20 -0600407main(int argc, char **argv)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000408{
409 int argn;
DRCbd498032016-02-19 08:53:33 -0600410 char *arg;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000411 int keep_COM = 1;
DRCbd498032016-02-19 08:53:33 -0600412 char *comment_arg = NULL;
413 FILE *comment_file = NULL;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000414 unsigned int comment_length = 0;
415 int marker;
416
417 /* On Mac, fetch a command line. */
418#ifdef USE_CCOMMAND
419 argc = ccommand(&argv);
420#endif
421
422 progname = argv[0];
423 if (progname == NULL || progname[0] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000424 progname = "wrjpgcom"; /* in case C library doesn't provide it */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000425
426 /* Parse switches, if any */
427 for (argn = 1; argn < argc; argn++) {
428 arg = argv[argn];
429 if (arg[0] != '-')
DRCe5eaf372014-05-09 18:00:32 +0000430 break; /* not switch, must be file name */
431 arg++; /* advance over '-' */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000432 if (keymatch(arg, "replace", 1)) {
433 keep_COM = 0;
434 } else if (keymatch(arg, "cfile", 2)) {
435 if (++argn >= argc) usage();
436 if ((comment_file = fopen(argv[argn], "r")) == NULL) {
DRCe5eaf372014-05-09 18:00:32 +0000437 fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
438 exit(EXIT_FAILURE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000439 }
440 } else if (keymatch(arg, "comment", 1)) {
441 if (++argn >= argc) usage();
442 comment_arg = argv[argn];
443 /* If the comment text starts with '"', then we are probably running
444 * under MS-DOG and must parse out the quoted string ourselves. Sigh.
445 */
446 if (comment_arg[0] == '"') {
DRC19c791c2018-03-08 10:55:20 -0600447 comment_arg = (char *)malloc((size_t)MAX_COM_LENGTH);
DRCe5eaf372014-05-09 18:00:32 +0000448 if (comment_arg == NULL)
449 ERREXIT("Insufficient memory");
DRC19c791c2018-03-08 10:55:20 -0600450 if (strlen(argv[argn]) + 2 >= (size_t)MAX_COM_LENGTH) {
DRCb7d6e842014-06-22 20:36:50 +0000451 fprintf(stderr, "Comment text may not exceed %u bytes\n",
DRC19c791c2018-03-08 10:55:20 -0600452 (unsigned int)MAX_COM_LENGTH);
DRCb7d6e842014-06-22 20:36:50 +0000453 exit(EXIT_FAILURE);
454 }
DRC19c791c2018-03-08 10:55:20 -0600455 strcpy(comment_arg, argv[argn] + 1);
DRCe5eaf372014-05-09 18:00:32 +0000456 for (;;) {
DRC19c791c2018-03-08 10:55:20 -0600457 comment_length = (unsigned int)strlen(comment_arg);
458 if (comment_length > 0 && comment_arg[comment_length - 1] == '"') {
459 comment_arg[comment_length - 1] = '\0'; /* zap terminating quote */
DRCe5eaf372014-05-09 18:00:32 +0000460 break;
461 }
462 if (++argn >= argc)
463 ERREXIT("Missing ending quote mark");
DRCb7d6e842014-06-22 20:36:50 +0000464 if (strlen(comment_arg) + strlen(argv[argn]) + 2 >=
DRC19c791c2018-03-08 10:55:20 -0600465 (size_t)MAX_COM_LENGTH) {
DRCb7d6e842014-06-22 20:36:50 +0000466 fprintf(stderr, "Comment text may not exceed %u bytes\n",
DRC19c791c2018-03-08 10:55:20 -0600467 (unsigned int)MAX_COM_LENGTH);
DRCb7d6e842014-06-22 20:36:50 +0000468 exit(EXIT_FAILURE);
469 }
DRCe5eaf372014-05-09 18:00:32 +0000470 strcat(comment_arg, " ");
471 strcat(comment_arg, argv[argn]);
472 }
DRC19c791c2018-03-08 10:55:20 -0600473 } else if (strlen(argv[argn]) >= (size_t)MAX_COM_LENGTH) {
DRCb7d6e842014-06-22 20:36:50 +0000474 fprintf(stderr, "Comment text may not exceed %u bytes\n",
DRC19c791c2018-03-08 10:55:20 -0600475 (unsigned int)MAX_COM_LENGTH);
DRCb7d6e842014-06-22 20:36:50 +0000476 exit(EXIT_FAILURE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000477 }
DRC19c791c2018-03-08 10:55:20 -0600478 comment_length = (unsigned int)strlen(comment_arg);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000479 } else
480 usage();
481 }
482
483 /* Cannot use both -comment and -cfile. */
484 if (comment_arg != NULL && comment_file != NULL)
485 usage();
486 /* If there is neither -comment nor -cfile, we will read the comment text
487 * from stdin; in this case there MUST be an input JPEG file name.
488 */
489 if (comment_arg == NULL && comment_file == NULL && argn >= argc)
490 usage();
491
492 /* Open the input file. */
493 if (argn < argc) {
494 if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) {
495 fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
496 exit(EXIT_FAILURE);
497 }
498 } else {
499 /* default input file is stdin */
DRCe5eaf372014-05-09 18:00:32 +0000500#ifdef USE_SETMODE /* need to hack file mode? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000501 setmode(fileno(stdin), O_BINARY);
502#endif
DRCe5eaf372014-05-09 18:00:32 +0000503#ifdef USE_FDOPEN /* need to re-open in binary mode? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000504 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
505 fprintf(stderr, "%s: can't open stdin\n", progname);
506 exit(EXIT_FAILURE);
507 }
508#else
509 infile = stdin;
510#endif
511 }
512
513 /* Open the output file. */
514#ifdef TWO_FILE_COMMANDLINE
515 /* Must have explicit output file name */
DRC19c791c2018-03-08 10:55:20 -0600516 if (argn != argc - 2) {
517 fprintf(stderr, "%s: must name one input and one output file\n", progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000518 usage();
519 }
DRC19c791c2018-03-08 10:55:20 -0600520 if ((outfile = fopen(argv[argn + 1], WRITE_BINARY)) == NULL) {
521 fprintf(stderr, "%s: can't open %s\n", progname, argv[argn + 1]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000522 exit(EXIT_FAILURE);
523 }
524#else
525 /* Unix style: expect zero or one file name */
DRC19c791c2018-03-08 10:55:20 -0600526 if (argn < argc - 1) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000527 fprintf(stderr, "%s: only one input file\n", progname);
528 usage();
529 }
530 /* default output file is stdout */
DRCe5eaf372014-05-09 18:00:32 +0000531#ifdef USE_SETMODE /* need to hack file mode? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000532 setmode(fileno(stdout), O_BINARY);
533#endif
DRCe5eaf372014-05-09 18:00:32 +0000534#ifdef USE_FDOPEN /* need to re-open in binary mode? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000535 if ((outfile = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
536 fprintf(stderr, "%s: can't open stdout\n", progname);
537 exit(EXIT_FAILURE);
538 }
539#else
540 outfile = stdout;
541#endif
542#endif /* TWO_FILE_COMMANDLINE */
543
544 /* Collect comment text from comment_file or stdin, if necessary */
545 if (comment_arg == NULL) {
DRCbd498032016-02-19 08:53:33 -0600546 FILE *src_file;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000547 int c;
548
DRC19c791c2018-03-08 10:55:20 -0600549 comment_arg = (char *)malloc((size_t)MAX_COM_LENGTH);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000550 if (comment_arg == NULL)
551 ERREXIT("Insufficient memory");
552 comment_length = 0;
553 src_file = (comment_file != NULL ? comment_file : stdin);
554 while ((c = getc(src_file)) != EOF) {
DRC19c791c2018-03-08 10:55:20 -0600555 if (comment_length >= (unsigned int)MAX_COM_LENGTH) {
DRCe5eaf372014-05-09 18:00:32 +0000556 fprintf(stderr, "Comment text may not exceed %u bytes\n",
DRC19c791c2018-03-08 10:55:20 -0600557 (unsigned int)MAX_COM_LENGTH);
DRCe5eaf372014-05-09 18:00:32 +0000558 exit(EXIT_FAILURE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000559 }
DRC19c791c2018-03-08 10:55:20 -0600560 comment_arg[comment_length++] = (char)c;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000561 }
562 if (comment_file != NULL)
563 fclose(comment_file);
564 }
565
566 /* Copy JPEG headers until SOFn marker;
567 * we will insert the new comment marker just before SOFn.
568 * This (a) causes the new comment to appear after, rather than before,
569 * existing comments; and (b) ensures that comments come after any JFIF
570 * or JFXX markers, as required by the JFIF specification.
571 */
572 marker = scan_JPEG_header(keep_COM);
573 /* Insert the new COM marker, but only if nonempty text has been supplied */
574 if (comment_length > 0) {
575 write_marker(M_COM);
576 write_2_bytes(comment_length + 2);
577 while (comment_length > 0) {
578 write_1_byte(*comment_arg++);
579 comment_length--;
580 }
581 }
582 /* Duplicate the remainder of the source file.
luzpaz43c58ff2018-07-31 21:59:16 +0000583 * Note that any COM markers occurring after SOF will not be touched.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000584 */
585 write_marker(marker);
586 copy_rest_of_file();
587
588 /* All done. */
589 exit(EXIT_SUCCESS);
DRCe5eaf372014-05-09 18:00:32 +0000590 return 0; /* suppress no-return-value warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000591}