Coverage Report

Created: 2026-08-08 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ghostpdl/pdf/pdf_dict.c
Line
Count
Source
1
/* Copyright (C) 2018-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
/* dictionary handling for the PDF interpreter */
17
#include "ghostpdf.h"
18
#include "pdf_types.h"
19
#include "pdf_deref.h"
20
#include "pdf_dict.h"
21
#include "pdf_stack.h"
22
#include "pdf_array.h"
23
#include "pdf_int.h"
24
#include "pdf_loop_detect.h"
25
#include "pdf_misc.h"
26
27
static int pdfi_dict_find(pdf_context *ctx, pdf_dict *d, const char *Key, bool sort);
28
static int pdfi_dict_find_key(pdf_context *ctx, pdf_dict *d, const pdf_name *Key, bool sort);
29
30
void pdfi_free_dict(pdf_obj *o)
31
10.6M
{
32
10.6M
    pdf_dict *d = (pdf_dict *)o;
33
10.6M
    int i;
34
#if DEBUG_DICT
35
    pdf_name *name;
36
#endif
37
38
102M
    for (i=0;i < d->entries;i++) {
39
#if DEBUG_DICT
40
        name = (pdf_name *)d->list[i].key;
41
#endif
42
92.0M
        if (d->list[i].value != NULL)
43
91.8M
            pdfi_countdown(d->list[i].value);
44
92.0M
        if (d->list[i].key != NULL)
45
91.8M
            pdfi_countdown(d->list[i].key);
46
92.0M
    }
47
10.6M
    gs_free_object(OBJ_MEMORY(d), d->list, "pdf interpreter free dictionary key/values");
48
10.6M
    gs_free_object(OBJ_MEMORY(d), d, "pdf interpreter free dictionary");
49
10.6M
}
50
51
/* Delete a key pair, either by specifying a char * or a pdf_name *
52
 */
53
static int pdfi_dict_delete_inner(pdf_context *ctx, pdf_dict *d, pdf_name *n, const char *str)
54
162k
{
55
162k
    int i = 0;
56
#if DEBUG_DICT
57
    pdf_name *name;
58
#endif
59
60
162k
    if (n != NULL)
61
9.75k
        i = pdfi_dict_find_key(ctx, d, (const pdf_name *)n, false);
62
153k
    else
63
153k
        i = pdfi_dict_find(ctx, d, str, false);
64
65
162k
    if (i < 0)
66
56
        return i;
67
68
162k
    pdfi_countdown(d->list[i].key);
69
162k
    pdfi_countdown(d->list[i].value);
70
162k
    d->entries--;
71
162k
    if (i != d->entries)
72
11.3k
        memmove(&d->list[i], &d->list[i+1], (d->entries - i) * sizeof(d->list[0]));
73
162k
    d->list[d->entries].key = NULL;
74
162k
    d->list[d->entries].value = NULL;
75
162k
    d->is_sorted = false;
76
162k
    return 0;
77
162k
}
78
79
int pdfi_dict_delete_pair(pdf_context *ctx, pdf_dict *d, pdf_name *n)
80
9.75k
{
81
9.75k
    return pdfi_dict_delete_inner(ctx, d, n, NULL);
82
9.75k
}
83
84
int pdfi_dict_delete(pdf_context *ctx, pdf_dict *d, const char *str)
85
153k
{
86
153k
    return pdfi_dict_delete_inner(ctx, d, NULL, str);
87
153k
}
88
89
/* This function is provided for symmetry with arrays, and in case we ever
90
 * want to change the behaviour of pdfi_dict_from_stack() and pdfi_dict_alloc()
91
 * similarly to the array behaviour, where we always have null PDF objects
92
 * rather than NULL pointers stored in the dictionary.
93
 */
94
int pdfi_dict_alloc(pdf_context *ctx, uint64_t size, pdf_dict **d)
95
10.6M
{
96
10.6M
    *d = NULL;
97
10.6M
    return pdfi_object_alloc(ctx, PDF_DICT, size, (pdf_obj **)d);
98
10.6M
}
99
100
static int pdfi_dict_name_from_string(pdf_context *ctx, pdf_string *s, pdf_name **n)
101
0
{
102
0
    int code = pdfi_object_alloc(ctx, PDF_NAME, s->length, (pdf_obj **)n);
103
0
    if (code >= 0) {
104
0
        memcpy((*n)->data, s->data, s->length);
105
0
        pdfi_countup(*n);
106
0
    }
107
0
    return code;
108
0
}
109
110
int pdfi_dict_from_stack(pdf_context *ctx, uint32_t indirect_num, uint32_t indirect_gen, bool convert_string_keys)
111
10.0M
{
112
10.0M
    uint64_t index = 0;
113
10.0M
    pdf_dict *d = NULL;
114
10.0M
    uint64_t i = 0;
115
10.0M
    int code;
116
#if DEBUG_DICT
117
    pdf_name *key;
118
#endif
119
120
10.0M
    code = pdfi_count_to_mark(ctx, &index);
121
10.0M
    if (code < 0) {
122
119k
        pdfi_clear_to_mark(ctx);
123
119k
        return code;
124
119k
    }
125
126
9.90M
    if (index & 1) {
127
182k
        pdfi_clear_to_mark(ctx);
128
182k
        return_error(gs_error_rangecheck);
129
182k
    }
130
131
9.72M
    code = pdfi_dict_alloc(ctx, index >> 1, &d);
132
9.72M
    if (code < 0) {
133
0
        pdfi_clear_to_mark(ctx);
134
0
        return code;
135
0
    }
136
137
9.72M
    d->entries = d->size;
138
139
57.6M
    while (index) {
140
47.9M
        i = (index / 2) - 1;
141
142
        /* In PDF keys are *required* to be names, so we ought to check that here */
143
47.9M
        if (pdfi_type_of((pdf_obj *)ctx->stack_top[-2]) == PDF_NAME) {
144
47.9M
            d->list[i].key = ctx->stack_top[-2];
145
47.9M
            pdfi_countup(d->list[i].key);
146
#if DEBUG_DICT
147
            key = (pdf_name *)d->list[i].key;
148
#endif
149
47.9M
            d->list[i].value = ctx->stack_top[-1];
150
47.9M
            pdfi_countup(d->list[i].value);
151
47.9M
        } else {
152
37.8k
            if (convert_string_keys && (pdfi_type_of((pdf_obj *)ctx->stack_top[-2]) == PDF_STRING)) {
153
0
                pdf_name *n;
154
0
                code = pdfi_dict_name_from_string(ctx, (pdf_string *)ctx->stack_top[-2], &n);
155
0
                if (code < 0) {
156
0
                    pdfi_free_dict((pdf_obj *)d);
157
0
                    pdfi_clear_to_mark(ctx);
158
0
                    return_error(gs_error_typecheck);
159
0
                }
160
0
                d->list[i].key = (pdf_obj *)n; /* pdfi_dict_name_from_string() sets refcnt to 1 */
161
0
                d->list[i].value = ctx->stack_top[-1];
162
0
                pdfi_countup(d->list[i].value);
163
0
            }
164
37.8k
            else {
165
37.8k
                pdfi_free_dict((pdf_obj *)d);
166
37.8k
                pdfi_clear_to_mark(ctx);
167
37.8k
                return_error(gs_error_typecheck);
168
37.8k
            }
169
37.8k
        }
170
171
47.9M
        pdfi_pop(ctx, 2);
172
47.9M
        index -= 2;
173
47.9M
    }
174
175
9.68M
    code = pdfi_clear_to_mark(ctx);
176
9.68M
    if (code < 0) {
177
0
        pdfi_free_dict((pdf_obj *)d);
178
0
        return code;
179
0
    }
180
181
9.68M
    if (ctx->args.pdfdebug)
182
0
        outprintf (ctx->memory, "\n >>\n");
183
184
9.68M
    d->indirect_num = indirect_num;
185
9.68M
    d->indirect_gen = indirect_gen;
186
187
9.68M
    code = pdfi_push(ctx, (pdf_obj *)d);
188
9.68M
    if (code < 0)
189
0
        pdfi_free_dict((pdf_obj *)d);
190
191
9.68M
    return code;
192
9.68M
}
193
194
/* Convenience routine for common case where there are two possible keys */
195
int
196
pdfi_dict_get2(pdf_context *ctx, pdf_dict *d, const char *Key1,
197
               const char *Key2, pdf_obj **o)
