Coverage Report

Created: 2026-04-01 07:17

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ghostpdl/pdf/pdf_fontTT.c
Line
Count
Source
1
/* Copyright (C) 2019-2026 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
2.31G
{
44
2.31G
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
45
2.31G
    int code = 0;
46
47
2.31G
    if ((uint64_t)offset + length > ttfont->sfnt->length) {
48
12.1M
        *pdata = NULL;
49
12.1M
        code = gs_note_error(gs_error_invalidfont);
50
12.1M
    }
51
2.30G
    else {
52
2.30G
        *pdata = ttfont->sfnt->data + offset;
53
2.30G
    }
54
2.31G
    return code;
55
2.31G
}
56
57
static gs_glyph pdfi_ttf_encode_char(gs_font *pfont, gs_char chr, gs_glyph_space_t sp)
58
8.84M
{
59
8.84M
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
60
8.84M
    gs_glyph g = GS_NO_GLYPH;
61
8.84M
    uint ID;
62
8.84M
    int code;
63
64
8.84M
    if ((ttfont->descflags & 4) != 0 || sp == GLYPH_SPACE_INDEX) {
65
1.93M
        int code = pdfi_fapi_check_cmap_for_GID(pfont, (uint)chr, &ID);
66
1.93M
        if (code < 0 || ID == 0)
67
965k
            code = pdfi_fapi_check_cmap_for_GID(pfont, (uint)(chr | 0xf0 << 8), &ID);
68
1.93M
        g = (gs_glyph)ID;
69
1.93M
    }
70
6.90M
    else {
71
6.90M
        pdf_context *ctx = (pdf_context *)ttfont->ctx;
72
73
6.90M
        if (ttfont->Encoding != NULL) { /* safety */
74
6.90M
            pdf_name *GlyphName = NULL;
75
6.90M
            code = pdfi_array_get(ctx, ttfont->Encoding, (uint64_t)chr, (pdf_obj **)&GlyphName);
76
6.90M
            if (code >= 0) {
77
6.89M
                code = (*ctx->get_glyph_index)(pfont, (byte *)GlyphName->data, GlyphName->length, &ID);
78
6.89M
                pdfi_countdown(GlyphName);
79
6.89M
                if (code >= 0)
80
6.89M
                    g = (gs_glyph)ID;
81
6.89M
            }
82
6.90M
        }
83
6.90M
    }
84
85
8.84M
    return g;
86
8.84M
}
87
88
int pdfi_find_post_entry(gs_font_type42 *pfont, gs_const_string *gname, uint *cc)
89
2.25M
{
90
2.25M
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
91
2.25M
    pdf_context *ctx = (pdf_context *)ttfont->ctx;
92
2.25M
    int code = 0;
93
2.25M
    if (ttfont->post != NULL) {
94
2.19M
        pdf_name *name = NULL;
95
2.19M
        pdf_num *n = NULL;
96
97
2.19M
        code = pdfi_name_alloc(ctx, (byte *)gname->data, gname->size, (pdf_obj **)&name);
98
2.19M
        if (code >= 0) {
99
2.19M
            pdfi_countup(name);
100
2.19M
            code = pdfi_dict_get_by_key(ctx, ttfont->post, name, (pdf_obj **)&n);
101
2.19M
            if (code >= 0 && pdfi_type_of(n) == PDF_INT) {
102
7.03k
                *cc = (uint)n->value.i;
103
7.03k
            }
104
2.18M
            else
105
2.18M
              *cc = 0;
106
2.19M
            pdfi_countdown(name);
107
2.19M
            pdfi_countdown(n);
108
2.19M
        }
109
2.19M
    }
110
67.1k
    else
111
67.1k
        code = gs_error_VMerror;
112
113
2.25M
    if (code == gs_error_VMerror){
114
67.1k
        uint i;
115
67.1k
        gs_string postname = {0};
116
117
67.1k
        code = gs_error_undefined;
118
67.1k
        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
67.1k
    }
134
2.25M
    return code;
135
2.25M
}
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
5.57M
{
141
5.57M
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
142
5.57M
    uint gind = 0;
143
5.57M
    uint cc = 0;
144
5.57M
    int i, code = 0;
145
146
5.57M
    if ((ttfont->descflags & 4) != 0 || glyph >= GS_MIN_GLYPH_INDEX) {
147
629k
        gind = (uint)glyph < GS_MIN_GLYPH_INDEX ? glyph : glyph - GS_MIN_GLYPH_INDEX;
148
629k
    }
149
4.94M
    else {
150
4.94M
        pdf_context *ctx = (pdf_context *)ttfont->ctx;
151
4.94M
        gs_const_string gname;
152
153
4.94M
        code = (*ctx->get_glyph_name)((gs_font *)pfont, glyph, &gname);
154
4.94M
        if (code < 0 || gname.data == NULL) {
155
0
            return (uint)glyph;
156
0
        }
157
4.94M
        if (gname.size == 7 && gname.data[0] == '.' && strncmp((char *)gname.data, ".notdef", 7) == 0) {
158
983k
            return 0; /* .notdef is GID 0, so short cut the rest of the function */
159
983k
        }
160
161
3.96M
        if (ttfont->cmap == pdfi_truetype_cmap_10) {
162
564k
            gs_glyph g;
163
164
564k
            g = gs_c_name_glyph((const byte *)gname.data, gname.size);
165
564k
            if (g != GS_NO_GLYPH) {
166
564k
                g = (gs_glyph)gs_c_decode(g, ENCODING_INDEX_MACROMAN);
167
564k
            }
168
0
            else {
169
0
                g = GS_NO_CHAR;
170
0
            }
171
172
564k
            if (g != GS_NO_CHAR) {
173
557k
                code = pdfi_fapi_check_cmap_for_GID((gs_font *)pfont, (uint)g, &cc);
174
557k
            }
175
176
564k
            if (code < 0 || cc == 0) {
177
385k
                code = pdfi_find_post_entry(pfont, &gname, &cc);
178
385k
                if (code < 0) {
179
383k
                    cc = 0;
180
383k
                    code = 0;
181
383k
                }
182
385k
            }
183
564k
        }
184
3.39M
        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
3.39M
            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
3.39M
            if (gname.size == 7 && !strncmp((char *)gname.data, "uni", 3)) {
193
32.1k
                char gnbuf[64];
194
32.1k
                int l = (gname.size - 3) > 63 ? 63 : gname.size - 3;
195
196
32.1k
                memcpy(gnbuf, gname.data + 3, l);
197
32.1k
                gnbuf[l] = '\0';
198
32.1k
                l = sscanf(gnbuf, "%x", &gind);
199
32.1k
                if (l > 0)
200
32.1k
                    (void)pdfi_fapi_check_cmap_for_GID((gs_font *)pfont, (uint)gind, &cc);
201
0
                else
202
0
                    cc = 0;
203
32.1k
            }
204
3.36M
            else {
205
                /* Slow linear search */
206
6.50G
                for (i = 0; sgl->Glyph != 0x00; i++) {
207
6.50G
                    if (sgl->Glyph[0] == gname.data[0]
208
186M
                        && strlen(sgl->Glyph) == gname.size
209
18.6M
                        && !strncmp((char *)sgl->Glyph, (char *)gname.data, gname.size))
210
3.36M
                        break;
211
6.50G
                    sgl++;
212
6.50G
                }
213
3.36M
                if (sgl->Glyph != NULL) {
214
3.36M
                    code = pdfi_fapi_check_cmap_for_GID((gs_font *)pfont, (uint)sgl->Unicode, &cc);
215
3.36M
                    if (code < 0 || cc == 0)
216
1.80M
                        cc = 0;
217
3.36M
                }
218
159
                else
219
159
                    cc = 0;
220
221
3.36M
                if (cc == 0) {
222
1.80M
                    code = pdfi_find_post_entry(pfont, &gname, &cc);
223
1.80M
                    if (code < 0) {
224
1.80M
                        cc = (uint)glyph;
225
1.80M
                        code = 0;
226
1.80M
                    }
227
1.80M
                }
228
3.36M
            }
229
3.39M
        }
230
3.96M
        gind = cc;
231
3.96M
    }
