Coverage Report

Created: 2026-02-14 07:09

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-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
/* 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
66.9k
{
42
66.9k
    bool is_visible = true;
43
66.9k
    pdf_dict *D = NULL;
44
66.9k
    pdf_obj *BaseState = NULL;
45
66.9k
    pdf_array *OFF = NULL;
46
66.9k
    pdf_array *ON = NULL;
47
66.9k
    int code;
48
49
66.9k
    if (ctx->OCProperties == NULL)
50
4.13k
        return is_visible;
51
52
62.7k
    code = pdfi_dict_knownget_type(ctx, ctx->OCProperties, "D", PDF_DICT, (pdf_obj **)&D);
53
62.7k
    if (code <= 0)
54
19
        goto cleanup;
55
56
62.7k
    code = pdfi_dict_knownget_type(ctx, D, "BaseState", PDF_NAME, &BaseState);
57
62.7k
    if (code < 0) {
58
0
        goto cleanup;
59
0
    }
60
62.7k
    if (code > 0) {
61
62
        if (pdfi_name_is((pdf_name *)BaseState, "OFF")) {
62
0
            is_visible = false;
63
0
        }
64
62
    }
65
66
62.7k
    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
62.7k
    if (is_visible) {
77
62.7k
        code = pdfi_dict_knownget_type(ctx, D, "OFF", PDF_ARRAY, (pdf_obj **)&OFF);
78
62.7k
        if (code < 0)
79
1.88k
            goto cleanup;
80
60.8k
        if (code > 0) {
81
59.8k
            if (pdfi_array_known(ctx, OFF, (pdf_obj *)ocdict, NULL))
82
57.5k
                is_visible = false;
83
59.8k
        }
84
60.8k
    }
85
86
87
62.7k
 cleanup:
88
62.7k
    pdfi_countdown(BaseState);
89
62.7k
    pdfi_countdown(D);
90
62.7k
    pdfi_countdown(OFF);
91
62.7k
    pdfi_countdown(ON);
92
62.7k
    return is_visible;
93
62.7k
}
94
95
/* Check Usage for an OCG */
96
static bool
97
pdfi_oc_check_OCG_usage(pdf_context *ctx, pdf_dict *ocdict)
98
82
{
99
82
    bool is_visible = true;
100
82
    int code;
101
82
    pdf_dict *Usage = NULL;
102
82
    pdf_dict *dict = NULL;
103
82
    pdf_obj *name = NULL;
104
105
    /* Check Usage to see if it has additional info */
106
82
    code = pdfi_dict_knownget_type(ctx, ocdict, "Usage", PDF_DICT, (pdf_obj **)&Usage);
107
82
    if (code <= 0) {
108
        /* No Usage, so we're done */
109
62
        goto cleanup;
110
62
    }
111
112
20
    if (ctx->args.printed) {
113
20
        code = pdfi_dict_knownget_type(ctx, Usage, "Print", PDF_DICT, (pdf_obj **)&dict);
114
20
        if (code <= 0)
115
0
            goto cleanup;
116
20
        code = pdfi_dict_knownget_type(ctx, dict, "PrintState", PDF_NAME, &name);
117
20
        if (code <= 0)
118
0
            goto cleanup;
119
20
    } 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
20
    if (pdfi_name_strcmp((pdf_name *)name, "OFF") == 0) {
128
0
        is_visible = false;
129
0
    }
130
131
82
 cleanup:
132
82
    pdfi_countdown(Usage);
133
82
    pdfi_countdown(dict);
134
82
    pdfi_countdown(name);
135
136
82
    return is_visible;
137
20
}
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
5.41k
{
148
5.41k
    int code;
149
5.41k
    pdf_dict *D_dict = NULL;
150
5.41k
    pdf_name *B = NULL;
151
152
5.41k
    code = pdfi_dict_knownget_type(ctx, ctx->OCProperties, "D", PDF_DICT, (pdf_obj **)&D_dict);
153
5.41k
    if (code < 0 || D_dict == NULL)
154
99
        return true;
155
156
5.31k
    code = pdfi_dict_knownget_type(ctx, D_dict, "BaseState", PDF_NAME, (pdf_obj **)&B);
157
5.31k
    (void)pdfi_countdown(D_dict);
158
5.31k
    D_dict = NULL;
159
5.31k
    if (code < 0 || B == NULL)
160
5.31k
        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
67.2k
{
174
67.2k
    bool is_visible, hit = false;
175
67.2k
    uint64_t i;
176
67.2k
    int code;
177
67.2k
    pdf_obj *val = NULL;
178
179
    /* Setup default */
180
67.2k
    switch (type) {
181
67.2k
    case P_AnyOn:
182
67.2k
    case P_AnyOff:
183
67.2k
        is_visible = false;
184
67.2k
        break;
185
0
    case P_AllOn:
186
0
    case P_AllOff:
187
0
        is_visible = true;
188
0
        break;
189
67.2k
    }
190
191
129k
    for (i=0; i<pdfi_array_size(array); i++) {
192
67.2k
        bool vis;
193
194
67.2k
        code = pdfi_array_get(ctx, array, i, &val);
195
67.2k
        if (code < 0) continue;
196
62.1k
        if (pdfi_type_of(val) != PDF_DICT) {
197
100
            dbgprintf1("WARNING: OCMD array contains item type %d, expected PDF_DICT or PDF_NULL\n", pdfi_type_of(val));
198
100
            pdfi_countdown(val);
199
100
            val = NULL;
200
100
            continue;
201
100
        }
202
203
62.0k
        hit = true;
204
62.0k
        vis = pdfi_get_default_OCG_val(ctx, (pdf_dict *)val);
205
62.0k
        switch (type) {
206
62.0k
        case P_AnyOn:
207
            /* visible if any is on */
208
62.0k
            if (vis) {
209
4.61k
                is_visible = true;
210
4.61k
                goto cleanup;
211
4.61k
            }
212
57.4k
            break;
213
57.4k
        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
62.0k
        }
235
57.4k
        pdfi_countdown(val);
236
57.4k
        val = NULL;
237
57.4k
    }
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
62.6k
    if (!hit)
247
5.26k
        is_visible = pdfi_oc_default_visibility(ctx);
248
249
67.2k
cleanup:
250
67.2k
    pdfi_countdown(val);
251
67.2k
    return is_visible;
252
62.6k
}
253
254
static bool
255
pdfi_oc_check_OCMD(pdf_context *ctx, pdf_dict *ocdict)
256
67.9k
{
257
67.9k
    bool is_visible = true;
258
67.9k
    int code;
259
67.9k
    pdf_obj *VE = NULL;
260
67.9k
    pdf_obj *obj = NULL;
261
67.9k
    pdf_obj *Pname = NULL;
262
67.9k
    pdf_dict *OCGs_dict = NULL; /* alias, don't need to free */
263
67.9k
    pdf_array *OCGs_array = NULL; /* alias, don't need to free */
264
67.9k
    pdf_dict *UsageDict = NULL, *StateDict = NULL;
265
67.9k
    pdf_obj *State = NULL;
266
67.9k
    ocmd_p_type Ptype = P_AnyOn;
267
268
    /* TODO: We don't support this, so log a warning and ignore */
269
67.9k
    code = pdfi_dict_knownget_type(ctx, ocdict, "VE", PDF_ARRAY, &VE);
270
67.9k
    if (code > 0) {
271
253
        dbgprintf("WARNING: OCMD contains VE, which is not supported (ignoring)\n");
272
253
    }
273
274
67.9k
    code = pdfi_dict_knownget(ctx, ocdict, "OCGs", &obj);
275
67.9k
    if (code <= 0)
276
321
        goto cleanup;
277
67.6k
    if (pdfi_type_of(obj) == PDF_ARRAY) {
278
67.2k
        OCGs_array = (pdf_array *)obj;
279
67.2k
    } else if (pdfi_type_of(obj) == PDF_DICT) {
280
221
        OCGs_dict = (pdf_dict *)obj;
281
221
    } else {
282
147
        is_visible = pdfi_oc_default_visibility(ctx);
283
147
        goto cleanup;
284
147
    }
285
286
67.4k
    code = pdfi_dict_knownget_type(ctx, ocdict, "P", PDF_NAME, &Pname);
287
67.4k
    if (code < 0)
288
0
        goto cleanup;
289
67.4k
    if (code == 0 || pdfi_name_is((pdf_name *)Pname, "AnyOn")) {
290
67.4k
        Ptype = P_AnyOn;
291
67.4k
    } 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
67.4k
    if (OCGs_dict) {
302
221
        switch (Ptype) {
303
221
        case P_AnyOn:
304
221
        case P_AllOn:
305
221
            is_visible = pdfi_get_default_OCG_val(ctx, OCGs_dict);
306
221
            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
221
        }
312
67.2k
    } else {
313
67.2k
        is_visible = pdfi_oc_check_OCMD_array(ctx, OCGs_array, Ptype);
314
67.2k
    }
315
316
67.4k
    if (OCGs_dict) {
317
221
        code = pdfi_dict_knownget_type(ctx, OCGs_dict, "Usage", PDF_DICT, (pdf_obj **)&UsageDict);
318
221
        if (code < 0)
319
0
            goto cleanup;
320
321
221
        if (UsageDict != NULL) {
322
108
            if (ctx->args.printed) {
323
108
                code = pdfi_dict_knownget_type(ctx, UsageDict, "Print", PDF_DICT, (pdf_obj **)&StateDict);
324
108
                if (code < 0)
325
0
                    goto cleanup;
326
108
                if (StateDict) {
327
30
                    code = pdfi_dict_knownget_type(ctx, StateDict, "PrintState", PDF_NAME, &State);
328
30
                    if (code < 0)
329
0
                        goto cleanup;
330
30
                }
331
108
            } 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
108
            if (State) {
342
30
                if (pdfi_name_is((const pdf_name *)State, "ON"))
343
30
                    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
30
            }
350
108
        }
351
221
    }
352
353
67.9k
 cleanup:
354
67.9k
    pdfi_countdown(State);
355
67.9k
    pdfi_countdown(StateDict);
356
67.9k
    pdfi_countdown(UsageDict);
357
67.9k
    pdfi_countdown(VE);
358
67.9k
    pdfi_countdown(obj);
359
67.9k
    pdfi_countdown(Pname);
360
361
67.9k
    return is_visible;
362
67.4k
}
363
364
static bool pdfi_must_check_usage(pdf_context *ctx, int64_t object)
365
4.68k
{
366
4.68k
    pdf_dict *D = NULL, *EventDict = NULL;
367
4.68k
    pdf_array *AS = NULL, *OCGs = NULL;
368
4.68k
    pdf_name *Event = NULL;
369
4.68k
    bool check = false;
370
4.68k
    int i, code = 0;
371
372
4.68k
    if (ctx->OCProperties != NULL) {
373
3.14k
        if (pdfi_dict_knownget_type(ctx, ctx->OCProperties, "D", PDF_DICT, (pdf_obj **)&D) > 0) {
374
3.13k
            if (pdfi_dict_knownget_type(ctx, D, "AS", PDF_ARRAY, (pdf_obj **)&AS) > 0) {
375
164
                for (i = 0; i < pdfi_array_size(AS); i++) {
376
164
                    code = pdfi_array_get(ctx, AS, i, (pdf_obj **)&EventDict);
377
164
                    if (code < 0)
378
0
                        goto exit;
379
164
                    if (pdfi_type_of(EventDict) == PDF_DICT) {
380
164
                        if (pdfi_dict_knownget_type(ctx, EventDict, "Event", PDF_NAME, (pdf_obj **)&Event) > 0) {
381
164
                            if (ctx->args.printed) {
382
164
                                if (Event->length == 5 && strncmp((const char *)Event->data, "Print", 5) == 0) {
383
82
                                    if (pdfi_dict_knownget_type(ctx, EventDict, "OCGs", PDF_ARRAY, (pdf_obj **)&OCGs) > 0) {
384
82
                                        pdfi_countdown(Event);
385
82
                                        Event = NULL;
386
82
                                        pdfi_countdown(EventDict);
387
82
                                        EventDict = NULL;
388
82
                                        break;
389
82
                                    }
390
82
                                }
391
164
                            } 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
82
                            pdfi_countdown(Event);
403
82
                            Event = NULL;
404
82
                        }
405
164
                    }
406
82
                    pdfi_countdown(EventDict);
407
82
                    EventDict = NULL;
408
82
                }
409
82
                pdfi_countdown(AS);
410
82
                AS = NULL;
411
82
                if (OCGs) {
412
82
                    pdf_obj *Group = NULL;
413
414
253
                    for (i = 0; i < pdfi_array_size(OCGs); i++) {
415
253
                        code = pdfi_array_get(ctx, OCGs, i, (pdf_obj **)&Group);
416
253
                        if (code < 0)
417
0
                            goto exit;
418
253
                        if (Group->object_num == object) {
419
82
                            pdfi_countdown(Group);
420
82
                            check = true;
421
82
                            goto exit;
422
82
                        }
423
171
                        pdfi_countdown(Group);
424
171
                        Group = NULL;
425
171
                    }
426
0
                    pdfi_countdown(OCGs);
427
0
                    OCGs = NULL;
428
0
                }
429
82
            }
430
3.05k
            pdfi_countdown(D);
431
3.05k
            D = NULL;
432
3.05k
        }
433
3.14k
    }
434
4.68k
exit:
435
4.68k
    pdfi_countdown(OCGs);
436
4.68k
    pdfi_countdown(Event);
437
4.68k
    pdfi_countdown(EventDict);
438
4.68k
    pdfi_countdown(AS);
439
4.68k
    pdfi_countdown(D);
440
4.68k
    return check;
441
4.68k
}
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
72.8k
{
447
72.8k
    pdf_name *type = NULL;
448
72.8k
    bool is_visible = true;
449
72.8k
    int code;
450
451
    /* Type can be either OCMD or OCG.
452
     */
453
72.8k
    code = pdfi_dict_knownget_type(ctx, ocdict, "Type", PDF_NAME, (pdf_obj **)&type);
454
72.8k
    if (code <= 0)
455
85
        goto cleanup;
456
457
72.8k
    if (pdfi_name_is(type, "OCMD")) {
458
67.9k
        is_visible = pdfi_oc_check_OCMD(ctx, ocdict);
459
67.9k
    } else if (pdfi_name_is(type, "OCG")) {
460
4.68k
        is_visible = pdfi_get_default_OCG_val(ctx, ocdict);
461
4.68k
        if (pdfi_must_check_usage(ctx, ocdict->object_num))
462
82
            is_visible = pdfi_oc_check_OCG_usage(ctx, ocdict);
463
4.68k
    } else {
464
167
        char str[100];
465
167
        memcpy(str, (const char *)type->data, type->length < 100 ? type->length : 99);
466
167
        str[type->length < 100 ? type->length : 99] = '\0';
467
167
        dbgprintf1("WARNING: OC dict type is %s, expected OCG or OCMD\n", str);
468
167
    }
469
470
72.8k
 cleanup:
471
72.8k
    pdfi_countdown(type);
472
473
72.8k
    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
72.8k
    return is_visible;
478
72.8k
}
479
480
219k
#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
109k
{
489
109k
    byte *data;
490
109k
    pdfi_oc_levels_t *new;
491
492
109k
    *levels = NULL;
493
494
109k
    new = (pdfi_oc_levels_t *)gs_alloc_bytes(ctx->memory, sizeof(pdfi_oc_levels_t),
495
109k
                                             "pdfi_oc_levels_init (levels)");
496
109k
    if (!new)
497
0
        return_error(gs_error_VMerror);
498
499
109k
    data = (byte *)gs_alloc_bytes(ctx->memory, NUM_CONTENT_LEVELS, "pdfi_oc_levels_init (data)");
500
109k
    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
109k
    memset(data, 0, NUM_CONTENT_LEVELS);
505
506
109k
    new->flags = data;
507
109k
    new->num_off = 0;
508
109k
    new->max_flags = NUM_CONTENT_LEVELS;
509
109k
    *levels = new;
510
511
109k
    return 0;
512
109k
}
513
514
static int pdfi_oc_levels_free(pdf_context *ctx, pdfi_oc_levels_t *levels)
515
135k
{
516
135k
    if (!levels)
517
25.6k
        return 0;
518
109k
    gs_free_object(ctx->memory, levels->flags, "pdfi_oc_levels_free (flags)");
519
109k
    gs_free_object(ctx->memory, levels, "pdfi_oc_levels_free (levels)");
520
521
109k
    return 0;
522
135k
}
523
524
static int pdfi_oc_levels_set(pdf_context *ctx, pdfi_oc_levels_t *levels, uint64_t index)
525
57.4k
{
526
57.4k
    byte *new = NULL;
527
57.4k
    uint64_t newmax;
528
529
57.4k
    if (index > levels->max_flags - 1) {
530
        /* Expand the flags buffer */
531
3
        newmax = levels->max_flags + NUM_CONTENT_LEVELS;
532
3
        if (index > newmax)
533
0
            return_error(gs_error_Fatal); /* shouldn't happen */
534
3
        new = gs_alloc_bytes(ctx->memory, newmax, "pdfi_oc_levels_set (new data)");
535
3
        if (!new)
536
0
            return_error(gs_error_VMerror);
537
3
        memset(new, 0, newmax);
538
3
        memcpy(new, levels->flags, levels->max_flags);
539
3
        gs_free_object(ctx->memory, levels->flags, "pdfi_oc_levels_set (old data)");
540
3
        levels->flags = new;
541
3
        levels->max_flags += NUM_CONTENT_LEVELS;
542
3
    }
543
544
57.4k
    if (levels->flags[index] == 0)
545
57.4k
        levels->num_off ++;
546
57.4k
    levels->flags[index] = 1;
547
57.4k
    return 0;
548
57.4k
}
549
550
static int pdfi_oc_levels_clear(pdf_context *ctx, pdfi_oc_levels_t *levels, uint64_t index)
551
382k
{
552
382k
    if (index > levels->max_flags - 1)
553
275
        return -1;
554
382k
    if (levels->flags[index] != 0)
555
57.1k
        levels->num_off --;
556
382k
    levels->flags[index] = 0;
557
382k
    return 0;
558
382k
}
559
560
561
/* Test if content is turned off for this element.
562
 */
563
bool pdfi_oc_is_off(pdf_context *ctx)
564
9.80M
{
565
9.80M
    pdfi_oc_levels_t *levels = (pdfi_oc_levels_t *)ctx->OFFlevels;
566
9.80M
    uint64_t num_off = levels->num_off;
567
568
9.80M
    return (num_off != 0);
569
9.80M
}
570
571
int pdfi_oc_init(pdf_context *ctx)
572
109k
{
573
109k
    int code;
574
575
109k
    ctx->BMClevel = 0;
576
109k
    if (ctx->OFFlevels) {
577
29.7k
        pdfi_oc_levels_free(ctx, ctx->OFFlevels);
578
29.7k
        ctx->OFFlevels = NULL;
579
29.7k
    }
580
109k
    code = pdfi_oc_levels_init(ctx, (pdfi_oc_levels_t **)&ctx->OFFlevels);
581
109k
    if (code < 0)
582
0
        return code;
583
584
109k
    return 0;
585
109k
}
586
587
int pdfi_oc_free(pdf_context *ctx)
588
105k
{
589
105k
    int code;
590
591
105k
    code = pdfi_oc_levels_free(ctx, (pdfi_oc_levels_t *)ctx->OFFlevels);
592
105k
    ctx->OFFlevels = NULL;
593
105k
    return code;
594
105k
}
595
596
int pdfi_op_MP(pdf_context *ctx)
597
3.06k
{
598
3.06k
    pdf_obj *o = NULL;
599
3.06k
    int code = 0;
600
601
3.06k
    if (pdfi_count_stack(ctx) < 1)
602
90
        return_error(gs_error_stackunderflow);
603
604
2.97k
    if (!ctx->device_state.writepdfmarks || !ctx->args.preservemarkedcontent) {
605
2.67k
        pdfi_pop(ctx, 1);
606
2.67k
        goto exit;
607
2.67k
    }
608
609
294
    o = ctx->stack_top[-1];
610
294
    pdfi_countup(o);
611
294
    pdfi_pop(ctx, 1);
612
613
294
    if (pdfi_type_of(o) != PDF_NAME) {
614
0
        code = gs_note_error(gs_error_typecheck);
615
0
        goto exit;
616
0
    }
617
618
294
    code = pdfi_pdfmark_from_objarray(ctx, &o, 1, NULL, "MP");
619
294
    ctx->BMClevel ++;
620
621
2.97k
exit:
622
2.97k
    pdfi_countdown(o);
623
2.97k
    return code;
624
294
}
625
626
int pdfi_op_DP(pdf_context *ctx, pdf_dict *stream_dict, pdf_dict *page_dict)
627
656
{
628
656
    pdf_name *properties = NULL;
629
656
    int code = 0;
630
656
    pdf_obj **objarray = NULL, *o = NULL;
631
632
656
    if (pdfi_count_stack(ctx) < 2) {
633
16
        pdfi_clearstack(ctx);
634
16
        return gs_note_error(gs_error_stackunderflow);
635
16
    }
636
637
640
    if (!ctx->device_state.writepdfmarks || !ctx->args.preservemarkedcontent) {
638
549
        pdfi_pop(ctx, 2); /* pop args */
639
549
        goto exit;
640
549
    }
641
642
91
    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
91
    objarray = (pdf_obj **)gs_alloc_bytes(ctx->memory, 2 * sizeof(pdf_obj *), "pdfi_op_DP");
649
91
    if (objarray == NULL) {
650
0
        code = gs_note_error(gs_error_VMerror);
651
0
        goto exit;
652
0
    }
653
654
91
    objarray[0] = ctx->stack_top[-2];
655
91
    pdfi_countup(objarray[0]);
656
91
    o = ctx->stack_top[-1];
657
91
    pdfi_countup(o);
658
91
    pdfi_pop(ctx, 2); /* pop args */
659
660
91
    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
91
        case PDF_DICT:
672
91
            objarray[1] = o;
673
91
            break;
674
0
        default:
675
0
            code = gs_note_error(gs_error_VMerror);
676
0
            goto exit;
677
91
    }
678
679
91
    code = pdfi_pdfmark_from_objarray(ctx, objarray, 2, NULL, "DP");
680
681
640
 exit:
682
640
    if (objarray != NULL) {
683
91
        pdfi_countdown(objarray[0]);
684
91
        gs_free_object(ctx->memory, objarray, "free pdfi_op_DP");
685
91
    }
686
640
    pdfi_countdown(o);
687
640
    pdfi_countdown(properties);
688
640
    return code;
689
91
}
690
691
/* begin marked content sequence */
692
int pdfi_op_BMC(pdf_context *ctx)
693
19.6k
{
694
19.6k
    pdf_obj *o = NULL;
695
19.6k
    int code = 0;
696
697
    /* This will also prevent us writing out an EMC if the BMC is in any way invalid */
698
19.6k
    ctx->BDCWasOC = true;
699
700
19.6k
    if (pdfi_count_stack(ctx) < 1)
701
14
        return_error(gs_error_stackunderflow);
702
703
19.6k
    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
18.3k
        ctx->BMClevel ++;
708
18.3k
        pdfi_pop(ctx, 1);
709
18.3k
        goto exit;
710
18.3k
    }