198
1.22M
{
199
1.22M
    int code;
200
201
    /* ISO 32000-2:2020 (PDF 2.0) - abbreviated names take precendence. Assume abbreviated names are shorter :-) */
202
1.22M
    if (strlen(Key1) < strlen(Key2)) {
203
0
        code = pdfi_dict_get(ctx, d, Key1, o);
204
0
        if (code == gs_error_undefined)
205
0
            code = pdfi_dict_get(ctx, d, Key2, o);
206
1.22M
    } else {
207
1.22M
        code = pdfi_dict_get(ctx, d, Key2, o);
208
1.22M
        if (code == gs_error_undefined)
209
1.01M
            code = pdfi_dict_get(ctx, d, Key1, o);
210
1.22M
    }
211
1.22M
    return code;
212
1.22M
}
213
214
static int pdfi_dict_compare_entry(const void *a, const void *b)
215
1.01G
{
216
1.01G
    pdf_name *key_a = (pdf_name *)((pdf_dict_entry *)a)->key, *key_b = (pdf_name *)((pdf_dict_entry *)b)->key;
217
218
1.01G
    if (key_a == NULL) {
219
526k
        if (key_b == NULL)
220
526k
            return 0;
221
0
        else
222
0
            return 1;
223
526k
    }
224
225
1.01G
    if (key_b == NULL)
226
105k
        return -1;
227
228
1.01G
    if (key_a->length != key_b->length)
229
322M
        return key_a->length - key_b->length;
230
231
693M
    return strncmp((const char *)key_a->data, (const char *)key_b->data, key_a->length);
232
1.01G
}
233
234
static int pdfi_dict_find_sorted(pdf_context *ctx, pdf_dict *d, const char *Key)
235
68.8M
{
236
68.8M
    int start = 0, end = d->size - 1, middle = 0, keylen = strlen(Key);
237
68.8M
    pdf_name *test_key;
238
239
589M
    while (start <= end) {
240
587M
        middle = start + (end - start) / 2;
241
587M
        test_key = (pdf_name *)d->list[middle].key;
242
243
        /* Sorting pushes unused key/values (NULL) to the end of the dictionary */
244
587M
        if (test_key == NULL) {
245
727k
            end = middle - 1;
246
727k
            continue;
247
727k
        }
248
249
586M
        if (test_key->length == keylen) {
250
375M
            int result = strncmp((const char *)test_key->data, Key, keylen);
251
252
375M
            if (result == 0)
253
66.0M
                return middle;
254
309M
            if (result < 0)
255
158M
                start = middle + 1;
256
150M
            else
257
150M
                end = middle - 1;
258
309M
        } else {
259
211M
            if (test_key->length < keylen)
260
84.5M
                start = middle + 1;
261
126M
            else
262
126M
                end = middle -1;
263
211M
        }
264
586M
    }
265
2.79M
    return gs_note_error(gs_error_undefined);
266
68.8M
}
267
268
static int pdfi_dict_find_unsorted(pdf_context *ctx, pdf_dict *d, const char *Key)
269
132M
{
270
132M
    int i;
271
132M
    pdf_name *t;
272
273
18.0G
    for (i=0;i< d->entries;i++) {
274
17.9G
        t = (pdf_name *)d->list[i].key;
275
276
17.9G
        if (t && pdfi_type_of(t) == PDF_NAME) {
277
17.9G
            if (pdfi_name_is((pdf_name *)t, Key)) {
278
49.6M
                return i;
279
49.6M
            }
280
17.9G
        }
281
17.9G
    }
282
132M
    return_error(gs_error_undefined);
283
132M
}
284
285
static int pdfi_dict_find(pdf_context *ctx, pdf_dict *d, const char *Key, bool sort)
286
201M
{
287
201M
    if (!d->is_sorted) {
288
133M
        if (d->entries > 32 && sort) {
289
289k
            qsort(d->list, d->size, sizeof(pdf_dict_entry), pdfi_dict_compare_entry);
290
289k
            d->is_sorted = true;
291
289k
            return pdfi_dict_find_sorted(ctx, d, Key);
292
289k
        } else
293
132M
            return pdfi_dict_find_unsorted(ctx, d, Key);
294
133M
    } else
295
68.5M
        return pdfi_dict_find_sorted(ctx, d, Key);
296
201M
}
297
298
static int pdfi_dict_find_key(pdf_context *ctx, pdf_dict *d, const pdf_name *Key, bool sort)
299
113M
{
300
113M
    char *Test = NULL;
301
113M
    int index = 0;
302
303
113M
    Test = (char *)gs_alloc_bytes(ctx->memory, (size_t)Key->length + 1, "pdfi_dict_find_key");
304
113M
    if (Test == NULL)
305
0
        return_error(gs_error_VMerror);
306
307
113M
    memcpy(Test, Key->data, Key->length);
308
113M
    Test[Key->length] = 0x00;
309
310
113M
    index = pdfi_dict_find(ctx, d, Test, sort);
311
312
113M
    gs_free_object(ctx->memory, Test, "pdfi_dict_find_key");
313
113M
    return index;
314
113M
}
315
316
/* The object returned by pdfi_dict_get has its reference count incremented by 1 to
317
 * indicate the reference now held by the caller, in **o.
318
 */
319
int pdfi_dict_get_common(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj **o, bool cache)
320
38.8M
{
321
38.8M
    int index = 0, code = 0;
322
323
38.8M
    *o = NULL;
324
325
38.8M
    if (pdfi_type_of(d) != PDF_DICT)
326
43.6k
        return_error(gs_error_typecheck);
327
328
38.7M
    index = pdfi_dict_find(ctx, d, Key, true);
329
38.7M
    if (index < 0)
330
8.83M
        return index;
331
332
29.9M
    if (pdfi_type_of(d->list[index].value) == PDF_INDIRECT) {
333
1.29M
        pdf_indirect_ref *r = (pdf_indirect_ref *)d->list[index].value;
334
335
1.29M
        if (r->ref_object_num == d->object_num)
336
561
            return_error(gs_error_circular_reference);
337
338
1.29M
        if (cache)
339
1.29M
            code = pdfi_deref_loop_detect(ctx, r->ref_object_num, r->ref_generation_num, o);
340
0
        else
341
0
            code = pdfi_deref_loop_detect_nocache(ctx, r->ref_object_num, r->ref_generation_num, o);
342
1.29M
        if (code < 0)
343
402k
            return code;
344
        /* The file Bug690138.pdf has font dictionaries which contain ToUnicode keys where
345
         * the value is an indirect reference to the same font object. If we replace the
346
         * indirect reference in the dictionary with the font dictionary it becomes self
347
         * referencing and never counts down to 0, leading to a memory leak.
348
         * This is clearly an error, so flag it and don't replace the indirect reference.
349
         */
350
894k
        if ((*o) < (pdf_obj *)(uintptr_t)(TOKEN__LAST_KEY)) {
351
            /* "FAST" object, therefore can't be a problem. */
352
570
            pdfi_countdown(d->list[index].value);
353
570
            d->list[index].value = *o;
354
893k
        } else if ((*o)->object_num == 0 || (*o)->object_num != d->object_num) {
355
893k
            pdfi_countdown(d->list[index].value);
356
893k
            d->list[index].value = *o;
357
893k
        } else {
358
0
            code = pdfi_set_error_stop(ctx, gs_note_error(gs_error_undefinedresult), NULL, E_DICT_SELF_REFERENCE, "pdfi_dict_get", NULL);
359
0
            return code;
360
0
        }
361
894k
    }
362
29.5M
    *o = d->list[index].value;
363
29.5M
    pdfi_countup(*o);
364
365
29.5M
    return code;
366
29.9M
}
367
368
/* Get object from dict without resolving indirect references
369
 * Will inc refcnt by 1
370
 */
