spxabort.c revision 285830
1178476Sjb/*-
2178476Sjb * Copyright (c) 2006 Robert N. M. Watson
3178476Sjb * All rights reserved.
4178476Sjb *
5178476Sjb * Redistribution and use in source and binary forms, with or without
6178476Sjb * modification, are permitted provided that the following conditions
7178476Sjb * are met:
8178476Sjb * 1. Redistributions of source code must retain the above copyright
9178476Sjb *    notice, this list of conditions and the following disclaimer.
10178476Sjb * 2. Redistributions in binary form must reproduce the above copyright
11178476Sjb *    notice, this list of conditions and the following disclaimer in the
12178476Sjb *    documentation and/or other materials provided with the distribution.
13178476Sjb *
14178476Sjb * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15178476Sjb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16178476Sjb * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17178476Sjb * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18178476Sjb * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19178476Sjb * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20178476Sjb * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21178476Sjb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22178476Sjb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23178476Sjb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24178476Sjb * SUCH DAMAGE.
25178476Sjb *
26178476Sjb * $FreeBSD: releng/10.2/tools/regression/netipx/spxabort/spxabort.c 157163 2006-03-27 00:03:37Z rwatson $
27178476Sjb */
28178476Sjb
29178476Sjb/*
30178476Sjb * Exercise the pru_abort() code for SPX by opening an SPX connection to a
31178476Sjb * listen socket, then closing the listen socket before accepting.
32178476Sjb *
33178476Sjb * We would also like to be able to test the other two abort cases, in which
34178476Sjb * incomplete connections are aborted due to overflow, and due to close of
35178476Sjb * the listen socket, but that requires a packet level test rather than using
36178476Sjb * the socket API.
37178476Sjb */
38178476Sjb
39178476Sjb#include <sys/types.h>
40178476Sjb#include <sys/socket.h>
41178476Sjb
42178476Sjb#include <netipx/ipx.h>
43178476Sjb
44178476Sjb#include <err.h>
45#include <errno.h>
46#include <fcntl.h>
47#include <stdio.h>
48#include <string.h>
49#include <unistd.h>
50
51#define	IPX_ENDPOINT	"0xbebe.1.0x8a13"
52
53int
54main(int argc, char *argv[])
55{
56	struct sockaddr_ipx sipx;
57	int sock_listen, sock;
58
59	sock_listen = socket(PF_IPX, SOCK_STREAM, 0);
60	if (sock_listen < 0)
61		err(-1, "sock_listen = socket(PF_IPX, SOCK_STREAM, 0)");
62
63	bzero(&sipx, sizeof(sipx));
64	sipx.sipx_len = sizeof(sipx);
65	sipx.sipx_family = AF_IPX;
66	sipx.sipx_addr = ipx_addr(IPX_ENDPOINT);
67
68	if (bind(sock_listen, (struct sockaddr *)&sipx, sizeof(sipx)) < 0)
69		err(-1, "bind(sock_listen)");
70
71	if (listen(sock_listen, -1) < 0)
72		err(-1, "listen(sock_listen)");
73
74	sock = socket(PF_IPX, SOCK_STREAM, 0);
75	if (sock < 0)
76		err(-1, "sock = socket(PF_IPX, SOCK_STREAM, 0)");
77
78	bzero(&sipx, sizeof(sipx));
79	sipx.sipx_len = sizeof(sipx);
80	sipx.sipx_family = AF_IPX;
81	sipx.sipx_addr = ipx_addr(IPX_ENDPOINT);
82
83	if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
84		err(-1, "fcntl(sock, F_SETFL, O_NONBLOCKING)");
85
86	if (connect(sock, (struct sockaddr *)&sipx, sizeof(sipx)) < 0) {
87		if (errno != EINPROGRESS)
88			err(-1, "sock = socket(PF_IPX, SOCK_STREAM, 0)");
89	}
90
91	sleep(1);	/* Arbitrary. */
92
93	close(sock_listen);
94
95	return (0);
96};
97