Import USB RNDIS driver to FreeBSD from OpenBSD.
Useful for so-called USB tethering. - Imported code from OpenBSD - Adapted code to FreeBSD - Removed some unused functions - Fixed some buffer encoding and decoding issues - Optimised data transport path a bit, by sending multiple packets at a time - Increased receive buffer to 16K Obtained from: OpenBSD Requested by: eadler @ MFC after: 2 weeks
This commit is contained in:
parent
e0c2f97550
commit
2931122745
@ -2746,6 +2746,8 @@ device upgt
|
||||
# Ralink Technology RT2500USB wireless driver
|
||||
device ural
|
||||
#
|
||||
# RNDIS USB ethernet driver
|
||||
device urndis
|
||||
# Realtek RTL8187B/L wireless driver
|
||||
device urtw
|
||||
#
|
||||
|
@ -2293,9 +2293,11 @@ dev/usb/net/if_rue.c optional rue
|
||||
dev/usb/net/if_smsc.c optional smsc
|
||||
dev/usb/net/if_udav.c optional udav
|
||||
dev/usb/net/if_usie.c optional usie
|
||||
dev/usb/net/if_urndis.c optional urndis
|
||||
dev/usb/net/ruephy.c optional rue
|
||||
dev/usb/net/usb_ethernet.c optional aue | axe | axge | cdce | cue | kue | \
|
||||
mos | rue | smsc | udav | ipheth
|
||||
mos | rue | smsc | udav | ipheth | \
|
||||
urndis
|
||||
dev/usb/net/uhso.c optional uhso
|
||||
#
|
||||
# USB WLAN drivers
|
||||
|
1013
sys/dev/usb/net/if_urndis.c
Normal file
1013
sys/dev/usb/net/if_urndis.c
Normal file
File diff suppressed because it is too large
Load Diff
296
sys/dev/usb/net/if_urndisreg.h
Normal file
296
sys/dev/usb/net/if_urndisreg.h
Normal file
@ -0,0 +1,296 @@
|
||||
/* $FreeBSD$ */
|
||||
/* $OpenBSD: if_urndisreg.h,v 1.19 2013/11/21 14:08:05 mpi Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010 Jonathan Armani <armani@openbsd.org>
|
||||
* Copyright (c) 2010 Fabien Romano <fabien@openbsd.org>
|
||||
* Copyright (c) 2010 Michael Knudsen <mk@openbsd.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _IF_URNDISREG_H_
|
||||
#define _IF_URNDISREG_H_
|
||||
|
||||
#define RNDIS_RESPONSE_LEN 1024 /* bytes */
|
||||
#define RNDIS_RX_MAXLEN (16 * 1024)
|
||||
#define RNDIS_TX_FRAMES_MAX 8
|
||||
#define RNDIS_TX_MAXLEN MCLBYTES
|
||||
|
||||
enum {
|
||||
URNDIS_BULK_RX,
|
||||
URNDIS_BULK_TX,
|
||||
URNDIS_INTR_RX,
|
||||
URNDIS_N_TRANSFER,
|
||||
};
|
||||
|
||||
struct urndis_softc {
|
||||
|
||||
struct usb_ether sc_ue;
|
||||
struct mtx sc_mtx;
|
||||
|
||||
/* RNDIS device info */
|
||||
uint32_t sc_lim_pktsz;
|
||||
uint32_t sc_filter;
|
||||
|
||||
struct usb_device *sc_udev;
|
||||
struct usb_xfer *sc_xfer[URNDIS_N_TRANSFER];
|
||||
|
||||
uint8_t sc_ifaceno_ctl;
|
||||
uint8_t sc_response_buf[RNDIS_RESPONSE_LEN] __aligned(4);
|
||||
};
|
||||
|
||||
#define URNDIS_LOCK(sc) mtx_lock(&(sc)->sc_mtx)
|
||||
#define URNDIS_UNLOCK(sc) mtx_unlock(&(sc)->sc_mtx)
|
||||
#define URNDIS_LOCK_ASSERT(sc, what) mtx_assert(&(sc)->sc_mtx, (x))
|
||||
|
||||
#define RNDIS_STATUS_BUFFER_OVERFLOW 0x80000005L
|
||||
#define RNDIS_STATUS_FAILURE 0xC0000001L
|
||||
#define RNDIS_STATUS_INVALID_DATA 0xC0010015L
|
||||
#define RNDIS_STATUS_MEDIA_CONNECT 0x4001000BL
|
||||
#define RNDIS_STATUS_MEDIA_DISCONNECT 0x4001000CL
|
||||
#define RNDIS_STATUS_NOT_SUPPORTED 0xC00000BBL
|
||||
#define RNDIS_STATUS_PENDING STATUS_PENDING /* XXX */
|
||||
#define RNDIS_STATUS_RESOURCES 0xC000009AL
|
||||
#define RNDIS_STATUS_SUCCESS 0x00000000L
|
||||
|
||||
#define OID_GEN_SUPPORTED_LIST 0x00010101
|
||||
#define OID_GEN_HARDWARE_STATUS 0x00010102
|
||||
#define OID_GEN_MEDIA_SUPPORTED 0x00010103
|
||||
#define OID_GEN_MEDIA_IN_USE 0x00010104
|
||||
#define OID_GEN_MAXIMUM_LOOKAHEAD 0x00010105
|
||||
#define OID_GEN_MAXIMUM_FRAME_SIZE 0x00010106
|
||||
#define OID_GEN_LINK_SPEED 0x00010107
|
||||
#define OID_GEN_TRANSMIT_BUFFER_SPACE 0x00010108
|
||||
#define OID_GEN_RECEIVE_BUFFER_SPACE 0x00010109
|
||||
#define OID_GEN_TRANSMIT_BLOCK_SIZE 0x0001010A
|
||||
#define OID_GEN_RECEIVE_BLOCK_SIZE 0x0001010B
|
||||
#define OID_GEN_VENDOR_ID 0x0001010C
|
||||
#define OID_GEN_VENDOR_DESCRIPTION 0x0001010D
|
||||
#define OID_GEN_CURRENT_PACKET_FILTER 0x0001010E
|
||||
#define OID_GEN_CURRENT_LOOKAHEAD 0x0001010F
|
||||
#define OID_GEN_DRIVER_VERSION 0x00010110
|
||||
#define OID_GEN_MAXIMUM_TOTAL_SIZE 0x00010111
|
||||
#define OID_GEN_PROTOCOL_OPTIONS 0x00010112
|
||||
#define OID_GEN_MAC_OPTIONS 0x00010113
|
||||
#define OID_GEN_MEDIA_CONNECT_STATUS 0x00010114
|
||||
#define OID_GEN_MAXIMUM_SEND_PACKETS 0x00010115
|
||||
#define OID_GEN_VENDOR_DRIVER_VERSION 0x00010116
|
||||
#define OID_GEN_SUPPORTED_GUIDS 0x00010117
|
||||
#define OID_GEN_NETWORK_LAYER_ADDRESSES 0x00010118
|
||||
#define OID_GEN_TRANSPORT_HEADER_OFFSET 0x00010119
|
||||
#define OID_GEN_MACHINE_NAME 0x0001021A
|
||||
#define OID_GEN_RNDIS_CONFIG_PARAMETER 0x0001021B
|
||||
#define OID_GEN_VLAN_ID 0x0001021C
|
||||
|
||||
#define OID_802_3_PERMANENT_ADDRESS 0x01010101
|
||||
#define OID_802_3_CURRENT_ADDRESS 0x01010102
|
||||
#define OID_802_3_MULTICAST_LIST 0x01010103
|
||||
#define OID_802_3_MAXIMUM_LIST_SIZE 0x01010104
|
||||
#define OID_802_3_MAC_OPTIONS 0x01010105
|
||||
#define OID_802_3_RCV_ERROR_ALIGNMENT 0x01020101
|
||||
#define OID_802_3_XMIT_ONE_COLLISION 0x01020102
|
||||
#define OID_802_3_XMIT_MORE_COLLISIONS 0x01020103
|
||||
#define OID_802_3_XMIT_DEFERRED 0x01020201
|
||||
#define OID_802_3_XMIT_MAX_COLLISIONS 0x01020202
|
||||
#define OID_802_3_RCV_OVERRUN 0x01020203
|
||||
#define OID_802_3_XMIT_UNDERRUN 0x01020204
|
||||
#define OID_802_3_XMIT_HEARTBEAT_FAILURE 0x01020205
|
||||
#define OID_802_3_XMIT_TIMES_CRS_LOST 0x01020206
|
||||
#define OID_802_3_XMIT_LATE_COLLISIONS 0x01020207
|
||||
|
||||
#define RNDIS_MEDIUM_802_3 0x00000000
|
||||
|
||||
/* Device flags */
|
||||
#define RNDIS_DF_CONNECTIONLESS 0x00000001
|
||||
#define RNDIS_DF_CONNECTION_ORIENTED 0x00000002
|
||||
|
||||
/*
|
||||
* RNDIS data message
|
||||
*/
|
||||
#define REMOTE_NDIS_PACKET_MSG 0x00000001
|
||||
|
||||
struct urndis_packet_msg {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_dataoffset;
|
||||
uint32_t rm_datalen;
|
||||
uint32_t rm_oobdataoffset;
|
||||
uint32_t rm_oobdatalen;
|
||||
uint32_t rm_oobdataelements;
|
||||
uint32_t rm_pktinfooffset;
|
||||
uint32_t rm_pktinfolen;
|
||||
uint32_t rm_vchandle;
|
||||
uint32_t rm_reserved;
|
||||
};
|
||||
|
||||
/*
|
||||
* RNDIS control messages
|
||||
*/
|
||||
struct urndis_comp_hdr {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_status;
|
||||
};
|
||||
|
||||
/* Initialize the device. */
|
||||
#define REMOTE_NDIS_INITIALIZE_MSG 0x00000002
|
||||
#define REMOTE_NDIS_INITIALIZE_CMPLT 0x80000002
|
||||
|
||||
struct urndis_init_req {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_ver_major;
|
||||
uint32_t rm_ver_minor;
|
||||
uint32_t rm_max_xfersz;
|
||||
};
|
||||
|
||||
struct urndis_init_comp {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_status;
|
||||
uint32_t rm_ver_major;
|
||||
uint32_t rm_ver_minor;
|
||||
uint32_t rm_devflags;
|
||||
uint32_t rm_medium;
|
||||
uint32_t rm_pktmaxcnt;
|
||||
uint32_t rm_pktmaxsz;
|
||||
uint32_t rm_align;
|
||||
uint32_t rm_aflistoffset;
|
||||
uint32_t rm_aflistsz;
|
||||
};
|
||||
|
||||
/* Halt the device. No response sent. */
|
||||
#define REMOTE_NDIS_HALT_MSG 0x00000003
|
||||
|
||||
struct urndis_halt_req {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
};
|
||||
|
||||
/* Send a query object. */
|
||||
#define REMOTE_NDIS_QUERY_MSG 0x00000004
|
||||
#define REMOTE_NDIS_QUERY_CMPLT 0x80000004
|
||||
|
||||
struct urndis_query_req {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_oid;
|
||||
uint32_t rm_infobuflen;
|
||||
uint32_t rm_infobufoffset;
|
||||
uint32_t rm_devicevchdl;
|
||||
};
|
||||
|
||||
struct urndis_query_comp {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_status;
|
||||
uint32_t rm_infobuflen;
|
||||
uint32_t rm_infobufoffset;
|
||||
};
|
||||
|
||||
/* Send a set object request. */
|
||||
#define REMOTE_NDIS_SET_MSG 0x00000005
|
||||
#define REMOTE_NDIS_SET_CMPLT 0x80000005
|
||||
|
||||
struct urndis_set_req {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_oid;
|
||||
uint32_t rm_infobuflen;
|
||||
uint32_t rm_infobufoffset;
|
||||
uint32_t rm_devicevchdl;
|
||||
};
|
||||
|
||||
struct urndis_set_comp {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_status;
|
||||
};
|
||||
|
||||
#define REMOTE_NDIS_SET_PARAM_NUMERIC 0x00000000
|
||||
#define REMOTE_NDIS_SET_PARAM_STRING 0x00000002
|
||||
|
||||
struct urndis_set_parameter {
|
||||
uint32_t rm_nameoffset;
|
||||
uint32_t rm_namelen;
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_valueoffset;
|
||||
uint32_t rm_valuelen;
|
||||
};
|
||||
|
||||
/* Perform a soft reset on the device. */
|
||||
#define REMOTE_NDIS_RESET_MSG 0x00000006
|
||||
#define REMOTE_NDIS_RESET_CMPLT 0x80000006
|
||||
|
||||
struct urndis_reset_req {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
};
|
||||
|
||||
struct urndis_reset_comp {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_status;
|
||||
uint32_t rm_adrreset;
|
||||
};
|
||||
|
||||
/* 802.3 link-state or undefined message error. */
|
||||
#define REMOTE_NDIS_INDICATE_STATUS_MSG 0x00000007
|
||||
|
||||
/* Keepalive messsage. May be sent by device. */
|
||||
#define REMOTE_NDIS_KEEPALIVE_MSG 0x00000008
|
||||
#define REMOTE_NDIS_KEEPALIVE_CMPLT 0x80000008
|
||||
|
||||
struct urndis_keepalive_req {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
};
|
||||
|
||||
struct urndis_keepalive_comp {
|
||||
uint32_t rm_type;
|
||||
uint32_t rm_len;
|
||||
uint32_t rm_rid;
|
||||
uint32_t rm_status;
|
||||
};
|
||||
|
||||
/* packet filter bits used by OID_GEN_CURRENT_PACKET_FILTER */
|
||||
#define RNDIS_PACKET_TYPE_DIRECTED 0x00000001
|
||||
#define RNDIS_PACKET_TYPE_MULTICAST 0x00000002
|
||||
#define RNDIS_PACKET_TYPE_ALL_MULTICAST 0x00000004
|
||||
#define RNDIS_PACKET_TYPE_BROADCAST 0x00000008
|
||||
#define RNDIS_PACKET_TYPE_SOURCE_ROUTING 0x00000010
|
||||
#define RNDIS_PACKET_TYPE_PROMISCUOUS 0x00000020
|
||||
#define RNDIS_PACKET_TYPE_SMT 0x00000040
|
||||
#define RNDIS_PACKET_TYPE_ALL_LOCAL 0x00000080
|
||||
#define RNDIS_PACKET_TYPE_GROUP 0x00001000
|
||||
#define RNDIS_PACKET_TYPE_ALL_FUNCTIONAL 0x00002000
|
||||
#define RNDIS_PACKET_TYPE_FUNCTIONAL 0x00004000
|
||||
#define RNDIS_PACKET_TYPE_MAC_FRAME 0x00008000
|
||||
|
||||
/* RNDIS offsets */
|
||||
#define RNDIS_HEADER_OFFSET 8 /* bytes */
|
||||
#define RNDIS_DATA_OFFSET ((uint32_t)(sizeof(struct urndis_packet_msg) - RNDIS_HEADER_OFFSET))
|
||||
|
||||
#endif /* _IF_URNDISREG_H_ */
|
@ -500,8 +500,11 @@ typedef struct usb_interface_assoc_descriptor usb_interface_assoc_descriptor_t;
|
||||
#define UICLASS_WIRELESS 0xe0
|
||||
#define UISUBCLASS_RF 0x01
|
||||
#define UIPROTO_BLUETOOTH 0x01
|
||||
#define UIPROTO_RNDIS 0x03
|
||||
|
||||
#define UICLASS_IAD 0xEF /* Interface Association Descriptor */
|
||||
#define UISUBCLASS_SYNC 0x01
|
||||
#define UIPROTO_ACTIVESYNC 0x01
|
||||
|
||||
#define UICLASS_APPL_SPEC 0xfe
|
||||
#define UISUBCLASS_FIRMWARE_DOWNLOAD 1
|
||||
|
@ -51,6 +51,7 @@ SUBDIR += atp uhid ukbd ums udbp ufm uep wsp
|
||||
SUBDIR += ucom u3g uark ubsa ubser uchcom ucycom ufoma uftdi ugensa uipaq ulpt \
|
||||
umct umcs umodem umoscom uplcom uslcom uvisor uvscom
|
||||
SUBDIR += uether aue axe axge cdce cue ${_kue} mos rue smsc udav uhso ipheth
|
||||
SUBDIR += urndis
|
||||
SUBDIR += usfs umass urio
|
||||
SUBDIR += quirk template
|
||||
SUBDIR += ${_g_audio} ${_g_keyboard} ${_g_modem} ${_g_mouse}
|
||||
|
37
sys/modules/usb/urndis/Makefile
Normal file
37
sys/modules/usb/urndis/Makefile
Normal file
@ -0,0 +1,37 @@
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Copyright (c) 2014 Hans Petter Selasky. All rights reserved.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
S= ${.CURDIR}/../../..
|
||||
|
||||
.PATH: $S/dev/usb/net
|
||||
|
||||
KMOD= if_urndis
|
||||
SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h usbdevs.h \
|
||||
miibus_if.h opt_inet.h \
|
||||
if_urndis.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
Loading…
Reference in New Issue
Block a user