mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 08:59:18 +08:00
freebsd/wlanstats: Port to FreeBSD.
This commit is contained in:
parent
d415406e34
commit
ecda18104e
@ -177,6 +177,7 @@ def includes():
|
|||||||
'-Ifreebsd/sys/net',
|
'-Ifreebsd/sys/net',
|
||||||
'-Ifreebsd/include',
|
'-Ifreebsd/include',
|
||||||
'-Ifreebsd/lib',
|
'-Ifreebsd/lib',
|
||||||
|
'-Ifreebsd/lib/libbsdstat',
|
||||||
'-Ifreebsd/lib/libc/include',
|
'-Ifreebsd/lib/libc/include',
|
||||||
'-Ifreebsd/lib/libc/isc/include',
|
'-Ifreebsd/lib/libc/isc/include',
|
||||||
'-Ifreebsd/lib/libc/resolv',
|
'-Ifreebsd/lib/libc/resolv',
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
#include <machine/rtems-bsd-user-space.h>
|
#include <machine/rtems-bsd-user-space.h>
|
||||||
|
|
||||||
|
#ifdef __rtems__
|
||||||
|
#include "rtems-bsd-wlanstats-namespace.h"
|
||||||
|
#endif /* __rtems__ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
|
* Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -36,6 +40,12 @@
|
|||||||
* (default interface is wlan0).
|
* (default interface is wlan0).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef __rtems__
|
||||||
|
#define __need_getopt_newlib
|
||||||
|
#include <getopt.h>
|
||||||
|
#include <machine/rtems-bsd-program.h>
|
||||||
|
#include <machine/rtems-bsd-commands.h>
|
||||||
|
#endif /* __rtems__ */
|
||||||
#include <rtems/bsd/sys/param.h>
|
#include <rtems/bsd/sys/param.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
||||||
@ -50,8 +60,15 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "wlanstats.h"
|
#include "wlanstats.h"
|
||||||
|
#ifdef __rtems__
|
||||||
|
#include "rtems-bsd-wlanstats-main-data.h"
|
||||||
|
#endif /* __rtems__ */
|
||||||
|
|
||||||
|
#ifndef __rtems__
|
||||||
static struct {
|
static struct {
|
||||||
|
#else /* __rtems__ */
|
||||||
|
static const struct {
|
||||||
|
#endif /* __rtems__ */
|
||||||
const char *tag;
|
const char *tag;
|
||||||
const char *fmt;
|
const char *fmt;
|
||||||
} tags[] = {
|
} tags[] = {
|
||||||
@ -163,6 +180,29 @@ usage(void) {
|
|||||||
printf("wlanstats: [-ah] [-i ifname] [-l] [-o fmt] [interval]\n");
|
printf("wlanstats: [-ah] [-i ifname] [-l] [-o fmt] [interval]\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __rtems__
|
||||||
|
static int main(int argc, char *argv[]);
|
||||||
|
|
||||||
|
RTEMS_LINKER_RWSET(bsd_prog_wlanstats, char);
|
||||||
|
|
||||||
|
int
|
||||||
|
rtems_bsd_command_wlanstats(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
int exit_code;
|
||||||
|
void *data_begin;
|
||||||
|
size_t data_size;
|
||||||
|
|
||||||
|
data_begin = RTEMS_LINKER_SET_BEGIN(bsd_prog_wlanstats);
|
||||||
|
data_size = RTEMS_LINKER_SET_SIZE(bsd_prog_wlanstats);
|
||||||
|
|
||||||
|
rtems_bsd_program_lock();
|
||||||
|
exit_code = rtems_bsd_program_call_main_with_data_restore("wlanstats",
|
||||||
|
main, argc, argv, data_begin, data_size);
|
||||||
|
rtems_bsd_program_unlock();
|
||||||
|
|
||||||
|
return exit_code;
|
||||||
|
}
|
||||||
|
#endif /* __rtems__ */
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
@ -172,6 +212,15 @@ main(int argc, char *argv[])
|
|||||||
const char *ifname;
|
const char *ifname;
|
||||||
int allnodes = 0;
|
int allnodes = 0;
|
||||||
int c, mode;
|
int c, mode;
|
||||||
|
#ifdef __rtems__
|
||||||
|
struct getopt_data getopt_data;
|
||||||
|
memset(&getopt_data, 0, sizeof(getopt_data));
|
||||||
|
#define optind getopt_data.optind
|
||||||
|
#define optarg getopt_data.optarg
|
||||||
|
#define opterr getopt_data.opterr
|
||||||
|
#define optopt getopt_data.optopt
|
||||||
|
#define getopt(argc, argv, opt) getopt_r(argc, argv, "+" opt, &getopt_data)
|
||||||
|
#endif /* __rtems__ */
|
||||||
|
|
||||||
ifname = getenv("WLAN");
|
ifname = getenv("WLAN");
|
||||||
if (ifname == NULL)
|
if (ifname == NULL)
|
||||||
@ -234,10 +283,24 @@ main(int argc, char *argv[])
|
|||||||
wf->print_total(wf, stdout);
|
wf->print_total(wf, stdout);
|
||||||
}
|
}
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
#ifndef __rtems__
|
||||||
omask = sigblock(sigmask(SIGALRM));
|
omask = sigblock(sigmask(SIGALRM));
|
||||||
if (!signalled)
|
if (!signalled)
|
||||||
sigpause(0);
|
sigpause(0);
|
||||||
sigsetmask(omask);
|
sigsetmask(omask);
|
||||||
|
#else /* __rtems__ */
|
||||||
|
{
|
||||||
|
sigset_t oldmask, desired, empty;
|
||||||
|
|
||||||
|
sigemptyset(&empty);
|
||||||
|
sigemptyset(&desired);
|
||||||
|
sigaddset(&desired, SIGALRM);
|
||||||
|
sigprocmask(SIG_BLOCK, &desired, &oldmask);
|
||||||
|
while (!signalled)
|
||||||
|
sigsuspend(&desired);
|
||||||
|
sigprocmask(SIG_SETMASK, &oldmask, NULL);
|
||||||
|
}
|
||||||
|
#endif /* __rtems__ */
|
||||||
signalled = 0;
|
signalled = 0;
|
||||||
alarm(interval);
|
alarm(interval);
|
||||||
line++;
|
line++;
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
/* generated by userspace-header-gen.py */
|
||||||
|
#include <rtems/linkersets.h>
|
||||||
|
/* main.c */
|
||||||
|
/* wlanstats.c */
|
@ -0,0 +1,5 @@
|
|||||||
|
/* generated by userspace-header-gen.py */
|
||||||
|
#include <rtems/linkersets.h>
|
||||||
|
#include "rtems-bsd-wlanstats-data.h"
|
||||||
|
/* main.c */
|
||||||
|
RTEMS_LINKER_RWSET_CONTENT(bsd_prog_wlanstats, static int signalled);
|
@ -0,0 +1,8 @@
|
|||||||
|
/* generated by userspace-header-gen.py */
|
||||||
|
/* main.c */
|
||||||
|
#define main _bsd_wlanstats_main
|
||||||
|
#define usage _bsd_wlanstats_usage
|
||||||
|
/* wlanstats.c */
|
||||||
|
#define wlanstats_new _bsd_wlanstats_wlanstats_new
|
||||||
|
#define setstatus _bsd_wlanstats_setstatus
|
||||||
|
#define setreason _bsd_wlanstats_setreason
|
@ -0,0 +1,4 @@
|
|||||||
|
/* generated by userspace-header-gen.py */
|
||||||
|
#include <rtems/linkersets.h>
|
||||||
|
#include "rtems-bsd-wlanstats-data.h"
|
||||||
|
/* wlanstats.c */
|
@ -1,5 +1,9 @@
|
|||||||
#include <machine/rtems-bsd-user-space.h>
|
#include <machine/rtems-bsd-user-space.h>
|
||||||
|
|
||||||
|
#ifdef __rtems__
|
||||||
|
#include "rtems-bsd-wlanstats-namespace.h"
|
||||||
|
#endif /* __rtems__ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
|
* Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -35,6 +39,9 @@
|
|||||||
* net80211 statistics class.
|
* net80211 statistics class.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef __rtems__
|
||||||
|
#include <machine/rtems-bsd-program.h>
|
||||||
|
#endif /* __rtems__ */
|
||||||
#include <rtems/bsd/sys/param.h>
|
#include <rtems/bsd/sys/param.h>
|
||||||
#include <sys/file.h>
|
#include <sys/file.h>
|
||||||
#include <sys/sockio.h>
|
#include <sys/sockio.h>
|
||||||
@ -57,6 +64,9 @@
|
|||||||
#include "../../../../sys/net80211/ieee80211_ioctl.h"
|
#include "../../../../sys/net80211/ieee80211_ioctl.h"
|
||||||
|
|
||||||
#include "wlanstats.h"
|
#include "wlanstats.h"
|
||||||
|
#ifdef __rtems__
|
||||||
|
#include "rtems-bsd-wlanstats-wlanstats-data.h"
|
||||||
|
#endif /* __rtems__ */
|
||||||
|
|
||||||
#ifndef IEEE80211_ADDR_COPY
|
#ifndef IEEE80211_ADDR_COPY
|
||||||
#define IEEE80211_ADDR_COPY(dst, src) memcpy(dst, src, IEEE80211_ADDR_LEN)
|
#define IEEE80211_ADDR_COPY(dst, src) memcpy(dst, src, IEEE80211_ADDR_LEN)
|
||||||
|
23
libbsd.py
23
libbsd.py
@ -78,6 +78,7 @@ def rtems(mm):
|
|||||||
'rtems/rtems-bsd-shell-sysctl.c',
|
'rtems/rtems-bsd-shell-sysctl.c',
|
||||||
'rtems/rtems-bsd-shell-tcpdump.c',
|
'rtems/rtems-bsd-shell-tcpdump.c',
|
||||||
'rtems/rtems-bsd-shell-vmstat.c',
|
'rtems/rtems-bsd-shell-vmstat.c',
|
||||||
|
'rtems/rtems-bsd-shell-wlanstats.c',
|
||||||
'rtems/rtems-bsd-syscall-api.c',
|
'rtems/rtems-bsd-syscall-api.c',
|
||||||
'rtems/rtems-kernel-assert.c',
|
'rtems/rtems-kernel-assert.c',
|
||||||
'rtems/rtems-kernel-autoconf.c',
|
'rtems/rtems-kernel-autoconf.c',
|
||||||
@ -2454,6 +2455,27 @@ def user_space(mm):
|
|||||||
)
|
)
|
||||||
return mod
|
return mod
|
||||||
|
|
||||||
|
#
|
||||||
|
# User space: wlanstats utility
|
||||||
|
#
|
||||||
|
def user_space_wlanstats(mm):
|
||||||
|
mod = builder.Module('user_space_wlanstats')
|
||||||
|
mod.addUserSpaceHeaderFiles(
|
||||||
|
[
|
||||||
|
'tools/tools/net80211/wlanstats/wlanstats.h',
|
||||||
|
'lib/libbsdstat/bsdstat.h',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
mod.addUserSpaceSourceFiles(
|
||||||
|
[
|
||||||
|
'tools/tools/net80211/wlanstats/main.c',
|
||||||
|
'tools/tools/net80211/wlanstats/wlanstats.c',
|
||||||
|
'lib/libbsdstat/bsdstat.c',
|
||||||
|
],
|
||||||
|
mm.generator['source'](['-DINET6', '-DINET'])
|
||||||
|
)
|
||||||
|
return mod
|
||||||
|
|
||||||
#
|
#
|
||||||
# Contrib expat
|
# Contrib expat
|
||||||
#
|
#
|
||||||
@ -3063,6 +3085,7 @@ def sources(mm):
|
|||||||
mm.addModule(in_cksum(mm))
|
mm.addModule(in_cksum(mm))
|
||||||
|
|
||||||
mm.addModule(user_space(mm))
|
mm.addModule(user_space(mm))
|
||||||
|
mm.addModule(user_space_wlanstats(mm))
|
||||||
mm.addModule(contrib_expat(mm))
|
mm.addModule(contrib_expat(mm))
|
||||||
mm.addModule(contrib_libpcap(mm))
|
mm.addModule(contrib_libpcap(mm))
|
||||||
mm.addModule(usr_sbin_tcpdump(mm))
|
mm.addModule(usr_sbin_tcpdump(mm))
|
||||||
|
@ -67,6 +67,7 @@ def build(bld):
|
|||||||
includes += ["freebsd/sys/net"]
|
includes += ["freebsd/sys/net"]
|
||||||
includes += ["freebsd/include"]
|
includes += ["freebsd/include"]
|
||||||
includes += ["freebsd/lib"]
|
includes += ["freebsd/lib"]
|
||||||
|
includes += ["freebsd/lib/libbsdstat"]
|
||||||
includes += ["freebsd/lib/libc/include"]
|
includes += ["freebsd/lib/libc/include"]
|
||||||
includes += ["freebsd/lib/libc/isc/include"]
|
includes += ["freebsd/lib/libc/isc/include"]
|
||||||
includes += ["freebsd/lib/libc/resolv"]
|
includes += ["freebsd/lib/libc/resolv"]
|
||||||
@ -250,6 +251,7 @@ def build(bld):
|
|||||||
'freebsd/contrib/libxo/libxo/xo_encoder.c',
|
'freebsd/contrib/libxo/libxo/xo_encoder.c',
|
||||||
'freebsd/lib/lib80211/lib80211_ioctl.c',
|
'freebsd/lib/lib80211/lib80211_ioctl.c',
|
||||||
'freebsd/lib/lib80211/lib80211_regdomain.c',
|
'freebsd/lib/lib80211/lib80211_regdomain.c',
|
||||||
|
'freebsd/lib/libbsdstat/bsdstat.c',
|
||||||
'freebsd/lib/libc/gen/err.c',
|
'freebsd/lib/libc/gen/err.c',
|
||||||
'freebsd/lib/libc/gen/feature_present.c',
|
'freebsd/lib/libc/gen/feature_present.c',
|
||||||
'freebsd/lib/libc/gen/getdomainname.c',
|
'freebsd/lib/libc/gen/getdomainname.c',
|
||||||
@ -450,6 +452,8 @@ def build(bld):
|
|||||||
'freebsd/sbin/ping6/ping6.c',
|
'freebsd/sbin/ping6/ping6.c',
|
||||||
'freebsd/sbin/route/route.c',
|
'freebsd/sbin/route/route.c',
|
||||||
'freebsd/sbin/sysctl/sysctl.c',
|
'freebsd/sbin/sysctl/sysctl.c',
|
||||||
|
'freebsd/tools/tools/net80211/wlanstats/main.c',
|
||||||
|
'freebsd/tools/tools/net80211/wlanstats/wlanstats.c',
|
||||||
'freebsd/usr.bin/netstat/bpf.c',
|
'freebsd/usr.bin/netstat/bpf.c',
|
||||||
'freebsd/usr.bin/netstat/flowtable.c',
|
'freebsd/usr.bin/netstat/flowtable.c',
|
||||||
'freebsd/usr.bin/netstat/if.c',
|
'freebsd/usr.bin/netstat/if.c',
|
||||||
@ -1272,6 +1276,7 @@ def build(bld):
|
|||||||
'rtemsbsd/rtems/rtems-bsd-shell-sysctl.c',
|
'rtemsbsd/rtems/rtems-bsd-shell-sysctl.c',
|
||||||
'rtemsbsd/rtems/rtems-bsd-shell-tcpdump.c',
|
'rtemsbsd/rtems/rtems-bsd-shell-tcpdump.c',
|
||||||
'rtemsbsd/rtems/rtems-bsd-shell-vmstat.c',
|
'rtemsbsd/rtems/rtems-bsd-shell-vmstat.c',
|
||||||
|
'rtemsbsd/rtems/rtems-bsd-shell-wlanstats.c',
|
||||||
'rtemsbsd/rtems/rtems-bsd-syscall-api.c',
|
'rtemsbsd/rtems/rtems-bsd-syscall-api.c',
|
||||||
'rtemsbsd/rtems/rtems-kernel-assert.c',
|
'rtemsbsd/rtems/rtems-kernel-assert.c',
|
||||||
'rtemsbsd/rtems/rtems-kernel-autoconf.c',
|
'rtemsbsd/rtems/rtems-kernel-autoconf.c',
|
||||||
|
@ -68,6 +68,8 @@ int rtems_bsd_command_sysctl(int argc, char **argv);
|
|||||||
|
|
||||||
int rtems_bsd_command_vmstat(int argc, char **argv);
|
int rtems_bsd_command_vmstat(int argc, char **argv);
|
||||||
|
|
||||||
|
int rtems_bsd_command_wlanstats(int argc, char **argv);
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
#endif /* _RTEMS_BSD_MACHINE_RTEMS_BSD_COMMANDS_H_ */
|
#endif /* _RTEMS_BSD_MACHINE_RTEMS_BSD_COMMANDS_H_ */
|
||||||
|
@ -43,6 +43,8 @@ extern rtems_shell_cmd_t rtems_shell_SYSCTL_Command;
|
|||||||
|
|
||||||
extern rtems_shell_cmd_t rtems_shell_VMSTAT_Command;
|
extern rtems_shell_cmd_t rtems_shell_VMSTAT_Command;
|
||||||
|
|
||||||
|
extern rtems_shell_cmd_t rtems_shell_WLANSTATS_Command;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
42
rtemsbsd/rtems/rtems-bsd-shell-wlanstats.c
Normal file
42
rtemsbsd/rtems/rtems-bsd-shell-wlanstats.c
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2016 embedded brains GmbH. All rights reserved.
|
||||||
|
*
|
||||||
|
* embedded brains GmbH
|
||||||
|
* Dornierstr. 4
|
||||||
|
* 82178 Puchheim
|
||||||
|
* Germany
|
||||||
|
* <rtems@embedded-brains.de>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
* SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <rtems/netcmds-config.h>
|
||||||
|
#include <machine/rtems-bsd-commands.h>
|
||||||
|
|
||||||
|
rtems_shell_cmd_t rtems_shell_WLANSTATS_Command = {
|
||||||
|
"wlanstats", /* name */
|
||||||
|
"wlanstats [args]", /* usage */
|
||||||
|
"net", /* topic */
|
||||||
|
rtems_bsd_command_wlanstats, /* command */
|
||||||
|
NULL, /* alias */
|
||||||
|
NULL /* next */
|
||||||
|
};
|
@ -365,7 +365,8 @@ Init(rtems_task_argument arg)
|
|||||||
&rtems_shell_IFCONFIG_Command, \
|
&rtems_shell_IFCONFIG_Command, \
|
||||||
&rtems_shell_TCPDUMP_Command, \
|
&rtems_shell_TCPDUMP_Command, \
|
||||||
&rtems_shell_SYSCTL_Command, \
|
&rtems_shell_SYSCTL_Command, \
|
||||||
&rtems_shell_VMSTAT_Command
|
&rtems_shell_VMSTAT_Command, \
|
||||||
|
&rtems_shell_WLANSTATS_Command
|
||||||
|
|
||||||
#define CONFIGURE_SHELL_COMMAND_CPUUSE
|
#define CONFIGURE_SHELL_COMMAND_CPUUSE
|
||||||
#define CONFIGURE_SHELL_COMMAND_PERIODUSE
|
#define CONFIGURE_SHELL_COMMAND_PERIODUSE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user