summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/ipsend/ultrix.c
blob: ffab2cef9cba2b01dadb267e17a1401c587375e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * (C)opyright 1998 Darren Reed. (from tcplog)
 *
 * Redistribution and use in source and binary forms are permitted
 * provided that this notice is preserved and due credit is given
 * to the original author and the contributors.
 */
#include <stdio.h>
#include <strings.h>
#include <unistd.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/file.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <netdnet/dli_var.h>


static	struct	dli_devid	dli_devid;


int	initdevice(device, sport, tout)
char	*device;
int	sport, tout;
{
	u_char	*s;
	int	fd;

	fd = socket(AF_DLI, SOCK_DGRAM, 0);
	if (fd == -1)
		perror("socket(AF_DLI,SOCK_DGRAM)");
	else {
		strncpy(dli_devid.dli_devname, device, DLI_DEVSIZE);
		dli_devid.dli_devname[DLI_DEVSIZE] ='\0';
		for (s = dli_devid.dli_devname; *s && isalpha((char)*s); s++)
			;
		if (*s && isdigit((char)*s)) {
			dli_devid.dli_devnumber = atoi(s);
		}
	}
	return fd;
}


/*
 * output an IP packet onto a fd opened for /dev/bpf
 */
int	sendip(fd, pkt, len)
int	fd, len;
char	*pkt;
{
	struct sockaddr_dl dl;
	struct sockaddr_edl *edl = &dl.choose_addr.dli_eaddr;

	dl.dli_family = AF_DLI;
	dl.dli_substructype = DLI_ETHERNET;
	bcopy((char *)&dli_devid, (char *)&dl.dli_device, sizeof(dli_devid));
	bcopy(pkt, edl->dli_target, DLI_EADDRSIZE);
	bcopy(pkt, edl->dli_dest, DLI_EADDRSIZE);
	bcopy(pkt + DLI_EADDRSIZE * 2, (char *)&edl->dli_protype, 2);
	edl->dli_ioctlflg = 0;

	if (sendto(fd, pkt, len, 0, (struct sockaddr *)&dl, sizeof(dl)) == -1)
	    {
		perror("send");
		return -1;
	    }

	return len;
}


char *strdup(str)
char *str;
{
	char	*s;

	if ((s = (char *)malloc(strlen(str) + 1)))
		return strcpy(s, str);
	return NULL;
}
OpenPOWER on IntegriCloud