371
int pdfi_dict_get_no_deref(pdf_context *ctx, pdf_dict *d, const pdf_name *Key, pdf_obj **o)
372
87.1k
{
373
87.1k
    int index=0;
374
375
87.1k
    *o = NULL;
376
377
87.1k
    if (pdfi_type_of(d) != PDF_DICT)
378
0
        return_error(gs_error_typecheck);
379
380
87.1k
    index = pdfi_dict_find_key(ctx, d, Key, true);
381
87.1k
    if (index < 0)
382
0
        return index;
383
384
87.1k
    *o = d->list[index].value;
385
87.1k
    pdfi_countup(*o);
386
87.1k
    return 0;
387
87.1k
}
388
389
/* Get by pdf_name rather than by char *
390
 * The object returned by pdfi_dict_get has its reference count incremented by 1 to
391
 * indicate the reference now held by the caller, in **o.
392
 */
393
int pdfi_dict_get_by_key(pdf_context *ctx, pdf_dict *d, const pdf_name *Key, pdf_obj **o)
394
69.7M
{
395
69.7M
    int index=0, code = 0;
396
397
69.7M
    *o = NULL;
398
399
69.7M
    if (pdfi_type_of(d) != PDF_DICT)
400
228
        return_error(gs_error_typecheck);
401
402
69.7M
    index = pdfi_dict_find_key(ctx, d, Key, true);
403
69.7M
    if (index < 0)
404
3.77M
        return index;
405
406
65.9M
    if (pdfi_type_of(d->list[index].value) == PDF_INDIRECT) {
407
68.6k
        pdf_indirect_ref *r = (pdf_indirect_ref *)d->list[index].value;
408
409
68.6k
        code = pdfi_deref_loop_detect(ctx, r->ref_object_num, r->ref_generation_num, o);
410
68.6k
        if (code < 0)
411
25.2k
            return code;
412
43.3k
        pdfi_countdown(d->list[index].value);
413
43.3k
        d->list[index].value = *o;
414
43.3k
    }
415
65.9M
    *o = d->list[index].value;
416
65.9M
    pdfi_countup(*o);
417
65.9M
    return 0;
418
65.9M
}
419
420
/* Get indirect reference without de-referencing it */
421
int pdfi_dict_get_ref(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_indirect_ref **o)
422
0
{
423
0
    int index=0;
424
425
0
    *o = NULL;
426
427
0
    if (pdfi_type_of(d) != PDF_DICT)
428
0
        return_error(gs_error_typecheck);
429
430
0
    index = pdfi_dict_find(ctx, d, Key, true);
431
0
    if (index < 0)
432
0
        return index;
433
434
0
    if (pdfi_type_of(d->list[index].value) == PDF_INDIRECT) {
435
0
        *o = (pdf_indirect_ref *)d->list[index].value;
436
0
        pdfi_countup(*o);
437
0
        return 0;
438
0
    } else {
439
0
        return_error(gs_error_typecheck);
440
0
    }
441
0
}
442
443
/* As per pdfi_dict_get(), but doesn't replace an indirect reference in a dictionary with a
444
 * new object. This is for Resources following, such as Do, where we will have to seek and
445
 * read the indirect object anyway, and we need to ensure that Form XObjects (for example)
446
 * don't have circular calls.
447
 *
448
 * Takes either strKey or nameKey param. Other will be NULL.
449
 */
450
static int pdfi_dict_get_no_store_R_inner(pdf_context *ctx, pdf_dict *d, const char *strKey,
451
                                          const pdf_name *nameKey, pdf_obj **o)
452
2.99M
{
453
2.99M
    int index=0, code = 0;
454
455
2.99M
    *o = NULL;
456
457
2.99M
    if (pdfi_type_of(d) != PDF_DICT)
458
0
        return_error(gs_error_typecheck);
459
460
2.99M
    if (strKey == NULL)
461
2.38M
        index = pdfi_dict_find_key(ctx, d, nameKey, true);
462
609k
    else
463
609k
        index = pdfi_dict_find(ctx, d, strKey, true);
464
465
2.99M
    if (index < 0)
466
110k
        return index;
467
468
2.87M
    if (pdfi_type_of(d->list[index].value) == PDF_INDIRECT) {
469
2.41M
        pdf_indirect_ref *r = (pdf_indirect_ref *)d->list[index].value;
470
471
2.41M
        code = pdfi_dereference(ctx, r->ref_object_num, r->ref_generation_num, o);
472
2.41M
        if (code < 0)
473
982k
            return code;
474
2.41M
    } else {
475
463k
        *o = d->list[index].value;
476
463k
        pdfi_countup(*o);
477
463k
    }
478
1.89M
    return 0;
479
2.87M
}
480
481
/* Wrapper to pdfi_dict_no_store_R_inner(), takes a char * as Key */
482
int pdfi_dict_get_no_store_R(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj **o)
483
609k
{
484
609k
    return pdfi_dict_get_no_store_R_inner(ctx, d, Key, NULL, o);
485
609k
}
486
487
/* Wrapper to pdfi_dict_no_store_R_inner(), takes a pdf_name * as Key */
488
int pdfi_dict_get_no_store_R_key(pdf_context *ctx, pdf_dict *d, const pdf_name *Key, pdf_obj **o)
489
2.38M
{
490
2.38M
    return pdfi_dict_get_no_store_R_inner(ctx, d, NULL, Key, o);
491
2.38M
}
492
493
/* Convenience routine for common case where there are two possible keys */
494
int
495
pdfi_dict_get_type2(pdf_context *ctx, pdf_dict *d, const char *Key1, const char *Key2, pdf_obj_type type, pdf_obj **o)
496
0
{
497
0
    int code;
498
499
    /* ISO 32000-2:2020 (PDF 2.0) - abbreviated names take precendence. Assume abbreviated names are shorter :-) */
500
0
    if (strlen(Key1) < strlen(Key2)) {
501
0
        code = pdfi_dict_get_type(ctx, d, Key1, type, o);
502
0
        if (code == gs_error_undefined)
503
0
            code = pdfi_dict_get_type(ctx, d, Key2, type, o);
504
0
    } else {
505
0
        code = pdfi_dict_get_type(ctx, d, Key2, type, o);
506
0
        if (code == gs_error_undefined)
507
0
            code = pdfi_dict_get_type(ctx, d, Key1, type, o);
508
0
    }
509
0
    return code;
510
0
}
511
512
int pdfi_dict_get_type(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj_type type, pdf_obj **o)
513
18.8M
{
514
18.8M
    int code;
515
516
18.8M
    code = pdfi_dict_get(ctx, d, Key, o);
517
18.8M
    if (code < 0)
518
1.90M
        return code;
519
520
16.9M
    if (pdfi_type_of(*o) != type) {
521
16.9k
        pdfi_countdown(*o);
522
16.9k
        *o = NULL;
523
16.9k
        return_error(gs_error_typecheck);
524
16.9k
    }
525
16.8M
    return 0;
526
16.9M
}
527
528
int pdfi_dict_get_type_no_store_R(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj_type type, pdf_obj **o)
529
208
{
530
208
    int code;
531
532
208
    code = pdfi_dict_get_no_store_R(ctx, d, Key, o);
533
208
    if (code < 0)
534
15
        return code;
535
536
193
    if (pdfi_type_of(*o) != type) {
537
1
        pdfi_countdown(*o);
538
1
        *o = NULL;
539
1
        return_error(gs_error_typecheck);
540
1
    }
541
192
    return 0;
542
193
}
543
544
/* Convenience routine for common case where value has two possible keys */
545
int
546
pdfi_dict_get_int2(pdf_context *ctx, pdf_dict *d, const char *Key1,
547
                   const char *Key2, int64_t *i)
