Author: adrian
Date: Mon Nov 30 06:34:16 2015
New Revision: 291470
URL: https://svnweb.freebsd.org/changeset/base/291470

Log:
  Convert ifconfig to use lib80211.
  
  * remove regdomain.[ch] - it's now part of lib80211.
  * convert ifieee80211.c to use the ioctl routines in lib80211 and
    implement the "error? exit" wrapper behaviour the callers expect.

Deleted:
  head/sbin/ifconfig/regdomain.c
  head/sbin/ifconfig/regdomain.h
Modified:
  head/sbin/ifconfig/Makefile
  head/sbin/ifconfig/ifieee80211.c

Modified: head/sbin/ifconfig/Makefile
==============================================================================
--- head/sbin/ifconfig/Makefile Mon Nov 30 06:26:59 2015        (r291469)
+++ head/sbin/ifconfig/Makefile Mon Nov 30 06:34:16 2015        (r291470)
@@ -37,8 +37,8 @@ SRCS+=        ifgif.c                 # GIF reversed header w
 SRCS+= sfp.c                   # SFP/SFP+ information
 LIBADD+=       m
 
-SRCS+= ifieee80211.c regdomain.c # SIOC[GS]IEEE80211 support
-LIBADD+=       bsdxml sbuf
+SRCS+= ifieee80211.c           # SIOC[GS]IEEE80211 support
+LIBADD+=       bsdxml sbuf 80211
 
 SRCS+= carp.c                  # SIOC[GS]VH support
 SRCS+= ifgroup.c               # ...

Modified: head/sbin/ifconfig/ifieee80211.c
==============================================================================
--- head/sbin/ifconfig/ifieee80211.c    Mon Nov 30 06:26:59 2015        
(r291469)
+++ head/sbin/ifconfig/ifieee80211.c    Mon Nov 30 06:34:16 2015        
(r291470)
@@ -90,7 +90,9 @@
 #include <stddef.h>            /* NB: for offsetof */
 
 #include "ifconfig.h"
-#include "regdomain.h"
+
+#include <lib80211/lib80211_regdomain.h>
+#include <lib80211/lib80211_ioctl.h>
 
 #ifndef IEEE80211_FIXED_RATE_NONE
 #define        IEEE80211_FIXED_RATE_NONE       0xff
@@ -4886,60 +4888,31 @@ end:
 static int
 get80211(int s, int type, void *data, int len)
 {
-       struct ieee80211req ireq;
 
-       (void) memset(&ireq, 0, sizeof(ireq));
-       (void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
-       ireq.i_type = type;
-       ireq.i_data = data;
-       ireq.i_len = len;
-       return ioctl(s, SIOCG80211, &ireq);
+       return (lib80211_get80211(s, name, type, data, len));
 }
 
 static int
 get80211len(int s, int type, void *data, int len, int *plen)
 {
-       struct ieee80211req ireq;
 
-       (void) memset(&ireq, 0, sizeof(ireq));
-       (void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
-       ireq.i_type = type;
-       ireq.i_len = len;
-       assert(ireq.i_len == len);      /* NB: check for 16-bit truncation */
-       ireq.i_data = data;
-       if (ioctl(s, SIOCG80211, &ireq) < 0)
-               return -1;
-       *plen = ireq.i_len;
-       return 0;
+       return (lib80211_get80211len(s, name, type, data, len, plen));
 }
 
 static int
 get80211val(int s, int type, int *val)
 {
-       struct ieee80211req ireq;
 
-       (void) memset(&ireq, 0, sizeof(ireq));
-       (void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
-       ireq.i_type = type;
-       if (ioctl(s, SIOCG80211, &ireq) < 0)
-               return -1;
-       *val = ireq.i_val;
-       return 0;
+       return (lib80211_get80211val(s, name, type, val));
 }
 
 static void
 set80211(int s, int type, int val, int len, void *data)
 {
-       struct ieee80211req     ireq;
+       int ret;
 
-       (void) memset(&ireq, 0, sizeof(ireq));
-       (void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
-       ireq.i_type = type;
-       ireq.i_val = val;
-       ireq.i_len = len;
-       assert(ireq.i_len == len);      /* NB: check for 16-bit truncation */
-       ireq.i_data = data;
-       if (ioctl(s, SIOCS80211, &ireq) < 0)
+       ret = lib80211_set80211(s, name, type, val, len, data);
+       if (ret < 0)
                err(1, "SIOCS80211");
 }
 
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to