711
712
1.34k
    o = ctx->stack_top[-1];
713
1.34k
    pdfi_countup(o);
714
1.34k
    pdfi_pop(ctx, 1);
715
716
1.34k
    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.34k
    ctx->BDCWasOC = false;
722
1.34k
    code = pdfi_pdfmark_from_objarray(ctx, &o, 1, NULL, "BMC");
723
1.34k
    ctx->BMClevel ++;
724
725
19.6k
exit:
726
19.6k
    pdfi_countdown(o);
727
19.6k
    return code;
728
1.34k
}
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
370k
{
733
370k
    pdf_name *tag = NULL;
734
370k
    pdf_name *properties = NULL;
735
370k
    pdf_dict *oc_dict = NULL;
736
370k
    int code = 0;
737
370k
    bool ocg_is_visible;
738
370k
    pdf_obj **objarray = NULL, *o = NULL;
739
370k
    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
370k
    ctx->BDCWasOC = true;
743
744
370k
    if (pdfi_count_stack(ctx) < 2) {
745
10.0k
        pdfi_clearstack(ctx);
746
10.0k
        return gs_note_error(gs_error_stackunderflow);
747
10.0k
    }
748
749
360k
    ctx->BMClevel ++;
750
751
360k
    tag = (pdf_name *)ctx->stack_top[-2];
752
360k
    pdfi_countup(tag);
753
360k
    o = ctx->stack_top[-1];
754
360k
    pdfi_countup(o);
755
360k
    pdfi_pop(ctx, 2);
756
757
360k
    if (pdfi_type_of(tag) != PDF_NAME)
758
4.43k
        goto exit;
759
760
356k
    if (!pdfi_name_is(tag, "OC"))
761
199k
        ctx->BDCWasOC = false;
762
763
356k
    if (ctx->device_state.writepdfmarks && ctx->args.preservemarkedcontent && (!ctx->BDCWasOC || ctx->device_state.WantsOptionalContent)) {
764
27.4k
        objarray = (pdf_obj **)gs_alloc_bytes(ctx->memory, 2 * sizeof(pdf_obj *), "pdfi_op_BDC");
765
27.4k
        if (objarray == NULL) {
766
0
            code = gs_note_error(gs_error_VMerror);
767
0
            goto exit;
768
0
        }
769
770
27.4k
        objarray[0] = (pdf_obj *)tag;
771
772
27.4k
        switch (pdfi_type_of(o)) {
773
13.0k
            case PDF_NAME:
774
13.0k
                code = pdfi_find_resource(ctx, (unsigned char *)"Properties", (pdf_name *)o, stream_dict, page_dict, (pdf_obj **)&oc_dict);
775
13.0k
                if(code < 0)
776
10.6k
                    goto exit;
777
2.33k
                if (pdfi_type_of(oc_dict) != PDF_DICT) {
778
122
                    code = gs_note_error(gs_error_typecheck);
779
122
                    goto exit;
780
122
                }
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
2.21k
                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
2.21k
                if (pdfi_dict_entries(oc_dict) == 0)
812
9
                    goto exit;
813
814
2.20k
                code = pdfi_pdfmark_dict(ctx, oc_dict);
815
2.20k
                if (code < 0)
816
50
                    goto exit;
817
818
                /* Create an indirect ref for the dict */
819
2.15k
                code = pdfi_object_alloc(ctx, PDF_INDIRECT, 0, (pdf_obj **)&dictref);
820
2.15k
                if (code < 0) goto exit;
821
2.15k
                pdfi_countup(dictref);
822
2.15k
                dictref->ref_object_num = oc_dict->object_num;
823
2.15k
                dictref->ref_generation_num = oc_dict->generation_num;
824
2.15k
                dictref->is_marking = true;
825
826
2.15k
                objarray[1] = (pdf_obj *)dictref;
827
2.15k
                break;
828
14.3k
            case PDF_DICT:
829
14.3k
                objarray[1] = o;
830
14.3k
                break;
831
40
            default:
832
40
                code = gs_note_error(gs_error_VMerror);
833
40
                goto exit;
834
27.4k
        }
835
836
16.5k
        code = pdfi_pdfmark_from_objarray(ctx, objarray, 2, NULL, "BDC");
837
16.5k
        goto exit;
838
27.4k
    }
839
840
329k
    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
144k
        properties = (pdf_name *)o;
846
144k
        if (pdfi_type_of(properties) != PDF_NAME)
847
64
            goto exit;
848
849
144k
        code = pdfi_loop_detector_mark(ctx);
850
        /* If it's a name, look it up in Properties */
851
144k
        code = pdfi_find_resource(ctx, (unsigned char *)"Properties", properties,
852
144k
                                  (pdf_dict *)stream_dict, page_dict, (pdf_obj **)&oc_dict);
853
144k
        (void)pdfi_loop_detector_cleartomark(ctx);
854
144k
        if (code != 0)
855
70.8k
            goto exit;
856
73.5k
        if (pdfi_type_of(oc_dict) != PDF_DICT)
857
1.27k
            goto exit;
858
859
72.2k
        ocg_is_visible = pdfi_oc_is_ocg_visible(ctx, oc_dict);
860
72.2k
        if (!ocg_is_visible)
861
57.4k
            code = pdfi_oc_levels_set(ctx, ctx->OFFlevels, ctx->BMClevel);
862
863
72.2k
    }
864
865
360k
exit:
866
360k
    if (objarray != NULL)
867
27.4k
        gs_free_object(ctx->memory, objarray, "free pdfi_op_BDC");
868
360k
    pdfi_countdown(dictref);
869
360k
    pdfi_countdown(o);
870
360k
    pdfi_countdown(tag);
871
360k
    pdfi_countdown(oc_dict);
872
360k
    return code;
873
329k
}
874
875
/* end marked content sequence */
876
int pdfi_op_EMC(pdf_context *ctx)
877
382k
{
878
382k
    int code, code1 = 0;
879
880
382k
    if (ctx->device_state.writepdfmarks && ctx->args.preservemarkedcontent && (!ctx->BDCWasOC || ctx->device_state.WantsOptionalContent))
881
28.3k
        code1 = pdfi_pdfmark_from_objarray(ctx, NULL, 0, NULL, "EMC");
882
883
382k
    code = pdfi_oc_levels_clear(ctx, ctx->OFFlevels, ctx->BMClevel);
884
382k
    if (code == 0)
885
382k
        code = code1;
886
887
    /* TODO: Should we flag error on too many EMC? */
888
382k
    if (ctx->BMClevel > 0)
889
368k
        ctx->BMClevel --;
890
382k
    return code;
891
382k
}