Remove tm.h and xm.h handling, as it wasn't used. Use nm.h only when needed.
[dragonfly.git] / contrib / ipfilter / ipsend / sock.c
blob4d72d8726a71d4889bd8f99474b8eb75245f9789
1 /* $FreeBSD: src/contrib/ipfilter/ipsend/sock.c,v 1.3.2.4 2003/03/01 03:55:53 darrenr Exp $ */
2 /* $DragonFly: src/contrib/ipfilter/ipsend/sock.c,v 1.4 2007/02/01 10:33:25 corecode Exp $ */
3 /*
4 * sock.c (C) 1995-1998 Darren Reed
6 * See the IPFILTER.LICENCE file for details on licencing.
7 */
8 #if defined(__sgi) && (IRIX > 602)
9 # include <sys/ptimers.h>
10 #endif
11 #include <stdio.h>
12 #include <unistd.h>
13 #include <string.h>
14 #include <stdlib.h>
15 #include <stddef.h>
16 #include <pwd.h>
17 #include <sys/types.h>
18 #include <sys/time.h>
19 #include <sys/param.h>
20 #include <sys/stat.h>
21 #ifndef ultrix
22 #include <fcntl.h>
23 #endif
24 #if (__FreeBSD_version >= 300000)
25 # include <sys/dirent.h>
26 #else
27 # include <sys/dir.h>
28 #endif
29 #define _KERNEL
30 #define KERNEL
31 #ifdef ultrix
32 # undef LOCORE
33 # include <sys/smp_lock.h>
34 #endif
35 #include <sys/file.h>
36 #undef _KERNEL
37 #undef KERNEL
38 #include <nlist.h>
39 #include <sys/user.h>
40 #include <sys/socket.h>
41 #include <sys/socketvar.h>
42 #include <sys/proc.h>
43 #if !defined(ultrix) && !defined(hpux)
44 # include <kvm.h>
45 #endif
46 #ifdef sun
47 #include <sys/systm.h>
48 #include <sys/session.h>
49 #endif
50 #if BSD >= 199103
51 #include <sys/sysctl.h>
52 #include <sys/filedesc.h>
53 #include <paths.h>
54 #endif
55 #include <math.h>
56 #include <netinet/in.h>
57 #include <netinet/in_systm.h>
58 #include <netinet/ip.h>
59 #include <netinet/tcp.h>
60 #include <net/if.h>
61 #include <net/route.h>
62 #include <netinet/ip_var.h>
63 #include <netinet/in_pcb.h>
64 #include <netinet/tcp_timer.h>
65 #include <netinet/tcp_var.h>
66 #include "ipsend.h"
68 #if !defined(lint)
69 static const char sccsid[] = "@(#)sock.c 1.2 1/11/96 (C)1995 Darren Reed";
70 static const char rcsid[] = "@(#)$Id: sock.c,v 2.1.4.6 2002/12/06 11:40:36 darrenr Exp $";
71 #endif
74 int nproc;
75 struct proc *proc;
77 #ifndef KMEM
78 # ifdef _PATH_KMEM
79 # define KMEM _PATH_KMEM
80 # endif
81 #endif
82 #ifndef KERNEL
83 # ifdef _PATH_UNIX
84 # define KERNEL _PATH_UNIX
85 # endif
86 #endif
87 #ifndef KMEM
88 # define KMEM "/dev/kmem"
89 #endif
90 #ifndef KERNEL
91 # define KERNEL "/vmunix"
92 #endif
95 #if BSD < 199103
96 static struct proc *getproc __P((void));
97 #else
98 static struct kinfo_proc *getproc __P((void));
99 #endif
102 int kmemcpy(buf, pos, n)
103 char *buf;
104 void *pos;
105 int n;
107 static int kfd = -1;
108 off_t offset = (u_long)pos;
110 if (kfd == -1)
111 kfd = open(KMEM, O_RDONLY);
113 if (lseek(kfd, offset, SEEK_SET) == -1)
115 perror("lseek");
116 return -1;
118 if (read(kfd, buf, n) == -1)
120 perror("read");
121 return -1;
123 return n;
126 struct nlist names[4] = {
127 { "_proc" },
128 { "_nproc" },
129 #ifdef ultrix
130 { "_u" },
131 #else
132 { NULL },
133 #endif
134 { NULL }
137 #if BSD < 199103
138 static struct proc *getproc()
140 struct proc *p;
141 pid_t pid = getpid();
142 int siz, n;
144 n = nlist(KERNEL, names);
145 if (n != 0)
147 fprintf(stderr, "nlist(%#x) == %d\n", names, n);
148 return NULL;
150 if (KMCPY(&nproc, names[1].n_value, sizeof(nproc)) == -1)
152 fprintf(stderr, "read nproc (%#x)\n", names[1].n_value);
153 return NULL;
155 siz = nproc * sizeof(struct proc);
156 if (KMCPY(&p, names[0].n_value, sizeof(p)) == -1)
158 fprintf(stderr, "read(%#x,%#x,%d) proc\n",
159 names[0].n_value, &p, sizeof(p));
160 return NULL;
162 proc = (struct proc *)malloc(siz);
163 if (KMCPY(proc, p, siz) == -1)
165 fprintf(stderr, "read(%#x,%#x,%d) proc\n",
166 p, proc, siz);
167 return NULL;
170 p = proc;
172 for (n = nproc; n; n--, p++)
173 if (p->p_pid == pid)
174 break;
175 if (!n)
176 return NULL;
178 return p;
182 struct tcpcb *find_tcp(fd, ti)
183 int fd;
184 struct tcpiphdr *ti;
186 struct tcpcb *t;
187 struct inpcb *i;
188 struct socket *s;
189 struct user *up;
190 struct proc *p;
191 struct file *f;
192 struct fdnode *o;
194 if (!(p = getproc()))
195 return NULL;
196 up = (struct user *)malloc(sizeof(*up));
197 #ifndef ultrix
198 if (KMCPY(up, p->p_uarea, sizeof(*up)) == -1)
200 fprintf(stderr, "read(%#x,%#x) failed\n", p, p->p_uarea);
201 return NULL;
203 #else
204 if (KMCPY(up, names[2].n_value, sizeof(*up)) == -1)
206 fprintf(stderr, "read(%#x,%#x) failed\n", p, names[2].n_value);
207 return NULL;
209 #endif
211 o = (struct fdnode *)calloc(1, sizeof(*o) * (up->u_lastfile + 1));
212 if (KMCPY(o, up->u_ofile, (up->u_lastfile + 1) * sizeof(*o)) == -1)
214 fprintf(stderr, "read(%#x,%#x,%d) - u_ofile - failed\n",
215 up->u_ofile, o, sizeof(*o));
216 return NULL;
218 f = (struct file *)calloc(1, sizeof(*f));
219 if (KMCPY(f, o[fd].fp, sizeof(*f)) == -1)
221 fprintf(stderr, "read(%#x,%#x,%d) - o[fd].fp - failed\n",
222 up->u_ofile[fd], f, sizeof(*f));
223 return NULL;
226 s = (struct socket *)calloc(1, sizeof(*s));
227 if (KMCPY(s, f->f_data, sizeof(*s)) == -1)
229 fprintf(stderr, "read(%#x,%#x,%d) - f_data - failed\n",
230 o[fd], s, sizeof(*s));
231 return NULL;
234 i = (struct inpcb *)calloc(1, sizeof(*i));
235 if (KMCPY(i, s->so_pcb, sizeof(*i)) == -1)
237 fprintf(stderr, "kvm_read(%#x,%#x,%d) - so_pcb - failed\n",
238 s->so_pcb, i, sizeof(*i));
239 return NULL;
242 t = (struct tcpcb *)calloc(1, sizeof(*t));
243 if (KMCPY(t, i->inp_ppcb, sizeof(*t)) == -1)
245 fprintf(stderr, "read(%#x,%#x,%d) - inp_ppcb - failed\n",
246 i->inp_ppcb, t, sizeof(*t));
247 return NULL;
249 return (struct tcpcb *)i->inp_ppcb;
251 #else
252 static struct kinfo_proc *getproc()
254 static struct kinfo_proc kp;
255 pid_t pid = getpid();
256 int mib[4];
257 size_t n;
259 mib[0] = CTL_KERN;
260 mib[1] = KERN_PROC;
261 mib[2] = KERN_PROC_PID;
262 mib[3] = pid;
264 n = sizeof(kp);
265 if (sysctl(mib, 4, &kp, &n, NULL, 0) == -1)
267 perror("sysctl");
268 return NULL;
270 return &kp;
273 struct tcpcb *find_tcp(tfd, ti)
274 int tfd;
275 struct tcpiphdr *ti;
277 struct tcpcb *t;
278 struct inpcb *i;
279 struct socket *s;
280 struct filedesc *fd;
281 struct kinfo_proc *p;
282 struct file *f;
283 struct fdnode *o;
285 if (!(p = getproc()))
286 return NULL;
288 fd = (struct filedesc *)malloc(sizeof(*fd));
289 if (KMCPY(fd, p->kp_fd, sizeof(*fd)) == -1)
291 fprintf(stderr, "read(%#lx,%#lx) failed\n",
292 (u_long)p, (u_long)p->kp_fd);
293 return NULL;
296 o = (struct fdnode *)calloc(1, sizeof(*o) * (fd->fd_lastfile + 1));
297 if (KMCPY(o, fd->fd_files, (fd->fd_lastfile + 1) * sizeof(*o)) == -1)
299 fprintf(stderr, "read(%#lx,%#lx,%lu) - u_ofile - failed\n",
300 (u_long)fd->fd_files, (u_long)o, (u_long)sizeof(*o));
301 return NULL;
303 f = (struct file *)calloc(1, sizeof(*f));
304 if (KMCPY(f, o[tfd].fp, sizeof(*f)) == -1)
306 fprintf(stderr, "read(%#lx,%#lx,%lu) - o[tfd].fp - failed\n",
307 (u_long)o[tfd].fp, (u_long)f, (u_long)sizeof(*f));
308 return NULL;
311 s = (struct socket *)calloc(1, sizeof(*s));
312 if (KMCPY(s, f->f_data, sizeof(*s)) == -1)
314 fprintf(stderr, "read(%#lx,%#lx,%lu) - f_data - failed\n",
315 (u_long)f->f_data, (u_long)s, (u_long)sizeof(*s));
316 return NULL;
319 i = (struct inpcb *)calloc(1, sizeof(*i));
320 if (KMCPY(i, s->so_pcb, sizeof(*i)) == -1)
322 fprintf(stderr, "kvm_read(%#lx,%#lx,%lu) - so_pcb - failed\n",
323 (u_long)s->so_pcb, (u_long)i, (u_long)sizeof(*i));
324 return NULL;
327 t = (struct tcpcb *)calloc(1, sizeof(*t));
328 if (KMCPY(t, i->inp_ppcb, sizeof(*t)) == -1)
330 fprintf(stderr, "read(%#lx,%#lx,%lu) - inp_ppcb - failed\n",
331 (u_long)i->inp_ppcb, (u_long)t, (u_long)sizeof(*t));
332 return NULL;
334 return (struct tcpcb *)i->inp_ppcb;
336 #endif /* BSD < 199301 */
338 int do_socket(dev, mtu, ti, gwip)
339 char *dev;
340 int mtu;
341 struct tcpiphdr *ti;
342 struct in_addr gwip;
344 struct sockaddr_in rsin, lsin;
345 struct tcpcb *t, tcb;
346 int fd, nfd, len;
348 printf("Dest. Port: %d\n", ti->ti_dport);
350 fd = socket(AF_INET, SOCK_STREAM, 0);
351 if (fd == -1)
353 perror("socket");
354 return -1;
357 if (fcntl(fd, F_SETFL, FNDELAY) == -1)
359 perror("fcntl");
360 return -1;
363 bzero((char *)&lsin, sizeof(lsin));
364 lsin.sin_family = AF_INET;
365 bcopy((char *)&ti->ti_src, (char *)&lsin.sin_addr,
366 sizeof(struct in_addr));
367 if (bind(fd, (struct sockaddr *)&lsin, sizeof(lsin)) == -1)
369 perror("bind");
370 return -1;
372 len = sizeof(lsin);
373 (void) getsockname(fd, (struct sockaddr *)&lsin, &len);
374 ti->ti_sport = lsin.sin_port;
375 printf("sport %d\n", ntohs(lsin.sin_port));
376 nfd = initdevice(dev, ntohs(lsin.sin_port), 1);
378 if (!(t = find_tcp(fd, ti)))
379 return -1;
381 bzero((char *)&rsin, sizeof(rsin));
382 rsin.sin_family = AF_INET;
383 bcopy((char *)&ti->ti_dst, (char *)&rsin.sin_addr,
384 sizeof(struct in_addr));
385 rsin.sin_port = ti->ti_dport;
386 if (connect(fd, (struct sockaddr *)&rsin, sizeof(rsin)) == -1 &&
387 errno != EINPROGRESS)
389 perror("connect");
390 return -1;
392 KMCPY(&tcb, t, sizeof(tcb));
393 ti->ti_win = tcb.rcv_adv;
394 ti->ti_seq = tcb.snd_nxt - 1;
395 ti->ti_ack = tcb.rcv_nxt;
397 if (send_tcp(nfd, mtu, (ip_t *)ti, gwip) == -1)
398 return -1;
399 (void)write(fd, "Hello World\n", 12);
400 sleep(2);
401 close(fd);
402 return 0;