548
307k
{
549
307k
    int code;
550
551
    /* ISO 32000-2:2020 (PDF 2.0) - abbreviated names take precendence. Assume abbreviated names are shorter :-) */
552
307k
    if (strlen(Key1) < strlen(Key2)) {
553
0
        code = pdfi_dict_get_int(ctx, d, Key1, i);
554
0
        if (code == gs_error_undefined)
555
0
            code = pdfi_dict_get_int(ctx, d, Key2, i);
556
307k
    } else {
557
307k
        code = pdfi_dict_get_int(ctx, d, Key2, i);
558
307k
        if (code == gs_error_undefined)
559
98.6k
            code = pdfi_dict_get_int(ctx, d, Key1, i);
560
307k
    }
561
307k
    return code;
562
307k
}
563
564
int pdfi_dict_get_int(pdf_context *ctx, pdf_dict *d, const char *Key, int64_t *i)
565
6.27M
{
566
6.27M
    int code;
567
6.27M
    pdf_obj *n;
568
569
6.27M
    code = pdfi_dict_get(ctx, d, Key, &n);
570
6.27M
    if (code < 0)
571
1.19M
        return code;
572
5.07M
    code = pdfi_obj_to_int(ctx, n, i);
573
5.07M
    pdfi_countdown(n);
574
5.07M
    return code;
575
6.27M
}
576
577
/* Get an int from dict, and if undefined, return provided default */
578
int pdfi_dict_get_int_def(pdf_context *ctx, pdf_dict *d, const char *Key, int64_t *i,
579
                          int64_t def_val)
580
134k
{
581
134k
    int code;
582
583
134k
    code = pdfi_dict_get_int(ctx, d, Key, i);
584
134k
    if (code == gs_error_undefined) {
585
21.8k
        *i = def_val;
586
21.8k
        code = 0;
587
21.8k
    }
588
589
134k
    return code;
590
134k
}
591
592
/* Convenience routine for common case where value has two possible keys */
593
int
594
pdfi_dict_get_bool2(pdf_context *ctx, pdf_dict *d, const char *Key1,
595
                    const char *Key2, bool *val)
596
614k
{
597
614k
    int code;
598
599
    /* ISO 32000-2:2020 (PDF 2.0) - abbreviated names take precendence. Assume abbreviated names are shorter :-) */
600
614k
    if (strlen(Key1) < strlen(Key2)) {
601
0
        code = pdfi_dict_get_bool(ctx, d, Key1, val);
602
0
        if (code == gs_error_undefined)
603
0
            code = pdfi_dict_get_bool(ctx, d, Key2, val);
604
614k
    } else {
605
614k
        code = pdfi_dict_get_bool(ctx, d, Key2, val);
606
614k
        if (code == gs_error_undefined)
607
406k
            code = pdfi_dict_get_bool(ctx, d, Key1, val);
608
614k
    }
609
614k
    return code;
610
614k
}
611
612
int pdfi_dict_get_bool(pdf_context *ctx, pdf_dict *d, const char *Key, bool *val)
613
1.72M
{
614
1.72M
    int code;
615
1.72M
    pdf_obj *b;
616
617
1.72M
    code = pdfi_dict_get(ctx, d, Key, &b);
618
1.72M
    if (code < 0)
619
1.01M
        return code;
620
621
709k
    if (b == PDF_TRUE_OBJ) {
622
381k
        *val = 1;
623
381k
        return 0;
624
381k
    } else if (b == PDF_FALSE_OBJ) {
625
328k
        *val = 0;
626
328k
        return 0;
627
328k
    }
628
629
57
    pdfi_countdown(b);
630
631
57
    *val = 0; /* Be consistent at least! */
632
57
    return_error(gs_error_typecheck);
633
709k
}
634
635
int pdfi_dict_get_number2(pdf_context *ctx, pdf_dict *d, const char *Key1, const char *Key2, double *f)
636
616k
{
637
616k
    int code;
638
639
    /* ISO 32000-2:2020 (PDF 2.0) - abbreviated names take precendence. Assume abbreviated names are shorter :-) */
640
616k
    if (strlen(Key1) < strlen(Key2)) {
641
0
        code = pdfi_dict_get_number(ctx, d, Key1, f);
642
0
        if (code == gs_error_undefined)
643
0
            code = pdfi_dict_get_number(ctx, d, Key2, f);
644
616k
    } else {
645
616k
        code = pdfi_dict_get_number(ctx, d, Key2, f);
646
616k
        if (code == gs_error_undefined)
647
197k
            code = pdfi_dict_get_number(ctx, d, Key1, f);
648
616k
    }
649
616k
    return code;
650
616k
}
651
652
int pdfi_dict_get_number(pdf_context *ctx, pdf_dict *d, const char *Key, double *f)
653
2.57M
{
654
2.57M
    int code;
655
2.57M
    pdf_obj *o;
656
657
2.57M
    code = pdfi_dict_get(ctx, d, Key, &o);
658
2.57M
    if (code < 0)
659
1.00M
        return code;
660
1.56M
    code = pdfi_obj_to_real(ctx, o, f);
661
1.56M
    pdfi_countdown(o);
662
663
1.56M
    return code;
664
2.57M
}
665
666
/* convenience functions for retrieving arrys, see shadings and functions */
667
668
/* The 'fill' versions fill existing arrays, and need a size,
669
 * the 'make' versions allocate memory and fill it. Both varieties return the
670
 * number of entries on success. The fill Matrix utility expects to always
671
 * receive 6 values. The Domain function expects to receive an even number of
672
 * entries and each pair must have the second element larger than the first.
673
 */
