Coverage Report

Created: 2025-06-10 07:27

/src/ghostpdl/pdf/pdf_font0.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
/* Include this first so that we don't get a macro redefnition of 'offsetof' */
17
#include "pdf_int.h"
18
19
/* code for type 0 (CID) font handling */
20
#include "gxfont.h"
21
#include "gxfont0.h"
22
23
#include "pdf_int.h"
24
#include "pdf_font.h"
25
#include "pdf_font0.h"
26
#include "pdf_font1C.h"
27
#include "pdf_font_types.h"
28
#include "pdf_stack.h"
29
#include "pdf_array.h"
30
#include "pdf_dict.h"
31
#include "pdf_file.h"
32
#include "pdf_cmap.h"
33
#include "pdf_deref.h"
34
35
#include "gsutil.h"        /* For gs_next_ids() */
36
37
static int
38
pdfi_font0_glyph_name(gs_font *pfont, gs_glyph index, gs_const_string *pstr)
39
0
{
40
0
    int code;
41
0
    pdf_font_type0 *pt0font = (pdf_font_type0 *)pfont->client_data;
42
0
    char gnm[64];
43
0
    pdf_context *ctx = pt0font->ctx;
44
0
    uint gindex = 0;
45
46
0
    gs_snprintf(gnm, 64, "%lu", (long)index);
47
0
    code = (*ctx->get_glyph_index)((gs_font *)pfont, (byte *)gnm, strlen(gnm), &gindex);
48
0
    if (code < 0)
49
0
        return code;
50
0
    code = (*ctx->get_glyph_name)(pfont, (gs_glyph)gindex, (gs_const_string *)pstr);
51
52
0
    return code;
53
0
}
54
55
static int
56
pdfi_font0_map_glyph_to_unicode(gs_font *font, gs_glyph glyph, int ch, ushort *u, unsigned int length)
57
27.2k
{
58
27.2k
    gs_glyph cc = glyph < GS_MIN_CID_GLYPH ? glyph : glyph - GS_MIN_CID_GLYPH;
59
27.2k
    pdf_font_type0 *pt0font = (pdf_font_type0 *)font->client_data;
60
27.2k
    int code = gs_error_undefined, i;
61
27.2k
    uchar *unicode_return = (uchar *)u;
62
27.2k
    pdf_cidfont_type2 *decfont = NULL;
63
27.2k
    pdfi_cid_subst_nwp_table_t *substnwp = pt0font->substnwp;
64
65
27.2k
    code = pdfi_array_get(pt0font->ctx, pt0font->DescendantFonts, 0, (pdf_obj **)&decfont);
66
27.2k
    if (code < 0 || pdfi_type_of(decfont) != PDF_FONT) {
67
0
        pdfi_countdown(decfont);
68
0
        return gs_error_undefined;
69
0
    }
70
71
27.2k
    code = gs_error_undefined;
72
27.5k
    while (1) { /* Loop to make retrying with a substitute CID easier */
73
        /* Favour the ToUnicode if one exists */
74
27.5k
        code = pdfi_tounicode_char_to_unicode(pt0font->ctx, (pdf_cmap *)pt0font->ToUnicode, glyph, ch, u, length);
75
76
27.5k
        if (code == gs_error_undefined && pt0font->decoding) {
77
1.37k
            const int *n;
78
79
1.37k
            if (cc / 256 < pt0font->decoding->nranges) {
80
1.37k
                n = (const int *)pt0font->decoding->ranges[cc / 256][cc % 256];
81
1.42k
                for (i = 0; i < pt0font->decoding->val_sizes; i++) {
82
1.42k
                    unsigned int cmapcc;
83
1.42k
                    if (n[i] == -1)
84
318
                        break;
85
1.11k
                    cc = n[i];
86
1.11k
                    cmapcc = (unsigned int)cc;
87
1.11k
                    if (decfont->pdfi_font_type == e_pdf_cidfont_type2)
88
1.11k
                        code = pdfi_fapi_check_cmap_for_GID((gs_font *)decfont->pfont, (unsigned int)cc, &cmapcc);
89
0
                    else
90
0
                        code = 0;
91
1.11k
                    if (code >= 0 && cmapcc != 0){
92
1.06k
                        code = 0;
93
1.06k
                        break;
94
1.06k
                    }
95
1.11k
                }
96
                /* If it's a TTF derived CIDFont, we prefer a code point supported by the cmap table
97
                   but if not, use the first available one
98
                 */
99
1.37k
                if (code < 0 && n[0] != -1) {
100
0
                    cc = n[0];
101
0
                    code = 0;
102
0
                }
103
1.37k
            }
104
1.37k
            if (code >= 0) {
105
1.06k
                if (cc > 65535) {
106
0
                    code = 4;
107
0
                    if (unicode_return != NULL && length >= code) {
108
0
                        unicode_return[0] = (cc & 0xFF000000)>> 24;
109
0
                        unicode_return[1] = (cc & 0x00FF0000) >> 16;
110
0
                        unicode_return[2] = (cc & 0x0000FF00) >> 8;
111
0
                        unicode_return[3] = (cc & 0x000000FF);
112
0
                    }
113
0
                }
114
1.06k
                else {
115
1.06k
                    code = 2;
116
1.06k
                    if (unicode_return != NULL && length >= code) {
117
1.06k
                        unicode_return[0] = (cc & 0x0000FF00) >> 8;
118
1.06k
                        unicode_return[1] = (cc & 0x000000FF);
119
1.06k
                    }
120
1.06k
                }
121
1.06k
            }
122
1.37k
        }
123
        /* If we get here, and still don't have a usable code point, check for a
124
           pre-defined CID substitution, and if there's one, jump back to the start
125
           and try again.
126
         */
127
27.5k
        if (code == gs_error_undefined && substnwp) {
128
456
            for (i = 0; substnwp->subst[i].s_type != 0; i++ ) {
129
435
                if (cc >= substnwp->subst[i].s_scid && cc <= substnwp->subst[i].e_scid) {
130
0
                    cc = substnwp->subst[i].s_dcid + (cc - substnwp->subst[i].s_scid);
131
0
                    substnwp = NULL;
132
0
                    break;
133
0
                }
134
435
                if (cc >= substnwp->subst[i].s_dcid
135
435
                 && cc <= substnwp->subst[i].s_dcid + (substnwp->subst[i].e_scid - substnwp->subst[i].s_scid)) {
136
296
                    cc = substnwp->subst[i].s_scid + (cc - substnwp->subst[i].s_dcid);
137
296
                    substnwp = NULL;
138
296
                    break;
139
296
                }
140
435
            }
141
317
            if (substnwp == NULL)
142
296
                continue;
143
317
        }
144
27.2k
        break;
145
27.5k
    }
146
27.2k
    pdfi_countdown(decfont);
147
27.2k
    return (code < 0 ? 0 : code);
148
27.2k
}
149
150
int pdfi_read_type0_font(pdf_context *ctx, pdf_dict *font_dict, pdf_dict *stream_dict, pdf_dict *page_dict, pdf_font **ppdffont)
151
2.22k
{
152
2.22k
    int code, nlen;
153
2.22k
    pdf_obj *cmap = NULL;
154
2.22k
    pdf_cmap *pcmap = NULL;
155
2.22k
    pdf_array *arr = NULL;
156
2.22k
    pdf_dict *decfontdict = NULL; /* there can only be one */
157
2.22k
    pdf_name *n = NULL;
158
2.22k
    pdf_obj *basefont = NULL;
159
2.22k
    pdf_obj *tounicode = NULL;
160
2.22k
    pdf_dict *dfontdesc = NULL;
161
2.22k
    pdf_dict *fontdesc = NULL;
162
2.22k
    pdf_stream *ffile = NULL;
163
2.22k
    pdf_font *descpfont = NULL;
164
2.22k
    pdf_font_type0 *pdft0 = NULL;
165
2.22k
    gs_font_type0 *pfont0 = NULL;
166
2.22k
    pdfi_cid_decoding_t *dec = NULL;
167
2.22k
    pdfi_cid_subst_nwp_table_t *substnwp = NULL;
168
169
    /* We're supposed to have a FontDescriptor, it can be missing, and we have to carry on */
170
2.22k
    (void)pdfi_dict_get(ctx, font_dict, "FontDescriptor", (pdf_obj **)&fontdesc);
171
172
2.22k
    if (fontdesc != NULL) {
173
8
        pdf_obj *Name = NULL;
174
175
8
        code = pdfi_dict_get_type(ctx, (pdf_dict *) fontdesc, "FontName", PDF_NAME, (pdf_obj**)&Name);
176
8
        if (code < 0)
177
0
            pdfi_set_warning(ctx, 0, NULL, W_PDF_FDESC_BAD_FONTNAME, "pdfi_load_font", "");
178
8
        pdfi_countdown(Name);
179
8
    }
180
181
2.22k
    code = pdfi_dict_get(ctx, font_dict, "Encoding", &cmap);
182
2.22k
    if (code < 0) goto error;
183
184
2.21k
    if (pdfi_type_of(cmap) == PDF_CMAP) {
185
0
        pcmap = (pdf_cmap *)cmap;
186
0
        cmap = NULL;
187
0
    }
188
2.21k
    else {
189
2.21k
        code = pdfi_read_cmap(ctx, cmap, &pcmap);
190
2.21k
        pdfi_countdown(cmap);
191
2.21k
        cmap = NULL;
192
2.21k
        if (code < 0) goto error;
193
2.21k
    }
194
195
2.19k
    code = pdfi_dict_get(ctx, font_dict, "DescendantFonts", (pdf_obj **)&arr);
196
2.19k
    if (code < 0) goto error;
197
198
2.13k
    if (pdfi_type_of(arr) != PDF_ARRAY || arr->size != 1) {
199
0
        code = gs_note_error(gs_error_invalidfont);
200
0
        goto error;
201
0
    }
202
2.13k
    code = pdfi_array_get(ctx, arr, 0, (pdf_obj **)&decfontdict);
203
2.13k
    pdfi_countdown(arr);
204
2.13k
    arr = NULL;
205
2.13k
    if (code < 0) goto error;
206
1.70k
    switch (pdfi_type_of(decfontdict)) {
207
101
        case PDF_FONT:
208
101
            descpfont = (pdf_font *)decfontdict;
209
101
            decfontdict = descpfont->PDF_font;
210
101
            pdfi_countup(decfontdict);
211
101
            break;
212
1.57k
        case PDF_DICT:
213
1.57k
            code = pdfi_dict_get(ctx, (pdf_dict *)decfontdict, "Type", (pdf_obj **)&n);
214
1.57k
            if (code < 0) goto error;
215
1.57k
            if (pdfi_type_of(n) != PDF_NAME || n->length != 4 || memcmp(n->data, "Font", 4) != 0) {
216
5
                pdfi_countdown(n);
217
5
                code = gs_note_error(gs_error_invalidfont);
218
5
                goto error;
219
5
            }
220
1.56k
            pdfi_countdown(n);
221
1.56k
            break;
222
31
        default:
223
31
            code = gs_note_error(gs_error_invalidfont);
224
31
            goto error;
225
1.70k
    }
226
#if 0
227
    code = pdfi_dict_get(ctx, (pdf_dict *)decfontdict, "Subtype", (pdf_obj **)&n);
228
    if (code < 0)
229
        goto error;
230
231
    if (pdfi_type_of(n) != PDF_NAME || n->length != 12 || memcmp(n->data, "CIDFontType", 11) != 0) {
232
        pdfi_countdown(n);
233
        code = gs_note_error(gs_error_invalidfont);
234
        goto error;
235
    }
236
    /* cidftype is ignored for now, but we may need to know it when
237
       subsitutions are allowed
238
     */
239
    cidftype = n->data[11] - 48;
240
241
    pdfi_countdown(n);
242
#endif
243
244
1.66k
    code = pdfi_dict_get(ctx, font_dict, "BaseFont", (pdf_obj **)&basefont);
245
1.66k
    if (code < 0) {
246
2
        basefont = NULL;
247
2
    }
248
249
1.66k
    if (ctx->args.ignoretounicode != true) {
250
1.66k
        code = pdfi_dict_get(ctx, font_dict, "ToUnicode", (pdf_obj **)&tounicode);
251
1.66k
        if (code >= 0 && pdfi_type_of(tounicode) == PDF_STREAM) {
252
1.20k
            pdf_cmap *tu = NULL;
253
1.20k
            code = pdfi_read_cmap(ctx, tounicode, &tu);
254
1.20k
            pdfi_countdown(tounicode);
255
1.20k
            tounicode = (pdf_obj *)tu;
256
1.20k
        }
257
1.66k
        if (code < 0 || (tounicode != NULL && pdfi_type_of(tounicode) != PDF_CMAP)) {
258
468
            pdfi_countdown(tounicode);
259
468
            tounicode = NULL;
260
468
            code = 0;
261
468
        }
262
1.66k
    }
263
0
    else {
264
0
        tounicode = NULL;
265
0
    }
266
267
1.66k
    if (descpfont == NULL) {
268
1.56k
        gs_font *pf;
269
270
1.56k
        code = pdfi_load_font(ctx, stream_dict, page_dict, decfontdict, &pf, true);
271
1.56k
        if (code < 0)
272
348
            goto error;
273
1.21k
        descpfont = (pdf_font *)pf->client_data;
274
1.21k
    }
275
276
1.32k
    if (descpfont->pdfi_font_type < e_pdf_cidfont_type0 || descpfont->pdfi_font_type > e_pdf_cidfont_type4) {
277
30
        code = gs_note_error(gs_error_invalidfont);
278
30
        goto error;
279
30
    }
280
281
1.29k
    if (descpfont != NULL && ((pdf_cidfont_t *)descpfont)->substitute) {
282
519
        pdf_obj *csi = NULL;
283
519
        pdf_string *reg = NULL, *ord = NULL;
284
519
        char *r = NULL, *o = NULL;
285
519
        int rlen = 0, olen = 0;
286
287
519
        code = pdfi_dict_get(ctx, decfontdict, "CIDSystemInfo", (pdf_obj **)&csi);
288
519
        if (code >= 0) {
289
489
            (void)pdfi_dict_get(ctx, (pdf_dict *)csi, "Registry", (pdf_obj **)&reg);
290
489
            (void)pdfi_dict_get(ctx, (pdf_dict *)csi, "Ordering", (pdf_obj **)&ord);
291
489
            if (reg != NULL && pdfi_type_of(reg) == PDF_STRING
292
489
             && ord != NULL && pdfi_type_of(ord) == PDF_STRING) {
293
483
                r = (char *)reg->data;
294
483
                rlen = reg->length;
295
483
                o = (char *)ord->data;
296
483
                olen = ord->length;
297
483
            }
298
489
            pdfi_countdown(csi);
299
489
            pdfi_countdown(reg);
300
489
            pdfi_countdown(ord);
301
489
        }
302
519
        if (r == NULL || o == NULL) {
303
36
            r = (char *)pcmap->csi_reg.data;
304
36
            rlen = pcmap->csi_reg.size;
305
36
            o = (char *)pcmap->csi_ord.data;
306
36
            olen = pcmap->csi_ord.size;
307
36
        }
308
519
        if (rlen > 0 && olen > 0)
309
519
            pdfi_cidfont_cid_subst_tables(r, rlen, o, olen, &dec, &substnwp);
310
311
519
        ((pdf_cidfont_t *)descpfont)->decoding = dec;
312
519
        ((pdf_cidfont_t *)descpfont)->substnwp = substnwp;
313
519
    }
314
    /* reference is now owned by the descendent font created above */
315
1.29k
    pdfi_countdown(decfontdict);
316
1.29k
    decfontdict = NULL;
317
1.29k
    if (code < 0) {
318
30
        code = gs_note_error(gs_error_invalidfont);
319
30
        goto error;
320
30
    }
321
    /* If we're got this far, we have a CMap and a descendant font, let's make the Type 0 */
322
1.26k
    pdft0 = (pdf_font_type0 *)gs_alloc_bytes(ctx->memory, sizeof(pdf_font_type0), "pdfi (type0 pdf_font)");
323
1.26k
    if (pdft0 == NULL) {
324
0
        code = gs_note_error(gs_error_VMerror);
325
0
        goto error;
326
0
    }
327
328
    /* This is the only font type these entries not relevant for */
329
1.26k
    pdft0->copyright = pdft0->notice = pdft0->fullname = pdft0->familyname = NULL;
330
331
1.26k
    code = pdfi_array_alloc(ctx, 1, &arr);
332
1.26k
    if (code < 0) {
333
0
        gs_free_object(ctx->memory, pdft0, "pdfi_read_type0_font(pdft0)");
334
0
        goto error;
335
0
    }
336
1.26k
    arr->refcnt = 1;
337
1.26k
    code = pdfi_array_put(ctx, arr, 0, (pdf_obj *)descpfont);
338
1.26k
    if (code < 0) {
339
0
        gs_free_object(ctx->memory, pdft0, "pdfi_read_type0_font(pdft0)");
340
0
        goto error;
341
0
    }
342
343
1.26k
    pdft0->type = PDF_FONT;
344
1.26k
    pdft0->pdfi_font_type = e_pdf_font_type0;
345
1.26k
    pdft0->ctx = ctx;
346
#if REFCNT_DEBUG
347
    pdft0->UID = ctx->UID++;
348
    outprintf(ctx->memory, "Allocated object of type %c with UID %"PRIi64"\n", pdft0->type, pdft0->UID);
349
#endif
350
1.26k
    pdft0->refcnt = 1;
351
1.26k
    pdft0->filename = NULL;
352
1.26k
    pdft0->object_num = font_dict->object_num;
353
1.26k
    pdft0->generation_num = font_dict->generation_num;
354
1.26k
    pdft0->indirect_num = font_dict->indirect_num;
355
1.26k
    pdft0->indirect_gen = font_dict->indirect_gen;
356
1.26k
    pdft0->Encoding = (pdf_obj *)pcmap;
357
1.26k
    pdft0->ToUnicode = tounicode;
358
1.26k
    tounicode = NULL;
359
1.26k
    pdft0->DescendantFonts = arr;
360
1.26k
    pdft0->PDF_font = font_dict;
361
1.26k
    pdfi_countup(font_dict);
362
1.26k
    pdft0->FontDescriptor = fontdesc;
363
1.26k
    fontdesc = NULL;
364
1.26k
    pdft0->BaseFont = basefont;
365
1.26k
    pdft0->decoding = dec;
366
1.26k
    pdft0->substnwp = substnwp;
367
368
    /* Ownership transferred to pdft0, if we jump to error
369
     * these will now be freed by counting down pdft0.
370
     */
371
1.26k
    tounicode = NULL;
372
1.26k
    arr = NULL;
373
1.26k
    basefont = NULL;
374
375
1.26k
    pdft0->pfont = NULL; /* In case we error out */
376
377
1.26k
    pfont0 = (gs_font_type0 *)gs_alloc_struct(ctx->memory, gs_font, &st_gs_font_type0, "pdfi gs type 0 font");
378
1.26k
    if (pfont0 == NULL) {
379
0
        gs_free_object(ctx->memory, pdft0, "pdfi_read_type0_font(pdft0)");
380
0
        code = gs_note_error(gs_error_VMerror);
381
0
        goto error;
382
0
    }
383
1.26k
    gs_make_identity(&pfont0->orig_FontMatrix);
384
1.26k
    gs_make_identity(&pfont0->FontMatrix);
385
1.26k
    pfont0->next = pfont0->prev = 0;
386
1.26k
    pfont0->memory = ctx->memory;
387
1.26k
    pfont0->dir = ctx->font_dir;
388
1.26k
    pfont0->is_resource = false;
389
1.26k
    gs_notify_init(&pfont0->notify_list, ctx->memory);
390
1.26k
    pfont0->id = gs_next_ids(ctx->memory, 1);
391
1.26k
    pfont0->base = (gs_font *) pfont0;
392
1.26k
    pfont0->client_data = pdft0;
393
1.26k
    pfont0->WMode = pcmap->wmode;
394
1.26k
    pfont0->FontType = ft_composite;
395
1.26k
    pfont0->PaintType = 0;
396
1.26k
    pfont0->StrokeWidth = 0;
397
1.26k
    pfont0->is_cached = 0;
398
1.26k
    if (pdft0->BaseFont != NULL) {
399
1.25k
        pdf_name *nobj = (pdf_name *)pdft0->BaseFont;
400
1.25k
        nlen = nobj->length > gs_font_name_max ? gs_font_name_max : nobj->length;
401
402
1.25k
        memcpy(pfont0->key_name.chars, nobj->data, nlen);
403
1.25k
        pfont0->key_name.size = nlen;
404
1.25k
        memcpy(pfont0->font_name.chars, nobj->data, nlen);
405
1.25k
        pfont0->font_name.size = nlen;
406
1.25k
    }
407
2
    else {
408
2
        nlen = descpfont->pfont->key_name.size > gs_font_name_max ? gs_font_name_max : descpfont->pfont->key_name.size;
409
410
2
        memcpy(pfont0->key_name.chars, descpfont->pfont->key_name.chars, nlen);
411
2
        pfont0->key_name.size = nlen;
412
2
        memcpy(pfont0->font_name.chars, descpfont->pfont->font_name.chars, nlen);
413
2
        pfont0->font_name.size = nlen;
414
2
    }
415
416
1.26k
    if (pcmap->name.size > 0) {
417
1.25k
        if (pfont0->key_name.size + pcmap->name.size + 1 < gs_font_name_max) {
418
1.20k
            memcpy(pfont0->key_name.chars + pfont0->key_name.size, "-", 1);
419
1.20k
            memcpy(pfont0->key_name.chars + pfont0->key_name.size + 1, pcmap->name.data, pcmap->name.size);
420
1.20k
            pfont0->key_name.size += pcmap->name.size + 1;
421
1.20k
        }
422
1.25k
        if (pfont0->font_name.size + pcmap->name.size + 1 < gs_font_name_max) {
423
1.20k
            memcpy(pfont0->font_name.chars + pfont0->font_name.size, "-", 1);
424
1.20k
            memcpy(pfont0->font_name.chars + pfont0->font_name.size + 1, pcmap->name.data, pcmap->name.size);
425
1.20k
            pfont0->font_name.size += pcmap->name.size + 1;
426
1.20k
        }
427
1.25k
    }
428
1.26k
    pfont0->procs.define_font = gs_no_define_font;
429
1.26k
    pfont0->procs.make_font = gs_no_make_font;
430
1.26k
    pfont0->procs.font_info = gs_default_font_info;
431
1.26k
    pfont0->procs.same_font = gs_default_same_font;
432
1.26k
    pfont0->procs.encode_char = pdfi_encode_char;
433
1.26k
    pfont0->procs.decode_glyph = pdfi_font0_map_glyph_to_unicode;
434
1.26k
    pfont0->procs.enumerate_glyph = gs_no_enumerate_glyph;
435
1.26k
    pfont0->procs.glyph_info = gs_default_glyph_info;
436
1.26k
    pfont0->procs.glyph_outline = gs_no_glyph_outline;
437
1.26k
    pfont0->procs.glyph_name = pdfi_font0_glyph_name;
438
1.26k
    pfont0->procs.init_fstack = gs_type0_init_fstack;
439
1.26k
    pfont0->procs.next_char_glyph = gs_type0_next_char_glyph;
440
1.26k
    pfont0->procs.build_char = gs_no_build_char;
441
442
1.26k
    pfont0->data.FMapType = fmap_CMap;
443
1.26k
    pfont0->data.EscChar = 0xff;
444
1.26k
    pfont0->data.ShiftIn = 0x0f;
445
1.26k
    pfont0->data.SubsVector.data = NULL;
446
1.26k
    pfont0->data.SubsVector.size = 0;
447
1.26k
    pfont0->data.subs_size = pfont0->data.subs_width = 0;
448
449
1.26k
    pfont0->data.Encoding = (uint *)gs_alloc_bytes(ctx->memory, sizeof(uint), "pdfi_read_type0_font Encoding");
450
1.26k
    if (pfont0->data.Encoding == NULL) {
451
0
        gs_free_object(ctx->memory, pfont0, "pdfi_read_type0_font(pfont0)");
452
0
        code = gs_note_error(gs_error_VMerror);
453
0
        goto error;
454
0
    }
455
1.26k
    *pfont0->data.Encoding = 0;
456
457
1.26k
    pfont0->data.encoding_size = 1;
458
1.26k
    pfont0->data.FDepVector = (gs_font **)gs_alloc_bytes(ctx->memory, sizeof(gs_font *), "pdfi_read_type0_font FDepVector");
459
1.26k
    if (pfont0->data.FDepVector == NULL) {
460
        /* We transferred ownership of pcmap to pfont0 above, but we didn't null the pointer
461
         * so we could keep using it. We must NULL it out before returning an error to prevent
462
         * reference counting problems.
463
         */
464
0
        pcmap = NULL;
465
0
        gs_free_object(ctx->memory, pfont0, "pdfi_read_type0_font(pfont0)");
466
0
        code = gs_note_error(gs_error_VMerror);
467
0
        goto error;
468
0
    }
469
1.26k
    *pfont0->data.FDepVector = (gs_font *)descpfont->pfont;
470
1.26k
    pdfi_countdown(descpfont);
471
1.26k
    descpfont = NULL;
472
1.26k
    pfont0->data.fdep_size = 1;
473
1.26k
    pfont0->data.CMap = (gs_cmap_t *)pcmap->gscmap;
474
475
    /* NULL he pointer to prevent any reference counting problems, ownership was
476
     * transferred to pfont0, but we maintained the pointer for easy access until this
477
     * point.
478
     */
479
1.26k
    pcmap = NULL;
480
481
1.26k
    pdft0->pfont = (gs_font_base *)pfont0;
482
483
1.26k
    code = gs_definefont(ctx->font_dir, (gs_font *)pdft0->pfont);
484
1.26k
    if (code < 0) {
485
0
        gs_free_object(ctx->memory, pfont0, "pdfi_read_type0_font(pfont0)");
486
0
        code = gs_note_error(gs_error_VMerror);
487
0
        goto error;
488
0
    }
489
490
    /* object_num can be zero if the dictionary was defined inline */
491
1.26k
    if (pdft0->object_num != 0) {
492
1.25k
        (void)replace_cache_entry(ctx, (pdf_obj *)pdft0);
493
1.25k
    }
494
495
1.26k
    *ppdffont = (pdf_font *)pdft0;
496
1.26k
    return 0;
497
498
967
error:
499
967
    (void)pdfi_set_error_var(ctx, code, NULL, E_PDF_BADSTREAM, "pdfi_read_type0_font", "Error reading embedded Type0 font object %u\n", font_dict->object_num);
500
501
967
    pdfi_countdown(arr);
502
967
    pdfi_countdown(pcmap);
503
967
    pdfi_countdown(tounicode);
504
967
    pdfi_countdown(basefont);
505
967
    pdfi_countdown(decfontdict);
506
967
    pdfi_countdown(dfontdesc);
507
967
    pdfi_countdown(fontdesc);
508
967
    pdfi_countdown(ffile);
509
967
    pdfi_countdown(descpfont);
510
967
    pdfi_countdown(pdft0);
511
512
967
    return code;
513
1.26k
}
514
515
int
516
pdfi_free_font_type0(pdf_obj *font)
517
1.26k
{
518
1.26k
    pdf_font_type0 *pdft0 = (pdf_font_type0 *)font;
519
1.26k
    gs_font_type0 *pfont0 = (gs_font_type0 *)pdft0->pfont;
520
1.26k
    pdfi_countdown(pdft0->PDF_font);
521
1.26k
    pdfi_countdown(pdft0->BaseFont);
522
1.26k
    pdfi_countdown(pdft0->FontDescriptor);
523
1.26k
    pdfi_countdown(pdft0->Encoding);
524
1.26k
    pdfi_countdown(pdft0->DescendantFonts);
525
1.26k
    pdfi_countdown(pdft0->ToUnicode);
526
1.26k
    pdfi_countdown(pdft0->filename);
527
1.26k
    pdfi_countdown(pdft0->copyright);
528
1.26k
    pdfi_countdown(pdft0->notice);
529
1.26k
    pdfi_countdown(pdft0->fullname);
530
1.26k
    pdfi_countdown(pdft0->familyname);
531
532
1.26k
    gs_free_object(OBJ_MEMORY(pdft0), pfont0->data.Encoding, "pdfi_free_font_type0(data.Encoding)");
533
    /* We shouldn't need to free the fonts in the FDepVector, that should happen
534
        with DescendantFonts above.
535
     */
536
1.26k
    gs_free_object(OBJ_MEMORY(pdft0), pfont0->data.FDepVector, "pdfi_free_font_type0(data.FDepVector)");
537
1.26k
    gs_free_object(OBJ_MEMORY(pdft0), pfont0, "pdfi_free_font_type0(pfont0)");
538
1.26k
    gs_free_object(OBJ_MEMORY(pdft0), pdft0, "pdfi_free_font_type0(pdft0)");
539
540
1.26k
    return 0;
541
1.26k
}