chiark / gitweb /
Copyrights now acknowledge fanf for adns. Individual file copyrights too.
[adns] / regress / hcommon.c.m4
CommitLineData
078c4fd0 1m4_dnl hcommon.c
2m4_dnl (part of complex test harness, not of the library)
3m4_dnl - routines used for both record and playback
4
a79ac5ba 5m4_dnl This file is
6m4_dnl Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
7m4_dnl
8m4_dnl It is part of adns, which is
9m4_dnl Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
10m4_dnl Copyright (C) 1999 Tony Finch <dot@dotat.at>
078c4fd0 11m4_dnl
12m4_dnl This program is free software; you can redistribute it and/or modify
13m4_dnl it under the terms of the GNU General Public License as published by
14m4_dnl the Free Software Foundation; either version 2, or (at your option)
15m4_dnl any later version.
16m4_dnl
17m4_dnl This program is distributed in the hope that it will be useful,
18m4_dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19m4_dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20m4_dnl GNU General Public License for more details.
21m4_dnl
22m4_dnl You should have received a copy of the GNU General Public License
23m4_dnl along with this program; if not, write to the Free Software Foundation,
24m4_dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26m4_include(hmacros.i4)
74cf211e 27
4fb3d854 28#include <fcntl.h>
29#include <string.h>
30#include <errno.h>
31
32#include <sys/socket.h>
33#include <netinet/in.h>
34#include <arpa/inet.h>
35
74cf211e 36#include "harness.h"
37#include "internal.h"
38
4fb3d854 39vbuf vb;
40FILE *Toutputfile= 0;
3c5796f7 41struct timeval currenttime;
4fb3d854 42
43const struct Terrno Terrnos[]= {
44 { "EAGAIN", EAGAIN },
45 { "EINPROGRESS", EINPROGRESS },
46 { "EINTR", EINTR },
47 { "EINVAL", EINVAL },
48 { "EMSGSIZE", EMSGSIZE },
49 { "ENOBUFS", ENOBUFS },
50 { "ENOENT", ENOENT },
51 { "ENOPROTOOPT", ENOPROTOOPT },
52 { "ENOSPC", ENOSPC },
53 { "EWOULDBLOCK", EWOULDBLOCK },
54 { 0, 0 }
55};
74cf211e 56
9ba9f156 57static vbuf vbw;
4fb3d854 58
3c5796f7 59int Hgettimeofday(struct timeval *tv, struct timezone *tz) {
60 Tmust("gettimeofday","tz",!tz);
61 *tv= currenttime;
62 return 0;
63}
64
9ba9f156 65int Hwritev(int fd, const struct iovec *vector, size_t count) {
66 size_t i;
67
68 vbw.used= 0;
69 for (i=0; i<count; i++, vector++) {
70 if (!adns__vbuf_append(&vbw,vector->iov_base,vector->iov_len)) Tnomem();
71 }
72 return Hwrite(fd,vbw.buf,vbw.used);
73}
4fb3d854 74
078c4fd0 75m4_define(`hm_syscall', `
76 hm_create_proto_q
77void Q$1(hm_args_massage($3,void)) {
78
79 vb.used= 0;
80 Tvba("$1");
81 m4_define(`hm_na',`')
82 m4_define(`hm_arg_nullptr',`')
83 m4_define(`hm_arg_int', `Tvbf(" $'`1=%d",$'`1);')
84 m4_define(`hm_arg_fdset_io', `Tvbf(" $'`1="); Tvbfdset($'`2,$'`1);')
2d5cce62 85 m4_define(`hm_arg_pollfds_io', `Tvbf(" $'`1="); Tvbpollfds($'`1,$'`2);')
078c4fd0 86 m4_define(`hm_arg_timeval_in_rel_null', `
87 if ($'`1) Tvbf(" $'`1=%ld.%06ld",(long)$'`1->tv_sec,(long)$'`1->tv_usec);
88 else Tvba(" $'`1=null");')
89 m4_define(`hm_arg_must', `')
90 m4_define(`hm_arg_socktype', `
91 Tvbf($'`1==SOCK_STREAM ? " $'`1=SOCK_STREAM" : " $'`1=SOCK_DGRAM");')
92 m4_define(`hm_arg_ign', `')
93 m4_define(`hm_arg_fd', `Tvbf(" $'`1=%d",$'`1);')
94 m4_define(`hm_arg_fcntl_cmd_arg', `
95 if ($'`1 == F_SETFL) {
09a06b84 96 Tvbf(" $'`1=F_SETFL %s",arg & O_NONBLOCK ? "O_NONBLOCK|..." : "~O_NONBLOCK&...");
97 } else if ($'`1 == F_GETFL) {
078c4fd0 98 Tvba(" $'`1=F_GETFL");
09a06b84 99 } else {
100 Tmust("$'`1","F_GETFL/F_SETFL",0);
078c4fd0 101 }')
9ba9f156 102 m4_define(`hm_arg_addr_in', `Tvba(" $'`1="); Tvbaddr($'`1,$'`2);')
103 m4_define(`hm_arg_bytes_in', `')
078c4fd0 104 m4_define(`hm_arg_bytes_out', `Tvbf(" $'`4=%lu",(unsigned long)$'`4);')
105 m4_define(`hm_arg_addr_out', `Tvbf(" *$'`2=%d",$'`2);')
106 $3
4fb3d854 107
9ba9f156 108 hm_create_nothing
109 m4_define(`hm_arg_bytes_in', `Tvbbytes($'`2,$'`4);')
110 $3
111
4fb3d854 112 Q_vb();
113}
078c4fd0 114')
4fb3d854 115
078c4fd0 116m4_include(`hsyscalls.i4')
4fb3d854 117
118
119void Tvbaddr(const struct sockaddr *addr, int len) {
120 const struct sockaddr_in *ai= (const struct sockaddr_in*)addr;
121
122 assert(len==sizeof(struct sockaddr_in));
123 assert(ai->sin_family==AF_INET);
078c4fd0 124 Tvbf("%s:%u",inet_ntoa(ai->sin_addr),htons(ai->sin_port));
4fb3d854 125}
126
127void Tvbbytes(const void *buf, int len) {
128 const byte *bp;
129 int i;
130
131 if (!len) { Tvba(" empty"); return; }
132 for (i=0, bp=buf; i<len; i++, bp++) {
133 if (!(i&31)) Tvba("\n ");
134 else if (!(i&3)) Tvba(" ");
135 Tvbf("%02x",*bp);
136 }
9ba9f156 137 Tvba(".");
4fb3d854 138}
139
140void Tvbfdset(int max, const fd_set *fds) {
141 int i;
142 const char *comma= "";
143
078c4fd0 144 Tvba("[");
4fb3d854 145 for (i=0; i<max; i++) {
146 if (!FD_ISSET(i,fds)) continue;
147 Tvba(comma);
148 Tvbf("%d",i);
149 comma= ",";
150 }
151 Tvba("]");
152}
153
2d5cce62 154static void Tvbpollevents(int events) {
155 const char *delim= "";
156
157 events &= (POLLIN|POLLOUT|POLLPRI);
158 if (!events) { Tvba("0"); return; }
159 if (events & POLLIN) { Tvba("POLLIN"); delim= "|"; }
160 if (events & POLLOUT) { Tvba(delim); Tvba("POLLOUT"); delim= "|"; }
161 if (events & POLLPRI) { Tvba(delim); Tvba("POLLPRI"); }
162}
163
164void Tvbpollfds(const struct pollfd *fds, int nfds) {
165 const char *comma= "";
166
167 Tvba("[");
168 while (nfds>0) {
169 Tvba(comma);
170 Tvbf("{fd=%d, events=",fds->fd);
171 Tvbpollevents(fds->events);
172 Tvba(", revents=");
173 Tvbpollevents(fds->revents);
174 Tvba("}");
175 comma= ", ";
176 nfds--; fds++;
177 }
178 Tvba("]");
179}
180
4fb3d854 181void Tvberrno(int e) {
182 const struct Terrno *te;
74cf211e 183
4fb3d854 184 for (te= Terrnos; te->n && te->v != e; te++);
185 if (te->n) Tvba(te->n);
186 else Tvbf("E#%d",e);
74cf211e 187}
188
4fb3d854 189void Tvba(const char *str) {
190 if (!adns__vbuf_appendstr(&vb,str)) Tnomem();
191}
74cf211e 192
4fb3d854 193void Tvbvf(const char *fmt, va_list al) {
194 char buf[1000];
195 buf[sizeof(buf)-2]= '\t';
196 vsnprintf(buf,sizeof(buf),fmt,al);
197 assert(buf[sizeof(buf)-2] == '\t');
74cf211e 198
4fb3d854 199 Tvba(buf);
200}
201
202void Tvbf(const char *fmt, ...) {
203 va_list al;
204 va_start(al,fmt);
205 Tvbvf(fmt,al);
206 va_end(al);
207}
208
209
078c4fd0 210void Tmust(const char *call, const char *arg, int cond) {
211 if (cond) return;
212 fprintf(stderr,"adns test harness: case not handled: system call %s, arg %s",call,arg);
213 exit(-1);
214}
215
4fb3d854 216void Tfailed(const char *why) {
217 fprintf(stderr,"adns test harness: failure: %s: %s\n",why,strerror(errno));
218 exit(-1);
219}
220
221void Tnomem(void) {
222 Tfailed("unable to malloc/realloc");
223}
224
225void Toutputerr(void) {
226 Tfailed("write error on test harness output");
227}