674
int fill_domain_from_dict(pdf_context *ctx, float *parray, int size, pdf_dict *dict)
675
23.0k
{
676
23.0k
    int code, i;
677
23.0k
    pdf_array *a = NULL;
678
23.0k
    double f;
679
23.0k
    uint64_t array_size;
680
681
23.0k
    code = pdfi_dict_get(ctx, dict, "Domain", (pdf_obj **)&a);
682
23.0k
    if (code < 0)
683
5.99k
        return code;
684
17.0k
    if (pdfi_type_of(a) != PDF_ARRAY) {
685
0
        pdfi_countdown(a);
686
0
        return_error(gs_error_typecheck);
687
0
    }
688
17.0k
    array_size = pdfi_array_size(a);
689
17.0k
    if (array_size & 1 || array_size > size) {
690
7
        pdfi_countdown(a);
691
7
        return_error(gs_error_rangecheck);
692
7
    }
693
694
51.0k
    for (i=0;i< array_size;i++) {
695
34.0k
        code = pdfi_array_get_number(ctx, a, (uint64_t)i, &f);
696
34.0k
        if (code < 0) {
697
6
            pdfi_countdown(a);
698
6
            return_error(code);
699
6
        }
700
34.0k
        parray[i] = (float)f;
701
34.0k
    }
702
17.0k
    pdfi_countdown(a);
703
17.0k
    return array_size;
704
17.0k
}
705
706
int fill_float_array_from_dict(pdf_context *ctx, float *parray, int size, pdf_dict *dict, const char *Key)
707
24.5k
{
708
24.5k
    int code, i;
709
24.5k
    pdf_array *a = NULL;
710
24.5k
    double f;
711
24.5k
    uint64_t array_size;
712
713
24.5k
    code = pdfi_dict_get(ctx, dict, Key, (pdf_obj **)&a);
714
24.5k
    if (code < 0)
715
23
        return code;
716
24.5k
    if (pdfi_type_of(a) != PDF_ARRAY) {
717
0
        code = gs_note_error(gs_error_typecheck);
718
0
        goto exit;
719
0
    }
720
24.5k
    array_size = pdfi_array_size(a);
721
24.5k
    if (array_size > size) {
722
5
        code = gs_note_error(gs_error_rangecheck);
723
5
        goto exit;
724
5
    }
725
726
131k
    for (i=0; i< array_size; i++) {
727
106k
        code = pdfi_array_get_number(ctx, a, (uint64_t)i, &f);
728
106k
        if (code < 0)
729
8
            goto exit;
730
106k
        parray[i] = (float)f;
731
106k
    }
732
24.4k
    code = array_size;
733
24.5k
 exit:
734
24.5k
    pdfi_countdown(a);
735
24.5k
    return code;
736
24.4k
}
737
738
int fill_bool_array_from_dict(pdf_context *ctx, bool *parray, int size, pdf_dict *dict, const char *Key)
739
23.0k
{
740
23.0k
    int code, i;
741
23.0k
    pdf_array *a = NULL;
742
23.0k
    pdf_obj *o;
743
23.0k
    uint64_t array_size;
744
745
23.0k
    code = pdfi_dict_get(ctx, dict, Key, (pdf_obj **)&a);
746
23.0k
    if (code < 0)
747
332
        return code;
748
22.6k
    if (pdfi_type_of(a) != PDF_ARRAY) {
749
0
        pdfi_countdown(a);
750
0
        return_error(gs_error_typecheck);
751
0
    }
752
22.6k
    array_size = pdfi_array_size(a);
753
22.6k
    if (array_size > size)
754
0
        return_error(gs_error_rangecheck);
755
756
67.9k
    for (i=0;i< array_size;i++) {
757
45.3k
        code = pdfi_array_get(ctx, a, (uint64_t)i, (pdf_obj **)&o);
758
45.3k
        if (code < 0) {
759
0
            pdfi_countdown(a);
760
0
            return_error(code);
761
0
        }
762
45.3k
        if (o == PDF_TRUE_OBJ) {
763
44.4k
            parray[i] = 1;
764
44.4k
        } else if (o == PDF_FALSE_OBJ) {
765
831
            parray[i] = 0;
766
831
        } else {
767
7
            pdfi_countdown(o);
768
7
            pdfi_countdown(a);
769
7
            return_error(gs_error_typecheck);
770
7
        }
771
45.3k
    }
772
22.6k
    pdfi_countdown(a);
773
22.6k
    return array_size;
774
22.6k
}
775
776
int fill_matrix_from_dict(pdf_context *ctx, float *parray, pdf_dict *dict)
777
11
{
778
11
    int code, i;
779
11
    pdf_array *a = NULL;
780
11
    double f;
781
11
    uint64_t array_size;
782
783
11
    code = pdfi_dict_get(ctx, dict, "Matrix", (pdf_obj **)&a);
784
11
    if (code < 0)
785
11
        return code;
786
0
    if (pdfi_type_of(a) != PDF_ARRAY) {
787
0
        pdfi_countdown(a);
788
0
        return_error(gs_error_typecheck);
789
0
    }
790
0
    array_size = pdfi_array_size(a);
791
0
    if (array_size != 6) {
792
0
        pdfi_countdown(a);
793
0
        return_error(gs_error_rangecheck);
794
0
    }
795
796
0
    for (i=0; i< array_size; i++) {
797
0
        code = pdfi_array_get_number(ctx, a, (uint64_t)i, &f);
798
0
        if (code < 0) {
799
0
            pdfi_countdown(a);
800
0
            return_error(code);
801
0
        }
802
0
        parray[i] = (float)f;
803
0
    }
804
0
    pdfi_countdown(a);
805
0
    return array_size;
806
0
}
807
808
/* Returns < 0 for error or the number of entries allocated */
809
int pdfi_make_float_array_from_dict(pdf_context *ctx, float **parray, pdf_dict *dict, const char *Key)
810
323k
{
811
323k
    int code, i;
812
323k
    pdf_array *a = NULL;
813
323k
    float *arr = NULL;
814
323k
    double f;
815
323k
    uint64_t array_size;
816
817
323k
    *parray = NULL;
818
819
323k
    code = pdfi_dict_get(ctx, dict, Key, (pdf_obj **)&a);
820
323k
    if (code < 0)
821
65.0k
        return code;
822
258k
    if (pdfi_type_of(a) != PDF_ARRAY) {
823
0
        pdfi_countdown(a);
824
0
        return_error(gs_error_typecheck);
825
0
    }
826
258k
    array_size = pdfi_array_size(a);
827
828
258k
    arr = (float *)gs_alloc_byte_array(ctx->memory, array_size,
829
258k
                                       sizeof(float), "array_from_dict_key");
830
258k
    if (arr == NULL)
831
0
        return_error(gs_error_VMerror);
832
833
258k
    *parray = arr;
834
835
1.09M
    for (i=0;i< array_size;i++) {
836
837k
        code = pdfi_array_get_number(ctx, a, (uint64_t)i, &f);
837
837k
        if (code < 0) {
838
139
            gs_free_const_object(ctx->memory, arr, "float_array");
839
139
            *parray = NULL;
840
139
            pdfi_countdown(a);
841
139
            return_error(code);
842
139
        }
843
837k
        (*parray)[i] = (float)f;
844
837k
    }
845
258k
    pdfi_countdown(a);
846
258k
    return array_size;
847
258k
}
848
849
int pdfi_make_int_array_from_dict(pdf_context *ctx, int **parray, pdf_dict *dict, const char *Key)
850
23.7k
{
851
23.7k
    int code, i;
852
23.7k
    pdf_array *a = NULL;
853
23.7k
    int *arr = NULL;
854
23.7k
    pdf_num *o;
855
23.7k
    uint64_t array_size;
856
857
23.7k
    *parray = NULL;
858
859
23.7k
    code = pdfi_dict_get(ctx, dict, Key, (pdf_obj **)&a);
860
23.7k
    if (code < 0)
861
26
        return code;
862
23.6k
    if (pdfi_type_of(a) != PDF_ARRAY) {
863
0
        pdfi_countdown(a);
864
0
        return_error(gs_error_typecheck);
865
0
    }
866
23.6k
    array_size = pdfi_array_size(a);
867
23.6k
    arr = (int *)gs_alloc_byte_array(ctx->memory, array_size,
868
23.6k
                                     sizeof(int), "array_from_dict_key");
869
23.6k
    if (arr == NULL)
870
0
        return_error(gs_error_VMerror);
871
872
23.6k
    *parray = arr;
873
874
48.2k
    for (i=0;i< array_size;i++) {
875
24.6k
        code = pdfi_array_get_type(ctx, a, (uint64_t)i, PDF_INT, (pdf_obj **)&o);
876
24.6k
        if (code < 0) {
877
47
            gs_free_const_object(ctx->memory, arr, "int_array");
878
47
            *parray = NULL;
879
47
            pdfi_countdown(a);
880
47
            return_error(code);
881
47
        }
882
24.5k
        (*parray)[i] = (int)o->value.i;
883
24.5k
        pdfi_countdown(o);
884
24.5k
    }
885
23.6k
    pdfi_countdown(a);
886
23.6k
    return array_size;
887
23.6k
}
888
889
/* Put into dictionary with key as object -
890
   If the key already exists, we'll only replace it
891
   if "replace" is true.
892
*/
893
int pdfi_dict_put_obj(pdf_context *ctx, pdf_dict *d, pdf_obj *Key, pdf_obj *value, bool replace)
894
40.8M
{
895
40.8M
    int i;
896
40.8M
    pdf_dict_entry *new_list;
897
898
40.8M
    if (pdfi_type_of(d) != PDF_DICT)
899
0
        return_error(gs_error_typecheck);
900
901
40.8M
    if (pdfi_type_of(Key) != PDF_NAME)
902
0
        return_error(gs_error_typecheck);
903
904
    /* First, do we have a Key/value pair already ? */
905
40.8M
    i = pdfi_dict_find_key(ctx, d, (pdf_name *)Key, false);
906
40.8M
    if (i >= 0) {
907
71.3k
        if (d->list[i].value == value || replace == false)
908
            /* We already have this value stored with this key.... */
909
64.3k
            return 0;
910
7.00k
        pdfi_countdown(d->list[i].value);
911
7.00k
        d->list[i].value = value;
912
7.00k
        pdfi_countup(value);
913
7.00k
        return 0;
914
71.3k
    }
915
916
40.7M
    d->is_sorted = false;
917
918
    /* Nope, its a new Key */
919
40.7M
    if (d->size > d->entries) {
920
        /* We have a hole, find and use it */
921
17.6G
        for (i=0;i< d->size;i++) {
922
17.6G
            if (d->list[i].key == NULL) {
923
39.3M
                d->list[i].key = Key;
924
39.3M
                pdfi_countup(Key);
925
39.3M
                d->list[i].value = value;
926
39.3M
                pdfi_countup(value);
927
39.3M
                d->entries++;
928
39.3M
                return 0;
929
39.3M
            }
930
17.6G
        }
931
39.3M
    }
932
933
1.35M
    new_list = (pdf_dict_entry *)gs_alloc_bytes(ctx->memory, (size_t)(d->size + 1) * sizeof(pdf_dict_entry), "pdfi_dict_put reallocate dictionary key/values");
934
1.35M
    if (new_list == NULL) {
935
0
        return_error(gs_error_VMerror);
936
0
    }
937
1.35M
    if (d->size > 0)
938
1.20M
        memcpy(new_list, d->list, d->size * sizeof(pdf_dict_entry));
939
940
1.35M
    gs_free_object(ctx->memory, d->list, "pdfi_dict_put key/value reallocation");
941
942
1.35M
    d->list = new_list;
943
944
1.35M
    d->list[d->size].key = Key;
945
1.35M
    d->list[d->size].value = value;
946
1.35M
    d->size++;
947
1.35M
    d->entries++;
948
1.35M
    pdfi_countup(Key);
949
1.35M
    pdfi_countup(value);
950
951
1.35M
    return 0;
952
1.35M
}
953
954
/*
955
 * Be very cautious using this routine; it does not check to see if a key already exists
956
 * in a dictionary!. This is initially at least intended for use by the font code, to build
957
 * a CharStrings dictionary. We do that by adding each glyph individually with a name
958
 * created from a loop counter, so we know there cannot be any duplicates, and the time
959
 * taken to check that each of 64K names was unique was quite significant.
960
 * See bug #705534, the old PDF interpreter (nullpage, 72 dpi) runs this file in ~20 seconds
961
 * pdfi runs it in around 40 seconds. With this change it runs in around 3 seconds. THis is,
962
 * of course, an extreme example.
963
 */
