1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
/******************************************************************************
* main.c
*
* pdfresurrect - PDF history extraction tool
* https://github.com/enferex/pdfresurrect
*
* See https://github.com/enferex/pdfresurrect/blob/master/LICENSE for license
* information.
* SPDX-License-Identifier: BSD-3-Clause
*
* Special thanks to all of the contributors: See AUTHORS.
* Special thanks to 757labs (757 crew), they are a great group
* of people to hack on projects and brainstorm with.
*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "main.h"
#include "pdf.h"
static void usage(void)
{
printf("-- " EXEC_NAME " v" VER" --\n"
"Usage: ./" EXEC_NAME " <file.pdf> [-i] [-w] [-q]\n"
"\t -i Display PDF creator information\n"
"\t -w Write the PDF versions and summary to disk\n"
"\t -q Display only the number of versions contained in the PDF\n");
// Experimental feature:
// "\t -s Scrub the previous history data from the specified PDF\n");
exit(0);
}
static void write_version(
FILE *fp,
const char *fname,
const char *dirname,
xref_t *xref)
{
long start;
char *c, *new_fname, data;
FILE *new_fp;
start = ftell(fp);
/* Create file */
if ((c = strstr(fname, ".pdf")))
*c = '\0';
new_fname = safe_calloc(strlen(fname) + strlen(dirname) + 32);
snprintf(new_fname, strlen(fname) + strlen(dirname) + 32,
"%s/%s-version-%d.pdf", dirname, fname, xref->version);
if (!(new_fp = fopen(new_fname, "w")))
{
ERR("Could not create file '%s'\n", new_fname);
fseek(fp, start, SEEK_SET);
free(new_fname);
return;
}
/* Copy original PDF */
fseek(fp, 0, SEEK_SET);
while (fread(&data, 1, 1, fp))
fwrite(&data, 1, 1, new_fp);
/* Emit an older startxref, referring to an older version. */
fprintf(new_fp, "\r\nstartxref\r\n%ld\r\n%%%%EOF", xref->start);
/* Clean */
fclose(new_fp);
free(new_fname);
fseek(fp, start, SEEK_SET);
}
#ifdef PDFRESURRECT_EXPERIMENTAL
static void scrub_document(FILE *fp, const pdf_t *pdf)
{
FILE *new_fp;
int ch, i, j, last_version ;
char *new_name, *c;
const char *suffix = "-scrubbed.pdf";
printf("The scrub feature (-s) is experimental and likely not to work as "
"expected.\n");
/* Create a new name */
if (!(new_name = malloc(strlen(pdf->name) + strlen(suffix) + 1)))
{
ERR("Insufficient memory to create scrubbed file name\n");
return;
}
strcpy(new_name, pdf->name);
if ((c = strrchr(new_name, '.')))
*c = '\0';
strcat(new_name, suffix);
if ((new_fp = fopen(new_name, "r")))
{
ERR("File name already exists for saving scrubbed document\n");
free(new_name);
fclose(new_fp);
return;
}
if (!(new_fp = fopen(new_name, "w+")))
{
ERR("Could not create file for saving scrubbed document\n");
free(new_name);
fclose(new_fp);
return;
}
/* Copy */
fseek(fp, SEEK_SET, 0);
while ((ch = fgetc(fp)) != EOF)
fputc(ch, new_fp);
/* Find last version (don't zero these baddies) */
last_version = 0;
for (i=0; i<pdf->n_xrefs; i++)
if (pdf->xrefs[i].version)
last_version = pdf->xrefs[i].version;
/* Zero mod objects from all but the most recent version
* Zero del objects from all versions
*/
fseek(new_fp, 0, SEEK_SET);
for (i=0; i<pdf->n_xrefs; i++)
{
for (j=0; j<pdf->xrefs[i].n_entries; j++)
if (!pdf->xrefs[i].entries[j].obj_id)
continue;
else
{
switch (pdf_get_object_status(pdf, i, j))
{
case 'M':
if (pdf->xrefs[i].version != last_version)
pdf_zero_object(new_fp, pdf, i, j);
break;
case 'D':
pdf_zero_object(new_fp, pdf, i, j);
break;
default:
break;
}
}
}
/* Clean */
free(new_name);
fclose(new_fp);
}
#endif // PDFRESURRECT_EXPERIMENTAL
static void display_creator(FILE *fp, const pdf_t *pdf)
{
int i;
printf("PDF Version: %d.%d\n",
pdf->pdf_major_version, pdf->pdf_minor_version);
for (i=0; i<pdf->n_xrefs; ++i)
{
if (!pdf->xrefs[i].version)
continue;
if (pdf_display_creator(pdf, i))
printf("\n");
}
}
static pdf_t *init_pdf(FILE *fp, const char *name)
{
pdf_t *pdf;
pdf = pdf_new(name);
pdf_get_version(fp, pdf);
if (pdf_load_xrefs(fp, pdf) == -1) {
pdf_delete(pdf);
return NULL;
}
return pdf;
}
void *safe_calloc(size_t size) {
void *addr;
if (!size)
{
ERR("Invalid allocation size.\n");
exit(EXIT_FAILURE);
}
if (!(addr = calloc(1, size)))
{
ERR("Failed to allocate requested number of bytes, out of memory?\n");
exit(EXIT_FAILURE);
}
return addr;
}
int main(int argc, char **argv)
{
int i, n_valid, do_write, do_scrub;
char *c, *dname, *name;
DIR *dir;
FILE *fp;
pdf_t *pdf;
pdf_flag_t flags;
if (argc < 2)
usage();
/* Args */
do_write = do_scrub = flags = 0;
name = NULL;
for (i=1; i<argc; i++)
{
if (strncmp(argv[i], "-w", 2) == 0)
do_write = 1;
else if (strncmp(argv[i], "-i", 2) == 0)
flags |= PDF_FLAG_DISP_CREATOR;
else if (strncmp(argv[i], "-q", 2) == 0)
flags |= PDF_FLAG_QUIET;
#ifdef PDFRESURRECT_EXPERIMENTAL
else if (strncmp(argv[i], "-s", 2) == 0)
do_scrub = 1;
#endif
else if (argv[i][0] != '-')
name = argv[i];
else if (argv[i][0] == '-')
usage();
}
if (!name)
usage();
if (!(fp = fopen(name, "r")))
{
ERR("Could not open file '%s'\n", argv[1]);
return -1;
}
else if (!pdf_is_pdf(fp))
{
ERR("'%s' specified is not a valid PDF\n", name);
fclose(fp);
return -1;
}
/* Load PDF */
if (!(pdf = init_pdf(fp, name)))
{
fclose(fp);
return -1;
}
/* Count valid xrefs */
for (i=0, n_valid=0; i<pdf->n_xrefs; i++)
if (pdf->xrefs[i].version)
++n_valid;
/* Bail if we only have 1 valid */
if (n_valid < 2)
{
if (!(flags & (PDF_FLAG_QUIET | PDF_FLAG_DISP_CREATOR)))
printf("%s: There is only one version of this PDF\n", pdf->name);
if (do_write)
{
fclose(fp);
pdf_delete(pdf);
return 0;
}
}
dname = NULL;
if (do_write)
{
/* Create directory to place the various versions in */
if ((c = strrchr(name, '/')))
name = c + 1;
if ((c = strrchr(name, '.')))
*c = '\0';
dname = safe_calloc(strlen(name) + 16);
sprintf(dname, "%s-versions", name);
if (!(dir = opendir(dname)))
mkdir(dname, S_IRWXU);
else
{
ERR("This directory already exists, PDF version extraction will "
"not occur.\n");
fclose(fp);
closedir(dir);
free(dname);
pdf_delete(pdf);
return -1;
}
/* Write the pdf as a previous version */
for (i=0; i<pdf->n_xrefs; i++)
if (pdf->xrefs[i].version)
write_version(fp, name, dname, &pdf->xrefs[i]);
}
/* Generate a per-object summary */
pdf_summarize(fp, pdf, dname, flags);
#ifdef PDFRESURRECT_EXPERIMENTAL
/* Have we been summoned to scrub history from this PDF */
if (do_scrub)
scrub_document(fp, pdf);
#endif
/* Display extra information */
if (flags & PDF_FLAG_DISP_CREATOR)
display_creator(fp, pdf);
fclose(fp);
free(dname);
pdf_delete(pdf);
return 0;
}
|