summaryrefslogtreecommitdiff
path: root/base/gstype1.c
blob: b564b79b83339001ad3693c2cf61f35682e62f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
/* Copyright (C) 2001-2023 Artifex Software, Inc.
   All Rights Reserved.

   This software is provided AS-IS with no warranty, either express or
   implied.

   This software is distributed under license and may not be copied,
   modified or distributed except as expressly authorized under the terms
   of the license contained in the file LICENSE in this distribution.

   Refer to licensing information at http://www.artifex.com or contact
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
   CA 94129, USA, for further information.
*/


/* Adobe Type 1 charstring interpreter */
#include "math_.h"
#include "memory_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsstruct.h"
#include "gxarith.h"
#include "gxfixed.h"
#include "gxmatrix.h"
#include "gxcoord.h"
#include "gxgstate.h"
#include "gxpath.h"
#include "gxfont.h"
#include "gxfont1.h"
#include "gxtype1.h"
#include "gxhintn.h"

/*
 * Define whether to always do Flex segments as curves.
 * This is only an issue because some old Adobe DPS fonts
 * seem to violate the Flex specification in a way that requires this.
 * We changed this from 1 to 0 in release 5.02: if it causes any
 * problems, we'll implement a more sophisticated test.
 */
#define ALWAYS_DO_FLEX_AS_CURVE 0

/* ------ Interpreter subroutines ------ */

/*
 * According to "Adobe Type 1 Font Format",
 * Section 6.2 "CharString Number Encoding", in particular the Note at
 * the end of the section:
 * "Numbers with absolute values larger than 32,000 must be followed by a
 * div operator such that the result of the div is less than 32,000."
 *
 * This function looks ahead for the div operator
 * and applies it in the compile time, so that the big numbers
 * are not placed onto the stack.
 */
int gs_type1_check_float(crypt_state *state, bool encrypted, const byte **ci, cs_ptr csp, long lw)
{
    long denom;
    uint c0;
    int c;
    const byte *cip = *ci;

    c0 = *cip++;
    charstring_next(c0, *state, c, encrypted);
    if (c < c_num1)
        return_error(gs_error_rangecheck);
    if (c < c_pos2_0)
        decode_num1(denom, c);
    else if (c < cx_num4)
        decode_num2(denom, c, cip, *state, encrypted);
    else if (c == cx_num4)
        decode_num4(denom, cip, *state, encrypted);
    else
        return_error(gs_error_invalidfont);
    c0 = *cip++;
    charstring_next(c0, *state, c, encrypted);
    if (c != cx_escape)
        return_error(gs_error_rangecheck);
    c0 = *cip++;
    charstring_next(c0, *state, c, encrypted);
    if (c != ce1_div)
        return_error(gs_error_rangecheck);
    /* Rather "Adobe Type 1 Font Format" restricts the div result with 32,000,
       We don't want to check it here as a compatibility to the old code,
       and because Type 2 doesn't set this limitation.
       Instead that we're checking here just for 'fixed' overflow,
       which is a weaker limit.
     */
    if (any_abs(lw / denom) > max_int_in_fixed) {
        return_error(gs_error_rangecheck);
    }
    *csp = float2fixed((double)lw / denom);
    *ci = cip;
    return(0);
}

/* ------ Main interpreter ------ */

/*
 * Continue interpreting a Type 1 charstring.  If str != 0, it is taken as
 * the byte string to interpret.  Return 0 on successful completion, <0 on
 * error, or >0 when client intervention is required (or allowed).  The int*
 * argument is where the othersubr # is stored for callothersubr.
 */