964
int pdfi_dict_put_unchecked(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj *value)
965
3.36M
{
966
3.36M
    int i, code = 0;
967
3.36M
    pdf_dict_entry *new_list;
968
3.36M
    pdf_obj *key = NULL;
969
970
3.36M
    code = pdfi_name_alloc(ctx, (byte *)Key, strlen(Key), &key);
971
3.36M
    if (code < 0)
972
0
        return code;
973
3.36M
    pdfi_countup(key);
974
975
3.36M
    if (d->size > d->entries) {
976
3.36M
        int search_start = d->entries < 1 ? 0 : d->entries - 1;
977
3.36M
        do {
978
            /* We have a hole, find and use it */
979
6.73M
            for (i = search_start; i < d->size; i++) {
980
6.73M
                if (d->list[i].key == NULL) {
981
3.36M
                    d->list[i].key = key;
982
3.36M
                    d->list[i].value = value;
983
3.36M
                    pdfi_countup(value);
984
3.36M
                    d->entries++;
985
3.36M
                    return 0;
986
3.36M
                }
987
6.73M
            }
988
0
            if (search_start == 0) {
989
                /* This shouldn't ever happen, but just in case.... */
990
0
                break;
991
0
            }
992
0
            search_start = 0;
993
0
        } while(1);
994
3.36M
    }
995
996
0
    new_list = (pdf_dict_entry *)gs_alloc_bytes(ctx->memory, (size_t)(d->size + 1) * sizeof(pdf_dict_entry), "pdfi_dict_put reallocate dictionary key/values");
997
0
    if (new_list == NULL) {
998
0
        return_error(gs_error_VMerror);
999
0
    }
1000
0
    memcpy(new_list, d->list, d->size * sizeof(pdf_dict_entry));
1001
1002
0
    gs_free_object(ctx->memory, d->list, "pdfi_dict_put key/value reallocation");
1003
1004
0
    d->list = new_list;
1005
1006
0
    d->list[d->size].key = key;
1007
0
    d->list[d->size].value = value;
1008
0
    d->size++;
1009
0
    d->entries++;
1010
0
    pdfi_countup(value);
1011
1012
0
    return 0;
1013
0
}
1014
1015
/* Put into dictionary with key as string */
1016
int pdfi_dict_put(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj *value)
1017
2.16M
{
1018
2.16M
    int code;
1019
2.16M
    pdf_obj *key = NULL;
1020
1021
2.16M
    code = pdfi_name_alloc(ctx, (byte *)Key, strlen(Key), &key);
1022
2.16M
    if (code < 0)
1023
0
        return code;
1024
2.16M
    pdfi_countup(key);
1025
1026
2.16M
    code = pdfi_dict_put_obj(ctx, d, key, value, true);
1027
2.16M
    pdfi_countdown(key); /* get rid of extra ref */
1028
2.16M
    return code;
1029
2.16M
}
1030
1031
int pdfi_dict_put_int(pdf_context *ctx, pdf_dict *d, const char *key, int64_t value)
1032
2.07k
{
1033
2.07k
    int code;
1034
2.07k
    pdf_num *obj;
1035
1036
2.07k
    code = pdfi_object_alloc(ctx, PDF_INT, 0, (pdf_obj **)&obj);
1037
2.07k
    if (code < 0)
1038
0
        return code;
1039
2.07k
    obj->value.i = value;
1040
1041
2.07k
    return pdfi_dict_put(ctx, d, key, (pdf_obj *)obj);
1042
2.07k
}
1043
1044
int pdfi_dict_put_bool(pdf_context *ctx, pdf_dict *d, const char *key, bool value)
1045
4.26k
{
1046
4.26k
    pdf_obj *obj = (value ? PDF_TRUE_OBJ : PDF_FALSE_OBJ);
1047
1048
4.26k
    return pdfi_dict_put(ctx, d, key, obj);
1049
4.26k
}
1050
1051
int pdfi_dict_put_name(pdf_context *ctx, pdf_dict *d, const char *key, const char *name)
1052
0
{
1053
0
    int code;
1054
0
    pdf_obj *obj = NULL;
1055
1056
0
    code = pdfi_name_alloc(ctx, (byte *)name, strlen(name), &obj);
1057
0
    if (code < 0)
1058
0
        return code;
1059
0
    pdfi_countup(obj);
1060
1061
0
    code = pdfi_dict_put(ctx, d, key, obj);
1062
0
    pdfi_countdown(obj); /* get rid of extra ref */
1063
0
    return code;
1064
0
}
1065
1066
int pdfi_dict_copy(pdf_context *ctx, pdf_dict *target, pdf_dict *source)
1067
18.0k
{
1068
18.0k
    int i=0, code = 0;
1069
1070
92.3k
    for (i=0;i< source->entries;i++) {
1071
74.3k
        code = pdfi_dict_put_obj(ctx, target, source->list[i].key, source->list[i].value, true);
1072
74.3k
        if (code < 0)
1073
0
            return code;
1074
74.3k
        target->is_sorted = source->is_sorted;
1075
74.3k
    }
1076
18.0k
    return 0;
1077
18.0k
}
1078
1079
int pdfi_dict_known(pdf_context *ctx, pdf_dict *d, const char *Key, bool *known)
1080
48.9M
{
1081
48.9M
    int i;
1082
1083
48.9M
    if (pdfi_type_of(d) != PDF_DICT)
1084
2.96k
        return_error(gs_error_typecheck);
1085
1086
48.9M
    *known = false;
1087
48.9M
    i = pdfi_dict_find(ctx, d, Key, true);
1088
48.9M
    if (i >= 0)
1089
16.4M
        *known = true;
1090
1091
48.9M
    return 0;
1092
48.9M
}
1093
1094
int pdfi_dict_known_by_key(pdf_context *ctx, pdf_dict *d, pdf_name *Key, bool *known)
1095
93.4k
{
1096
93.4k
    int i;
1097
1098
93.4k
    if (pdfi_type_of(d) != PDF_DICT)
1099
0
        return_error(gs_error_typecheck);
1100
1101
93.4k
    *known = false;
1102
93.4k
    i = pdfi_dict_find_key(ctx, d, Key, true);
1103
93.4k
    if (i >= 0)
1104
84.3k
        *known = true;
1105
1106
93.4k
    return 0;
1107
93.4k
}
1108
1109
/* Tests if a Key is present in the dictionary, if it is, retrieves the value associated with the
1110
 * key. Returns < 0 for error, 0 if the key is not found > 0 if the key is present, and initialises
1111
 * the value in the arguments. Since this uses pdf_dict_get(), the returned value has its
1112
 * reference count incremented by 1, just like pdfi_dict_get().
1113
 */
