Coverage Report

Created: 2025-11-16 07:40

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