Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / tests / test-unix-socket.c
1 /*
2  * Copyright (c) 2010, 2012, 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include <errno.h>
20 #include <signal.h>
21 #include <unistd.h>
22
23 #include "util.h"
24 #include "socket-util.h"
25 #include "ovstest.h"
26
27 static void
28 test_unix_socket_main(int argc, char *argv[])
29 {
30     const char *sockname1;
31     const char *sockname2;
32     int sock1, sock2;
33
34     set_program_name(argv[0]);
35
36     if (argc != 2 && argc != 3) {
37         ovs_fatal(0, "usage: %s SOCKETNAME1 [SOCKETNAME2]", argv[0]);
38     }
39     sockname1 = argv[1];
40     sockname2 = argc > 2 ? argv[2] : sockname1;
41
42     signal(SIGALRM, SIG_DFL);
43     alarm(5);
44
45     /* Create a listening socket under name 'sockname1'. */
46     sock1 = make_unix_socket(SOCK_STREAM, false, sockname1, NULL);
47     if (sock1 < 0) {
48         ovs_fatal(-sock1, "%s: bind failed", sockname1);
49     }
50     if (listen(sock1, 1)) {
51         ovs_fatal(errno, "%s: listen failed", sockname1);
52     }
53
54     /* Connect to 'sockname2' (which should be the same file, perhaps under a
55      * different name). */
56     sock2 = make_unix_socket(SOCK_STREAM, false, NULL, sockname2);
57     if (sock2 < 0) {
58         ovs_fatal(-sock2, "%s: connect failed", sockname2);
59     }
60
61     close(sock1);
62     close(sock2);
63 }
64
65 OVSTEST_REGISTER("test-unix-socket", test_unix_socket_main);