Coverage Report

Created: 2025-06-10 07:27

/src/ghostpdl/pdf/pdf_fontTT.c
Line
Count
Source (jump to first uncovered line)
1
/* Copyright (C) 2019-2025 Artifex Software, Inc.
2
   All Rights Reserved.
3
4
   This software is provided AS-IS with no warranty, either express or
5
   implied.
6
7
   This software is distributed under license and may not be copied,
8
   modified or distributed except as expressly authorized under the terms
9
   of the license contained in the file LICENSE in this distribution.
10
11
   Refer to licensing information at http://www.artifex.com or contact
12
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
13
   CA 94129, USA, for further information.
14
*/
15
16
/* code for TrueType font handling */
17
18
#include "pdf_int.h"
19
#include "pdf_font.h"
20
#include "pdf_fontTT.h"
21
#include "pdf_font1C.h" /* OTTO support */
22
#include "pdf_font_types.h"
23
#include "pdf_stack.h"
24
#include "pdf_file.h"
25
#include "pdf_dict.h"
26
#include "pdf_array.h"
27
#include "pdf_deref.h"
28
#include "gxfont42.h"
29
#include "gscencs.h"
30
#include "gsagl.h"
31
#include "gsutil.h"        /* For gs_next_ids() */
32
33
enum {
34
    CMAP_TABLE_NONE = 0,
35
    CMAP_TABLE_10_PRESENT = 1,
36
    CMAP_TABLE_30_PRESENT = 2,
37
    CMAP_TABLE_31_PRESENT = 4,
38
    CMAP_TABLE_310_PRESENT = 8
39
};
40
41
static int
42
pdfi_ttf_string_proc(gs_font_type42 * pfont, ulong offset, uint length, const byte ** pdata)
43
79.5M
{
44
79.5M
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
45
79.5M
    int code = 0;
46
47
79.5M
    if ((uint64_t)offset + length > ttfont->sfnt->length) {
48
862k
        *pdata = NULL;
49
862k
        code = gs_note_error(gs_error_invalidfont);
50
862k
    }
51
78.6M
    else {
52
78.6M
        *pdata = ttfont->sfnt->data + offset;
53
78.6M
    }
54
79.5M
    return code;
55
79.5M
}
56
57
static gs_glyph pdfi_ttf_encode_char(gs_font *pfont, gs_char chr, gs_glyph_space_t sp)
58
254k
{
59
254k
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
60
254k
    gs_glyph g = GS_NO_GLYPH;
61
254k
    uint ID;
62
254k
    int code;
63
64
254k
    if ((ttfont->descflags & 4) != 0 || sp == GLYPH_SPACE_INDEX) {
65
119k
        int code = pdfi_fapi_check_cmap_for_GID(pfont, (uint)chr, &ID);
66
119k
        if (code < 0 || ID == 0)
67
53.6k
            code = pdfi_fapi_check_cmap_for_GID(pfont, (uint)(chr | 0xf0 << 8), &ID);
68
119k
        g = (gs_glyph)ID;
69
119k
    }
70
134k
    else {
71
134k
        pdf_context *ctx = (pdf_context *)ttfont->ctx;
72
73
134k
        if (ttfont->Encoding != NULL) { /* safety */
74
134k
            pdf_name *GlyphName = NULL;
75
134k
            code = pdfi_array_get(ctx, ttfont->Encoding, (uint64_t)chr, (pdf_obj **)&GlyphName);
76
134k
            if (code >= 0) {
77
134k
                code = (*ctx->get_glyph_index)(pfont, (byte *)GlyphName->data, GlyphName->length, &ID);
78
134k
                pdfi_countdown(GlyphName);
79
134k
                if (code >= 0)
80
134k
                    g = (gs_glyph)ID;
81
134k
            }
82
134k
        }
83
134k
    }
84
85
254k
    return g;
86
254k
}
87
88
int pdfi_find_post_entry(gs_font_type42 *pfont, gs_const_string *gname, uint *cc)
89
752
{
90
752
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
91
752
    pdf_context *ctx = (pdf_context *)ttfont->ctx;
92
752
    int code = 0;
93
752
    if (ttfont->post != NULL) {
94
752
        pdf_name *name = NULL;
95
752
        pdf_num *n = NULL;
96
97
752
        code = pdfi_name_alloc(ctx, (byte *)gname->data, gname->size, (pdf_obj **)&name);
98
752
        if (code >= 0) {
99
752
            pdfi_countup(name);
100
752
            code = pdfi_dict_get_by_key(ctx, ttfont->post, name, (pdf_obj **)&n);
101
752
            if (code >= 0 && pdfi_type_of(n) == PDF_INT) {
102
17
                *cc = (uint)n->value.i;
103
17
            }
104
735
            else
105
735
              *cc = 0;
106
752
            pdfi_countdown(name);
107
752
            pdfi_countdown(n);
108
752
        }
109
752
    }
110
0
    else
111
0
        code = gs_error_VMerror;
112
113
752
    if (code == gs_error_VMerror){
114
0
        uint i;
115
0
        gs_string postname = {0};
116
117
0
        code = gs_error_undefined;
118
0
        if (pfont->data.numGlyphs > 0) { /* protect from corrupt font */
119
0
            for (i = 0; i < pfont->data.numGlyphs; i++) {
120
0
                code = gs_type42_find_post_name(pfont, (gs_glyph)i, &postname);
121
0
                if (code >= 0) {
122
0
                    if (gname->data[0] == postname.data[0]
123
0
                        && gname->size == postname.size
124
0
                        && !strncmp((char *)gname->data, (char *)postname.data, postname.size))
125
0
                    {
126
0
                        *cc = i;
127
0
                        code = 0;
128
0
                        break;
129
0
                    }
130
0
                }
131
0
            }
132
0
        }
133
0
    }
134
752
    return code;
135
752
}
136
137
extern single_glyph_list_t SingleGlyphList[];
138
139
static uint pdfi_type42_get_glyph_index(gs_font_type42 *pfont, gs_glyph glyph)
140
0
{
141
0
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
142
0
    uint gind = 0;
143
0
    uint cc = 0;
144
0
    int i, code = 0;
145
146
0
    if ((ttfont->descflags & 4) != 0 || glyph >= GS_MIN_GLYPH_INDEX) {
147
0
        gind = (uint)glyph < GS_MIN_GLYPH_INDEX ? glyph : glyph - GS_MIN_GLYPH_INDEX;
148
0
    }
149
0
    else {
150
0
        pdf_context *ctx = (pdf_context *)ttfont->ctx;
151
0
        gs_const_string gname;
152
153
0
        code = (*ctx->get_glyph_name)((gs_font *)pfont, glyph, &gname);
154
0
        if (code < 0 || gname.data == NULL) {
155
0
            return (uint)glyph;
156
0
        }
157
0
        if (gname.size == 7 && gname.data[0] == '.' && strncmp((char *)gname.data, ".notdef", 7) == 0) {
158
0
            return 0; /* .notdef is GID 0, so short cut the rest of the function */
159
0
        }
160
161
0
        if (ttfont->cmap == pdfi_truetype_cmap_10) {
162
0
            gs_glyph g;
163
164
0
            g = gs_c_name_glyph((const byte *)gname.data, gname.size);
165
0
            if (g != GS_NO_GLYPH) {
166
0
                g = (gs_glyph)gs_c_decode(g, ENCODING_INDEX_MACROMAN);
167
0
            }
168
0
            else {
169
0
                g = GS_NO_CHAR;
170
0
            }
171
172
0
            if (g != GS_NO_CHAR) {
173
0
                code = pdfi_fapi_check_cmap_for_GID((gs_font *)pfont, (uint)g, &cc);
174
0
            }
175
176
0
            if (code < 0 || cc == 0) {
177
0
                code = pdfi_find_post_entry(pfont, &gname, &cc);
178
0
                if (code < 0) {
179
0
                    cc = 0;
180
0
                    code = 0;
181
0
                }
182
0
            }
183
0
        }
184
0
        else {
185
            /* In theory, this should be 3,1 cmap, but we have examples that use 0,1 or other
186
               Unicode "platform" cmap tables, so "hail mary" just try it
187
             */
188
0
            single_glyph_list_t *sgl = (single_glyph_list_t *)&(SingleGlyphList);
189
            /* Not to spec, but... if we get a "uni..." formatted name, use
190
               the hex value from that.
191
             */
192
0
            if (gname.size == 7 && !strncmp((char *)gname.data, "uni", 3)) {
193
0
                char gnbuf[64];
194
0
                int l = (gname.size - 3) > 63 ? 63 : gname.size - 3;
195
196
0
                memcpy(gnbuf, gname.data + 3, l);
197
0
                gnbuf[l] = '\0';
198
0
                l = sscanf(gnbuf, "%x", &gind);
199
0
                if (l > 0)
200
0
                    (void)pdfi_fapi_check_cmap_for_GID((gs_font *)pfont, (uint)gind, &cc);
201
0
                else
202
0
                    cc = 0;
203
0
            }
204
0
            else {
205
                /* Slow linear search */
206
0
                for (i = 0; sgl->Glyph != 0x00; i++) {
207
0
                    if (sgl->Glyph[0] == gname.data[0]
208
0
                        && strlen(sgl->Glyph) == gname.size
209
0
                        && !strncmp((char *)sgl->Glyph, (char *)gname.data, gname.size))
210
0
                        break;
211
0
                    sgl++;
212
0
                }
213
0
                if (sgl->Glyph != NULL) {
214
0
                    code = pdfi_fapi_check_cmap_for_GID((gs_font *)pfont, (uint)sgl->Unicode, &cc);
215
0
                    if (code < 0 || cc == 0)
216
0
                        cc = 0;
217
0
                }
218
0
                else
219
0
                    cc = 0;
220
221
0
                if (cc == 0) {
222
0
                    code = pdfi_find_post_entry(pfont, &gname, &cc);
223
0
                    if (code < 0) {
224
0
                        cc = (uint)glyph;
225
0
                        code = 0;
226
0
                    }
227
0
                }
228
0
            }
229
0
        }
230
0
        gind = cc;
231
0
    }
232
0
    return gind;
233
0
}
234
235
static int
236
pdfi_ttf_enumerate_glyph(gs_font *font, int *pindex, gs_glyph_space_t glyph_space, gs_glyph *pglyph)
237
0
{
238
0
    if (glyph_space == GLYPH_SPACE_INDEX) {
239
0
        return gs_type42_enumerate_glyph(font, pindex, glyph_space, pglyph);
240
0
    }
241
0
    else if (glyph_space == GLYPH_SPACE_NAME) {
242
0
        pdf_font_truetype *ttfont = (pdf_font_truetype *)font->client_data;
243
244
0
        if ((ttfont->descflags & 4) == 0) {
245
0
            if (*pindex <= 0) {
246
0
                *pindex = 0;
247
0
            }
248
0
            *pglyph = (*font->procs.encode_char)(font, (gs_char)*pindex, glyph_space);
249
0
            if (*pglyph == GS_NO_GLYPH)
250
0
                *pindex = 0;
251
0
            else
252
0
                (*pindex)++;
253
0
        }
254
0
    }
255
0
    else
256
0
        *pindex = 0;
257
0
    return 0;
258
0
}
259
260
static int pdfi_ttf_glyph_name(gs_font *pfont, gs_glyph glyph, gs_const_string * pstr)
261
0
{
262
0
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
263
0
    pdf_context *ctx = (pdf_context *)ttfont->ctx;
264
0
    uint ID = 0;
265
0
    int l, code = -1;
266
267
0
    if (glyph >= GS_MIN_CID_GLYPH) { /* Fabricate a numeric name. */
268
0
        char cid_name[sizeof(gs_glyph) * 3 + 1];
269
270
0
        l = gs_snprintf(cid_name, sizeof(cid_name), "%lu", (ulong) glyph);
271
        /* We need to create the entry in the name table... */
272
0
        code = (*ctx->get_glyph_index)(pfont, (byte *)cid_name, l, &ID);
273
0
        if (code < 0)
274
0
            return -1;
275
276
0
        code = (*ctx->get_glyph_name)(pfont, (gs_glyph)ID, pstr);
277
0
        if (code < 0)
278
0
            return -1; /* No name, trigger pdfwrite Type 3 fallback */
279
0
    } else {
280
0
        if ((ttfont->descflags & 4) != 0) {
281
0
            code = gs_type42_find_post_name((gs_font_type42 *)pfont, glyph, (gs_string *)pstr);
282
0
            if (code < 0) {
283
0
                char buf[64];
284
0
                l = gs_snprintf(buf, sizeof(buf), "~gs~gName~%04x", (uint)glyph);
285
0
                code = (*ctx->get_glyph_index)(pfont, (byte *)buf, l, &ID);
286
0
            }
287
0
            else {
288
0
                code = (*ctx->get_glyph_index)(pfont, (byte *)pstr->data, pstr->size, &ID);
289
0
            }
290
0
            if (code < 0)
291
0
                return -1; /* No name, trigger pdfwrite Type 3 fallback */
292
293
0
            code = (*ctx->get_glyph_name)(pfont, (gs_glyph)ID, pstr);
294
0
            if (code < 0)
295
0
                return -1; /* No name, trigger pdfwrite Type 3 fallback */
296
0
        }
297
0
        else {
298
0
            code = (*ctx->get_glyph_name)(pfont, glyph, pstr);
299
0
            if (code < 0)
300
0
                return -1; /* No name, trigger pdfwrite Type 3 fallback */
301
0
        }
302
0
    }
303
0
    return code;
304
305
0
}
306
307
static void pdfi_make_post_dict(gs_font_type42 *pfont)
308
929
{
309
929
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
310
929
    pdf_context *ctx = (pdf_context *)ttfont->ctx;
311
929
    int i, code = 0;
312
929
    if (ttfont->post == NULL && pfont->data.numGlyphs > 0) {
313
921
        code = pdfi_dict_alloc(ctx, pfont->data.numGlyphs, &ttfont->post);
314
921
        if (code < 0)
315
0
            return;
316
317
921
        pdfi_countup(ttfont->post);
318
319
809k
        for (i = 0; i < pfont->data.numGlyphs; i++) {
320
808k
            gs_string postname = {0};
321
808k
            pdf_name *key;
322
808k
            pdf_num *ind;
323
324
808k
            code = gs_type42_find_post_name(pfont, (gs_glyph)i, &postname);
325
808k
            if (code < 0) {
326
716k
                continue;
327
716k
            }
328
91.9k
            code = pdfi_name_alloc(ctx, postname.data, postname.size, (pdf_obj **)&key);
329
91.9k
            if (code < 0) {
330
0
               continue;
331
0
            }
332
91.9k
            pdfi_countup(key);
333
91.9k
            code = pdfi_object_alloc(ctx, PDF_INT, 0, (pdf_obj **)&ind);
334
91.9k
            if (code < 0) {
335
0
               pdfi_countdown(key);
336
0
               continue;
337
0
            }
338
91.9k
            pdfi_countup(ind);
339
91.9k
            ind->value.i = i;
340
91.9k
            (void)pdfi_dict_put_obj(ctx, ttfont->post, (pdf_obj *)key, (pdf_obj *)ind, false);
341
91.9k
            pdfi_countdown(key);
342
91.9k
            pdfi_countdown(ind);
343
91.9k
        }
344
921
    }
345
929
}
346
347
348
static int
349
pdfi_alloc_tt_font(pdf_context *ctx, pdf_font_truetype **font, bool is_cid)
350
1.76k
{
351
1.76k
    pdf_font_truetype *ttfont = NULL;
352
1.76k
    gs_font_type42 *pfont = NULL;
353
354
1.76k
    ttfont = (pdf_font_truetype *)gs_alloc_bytes(ctx->memory, sizeof(pdf_font_truetype), "pdfi (truetype pdf_font)");
355
1.76k
    if (ttfont == NULL)
356
0
        return_error(gs_error_VMerror);
357
358
1.76k
    memset(ttfont, 0x00, sizeof(pdf_font_truetype));
359
1.76k
    ttfont->type = PDF_FONT;
360
1.76k
    ttfont->ctx = ctx;
361
1.76k
    ttfont->pdfi_font_type = e_pdf_font_truetype;
362
363
#if REFCNT_DEBUG
364
    ttfont->UID = ctx->UID++;
365
    outprintf(ctx->memory, "Allocated object of type %c with UID %"PRIi64"\n", ttfont->type, ttfont->UID);
366
#endif
367
368
1.76k
    pdfi_countup(ttfont);
369
370
1.76k
    pfont = (gs_font_type42 *)gs_alloc_struct(ctx->memory, gs_font_type42, &st_gs_font_type42,
371
1.76k
                            "pdfi (truetype pfont)");
372
1.76k
    if (pfont == NULL) {
373
0
        pdfi_countdown(ttfont);
374
0
        return_error(gs_error_VMerror);
375
0
    }
376
1.76k
    memset(pfont, 0x00, sizeof(gs_font_type42));
377
378
1.76k
    ttfont->pfont = (gs_font_base *)pfont;
379
380
1.76k
    gs_make_identity(&pfont->orig_FontMatrix);
381
1.76k
    gs_make_identity(&pfont->FontMatrix);
382
1.76k
    pfont->next = pfont->prev = 0;
383
1.76k
    pfont->memory = ctx->memory;
384
1.76k
    pfont->dir = ctx->font_dir;
385
1.76k
    pfont->is_resource = false;
386
1.76k
    gs_notify_init(&pfont->notify_list, ctx->memory);
387
1.76k
    pfont->base = (gs_font *) ttfont->pfont;
388
1.76k
    pfont->client_data = ttfont;
389
1.76k
    pfont->WMode = 0;
390
1.76k
    pfont->PaintType = 0;
391
1.76k
    pfont->StrokeWidth = 0;
392
1.76k
    pfont->is_cached = 0;
393
1.76k
    pfont->FAPI = NULL;
394
1.76k
    pfont->FAPI_font_data = NULL;
395
1.76k
    pfont->procs.init_fstack = gs_default_init_fstack;
396
1.76k
    pfont->procs.next_char_glyph = gs_default_next_char_glyph;
397
1.76k
    pfont->FontType = ft_TrueType;
398
1.76k
    pfont->ExactSize = fbit_use_outlines;
399
1.76k
    pfont->InBetweenSize = fbit_use_outlines;
400
1.76k
    pfont->TransformedChar = fbit_use_outlines;
401
    /* We may want to do something clever with an XUID here */
402
1.76k
    pfont->id = gs_next_ids(ctx->memory, 1);
403
1.76k
    uid_set_UniqueID(&pfont->UID, pfont->id);
404
    /* The buildchar proc will be filled in by FAPI -
405
       we won't worry about working without FAPI */
406
1.76k
    pfont->procs.encode_char = pdfi_ttf_encode_char;
407
1.76k
    pfont->data.string_proc = pdfi_ttf_string_proc;
408
1.76k
    pfont->procs.glyph_name = pdfi_ttf_glyph_name;
409
1.76k
    pfont->procs.decode_glyph = pdfi_decode_glyph;
410
1.76k
    pfont->procs.define_font = gs_no_define_font;
411
1.76k
    pfont->procs.make_font = gs_no_make_font;
412
413
1.76k
    ttfont->default_font_info = gs_default_font_info;
414
1.76k
    pfont->procs.font_info = pdfi_default_font_info;
415
416
1.76k
    pfont->procs.glyph_info = gs_default_glyph_info;
417
1.76k
    pfont->procs.glyph_outline = gs_no_glyph_outline;
418
1.76k
    pfont->procs.build_char = NULL;
419
1.76k
    pfont->procs.same_font = gs_default_same_font;
420
1.76k
    pfont->procs.enumerate_glyph = gs_no_enumerate_glyph;
421
422
1.76k
    pfont->encoding_index = ENCODING_INDEX_UNKNOWN;
423
1.76k
    pfont->nearest_encoding_index = ENCODING_INDEX_UNKNOWN;
424
425
1.76k
    pfont->client_data = (void *)ttfont;
426
427
1.76k
    *font = ttfont;
428
1.76k
    return 0;
429
1.76k
}
430
431
static void pdfi_set_type42_custom_procs(pdf_font_truetype *pdfttfont)
432
936
{
433
936
    gs_font_type42 *pfont = (gs_font_type42 *)pdfttfont->pfont;
434
435
936
    pdfttfont->default_font_info = pfont->procs.font_info;
436
936
    pfont->procs.font_info = pdfi_default_font_info;
437
936
    pfont->data.get_glyph_index = pdfi_type42_get_glyph_index;
438
936
    pfont->procs.enumerate_glyph = pdfi_ttf_enumerate_glyph;
439
936
}
440
441
int pdfi_read_truetype_font(pdf_context *ctx, pdf_dict *font_dict, pdf_dict *stream_dict, pdf_dict *page_dict, byte *buf, int64_t buflen, int findex, pdf_font **ppdffont)
442
1.36k
{
443
1.36k
    pdf_font_truetype *font = NULL;
444
1.36k
    int code = 0, i;
445
1.36k
    pdf_obj *fontdesc = NULL;
446
1.36k
    pdf_obj *obj = NULL;
447
1.36k
    pdf_obj *basefont = NULL;
448
1.36k
    int64_t descflags;
449
1.36k
    bool encoding_known = false;
450
1.36k
    bool forced_symbolic = false;
451
1.36k
    pdf_obj *tounicode = NULL;
452
453
1.36k
    if (ppdffont == NULL)
454
0
        return_error(gs_error_invalidaccess);
455
456
1.36k
    *ppdffont = NULL;
457
458
1.36k
    if (font_dict != NULL)
459
1.36k
        (void)pdfi_dict_knownget_type(ctx, font_dict, "FontDescriptor", PDF_DICT, &fontdesc);
460
461
1.36k
    if ((code = pdfi_alloc_tt_font(ctx, &font, false)) < 0) {
462
0
        code = gs_note_error(gs_error_invalidfont);
463
0
        goto error;
464
0
    }
465
1.36k
    if (font_dict != NULL) {
466
1.36k
        font->object_num = font_dict->object_num;
467
1.36k
        font->generation_num = font_dict->generation_num;
468
1.36k
        font->indirect_num = font_dict->indirect_num;
469
1.36k
        font->indirect_gen = font_dict->indirect_gen;
470
1.36k
    }
471
472
1.36k
    font->FontDescriptor = (pdf_dict *)fontdesc;
473
1.36k
    fontdesc = NULL;
474
475
1.36k
    pdfi_font_set_first_last_char(ctx, font_dict, (pdf_font *)font);
476
477
1.36k
    code = pdfi_object_alloc(ctx, PDF_BUFFER, 0, (pdf_obj **)&font->sfnt);
478
1.36k
    if (code < 0) {
479
0
        goto error;
480
0
    }
481
1.36k
    pdfi_countup(font->sfnt);
482
1.36k
    code = pdfi_buffer_set_data((pdf_obj *)font->sfnt, buf, buflen);
483
1.36k
    if (code < 0) {
484
0
        goto error;
485
0
    }
486
1.36k
    buf = NULL;
487
488
    /* Strictly speaking BaseFont is required, but we can continue without one */
489
1.36k
    if (font_dict != NULL) {
490
1.36k
        code = pdfi_dict_knownget_type(ctx, font_dict, "BaseFont", PDF_NAME, (pdf_obj **)&basefont);
491
1.36k
        if (code > 0) {
492
1.31k
            pdf_name *nobj = (pdf_name *)basefont;
493
1.31k
            int nlen = nobj->length > gs_font_name_max ? gs_font_name_max : nobj->length;
494
495
1.31k
            memcpy(font->pfont->key_name.chars, nobj->data, nlen);
496
1.31k
            font->pfont->key_name.chars[nlen] = 0;
497
1.31k
            font->pfont->key_name.size = nlen;
498
1.31k
            memcpy(font->pfont->font_name.chars, nobj->data, nlen);
499
1.31k
            font->pfont->font_name.chars[nlen] = 0;
500
1.31k
            font->pfont->font_name.size = nlen;
501
1.31k
            pdfi_countdown(obj);
502
1.31k
            obj = NULL;
503
1.31k
        }
504
1.36k
    }
505
1.36k
    font->BaseFont = basefont;
506
1.36k
    basefont = NULL;
507
1.36k
    font->PDF_font = font_dict;
508
1.36k
    pdfi_countup(font_dict);
509
510
    /* ignore errors with widths... for now */
511
1.36k
    if (font_dict != NULL)
512
1.36k
        (void)pdfi_font_create_widths(ctx, font_dict, (pdf_font*)font, 0.001);
513
514
1.36k
    if (ctx->args.ignoretounicode != true && font_dict != NULL) {
515
1.36k
        code = pdfi_dict_get(ctx, font_dict, "ToUnicode", (pdf_obj **)&tounicode);
516
1.36k
        if (code >= 0 && pdfi_type_of(tounicode) == PDF_STREAM) {
517
636
            pdf_cmap *tu = NULL;
518
636
            code = pdfi_read_cmap(ctx, tounicode, &tu);
519
636
            pdfi_countdown(tounicode);
520
636
            tounicode = (pdf_obj *)tu;
521
636
        }
522
1.36k
        if (code < 0 || (tounicode != NULL && pdfi_type_of(tounicode) != PDF_CMAP)) {
523
719
            pdfi_countdown(tounicode);
524
719
            tounicode = NULL;
525
719
            code = 0;
526
719
        }
527
1.36k
    }
528
0
    else {
529
0
        tounicode = NULL;
530
0
    }
531
1.36k
    font->ToUnicode = tounicode;
532
1.36k
    tounicode = NULL;
533
534
1.36k
    if (font->FontDescriptor != NULL) {
535
1.36k
        code = pdfi_dict_get_int(ctx, font->FontDescriptor, "Flags", &descflags);
536
1.36k
        if (code < 0)
537
1
            descflags = 0;
538
1.36k
    }
539
0
    else {
540
0
        descflags = 0;
541
0
    }
542
543
1.36k
    if (font_dict != NULL)
544
1.36k
        code = pdfi_dict_get(ctx, font_dict, "Encoding", &obj);
545
0
    else
546
0
        code = gs_error_undefined;
547
548
1.36k
    if (code < 0) {
549
400
        static const char encstr[] = "WinAnsiEncoding";
550
400
        code = pdfi_name_alloc(ctx, (byte *)encstr, strlen(encstr), (pdf_obj **)&obj);
551
400
        if (code >= 0)
552
400
            pdfi_countup(obj);
553
0
        else
554
0
            goto error;
555
400
    }
556
960
    else {
557
960
        encoding_known = true;
558
        /* If we have and encoding, and both the symbolic and non-symbolic flag are set,
559
           believe that latter.
560
         */
561
960
        if ((descflags & 32) != 0)
562
926
            descflags = (descflags & ~4);
563
960
    }
564
565
1.36k
    if ((forced_symbolic = pdfi_font_known_symbolic(font->BaseFont)) == true) {
566
0
        descflags |= 4;
567
0
    }
568
569
1.36k
    code = pdfi_create_Encoding(ctx, (pdf_font *)font, obj, NULL, (pdf_obj **)&font->Encoding);
570
    /* If we get an error, and the font is non-symbolic, return the error */
571
1.36k
    if (code < 0 && (descflags & 4) == 0)
572
3
        goto error;
573
    /* If we get an error, and the font is symbolic, pretend we never saw an /Encoding */
574
1.35k
    if (code < 0)
575
1
        encoding_known = false;
576
1.35k
    pdfi_countdown(obj);
577
1.35k
    obj = NULL;
578
579
1.35k
    code = gs_type42_font_init((gs_font_type42 *)font->pfont, 0);
580
1.35k
    if (code < 0) {
581
421
        goto error;
582
421
    }
583
584
936
    pdfi_set_type42_custom_procs(font);
585
586
    /* We're probably dead in the water without cmap tables, but make sure, for safety */
587
    /* This is a horrendous morass of guesses at what Acrobat does with files that contravene
588
       what the spec says about symbolic fonts, cmap tables and encodings.
589
     */
590
936
    if (forced_symbolic != true && (descflags & 4) != 0 && ((gs_font_type42 *)font->pfont)->data.cmap != 0) {
591
297
        gs_font_type42 *t42f = (gs_font_type42 *)font->pfont;
592
297
        int numcmaps;
593
297
        int cmaps_available = CMAP_TABLE_NONE;
594
297
        const byte *d;
595
297
        code = (*t42f->data.string_proc)(t42f, t42f->data.cmap + 2, 2, &d);
596
297
        if (code < 0)
597
0
            goto error;
598
297
        numcmaps = d[1] | d[0] << 8;
599
4.97k
        for (i = 0; i < numcmaps; i++) {
600
4.68k
            code = (*t42f->data.string_proc)(t42f, t42f->data.cmap + 4 + i * 8, 4, &d);
601
4.68k
            if (code < 0)
602
7
                goto error;
603
5.02k
#define CMAP_PLAT_ENC_ID(a,b,c,d) (a << 24 | b << 16 | c << 8 | d)
604
4.67k
            switch(CMAP_PLAT_ENC_ID(d[0], d[1], d[2], d[3])) {
605
262
                case CMAP_PLAT_ENC_ID(0, 1, 0, 0):
606
262
                    cmaps_available |= CMAP_TABLE_10_PRESENT;
607
262
                    break;
608
78
                case CMAP_PLAT_ENC_ID(0, 3, 0, 0):
609
78
                    cmaps_available |= CMAP_TABLE_30_PRESENT;
610
78
                    break;
611
9
                case CMAP_PLAT_ENC_ID(0, 3, 0, 1):
612
9
                    cmaps_available |= CMAP_TABLE_31_PRESENT;
613
9
                    break;
614
0
                case CMAP_PLAT_ENC_ID(0, 3, 1, 0):
615
0
                    cmaps_available |= CMAP_TABLE_310_PRESENT;
616
0
                    break;
617
4.32k
                default: /* Not one we're interested in */
618
4.32k
                    break;
619
4.67k
            }
620
4.67k
        }
621
290
#undef CMAP_PLAT_ENC_ID
622
290
        if ((cmaps_available & CMAP_TABLE_30_PRESENT) == CMAP_TABLE_30_PRESENT) {
623
78
            font->descflags = descflags;
624
78
        }
625
212
        else if (encoding_known == true) {
626
5
            static const char mrencstr[] = "MacRomanEncoding";
627
5
            static const char waencstr[] = "WinAnsiEncoding";
628
5
            const char *encstr = ((cmaps_available & CMAP_TABLE_31_PRESENT) == CMAP_TABLE_31_PRESENT) ? waencstr : mrencstr;
629
5
            font->descflags = descflags & ~4;
630
5
            code = pdfi_name_alloc(ctx, (byte *)encstr, strlen(encstr), (pdf_obj **)&obj);
631
5
            if (code >= 0)
632
5
                pdfi_countup(obj);
633
0
            else
634
0
                goto error;
635
5
            pdfi_countdown(font->Encoding);
636
5
            code = pdfi_create_Encoding(ctx, (pdf_font *)font, obj, NULL, (pdf_obj **)&font->Encoding);
637
5
            if (code < 0)
638
0
                goto error;
639
5
            pdfi_countdown(obj);
640
5
            obj = NULL;
641
5
        }
642
207
        else
643
207
            font->descflags = descflags;
644
290
    }
645
639
    else {
646
639
        font->descflags = descflags;
647
639
    }
648
649
929
    if (uid_is_XUID(&font->pfont->UID))
650
929
        uid_free(&font->pfont->UID, font->pfont->memory, "pdfi_read_type1_font");
651
929
    uid_set_invalid(&font->pfont->UID);
652
653
929
    code = pdfi_font_generate_pseudo_XUID(ctx, font_dict, font->pfont);
654
929
    if (code < 0) {
655
0
        goto error;
656
0
    }
657
658
929
    if ((font->descflags & 4) == 0) {
659
        /* Horrid hacky solution */
660
        /* We don't want to draw the TTF notdef */
661
643
        gs_font_type42 *gst42 = ((gs_font_type42 *)font->pfont);
662
643
        if (gst42->data.len_glyphs != NULL && gst42->data.len_glyphs[0] > 10) {
663
506
            gst42->data.len_glyphs[0] = 0;
664
506
        }
665
643
    }
666
667
929
    pdfi_make_post_dict((gs_font_type42 *)font->pfont);
668
669
929
    pdfi_font_set_orig_fonttype(ctx, (pdf_font *)font);
670
929
    code = gs_definefont(ctx->font_dir, (gs_font *)font->pfont);
671
929
    if (code < 0) {
672
0
        goto error;
673
0
    }
674
675
929
    code = pdfi_fapi_passfont((pdf_font *)font, 0, NULL, NULL, font->sfnt->data, font->sfnt->length);
676
929
    if (code < 0) {
677
36
        goto error;
678
36
    }
679
680
    /* object_num can be zero if the dictionary was defined inline */
681
893
    if (font->object_num != 0) {
682
875
        (void)replace_cache_entry(ctx, (pdf_obj *)font);
683
875
    }
684
685
893
    *ppdffont = (pdf_font *)font;
686
893
    return code;
687
467
error:
688
467
    pdfi_countdown(obj);
689
467
    obj = NULL;
690
467
    if (font_dict != NULL) {
691
467
        if (pdfi_dict_get(ctx, font_dict, ".Path", &obj) >= 0)
692
0
        {
693
0
            char fname[gp_file_name_sizeof + 1];
694
0
            pdf_string *fobj = (pdf_string *)obj;
695
696
0
            memcpy(fname, fobj->data, fobj->length > gp_file_name_sizeof ? gp_file_name_sizeof : fobj->length);
697
0
            fname[fobj->length > gp_file_name_sizeof ? gp_file_name_sizeof : fobj->length] = '\0';
698
699
0
            (void)pdfi_set_error_var(ctx, code, NULL, E_PDF_BADSTREAM, "pdfi_read_truetype_font", "Error reading TrueType font file %s\n", fname);
700
0
        }
701
467
        else {
702
467
            (void)pdfi_set_error_var(ctx, code, NULL, E_PDF_BADSTREAM, "pdfi_read_truetype_font", "Error reading embedded TrueType font object %u\n", font_dict->object_num);
703
467
        }
704
467
    }
705
0
    else {
706
0
        pdfi_set_error(ctx, code, NULL, E_PDF_BADSTREAM, "pdfi_read_truetype_font", "Error reading font\n");
707
0
    }
708
467
    if (buf != NULL)
709
0
        gs_free_object(ctx->memory, buf, "pdfi_read_truetype_font(buf)");
710
467
    pdfi_countdown(fontdesc);
711
467
    pdfi_countdown(basefont);
712
467
    pdfi_countdown(font);
713
467
    return code;
714
929
}
715
716
int
717
pdfi_copy_truetype_font(pdf_context *ctx, pdf_font *spdffont, pdf_dict *font_dict, pdf_font **tpdffont)
718
400
{
719
400
    int code = 0;
720
400
    pdf_font_truetype *font = NULL;
721
400
    gs_font_type42 *spfont1 = (gs_font_type42 *) spdffont->pfont;
722
400
    gs_font_type42 *dpfont42;
723
400
    gs_id t_id;
724
400
    pdf_obj *tmp;
725
726
400
    if (font_dict == NULL)
727
0
        return_error(gs_error_invalidfont);
728
729
400
    code = pdfi_alloc_tt_font(ctx, &font, font_dict->object_num);
730
400
    if (code < 0)
731
0
        return code;
732
400
    dpfont42 = (gs_font_type42 *) font->pfont;
733
734
400
    t_id = dpfont42->id;
735
400
    memcpy(dpfont42, spfont1, sizeof(gs_font_type42));
736
400
    dpfont42->id = t_id;
737
400
    dpfont42->FAPI = NULL;
738
400
    dpfont42->FAPI_font_data = NULL;
739
400
    dpfont42->notify_list.memory = NULL;
740
400
    dpfont42->notify_list.first = NULL;
741
400
    gs_notify_init(&dpfont42->notify_list, dpfont42->memory);
742
743
400
    memcpy(font, spdffont, sizeof(pdf_font_truetype));
744
400
    font->refcnt = 1;
745
400
    font->filename = NULL;
746
400
    pdfi_countup(font->post);
747
748
400
    if (dpfont42->data.len_glyphs != NULL) {
749
400
        dpfont42->data.len_glyphs = (uint *)gs_alloc_byte_array(dpfont42->memory, dpfont42->data.numGlyphs + 1, sizeof(uint), "pdfi_copy_truetype_font");
750
400
        if (dpfont42->data.len_glyphs == NULL) {
751
0
            pdfi_countdown(font);
752
0
            return_error(gs_error_VMerror);
753
0
        }
754
400
        code = gs_font_notify_register((gs_font *)dpfont42, gs_len_glyphs_release, (void *)dpfont42);
755
400
        if (code < 0) {
756
0
            gs_free_object(dpfont42->memory, dpfont42->data.len_glyphs, "gs_len_glyphs_release");
757
0
            dpfont42->data.len_glyphs = NULL;
758
0
            pdfi_countdown(font);
759
0
            return code;
760
0
        }
761
400
        memcpy(dpfont42->data.len_glyphs, spfont1->data.len_glyphs, (dpfont42->data.numGlyphs + 1) * sizeof(uint));
762
400
    }
763
400
    if (dpfont42->data.gsub != NULL) {
764
0
        dpfont42->data.gsub_size = spfont1->data.gsub_size;
765
766
0
        dpfont42->data.gsub = gs_alloc_byte_array(dpfont42->memory, dpfont42->data.gsub_size, 1, "pdfi_copy_truetype_font");
767
0
        if (dpfont42->data.gsub == 0) {
768
0
            pdfi_countdown(font);
769
0
            return_error(gs_error_VMerror);
770
0
        }
771
772
0
        code = gs_font_notify_register((gs_font *)dpfont42, gs_gsub_release, (void *)dpfont42);
773
0
        if (code < 0) {
774
0
            gs_free_object(dpfont42->memory, dpfont42->data.gsub, "gs_len_glyphs_release");
775
0
            dpfont42->data.gsub = NULL;
776
0
            pdfi_countdown(font);
777
0
            return code;
778
0
        }
779
0
        memcpy(dpfont42->data.gsub, spfont1->data.gsub, dpfont42->data.gsub_size);
780
0
    }
781
782
400
    font->pfont = (gs_font_base *)dpfont42;
783
400
    dpfont42->client_data = (void *)font;
784
785
400
    font->PDF_font = font_dict;
786
400
    font->object_num = font_dict->object_num;
787
400
    font->generation_num = font_dict->generation_num;
788
400
    pdfi_countup(font->PDF_font);
789
790
    /* We want basefont and descriptor, but we can live without them */
791
400
    font->BaseFont = NULL;
792
400
    (void)pdfi_dict_knownget_type(ctx, font_dict, "BaseFont", PDF_NAME, &font->BaseFont);
793
400
    font->FontDescriptor = NULL;
794
400
    (void)pdfi_dict_knownget_type(ctx, font_dict, "FontDescriptor", PDF_DICT, (pdf_obj **)&font->FontDescriptor);
795
796
400
    pdfi_countup(font->sfnt);
797
400
    pdfi_countup(font->copyright);
798
400
    pdfi_countup(font->notice);
799
400
    pdfi_countup(font->fullname);
800
400
    pdfi_countup(font->familyname);
801
802
400
    if (font->BaseFont != NULL && ((pdf_name *)font->BaseFont)->length <= gs_font_name_max) {
803
400
        memcpy(dpfont42->key_name.chars, ((pdf_name *)font->BaseFont)->data, ((pdf_name *)font->BaseFont)->length);
804
400
        dpfont42->key_name.size = ((pdf_name *)font->BaseFont)->length;
805
400
        memcpy(dpfont42->font_name.chars, ((pdf_name *)font->BaseFont)->data, ((pdf_name *)font->BaseFont)->length);
806
400
        dpfont42->font_name.size = ((pdf_name *)font->BaseFont)->length;
807
400
    }
808
809
400
    font->Encoding = NULL;
810
400
    font->ToUnicode = NULL;
811
400
    font->Widths = NULL;
812
813
400
    pdfi_font_set_first_last_char(ctx, font_dict, (pdf_font *)font);
814
400
    (void)pdfi_font_create_widths(ctx, font_dict, (pdf_font*)font, (double)0.001);
815
816
400
    font->descflags = 0;
817
400
    if (font->FontDescriptor != NULL) {
818
400
        code = pdfi_dict_get_int(ctx, font->FontDescriptor, "Flags", &font->descflags);
819
400
        if (code >= 0) {
820
            /* If both the symbolic and non-symbolic flag are set,
821
               believe that latter.
822
             */
823
400
            if ((font->descflags & 32) != 0)
824
400
                font->descflags = (font->descflags & ~4);
825
400
        }
826
400
    }
827
828
400
    tmp = NULL;
829
400
    code = pdfi_dict_knownget(ctx, font_dict, "Encoding", &tmp);
830
400
    if (code == 1) {
831
400
        if ((pdfi_type_of(tmp) == PDF_NAME || pdfi_type_of(tmp) == PDF_DICT) && (font->descflags & 4) == 0) {
832
400
            code = pdfi_create_Encoding(ctx, (pdf_font *)font, tmp, NULL, (pdf_obj **) & font->Encoding);
833
400
        }
834
0
        else if (pdfi_type_of(tmp) == PDF_DICT && (font->descflags & 4) != 0) {
835
0
            code = pdfi_create_Encoding(ctx, (pdf_font *)font, tmp, (pdf_obj *)spdffont->Encoding, (pdf_obj **) &font->Encoding);
836
0
        }
837
0
        else {
838
0
            code = gs_error_undefined;
839
0
        }
840
400
        pdfi_countdown(tmp);
841
400
        tmp = NULL;
842
400
    }
843
0
    else {
844
0
        pdfi_countdown(tmp);
845
0
        tmp = NULL;
846
0
        code = gs_error_undefined;
847
0
    }
848
849
400
    if (code < 0) {
850
0
        font->Encoding = spdffont->Encoding;
851
0
        pdfi_countup(font->Encoding);
852
0
    }
853
854
400
    code = uid_copy(&font->pfont->UID, font->pfont->memory, "pdfi_copy_cff_font");
855
400
    if (code < 0) {
856
0
        uid_set_invalid(&font->pfont->UID);
857
0
    }
858
400
    if (spdffont->filename == NULL) {
859
400
        code = pdfi_font_generate_pseudo_XUID(ctx, font_dict, font->pfont);
860
400
        if (code < 0) {
861
0
            goto error;
862
0
        }
863
400
    }
864
400
    if (ctx->args.ignoretounicode != true) {
865
400
        code = pdfi_dict_get(ctx, font_dict, "ToUnicode", (pdf_obj **)&tmp);
866
400
        if (code >= 0 && pdfi_type_of(tmp) == PDF_STREAM) {
867
19
            pdf_cmap *tu = NULL;
868
19
            code = pdfi_read_cmap(ctx, tmp, &tu);
869
19
            pdfi_countdown(tmp);
870
19
            tmp = (pdf_obj *)tu;
871
19
        }
872
400
        if (code < 0 || (tmp != NULL && pdfi_type_of(tmp) != PDF_CMAP)) {
873
381
            pdfi_countdown(tmp);
874
381
            tmp = NULL;
875
381
            code = 0;
876
381
        }
877
400
    }
878
0
    else {
879
0
        tmp = NULL;
880
0
    }
881
400
    font->ToUnicode = tmp;
882
400
    pdfi_font_set_orig_fonttype(ctx, (pdf_font *)font);
883
884
400
    code = gs_definefont(ctx->font_dir, (gs_font *) font->pfont);
885
400
    if (code < 0) {
886
0
        goto error;
887
0
    }
888
889
400
    code = pdfi_fapi_passfont((pdf_font *) font, 0, NULL, NULL, NULL, 0);
890
400
    if (code < 0) {
891
0
        goto error;
892
0
    }
893
    /* object_num can be zero if the dictionary was defined inline */
894
400
    if (font->object_num != 0) {
895
21
        (void)replace_cache_entry(ctx, (pdf_obj *) font);
896
21
    }
897
898
400
    *tpdffont = (pdf_font *)font;
899
900
400
error:
901
400
    if (code < 0)
902
0
        pdfi_countdown(font);
903
400
    return code;
904
400
}
905
906
int pdfi_free_font_truetype(pdf_obj *font)
907
1.76k
{
908
1.76k
    pdf_font_truetype *ttfont = (pdf_font_truetype *)font;
909
910
1.76k
    if (ttfont->pfont)
911
1.76k
        gs_free_object(OBJ_MEMORY(ttfont), ttfont->pfont, "Free TrueType gs_font");
912
913
1.76k
    if (ttfont->Widths)
914
1.61k
        gs_free_object(OBJ_MEMORY(ttfont), ttfont->Widths, "Free TrueType font Widths array");
915
916
1.76k
    pdfi_countdown(ttfont->sfnt);
917
1.76k
    pdfi_countdown(ttfont->FontDescriptor);
918
1.76k
    pdfi_countdown(ttfont->Encoding);
919
1.76k
    pdfi_countdown(ttfont->BaseFont);
920
1.76k
    pdfi_countdown(ttfont->PDF_font);
921
1.76k
    pdfi_countdown(ttfont->ToUnicode);
922
1.76k
    pdfi_countdown(ttfont->filename);
923
1.76k
    pdfi_countdown(ttfont->post);
924
1.76k
    pdfi_countdown(ttfont->copyright);
925
1.76k
    pdfi_countdown(ttfont->notice);
926
1.76k
    pdfi_countdown(ttfont->fullname);
927
1.76k
    pdfi_countdown(ttfont->familyname);
928
929
1.76k
    gs_free_object(OBJ_MEMORY(ttfont), ttfont, "Free TrueType font");
930
931
1.76k
    return 0;
932
1.76k
}