chiark / gitweb /
regress: Constify FR_write
[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 Tensurereportfile(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 Tensurefuzzrawfile(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 Tensurerecordfile(void) {
109   int fd;
110   int chars;
111   unsigned long sec, usec;
112
113   if (Tinputfile) return;
114   Tinputfile= stdin;
115   fd = Ttestinputfd();
116   if (fd >= 0) {
117     Tinputfile= fdopen(fd,"r"); if (!Tinputfile) Tfailed("fdopen ADNS_TEST_IN_FD");
118   }
119   setvbuf(Tinputfile,0,_IONBF,0);
120
121   if (!adns__vbuf_ensure(&vb2,1000)) Tnomem();
122   fgets(vb2.buf,vb2.avail,Tinputfile); Pcheckinput();
123   chars= -1;
124   sscanf(vb2.buf," start %lu.%lu%n",&sec,&usec,&chars);
125   if (chars==-1) Psyntax("start time invalid");
126   currenttime.tv_sec= sec;
127   currenttime.tv_usec= usec;
128   if (vb2.buf[chars] != hm_squote\nhm_squote) Psyntax("not newline after start time");
129 }
130
131 static void Parg(const char *argname) {
132   int l;
133
134   if (vb2.buf[vb2.used++] != hm_squote hm_squote) Psyntax("not a space before argument");
135   l= strlen(argname);
136   if (memcmp(vb2.buf+vb2.used,argname,l)) Psyntax("argument name wrong");
137   vb2.used+= l;
138   if (vb2.buf[vb2.used++] != hm_squote=hm_squote) Psyntax("not = after argument name");
139 }
140
141 static int Pstring_maybe(const char *string) {
142   int l;
143
144   l= strlen(string);
145   if (memcmp(vb2.buf+vb2.used,string,l)) return 0;
146   vb2.used+= l;
147   return 1;
148 }
149
150 static void Pstring(const char *string, const char *emsg) {
151   if (Pstring_maybe(string)) return;
152   Psyntax(emsg);
153 }
154
155 static int Perrno(const char *stuff) {
156   const struct Terrno *te;
157   int r;
158   char *ep;
159
160   for (te= Terrnos; te->n && strcmp(te->n,stuff); te++);
161   if (te->n) return te->v;
162   r= strtoul(stuff+2,&ep,10);
163   if (*ep) Psyntax("errno value not recognised, not numeric");
164   if (r==0 || r>255) Psyntax("numeric errno out of range 1..255");
165   return r;
166 }
167
168 static void P_updatetime(void) {
169   int chars;
170   unsigned long sec, usec;
171
172   if (!adns__vbuf_ensure(&vb2,1000)) Tnomem();
173   fgets(vb2.buf,vb2.avail,Tinputfile); Pcheckinput();
174   chars= -1;
175   sscanf(vb2.buf," +%lu.%lu%n",&sec,&usec,&chars);
176   if (chars==-1) Psyntax("update time invalid");
177   currenttime.tv_sec+= sec;
178   currenttime.tv_usec+= usec;
179   if (currenttime.tv_usec > 1000000) {
180     currenttime.tv_sec++;
181     currenttime.tv_usec -= 1000000;
182   }
183   if (vb2.buf[chars] != hm_squote\nhm_squote) Psyntax("not newline after update time");
184 }
185
186 static void Pfdset(fd_set *set, int max) {
187   int c;
188   unsigned long ul;
189   char *ep;
190
191   if (!set) {
192     Pstring("null","null fdset pointer");
193     return;
194   }
195   
196   if (vb2.buf[vb2.used++] != hm_squote[hm_squote) Psyntax("fd set start not [");
197   FD_ZERO(set);
198   if (vb2.buf[vb2.used] == hm_squote]hm_squote) { vb2.used++; return; }
199   for (;;) {
200     ul= strtoul(vb2.buf+vb2.used,&ep,10);
201     if (ul>=max) Psyntax("fd set member > max");
202     if (ep == (char*)vb2.buf+vb2.used) Psyntax("empty entry in fd set");
203     FD_SET(ul,set);
204     vb2.used= ep - (char*)vb2.buf;
205     c= vb2.buf[vb2.used++];
206     if (c == hm_squote]hm_squote) break;
207     if (c != hm_squote,hm_squote) Psyntax("fd set separator not ,");
208   }
209
210   uint16_t accum;
211   int inaccum=0, fd;
212   for (fd=0; ; fd++) {
213     if (fd>=max || inaccum==16) {
214       FR_WRITE(accum);
215       inaccum= 0;
216     }
217     if (fd>=max)
218       break;
219     accum <<= 1;
220     accum |= !!FD_ISSET(fd,set);
221     inaccum++;
222   }
223 }
224
225 #ifdef HAVE_POLL
226 static int Ppollfdevents(void) {
227   int events;
228
229   if (Pstring_maybe("0")) return 0;
230   events= 0;
231
232   if (Pstring_maybe("POLLIN")) {
233     events |= POLLIN;
234     if (!Pstring_maybe("|")) return events;
235   }
236
237   if (Pstring_maybe("POLLOUT")) {
238     events |= POLLOUT;
239     if (!Pstring_maybe("|")) return events;
240   }
241
242   Pstring("POLLPRI","pollfdevents PRI?");
243   return events;
244 }
245
246 static void Ppollfds(struct pollfd *fds, int nfds) {
247   int i;
248   char *ep;
249   const char *comma= "";
250   
251   if (vb2.buf[vb2.used++] != hm_squote[hm_squote) Psyntax("pollfds start not [");
252   for (i=0; i<nfds; i++) {
253     Pstring("{fd=","{fd= in pollfds");
254     fds->fd= strtoul(vb2.buf+vb2.used,&ep,10);
255     vb2.used= ep - (char*)vb2.buf;    
256     Pstring(", events=",", events= in pollfds");
257     fds->events= Ppollfdevents();
258     Pstring(", revents=",", revents= in pollfds");
259     fds->revents= Ppollfdevents();
260     Pstring("}","} in pollfds");
261     Pstring(comma,"separator in pollfds");
262     comma= ", ";
263   }
264   if (vb2.buf[vb2.used++] != hm_squote]hm_squote) Psyntax("pollfds end not ]");
265 }
266 #endif
267
268 static void Paddr(struct sockaddr *addr, int *lenr) {
269   adns_rr_addr a;
270   char *p, *q, *ep;
271   int err;
272   unsigned long ul;
273
274   p= vb2.buf+vb2.used;
275   if (*p!='[') {
276     q= strchr(p,':');
277     if (!q) Psyntax("missing :");
278     *q++= 0;
279   } else {
280     p++;
281     q= strchr(p,']');
282     if (!q) Psyntax("missing ]");
283     *q++= 0;
284     if (*q!=':') Psyntax("expected : after ]");
285     q++;
286   }
287   ul= strtoul(q,&ep,10);
288   if (*ep && *ep != ' ') Psyntax("invalid port (bad syntax)");
289   if (ul >= 65536) Psyntax("port too large");
290
291   a.len= sizeof(a.addr);
292   err= adns_text2addr(p, (int)ul, 0, &a.addr.sa,&a.len);
293   if (err) Psyntax("invalid address");
294
295   assert(*lenr >= a.len);
296   memcpy(addr, &a.addr, a.len);
297   *lenr= a.len;
298   vb2.used= ep - (char*)vb2.buf;
299 }
300
301 static int Pbytes(byte *buf, int maxlen) {
302   static const char hexdigits[]= "0123456789abcdef";
303
304   int c, v, done;
305   const char *pf;
306
307   done= 0;
308   for (;;) {
309     c= getc(Tinputfile); Pcheckinput();
310     if (c=='\n' || c==' ' || c=='\t') continue;
311     if (c=='.') break;
312     pf= strchr(hexdigits,c); if (!pf) Psyntax("invalid first hex digit");
313     v= (pf-hexdigits)<<4;
314     c= getc(Tinputfile); Pcheckinput();
315     pf= strchr(hexdigits,c); if (!pf) Psyntax("invalid second hex digit");
316     v |= (pf-hexdigits);
317     if (maxlen<=0) Psyntax("buffer overflow in bytes");
318     *buf++= v;
319     maxlen--; done++;
320   }
321   for (;;) {
322     c= getc(Tinputfile); Pcheckinput();
323     if (c=='\n') return done;
324   }
325 }
326   
327 void Q_vb(void) {
328   const char *nl;
329
330   Tensurerecordfile();
331   if (!adns__vbuf_ensure(&vb2,vb.used+2)) Tnomem();
332   fread(vb2.buf,1,vb.used+2,Tinputfile);
333   if (feof(Tinputfile)) {
334     fprintf(stderr,"adns test harness: input ends prematurely; program did:\n %.*s\n",
335            vb.used,vb.buf);
336     exit(-1);
337   }
338   Pcheckinput();
339   if (vb2.buf[0] != hm_squote hm_squote) Psyntax("not space before call");
340   if (memcmp(vb.buf,vb2.buf+1,vb.used) ||
341       vb2.buf[vb.used+1] != hm_squote\nhm_squote) {
342     fprintf(stderr,
343             "adns test harness: program did unexpected:\n %.*s\n"
344             "was expecting:\n %.*s\n",
345             vb.used,vb.buf, vb.used,vb2.buf+1);
346     exit(1);
347   }
348   Tensurereportfile();
349   nl= memchr(vb.buf,'\n',vb.used);
350   fprintf(Treportfile," %.*s\n", (int)(nl ? nl - (const char*)vb.buf : vb.used), vb.buf);
351 }
352
353 m4_define(`hm_syscall', `
354  hm_create_proto_h
355 int H$1(hm_args_massage($3,void)) {
356  int r, amtread;
357  hm_create_nothing
358  m4_define(`hm_rv_fd',`char *ep;')
359  m4_define(`hm_rv_any',`char *ep;')
360  $2
361
362  hm_create_hqcall_vars
363  $3
364
365  hm_create_hqcall_init($1)
366  $3
367
368  hm_create_hqcall_args
369  Q$1(hm_args_massage($3));
370
371  m4_define(`hm_r_offset',`m4_len(` $1=')')
372  if (!adns__vbuf_ensure(&vb2,1000)) Tnomem();
373  fgets(vb2.buf,vb2.avail,Tinputfile); Pcheckinput();
374
375  Tensurereportfile();
376  Tensurefuzzrawfile();
377  fprintf(Treportfile,"%s",vb2.buf);
378  amtread= strlen(vb2.buf);
379  if (amtread<=0 || vb2.buf[--amtread]!=hm_squote\nhm_squote)
380   Psyntax("badly formed line");
381  vb2.buf[amtread]= 0;
382  if (memcmp(vb2.buf," $1=",hm_r_offset)) Psyntax("syscall reply mismatch");
383
384  m4_define(`hm_rv_check_errno',`
385  if (vb2.buf[hm_r_offset] == hm_squoteEhm_squote) {
386   int e;
387   e= Perrno(vb2.buf+hm_r_offset);
388   P_updatetime();
389   errno= e;
390   FR_WRITE(e);
391   return -1;
392  }
393  r= 0;
394  FR_WRITE(r);
395  ')
396  m4_define(`hm_rv_check_success',`
397   if (memcmp(vb2.buf+hm_r_offset,"OK",2)) Psyntax("success/fail not E* or OK");
398   vb2.used= hm_r_offset+2;
399   r= 0;
400  ')
401  m4_define(`hm_rv_any_nowrite',`
402   hm_rv_check_errno
403   unsigned long ul_r= strtoul(vb2.buf+hm_r_offset,&ep,10);
404   if (ul_r < 0 || ul_r > INT_MAX ||
405       (*ep && *ep!=hm_squote hm_squote))
406     Psyntax("return value not E* or positive number");
407   r= ul_r;
408   vb2.used= ep - (char*)vb2.buf;
409  ')
410
411  m4_define(`hm_rv_succfail',`
412   hm_rv_check_errno
413   hm_rv_check_success
414  ')
415  m4_define(`hm_rv_len',`
416   hm_rv_check_errno
417   hm_rv_check_success
418  ')
419  m4_define(`hm_rv_must',`
420   hm_rv_check_success
421  ')
422  m4_define(`hm_rv_any',`
423   hm_rv_any_nowrite
424   FR_WRITE(r);
425  ')
426  m4_define(`hm_rv_fd',`hm_rv_any')
427  m4_define(`hm_rv_select',`hm_rv_any_nowrite')
428  m4_define(`hm_rv_poll',`hm_rv_any_nowrite')
429  m4_define(`hm_rv_fcntl',`
430   r= 0;
431   if (cmd == F_GETFL) {
432     if (!memcmp(vb2.buf+hm_r_offset,"O_NONBLOCK|...",14)) {
433       r= O_NONBLOCK;
434       vb2.used= hm_r_offset+14;
435     } else if (!memcmp(vb2.buf+hm_r_offset,"~O_NONBLOCK&...",15)) {
436       vb2.used= hm_r_offset+15;
437     } else {
438       Psyntax("fcntl flags not O_NONBLOCK|... or ~O_NONBLOCK&...");
439     }
440   } else if (cmd == F_SETFL) {
441     hm_rv_check_success
442   } else {
443     Psyntax("fcntl not F_GETFL or F_SETFL");
444   }
445  ')
446  $2
447
448  hm_create_nothing
449  m4_define(`hm_arg_fdset_io',`Parg("$'`1"); Pfdset($'`1,$'`2);')
450  m4_define(`hm_arg_pollfds_io',`Parg("$'`1"); Ppollfds($'`1,$'`2);')
451  m4_define(`hm_arg_addr_out',`Parg("$'`1"); Paddr($'`1,$'`2);')
452  $3
453  assert(vb2.used <= amtread);
454  if (vb2.used != amtread) Psyntax("junk at end of line");
455
456  hm_create_nothing
457  m4_define(`hm_arg_bytes_out',`
458   r= Pbytes($'`2,$'`4);
459   FR_WRITE(r);
460   FR_write(buf,r);
461  ')
462  $3
463
464  P_updatetime();
465  return r;
466 }
467 ')
468
469 m4_define(`hm_specsyscall', `')
470
471 m4_include(`hsyscalls.i4')
472
473 hm_stdsyscall_close