chiark / gitweb /
regress: fuzzraw: Improve sync lost msg
[adns.git] / regress / hplayback.c.m4
1 m4_dnl hplayback.c.m4
2 m4_dnl (part of complex test harness, not of the library)
3 m4_dnl - playback routines
4
5 m4_dnl  This file is part of adns, which is
6 m4_dnl    Copyright (C) 1997-2000,2003,2006,2014-2016,2020  Ian Jackson
7 m4_dnl    Copyright (C) 2014  Mark Wooding
8 m4_dnl    Copyright (C) 1999-2000,2003,2006  Tony Finch
9 m4_dnl    Copyright (C) 1991 Massachusetts Institute of Technology
10 m4_dnl  (See the file INSTALL for full details.)
11 m4_dnl  
12 m4_dnl  This program is free software; you can redistribute it and/or modify
13 m4_dnl  it under the terms of the GNU General Public License as published by
14 m4_dnl  the Free Software Foundation; either version 3, or (at your option)
15 m4_dnl  any later version.
16 m4_dnl  
17 m4_dnl  This program is distributed in the hope that it will be useful,
18 m4_dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
19 m4_dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 m4_dnl  GNU General Public License for more details.
21 m4_dnl  
22 m4_dnl  You should have received a copy of the GNU General Public License
23 m4_dnl  along with this program; if not, write to the Free Software Foundation.
24
25 m4_include(hmacros.i4)
26
27 #include <assert.h>
28 #include <string.h>
29 #include <errno.h>
30 #include <stdlib.h>
31
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <arpa/inet.h>
36 #include <sys/time.h>
37
38 #include <unistd.h>
39 #include <fcntl.h>
40 #include <limits.h>
41
42
43 #include "harness.h"
44
45 static FILE *Tinputfile, *Tfuzzrawfile, *Treportfile;
46 static vbuf vb2;
47
48 static void Tensure_reportfile(void) {
49   const char *fdstr;
50   int fd;
51
52   if (Treportfile) return;
53   Treportfile= stderr;
54   fdstr= getenv("ADNS_TEST_REPORT_FD"); if (!fdstr) return;
55   fd= atoi(fdstr);
56   Treportfile= fdopen(fd,"a"); if (!Treportfile) Tfailed("fdopen ADNS_TEST_REPORT_FD");
57 }
58
59 static void Tensure_fuzzrawfile(void) {
60   static int done;
61
62   if (done) return;
63   done++;
64
65   const char *fdstr= getenv("ADNS_TEST_FUZZRAW_DUMP_FD");
66   if (!fdstr) return;
67
68   int fd= atoi(fdstr);
69   Tfuzzrawfile= fdopen(fd,"ab");
70   if (!Tfuzzrawfile) Tfailed("fdopen ADNS_TEST_FUZZRAW_DUMP_FD");
71 }
72
73 static void FR_write(const void *p, size_t sz) {
74   if (!Tfuzzrawfile) return;
75   ssize_t got = fwrite(p,1,sz,Tfuzzrawfile);
76   if (ferror(Tfuzzrawfile)) Tfailed("write fuzzraw output file");
77   assert(got==sz);
78 }
79
80 #define FR_WRITE(x) (FR_write(&(x), sizeof((x))))
81
82 extern void Tshutdown(void) {
83   adns__vbuf_free(&vb2);
84   if (Tfuzzrawfile) {
85     if (fclose(Tfuzzrawfile)) Tfailed("close fuzzraw output file");
86   }
87 }
88
89 static void Psyntax(const char *where) {
90   fprintf(stderr,"adns test harness: syntax error in test log input file: %s\n",where);
91   exit(-1);
92 }
93
94 static void Pcheckinput(void) {
95   if (ferror(Tinputfile)) Tfailed("read test log input file");
96   if (feof(Tinputfile)) Psyntax("eof at syscall reply");
97 }
98
99 void T_gettimeofday_hook(void) {
100   static struct timeval previously;
101   struct timeval delta;
102   memset(&delta,0,sizeof(delta));
103   timersub(&currenttime, &previously, &delta);
104   previously = currenttime;
105   FR_WRITE(delta);
106 }
107
108 void Tensuresetup(void) {
109   int fd;
110   int chars;
111   unsigned long sec, usec;
112
113   Tensure_reportfile();
114   Tensure_fuzzrawfile();
115
116   if (Tinputfile) return;
117   Tinputfile= stdin;
118   fd = Ttestinputfd();
119   if (fd >= 0) {
120     Tinputfile= fdopen(fd,"r"); if (!Tinputfile) Tfailed("fdopen ADNS_TEST_IN_FD");
121   }
122   setvbuf(Tinputfile,0,_IONBF,0);
123
124   if (!adns__vbuf_ensure(&vb2,1000)) Tnomem();
125   fgets(vb2.buf,vb2.avail,Tinputfile); Pcheckinput();
126   chars= -1;
127   sscanf(vb2.buf," start %lu.%lu%n",&sec,&usec,&chars);
128   if (chars==-1) Psyntax("start time invalid");
129   currenttime.tv_sec= sec;
130   currenttime.tv_usec= usec;
131   if (vb2.buf[chars] != hm_squote\nhm_squote) Psyntax("not newline after start time");
132 }
133
134 static void Parg(const char *argname) {
135   int l;
136
137   if (vb2.buf[vb2.used++] != hm_squote hm_squote) Psyntax("not a space before argument");
138   l= strlen(argname);
139   if (memcmp(vb2.buf+vb2.used,argname,l)) Psyntax("argument name wrong");
140   vb2.used+= l;
141   if (vb2.buf[vb2.used++] != hm_squote=hm_squote) Psyntax("not = after argument name");
142 }
143
144 static int Pstring_maybe(const char *string) {
145   int l;
146
147   l= strlen(string);
148   if (memcmp(vb2.buf+vb2.used,string,l)) return 0;
149   vb2.used+= l;
150   return 1;
151 }
152
153 static void Pstring(const char *string, const char *emsg) {
154   if (Pstring_maybe(string)) return;
155   Psyntax(emsg);
156 }
157
158 static int Perrno(const char *stuff) {
159   const struct Terrno *te;
160   int r;
161   char *ep;
162
163   for (te= Terrnos; te->n && strcmp(te->n,stuff); te++);
164   if (te->n) return te->v;
165   r= strtoul(stuff+2,&ep,10);
166   if (*ep) Psyntax("errno value not recognised, not numeric");
167   if (r==0 || r>255) Psyntax("numeric errno out of range 1..255");
168   return r;
169 }
170
171 static void P_updatetime(void) {
172   int chars;
173   unsigned long sec, usec;
174
175   if (!adns__vbuf_ensure(&vb2,1000)) Tnomem();
176   fgets(vb2.buf,vb2.avail,Tinputfile); Pcheckinput();
177   chars= -1;
178   sscanf(vb2.buf," +%lu.%lu%n",&sec,&usec,&chars);
179   if (chars==-1) Psyntax("update time invalid");
180   currenttime.tv_sec+= sec;
181   currenttime.tv_usec+= usec;
182   if (currenttime.tv_usec > 1000000) {
183     currenttime.tv_sec++;
184     currenttime.tv_usec -= 1000000;
185   }
186   if (vb2.buf[chars] != hm_squote\nhm_squote) Psyntax("not newline after update time");
187 }
188
189 static void Pfdset(fd_set *set, int max) {
190   int c;
191   unsigned long ul;
192   char *ep;
193
194   if (!set) {
195     Pstring("null","null fdset pointer");
196     return;
197   }
198   
199   if (vb2.buf[vb2.used++] != hm_squote[hm_squote) Psyntax("fd set start not [");
200   FD_ZERO(set);
201   if (vb2.buf[vb2.used] == hm_squote]hm_squote) {
202     vb2.used++;
203   } else {
204     for (;;) {
205       ul= strtoul(vb2.buf+vb2.used,&ep,10);
206       if (ul>=max) Psyntax("fd set member > max");
207       if (ep == (char*)vb2.buf+vb2.used) Psyntax("empty entry in fd set");
208       FD_SET(ul,set);
209       vb2.used= ep - (char*)vb2.buf;
210       c= vb2.buf[vb2.used++];
211       if (c == hm_squote]hm_squote) break;
212       if (c != hm_squote,hm_squote) Psyntax("fd set separator not ,");
213     }
214   }
215
216   uint16_t accum;
217   int inaccum=0, fd;
218   for (fd=0; ; fd++) {
219     if (fd>=max || inaccum==16) {
220       FR_WRITE(accum);
221       inaccum= 0;
222     }
223     if (fd>=max)
224       break;
225     accum <<= 1;
226     accum |= !!FD_ISSET(fd,set);
227     inaccum++;
228   }
229 }
230
231 #ifdef HAVE_POLL
232 static int Ppollfdevents(void) {
233   int events;
234
235   if (Pstring_maybe("0")) return 0;
236   events= 0;
237
238   if (Pstring_maybe("POLLIN")) {
239     events |= POLLIN;
240     if (!Pstring_maybe("|")) return events;
241   }
242
243   if (Pstring_maybe("POLLOUT")) {
244     events |= POLLOUT;
245     if (!Pstring_maybe("|")) return events;
246   }
247
248   Pstring("POLLPRI","pollfdevents PRI?");
249   return events;
250 }
251
252 static void Ppollfds(struct pollfd *fds, int nfds) {
253   int i;
254   char *ep;
255   const char *comma= "";
256   
257   if (vb2.buf[vb2.used++] != hm_squote[hm_squote) Psyntax("pollfds start not [");
258   for (i=0; i<nfds; i++) {
259     Pstring("{fd=","{fd= in pollfds");
260     int gotfd= strtoul(vb2.buf+vb2.used,&ep,10);
261     if (gotfd != fds->fd) Psyntax("poll fds[].fd changed");
262     vb2.used= ep - (char*)vb2.buf;    
263     Pstring(", events=",", events= in pollfds");
264     int gotevents= Ppollfdevents();
265     if (gotevents != fds->events) Psyntax("poll fds[].events changed");
266     Pstring(", revents=",", revents= in pollfds");
267     fds->revents= Ppollfdevents();
268     Pstring("}","} in pollfds");
269     Pstring(comma,"separator in pollfds");
270     comma= ", ";
271   }
272   if (vb2.buf[vb2.used++] != hm_squote]hm_squote) Psyntax("pollfds end not ]");
273 }
274 #endif
275
276 static void Paddr(struct sockaddr *addr, int *lenr) {
277   adns_rr_addr a;
278   char *p, *q, *ep;
279   int err;
280   unsigned long ul;
281
282   p= vb2.buf+vb2.used;
283   if (*p!='[') {
284     q= strchr(p,':');
285     if (!q) Psyntax("missing :");
286     *q++= 0;
287   } else {
288     p++;
289     q= strchr(p,']');
290     if (!q) Psyntax("missing ]");
291     *q++= 0;
292     if (*q!=':') Psyntax("expected : after ]");
293     q++;
294   }
295   ul= strtoul(q,&ep,10);
296   if (*ep && *ep != ' ') Psyntax("invalid port (bad syntax)");
297   if (ul >= 65536) Psyntax("port too large");
298
299   if (Tfuzzrawfile) {
300     int tl = strlen(p);
301     FR_WRITE(tl);
302     FR_write(p,tl);
303     uint16_t port16 = ul;
304     FR_WRITE(port16);
305   }
306
307   a.len= sizeof(a.addr);
308   err= adns_text2addr(p, (int)ul, 0, &a.addr.sa,&a.len);
309   if (err) Psyntax("invalid address");
310
311   assert(*lenr >= a.len);
312   memcpy(addr, &a.addr, a.len);
313   *lenr= a.len;
314   vb2.used= ep - (char*)vb2.buf;
315 }
316
317 static int Pbytes(byte *buf, int maxlen) {
318   static const char hexdigits[]= "0123456789abcdef";
319
320   int c, v, done;
321   const char *pf;
322
323   done= 0;
324   for (;;) {
325     c= getc(Tinputfile); Pcheckinput();
326     if (c=='\n' || c==' ' || c=='\t') continue;
327     if (c=='.') break;
328     pf= strchr(hexdigits,c); if (!pf) Psyntax("invalid first hex digit");
329     v= (pf-hexdigits)<<4;
330     c= getc(Tinputfile); Pcheckinput();
331     pf= strchr(hexdigits,c); if (!pf) Psyntax("invalid second hex digit");
332     v |= (pf-hexdigits);
333     if (maxlen<=0) Psyntax("buffer overflow in bytes");
334     *buf++= v;
335     maxlen--; done++;
336   }
337   for (;;) {
338     c= getc(Tinputfile); Pcheckinput();
339     if (c=='\n') return done;
340   }
341 }
342   
343 void Q_vb(void) {
344   const char *nl;
345
346   Tensuresetup();
347   if (!adns__vbuf_ensure(&vb2,vb.used+2)) Tnomem();
348   fread(vb2.buf,1,vb.used+2,Tinputfile);
349   if (feof(Tinputfile)) {
350     fprintf(stderr,"adns test harness: input ends prematurely; program did:\n %.*s\n",
351            vb.used,vb.buf);
352     exit(-1);
353   }
354   Pcheckinput();
355   if (vb2.buf[0] != hm_squote hm_squote) Psyntax("not space before call");
356   if (memcmp(vb.buf,vb2.buf+1,vb.used) ||
357       vb2.buf[vb.used+1] != hm_squote\nhm_squote) {
358     fprintf(stderr,
359             "adns test harness: program did unexpected:\n %.*s\n"
360             "was expecting:\n %.*s\n",
361             vb.used,vb.buf, vb.used,vb2.buf+1);
362     exit(1);
363   }
364   nl= memchr(vb.buf,'\n',vb.used);
365   fprintf(Treportfile," %.*s\n", (int)(nl ? nl - (const char*)vb.buf : vb.used), vb.buf);
366 }
367
368 m4_define(`hm_syscall', `
369  hm_create_proto_h
370 int H$1(hm_args_massage($3,void)) {
371  int r, amtread;
372  hm_create_nothing
373  m4_define(`hm_rv_fd',`char *ep;')
374  m4_define(`hm_rv_any',`char *ep;')
375  $2
376
377  hm_create_hqcall_vars
378  $3
379
380  hm_create_hqcall_init($1)
381  $3
382
383  hm_create_hqcall_args
384  Q$1(hm_args_massage($3));
385
386  m4_define(`hm_r_offset',`m4_len(` $1=')')
387  if (!adns__vbuf_ensure(&vb2,1000)) Tnomem();
388  fgets(vb2.buf,vb2.avail,Tinputfile); Pcheckinput();
389
390  Tensuresetup();
391  fprintf(Treportfile,"%s",vb2.buf);
392  amtread= strlen(vb2.buf);
393  if (amtread<=0 || vb2.buf[--amtread]!=hm_squote\nhm_squote)
394   Psyntax("badly formed line");
395  vb2.buf[amtread]= 0;
396  if (memcmp(vb2.buf," $1=",hm_r_offset)) Psyntax("syscall reply mismatch");
397
398 #ifdef FUZZRAW_SYNC
399  hm_fr_syscall_ident($1)
400  FR_WRITE(sync_expect);
401 #endif
402
403  m4_define(`hm_rv_check_errno',`
404  if (vb2.buf[hm_r_offset] == hm_squoteEhm_squote) {
405   int e;
406   e= Perrno(vb2.buf+hm_r_offset);
407   P_updatetime();
408   errno= e;
409   FR_WRITE(e);
410   return -1;
411  }
412  r= 0;
413  FR_WRITE(r);
414  ')
415  m4_define(`hm_rv_check_success',`
416   if (memcmp(vb2.buf+hm_r_offset,"OK",2)) Psyntax("success/fail not E* or OK");
417   vb2.used= hm_r_offset+2;
418   r= 0;
419  ')
420  m4_define(`hm_rv_any_nowrite',`
421   hm_rv_check_errno
422   unsigned long ul_r= strtoul(vb2.buf+hm_r_offset,&ep,10);
423   if (ul_r < 0 || ul_r > INT_MAX ||
424       (*ep && *ep!=hm_squote hm_squote))
425     Psyntax("return value not E* or positive number");
426   r= ul_r;
427   vb2.used= ep - (char*)vb2.buf;
428  ')
429
430  m4_define(`hm_rv_succfail',`
431   hm_rv_check_errno
432   hm_rv_check_success
433  ')
434  m4_define(`hm_rv_len',`
435   hm_rv_check_errno
436   hm_rv_check_success
437  ')
438  m4_define(`hm_rv_must',`
439   hm_rv_check_success
440  ')
441  m4_define(`hm_rv_any',`
442   hm_rv_any_nowrite
443   FR_WRITE(r);
444  ')
445  m4_define(`hm_rv_fd',`hm_rv_any')
446  m4_define(`hm_rv_select',`hm_rv_any_nowrite')
447  m4_define(`hm_rv_poll',`hm_rv_any_nowrite')
448  m4_define(`hm_rv_fcntl',`
449   r= 0;
450   if (cmd == F_GETFL) {
451     if (!memcmp(vb2.buf+hm_r_offset,"O_NONBLOCK|...",14)) {
452       r= O_NONBLOCK;
453       vb2.used= hm_r_offset+14;
454     } else if (!memcmp(vb2.buf+hm_r_offset,"~O_NONBLOCK&...",15)) {
455       vb2.used= hm_r_offset+15;
456     } else {
457       Psyntax("fcntl flags not O_NONBLOCK|... or ~O_NONBLOCK&...");
458     }
459   } else if (cmd == F_SETFL) {
460     hm_rv_check_success
461   } else {
462     Psyntax("fcntl not F_GETFL or F_SETFL");
463   }
464  ')
465  $2
466
467  hm_create_nothing
468  m4_define(`hm_arg_fdset_io',`Parg("$'`1"); Pfdset($'`1,$'`2);')
469  m4_define(`hm_arg_pollfds_io',`Parg("$'`1"); Ppollfds($'`1,$'`2);')
470  m4_define(`hm_arg_addr_out',`Parg("$'`1"); Paddr($'`1,$'`2);')
471  $3
472  assert(vb2.used <= amtread);
473  if (vb2.used != amtread) Psyntax("junk at end of line");
474
475  hm_create_nothing
476  m4_define(`hm_arg_bytes_out',`
477   r= Pbytes($'`2,$'`4);
478   FR_WRITE(r);
479   FR_write(buf,r);
480  ')
481  $3
482
483  P_updatetime();
484  return r;
485 }
486 ')
487
488 m4_define(`hm_specsyscall', `')
489
490 m4_include(`hsyscalls.i4')
491
492 hm_stdsyscall_close