Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/ifwatchd ifwatchd: remove SIOCGIFDATA and SIOCGIFME...



details:   https://anonhg.NetBSD.org/src/rev/47ce028be6c7
branches:  trunk
changeset: 939695:47ce028be6c7
user:      roy <roy%NetBSD.org@localhost>
date:      Sun Sep 27 19:55:21 2020 +0000

description:
ifwatchd: remove SIOCGIFDATA and SIOCGIFMEDIA ioctls

getifaddrs(3) and route(4) provide all the data we need.

diffstat:

 usr.sbin/ifwatchd/ifwatchd.c |  47 +++++--------------------------------------
 1 files changed, 6 insertions(+), 41 deletions(-)

diffs (83 lines):

diff -r befd97580608 -r 47ce028be6c7 usr.sbin/ifwatchd/ifwatchd.c
--- a/usr.sbin/ifwatchd/ifwatchd.c      Sun Sep 27 19:36:54 2020 +0000
+++ b/usr.sbin/ifwatchd/ifwatchd.c      Sun Sep 27 19:55:21 2020 +0000
@@ -1,6 +1,6 @@
-/*     $NetBSD: ifwatchd.c,v 1.44 2020/09/23 02:32:04 roy Exp $        */
+/*     $NetBSD: ifwatchd.c,v 1.45 2020/09/27 19:55:21 roy Exp $        */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: ifwatchd.c,v 1.44 2020/09/23 02:32:04 roy Exp $");
+__RCSID("$NetBSD: ifwatchd.c,v 1.45 2020/09/27 19:55:21 roy Exp $");
 
 /*-
  * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc.
@@ -39,7 +39,6 @@
 #include <sys/wait.h>
 #include <net/if.h>
 #include <net/if_dl.h>
-#include <net/if_media.h>
 #include <net/route.h>
 #include <netinet/in.h>
 #include <netinet/in_var.h>
@@ -536,46 +535,13 @@
        return NULL;
 }
 
-static bool
-has_carrier(int s, const char *ifname)
-{
-       struct ifmediareq ifmr = { .ifm_status = 0 };
-
-       strlcpy(ifmr.ifm_name, ifname, sizeof(ifmr.ifm_name));
-       if (ioctl(s, SIOCGIFMEDIA, &ifmr) == -1) {
-               struct ifdatareq ifdr = { .ifdr_data.ifi_link_state = 0 };
-
-               strlcpy(ifdr.ifdr_name, ifname, sizeof(ifdr.ifdr_name));
-               if (ioctl(s, SIOCGIFDATA, &ifdr) == -1) {
-                       /* Should not be possible. */
-                       return false;
-               }
-               if (ifdr.ifdr_data.ifi_link_state == LINK_STATE_UP)
-                       return true;
-               else
-                       return false;
-       }
-
-       if (!(ifmr.ifm_status & IFM_AVALID)) {
-               /*
-                * Interface doesn't report media-valid status.
-                * assume ok.
-                */
-               return true;
-       }
-
-       if (ifmr.ifm_status & IFM_ACTIVE)
-               return true;
-       else
-               return false;
-}
-
 static void
 run_initial_ups(void)
 {
        struct interface_data * ifd;
        struct ifaddrs *res = NULL, *p;
        struct sockaddr *ifa;
+       const struct if_data *ifi;
        int s, aflag;
 
        s = socket(AF_INET, SOCK_DGRAM, 0);
@@ -602,11 +568,10 @@
                if (ifa == NULL)
                        continue;
                if (ifa->sa_family == AF_LINK) {
-                       if (has_carrier(s, ifd->ifname) == 0) {
+                       ifi = (const struct if_data *)p->ifa_data;
+                       if (ifi->ifi_link_state == LINK_STATE_UP)
                                invoke_script(ifd->ifname, CARRIER, NULL, NULL);
-                               ifd->last_carrier_status =
-                                   LINK_STATE_UP;
-                       }
+                       ifd->last_carrier_status = ifi->ifi_link_state;
                        continue;
                }
                aflag = check_addrflags(ifa->sa_family, p->ifa_addrflags);



Home | Main Index | Thread Index | Old Index