File: fromrd.c

package info (click to toggle)
mailutils 1%3A3.20-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,932 kB
  • sloc: ansic: 187,772; sh: 111,430; yacc: 7,463; cpp: 3,834; makefile: 3,166; lex: 1,972; python: 1,617; exp: 1,563; awk: 152; lisp: 132; sed: 31
file content (310 lines) | stat: -rw-r--r-- 6,184 bytes parent folder | download | duplicates (2)
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
/* GNU Mailutils -- a suite of utilities for electronic mail
   Copyright (C) 2024-2025 Free Software Foundation, Inc.

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

   This library 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
   Lesser General Public License for more details.

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

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <stdlib.h>
#include <string.h>
#include <mailutils/errno.h>
#include <mailutils/filter.h>
#include <mailutils/stream.h>

enum
  {
    S_INIT,   /* Initial state */
    S_BOL,    /* Beginning of line */
    S_ESC,    /* Collecting > escapes */
    S_FROM,   /* Collecting "From " characters */
  };

struct transcoder
{
  int state; /* Transcoder state */
  int count; /* Number of consecutive '>' seen. */
  int len;   /* Number of "From" characters collected */
};

static char from_line[] = "From ";

/* Move min(isize,osize) bytes from iptr to optr, removing initial '>'
   from each sequence '>+From ' at the beginning of line */
static enum mu_filter_result
_fromrd_decoder (void *xd,
		 enum mu_filter_command cmd,
		 struct mu_filter_io *iobuf)
{
  const unsigned char *iptr;
  size_t isize;
  char *optr;
  size_t osize;
  struct transcoder *xcode = xd;
  size_t i, j, k;
  size_t len, reqlen;

  switch (cmd)
    {
    case mu_filter_init:
      xcode->state = S_BOL;
      xcode->count = 0;
      xcode->len = 0;
      return mu_filter_ok;
      
    case mu_filter_done:
      return mu_filter_ok;
      
    default:
      break;
    }
  
  iptr = (const unsigned char *) iobuf->input;
  isize = iobuf->isize;
  optr = iobuf->output;
  osize = iobuf->osize;

  for (i = j = 0; i < isize && j < osize; i++)
    {
      unsigned char c = *iptr++;

      switch (xcode->state)
	{
	case S_INIT:
	  optr[j++] = c;
	  if (c == '\n')
	    xcode->state = S_BOL;
	  break;
	  
	case S_BOL:
	  if (c == '>')
	    {
	      xcode->state = S_ESC;
	      xcode->count = 1;
	    }
	  else
	    {
	      optr[j++] = c;
	      if (c != '\n')
		xcode->state = S_INIT;
	    }
	  break;
	  
	case S_ESC:
	  if (c == '>')
	    {
	      xcode->count++;
	    }
	  else if (c == from_line[0])
	    {
	      xcode->state = S_FROM;
	      xcode->len = 1;
	    }
	  else
	    {
	      xcode->state = S_INIT;
	      goto emit;
	    }	      
	  break;
	  
	case S_FROM:
	  if (from_line[xcode->len] == 0)
	    {
	      xcode->count--;
	    }
	  else if (c == from_line[xcode->len])
	    {
	      xcode->len++;
	      continue;
	    }
	  else
	    {
	      //RESTORE
	    }
	emit:
	  reqlen = xcode->len + xcode->count;
	  len = osize - j;
	  if (len < reqlen)
	    {
	      iobuf->osize += reqlen;
	      return mu_filter_moreoutput;
	    }
	  for (k = 0; k < xcode->count; k++, j++)
	    optr[j] = '>';
	  memcpy (optr + j, from_line, xcode->len);
	  j += xcode->len;

	  xcode->state = S_INIT;
	  xcode->count = xcode->len = 0;
	  i--;
	  iptr--;
	}
    }
  iobuf->isize = i;
  iobuf->osize = j;
  return mu_filter_ok;
}

static enum mu_filter_result
_fromrd_encoder (void *xd,
		 enum mu_filter_command cmd,
		 struct mu_filter_io *iobuf)
{
  const unsigned char *iptr;
  size_t isize;
  char *optr;
  size_t osize;
  struct transcoder *xcode = xd;
  size_t i, j, k;
  size_t len, reqlen;

  switch (cmd)
    {
    case mu_filter_init:
      xcode->state = S_BOL;
      xcode->count = 0;
      xcode->len = 0;
      return mu_filter_ok;
      
    case mu_filter_done:
      return mu_filter_ok;
      
    default:
      break;
    }
  
  iptr = (const unsigned char *) iobuf->input;
  isize = iobuf->isize;
  optr = iobuf->output;
  osize = iobuf->osize;

  for (i = j = 0; i < isize && j < osize; i++)
    {
      unsigned char c = *iptr++;

      switch (xcode->state)
	{
	case S_INIT:
	  optr[j++] = c;
	  if (c == '\n')
	    xcode->state = S_BOL;
	  break;
	  
	case S_BOL:
	  if (c == '>')
	    {
	      xcode->state = S_ESC;
	      xcode->count = 1;
	    }
	  else if (c == from_line[0])
	    {
	      xcode->state = S_FROM;
	      xcode->count = 0;
	      xcode->len = 1;
	    }
	  else
	    {
	      optr[j++] = c;
	      if (c != '\n')
		xcode->state = S_INIT;
	    }
	  break;
	  
	case S_ESC:
	  if (c == '>')
	    {
	      xcode->count++;
	    }
	  else if (c == from_line[0])
	    {
	      xcode->state = S_FROM;
	      xcode->len = 1;
	    }
	  else
	    {
	      xcode->state = S_INIT;
	      goto emit;
	    }	      
	  break;
	  
	case S_FROM:
	  if (from_line[xcode->len] == 0)
	    {
	      xcode->count++;
	    }
	  else if (c == from_line[xcode->len])
	    {
	      xcode->len++;
	      continue;
	    }
	  else
	    {
	      //RESTORE
	    }
	emit:	  
	  reqlen = xcode->len + xcode->count;
	  len = osize - j;
	  if (len < reqlen)
	    {
	      iobuf->osize += reqlen;
	      return mu_filter_moreoutput;
	    }
	  for (k = 0; k < xcode->count; k++, j++)
	    optr[j] = '>';
	  memcpy (optr + j, from_line, xcode->len);
	  j += xcode->len;

	  xcode->state = S_INIT;
	  xcode->count = xcode->len = 0;
	  i--;
	  iptr--;
	}
    }
  iobuf->isize = i;
  iobuf->osize = j;
  return mu_filter_ok;
}


static int
_fromrd_alloc_state (void **pret, int mode,
		   int argc MU_ARG_UNUSED, const char **argv MU_ARG_UNUSED)
{
  *pret = malloc (sizeof (struct transcoder));
  if (!*pret)
    return ENOMEM;
  return 0;
}

static struct _mu_filter_record _fromrd_filter = {
  "FROMRD",
  _fromrd_alloc_state,
  _fromrd_encoder,
  _fromrd_decoder
};

mu_filter_record_t mu_fromrd_filter = &_fromrd_filter;

/* For compatibility with previous versions */
static struct _mu_filter_record _fromrb_filter = {
  "FROMRB",
  _fromrd_alloc_state,
  _fromrd_encoder,
  _fromrd_decoder
};

mu_filter_record_t mu_fromrb_filter = &_fromrb_filter;