]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/examples/libifc/ifdestroy.c
When -n is specified, don't make bogus DNS queries. Instead,
[FreeBSD/FreeBSD.git] / share / examples / libifc / ifdestroy.c
1 /*
2  * Copyright (c) 2016, Marie Helene Kvello-Aune
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without modification,
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * thislist of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation and/or
13  * other materials provided with the distribution.
14  *
15  * 3. Neither the name of the copyright holder nor the names of its contributors
16  * may be used to endorse or promote products derived from this software without
17  * specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  * $FreeBSD$
31  */
32
33 #include <err.h>
34 #include <errno.h>
35 #include <net/if.h>
36 #include <sys/ioctl.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <libifc.h>
41
42
43 int main(int argc, char *argv[])
44 {
45         if (argc != 2) {
46                 errx(EINVAL, "Invalid number of arguments."
47                     " Only one argument is accepted, and it should be the name"
48                     " of the interface to be destroyed.");
49         }
50
51         char *ifname;
52
53         /* We have a static number of arguments. Therefore we can do it simple. */
54         ifname = strdup(argv[1]);
55
56         printf("Interface name: %s\n", ifname);
57
58         libifc_handle_t *lifh = libifc_open();
59         if (libifc_destroy_interface(lifh, ifname) == 0) {
60                 printf("Successfully destroyed interface '%s'.", ifname);
61                 libifc_close(lifh);
62                 lifh = NULL;
63                 free(ifname);
64                 return (0);
65         } else {
66                 switch (libifc_err_errtype(lifh)) {
67                 case SOCKET:
68                         warnx("couldn't create socket. This shouldn't happen.\n");
69                         break;
70                 case IOCTL:
71                         if (libifc_err_ioctlreq(lifh) == SIOCIFDESTROY) {
72                                 warnx(
73                                         "Failed to destroy interface (SIOCIFDESTROY)\n");
74                         }
75                         break;
76                 default:
77                         warnx(
78                                 "Should basically never end up here in this example.\n");
79                         break;
80                 }
81
82                 libifc_close(lifh);
83                 lifh = NULL;
84                 free(ifname);
85                 return (-1);
86         }
87 }