1114
int pdfi_dict_knownget(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj **o)
1115
9.08M
{
1116
9.08M
    bool known = false;
1117
9.08M
    int code;
1118
1119
9.08M
    code = pdfi_dict_known(ctx, d, Key, &known);
1120
9.08M
    if (code < 0)
1121
488
        return code;
1122
1123
9.07M
    if (known == false)
1124
6.00M
        return 0;
1125
1126
3.07M
    code = pdfi_dict_get(ctx, d, Key, o);
1127
3.07M
    if (code < 0)
1128
55.0k
        return code;
1129
1130
3.01M
    return 1;
1131
3.07M
}
1132
1133
/* Like pdfi_dict_knownget() but allows the user to specify a type for the object that we get.
1134
 * returns < 0 for error (including typecheck if the object is not the requested type)
1135
 * 0 if the key is not found, or > 0 if the key was found and returned.
1136
 */
1137
int pdfi_dict_knownget_type(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj_type type, pdf_obj **o)
1138
24.7M
{
1139
24.7M
    bool known = false;
1140
24.7M
    int code;
1141
1142
24.7M
    code = pdfi_dict_known(ctx, d, Key, &known);
1143
24.7M
    if (code < 0)
1144
2.47k
        return code;
1145
1146
24.7M
    if (known == false)
1147
13.1M
        return 0;
1148
1149
11.5M
    code = pdfi_dict_get_type(ctx, d, Key, type, o);
1150
11.5M
    if (code < 0)
1151
287k
        return code;
1152
1153
11.2M
    return 1;
1154
11.5M
}
1155
1156
/* As above but don't store any dereferenced object. Used for Annots when we need the /Parent but
1157
 * storing that back to the annot would create a circulare reference to the page object
1158
 */
1159
int pdfi_dict_knownget_type_no_store_R(pdf_context *ctx, pdf_dict *d, const char *Key, pdf_obj_type type, pdf_obj **o)
1160
208
{
1161
208
    bool known = false;
1162
208
    int code;
1163
1164
208
    code = pdfi_dict_known(ctx, d, Key, &known);
1165
208
    if (code < 0)
1166
0
        return code;
1167
1168
208
    if (known == false)
1169
0
        return 0;
1170
1171
208
    code = pdfi_dict_get_type_no_store_R(ctx, d, Key, type, o);
1172
208
    if (code < 0)
1173
16
        return code;
1174
1175
192
    return 1;
1176
208
}
1177
1178
int pdfi_dict_knownget_bool(pdf_context *ctx, pdf_dict *d, const char *Key, bool *b)
1179
11.8k
{
1180
11.8k
    bool known = false;
1181
11.8k
    int code;
1182
1183
11.8k
    code = pdfi_dict_known(ctx, d, Key, &known);
1184
11.8k
    if (code < 0)
1185
0
        return code;
1186
1187
11.8k
    if (known == false)
1188
6.77k
        return 0;
1189
1190
5.07k
    code = pdfi_dict_get_bool(ctx, d, Key, b);
1191
5.07k
    if (code < 0)
1192
1
        return code;
1193
1194
5.07k
    return 1;
1195
5.07k
}
1196
1197
/* Like pdfi_dict_knownget_type() but retrieves numbers (two possible types)
1198
 */
1199
int pdfi_dict_knownget_number(pdf_context *ctx, pdf_dict *d, const char *Key, double *f)
1200
1.96M
{
1201
1.96M
    bool known = false;
1202
1.96M
    int code;
1203
1204
1.96M
    code = pdfi_dict_known(ctx, d, Key, &known);
1205
1.96M
    if (code < 0)
1206
0
        return code;
1207
1208
1.96M
    if (known == false)
1209
1.86M
        return 0;
1210
1211
101k
    code = pdfi_dict_get_number(ctx, d, Key, f);
1212
101k
    if (code < 0)
1213
4
        return code;
1214
1215
101k
    return 1;
1216
101k
}
1217
1218
int pdfi_dict_next(pdf_context *ctx, pdf_dict *d, pdf_obj **Key, pdf_obj **Value, uint64_t *index)
1219
1.57M
{
1220
1.57M
    int code;
1221
1222
1.57M
    if (pdfi_type_of(d) != PDF_DICT)
1223
0
        return_error(gs_error_typecheck);
1224
1225
1.57M
    while (1) {
1226
1.57M
        if (*index >= d->entries) {
1227
134k
            *Key = NULL;
1228
134k
            *Value= NULL;
1229
134k
            return gs_error_undefined;
1230
134k
        }
1231
1232
        /* If we find NULL keys skip over them. This should never
1233
         * happen as we check the number of entries above, and we
1234
         * compact dictionaries on deletion of key/value pairs.
1235
         * This is a belt and braces check in case creation of the
1236
         * dictionary somehow ends up with NULL keys in the allocated
1237
         * section.
1238
         */
1239
1.44M
        *Key = d->list[*index].key;
1240
1.44M
        if (*Key == NULL) {
1241
0
            (*index)++;
1242
0
            continue;
1243
0
        }
1244
1245
1.44M
        if (pdfi_type_of(d->list[*index].value) == PDF_INDIRECT) {
1246
469k
            pdf_indirect_ref *r = (pdf_indirect_ref *)d->list[*index].value;
1247
469k
            pdf_obj *o;
1248
1249
469k
            code = pdfi_dereference(ctx, r->ref_object_num, r->ref_generation_num, &o);
1250
469k
            if (code < 0) {
1251
195k
                if (code == gs_error_circular_reference) {
1252
                    /* Replace circular references with NULL objects to prevent future
1253
                     * circular dereferencing.
1254
                     */
1255
182
                    pdfi_countdown(d->list[*index].value);
1256
182
                    d->list[*index].value = PDF_NULL_OBJ;
1257
182
                }
1258
195k
                *Key = *Value = NULL;
1259
195k
                return code;
1260
195k
            }
1261
            /* The file Bug690138.pdf has font dictionaries which contain ToUnicode keys where
1262
             * the value is an indirect reference to the same font object. If we replace the
1263
             * indirect reference in the dictionary with the font dictionary it becomes self
1264
             * referencing and never counts down to 0, leading to a memory leak.
1265
             * This is clearly an error, so flag it and don't replace the indirect reference.
1266
             */
1267
274k
            if ((o) < (pdf_obj *)(uintptr_t)(TOKEN__LAST_KEY)) {
1268
                /* "FAST" object, therefore can't be a problem. */
1269
1.03k
                pdfi_countdown(d->list[*index].value);
1270
1.03k
                d->list[*index].value = o;
1271
273k
            } else if (o->object_num == 0 || o->object_num != d->object_num) {
1272
273k
                pdfi_countdown(d->list[*index].value);
1273
273k
                d->list[*index].value = o;
1274
273k
            } else {
1275
                /* Replace self references with NULL objects to prevent future
1276
                 * circular dereferencing.
1277
                 */
1278
4
                pdfi_countdown(d->list[*index].value);
1279
4
                d->list[*index].value = PDF_NULL_OBJ;
1280
4
                *Key = *Value = NULL;
1281
4
                code = pdfi_set_error_stop(ctx, gs_note_error(gs_error_undefinedresult), NULL, E_DICT_SELF_REFERENCE, "pdfi_dict_next", NULL);
1282
4
                return code;
1283
4
            }
1284
274k
            *Value = o;
1285
274k
            pdfi_countup(*Value);
1286
274k
            break;
1287
974k
        } else {
1288
974k
            *Value = d->list[*index].value;
1289
974k
            pdfi_countup(*Value);
1290
974k
            break;
1291
974k
        }
1292
1.44M
    }
1293
1294
1.24M
    pdfi_countup(*Key);
1295
1.24M
    (*index)++;
1296
1.24M
    return 0;
1297
1.57M
}
1298
1299
int pdfi_dict_next_no_store_R(pdf_context *ctx, pdf_dict *d, pdf_obj **Key, pdf_obj **Value, uint64_t *index)
1300
386k
{
1301
386k
    int code;
1302
1303
386k
    if (pdfi_type_of(d) != PDF_DICT)
1304
0
        return_error(gs_error_typecheck);
1305
1306
386k
    while (1) {
1307
386k
        if (*index >= d->entries) {
1308
0
            *Key = NULL;
1309
0
            *Value= NULL;
1310
0
            return gs_error_undefined;
1311
0
        }
1312
1313
        /* If we find NULL keys skip over them. This should never
1314
         * happen as we check the number of entries above, and we
1315
         * compact dictionaries on deletion of key/value pairs.
1316
         * This is a belt and braces check in case creation of the
1317
         * dictionary somehow ends up with NULL keys in the allocated
1318
         * section.
1319
         */
1320
386k
        *Key = d->list[*index].key;
1321
386k
        if (*Key == NULL) {
1322
0
            (*index)++;
1323
0
            continue;
1324
0
        }
1325
1326
386k
        if (pdfi_type_of(d->list[*index].value) == PDF_INDIRECT) {
1327
381k
            pdf_indirect_ref *r = (pdf_indirect_ref *)d->list[*index].value;
1328
381k
            pdf_obj *o;
1329
1330
381k
            code = pdfi_dereference(ctx, r->ref_object_num, r->ref_generation_num, &o);
1331
381k
            if (code < 0) {
1332
52.6k
                *Key = *Value = NULL;
1333
52.6k
                return code;
1334
52.6k
            }
1335
329k
            *Value = o;
1336
329k
            break;
1337
381k
        } else {
1338
4.98k
            *Value = d->list[*index].value;
1339
4.98k
            pdfi_countup(*Value);
1340
4.98k
            break;
1341
4.98k
        }
1342
386k
    }
1343
1344
334k
    pdfi_countup(*Key);
1345
334k
    (*index)++;
1346
334k
    return 0;
1347
386k
}
1348
1349
int pdfi_dict_first(pdf_context *ctx, pdf_dict *d, pdf_obj **Key, pdf_obj **Value, uint64_t *index)
1350
509k
{
1351
509k
    uint64_t *i = index;
1352
1353
509k
    *i = 0;
1354
509k
    return pdfi_dict_next(ctx, d, Key, Value, index);
1355
509k
}
1356
1357
int pdfi_dict_first_no_store_R(pdf_context *ctx, pdf_dict *d, pdf_obj **Key, pdf_obj **Value, uint64_t *index)
1358
177k
{
1359
177k
    uint64_t *i = index;
1360
1361
177k
    *i = 0;
1362
177k
    return pdfi_dict_next_no_store_R(ctx, d, Key, Value, index);
1363
177k
}
1364
1365
int pdfi_dict_key_next(pdf_context *ctx, pdf_dict *d, pdf_obj **Key, uint64_t *index)
1366
67.2M
{
1367
67.2M
    uint64_t *i = index;
1368
1369
67.2M
    if (pdfi_type_of(d) != PDF_DICT)
1370
0
        return_error(gs_error_typecheck);
1371
1372
67.2M
    while (1) {
1373
67.2M
        if (*i >= d->entries) {
1374
108k
            *Key = NULL;
1375
108k
            return gs_error_undefined;
1376
108k
        }
1377
1378
67.1M
        *Key = d->list[*i].key;
1379
67.1M
        if (*Key == NULL) {
1380
0
            (*i)++;
1381
0
            continue;
1382
0
        }
1383
67.1M
        pdfi_countup(*Key);
1384
67.1M
        (*i)++;
1385
67.1M
        break;
1386
67.1M
    }
1387
67.1M
    return 0;
1388
67.2M
}
1389
1390
int pdfi_dict_key_first(pdf_context *ctx, pdf_dict *d, pdf_obj **Key, uint64_t *index)
1391
418k
{
1392
418k
    uint64_t *i = index;
1393
1394
418k
    *i = 0;
1395
418k
    return pdfi_dict_key_next(ctx, d, Key, index);
1396
418k
}
1397
1398
int pdfi_merge_dicts(pdf_context *ctx, pdf_dict *target, pdf_dict *source)
1399
190k
{
1400
190k
    int i, code;
1401
190k
    bool known = false;
1402
1403
283k
    for (i=0;i< source->entries;i++) {
1404
92.9k
        code = pdfi_dict_known_by_key(ctx, target, (pdf_name *)source->list[i].key, &known);
1405
92.9k
        if (code < 0)
1406
0
            return code;
1407
92.9k
        if (!known) {
1408
8.68k
            code = pdfi_dict_put_obj(ctx, target, source->list[i].key, source->list[i].value, true);
1409
8.68k
            if (code < 0)
1410
0
                return code;
1411
8.68k
        }
1412
92.9k
    }
1413
190k
    target->is_sorted = false;
1414
190k
    return 0;
1415
190k
}
1416
1417
/* Return Length of a stream, or 0 if it's not a stream
1418
 * Caches the Length
1419
 */
