Coverage Report

Created: 2026-07-24 07:44

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ghostpdl/pdf/pdf_optcontent.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
/* Optional Content routines */
17
18
#include "pdf_int.h"
19
#include "pdf_stack.h"
20
#include "pdf_misc.h"
21
#include "pdf_font_types.h"
22
#include "pdf_gstate.h"
23
#include "pdf_dict.h"
24
#include "pdf_array.h"
25
#include "pdf_doc.h"
26
#include "pdf_mark.h"
27
#include "pdf_optcontent.h"
28
#include "pdf_loop_detect.h"
29
30
31
/* Find the default value for an ocdict, based on contents of OCProperties */
32
/* NOTE: the spec says that if BaseState is present, it won't be set to "OFF",
33
 * but this doesn't seem to be the case (Bug 691491).  Also, the spec
34
 * says the ON and OFF arrays are redundant in certain cases.  We just
35
 * look at everything anyway.
36
 * Default is going to be visible unless anything here indicates that it
37
 * should be turned off.
38
 */
39
static bool
40
pdfi_get_default_OCG_val(pdf_context *ctx, pdf_dict *ocdict)
41
50.0k
{
42
50.0k
    bool is_visible = true;
43
50.0k
    pdf_dict *D = NULL;
44
50.0k
    pdf_obj *BaseState = NULL;
45
50.0k
    pdf_array *OFF = NULL;
46
50.0k
    pdf_array *ON = NULL;
47
50.0k
    int code;
48
49
50.0k
    if (ctx->OCProperties == NULL)
50
3.58k
        return is_visible;
51
52
46.4k
    code = pdfi_dict_knownget_type(ctx, ctx->OCProperties, "D", PDF_DICT, (pdf_obj **)&D);
53
46.4k
    if (code <= 0)
54
11
        goto cleanup;
55
56
46.4k
    code = pdfi_dict_knownget_type(ctx, D, "BaseState", PDF_NAME, &BaseState);
57
46.4k
    if (code < 0) {
58
0
        goto cleanup;
59
0
    }
60
46.4k
    if (code > 0) {
61
21
        if (pdfi_name_is((pdf_name *)BaseState, "OFF")) {
62
0
            is_visible = false;
63
0
        }
64
21
    }
65
66
46.4k
    if (!is_visible) {
67
0
        code = pdfi_dict_knownget_type(ctx, D, "ON", PDF_ARRAY, (pdf_obj **)&ON);
68
0
        if (code < 0)
69
0
            goto cleanup;
70
0
        if (code > 0) {
71
0
            if (pdfi_array_known(ctx, ON, (pdf_obj *)ocdict, NULL))
72
0
                is_visible = true;
73
0
        }
74
0
    }
75
76
46.4k
    if (is_visible) {
77
46.4k
        code = pdfi_dict_knownget_type(ctx, D, "OFF", PDF_ARRAY, (pdf_obj **)&OFF);
78
46.4k
        if (code < 0)
79
1.52k
            goto cleanup;
80
44.9k
        if (code > 0) {
81
44.1k
            if (pdfi_array_known(ctx, OFF, (pdf_obj *)ocdict, NULL))
82
42.1k
                is_visible = false;
83
44.1k
        }
84
44.9k
    }
85
86
87
46.4k
 cleanup:
88
46.4k
    pdfi_countdown(BaseState);
89
46.4k
    pdfi_countdown(D);
90
46.4k
    pdfi_countdown(OFF);
91
46.4k
    pdfi_countdown(ON);
92
46.4k
    return is_visible;
93
46.4k
}
94
95
/* Check Usage for an OCG */
96
static bool
97
pdfi_oc_check_OCG_usage(pdf_context *ctx, pdf_dict *ocdict)
98
38
{
99
38
    bool is_visible = true;
100
38
    int code;
101
38
    pdf_dict *Usage = NULL;
102
38
    pdf_dict *dict = NULL;
103
38
    pdf_obj *name = NULL;
104
105
    /* Check Usage to see if it has additional info */
106
38
    code = pdfi_dict_knownget_type(ctx, ocdict, "Usage", PDF_DICT, (pdf_obj **)&Usage);
107
38
    if (code <= 0) {
108
        /* No Usage, so we're done */
109
21
        goto cleanup;
110
21
    }
111
112
17
    if (ctx->args.printed) {
113
17
        code = pdfi_dict_knownget_type(ctx, Usage, "Print", PDF_DICT, (pdf_obj **)&dict);
114
17
        if (code <= 0)
115
0
            goto cleanup;
116
17
        code = pdfi_dict_knownget_type(ctx, dict, "PrintState", PDF_NAME, &name);
117
17
        if (code <= 0)
118
0
            goto cleanup;
119
17
    } else {
120
0
        code = pdfi_dict_knownget_type(ctx, Usage, "View", PDF_DICT, (pdf_obj **)&dict);
121
0
        if (code <= 0)
122
0
            goto cleanup;
123
0
        code = pdfi_dict_knownget_type(ctx, dict, "ViewState", PDF_NAME, &name);
124
0
        if (code <= 0)
125
0
            goto cleanup;
126
0
    }
127
17
    if (pdfi_name_strcmp((pdf_name *)name, "OFF") == 0) {
128
0
        is_visible = false;
129
0
    }
130
131
38
 cleanup:
132
38
    pdfi_countdown(Usage);
133
38
    pdfi_countdown(dict);
134
38
    pdfi_countdown(name);
135
136
38
    return is_visible;
137
17
}
138
139
typedef enum {
140
    P_AnyOn,
141
    P_AllOn,
142
    P_AllOff,
143
    P_AnyOff
144
} ocmd_p_type;
145
146
static bool pdfi_oc_default_visibility(pdf_context *ctx)
147
4.65k
{
148
4.65k
    int code;
149
4.65k
    pdf_dict *D_dict = NULL;
150
4.65k
    pdf_name *B = NULL;
151
152
4.65k
    code = pdfi_dict_knownget_type(ctx, ctx->OCProperties, "D", PDF_DICT, (pdf_obj **)&D_dict);
153
4.65k
    if (code < 0 || D_dict == NULL)
154
0
        return true;
155
156
4.65k
    code = pdfi_dict_knownget_type(ctx, D_dict, "BaseState", PDF_NAME, (pdf_obj **)&B);
157
4.65k
    (void)pdfi_countdown(D_dict);
158
4.65k
    D_dict = NULL;
159
4.65k
    if (code < 0 || B == NULL)
160
4.65k
        return true;
161
162
0
    if (pdfi_name_is(B, "OFF")) {
163
0
        (void)pdfi_countdown(B);
164
0
        return false;
165
0
    }
166
167
0
    (void)pdfi_countdown(B);
168
0
    return true;
169
0
}
170
171
static bool
172
pdfi_oc_check_OCMD_array(pdf_context *ctx, pdf_array *array, ocmd_p_type type)
173
50.5k
{
174
50.5k
    bool is_visible, hit = false;
175
50.5k
    uint64_t i;
176
50.5k
    int code;
177
50.5k
    pdf_obj *val = NULL;
178
179
    /* Setup default */
180
50.5k
    switch (type) {
181
50.5k
    case P_AnyOn:
182
50.5k
    case P_AnyOff:
183
50.5k
        is_visible = false;
184
50.5k
        break;
185
0
    case P_AllOn:
186
0
    case P_AllOff:
187
0
        is_visible = true;
188
0
        break;
189
50.5k
    }
190
191
97.1k
    for (i=0; i<pdfi_array_size(array); i++) {
192
50.5k
        bool vis;
193
194
50.5k
        code = pdfi_array_get(ctx, array, i, &val);
195
50.5k
        if (code < 0) continue;
196
45.9k
        if (pdfi_type_of(val) != PDF_DICT) {
197
0
            dbgprintf1("WARNING: OCMD array contains item type %d, expected PDF_DICT or PDF_NULL\n", pdfi_type_of(val));
198
0
            pdfi_countdown(val);
199
0
            val = NULL;
200
0
            continue;
201
0
        }
202
203
45.9k
        hit = true;
204
45.9k
        vis = pdfi_get_default_OCG_val(ctx, (pdf_dict *)val);
205
45.9k
        switch (type) {
206
45.9k
        case P_AnyOn:
207
            /* visible if any is on */
208
45.9k
            if (vis) {
209
3.88k
                is_visible = true;
210
3.88k
                goto cleanup;
211
3.88k
            }
212
42.0k
            break;
213
42.0k
        case P_AllOn:
214
            /* visible if all on */
215
0
            if (!vis) {
216
0
                is_visible = false;
217
0
                goto cleanup;
218
0
            }
219
0
            break;
220
0
        case P_AllOff:
221
            /* visible if all are off */
222
0
            if (vis) {
223
0
                is_visible = false;
224
0
                goto cleanup;
225
0
            }
226
0
            break;
227
0
        case P_AnyOff:
228
            /* visible if any is off */
229
0
            if (!vis) {
230
0
                is_visible = true;
231
0
                goto cleanup;
232
0
            }
233
0
            break;
234
45.9k
        }
235
42.0k
        pdfi_countdown(val);
236
42.0k
        val = NULL;
237
42.0k
    }
238
239
    /* If the array was empty, or contained only null or deleted entries, then it has no effect
240
     * PDF Reference 1.7 p366, table 4.49, OCGs entry. I'm interpreting this to mean that we should use
241
     * the OCProperties 'D' dictionary, set the visibility state to the BaseState. Since this is an OCMD
242
     * I'm assuming that the ON and OFF arrays (which apply to Optional Content Groups) shouold not be
243
     * consulted. We need to cater for the fact that BaseState is optional (but default is ON). D is
244
     * specified as 'Required' but it seems best not to take any chances on that!
245
     */
246
46.6k
    if (!hit)
247
4.54k
        is_visible = pdfi_oc_default_visibility(ctx);
248
249
50.5k
cleanup:
250
50.5k
    pdfi_countdown(val);
251
50.5k
    return is_visible;
252
46.6k
}
253
254
static bool
255
pdfi_oc_check_OCMD(pdf_context *ctx, pdf_dict *ocdict)
256
51.0k
{
257
51.0k
    bool is_visible = true;
258
51.0k
    int code;
259
51.0k
    pdf_obj *VE = NULL;
260
51.0k
    pdf_obj *obj = NULL;
261
51.0k
    pdf_obj *Pname = NULL;
262
51.0k
    pdf_dict *OCGs_dict = NULL; /* alias, don't need to free */
263
51.0k
    pdf_array *OCGs_array = NULL; /* alias, don't need to free */
264
51.0k
    pdf_dict *UsageDict = NULL, *StateDict = NULL;
265
51.0k
    pdf_obj *State = NULL;
266
51.0k
    ocmd_p_type Ptype = P_AnyOn;
267
268
    /* TODO: We don't support this, so log a warning and ignore */
269
51.0k
    code = pdfi_dict_knownget_type(ctx, ocdict, "VE", PDF_ARRAY, &VE);
270
51.0k
    if (code > 0) {
271
228
        dbgprintf("WARNING: OCMD contains VE, which is not supported (ignoring)\n");
272
228
    }
273
274
51.0k
    code = pdfi_dict_knownget(ctx, ocdict, "OCGs", &obj);
275
51.0k
    if (code <= 0)
276
277
        goto cleanup;
277
50.8k
    if (pdfi_type_of(obj) == PDF_ARRAY) {
278
50.5k
        OCGs_array = (pdf_array *)obj;
279
50.5k
    } else if (pdfi_type_of(obj) == PDF_DICT) {
280
178
        OCGs_dict = (pdf_dict *)obj;
281
178
    } else {
282
108
        is_visible = pdfi_oc_default_visibility(ctx);
283
108
        goto cleanup;
284
108
    }
285
286
50.7k
    code = pdfi_dict_knownget_type(ctx, ocdict, "P", PDF_NAME, &Pname);
287
50.7k
    if (code < 0)
288
0
        goto cleanup;
289
50.7k
    if (code == 0 || pdfi_name_is((pdf_name *)Pname, "AnyOn")) {
290
50.7k
        Ptype = P_AnyOn;
291
50.7k
    } else if (pdfi_name_is((pdf_name *)Pname, "AllOn")) {
292
0
        Ptype = P_AllOn;
293
0
    } else if (pdfi_name_is((pdf_name *)Pname, "AnyOff")) {
294
0
        Ptype = P_AnyOff;
295
0
    } else if (pdfi_name_is((pdf_name *)Pname, "AllOff")) {
296
0
        Ptype = P_AllOff;
297
0
    } else {
298
0
        Ptype = P_AnyOn;
299
0
    }
300
301
50.7k
    if (OCGs_dict) {
302
178
        switch (Ptype) {
303
178
        case P_AnyOn:
304
178
        case P_AllOn:
305
178
            is_visible = pdfi_get_default_OCG_val(ctx, OCGs_dict);
306
178
            break;
307
0
        case P_AllOff:
308
0
        case P_AnyOff:
309
0
            is_visible = !pdfi_get_default_OCG_val(ctx, OCGs_dict);
310
0
            break;
311
178
        }
312
50.5k
    } else {
313
50.5k
        is_visible = pdfi_oc_check_OCMD_array(ctx, OCGs_array, Ptype);
314
50.5k
    }
315
316
50.7k
    if (OCGs_dict) {
317
178
        code = pdfi_dict_knownget_type(ctx, OCGs_dict, "Usage", PDF_DICT, (pdf_obj **)&UsageDict);
318
178
        if (code < 0)
319
0
            goto cleanup;
320
321
178
        if (UsageDict != NULL) {
322
91
            if (ctx->args.printed) {
323
91
                code = pdfi_dict_knownget_type(ctx, UsageDict, "Print", PDF_DICT, (pdf_obj **)&StateDict);
324
91
                if (code < 0)
325
0
                    goto cleanup;
326
91
                if (StateDict) {
327
25
                    code = pdfi_dict_knownget_type(ctx, StateDict, "PrintState", PDF_NAME, &State);
328
25
                    if (code < 0)
329
0
                        goto cleanup;
330
25
                }
331
91
            } else {
332
0
                code = pdfi_dict_knownget_type(ctx, UsageDict, "View", PDF_DICT, (pdf_obj **)&StateDict);
333
0
                if (code < 0)
334
0
                    goto cleanup;
335
0
                if (StateDict) {
336
0
                    code = pdfi_dict_knownget_type(ctx, StateDict, "ViewState", PDF_NAME, &State);
337
0
                    if (code < 0)
338
0
                        goto cleanup;
339
0
                }
340
0
            }
341
91
            if (State) {
342
25
                if (pdfi_name_is((const pdf_name *)State, "ON"))
343
25
                    is_visible = true;
344
0
                else
345
0
                    if (pdfi_name_is((const pdf_name *)State, "OFF"))
346
0
                        is_visible = false;
347
0
                    else
348
0
                        pdfi_set_error(ctx, 0, NULL, E_PDF_BAD_VALUE, "pdfi_oc_check_OCMD", "Usage Dictionary State is neither ON nor OFF");
349
25
            }
350
91
        }
351
178
    }
352
353
51.0k
 cleanup:
354
51.0k
    pdfi_countdown(State);
355
51.0k
    pdfi_countdown(StateDict);
356
51.0k
    pdfi_countdown(UsageDict);
357
51.0k
    pdfi_countdown(VE);
358
51.0k
    pdfi_countdown(obj);
359
51.0k
    pdfi_countdown(Pname);
360
361
51.0k
    return is_visible;
362
50.7k
}
363
364
static bool pdfi_must_check_usage(pdf_context *ctx, int64_t object)
365
3.89k
{
366
3.89k
    pdf_dict *D = NULL, *EventDict = NULL;
367
3.89k
    pdf_array *AS = NULL, *OCGs = NULL;
368
3.89k
    pdf_name *Event = NULL;
369
3.89k
    bool check = false;
370
3.89k
    int i, code = 0;
371
372
3.89k
    if (ctx->OCProperties != NULL) {
373
2.59k
        if (pdfi_dict_knownget_type(ctx, ctx->OCProperties, "D", PDF_DICT, (pdf_obj **)&D) > 0) {
374
2.58k
            if (pdfi_dict_knownget_type(ctx, D, "AS", PDF_ARRAY, (pdf_obj **)&AS) > 0) {
375
76
                for (i = 0; i < pdfi_array_size(AS); i++) {
376
76
                    code = pdfi_array_get(ctx, AS, i, (pdf_obj **)&EventDict);
377
76
                    if (code < 0)
378
0
                        goto exit;
379
76
                    if (pdfi_type_of(EventDict) == PDF_DICT) {
380
76
                        if (pdfi_dict_knownget_type(ctx, EventDict, "Event", PDF_NAME, (pdf_obj **)&Event) > 0) {
381
76
                            if (ctx->args.printed) {
382
76
                                if (Event->length == 5 && strncmp((const char *)Event->data, "Print", 5) == 0) {
383
38
                                    if (pdfi_dict_knownget_type(ctx, EventDict, "OCGs", PDF_ARRAY, (pdf_obj **)&OCGs) > 0) {
384
38
                                        pdfi_countdown(Event);
385
38
                                        Event = NULL;
386
38
                                        pdfi_countdown(EventDict);
387
38
                                        EventDict = NULL;
388
38
                                        break;
389
38
                                    }
390
38
                                }
391
76
                            } else {
392
0
                                if (Event->length == 4 && strncmp((const char *)Event->data, "View", 4) == 0) {
393
0
                                    if (pdfi_dict_knownget_type(ctx, EventDict, "OCGs", PDF_ARRAY, (pdf_obj **)&OCGs) > 0) {
394
0
                                        pdfi_countdown(Event);
395
0
                                        Event = NULL;
396
0
                                        pdfi_countdown(EventDict);
397
0
                                        EventDict = NULL;
398
0
                                        break;
399
0
                                    }
400
0
                                }
401
0
                            }
402
38
                            pdfi_countdown(Event);
403
38
                            Event = NULL;
404
38
                        }
405
76
                    }
406
38
                    pdfi_countdown(EventDict);
407
38
                    EventDict = NULL;
408
38
                }
409
38
                pdfi_countdown(AS);
410
38
                AS = NULL;
411
38
                if (OCGs) {
412
38
                    pdf_obj *Group = NULL;
413
414
95
                    for (i = 0; i < pdfi_array_size(OCGs); i++) {
415
95
                        code = pdfi_array_get(ctx, OCGs, i, (pdf_obj **)&Group);
416
95
                        if (code < 0)
417
0
                            goto exit;
418
95
                        if (Group->object_num == object) {
419
38
                            pdfi_countdown(Group);
420
38
                            check = true;
421
38
                            goto exit;
422
38
                        }
423
57
                        pdfi_countdown(Group);
424
57
                        Group = NULL;
425
57
                    }
426
0
                    pdfi_countdown(OCGs);
427
0
                    OCGs = NULL;
428
0
                }
429
38
            }
430
2.54k
            pdfi_countdown(D);
431
2.54k
            D = NULL;
432
2.54k
        }
433
2.59k
    }
434
3.89k
exit:
435
3.89k
    pdfi_countdown(OCGs);
436
3.89k
    pdfi_countdown(Event);
437
3.89k
    pdfi_countdown(EventDict);
438
3.89k
    pdfi_countdown(AS);
439
3.89k
    pdfi_countdown(D);
440
3.89k
    return check;
441
3.89k
}
442
443
/* Check if an OCG or OCMD is visible, passing in OC dict */
444
bool
445
pdfi_oc_is_ocg_visible(pdf_context *ctx, pdf_dict *ocdict)
446
55.1k
{
447
55.1k
    pdf_name *type = NULL;
448
55.1k
    bool is_visible = true;
449
55.1k
    int code;
450
451
    /* Type can be either OCMD or OCG.
452
     */
453
55.1k
    code = pdfi_dict_knownget_type(ctx, ocdict, "Type", PDF_NAME, (pdf_obj **)&type);
454
55.1k
    if (code <= 0)
455
76
        goto cleanup;
456
457
55.0k
    if (pdfi_name_is(type, "OCMD")) {
458
51.0k
        is_visible = pdfi_oc_check_OCMD(ctx, ocdict);
459
51.0k
    } else if (pdfi_name_is(type, "OCG")) {
460
3.89k
        is_visible = pdfi_get_default_OCG_val(ctx, ocdict);
461
3.89k
        if (pdfi_must_check_usage(ctx, ocdict->object_num))
462
38
            is_visible = pdfi_oc_check_OCG_usage(ctx, ocdict);
463
3.89k
    } else {
464
94
        char str[100];
465
94
        memcpy(str, (const char *)type->data, type->length < 100 ? type->length : 99);
466
94
        str[type->length < 100 ? type->length : 99] = '\0';
467
94
        dbgprintf1("WARNING: OC dict type is %s, expected OCG or OCMD\n", str);
468
94
    }
469
470
55.1k
 cleanup:
471
55.1k
    pdfi_countdown(type);
472
473
55.1k
    if (ctx->args.pdfdebug) {
474
0
        outprintf(ctx->memory, "OCG: OC Dict %d %s visible\n", ocdict->object_num,
475
0
                  is_visible ? "IS" : "IS NOT");
476
0
    }
477
55.1k
    return is_visible;
478
55.0k
}
479
480
202k
#define NUM_CONTENT_LEVELS 100
481
typedef struct {
482
    byte *flags;
483
    uint64_t num_off;
484
    uint64_t max_flags;
485
} pdfi_oc_levels_t;
486
487
static int pdfi_oc_levels_init(pdf_context *ctx, pdfi_oc_levels_t **levels)
488
101k
{
489
101k
    byte *data;
490
101k
    pdfi_oc_levels_t *new;
491
492
101k
    *levels = NULL;
493
494
101k
    new = (pdfi_oc_levels_t *)gs_alloc_bytes(ctx->memory, sizeof(pdfi_oc_levels_t),
495
101k
                                             "pdfi_oc_levels_init (levels)");
496
101k
    if (!new)
497
0
        return_error(gs_error_VMerror);
498
499
101k
    data = (byte *)gs_alloc_bytes(ctx->memory, NUM_CONTENT_LEVELS, "pdfi_oc_levels_init (data)");
500
101k
    if (!data) {
501
0
        gs_free_object(ctx->memory, new, "pdfi_oc_levels_init (levels (error))");
502
0
        return_error(gs_error_VMerror);
503
0
    }
504
101k
    memset(data, 0, NUM_CONTENT_LEVELS);
505
506
101k
    new->flags = data;
507
101k
    new->num_off = 0;
508
101k
    new->max_flags = NUM_CONTENT_LEVELS;
509
101k
    *levels = new;
510
511
101k
    return 0;
512
101k
}
513
514
static int pdfi_oc_levels_free(pdf_context *ctx, pdfi_oc_levels_t *levels)
515
139k
{
516
139k
    if (!levels)
517
38.3k
        return 0;
518
101k
    gs_free_object(ctx->memory, levels->flags, "pdfi_oc_levels_free (flags)");
519
101k
    gs_free_object(ctx->memory, levels, "pdfi_oc_levels_free (levels)");
520
521
101k
    return 0;
522
139k
}
523
524
static int pdfi_oc_levels_set(pdf_context *ctx, pdfi_oc_levels_t *levels, uint64_t index)
525
42.1k
{
526
42.1k
    byte *new = NULL;
527
42.1k
    uint64_t newmax;
528
529
42.1k
    if (index > levels->max_flags - 1) {
530
        /* Expand the flags buffer */
531
0
        newmax = levels->max_flags + NUM_CONTENT_LEVELS;
532
0
        if (index >= newmax)
533
0
            return_error(gs_error_Fatal); /* shouldn't happen */
534
0
        new = gs_alloc_bytes(ctx->memory, newmax, "pdfi_oc_levels_set (new data)");
535
0
        if (!new)
536
0
            return_error(gs_error_VMerror);
537
0
        memset(new, 0, newmax);
538
0
        memcpy(new, levels->flags, levels->max_flags);
539
0
        gs_free_object(ctx->memory, levels->flags, "pdfi_oc_levels_set (old data)");
540
0
        levels->flags = new;
541
0
        levels->max_flags += NUM_CONTENT_LEVELS;
542
0
    }
543
544
42.1k
    if (levels->flags[index] == 0)
545
42.1k
        levels->num_off ++;
546
42.1k
    levels->flags[index] = 1;
547
42.1k
    return 0;
548
42.1k
}
549
550
static int pdfi_oc_levels_clear(pdf_context *ctx, pdfi_oc_levels_t *levels, uint64_t index)
551
324k
{
552
324k
    if (index > levels->max_flags - 1)
553
544
        return -1;
554
324k
    if (levels->flags[index] != 0)
555
42.0k
        levels->num_off --;
556
324k
    levels->flags[index] = 0;
557
324k
    return 0;
558
324k
}
559
560
561
/* Test if content is turned off for this element.
562
 */