232
4.59M
    return gind;
233
5.57M
}
234
235
static int
236
pdfi_ttf_enumerate_glyph(gs_font *font, int *pindex, gs_glyph_space_t glyph_space, gs_glyph *pglyph)
237
3.76M
{
238
3.76M
    if (glyph_space == GLYPH_SPACE_INDEX) {
239
105k
        return gs_type42_enumerate_glyph(font, pindex, glyph_space, pglyph);
240
105k
    }
241
3.65M
    else if (glyph_space == GLYPH_SPACE_NAME) {
242
3.65M
        pdf_font_truetype *ttfont = (pdf_font_truetype *)font->client_data;
243
244
3.65M
        if ((ttfont->descflags & 4) == 0) {
245
3.64M
            if (*pindex <= 0) {
246
52.4k
                *pindex = 0;
247
52.4k
            }
248
3.64M
            *pglyph = (*font->procs.encode_char)(font, (gs_char)*pindex, glyph_space);
249
3.64M
            if (*pglyph == GS_NO_GLYPH)
250
8.18k
                *pindex = 0;
251
3.64M
            else
252
3.64M
                (*pindex)++;
253
3.64M
        }
254
3.65M
    }
255
0
    else
256
0
        *pindex = 0;
257
3.65M
    return 0;
258
3.76M
}
259
260
static int pdfi_ttf_glyph_name(gs_font *pfont, gs_glyph glyph, gs_const_string * pstr)
261
543k
{
262
543k
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
263
543k
    pdf_context *ctx = (pdf_context *)ttfont->ctx;
264
543k
    uint ID = 0;
265
543k
    int l, code = -1;
266
267
543k
    if (glyph >= GS_MIN_CID_GLYPH) { /* Fabricate a numeric name. */
268
741
        char cid_name[sizeof(gs_glyph) * 3 + 1];
269
270
741
        l = gs_snprintf(cid_name, sizeof(cid_name), "%lu", (ulong) glyph);
271
        /* We need to create the entry in the name table... */
272
741
        code = (*ctx->get_glyph_index)(pfont, (byte *)cid_name, l, &ID);
273
741
        if (code < 0)
274
0
            return -1;
275
276
741
        code = (*ctx->get_glyph_name)(pfont, (gs_glyph)ID, pstr);
277
741
        if (code < 0)
278
0
            return -1; /* No name, trigger pdfwrite Type 3 fallback */
279
542k
    } else {
280
542k
        if ((ttfont->descflags & 4) != 0) {
281
30.8k
            code = gs_type42_find_post_name((gs_font_type42 *)pfont, glyph, (gs_string *)pstr);
282
30.8k
            if (code < 0) {
283
25.0k
                char buf[64];
284
25.0k
                l = gs_snprintf(buf, sizeof(buf), "~gs~gName~%04x", (uint)glyph);
285
25.0k
                code = (*ctx->get_glyph_index)(pfont, (byte *)buf, l, &ID);
286
25.0k
            }
287
5.83k
            else {
288
5.83k
                code = (*ctx->get_glyph_index)(pfont, (byte *)pstr->data, pstr->size, &ID);
289
5.83k
            }
290
30.8k
            if (code < 0)
291
0
                return -1; /* No name, trigger pdfwrite Type 3 fallback */
292
293
30.8k
            code = (*ctx->get_glyph_name)(pfont, (gs_glyph)ID, pstr);
294
30.8k
            if (code < 0)
295
0
                return -1; /* No name, trigger pdfwrite Type 3 fallback */
296
30.8k
        }
297
512k
        else {
298
512k
            code = (*ctx->get_glyph_name)(pfont, glyph, pstr);
299
512k
            if (code < 0)
300
0
                return -1; /* No name, trigger pdfwrite Type 3 fallback */
301
512k
        }
302
542k
    }
303
543k
    return code;
304
305
543k
}
306
307
static void pdfi_make_post_dict(gs_font_type42 *pfont)
308
16.7k
{
309
16.7k
    pdf_font_truetype *ttfont = (pdf_font_truetype *)pfont->client_data;
310
16.7k
    pdf_context *ctx = (pdf_context *)ttfont->ctx;
311
16.7k
    int i, code = 0;
312
16.7k
    if (ttfont->post == NULL && pfont->data.numGlyphs > 0) {
313
16.5k
        code = pdfi_dict_alloc(ctx, pfont->data.numGlyphs, &ttfont->post);
314
16.5k
        if (code < 0)
315
0
            return;
316
317
16.5k
        pdfi_countup(ttfont->post);
318
319
20.8M
        for (i = 0; i < pfont->data.numGlyphs; i++) {
320
20.7M
            gs_string postname = {0};
321
20.7M
            pdf_name *key;
322
20.7M
            pdf_num *ind;
323
324
20.7M
            code = gs_type42_find_post_name(pfont, (gs_glyph)i, &postname);
325
20.7M
            if (code < 0) {
326
18.8M
                continue;
327
18.8M
            }
328
1.88M
            code = pdfi_name_alloc(ctx, postname.data, postname.size, (pdf_obj **)&key);
329
1.88M
            if (code < 0) {
330
0
               continue;
331
0
            }
332
1.88M
            pdfi_countup(key);
333
1.88M
            code = pdfi_object_alloc(ctx, PDF_INT, 0, (pdf_obj **)&ind);
334
1.88M
            if (code < 0) {
335
0
               pdfi_countdown(key);
336
0
               continue;
337
0
            }
338
1.88M
            pdfi_countup(ind);
339
1.88M
            ind->value.i = i;
340
1.88M
            (void)pdfi_dict_put_obj(ctx, ttfont->post, (pdf_obj *)key, (pdf_obj *)ind, false);
341
1.88M
            pdfi_countdown(key);
342
1.88M
            pdfi_countdown(ind);
343
1.88M
        }
344
16.5k
    }
345
16.7k
}
346
347
348
static int
349
pdfi_alloc_tt_font(pdf_context *ctx, pdf_font_truetype **font, bool is_cid)
350
26.6k
{
351
26.6k
    pdf_font_truetype *ttfont = NULL;
352
26.6k
    gs_font_type42 *pfont = NULL;
353
354
26.6k
    ttfont = (pdf_font_truetype *)gs_alloc_bytes(ctx->memory, sizeof(pdf_font_truetype), "pdfi (truetype pdf_font)");
355
26.6k
    if (ttfont == NULL)
356
0
        return_error(gs_error_VMerror);
357
358
26.6k
    memset(ttfont, 0x00, sizeof(pdf_font_truetype));
359
26.6k
    ttfont->type = PDF_FONT;
360
26.6k
    ttfont->ctx = ctx;
361
26.6k
    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
26.6k
    pdfi_countup(ttfont);
369
370
26.6k
    pfont = (gs_font_type42 *)gs_alloc_struct(ctx->memory, gs_font_type42, &st_gs_font_type42,
371
26.6k
                            "pdfi (truetype pfont)");
372
26.6k
    if (pfont == NULL) {
373
0
        pdfi_countdown(ttfont);
374
0
        return_error(gs_error_VMerror);
375
0
    }
376
26.6k
    memset(pfont, 0x00, sizeof(gs_font_type42));
377
378
26.6k
    ttfont->pfont = (gs_font_base *)pfont;
379
380
26.6k
    gs_make_identity(&pfont->orig_FontMatrix);
381
26.6k
    gs_make_identity(&pfont->FontMatrix);
382
26.6k
    pfont->next = pfont->prev = 0;
383
26.6k
    pfont->memory = ctx->memory;
384
26.6k
    pfont->dir = ctx->font_dir;
385
26.6k
    pfont->is_resource = false;
386
26.6k
    gs_notify_init(&pfont->notify_list, ctx->memory);
387
26.6k
    pfont->base = (gs_font *) ttfont->pfont;
388
26.6k
    pfont->client_data = ttfont;
389
26.6k
    pfont->WMode = 0;
390
26.6k
    pfont->PaintType = 0;
391
26.6k
    pfont->StrokeWidth = 0;
392
26.6k
    pfont->is_cached = 0;
393
26.6k
    pfont->FAPI = NULL;
394
26.6k
    pfont->FAPI_font_data = NULL;
395
26.6k
    pfont->procs.init_fstack = gs_default_init_fstack;
396
26.6k
    pfont->procs.next_char_glyph = gs_default_next_char_glyph;
397
26.6k
    pfont->FontType = ft_TrueType;
398
26.6k
    pfont->ExactSize = fbit_use_outlines;
399
26.6k
    pfont->InBetweenSize = fbit_use_outlines;
400
26.6k
    pfont->TransformedChar = fbit_use_outlines;
401
    /* We may want to do something clever with an XUID here */
402
26.6k
    pfont->id = gs_next_ids(ctx->memory, 1);
403
26.6k
    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
26.6k
    pfont->procs.encode_char = pdfi_ttf_encode_char;
407
26.6k
    pfont->data.string_proc = pdfi_ttf_string_proc;
408
26.6k
    pfont->procs.glyph_name = pdfi_ttf_glyph_name;
409
26.6k
    pfont->procs.decode_glyph = pdfi_decode_glyph;
410
26.6k
    pfont->procs.define_font = gs_no_define_font;
411
26.6k
    pfont->procs.make_font = gs_no_make_font;
412
413
26.6k
    ttfont->default_font_info = gs_default_font_info;
414
26.6k
    pfont->procs.font_info = pdfi_default_font_info;
415
416
26.6k
    pfont->procs.glyph_info = gs_default_glyph_info;
417
26.6k
    pfont->procs.glyph_outline = gs_no_glyph_outline;
418
26.6k
    pfont->procs.build_char = NULL;
419
26.6k
    pfont->procs.same_font = gs_default_same_font;
420
26.6k
    pfont->procs.enumerate_glyph = gs_no_enumerate_glyph;
421
422
26.6k
    pfont->encoding_index = ENCODING_INDEX_UNKNOWN;
423
26.6k
    pfont->nearest_encoding_index = ENCODING_INDEX_UNKNOWN;
424
425
26.6k
    pfont->client_data = (void *)ttfont;
426
427
26.6k
    *font = ttfont;
428
26.6k
    return 0;
429
26.6k
}
430
431
static void pdfi_set_type42_custom_procs(pdf_font_truetype *pdfttfont)
432
16.9k
{
433
16.9k
    gs_font_type42 *pfont = (gs_font_type42 *)pdfttfont->pfont;
434
435
16.9k
    pdfttfont->default_font_info = pfont->procs.font_info;
436
16.9k
    pfont->procs.font_info = pdfi_default_font_info;
437
16.9k
    pfont->data.get_glyph_index = pdfi_type42_get_glyph_index;
438
16.9k
    pfont->procs.enumerate_glyph = pdfi_ttf_enumerate_glyph;
439
16.9k
}
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
23.1k
{
443
23.1k
    pdf_font_truetype *font = NULL;
444
23.1k
    int code = 0, i;
445
23.1k
    pdf_obj *fontdesc = NULL;
446
23.1k
    pdf_obj *obj = NULL;
447
23.1k
    pdf_obj *basefont = NULL;
448
23.1k
    int64_t descflags;
449
23.1k
    bool encoding_known = false;
450
23.1k
    bool forced_symbolic = false;
451
23.1k
    pdf_obj *tounicode = NULL;
452
453
23.1k
    if (ppdffont == NULL)
454
0
        return_error(gs_error_invalidaccess);
455
456
23.1k
    *ppdffont = NULL;
457
458
23.1k
    if (font_dict != NULL)
459
23.1k
        (void)pdfi_dict_knownget_type(ctx, font_dict, "FontDescriptor", PDF_DICT, &fontdesc);
460
461
23.1k
    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
23.1k
    if (font_dict != NULL) {
466
23.1k
        font->object_num = font_dict->object_num;
467
23.1k
        font->generation_num = font_dict->generation_num;
468
23.1k
        font->indirect_num = font_dict->indirect_num;
469
23.1k
        font->indirect_gen = font_dict->indirect_gen;
470
23.1k
    }
471
472
23.1k
    font->FontDescriptor = (pdf_dict *)fontdesc;
473
23.1k
    fontdesc = NULL;
474
475
23.1k
    pdfi_font_set_first_last_char(ctx, font_dict, (pdf_font *)font);
476
477
23.1k
    code = pdfi_object_alloc(ctx, PDF_BUFFER, 0, (pdf_obj **)&font->sfnt);
478
23.1k
    if (code < 0) {
479
0
        goto error;
480
0
    }
481
23.1k
    pdfi_countup(font->sfnt);
482
23.1k
    code = pdfi_buffer_set_data((pdf_obj *)font->sfnt, buf, buflen);
483
23.1k
    if (code < 0) {
484
0
        goto error;
485
0
    }
486
23.1k
    buf = NULL;
487
488
    /* Strictly speaking BaseFont is required, but we can continue without one */
489
23.1k
    if (font_dict != NULL) {
490
23.1k
        code = pdfi_dict_knownget_type(ctx, font_dict, "BaseFont", PDF_NAME, (pdf_obj **)&basefont);
491
23.1k
        if (code > 0) {
492
22.5k
            pdf_name *nobj = (pdf_name *)basefont;
493
22.5k
            int nlen = nobj->length > gs_font_name_max ? gs_font_name_max : nobj->length;
494
495
22.5k
            memcpy(font->pfont->key_name.chars, nobj->data, nlen);
496
22.5k
            font->pfont->key_name.chars[nlen] = 0;
497
22.5k
            font->pfont->key_name.size = nlen;
498
22.5k
            memcpy(font->pfont->font_name.chars, nobj->data, nlen);
499
22.5k
            font->pfont->font_name.chars[nlen] = 0;
500
22.5k
            font->pfont->font_name.size = nlen;
501
22.5k
            pdfi_countdown(obj);
502
22.5k
            obj = NULL;
503
22.5k
        }
504
23.1k
    }
505
23.1k
    font->BaseFont = basefont;
506
23.1k
    basefont = NULL;
507
23.1k
    font->PDF_font = font_dict;
508
23.1k
    pdfi_countup(font_dict);
509
510
    /* ignore errors with widths... for now */
511
23.1k
    if (font_dict != NULL)
512
23.1k
        (void)pdfi_font_create_widths(ctx, font_dict, (pdf_font*)font, 0.001);
513
514
23.1k
    if (ctx->args.ignoretounicode != true && font_dict != NULL) {
515
23.1k
        code = pdfi_dict_get(ctx, font_dict, "ToUnicode", (pdf_obj **)&tounicode);
516
23.1k
        if (code >= 0 && pdfi_type_of(tounicode) == PDF_STREAM) {
517
7.98k
            pdf_cmap *tu = NULL;
518
7.98k
            code = pdfi_read_cmap(ctx, tounicode, &tu);
519
7.98k
            pdfi_countdown(tounicode);
520
7.98k
            tounicode = (pdf_obj *)tu;
521
7.98k
        }
522
23.1k
        if (code < 0 || (tounicode != NULL && pdfi_type_of(tounicode) != PDF_CMAP)) {
523
14.9k
            pdfi_countdown(tounicode);
524
14.9k
            tounicode = NULL;
525
14.9k
            code = 0;
526
14.9k
        }
527
23.1k
    }
528
0
    else {
529
0
        tounicode = NULL;
530
0
    }
531
23.1k
    font->ToUnicode = tounicode;
532
23.1k
    tounicode = NULL;
533
534
23.1k
    if (font->FontDescriptor != NULL) {
535
23.1k
        code = pdfi_dict_get_int(ctx, font->FontDescriptor, "Flags", &descflags);
536
23.1k
        if (code < 0)
537
20
            descflags = 0;
538
23.1k
    }
539
0
    else {
540
0
        descflags = 0;
541
0
    }
542
543
23.1k
    if (font_dict != NULL)
544
23.1k
        code = pdfi_dict_get(ctx, font_dict, "Encoding", &obj);
545
0
    else
546
0
        code = gs_error_undefined;
547
548
23.1k
    if (code < 0) {
549
4.70k
        static const char encstr[] = "WinAnsiEncoding";
550
4.70k
        code = pdfi_name_alloc(ctx, (byte *)encstr, strlen(encstr), (pdf_obj **)&obj);
551
4.70k
        if (code >= 0)
552
4.70k
            pdfi_countup(obj);
553
0
        else
554
0
            goto error;
555
4.70k
    }
556
18.3k
    else {
557
18.3k
        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
18.3k
        if ((descflags & 32) != 0)
562
18.0k
            descflags = (descflags & ~4);
563
18.3k
    }
564
565
23.1k
    if ((forced_symbolic = pdfi_font_known_symbolic(font->BaseFont)) == true) {
566
0
        descflags |= 4;
567
0
    }
568
569
23.1k
    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
23.1k
    if (code < 0 && (descflags & 4) == 0)
572
59
        goto error;
573
    /* If we get an error, and the font is symbolic, pretend we never saw an /Encoding */
574
23.0k
    if (code < 0)
575
8
        encoding_known = false;
576
23.0k
    pdfi_countdown(obj);
577
23.0k
    obj = NULL;
578
579
23.0k
    code = gs_type42_font_init((gs_font_type42 *)font->pfont, 0);
580
23.0k
    if (code < 0) {
581
6.08k
        goto error;
582
6.08k
    }
583
584
16.9k
    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
16.9k
    if (forced_symbolic != true && (descflags & 4) != 0 && ((gs_font_type42 *)font->pfont)->data.cmap != 0) {
591
3.39k
        gs_font_type42 *t42f = (gs_font_type42 *)font->pfont;
592
3.39k
        int numcmaps;
593
3.39k
        int cmaps_available = CMAP_TABLE_NONE;
594
3.39k
        const byte *d;
595
3.39k
        code = (*t42f->data.string_proc)(t42f, t42f->data.cmap + 2, 2, &d);
596
3.39k
        if (code < 0)
597
8
            goto error;
598
3.39k
        numcmaps = d[1] | d[0] << 8;
599
93.9k
        for (i = 0; i < numcmaps; i++) {
600
90.7k
            code = (*t42f->data.string_proc)(t42f, t42f->data.cmap + 4 + i * 8, 4, &d);
601
90.7k
            if (code < 0)
602
154
                goto error;
603
94.9k
#define CMAP_PLAT_ENC_ID(a,b,c,d) (a << 24 | b << 16 | c << 8 | d)
604
90.5k
            switch(CMAP_PLAT_ENC_ID(d[0], d[1], d[2], d[3])) {
605
2.98k
                case CMAP_PLAT_ENC_ID(0, 1, 0, 0):
606
2.98k
                    cmaps_available |= CMAP_TABLE_10_PRESENT;
607
2.98k
                    break;
608
1.36k
                case CMAP_PLAT_ENC_ID(0, 3, 0, 0):
609
1.36k
                    cmaps_available |= CMAP_TABLE_30_PRESENT;
610
1.36k
                    break;
611
85
                case CMAP_PLAT_ENC_ID(0, 3, 0, 1):
612
85
                    cmaps_available |= CMAP_TABLE_31_PRESENT;
613
85
                    break;
614
0
                case CMAP_PLAT_ENC_ID(0, 3, 1, 0):
615
0
                    cmaps_available |= CMAP_TABLE_310_PRESENT;
616
0
                    break;
617
86.1k
                default: /* Not one we're interested in */
618
86.1k
                    break;
619
90.5k
            }
620
90.5k
        }
621
3.23k
#undef CMAP_PLAT_ENC_ID
622
3.23k
        if ((cmaps_available & CMAP_TABLE_30_PRESENT) == CMAP_TABLE_30_PRESENT) {
623
1.33k
            font->descflags = descflags;
624
1.33k
        }
625
1.90k
        else if (encoding_known == true) {
626
37
            static const char mrencstr[] = "MacRomanEncoding";
627
37
            static const char waencstr[] = "WinAnsiEncoding";
628
37
            const char *encstr = ((cmaps_available & CMAP_TABLE_31_PRESENT) == CMAP_TABLE_31_PRESENT) ? waencstr : mrencstr;
629
37
            font->descflags = descflags & ~4;
630
37
            code = pdfi_name_alloc(ctx, (byte *)encstr, strlen(encstr), (pdf_obj **)&obj);
631
37
            if (code >= 0)
632
37
                pdfi_countup(obj);
633
0
            else
634
0
                goto error;
635
37
            pdfi_countdown(font->Encoding);
636
37
            code = pdfi_create_Encoding(ctx, (pdf_font *)font, obj, NULL, (pdf_obj **)&font->Encoding);
637
37
            if (code < 0)
638
0
                goto error;
639
37
            pdfi_countdown(obj);
640
37
            obj = NULL;
641
37
        }
642
1.86k
        else
643
1.86k
            font->descflags = descflags;
644
3.23k
    }
645
13.5k
    else {
646
13.5k
        font->descflags = descflags;
647
13.5k
    }
648
649
16.7k
    if (uid_is_XUID(&font->pfont->UID))
650
16.7k
        uid_free(&font->pfont->UID, font->pfont->memory, "pdfi_read_type1_font");
651
16.7k
    uid_set_invalid(&font->pfont->UID);
652
653
16.7k
    code = pdfi_font_generate_pseudo_XUID(ctx, font_dict, font->pfont);
654
16.7k
    if (code < 0) {
655
0
        goto error;
656
0
    }
657
658
16.7k
    if ((font->descflags & 4) == 0) {
659
        /* Horrid hacky solution */
660
        /* We don't want to draw the TTF notdef */
661
13.5k
        gs_font_type42 *gst42 = ((gs_font_type42 *)font->pfont);
662
13.5k
        if (gst42->data.len_glyphs != NULL && gst42->data.len_glyphs[0] > 10) {
663
10.4k
            gst42->data.len_glyphs[0] = 0;
664
10.4k
        }
665
13.5k
    }
666
667
16.7k
    pdfi_make_post_dict((gs_font_type42 *)font->pfont);
668
669
16.7k
    pdfi_font_set_orig_fonttype(ctx, (pdf_font *)font);
670
16.7k
    code = gs_definefont(ctx->font_dir, (gs_font *)font->pfont);
671
16.7k
    if (code < 0) {
672
0
        goto error;
673
0
    }
674
675
16.7k
    code = pdfi_fapi_passfont((pdf_font *)font, 0, NULL, NULL, font->sfnt->data, font->sfnt->length);
676
16.7k
    if (code < 0) {
677
1.07k
        goto error;
678
1.07k
    }
679
680
    /* object_num can be zero if the dictionary was defined inline */
681
15.7k
    if (font->object_num != 0) {
682
15.5k
        (void)replace_cache_entry(ctx, (pdf_obj *)font);
683
15.5k
    }
684
685
15.7k
    *ppdffont = (pdf_font *)font;
686
15.7k
    return code;
687
7.38k
error:
688
7.38k
    pdfi_countdown(obj);
689
7.38k
    obj = NULL;
690
7.38k
    if (font_dict != NULL) {
691
7.38k
        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
7.38k
        else {
702
7.38k
            (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
7.38k
        }
704
7.38k
    }
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
7.38k
    if (buf != NULL)
709
0
        gs_free_object(ctx->memory, buf, "pdfi_read_truetype_font(buf)");
710
7.38k
    pdfi_countdown(fontdesc);
711
7.38k
    pdfi_countdown(basefont);
712
7.38k
    pdfi_countdown(font);
713
7.38k
    return code;
714
16.7k
}
715
716
int
717
pdfi_copy_truetype_font(pdf_context *ctx, pdf_font *spdffont, pdf_dict *font_dict, pdf_font **tpdffont)
718
3.59k
{
719
3.59k
    int code = 0;
720
3.59k
    pdf_font_truetype *font = NULL;
721
3.59k
    gs_font_type42 *spfont1 = (gs_font_type42 *) spdffont->pfont;
722
3.59k
    gs_font_type42 *dpfont42;
723
3.59k
    gs_id t_id;
724
3.59k
    pdf_obj *tmp;
725
726
3.59k
    if (font_dict == NULL)
727
0
        return_error(gs_error_invalidfont);
728
729
3.59k
    code = pdfi_alloc_tt_font(ctx, &font, font_dict->object_num);
730
3.59k
    if (code < 0)
731
0
        return code;
732
3.59k
    dpfont42 = (gs_font_type42 *) font->pfont;
733
734
3.59k
    t_id = dpfont42->id;
735
3.59k
    memcpy(dpfont42, spfont1, sizeof(gs_font_type42));
736
3.59k
    dpfont42->id = t_id;
737
3.59k
    dpfont42->FAPI = NULL;
738
3.59k
    dpfont42->FAPI_font_data = NULL;
739
3.59k
    dpfont42->notify_list.memory = NULL;
740
3.59k
    dpfont42->notify_list.first = NULL;
741
3.59k
    gs_notify_init(&dpfont42->notify_list, dpfont42->memory);
742
743
3.59k
    memcpy(font, spdffont, sizeof(pdf_font_truetype));
744
3.59k
    font->refcnt = 1;
745
3.59k
    font->pfont = (gs_font_base *)dpfont42;
746
3.59k
    dpfont42->client_data = (void *)font;
747
748
3.59k
    font->filename = NULL;
749
3.59k
    pdfi_countup(font->post);
750
751
3.59k
    if (dpfont42->data.len_glyphs != NULL) {
752
3.59k
        dpfont42->data.len_glyphs = (uint *)gs_alloc_byte_array(dpfont42->memory, dpfont42->data.numGlyphs + 1, sizeof(uint), "pdfi_copy_truetype_font");
753
3.59k
        if (dpfont42->data.len_glyphs == NULL) {
754
0
            pdfi_countdown(font);
755
0
            return_error(gs_error_VMerror);
756
0
        }
757
3.59k
        code = gs_font_notify_register((gs_font *)dpfont42, gs_len_glyphs_release, (void *)dpfont42);
758
3.59k
        if (code < 0) {
759
0
            gs_free_object(dpfont42->memory, dpfont42->data.len_glyphs, "gs_len_glyphs_release");
760
0
            dpfont42->data.len_glyphs = NULL;
761
0
            pdfi_countdown(font);
762
0
            return code;
763
0
        }
764
3.59k
        memcpy(dpfont42->data.len_glyphs, spfont1->data.len_glyphs, (dpfont42->data.numGlyphs + 1) * sizeof(uint));
765
3.59k
    }
766
3.59k
    if (dpfont42->data.gsub != NULL) {
767
0
        dpfont42->data.gsub_size = spfont1->data.gsub_size;
768
769
0
        dpfont42->data.gsub = gs_alloc_byte_array(dpfont42->memory, dpfont42->data.gsub_size, 1, "pdfi_copy_truetype_font");
770
0
        if (dpfont42->data.gsub == 0) {
771
0
            pdfi_countdown(font);
772
0
            return_error(gs_error_VMerror);
773
0
        }
774
775
0
        code = gs_font_notify_register((gs_font *)dpfont42, gs_gsub_release, (void *)dpfont42);
776
0
        if (code < 0) {
777
0
            gs_free_object(dpfont42->memory, dpfont42->data.gsub, "gs_len_glyphs_release");
778
0
            dpfont42->data.gsub = NULL;
779
0
            pdfi_countdown(font);
780
0
            return code;
781
0
        }
782
0
        memcpy(dpfont42->data.gsub, spfont1->data.gsub, dpfont42->data.gsub_size);
783
0
    }
784
785
3.59k
    font->PDF_font = font_dict;
786
3.59k
    font->object_num = font_dict->object_num;
787
3.59k
    font->generation_num = font_dict->generation_num;
788
3.59k
    pdfi_countup(font->PDF_font);
789
790
    /* We want basefont and descriptor, but we can live without them */
791
3.59k
    font->BaseFont = NULL;
792
3.59k
    (void)pdfi_dict_knownget_type(ctx, font_dict, "BaseFont", PDF_NAME, &font->BaseFont);
793
3.59k
    font->FontDescriptor = NULL;
794
3.59k
    (void)pdfi_dict_knownget_type(ctx, font_dict, "FontDescriptor", PDF_DICT, (pdf_obj **)&font->FontDescriptor);
795
796
3.59k
    pdfi_countup(font->sfnt);
797
3.59k
    pdfi_countup(font->copyright);
798
3.59k
    pdfi_countup(font->notice);
799
3.59k
    pdfi_countup(font->fullname);
800
3.59k
    pdfi_countup(font->familyname);
801
802
3.59k
    if (font->BaseFont != NULL && ((pdf_name *)font->BaseFont)->length <= gs_font_name_max) {
803
3.54k
        memcpy(dpfont42->key_name.chars, ((pdf_name *)font->BaseFont)->data, ((pdf_name *)font->BaseFont)->length);
804
3.54k
        dpfont42->key_name.size = ((pdf_name *)font->BaseFont)->length;
805
3.54k
        memcpy(dpfont42->font_name.chars, ((pdf_name *)font->BaseFont)->data, ((pdf_name *)font->BaseFont)->length);
806
3.54k
        dpfont42->font_name.size = ((pdf_name *)font->BaseFont)->length;
807
3.54k
    }
808
809
3.59k
    font->Encoding = NULL;
810
3.59k
    font->ToUnicode = NULL;
811
3.59k
    font->Widths = NULL;
812
813
3.59k
    pdfi_font_set_first_last_char(ctx, font_dict, (pdf_font *)font);
814
3.59k
    (void)pdfi_font_create_widths(ctx, font_dict, (pdf_font*)font, (double)0.001);
815
816
3.59k
    font->descflags = 0;
817
3.59k
    if (font->FontDescriptor != NULL) {
818
3.59k
        code = pdfi_dict_get_int(ctx, font->FontDescriptor, "Flags", &font->descflags);
819
3.59k
        if (code >= 0) {
820
            /* If both the symbolic and non-symbolic flag are set,
821
               believe that latter.
822
             */
823
3.59k
            if ((font->descflags & 32) != 0)
824
3.57k
                font->descflags = (font->descflags & ~4);
825
3.59k
        }
826
3.59k
    }
827
828
3.59k
    tmp = NULL;
829
3.59k
    code = pdfi_dict_knownget(ctx, font_dict, "Encoding", &tmp);
830
3.59k
    if (code == 1) {
831
3.57k
        if ((pdfi_type_of(tmp) == PDF_NAME || pdfi_type_of(tmp) == PDF_DICT) && (font->descflags & 4) == 0) {
832
3.57k
            code = pdfi_create_Encoding(ctx, (pdf_font *)font, tmp, NULL, (pdf_obj **) & font->Encoding);
833
3.57k
        }
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
3.57k
        pdfi_countdown(tmp);
841
3.57k
        tmp = NULL;
842
3.57k
    }
843
16
    else {
844
16
        pdfi_countdown(tmp);
845
16
        tmp = NULL;
846
16
        code = gs_error_undefined;
847
16
    }
848
849
3.59k
    if (code < 0) {
850
16
        font->Encoding = spdffont->Encoding;
851
16
        pdfi_countup(font->Encoding);
852
16
    }
853
854
3.59k
    code = uid_copy(&font->pfont->UID, font->pfont->memory, "pdfi_copy_cff_font");
855
3.59k
    if (code < 0) {
856
0
        uid_set_invalid(&font->pfont->UID);
857
0
    }
858
3.59k
    if (spdffont->filename == NULL) {
859
3.59k
        code = pdfi_font_generate_pseudo_XUID(ctx, font_dict, font->pfont);
860
3.59k
        if (code < 0) {
861
0
            goto error;
862
0
        }
863
3.59k
    }
864
3.59k
    if (ctx->args.ignoretounicode != true) {
865
3.59k
        code = pdfi_dict_get(ctx, font_dict, "ToUnicode", (pdf_obj **)&tmp);
866
3.59k
        if (code >= 0 && pdfi_type_of(tmp) == PDF_STREAM) {
867
210
            pdf_cmap *tu = NULL;
868
210
            code = pdfi_read_cmap(ctx, tmp, &tu);
869
210
            pdfi_countdown(tmp);
870
210
            tmp = (pdf_obj *)tu;
871
210
        }
872
3.59k
        if (code < 0 || (tmp != NULL && pdfi_type_of(tmp) != PDF_CMAP)) {
873
3.38k
            pdfi_countdown(tmp);
874
3.38k
            tmp = NULL;
875
3.38k
            code = 0;
876
3.38k
        }
877
3.59k
    }
878
0
    else {
879
0
        tmp = NULL;
880
0
    }
881
3.59k
    font->ToUnicode = tmp;
882
3.59k
    pdfi_font_set_orig_fonttype(ctx, (pdf_font *)font);
883
884
3.59k
    code = gs_definefont(ctx->font_dir, (gs_font *) font->pfont);
885
3.59k
    if (code < 0) {
886
0
        goto error;
887
0
    }
888
889
3.59k
    code = pdfi_fapi_passfont((pdf_font *) font, 0, NULL, NULL, NULL, 0);
890
3.59k
    if (code < 0) {
891
0
        goto error;
892
0
    }
893
    /* object_num can be zero if the dictionary was defined inline */
894
3.59k
    if (font->object_num != 0) {
895
224
        (void)replace_cache_entry(ctx, (pdf_obj *) font);
896
224
    }
897
898
3.59k
    *tpdffont = (pdf_font *)font;
899
900
3.59k
error:
901
3.59k
    if (code < 0)
902
0
        pdfi_countdown(font);
903
3.59k
    return code;
904
3.59k
}
905
906
int pdfi_free_font_truetype(pdf_obj *font)
907
26.6k
{
908
26.6k
    pdf_font_truetype *ttfont = (pdf_font_truetype *)font;
909
910
26.6k
    if (ttfont->pfont)
911
26.6k
        gs_free_object(OBJ_MEMORY(ttfont), ttfont->pfont, "Free TrueType gs_font");
912
913
26.6k
    if (ttfont->Widths)
914
25.1k
        gs_free_object(OBJ_MEMORY(ttfont), ttfont->Widths, "Free TrueType font Widths array");
915
916
26.6k
    pdfi_countdown(ttfont->sfnt);
917
26.6k
    pdfi_countdown(ttfont->FontDescriptor);
918
26.6k
    pdfi_countdown(ttfont->Encoding);
919
26.6k
    pdfi_countdown(ttfont->BaseFont);
920
26.6k
    pdfi_countdown(ttfont->PDF_font);
921
26.6k
    pdfi_countdown(ttfont->ToUnicode);
922
26.6k
    pdfi_countdown(ttfont->filename);
923
26.6k
    pdfi_countdown(ttfont->post);
924
26.6k
    pdfi_countdown(ttfont->copyright);
925
26.6k
    pdfi_countdown(ttfont->notice);
926
26.6k
    pdfi_countdown(ttfont->fullname);
927
26.6k
    pdfi_countdown(ttfont->familyname);
928
929
26.6k
    gs_free_object(OBJ_MEMORY(ttfont), ttfont, "Free TrueType font");
930
931
26.6k
    return 0;
932
26.6k
}