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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
// Copyright (C) 2004-2021 Artifex Software, Inc.
//
// This file is part of MuPDF.
//
// MuPDF is free software: you can redistribute it and/or modify it under the
// terms of the GNU Affero General Public License as published by the Free
// Software Foundation, either version 3 of the License, or (at your option)
// any later version.
//
// MuPDF is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
// details.
//
// You should have received a copy of the GNU Affero General Public License
// along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
//
// Alternative licensing terms are available from the licensor.
// For commercial licensing, see <https://www.artifex.com/> or contact
// Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
// CA 94129, USA, for further information.
#include "mupdf/fitz.h"
#include "mupdf/pdf.h"
#include <string.h>
/*
* CMap parser
*/
static int
is_keyword(pdf_token tok, pdf_lexbuf *buf, const char *word)
{
/* Ignore trailing garbage when matching keywords */
return (tok == PDF_TOK_KEYWORD && !strncmp(buf->scratch, word, strlen(word)));
}
static void
skip_to_keyword(fz_context *ctx, fz_stream *file, pdf_lexbuf *buf, const char *end, const char *warn)
{
fz_warn(ctx, "%s", warn);
for (;;)
{
pdf_token tok = pdf_lex(ctx, file, buf);
if (is_keyword(tok, buf, end))
return;
if (tok == PDF_TOK_ERROR)
return;
if (tok == PDF_TOK_EOF)
return;
}
}
static void
skip_to_token(fz_context *ctx, fz_stream *file, pdf_lexbuf *buf, pdf_token end, const char *warn)
{
fz_warn(ctx, "%s", warn);
for (;;)
{
pdf_token tok = pdf_lex(ctx, file, buf);
if (tok == end)
return;
if (tok == PDF_TOK_ERROR)
return;
if (tok == PDF_TOK_EOF)
return;
}
}
static int
pdf_code_from_string(char *buf, size_t len)
{
unsigned int a = 0;
while (len--)
a = (a << 8) | *(unsigned char *)buf++;
return a;
}
static void
pdf_parse_cmap_name(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
tok = pdf_lex(ctx, file, buf);
if (tok == PDF_TOK_NAME)
fz_strlcpy(cmap->cmap_name, buf->scratch, sizeof(cmap->cmap_name));
else
fz_warn(ctx, "expected name after CMapName in cmap");
}
static void
pdf_parse_wmode(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
tok = pdf_lex(ctx, file, buf);
if (tok == PDF_TOK_INT)
pdf_set_cmap_wmode(ctx, cmap, buf->i);
else
fz_warn(ctx, "expected integer after WMode in cmap");
}
static void
pdf_parse_codespace_range(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
int lo, hi;
while (1)
{
tok = pdf_lex(ctx, file, buf);
if (is_keyword(tok, buf, "endcodespacerange"))
return;
else if (tok == PDF_TOK_STRING)
{
lo = pdf_code_from_string(buf->scratch, buf->len);
tok = pdf_lex(ctx, file, buf);
if (tok == PDF_TOK_STRING)
{
hi = pdf_code_from_string(buf->scratch, buf->len);
pdf_add_codespace(ctx, cmap, lo, hi, buf->len);
}
else
{
skip_to_keyword(ctx, file, buf, "endcodespacerange", "expected string or endcodespacerange");
return;
}
}
else
{
skip_to_keyword(ctx, file, buf, "endcodespacerange", "expected string or endcodespacerange");
return;
}
}
}
static void
pdf_parse_cid_range(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
int lo, hi, dst;
while (1)
{
tok = pdf_lex(ctx, file, buf);
if (is_keyword(tok, buf, "endcidrange"))
return;
else if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endcidrange", "expected string or endcidrange");
return;
}
lo = pdf_code_from_string(buf->scratch, buf->len);
tok = pdf_lex(ctx, file, buf);
if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endcidrange", "expected string");
return;
}
hi = pdf_code_from_string(buf->scratch, buf->len);
tok = pdf_lex(ctx, file, buf);
if (tok != PDF_TOK_INT)
{
skip_to_keyword(ctx, file, buf, "endcidrange", "expected integer");
return;
}
dst = buf->i;
pdf_map_range_to_range(ctx, cmap, lo, hi, dst);
}
}
static void
pdf_parse_cid_char(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
int src, dst;
while (1)
{
tok = pdf_lex(ctx, file, buf);
if (is_keyword(tok, buf, "endcidchar"))
return;
else if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endcidchar", "expected string or endcidchar");
return;
}
src = pdf_code_from_string(buf->scratch, buf->len);
tok = pdf_lex(ctx, file, buf);
if (tok != PDF_TOK_INT)
{
skip_to_keyword(ctx, file, buf, "endcidchar", "expected integer");
return;
}
dst = buf->i;
pdf_map_range_to_range(ctx, cmap, src, src, dst);
}
}
static void
pdf_parse_bf_range_array(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf, int lo, int hi)
{
pdf_token tok;
int dst[256];
while (1)
{
tok = pdf_lex(ctx, file, buf);
if (tok == PDF_TOK_CLOSE_ARRAY)
return;
/* Note: does not handle [ /Name /Name ... ] */
else if (tok != PDF_TOK_STRING)
{
skip_to_token(ctx, file, buf, PDF_TOK_CLOSE_ARRAY, "expected string or ]");
return;
}
if (buf->len / 2)
{
size_t i;
size_t len = fz_minz(buf->len / 2, nelem(dst));
for (i = 0; i < len; i++)
dst[i] = pdf_code_from_string(&buf->scratch[i * 2], 2);
pdf_map_one_to_many(ctx, cmap, lo, dst, i);
}
lo ++;
}
}
static void
pdf_parse_bf_range(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
int lo, hi, dst;
while (1)
{
tok = pdf_lex(ctx, file, buf);
if (is_keyword(tok, buf, "endbfrange"))
return;
else if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endbfrange", "expected string or endbfrange");
return;
}
lo = pdf_code_from_string(buf->scratch, buf->len);
tok = pdf_lex(ctx, file, buf);
if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endbfrange", "expected string");
return;
}
hi = pdf_code_from_string(buf->scratch, buf->len);
if (lo < 0 || lo > 65535 || hi < 0 || hi > 65535 || lo > hi)
{
skip_to_keyword(ctx, file, buf, "endbfrange", "bfrange limits out of range");
return;
}
tok = pdf_lex(ctx, file, buf);
if (tok == PDF_TOK_STRING)
{
if (buf->len == 2)
{
dst = pdf_code_from_string(buf->scratch, buf->len);
pdf_map_range_to_range(ctx, cmap, lo, hi, dst);
}
else
{
int dststr[256];
size_t i;
if (buf->len / 2)
{
size_t len = fz_minz(buf->len / 2, nelem(dststr));
for (i = 0; i < len; i++)
dststr[i] = pdf_code_from_string(&buf->scratch[i * 2], 2);
while (lo <= hi)
{
pdf_map_one_to_many(ctx, cmap, lo, dststr, i);
dststr[i-1] ++;
lo ++;
}
}
}
}
else if (tok == PDF_TOK_OPEN_ARRAY)
{
pdf_parse_bf_range_array(ctx, cmap, file, buf, lo, hi);
}
else
{
skip_to_keyword(ctx, file, buf, "endbfrange", "expected string or array or endbfrange");
return;
}
}
}
static void
pdf_parse_bf_char(fz_context *ctx, pdf_cmap *cmap, fz_stream *file, pdf_lexbuf *buf)
{
pdf_token tok;
int dst[256];
int src;
while (1)
{
tok = pdf_lex(ctx, file, buf);
if (is_keyword(tok, buf, "endbfchar"))
return;
else if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endbfchar", "expected string or endbfchar");
return;
}
src = pdf_code_from_string(buf->scratch, buf->len);
tok = pdf_lex(ctx, file, buf);
/* Note: does not handle /dstName */
if (tok != PDF_TOK_STRING)
{
skip_to_keyword(ctx, file, buf, "endbfchar", "expected string");
return;
}
if (buf->len / 2)
{
size_t i;
size_t len = fz_minz(buf->len / 2, nelem(dst));
for (i = 0; i < len; i++)
dst[i] = pdf_code_from_string(&buf->scratch[i * 2], 2);
pdf_map_one_to_many(ctx, cmap, src, dst, i);
}
}
}
pdf_cmap *
pdf_load_cmap(fz_context *ctx, fz_stream *file)
{
pdf_cmap *cmap;
char key[64];
pdf_lexbuf buf;
pdf_token tok;
pdf_lexbuf_init(ctx, &buf, PDF_LEXBUF_SMALL);
cmap = pdf_new_cmap(ctx);
strcpy(key, ".notdef");
fz_try(ctx)
{
while (1)
{
tok = pdf_lex(ctx, file, &buf);
if (tok == PDF_TOK_EOF)
break;
else if (tok == PDF_TOK_NAME)
{
if (!strcmp(buf.scratch, "CMapName"))
pdf_parse_cmap_name(ctx, cmap, file, &buf);
else if (!strcmp(buf.scratch, "WMode"))
pdf_parse_wmode(ctx, cmap, file, &buf);
else
fz_strlcpy(key, buf.scratch, sizeof key);
}
else if (tok == PDF_TOK_KEYWORD)
{
if (is_keyword(tok, &buf, "endcmap"))
break;
else if (is_keyword(tok, &buf, "usecmap"))
fz_strlcpy(cmap->usecmap_name, key, sizeof(cmap->usecmap_name));
else if (is_keyword(tok, &buf, "begincodespacerange"))
pdf_parse_codespace_range(ctx, cmap, file, &buf);
else if (is_keyword(tok, &buf, "beginbfchar"))
pdf_parse_bf_char(ctx, cmap, file, &buf);
else if (is_keyword(tok, &buf, "begincidchar"))
pdf_parse_cid_char(ctx, cmap, file, &buf);
else if (is_keyword(tok, &buf, "beginbfrange"))
pdf_parse_bf_range(ctx, cmap, file, &buf);
else if (is_keyword(tok, &buf, "begincidrange"))
pdf_parse_cid_range(ctx, cmap, file, &buf);
}
/* ignore everything else */
}
pdf_sort_cmap(ctx, cmap);
}
fz_always(ctx)
{
pdf_lexbuf_fin(ctx, &buf);
}
fz_catch(ctx)
{
pdf_drop_cmap(ctx, cmap);
fz_rethrow(ctx);
}
return cmap;
}
|