563
bool pdfi_oc_is_off(pdf_context *ctx)
564
9.01M
{
565
9.01M
    pdfi_oc_levels_t *levels = (pdfi_oc_levels_t *)ctx->OFFlevels;
566
9.01M
    uint64_t num_off = levels->num_off;
567
568
9.01M
    return (num_off != 0);
569
9.01M
}
570
571
int pdfi_oc_init(pdf_context *ctx)
572
101k
{
573
101k
    int code;
574
575
101k
    ctx->BMClevel = 0;
576
101k
    if (ctx->OFFlevels) {
577
30.4k
        pdfi_oc_levels_free(ctx, ctx->OFFlevels);
578
30.4k
        ctx->OFFlevels = NULL;
579
30.4k
    }
580
101k
    code = pdfi_oc_levels_init(ctx, (pdfi_oc_levels_t **)&ctx->OFFlevels);
581
101k
    if (code < 0)
582
0
        return code;
583
584
101k
    return 0;
585
101k
}
586
587
int pdfi_oc_free(pdf_context *ctx)
588
108k
{
589
108k
    int code;
590
591
108k
    code = pdfi_oc_levels_free(ctx, (pdfi_oc_levels_t *)ctx->OFFlevels);
592
108k
    ctx->OFFlevels = NULL;
593
108k
    return code;
594
108k
}
595
596
int pdfi_op_MP(pdf_context *ctx)
597
2.58k
{
598
2.58k
    pdf_obj *o = NULL;
599
2.58k
    int code = 0;
600
601
2.58k
    if (pdfi_count_stack(ctx) < 1)
602
77
        return_error(gs_error_stackunderflow);
603
604
2.50k
    if (!ctx->device_state.writepdfmarks || !ctx->args.preservemarkedcontent) {
605
2.20k
        pdfi_pop(ctx, 1);
606
2.20k
        goto exit;
607
2.20k
    }
608
609
304
    o = ctx->stack_top[-1];
610
304
    pdfi_countup(o);
611
304
    pdfi_pop(ctx, 1);
612
613
304
    if (pdfi_type_of(o) != PDF_NAME) {
614
0
        code = gs_note_error(gs_error_typecheck);
615
0
        goto exit;
616
0
    }
617
618
304
    code = pdfi_pdfmark_from_objarray(ctx, &o, 1, NULL, "MP");
619
304
    ctx->BMClevel ++;
620
621
2.50k
exit:
622
2.50k
    pdfi_countdown(o);
623
2.50k
    return code;
624
304
}
625
626
int pdfi_op_DP(pdf_context *ctx, pdf_dict *stream_dict, pdf_dict *page_dict)
627
783
{
628
783
    pdf_name *properties = NULL;
629
783
    int code = 0;
630
783
    pdf_obj **objarray = NULL, *o = NULL;
631
632
783
    if (pdfi_count_stack(ctx) < 2) {
633
14
        pdfi_clearstack(ctx);
634
14
        return gs_note_error(gs_error_stackunderflow);
635
14
    }
636
637
769
    if (!ctx->device_state.writepdfmarks || !ctx->args.preservemarkedcontent) {
638
690
        pdfi_pop(ctx, 2); /* pop args */
639
690
        goto exit;
640
690
    }
641
642
79
    if (pdfi_type_of(ctx->stack_top[-2]) != PDF_NAME) {
643
0
        pdfi_pop(ctx, 2); /* pop args */
644
0
        code = gs_note_error(gs_error_typecheck);
645
0
        goto exit;
646
0
    }
647
648
79
    objarray = (pdf_obj **)gs_alloc_bytes(ctx->memory, 2 * sizeof(pdf_obj *), "pdfi_op_DP");
649
79
    if (objarray == NULL) {
650
0
        code = gs_note_error(gs_error_VMerror);
651
0
        goto exit;
652
0
    }
653
654
79
    objarray[0] = ctx->stack_top[-2];
655
79
    pdfi_countup(objarray[0]);
656
79
    o = ctx->stack_top[-1];
657
79
    pdfi_countup(o);
658
79
    pdfi_pop(ctx, 2); /* pop args */
659
660
79
    switch (pdfi_type_of(o)) {
661
0
        case PDF_NAME:
662
0
            code = pdfi_find_resource(ctx, (unsigned char *)"Properties", (pdf_name *)o, stream_dict, page_dict, (pdf_obj **)&properties);
663
0
            if(code < 0)
664
0
                goto exit;
665
0
            if (pdfi_type_of(properties) != PDF_DICT) {
666
0
                code = gs_note_error(gs_error_typecheck);
667
0
                goto exit;
668
0
            }
669
0
            objarray[1] = (pdf_obj *)properties;
670
0
            break;
671
79
        case PDF_DICT:
672
79
            objarray[1] = o;
673
79
            break;
674
0
        default:
675
0
            code = gs_note_error(gs_error_VMerror);
676
0
            goto exit;
677
79
    }
678
679
79
    code = pdfi_pdfmark_from_objarray(ctx, objarray, 2, NULL, "DP");
680
681
769
 exit:
682
769
    if (objarray != NULL) {
683
79
        pdfi_countdown(objarray[0]);
684
79
        gs_free_object(ctx->memory, objarray, "free pdfi_op_DP");
685
79
    }
686
769
    pdfi_countdown(o);
687
769
    pdfi_countdown(properties);
688
769
    return code;
689
79
}
690
691
/* begin marked content sequence */
692
int pdfi_op_BMC(pdf_context *ctx)
693
17.5k
{
694
17.5k
    pdf_obj *o = NULL;
695
17.5k
    int code = 0;
696
697
    /* This will also prevent us writing out an EMC if the BMC is in any way invalid */
698
17.5k
    ctx->BDCWasOC = true;
699
700
17.5k
    if (pdfi_count_stack(ctx) < 1)
701
16
        return_error(gs_error_stackunderflow);
702
703
17.5k
    if (!ctx->device_state.writepdfmarks || !ctx->args.preservemarkedcontent) {
704
        /* Need to increment the BMCLevel anyway, as the EMC will count it down.
705
         * If we already have a BDC, then that effectively will turn it on.
706
         */
707
15.8k
        ctx->BMClevel ++;
708
15.8k
        pdfi_pop(ctx, 1);
709
15.8k
        goto exit;
710
15.8k
    }
711
712
1.67k
    o = ctx->stack_top[-1];
713
1.67k
    pdfi_countup(o);
714
1.67k
    pdfi_pop(ctx, 1);
715
716
1.67k
    if (pdfi_type_of(o) != PDF_NAME) {
717
1
        code = gs_note_error(gs_error_typecheck);
718
1
        goto exit;
719
1
    }
720
721
1.67k
    ctx->BDCWasOC = false;
722
1.67k
    code = pdfi_pdfmark_from_objarray(ctx, &o, 1, NULL, "BMC");
723
1.67k
    ctx->BMClevel ++;
724
725
17.5k
exit:
726
17.5k
    pdfi_countdown(o);
727
17.5k
    return code;
728
1.67k
}
729
730
/* begin marked content sequence with property list */
731
int pdfi_op_BDC(pdf_context *ctx, pdf_dict *stream_dict, pdf_dict *page_dict)
732
314k
{
733
314k
    pdf_name *tag = NULL;
734
314k
    pdf_name *properties = NULL;
735
314k
    pdf_dict *oc_dict = NULL;
736
314k
    int code = 0;
737
314k
    bool ocg_is_visible;
738
314k
    pdf_obj **objarray = NULL, *o = NULL;
739
314k
    pdf_indirect_ref *dictref = NULL;
740
741
    /* This will also prevent us writing out an EMC if the BDC is in any way invalid */
742
314k
    ctx->BDCWasOC = true;
743
744
314k
    if (pdfi_count_stack(ctx) < 2) {
745
7.43k
        pdfi_clearstack(ctx);
746
7.43k
        return gs_note_error(gs_error_stackunderflow);
747
7.43k
    }
748
749
306k
    ctx->BMClevel ++;
750
751
306k
    tag = (pdf_name *)ctx->stack_top[-2];
752
306k
    pdfi_countup(tag);
753
306k
    o = ctx->stack_top[-1];
754
306k
    pdfi_countup(o);
755
306k
    pdfi_pop(ctx, 2);
756
757
306k
    if (pdfi_type_of(tag) != PDF_NAME)
758
2.98k
        goto exit;
759
760
303k
    if (!pdfi_name_is(tag, "OC"))
761
170k
        ctx->BDCWasOC = false;
762
763
303k
    if (ctx->device_state.writepdfmarks && ctx->args.preservemarkedcontent && (!ctx->BDCWasOC || ctx->device_state.WantsOptionalContent)) {
764
33.6k
        objarray = (pdf_obj **)gs_alloc_bytes(ctx->memory, 2 * sizeof(pdf_obj *), "pdfi_op_BDC");
765
33.6k
        if (objarray == NULL) {
766
0
            code = gs_note_error(gs_error_VMerror);
767
0
            goto exit;
768
0
        }
769
770
33.6k
        objarray[0] = (pdf_obj *)tag;
771
772
33.6k
        switch (pdfi_type_of(o)) {
773
15.4k
            case PDF_NAME:
774
15.4k
                code = pdfi_find_resource(ctx, (unsigned char *)"Properties", (pdf_name *)o, stream_dict, page_dict, (pdf_obj **)&oc_dict);
775
15.4k
                if(code < 0)
776
10.8k
                    goto exit;
777
4.59k
                if (pdfi_type_of(oc_dict) != PDF_DICT) {
778
120
                    code = gs_note_error(gs_error_typecheck);
779
120
                    goto exit;
780
120
                }
781
                /* If we are producing PDF/A we must not include any Metadata, as that
782
                 * requires us to modify the XMP Metadata, which we don't know how to do.
783
                 */
784
4.47k
                if (ctx->args.PDFA > 0) {
785
0
                    uint64_t index = 0;
786
0
                    pdf_name *Key = NULL;
787
0
                    pdf_obj *Value = NULL;
788
789
0
                    code = pdfi_dict_first(ctx, oc_dict, (pdf_obj **)&Key, &Value, &index);
790
0
                    if (code < 0) {
791
0
                        if (code == gs_error_undefined)
792
0
                            code = 0;
793
0
                        goto exit;
794
0
                    }
795
0
                    while (code >= 0) {
796
0
                        if (pdfi_name_is(Key, "Metadata")) {
797
0
                            pdfi_dict_delete_pair(ctx, oc_dict, Key);
798
0
                        }
799
0
                        pdfi_countdown(Key);
800
0
                        Key = NULL;
801
0
                        pdfi_countdown(Value);
802
0
                        Value = NULL;
803
804
0
                        code = pdfi_dict_next(ctx, oc_dict, (pdf_obj **)&Key, &Value, &index);
805
0
                        if (code == gs_error_undefined) {
806
0
                            code = 0;
807
0
                            break;
808
0
                        }
809
0
                    }
810
0
                }
811
4.47k
                if (pdfi_dict_entries(oc_dict) == 0)
812
9
                    goto exit;
813
814
4.47k
                code = pdfi_pdfmark_dict(ctx, oc_dict);
815
4.47k
                if (code < 0)
816
49
                    goto exit;
817
818
                /* Create an indirect ref for the dict */
819
4.42k
                code = pdfi_object_alloc(ctx, PDF_INDIRECT, 0, (pdf_obj **)&dictref);
820
4.42k
                if (code < 0) goto exit;
821
4.42k
                pdfi_countup(dictref);
822
4.42k
                dictref->ref_object_num = oc_dict->object_num;
823
4.42k
                dictref->ref_generation_num = oc_dict->generation_num;
824
4.42k
                dictref->is_marking = true;
825
826
4.42k
                objarray[1] = (pdf_obj *)dictref;
827
4.42k
                break;
828
18.1k
            case PDF_DICT:
829
18.1k
                objarray[1] = o;
830
18.1k
                break;
831
40
            default:
832
40
                code = gs_note_error(gs_error_VMerror);
833
40
                goto exit;
834
33.6k
        }
835
836
22.5k
        code = pdfi_pdfmark_from_objarray(ctx, objarray, 2, NULL, "BDC");
837
22.5k
        goto exit;
838
33.6k
    }
839
840
270k
    if (pdfi_name_is(tag, "OC")) {
841
        /* Check if first arg is a name and handle it if so */
842
        /* TODO: spec says it could also be an inline dict that we should be able to handle,
843
         * but I am just matching what gs does for now, and it doesn't handle that case.
844
         */
845
118k
        properties = (pdf_name *)o;
846
118k
        if (pdfi_type_of(properties) != PDF_NAME)
847
48
            goto exit;
848
849
118k
        code = pdfi_loop_detector_mark(ctx);
850
        /* If it's a name, look it up in Properties */
851
118k
        code = pdfi_find_resource(ctx, (unsigned char *)"Properties", properties,
852
118k
                                  (pdf_dict *)stream_dict, page_dict, (pdf_obj **)&oc_dict);
853
118k
        (void)pdfi_loop_detector_cleartomark(ctx);
854
118k
        if (code != 0)
855
62.9k
            goto exit;
856
55.4k
        if (pdfi_type_of(oc_dict) != PDF_DICT)
857
789
            goto exit;
858
859
54.6k
        ocg_is_visible = pdfi_oc_is_ocg_visible(ctx, oc_dict);
860
54.6k
        if (!ocg_is_visible)
861
42.1k
            code = pdfi_oc_levels_set(ctx, ctx->OFFlevels, ctx->BMClevel);
862
863
54.6k
    }
864
865
306k
exit:
866
306k
    if (objarray != NULL)
867
33.6k
        gs_free_object(ctx->memory, objarray, "free pdfi_op_BDC");
868
306k
    pdfi_countdown(dictref);
869
306k
    pdfi_countdown(o);
870
306k
    pdfi_countdown(tag);
871
306k
    pdfi_countdown(oc_dict);
872
306k
    return code;
873
270k
}
874
875
/* end marked content sequence */
876
int pdfi_op_EMC(pdf_context *ctx)
877
324k
{
878
324k
    int code, code1 = 0;
879
880
324k
    if (ctx->device_state.writepdfmarks && ctx->args.preservemarkedcontent && (!ctx->BDCWasOC || ctx->device_state.WantsOptionalContent))
881
34.7k
        code1 = pdfi_pdfmark_from_objarray(ctx, NULL, 0, NULL, "EMC");
882
883
324k
    code = pdfi_oc_levels_clear(ctx, ctx->OFFlevels, ctx->BMClevel);
884
324k
    if (code == 0)
885
324k
        code = code1;
886
887
    /* TODO: Should we flag error on too many EMC? */
888
324k
    if (ctx->BMClevel > 0)
889
313k
        ctx->BMClevel --;
890
324k
    return code;
891
324k
}