int
gs_type1_interpret(gs_type1_state * pcis, const gs_glyph_data_t *pgd,
                   int *pindex)
{
    gs_font_type1 *pfont = pcis->pfont;
    gs_type1_data *pdata = &pfont->data;
    t1_hinter *h = &pcis->h;
    bool encrypted = pdata->lenIV >= 0;
    fixed cstack[ostack_size];

#define cs0 cstack[0]
#define ics0 fixed2int_var(cs0)
#define cs1 cstack[1]
#define ics1 fixed2int_var(cs1)
#define cs2 cstack[2]
#define ics2 fixed2int_var(cs2)
#define cs3 cstack[3]
#define ics3 fixed2int_var(cs3)
#define cs4 cstack[4]
#define ics4 fixed2int_var(cs4)
#define cs5 cstack[5]
#define ics5 fixed2int_var(cs5)
    cs_ptr csp;
#define clear CLEAR_CSTACK(cstack, csp)
    ip_state_t *ipsp = &pcis->ipstack[pcis->ips_count - 1];
    const byte *cip, *cipend;
    crypt_state state;
    register int c;
    int code = 0;

    switch (pcis->init_done) {
        case -1:
            t1_hinter__init(h, pcis->path);
            break;
        case 0:
            gs_type1_finish_init(pcis);	/* sets origin */
            code = t1_hinter__set_mapping(h, &pcis->pgs->ctm,
                            &pfont->FontMatrix, &pfont->base->FontMatrix,
                            pcis->scale.x.log2_unit, pcis->scale.x.log2_unit,
                            pcis->scale.x.log2_unit - pcis->log2_subpixels.x,
                            pcis->scale.y.log2_unit - pcis->log2_subpixels.y,
                            pcis->origin.x, pcis->origin.y,
                            gs_currentaligntopixels(pfont->dir));
            if (code < 0)
                return code;
            code = t1_hinter__set_font_data(pfont->memory, h, 1, pdata, pcis->no_grid_fitting,
                            pcis->pfont->is_resource);
            if (code < 0)
                return code;
            break;
        default /*case 1 */ :
            break;
    }
    INIT_CSTACK(cstack, csp, pcis);

    if (pgd == 0)
        goto cont;
    ipsp->cs_data = *pgd;
    cip = pgd->bits.data;
    if (cip == 0)
        return (gs_note_error(gs_error_invalidfont));
    cipend = cip + pgd->bits.size;
    goto call;
    for (;;) {
        uint c0 = *cip++;
        if (cip > cipend)
            return_error(gs_error_invalidfont);

        charstring_next(c0, state, c, encrypted);
        if (c < c_num1) {
#ifdef DEBUG
            if (gs_debug['1']) {
                static const char *const c1names[] =
                {char1_command_names};

                if (c1names[c] == 0)
                    dmlprintf2(pfont->memory, "[1]"PRI_INTPTR": %02x??\n", (intptr_t)(cip - 1), c);
                else
                    dmlprintf3(pfont->memory, "[1]"PRI_INTPTR": %02x %s\n", (intptr_t)(cip - 1), c,
                              c1names[c]);
            }
#endif
            switch ((char_command) c) {

                /* Commands with identical functions in Type 1 and Type 2, */
                /* except for 'escape'. */

            case c_undef0:
            case c_undef2:
            case c_undef17:
                return_error(gs_error_invalidfont);
            case c_callsubr:
                CS_CHECK_POP(csp, cstack);
                c = fixed2int_var(*csp) + pdata->subroutineNumberBias;
                code = pdata->procs.subr_data
                    (pfont, c, false, &ipsp[1].cs_data);
                if (code < 0)
                    return code;
                --csp;
                ipsp->ip = cip, ipsp->dstate = state;
                ++ipsp;
                CS_CHECK_IPSTACK(ipsp, pcis->ipstack);
                cip = ipsp->cs_data.bits.data;
                cipend = ipsp->cs_data.bits.data + ipsp->cs_data.bits.size;
                goto call;
            case c_return:
                gs_glyph_data_free(&ipsp->cs_data, "gs_type1_interpret");
                CS_CHECK_IPSTACK(ipsp, pcis->ipstack);
                --ipsp;
  cont:         if (ipsp < pcis->ipstack || ipsp->ip == 0)
                    return (gs_note_error(gs_error_invalidfont));
                cip = ipsp->ip;
                cipend = ipsp->cs_data.bits.data + ipsp->cs_data.bits.size;
                state = ipsp->dstate;
                continue;
            case c_undoc15:
                /* See gstype1.h for information on this opcode. */
                clear;
                continue;

                /* Commands with similar but not identical functions */
                /* in Type 1 and Type 2 charstrings. */

            case cx_hstem:
                code = t1_hinter__hstem(h, cs0, cs1);
                if (code < 0)
                    return code;
                clear;
                continue;
            case cx_vstem:
                code = t1_hinter__vstem(h, cs0, cs1);
                if (code < 0)
                    return code;
                clear;
                continue;
            case cx_vmoveto:
                cs1 = cs0;
                cs0 = 0;
                goto move;
            case cx_hlineto:
                cs1 = 0;
                goto line;
            case cx_vlineto:
                cs1 = cs0;
                cs0 = 0;
                goto line;
            case cx_rlineto:
  line:         /* cs0 = dx, cs1 = dy for hint checking. */
                code = t1_hinter__rlineto(h, cs0, cs1);
                goto cc;
            case cx_rrcurveto:
                code = t1_hinter__rcurveto(h, cs0, cs1, cs2, cs3, cs4, cs5);
                goto cc;
            case cx_endchar:
                if (pcis->seac_accent < 0) {
                    if(!pcis->sb_set && !pcis->width_set) {
                        /* No sbw/hsbw op, error condition but Adobe interpreters ignore it.
                           Rewind the data pointer to the beginning of the glyph, re-initialise
                           the hinter, execute a '0' sbw op, and then carry on as if we had
                           actually received one. */
                        if (pgd) {
                            cip = pgd->bits.data;
                            cipend = pgd->bits.data + pgd->bits.size;
                        }
                        t1_hinter__init(h, pcis->path);
                        code = t1_hinter__sbw(h, fixed_0, fixed_0, fixed_0, fixed_0);
                        if (code < 0)
                            return code;
                        gs_type1_sbw(pcis, fixed_0, fixed_0, fixed_0, fixed_0);
                        goto rsbw;
                    }
                    code = t1_hinter__endglyph(h);
                    if (code < 0)
                        return code;
                    code = gx_setcurrentpoint_from_path(pcis->pgs, pcis->path);
                    if (code < 0)
                        return code;
                } else {
                    code = t1_hinter__end_subglyph(h);
                    if (code < 0)
                        return code;
                    pcis->seac_flag = true;
                }
                code = gs_type1_endchar(pcis);
                if (code == 1) {
                    /* do accent of seac */
                    ipsp = &pcis->ipstack[pcis->ips_count - 1];
                    cip = ipsp->cs_data.bits.data;
                    cipend = ipsp->cs_data.bits.data + ipsp->cs_data.bits.size;
                    goto call;
                }
                return code;
            case cx_rmoveto:
                goto move;
            case cx_hmoveto:
                cs1 = 0;
  move:         /* cs0 = dx, cs1 = dy for hint checking. */
                code = t1_hinter__rmoveto(h, cs0, cs1);
                goto cc;
            case cx_vhcurveto:
                code = t1_hinter__rcurveto(h, 0, cs0, cs1, cs2, cs3, 0);
                goto cc;
            case cx_hvcurveto:
                code = t1_hinter__rcurveto(h, cs0, 0, cs1, cs2, 0, cs3);
                goto cc;

                /* Commands only recognized in Type 1 charstrings, */
                /* plus 'escape'. */

            case c1_closepath:
                code = t1_hinter__closepath(h);
  cc:           if (code < 0)
                    return code;
                clear;
                continue;
            case c1_hsbw:
                if (!pcis->seac_flag) {
                    fixed sbx = cs0, sby = fixed_0, wx = cs1, wy = fixed_0;

                    if (pcis->seac_accent < 0) {
                        if (pcis->sb_set) {
                            pcis->origin_offset.x = pcis->lsb.x - sbx;
                            pcis->origin_offset.y = pcis->lsb.y - sby;
                            sbx = pcis->lsb.x;
                            sby = pcis->lsb.y;
                        }
                        if (pcis->width_set) {
                            wx = pcis->width.x;
                            wy = pcis->width.y;
                        }
                    } else
                        pcis->base_lsb = sbx;
                    code = t1_hinter__sbw(h, sbx, sby, wx, wy);
                } else {
                    fixed accent_lsb = cs0;
                    fixed overall_x_offset = pcis->compound_lsb.x + pcis->adxy.x - pcis->asb + accent_lsb - pcis->base_lsb;

                    code = t1_hinter__sbw_seac(h, overall_x_offset, pcis->adxy.y);
                }
                if (code < 0)
                    return code;
                gs_type1_sbw(pcis, cs0, fixed_0, cs1, fixed_0);
                cs1 = fixed_0;
                goto rsbw;
            case cx_escape:
                charstring_next(*cip, state, c, encrypted);
                ++cip;
                if (cip > cipend)
                    return_error(gs_error_invalidfont);
#ifdef DEBUG
                if (gs_debug['1'] && c < char1_extended_command_count) {
                    static const char *const ce1names[] =
                    {char1_extended_command_names};

                    if (ce1names[c] == 0)
                        dmlprintf2(pfont->memory, "[1]"PRI_INTPTR": %02x??\n",
                                   (intptr_t)(cip - 1), c);
                    else
                        dmlprintf3(pfont->memory, "[1]"PRI_INTPTR": %02x %s\n",
                                   (intptr_t)(cip - 1), c, ce1names[c]);
                }
#endif
                switch ((char1_extended_command) c) {
                    case ce1_dotsection:
                        code = t1_hinter__dotsection(h);
                        if (code < 0)
                            return code;
                        clear;
                        continue;
                    case ce1_vstem3:
                        code = t1_hinter__vstem3(h, cs0, cs1, cs2, cs3, cs4, cs5);
                        if (code < 0)
                            return code;
                        clear;
                        continue;
                    case ce1_hstem3:
                        code = t1_hinter__hstem3(h, cs0, cs1, cs2, cs3, cs4, cs5);
                        if (code < 0)
                            return code;
                        clear;
                        continue;
                    case ce1_seac:
                        code = gs_type1_seac(pcis, cstack + 1, cstack[0],
                                             ipsp);
                        if (code != 0) {
                            *pindex = ics3;
                            return code;
                        }
                        clear;
                        cip = ipsp->cs_data.bits.data;
                        cipend = ipsp->cs_data.bits.data + ipsp->cs_data.bits.size;
  call:
                        state = crypt_charstring_seed;
                        if (encrypted) {
                            int skip = pdata->lenIV;

                            /* Skip initial random bytes */
                            for (; skip > 0; ++cip, --skip)
                                decrypt_skip_next(*cip, state);
                        }
                        continue;
                    case ce1_sbw:
                        if (!pcis->seac_flag)
                            code = t1_hinter__sbw(h, cs0, cs1, cs2, cs3);
                        else
                            code = t1_hinter__sbw_seac(h, cs0 + pcis->adxy.x , cs1 + pcis->adxy.y);
                        if (code < 0)
                            return code;
                        gs_type1_sbw(pcis, cs0, cs1, cs2, cs3);
  rsbw:
                        /* Give the caller the opportunity to intervene. */
                        pcis->os_count = 0;	/* clear */
                        ipsp->ip = cip, ipsp->dstate = state;
                        pcis->ips_count = ipsp - &pcis->ipstack[0] + 1;
                        /* If we aren't in a seac, do nothing else now; */
                        /* finish_init will take care of the rest. */
                        if (pcis->init_done < 0) {
                            /* Finish init when we return. */
                            pcis->init_done = 0;
                        }
                        return type1_result_sbw;
                    case ce1_div:
                        CS_CHECK_POP(&csp[-1], cstack);
                        csp[-1] = float2fixed((double)csp[-1] / (double)*csp);
                        --csp;
                        goto pushed;
                    case ce1_undoc15:
                        /* See gstype1.h for information on this opcode. */
                        clear;
                        continue;
                    case ce1_callothersubr:
                        {
                            int num_results;

                            /* We must remember to pop both the othersubr # */
                            /* and the argument count off the stack. */
                            switch (*pindex = fixed2int_var(*csp)) {
                                case 0:
                                    if (!CS_CHECK_CSTACK_BOUNDS(&csp[-4], cstack))
                                        return_error(gs_error_invalidfont);
                                    {
                                        fixed fheight = csp[-4];
                                        /* Assume the next two opcodes */
                                        /* are `pop' `pop'.  Unfortunately, some */
                                        /* Monotype fonts put these in a Subr, */
                                        /* so we can't just look ahead in the */
                                        /* opcode stream. */
                                        pcis->ignore_pops = 2;
                                        csp[-4] = csp[-3] - pcis->asb_diff;
                                        csp[-3] = csp[-2];
                                        csp -= 3;
                                        code = t1_hinter__flex_end(h, fheight);
                                    }
                                    if (code < 0)
                                        return code;
                                    pcis->flex_count = flex_max;	/* not inside flex */
                                    continue;
                                case 1:
                                    CS_CHECK_POP(csp, cstack);
                                    code = t1_hinter__flex_beg(h);
                                    if (code < 0)
                                        return code;
                                    pcis->flex_count = 1;
                                    csp -= 2;
                                    continue;
                                case 2:
                                    CS_CHECK_POP(csp, cstack);
                                    if (pcis->flex_count >= flex_max)
                                        return_error(gs_error_invalidfont);
                                    code = t1_hinter__flex_point(h);
                                    if (code < 0)
                                        return code;
                                    csp -= 2;
                                    continue;
                                case 3:
                                    CS_CHECK_POP(csp, cstack);
                                    /* Assume the next opcode is a `pop'. */
                                    /* See above as to why we don't just */
                                    /* look ahead in the opcode stream. */
                                    pcis->ignore_pops = 1;
                                    code = t1_hinter__drop_hints(h);
                                    if (code < 0)
                                        return code;
                                    csp -= 2;
                                    continue;
                                case 12:
                                case 13:
                                    /* Counter control isn't implemented. */
                                    clear;
                                    continue;
                                case 14:
                                    num_results = 1;
                                    goto blend;
                                case 15:
                                    num_results = 2;
                                    goto blend;
                                case 16:
                                    num_results = 3;
                                    goto blend;
                                case 17:
                                    num_results = 4;
                                    goto blend;
                                case 18:
                                    num_results = 6;
  blend:
                                    code = gs_type1_blend(pcis, csp,
                                                          num_results);
                                    if (code < 0)
                                        return code;
                                    if (!CS_CHECK_CSTACK_BOUNDS(&csp[1 - code], cstack))
                                        return_error(gs_error_invalidfont);
                                    csp -= code;
                                    continue;
                            }
                        }
                        /* Not a recognized othersubr, */
                        /* let the client handle it. */
                        {
                            int scount = csp - cstack;
                            int n;

                            if (!CS_CHECK_CSTACK_BOUNDS(&csp[-1], cstack))
                                return_error(gs_error_invalidfont);
                            /* Copy the arguments to the caller's stack. */
                            if (scount < 1 || csp[-1] < 0 ||
                                csp[-1] > int2fixed(scount - 1)
                                )
                                return_error(gs_error_invalidfont);
                            n = fixed2int_var(csp[-1]);
                            code = (*pdata->procs.push_values)
                                (pcis->callback_data, csp - (n + 1), n);
                            if (code < 0)
                                return_error(code);
                            scount -= n + 1;
                            /* Exit to caller */
                            ipsp->ip = cip, ipsp->dstate = state;
                            pcis->os_count = scount;
                            pcis->ips_count = ipsp - &pcis->ipstack[0] + 1;
                            if (scount)
                                memcpy(pcis->ostack, cstack, scount * sizeof(fixed));
                            return type1_result_callothersubr;
                        }
                    case ce1_pop:
                        /* Check whether we're ignoring the pops after */
                        /* a known othersubr. */
                        if (pcis->ignore_pops != 0) {
                            pcis->ignore_pops--;
                            continue;
                        }
                        CS_CHECK_PUSH(csp, cstack);
                        ++csp;
                        code = (*pdata->procs.pop_value)
                            (pcis->callback_data, csp);
                        if (code < 0)
                            return_error(code);
                        goto pushed;
                    case ce1_setcurrentpoint:
                        cs0 += pcis->adxy.x + pcis->origin_offset.x;
                        cs1 += pcis->adxy.y + pcis->origin_offset.y;
                        t1_hinter__setcurrentpoint(h, cs0, cs1);
                        clear;
                        continue;
                    default:
                        return_error(gs_error_invalidfont);
                }
                /*NOTREACHED */

                /* Fill up the dispatch up to 32. */

              case_c1_undefs:
            default:		/* pacify compiler */
                return_error(gs_error_invalidfont);
            }
        } else {
            /* This is a number, decode it and push it on the stack. */

            if (c < c_pos2_0) {	/* 1-byte number */
                decode_push_num1(csp, cstack, c);
            } else if (c < cx_num4) {	/* 2-byte number */
                decode_push_num2(csp, cstack, c, cip, state, encrypted);
            } else if (c == cx_num4) {	/* 4-byte number */
                long lw;

                decode_num4(lw, cip, state, encrypted);
                CS_CHECK_PUSH(csp, cstack);
                *++csp = int2fixed(lw);
                if (lw != fixed2long(*csp)) {
                    /*
                     * The integer was too large to handle in fixed point.
                     * Handle this case specially.
                     */
                    code = gs_type1_check_float(&state, encrypted, &cip, csp, lw);
                    if (code < 0)
                        return code;
                }
            } else		/* not possible */
                return_error(gs_error_invalidfont);
  pushed:
            if_debug3m('1', pfont->memory, "[1]%d: (%d) %f\n",
                       (int)(csp - cstack), c, fixed2float(*csp));
            continue;
        }
    }
}