summaryrefslogtreecommitdiff
path: root/m4/output.c
blob: dc2194f5e7ae34dc9a2d0b7e7aa15bf3bfd928be (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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
/* GNU m4 -- A simple macro processor
   Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 1998, 2002, 2004,
   2006, 2007, 2008 Free Software Foundation, Inc.

   This file is part of GNU M4.

   GNU M4 is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   GNU M4 is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <config.h>

#include "m4private.h"

#include "binary-io.h"
#include "clean-temp.h"
#include "exitfail.h"
#include "gl_avltree_oset.h"
#include "intprops.h"
#include "xvasprintf.h"

/* Define this to see runtime debug output.  Implied by DEBUG.  */
/*#define DEBUG_OUTPUT */

/* Size of initial in-memory buffer size for diversions.  Small diversions
   would usually fit in.  */
#define INITIAL_BUFFER_SIZE 512

/* Maximum value for the total of all in-memory buffer sizes for
   diversions.  */
#define MAXIMUM_TOTAL_SIZE (512 * 1024)

/* Size of buffer size to use while copying files.  */
#define COPY_BUFFER_SIZE (32 * 512)

/* Output functions.  Most of the complexity is for handling cpp like
   sync lines.

   This code is fairly entangled with the code in input.c, and maybe it
   belongs there?  */

typedef struct temp_dir m4_temp_dir;

/* When part of diversion_table, each struct m4_diversion either
   represents an open file (zero size, non-NULL u.file), an in-memory
   buffer (non-zero size, non-NULL u.buffer), or an unused placeholder
   diversion (zero size, u is NULL, non-zero used indicates that a
   temporary file exists).  When not part of diversion_table, u.next
   is a pointer to the free_list chain.  */

typedef struct m4_diversion m4_diversion;

struct m4_diversion
  {
    union
      {
	FILE *file;		/* diversion file on disk */
	char *buffer;		/* in-memory diversion buffer */
	m4_diversion *next;	/* free-list pointer */
      } u;
    int divnum;			/* which diversion this represents */
    size_t size;		/* usable size before reallocation */
    size_t used;		/* used length in characters */
  };

/* Sorted set of diversions 1 through INT_MAX.  */
static gl_oset_t diversion_table;

/* Diversion 0 (not part of diversion_table).  */
static m4_diversion div0;

/* Linked list of reclaimed diversion storage.  */
static m4_diversion *free_list;

/* Obstack from which diversion storage is allocated.  */
static m4_obstack diversion_storage;

/* Total size of all in-memory buffer sizes.  */
static size_t total_buffer_size;

/* Current output diversion, NULL if output is being currently discarded.  */
static m4_diversion *output_diversion;

/* Values of some output_diversion fields, cached out for speed.  */
static FILE *output_file;	/* current value of (file) */
static char *output_cursor;	/* current value of (buffer + used) */
static size_t output_unused;	/* current value of (size - used) */

/* Temporary directory holding all spilled diversion files.  */
static m4_temp_dir *output_temp_dir;



/* --- OUTPUT INITIALIZATION --- */

/* Callback for comparing list elements ELT1 and ELT2 for order in
   diversion_table.  */
static int
cmp_diversion_CB (const void *elt1, const void *elt2)
{
  const m4_diversion *d1 = (const m4_diversion *) elt1;
  const m4_diversion *d2 = (const m4_diversion *) elt2;
  /* No need to worry about overflow, since we don't create diversions
     with negative divnum.  */
  return d1->divnum - d2->divnum;
}

/* Callback for comparing list element ELT against THRESHOLD.  */
static bool
threshold_diversion_CB (const void *elt, const void *threshold)
{
  const m4_diversion *div = (const m4_diversion *) elt;
  /* No need to worry about overflow, since we don't create diversions
     with negative divnum.  */
  return div->divnum >= *(const int *) threshold;
}

/* Initialize the output engine.  */
void
m4_output_init (m4 *context)
{
  diversion_table = gl_oset_create_empty (GL_AVLTREE_OSET, cmp_diversion_CB,
					  NULL);
  div0.u.file = stdout;
  m4_set_current_diversion (context, 0);
  output_diversion = &div0;
  output_file = stdout;
  obstack_init (&diversion_storage);
}

/* Clean up memory allocated during use.  */
void
m4_output_exit (void)
{
  /* Order is important, since we may have registered cleanup_tmpfile
     as an atexit handler, and it must not traverse stale memory.  */
  gl_oset_t table = diversion_table;
  assert (gl_oset_size (diversion_table) == 0);
  diversion_table = NULL;
  gl_oset_free (table);
  obstack_free (&diversion_storage, NULL);
}

/* Clean up any temporary directory.  Designed for use as an atexit
   handler, where it is not safe to call exit() recursively; so this
   calls _exit if a problem is encountered.  */
static void
cleanup_tmpfile (void)
{
  /* Close any open diversions.  */
  bool fail = false;

  if (diversion_table)
    {
      const void *elt;
      gl_oset_iterator_t iter = gl_oset_iterator (diversion_table);
      while (gl_oset_iterator_next (&iter, &elt))
	{
	  m4_diversion *diversion = (m4_diversion *) elt;
	  if (!diversion->size && diversion->u.file
	      && close_stream_temp (diversion->u.file) != 0)
	    {
	      error (0, errno,
		     _("cannot clean temporary file for diversion"));
	      fail = true;
	    }
	}
      gl_oset_iterator_free (&iter);
    }

  /* Clean up the temporary directory.  */
  if (cleanup_temp_dir (output_temp_dir) != 0)
    fail = true;
  if (fail)
    _exit (exit_failure);
}

/* Convert DIVNUM into a temporary file name for use in m4_tmp*.  */
static const char *
m4_tmpname (int divnum)
{
  static char *buffer;
  static size_t offset;
  if (buffer == NULL)
    {
      obstack_grow (&diversion_storage, output_temp_dir->dir_name,
		    strlen (output_temp_dir->dir_name));
      obstack_1grow (&diversion_storage, '/');
      obstack_1grow (&diversion_storage, 'm');
      obstack_1grow (&diversion_storage, '4');
      obstack_1grow (&diversion_storage, '-');
      offset = obstack_object_size (&diversion_storage);
      buffer = obstack_alloc (&diversion_storage, INT_BUFSIZE_BOUND (divnum));
    }
  if (snprintf (&buffer[offset], INT_BUFSIZE_BOUND (divnum), "%d", divnum) < 0)
    abort ();
  return buffer;
}

/* Create a temporary file for diversion DIVNUM open for reading and
   writing in a secure temp directory.  The file will be automatically
   closed and deleted on a fatal signal.  The file can be closed and
   reopened with m4_tmpclose and m4_tmpopen; when finally done with
   the file, close it and use m4_tmpremove.  Exits on failure, so the
   return value is always an open file.  */
static FILE *
m4_tmpfile (m4 *context, int divnum)
{
  const char *name;
  FILE *file;

  if (output_temp_dir == NULL)
    {
      output_temp_dir = create_temp_dir ("m4-", NULL, true);
      if (output_temp_dir == NULL)
	m4_error (context, EXIT_FAILURE, errno, NULL,
		  _("cannot create temporary file for diversion"));
      atexit (cleanup_tmpfile);
    }
  name = m4_tmpname (divnum);
  register_temp_file (output_temp_dir, name);
  file = fopen_temp (name, O_BINARY ? "wb+" : "w+");
  if (file == NULL)
    {
      unregister_temp_file (output_temp_dir, name);
      m4_error (context, EXIT_FAILURE, errno, NULL,
		_("cannot create temporary file for diversion"));
    }
  else if (set_cloexec_flag (fileno (file), true) != 0)
    m4_warn (context, errno, NULL, _("cannot protect diversion across forks"));
  return file;
}

/* Reopen a temporary file for diversion DIVNUM for reading and
   writing in a secure temp directory.  Exits on failure, so the
   return value is always an open file.  */
static FILE *
m4_tmpopen (m4 *context, int divnum)
{
  const char *name = m4_tmpname (divnum);
  FILE *file;

  file = fopen_temp (name, O_BINARY ? "ab+" : "a+");
  if (file == NULL)
    m4_error (context, EXIT_FAILURE, errno, NULL,
	      _("cannot create temporary file for diversion"));
  else if (set_cloexec_flag (fileno (file), true) != 0)
    m4_warn (context, errno, NULL, _("cannot protect diversion across forks"));
  /* POSIX states that it is undefined whether an append stream starts
     at offset 0 or at the end.  We want the beginning.  */
  else if (fseeko (file, 0, SEEK_SET) != 0)
    m4_error (context, EXIT_FAILURE, errno, NULL,
	      _("cannot seek to beginning of diversion"));
  return file;
}

/* Close, but don't delete, a temporary FILE.  */
static int
m4_tmpclose (FILE *file)
{
  return close_stream_temp (file);
}

/* Delete a closed temporary FILE for diversion DIVNUM.  */
static int
m4_tmpremove (int divnum)
{
  return cleanup_temp_file (output_temp_dir, m4_tmpname (divnum));
}

/* Reorganize in-memory diversion buffers so the current diversion can
   accomodate LENGTH more characters without further reorganization.  The
   current diversion buffer is made bigger if possible.  But to make room
   for a bigger buffer, one of the in-memory diversion buffers might have
   to be flushed to a newly created temporary file.  This flushed buffer
   might well be the current one.  */
static void
make_room_for (m4 *context, size_t length)
{
  size_t wanted_size;
  m4_diversion *selected_diversion = NULL;

  assert (!output_file);
  assert (output_diversion);
  assert (output_diversion->size || !output_diversion->u.file);

  /* Compute needed size for in-memory buffer.  Diversions in-memory
     buffers start at 0 bytes, then 512, then keep doubling until it is
     decided to flush them to disk.  */

  output_diversion->used = output_diversion->size - output_unused;

  for (wanted_size = output_diversion->size;
       wanted_size <= MAXIMUM_TOTAL_SIZE
	 && wanted_size - output_diversion->used < length;
       wanted_size = wanted_size == 0 ? INITIAL_BUFFER_SIZE : wanted_size * 2)
    ;

  /* Check if we are exceeding the maximum amount of buffer memory.  */

  if (total_buffer_size - output_diversion->size + wanted_size
      > MAXIMUM_TOTAL_SIZE)
    {
      size_t selected_used;
      char *selected_buffer;
      m4_diversion *diversion;
      size_t count;
      gl_oset_iterator_t iter;
      const void *elt;

      /* Find out the buffer having most data, in view of flushing it to
	 disk.  Fake the current buffer as having already received the
	 projected data, while making the selection.  So, if it is
	 selected indeed, we will flush it smaller, before it grows.  */

      selected_diversion = output_diversion;
      selected_used = output_diversion->used + length;

      iter = gl_oset_iterator (diversion_table);
      while (gl_oset_iterator_next (&iter, &elt))
	{
	  diversion = (m4_diversion *) elt;
	  if (diversion->used > selected_used)
	    {
	      selected_diversion = diversion;
	      selected_used = diversion->used;
	    }
	}
      gl_oset_iterator_free (&iter);

      /* Create a temporary file, write the in-memory buffer of the
	 diversion to this file, then release the buffer.  Zero the
	 diversion before doing anything that can exit () (including
	 m4_tmpfile), so that the atexit handler doesn't try to close
	 a garbage pointer as a file.  */

      selected_buffer = selected_diversion->u.buffer;
      total_buffer_size -= selected_diversion->size;
      selected_diversion->size = 0;
      selected_diversion->u.file = NULL;
      selected_diversion->u.file = m4_tmpfile (context,
					       selected_diversion->divnum);

      if (selected_diversion->used > 0)
	{
	  count = fwrite (selected_buffer, selected_diversion->used, 1,
			  selected_diversion->u.file);
	  if (count != 1)
	    m4_error (context, EXIT_FAILURE, errno, NULL,
		      _("cannot flush diversion to temporary file"));
	}

      /* Reclaim the buffer space for other diversions.  */

      free (selected_buffer);
      selected_diversion->used = 1;
    }

  /* Reload output_file, just in case the flushed diversion was current.  */

  if (output_diversion == selected_diversion)
    {
      /* The flushed diversion was current indeed.  */

      output_file = output_diversion->u.file;
      output_cursor = NULL;
      output_unused = 0;
    }
  else
    {
      /* Close any selected file since it is not the current diversion.  */
      if (selected_diversion)
	{
	  FILE *file = selected_diversion->u.file;
	  selected_diversion->u.file = NULL;
	  if (m4_tmpclose (file) != 0)
	    m4_error (context, 0, errno, NULL,
		      _("cannot close temporary file for diversion"));
	}

      /* The buffer may be safely reallocated.  */

      assert (wanted_size >= length);
      output_diversion->u.buffer = xrealloc (output_diversion->u.buffer,
					     wanted_size);

      total_buffer_size += wanted_size - output_diversion->size;
      output_diversion->size = wanted_size;

      output_cursor = output_diversion->u.buffer + output_diversion->used;
      output_unused = wanted_size - output_diversion->used;
    }
}

/* Output one character CHAR, when it is known that it goes to a
   diversion file or an in-memory diversion buffer.  A variable m4
   *context must be in scope.  */
#define OUTPUT_CHARACTER(Char)			 \
  if (output_file)				 \
    putc ((Char), output_file);			 \
  else if (output_unused == 0)			 \
    output_character_helper (context, (Char));	 \
  else						 \
    (output_unused--, *output_cursor++ = (Char))

static void
output_character_helper (m4 *context, int character)
{
  make_room_for (context, 1);

  if (output_file)
    putc (character, output_file);
  else
    {
      *output_cursor++ = character;
      output_unused--;
    }
}

/* Output one TEXT having LENGTH characters, when it is known that it goes
   to a diversion file or an in-memory diversion buffer.  */
void
m4_output_text (m4 *context, const char *text, size_t length)
{
  size_t count;

  if (!output_diversion || !length)
    return;

  if (!output_file && length > output_unused)
    make_room_for (context, length);

  if (output_file)
    {
      count = fwrite (text, length, 1, output_file);
      if (count != 1)
	m4_error (context, EXIT_FAILURE, errno, NULL,
		  _("copying inserted file"));
    }
  else
    {
      memcpy (output_cursor, text, length);
      output_cursor += length;
      output_unused -= length;
    }
}

/* Add some text into an obstack OBS, taken from TEXT, having LENGTH
   characters.  If OBS is NULL, output the text to an external file or
   an in-memory diversion buffer instead.  If OBS is NULL, and there
   is no output file, the text is discarded.  LINE is the line where
   the token starts (not necessarily m4_get_output_line, in the case
   of multiline tokens).

   If we are generating sync lines, the output has to be examined,
   because we need to know how much output each input line generates.
   In general, sync lines are output whenever a single input line
   generates several output lines, or when several input lines do not
   generate any output.  */
void
m4_divert_text (m4 *context, m4_obstack *obs, const char *text, size_t length,
		int line)
{
  static bool start_of_output_line = true;
  char linebuf[6 + INT_BUFSIZE_BOUND (unsigned long int)]; /* "#line nnnn" */
  const char *cursor;

  /* If output goes to an obstack, merely add TEXT to it.  */

  if (obs != NULL)
    {
      obstack_grow (obs, text, length);
      return;
    }

  /* Do nothing if TEXT should be discarded.  */

  if (!output_diversion || !length)
    return;

  /* Output TEXT to a file, or in-memory diversion buffer.  */

  if (!m4_get_syncoutput_opt (context))
    switch (length)
      {

	/* In-line short texts.  */

      case 8: OUTPUT_CHARACTER (*text); text++;
      case 7: OUTPUT_CHARACTER (*text); text++;
      case 6: OUTPUT_CHARACTER (*text); text++;
      case 5: OUTPUT_CHARACTER (*text); text++;
      case 4: OUTPUT_CHARACTER (*text); text++;
      case 3: OUTPUT_CHARACTER (*text); text++;
      case 2: OUTPUT_CHARACTER (*text); text++;
      case 1: OUTPUT_CHARACTER (*text);
      case 0:
	return;

	/* Optimize longer texts.  */

      default:
	m4_output_text (context, text, length);
      }
  else
    {
      /* Check for syncline only at the start of a token.  Multiline
	 tokens, and tokens that are out of sync but in the middle of
	 the line, must wait until the next raw newline triggers a
	 syncline.  */
      if (start_of_output_line)
	{
	  start_of_output_line = false;
	  m4_set_output_line (context, m4_get_output_line (context) + 1);

#ifdef DEBUG_OUTPUT
	  xfprintf (stderr, "DEBUG: line %d, cur %lu, cur out %lu\n", line,
		    (unsigned long int) m4_get_current_line (context),
		    (unsigned long int) m4_get_output_line (context));
#endif

	  /* Output a `#line NUM' synchronization directive if needed.
	     If output_line was previously given a negative
	     value (invalidated), then output `#line NUM "FILE"'.  */

	  if (m4_get_output_line (context) != line)
	    {
	      sprintf (linebuf, "#line %lu",
		       (unsigned long int) m4_get_current_line (context));
	      for (cursor = linebuf; *cursor; cursor++)
		OUTPUT_CHARACTER (*cursor);
	      if (m4_get_output_line (context) < 1
		  && m4_get_current_file (context)[0] != '\0')
		{
		  OUTPUT_CHARACTER (' ');
		  OUTPUT_CHARACTER ('"');
		  for (cursor = m4_get_current_file (context);
		       *cursor; cursor++)
		    {
		      OUTPUT_CHARACTER (*cursor);
		    }
		  OUTPUT_CHARACTER ('"');
		}
	      OUTPUT_CHARACTER ('\n');
	      m4_set_output_line (context, line);
	    }
	}

      /* Output the token, and track embedded newlines.  */
      for (; length-- > 0; text++)
	{
	  if (start_of_output_line)
	    {
	      start_of_output_line = false;
	      m4_set_output_line (context, m4_get_output_line (context) + 1);

#ifdef DEBUG_OUTPUT
	      xfprintf (stderr, "DEBUG: line %d, cur %lu, cur out %lu\n", line,
			(unsigned long int) m4_get_current_line (context),
			(unsigned long int) m4_get_output_line (context));
#endif
	    }
	  OUTPUT_CHARACTER (*text);
	  if (*text == '\n')
	    start_of_output_line = true;
	}
    }
}

/* Format an int VAL, and stuff it into an obstack OBS.  Used for
   macros expanding to numbers.  FIXME - support wider types, and
   unsigned types.  */
void
m4_shipout_int (m4_obstack *obs, int val)
{
  char buf[INT_BUFSIZE_BOUND (int)];
  int len = sprintf(buf, "%d", val);
  obstack_grow (obs, buf, len);
}

/* Output the text S, of length LEN, to OBS.  If QUOTED, also output
   current quote characters around S.  If LEN is SIZE_MAX, use the
   string length of S instead.  */
void
m4_shipout_string (m4 *context, m4_obstack *obs, const char *s, size_t len,
		   bool quoted)
{
  m4_shipout_string_trunc (context, obs, s, len, quoted, NULL);
}

/* Output the text S, of length LEN, to OBS.  If QUOTED, also output
   current quote characters around S.  If LEN is SIZE_MAX, use the
   string length of S instead.  If MAX_LEN, reduce *MAX_LEN by LEN.
   If LEN is larger than *MAX_LEN, then truncate output and return
   true; otherwise return false.  CONTEXT may be NULL if QUOTED is
   false.  */
bool
m4_shipout_string_trunc (m4 *context, m4_obstack *obs, const char *s,
			 size_t len, bool quoted, size_t *max_len)
{
  size_t max = max_len ? *max_len : SIZE_MAX;

  assert (obs && s);
  if (len == SIZE_MAX)
    len = strlen (s);
  if (quoted)
    obstack_grow (obs, context->syntax->lquote.string,
		  context->syntax->lquote.length);
  if (len < max)
    {
      obstack_grow (obs, s, len);
      max -= len;
    }
  else
    {
      obstack_grow (obs, s, max);
      obstack_grow (obs, "...", 3);
      max = 0;
    }
  if (quoted)
    obstack_grow (obs, context->syntax->rquote.string,
		  context->syntax->rquote.length);
  if (max_len)
    *max_len = max;
  return max == 0;
}



/* --- FUNCTIONS FOR USE BY DIVERSIONS --- */

/* Make a file for diversion DIVNUM, and install it in the diversion table.
   Grow the size of the diversion table as needed.  */

/* The number of possible diversions is limited only by memory and
   available file descriptors (each overflowing diversion uses one).  */

void
m4_make_diversion (m4 *context, int divnum)
{
  m4_diversion *diversion = NULL;

  if (m4_get_current_diversion (context) == divnum)
    return;

  if (output_diversion)
    {
      assert (!output_file || output_diversion->u.file == output_file);
      assert (output_diversion->divnum != divnum);
      if (!output_diversion->size && !output_diversion->u.file)
	{
	  if (!gl_oset_remove (diversion_table, output_diversion))
	    assert (false);
	  output_diversion->u.next = free_list;
	  output_diversion->used = 0;
	  free_list = output_diversion;
	}
      else if (output_diversion->size)
	output_diversion->used = output_diversion->size - output_unused;
      else if (output_diversion->used)
	{
	  assert (output_diversion->divnum != 0);
	  FILE *file = output_diversion->u.file;
	  output_diversion->u.file = NULL;
	  if (m4_tmpclose (file) != 0)
	    m4_error (context, 0, errno, NULL,
		      _("cannot close temporary file for diversion"));
	}
      output_diversion = NULL;
      output_file = NULL;
      output_cursor = NULL;
      output_unused = 0;
    }

  m4_set_current_diversion (context, divnum);

  if (divnum < 0)
    return;

  if (divnum == 0)
    diversion = &div0;
  else
    {
      const void *elt;
      if (gl_oset_search_atleast (diversion_table, threshold_diversion_CB,
				  &divnum, &elt))
	{
	  m4_diversion *temp = (m4_diversion *) elt;
	  if (temp->divnum == divnum)
	    diversion = temp;
	}
    }
  if (diversion == NULL)
    {
      /* First time visiting this diversion.  */
      if (free_list)
	{
	  diversion = free_list;
	  free_list = diversion->u.next;
	  assert (!diversion->size && !diversion->used);
	}
      else
	{
	  diversion = (m4_diversion *) obstack_alloc (&diversion_storage,
						      sizeof *diversion);
	  diversion->size = 0;
	  diversion->used = 0;
	}
      diversion->u.file = NULL;
      diversion->divnum = divnum;
      if (!gl_oset_add (diversion_table, diversion))
	assert (false);
    }

  output_diversion = diversion;
  if (output_diversion->size)
    {
      output_cursor = output_diversion->u.buffer + output_diversion->used;
      output_unused = output_diversion->size - output_diversion->used;
    }
  else
    {
      if (!output_diversion->u.file && output_diversion->used)
	output_diversion->u.file = m4_tmpopen (context,
					       output_diversion->divnum);
      output_file = output_diversion->u.file;
    }

  m4_set_output_line (context, -1);
}

/* Insert a FILE into the current output file, in the same manner
   diversions are handled.  This allows files to be included, without
   having them rescanned by m4.  */
void
m4_insert_file (m4 *context, FILE *file)
{
  char buffer[COPY_BUFFER_SIZE];
  size_t length;

  /* Optimize out inserting into a sink.  */

  if (!output_diversion)
    return;

  /* Insert output by big chunks.  */
  for (;;)
    {
      length = fread (buffer, 1, COPY_BUFFER_SIZE, file);
      if (ferror (file))
	m4_error (context, EXIT_FAILURE, errno, NULL,
		  _("reading inserted file"));
      if (length == 0)
	break;
      m4_output_text (context, buffer, length);
    }
}

/* Insert DIVERSION living at NODE into the current output file.  The
   diversion is NOT placed on the expansion obstack, because it must
   not be rescanned.  When the file is closed, it is deleted by the
   system.  */
static void
insert_diversion_helper (m4 *context, m4_diversion *diversion)
{
  assert (diversion->divnum > 0
	  && diversion->divnum != m4_get_current_diversion (context));
  /* Effectively undivert only if an output stream is active.  */
  if (output_diversion)
    {
      if (diversion->size)
	m4_output_text (context, diversion->u.buffer, diversion->used);
      else
	{
	  assert (diversion->used);
	  if (!diversion->u.file)
	    diversion->u.file = m4_tmpopen (context, diversion->divnum);
	  m4_insert_file (context, diversion->u.file);
	}

      m4_set_output_line (context, -1);
    }

  /* Return all space used by the diversion.  */
  if (diversion->size)
    {
      free (diversion->u.buffer);
      diversion->size = 0;
      diversion->used = 0;
    }
  else
    {
      if (diversion->u.file)
	{
	  FILE *file = diversion->u.file;
	  diversion->u.file = NULL;
	  diversion->used = 0;
	  if (m4_tmpclose (file) != 0)
	    m4_error (context, 0, errno, NULL,
		      _("cannot clean temporary file for diversion"));
	}
      if (m4_tmpremove (diversion->divnum) != 0)
	m4_error (context, 0, errno, NULL,
		  _("cannot clean temporary file for diversion"));
    }
  if (!gl_oset_remove (diversion_table, diversion))
    assert (false);
  diversion->u.next = free_list;
  free_list = diversion;
}

/* Insert diversion number DIVNUM into the current output file.  The
   diversion is NOT placed on the expansion obstack, because it must not
   be rescanned.  When the file is closed, it is deleted by the system.  */
void
m4_insert_diversion (m4 *context, int divnum)
{
  const void *elt;

  /* Do not care about nonexistent diversions, and undiverting stdout
     or self is a no-op.  */
  if (divnum <= 0 || m4_get_current_diversion (context) == divnum)
    return;
  if (gl_oset_search_atleast (diversion_table, threshold_diversion_CB,
			      &divnum, &elt))
    {
      m4_diversion *diversion = (m4_diversion *) elt;
      if (diversion->divnum == divnum)
	insert_diversion_helper (context, diversion);
    }
}

/* Get back all diversions.  This is done just before exiting from main (),
   and from m4_undivert (), if called without arguments.  */
void
m4_undivert_all (m4 *context)
{
  int divnum = m4_get_current_diversion (context);
  const void *elt;
  gl_oset_iterator_t iter = gl_oset_iterator (diversion_table);
  while (gl_oset_iterator_next (&iter, &elt))
    {
      m4_diversion *diversion = (m4_diversion *) elt;
      if (diversion->divnum != divnum)
	insert_diversion_helper (context, diversion);
    }
  gl_oset_iterator_free (&iter);
}

/* Produce all diversion information in frozen format on FILE.  */
void
m4_freeze_diversions (m4 *context, FILE *file)
{
  int saved_number;
  int last_inserted;
  gl_oset_iterator_t iter;
  const void *elt;

  saved_number = m4_get_current_diversion (context);
  last_inserted = 0;
  m4_make_diversion (context, 0);
  output_file = file;		/* kludge in the frozen file */

  iter = gl_oset_iterator (diversion_table);
  while (gl_oset_iterator_next (&iter, &elt))
    {
      m4_diversion *diversion = (m4_diversion *) elt;
      if (diversion->size || diversion->used)
	{
	  if (diversion->size)
	    {
	      assert (diversion->used == (int) diversion->used);
	      xfprintf (file, "D%d,%d\n", diversion->divnum,
			(int) diversion->used);
	    }
	  else
	    {
	      struct stat file_stat;
	      assert (!diversion->u.file);
	      diversion->u.file = m4_tmpopen (context, diversion->divnum);
	      if (fstat (fileno (diversion->u.file), &file_stat) < 0)
		m4_error (context, EXIT_FAILURE, errno, NULL,
			  _("cannot stat diversion"));
	      /* FIXME - support 64-bit off_t with 32-bit long, and
		 fix frozen file format to support 64-bit integers.
		 This implies fixing m4_divert_text to take off_t.  */
	      if (file_stat.st_size < 0
		  || file_stat.st_size != (unsigned long int) file_stat.st_size)
		m4_error (context, EXIT_FAILURE, errno, NULL,
			  _("diversion too large"));
	      xfprintf (file, "D%d,%lu\n", diversion->divnum,
			(unsigned long int) file_stat.st_size);
	    }

	  insert_diversion_helper (context, diversion);
	  putc ('\n', file);

	  last_inserted = diversion->divnum;
	}
    }
  gl_oset_iterator_free (&iter);

  /* Save the active diversion number, if not already.  */

  if (saved_number != last_inserted)
    xfprintf (file, "D%d,0\n\n", saved_number);
}