1420
int64_t pdfi_stream_length(pdf_context *ctx, pdf_stream *stream)
1421
457k
{
1422
457k
    int64_t Length = 0;
1423
457k
    int code;
1424
1425
457k
    if (pdfi_type_of(stream) != PDF_STREAM)
1426
0
        return 0;
1427
1428
457k
    if (stream->length_valid)
1429
242k
        return stream->Length;
1430
1431
214k
    code = pdfi_dict_get_int(ctx, stream->stream_dict, "Length", &Length);
1432
214k
    if (code < 0)
1433
213k
        Length = 0;
1434
1435
    /* Make sure Length is not negative... */
1436
214k
    if (Length < 0)
1437
0
        Length = 0;
1438
1439
    /* Cache it */
1440
214k
    stream->Length = Length;
1441
214k
    stream->length_valid = true;
1442
1443
214k
    return 0;
1444
457k
}
1445
1446
/* Safely get offset from a stream object.
1447
 * If it's not actually a stream, just return 0.
1448
 */
1449
gs_offset_t pdfi_stream_offset(pdf_context *ctx, pdf_stream *stream)
1450
2.50M
{
1451
2.50M
    if (pdfi_type_of(stream) != PDF_STREAM)
1452
66
        return 0;
1453
2.50M
    return stream->stream_offset;
1454
2.50M
}
1455
1456
pdf_stream *pdfi_stream_parent(pdf_context *ctx, pdf_stream *stream)
1457
841k
{
1458
841k
    if (pdfi_type_of(stream) != PDF_STREAM)
1459
39.9k
        return 0;
1460
801k
    return (pdf_stream *)stream->parent_obj;
1461
841k
}
1462
1463
void pdfi_set_stream_parent(pdf_context *ctx, pdf_stream *stream, pdf_stream *parent)
1464
450k
{
1465
    /* Ordinarily we would increment the reference count of the parent object here,
1466
     * because we are taking a new reference to it. But if we do that we will end up
1467
     * with circular references and will never count down and release the objects.
1468
     * This is because the parent object must have a Resources dictionary which
1469
     * references this stream, when we dereference the stream we store it in the
1470
     * Parent's Resources dictionary. So the parent points to the child, the child
1471
     * points to the parent and we always end up with a refcnt for each of 1. Since we
1472
     * only ever consult parent_obj in an illegal case we deal with this by not
1473
     * incrementing the reference count. To try and avoid any dangling references
1474
     * we clear the parent_obj when we finish executing the stream in
1475
     * pdfi_interpret_content_stream.
1476
     */
1477
450k
    stream->parent_obj = (pdf_obj *)parent;
1478
450k
}
1479
1480
void pdfi_clear_stream_parent(pdf_context *ctx, pdf_stream *stream)
1481
450k
{
1482
450k
    stream->parent_obj = NULL;
1483
450k
}
1484
1485
/* Get the dict from a pdf_obj, returns typecheck if it doesn't have one */
1486
int pdfi_dict_from_obj(pdf_context *ctx, pdf_obj *obj, pdf_dict **dict)
1487
80.5M
{
1488
80.5M
    *dict = NULL;
1489
80.5M
    switch (pdfi_type_of(obj)) {
1490
193k
        case PDF_DICT:
1491
193k
            *dict = (pdf_dict *)obj;
1492
193k
            break;
1493
80.3M
        case PDF_STREAM:
1494
80.3M
            *dict = ((pdf_stream *)obj)->stream_dict;
1495
80.3M
            break;
1496
583
        default:
1497
583
            return_error(gs_error_typecheck);
1498
80.5M
    }
1499
80.5M
    return 0;
1500
80.5M
}