chiark / gitweb /
regress: Make special arrangements for close()
[adns.git] / regress / hcommon.c.m4
1 m4_dnl hcommon.c
2 m4_dnl (part of complex test harness, not of the library)
3 m4_dnl - routines used for both record and playback
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 <string.h>
28 #include <errno.h>
29 #include <stdlib.h>
30 #include <stdarg.h>
31
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <arpa/inet.h>
36
37 #include <unistd.h>
38 #include <fcntl.h>
39
40 #include "harness.h"
41 #include "internal.h"
42
43 vbuf vb;
44 FILE *Toutputfile= 0;
45 struct timeval currenttime;
46
47 const struct Terrno Terrnos[]= {
48   { "EBADF",                     EBADF                        },
49   { "EAGAIN",                    EAGAIN                       },
50   { "EINPROGRESS",               EINPROGRESS                  },
51   { "EINTR",                     EINTR                        },
52   { "EINVAL",                    EINVAL                       },
53   { "EMSGSIZE",                  EMSGSIZE                     },
54   { "ENOBUFS",                   ENOBUFS                      },
55   { "ENOENT",                    ENOENT                       },
56   { "ENOPROTOOPT",               ENOPROTOOPT                  },
57   { "ENOSPC",                    ENOSPC                       },
58   { "EWOULDBLOCK",               EWOULDBLOCK                  },
59   { "EHOSTUNREACH",              EHOSTUNREACH                 },
60   { "ECONNRESET",                ECONNRESET                   },
61   { "ECONNREFUSED",              ECONNREFUSED                 },
62   { "EPIPE",                     EPIPE                        },
63   { "ENOTSOCK",                  ENOTSOCK                     },
64   {  0,                          0                            }
65 };
66
67 const int Tnerrnos= sizeof(Terrnos)/sizeof(Terrnos[0]) - 1;
68
69 static vbuf vbw;
70
71 int Hgettimeofday(struct timeval *tv, struct timezone *tz) {
72   Tensurerecordfile();
73   Tmust("gettimeofday","tz",!tz);
74   *tv= currenttime;
75   return 0;
76 }
77
78 int Hwritev(int fd, const struct iovec *vector, size_t count) {
79   size_t i;
80   
81   vbw.used= 0;
82   for (i=0; i<count; i++, vector++) {
83     if (!adns__vbuf_append(&vbw,vector->iov_base,vector->iov_len)) Tnomem();
84   }
85   return Hwrite(fd,vbw.buf,vbw.used);
86 }
87
88 m4_define(`hm_syscall', `
89  hm_create_proto_q
90 void Q$1(hm_args_massage($3,void)) {
91
92  vb.used= 0;
93  Tvba("$1");
94  m4_define(`hm_na',`')
95  m4_define(`hm_arg_nullptr',`')
96  m4_define(`hm_arg_int', `Tvbf(" $'`1=%d",$'`1);')
97  m4_define(`hm_arg_fdset_io', `Tvbf(" $'`1="); Tvbfdset($'`2,$'`1);')
98  m4_define(`hm_arg_pollfds_io', `Tvbf(" $'`1="); Tvbpollfds($'`1,$'`2);')
99  m4_define(`hm_arg_timeval_in_rel_null', `
100   if ($'`1) Tvbf(" $'`1=%ld.%06ld",(long)$'`1->tv_sec,(long)$'`1->tv_usec);
101   else Tvba(" $'`1=null");')
102  m4_define(`hm_arg_must', `')
103  m4_define(`hm_arg_socktype', `
104   Tvbf($'`1==SOCK_STREAM ? " $'`1=SOCK_STREAM" : " $'`1=SOCK_DGRAM");')
105  m4_define(`hm_arg_addrfam', `
106   Tvbf($'`1==AF_INET ? " $'`1=AF_INET" :
107           $'`1==AF_INET6 ? " $'`1=AF_INET6" :
108           " $'`1=AF_???");')
109  m4_define(`hm_arg_ign', `')
110  m4_define(`hm_arg_fd', `Tvbf(" $'`1=%d",$'`1);')
111  m4_define(`hm_arg_fcntl_cmd_arg', `
112   if ($'`1 == F_SETFL) {
113    Tvbf(" $'`1=F_SETFL %s",arg & O_NONBLOCK ? "O_NONBLOCK|..." : "~O_NONBLOCK&...");
114   } else if ($'`1 == F_GETFL) {
115    Tvba(" $'`1=F_GETFL");
116   } else {
117    Tmust("$'`1","F_GETFL/F_SETFL",0);
118   }')
119  m4_define(`hm_arg_addr_in', `Tvba(" $'`1="); Tvbaddr($'`1,$'`2);')
120  m4_define(`hm_arg_bytes_in', `')
121  m4_define(`hm_arg_bytes_out', `Tvbf(" $'`4=%lu",(unsigned long)$'`4);')
122  m4_define(`hm_arg_addr_out', `')
123   $3
124
125  hm_create_nothing
126  m4_define(`hm_arg_bytes_in', `Tvbbytes($'`2,$'`4);')
127   $3
128
129   Q_vb();
130 }
131 ')
132
133 m4_define(`hm_specsyscall', `')
134
135 m4_include(`hsyscalls.i4')
136
137 hm_stdsyscall_close
138
139 void Tvbaddr(const struct sockaddr *addr, int len) {
140   char buf[ADNS_ADDR2TEXT_BUFLEN];
141   int err, port;
142   int sz= sizeof(buf);
143
144   err= adns_addr2text(addr, 0, buf,&sz, &port);
145   assert(!err);
146
147   Tvbf(strchr(buf, ':') ? "[%s]:%d" : "%s:%d", buf,port);
148 }
149
150 void Tvbbytes(const void *buf, int len) {
151   const byte *bp;
152   int i;
153
154   if (!len) { Tvba("\n     ."); return; }
155   for (i=0, bp=buf; i<len; i++, bp++) {
156     if (!(i&31)) Tvba("\n     ");
157     else if (!(i&3)) Tvba(" ");
158     Tvbf("%02x",*bp);
159   }
160   Tvba(".");
161 }
162
163 void Tvbfdset(int max, const fd_set *fds) {
164   int i;
165   const char *comma= "";
166   
167   if (!fds) {
168     Tvba("null");
169     return;
170   }
171
172   Tvba("[");
173   for (i=0; i<max; i++) {
174     if (!FD_ISSET(i,fds)) continue;
175     Tvba(comma);
176     Tvbf("%d",i);
177     comma= ",";
178   }
179   Tvba("]");
180 }
181
182 static void Tvbpollevents(int events) {
183   const char *delim= "";
184
185   events &= (POLLIN|POLLOUT|POLLPRI);
186   if (!events) { Tvba("0"); return; }
187   if (events & POLLIN) { Tvba("POLLIN"); delim= "|"; }
188   if (events & POLLOUT) { Tvba(delim); Tvba("POLLOUT"); delim= "|"; }
189   if (events & POLLPRI) { Tvba(delim); Tvba("POLLPRI"); }
190 }
191
192 void Tvbpollfds(const struct pollfd *fds, int nfds) {
193   const char *comma= "";
194   
195   Tvba("[");
196   while (nfds>0) {
197     Tvba(comma);
198     Tvbf("{fd=%d, events=",fds->fd);
199     Tvbpollevents(fds->events);
200     Tvba(", revents=");
201     Tvbpollevents(fds->revents);
202     Tvba("}");
203     comma= ", ";
204     nfds--; fds++;
205   }
206   Tvba("]");
207 }
208
209 void Tvberrno(int e) {
210   const struct Terrno *te;
211
212   for (te= Terrnos; te->n && te->v != e; te++);
213   assert(te->n);
214   Tvba(te->n);
215 }
216
217 void Tvba(const char *str) {
218   if (!adns__vbuf_appendstr(&vb,str)) Tnomem();
219 }
220
221 void Tvbvf(const char *fmt, va_list al) {
222   char buf[1000];
223   buf[sizeof(buf)-2]= '\t';
224   vsnprintf(buf,sizeof(buf),fmt,al);
225   assert(buf[sizeof(buf)-2] == '\t');
226
227   Tvba(buf);
228 }
229
230 void Tvbf(const char *fmt, ...) {
231   va_list al;
232   va_start(al,fmt);
233   Tvbvf(fmt,al);
234   va_end(al);
235 }
236
237
238 void Tmust(const char *call, const char *arg, int cond) {
239   if (cond) return;
240   fprintf(stderr,"adns test harness: case not handled: system call %s, arg %s",call,arg);
241   exit(-1);
242 }
243
244 void Tfailed(const char *why) {
245   fprintf(stderr,"adns test harness: failure: %s: %s\n",why,strerror(errno));
246   exit(-1);
247 }
248
249 void Tnomem(void) {
250   Tfailed("unable to malloc/realloc");
251 }
252
253 void Toutputerr(void) {
254   Tfailed("write error on test harness output");
255 }
256
257 void Hexit(int rv) {
258   vb.used= 0;
259   Tvbf("exit %d", rv);
260   Q_vb();
261   Texit(0);
262 }
263
264 pid_t Hgetpid(void) {
265   return 2264; /* just some number */
266 }
267
268 void Tcommonshutdown(void) {
269   Tshutdown();
270   adns__vbuf_free(&vb);
271   adns__vbuf_free(&vbw);
272   Tmallocshutdown();
273 }