4 * Copyright (c) 2006 Thomas Sailer
5 * Copyright (c) 2008 Andrzej Zaborowski
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
28 #include "hw/qdev-properties.h"
30 #include "migration/vmstate.h"
33 #include "qemu/error-report.h"
34 #include "qemu/queue.h"
35 #include "qemu/config-file.h"
36 #include "sysemu/sysemu.h"
38 #include "qemu/module.h"
39 #include "qemu/cutils.h"
41 /*#define TRAFFIC_DEBUG*/
42 /* Thanks to NetChip Technologies for donating this product ID.
43 * It's for devices with only CDC Ethernet configurations.
45 #define CDC_VENDOR_NUM 0x0525 /* NetChip */
46 #define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
47 /* For hardware that can talk RNDIS and either of the above protocols,
48 * use this ID ... the windows INF files will know it.
50 #define RNDIS_VENDOR_NUM 0x0525 /* NetChip */
51 #define RNDIS_PRODUCT_NUM 0xa4a2 /* Ethernet/RNDIS Gadget */
54 STRING_MANUFACTURER
= 1,
66 #define DEV_CONFIG_VALUE 1 /* CDC or a subset */
67 #define DEV_RNDIS_CONFIG_VALUE 2 /* RNDIS; optional */
69 #define USB_CDC_SUBCLASS_ACM 0x02
70 #define USB_CDC_SUBCLASS_ETHERNET 0x06
72 #define USB_CDC_PROTO_NONE 0
73 #define USB_CDC_ACM_PROTO_VENDOR 0xff
75 #define USB_CDC_HEADER_TYPE 0x00 /* header_desc */
76 #define USB_CDC_CALL_MANAGEMENT_TYPE 0x01 /* call_mgmt_descriptor */
77 #define USB_CDC_ACM_TYPE 0x02 /* acm_descriptor */
78 #define USB_CDC_UNION_TYPE 0x06 /* union_desc */
79 #define USB_CDC_ETHERNET_TYPE 0x0f /* ether_desc */
81 #define USB_CDC_SEND_ENCAPSULATED_COMMAND 0x00
82 #define USB_CDC_GET_ENCAPSULATED_RESPONSE 0x01
83 #define USB_CDC_REQ_SET_LINE_CODING 0x20
84 #define USB_CDC_REQ_GET_LINE_CODING 0x21
85 #define USB_CDC_REQ_SET_CONTROL_LINE_STATE 0x22
86 #define USB_CDC_REQ_SEND_BREAK 0x23
87 #define USB_CDC_SET_ETHERNET_MULTICAST_FILTERS 0x40
88 #define USB_CDC_SET_ETHERNET_PM_PATTERN_FILTER 0x41
89 #define USB_CDC_GET_ETHERNET_PM_PATTERN_FILTER 0x42
90 #define USB_CDC_SET_ETHERNET_PACKET_FILTER 0x43
91 #define USB_CDC_GET_ETHERNET_STATISTIC 0x44
93 #define LOG2_STATUS_INTERVAL_MSEC 5 /* 1 << 5 == 32 msec */
94 #define STATUS_BYTECOUNT 16 /* 8 byte header + data */
96 #define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */
98 static const USBDescStrings usb_net_stringtable
= {
99 [STRING_MANUFACTURER
] = "QEMU",
100 [STRING_PRODUCT
] = "RNDIS/QEMU USB Network Device",
101 [STRING_ETHADDR
] = "400102030405",
102 [STRING_DATA
] = "QEMU USB Net Data Interface",
103 [STRING_CONTROL
] = "QEMU USB Net Control Interface",
104 [STRING_RNDIS_CONTROL
] = "QEMU USB Net RNDIS Control Interface",
105 [STRING_CDC
] = "QEMU USB Net CDC",
106 [STRING_SUBSET
] = "QEMU USB Net Subset",
107 [STRING_RNDIS
] = "QEMU USB Net RNDIS",
108 [STRING_SERIALNUMBER
] = "1",
111 static const USBDescIface desc_iface_rndis
[] = {
113 /* RNDIS Control Interface */
114 .bInterfaceNumber
= 0,
116 .bInterfaceClass
= USB_CLASS_COMM
,
117 .bInterfaceSubClass
= USB_CDC_SUBCLASS_ACM
,
118 .bInterfaceProtocol
= USB_CDC_ACM_PROTO_VENDOR
,
119 .iInterface
= STRING_RNDIS_CONTROL
,
121 .descs
= (USBDescOther
[]) {
123 /* Header Descriptor */
124 .data
= (uint8_t[]) {
125 0x05, /* u8 bLength */
126 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
127 USB_CDC_HEADER_TYPE
, /* u8 bDescriptorSubType */
128 0x10, 0x01, /* le16 bcdCDC */
131 /* Call Management Descriptor */
132 .data
= (uint8_t[]) {
133 0x05, /* u8 bLength */
134 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
135 USB_CDC_CALL_MANAGEMENT_TYPE
, /* u8 bDescriptorSubType */
136 0x00, /* u8 bmCapabilities */
137 0x01, /* u8 bDataInterface */
141 .data
= (uint8_t[]) {
142 0x04, /* u8 bLength */
143 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
144 USB_CDC_ACM_TYPE
, /* u8 bDescriptorSubType */
145 0x00, /* u8 bmCapabilities */
148 /* Union Descriptor */
149 .data
= (uint8_t[]) {
150 0x05, /* u8 bLength */
151 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
152 USB_CDC_UNION_TYPE
, /* u8 bDescriptorSubType */
153 0x00, /* u8 bMasterInterface0 */
154 0x01, /* u8 bSlaveInterface0 */
158 .eps
= (USBDescEndpoint
[]) {
160 .bEndpointAddress
= USB_DIR_IN
| 0x01,
161 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
162 .wMaxPacketSize
= STATUS_BYTECOUNT
,
163 .bInterval
= 1 << LOG2_STATUS_INTERVAL_MSEC
,
167 /* RNDIS Data Interface */
168 .bInterfaceNumber
= 1,
170 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
171 .iInterface
= STRING_DATA
,
172 .eps
= (USBDescEndpoint
[]) {
174 .bEndpointAddress
= USB_DIR_IN
| 0x02,
175 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
176 .wMaxPacketSize
= 0x40,
178 .bEndpointAddress
= USB_DIR_OUT
| 0x02,
179 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
180 .wMaxPacketSize
= 0x40,
186 static const USBDescIface desc_iface_cdc
[] = {
188 /* CDC Control Interface */
189 .bInterfaceNumber
= 0,
191 .bInterfaceClass
= USB_CLASS_COMM
,
192 .bInterfaceSubClass
= USB_CDC_SUBCLASS_ETHERNET
,
193 .bInterfaceProtocol
= USB_CDC_PROTO_NONE
,
194 .iInterface
= STRING_CONTROL
,
196 .descs
= (USBDescOther
[]) {
198 /* Header Descriptor */
199 .data
= (uint8_t[]) {
200 0x05, /* u8 bLength */
201 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
202 USB_CDC_HEADER_TYPE
, /* u8 bDescriptorSubType */
203 0x10, 0x01, /* le16 bcdCDC */
206 /* Union Descriptor */
207 .data
= (uint8_t[]) {
208 0x05, /* u8 bLength */
209 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
210 USB_CDC_UNION_TYPE
, /* u8 bDescriptorSubType */
211 0x00, /* u8 bMasterInterface0 */
212 0x01, /* u8 bSlaveInterface0 */
215 /* Ethernet Descriptor */
216 .data
= (uint8_t[]) {
217 0x0d, /* u8 bLength */
218 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
219 USB_CDC_ETHERNET_TYPE
, /* u8 bDescriptorSubType */
220 STRING_ETHADDR
, /* u8 iMACAddress */
221 0x00, 0x00, 0x00, 0x00, /* le32 bmEthernetStatistics */
222 ETH_FRAME_LEN
& 0xff,
223 ETH_FRAME_LEN
>> 8, /* le16 wMaxSegmentSize */
224 0x00, 0x00, /* le16 wNumberMCFilters */
225 0x00, /* u8 bNumberPowerFilters */
229 .eps
= (USBDescEndpoint
[]) {
231 .bEndpointAddress
= USB_DIR_IN
| 0x01,
232 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
233 .wMaxPacketSize
= STATUS_BYTECOUNT
,
234 .bInterval
= 1 << LOG2_STATUS_INTERVAL_MSEC
,
238 /* CDC Data Interface (off) */
239 .bInterfaceNumber
= 1,
240 .bAlternateSetting
= 0,
242 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
244 /* CDC Data Interface */
245 .bInterfaceNumber
= 1,
246 .bAlternateSetting
= 1,
248 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
249 .iInterface
= STRING_DATA
,
250 .eps
= (USBDescEndpoint
[]) {
252 .bEndpointAddress
= USB_DIR_IN
| 0x02,
253 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
254 .wMaxPacketSize
= 0x40,
256 .bEndpointAddress
= USB_DIR_OUT
| 0x02,
257 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
258 .wMaxPacketSize
= 0x40,
264 static const USBDescDevice desc_device_net
= {
266 .bDeviceClass
= USB_CLASS_COMM
,
267 .bMaxPacketSize0
= 0x40,
268 .bNumConfigurations
= 2,
269 .confs
= (USBDescConfig
[]) {
272 .bConfigurationValue
= DEV_RNDIS_CONFIG_VALUE
,
273 .iConfiguration
= STRING_RNDIS
,
274 .bmAttributes
= USB_CFG_ATT_ONE
| USB_CFG_ATT_SELFPOWER
,
276 .nif
= ARRAY_SIZE(desc_iface_rndis
),
277 .ifs
= desc_iface_rndis
,
280 .bConfigurationValue
= DEV_CONFIG_VALUE
,
281 .iConfiguration
= STRING_CDC
,
282 .bmAttributes
= USB_CFG_ATT_ONE
| USB_CFG_ATT_SELFPOWER
,
284 .nif
= ARRAY_SIZE(desc_iface_cdc
),
285 .ifs
= desc_iface_cdc
,
290 static const USBDesc desc_net
= {
292 .idVendor
= RNDIS_VENDOR_NUM
,
293 .idProduct
= RNDIS_PRODUCT_NUM
,
295 .iManufacturer
= STRING_MANUFACTURER
,
296 .iProduct
= STRING_PRODUCT
,
297 .iSerialNumber
= STRING_SERIALNUMBER
,
299 .full
= &desc_device_net
,
300 .str
= usb_net_stringtable
,
304 * RNDIS Definitions - in theory not specific to USB.
306 #define RNDIS_MAXIMUM_FRAME_SIZE 1518
307 #define RNDIS_MAX_TOTAL_SIZE 1558
309 /* Remote NDIS Versions */
310 #define RNDIS_MAJOR_VERSION 1
311 #define RNDIS_MINOR_VERSION 0
314 #define RNDIS_STATUS_SUCCESS 0x00000000U /* Success */
315 #define RNDIS_STATUS_FAILURE 0xc0000001U /* Unspecified error */
316 #define RNDIS_STATUS_INVALID_DATA 0xc0010015U /* Invalid data */
317 #define RNDIS_STATUS_NOT_SUPPORTED 0xc00000bbU /* Unsupported request */
318 #define RNDIS_STATUS_MEDIA_CONNECT 0x4001000bU /* Device connected */
319 #define RNDIS_STATUS_MEDIA_DISCONNECT 0x4001000cU /* Device disconnected */
321 /* Message Set for Connectionless (802.3) Devices */
323 RNDIS_PACKET_MSG
= 1,
324 RNDIS_INITIALIZE_MSG
= 2, /* Initialize device */
329 RNDIS_INDICATE_STATUS_MSG
= 7,
330 RNDIS_KEEPALIVE_MSG
= 8,
333 /* Message completion */
335 RNDIS_INITIALIZE_CMPLT
= 0x80000002U
,
336 RNDIS_QUERY_CMPLT
= 0x80000004U
,
337 RNDIS_SET_CMPLT
= 0x80000005U
,
338 RNDIS_RESET_CMPLT
= 0x80000006U
,
339 RNDIS_KEEPALIVE_CMPLT
= 0x80000008U
,
344 RNDIS_DF_CONNECTIONLESS
= 1,
345 RNDIS_DF_CONNECTIONORIENTED
= 2,
348 #define RNDIS_MEDIUM_802_3 0x00000000U
350 /* from drivers/net/sk98lin/h/skgepnmi.h */
351 #define OID_PNP_CAPABILITIES 0xfd010100
352 #define OID_PNP_SET_POWER 0xfd010101
353 #define OID_PNP_QUERY_POWER 0xfd010102
354 #define OID_PNP_ADD_WAKE_UP_PATTERN 0xfd010103
355 #define OID_PNP_REMOVE_WAKE_UP_PATTERN 0xfd010104
356 #define OID_PNP_ENABLE_WAKE_UP 0xfd010106
358 typedef uint32_t le32
;
360 typedef struct rndis_init_msg_type
{
366 le32 MaxTransferSize
;
367 } rndis_init_msg_type
;
369 typedef struct rndis_init_cmplt_type
{
378 le32 MaxPacketsPerTransfer
;
379 le32 MaxTransferSize
;
380 le32 PacketAlignmentFactor
;
383 } rndis_init_cmplt_type
;
385 typedef struct rndis_halt_msg_type
{
389 } rndis_halt_msg_type
;
391 typedef struct rndis_query_msg_type
{
396 le32 InformationBufferLength
;
397 le32 InformationBufferOffset
;
399 } rndis_query_msg_type
;
401 typedef struct rndis_query_cmplt_type
{
406 le32 InformationBufferLength
;
407 le32 InformationBufferOffset
;
408 } rndis_query_cmplt_type
;
410 typedef struct rndis_set_msg_type
{
415 le32 InformationBufferLength
;
416 le32 InformationBufferOffset
;
418 } rndis_set_msg_type
;
420 typedef struct rndis_set_cmplt_type
{
425 } rndis_set_cmplt_type
;
427 typedef struct rndis_reset_msg_type
{
431 } rndis_reset_msg_type
;
433 typedef struct rndis_reset_cmplt_type
{
437 le32 AddressingReset
;
438 } rndis_reset_cmplt_type
;
440 typedef struct rndis_indicate_status_msg_type
{
444 le32 StatusBufferLength
;
445 le32 StatusBufferOffset
;
446 } rndis_indicate_status_msg_type
;
448 typedef struct rndis_keepalive_msg_type
{
452 } rndis_keepalive_msg_type
;
454 typedef struct rndis_keepalive_cmplt_type
{
459 } rndis_keepalive_cmplt_type
;
461 struct rndis_packet_msg_type
{
468 le32 NumOOBDataElements
;
469 le32 PerPacketInfoOffset
;
470 le32 PerPacketInfoLength
;
475 struct rndis_config_parameter
{
476 le32 ParameterNameOffset
;
477 le32 ParameterNameLength
;
479 le32 ParameterValueOffset
;
480 le32 ParameterValueLength
;
483 /* implementation specific */
488 RNDIS_DATA_INITIALIZED
,
493 /* Required Object IDs (OIDs) */
494 OID_GEN_SUPPORTED_LIST
= 0x00010101,
495 OID_GEN_HARDWARE_STATUS
= 0x00010102,
496 OID_GEN_MEDIA_SUPPORTED
= 0x00010103,
497 OID_GEN_MEDIA_IN_USE
= 0x00010104,
498 OID_GEN_MAXIMUM_LOOKAHEAD
= 0x00010105,
499 OID_GEN_MAXIMUM_FRAME_SIZE
= 0x00010106,
500 OID_GEN_LINK_SPEED
= 0x00010107,
501 OID_GEN_TRANSMIT_BUFFER_SPACE
= 0x00010108,
502 OID_GEN_RECEIVE_BUFFER_SPACE
= 0x00010109,
503 OID_GEN_TRANSMIT_BLOCK_SIZE
= 0x0001010a,
504 OID_GEN_RECEIVE_BLOCK_SIZE
= 0x0001010b,
505 OID_GEN_VENDOR_ID
= 0x0001010c,
506 OID_GEN_VENDOR_DESCRIPTION
= 0x0001010d,
507 OID_GEN_CURRENT_PACKET_FILTER
= 0x0001010e,
508 OID_GEN_CURRENT_LOOKAHEAD
= 0x0001010f,
509 OID_GEN_DRIVER_VERSION
= 0x00010110,
510 OID_GEN_MAXIMUM_TOTAL_SIZE
= 0x00010111,
511 OID_GEN_PROTOCOL_OPTIONS
= 0x00010112,
512 OID_GEN_MAC_OPTIONS
= 0x00010113,
513 OID_GEN_MEDIA_CONNECT_STATUS
= 0x00010114,
514 OID_GEN_MAXIMUM_SEND_PACKETS
= 0x00010115,
515 OID_GEN_VENDOR_DRIVER_VERSION
= 0x00010116,
516 OID_GEN_SUPPORTED_GUIDS
= 0x00010117,
517 OID_GEN_NETWORK_LAYER_ADDRESSES
= 0x00010118,
518 OID_GEN_TRANSPORT_HEADER_OFFSET
= 0x00010119,
519 OID_GEN_MACHINE_NAME
= 0x0001021a,
520 OID_GEN_RNDIS_CONFIG_PARAMETER
= 0x0001021b,
521 OID_GEN_VLAN_ID
= 0x0001021c,
524 OID_GEN_MEDIA_CAPABILITIES
= 0x00010201,
525 OID_GEN_PHYSICAL_MEDIUM
= 0x00010202,
527 /* Required statistics OIDs */
528 OID_GEN_XMIT_OK
= 0x00020101,
529 OID_GEN_RCV_OK
= 0x00020102,
530 OID_GEN_XMIT_ERROR
= 0x00020103,
531 OID_GEN_RCV_ERROR
= 0x00020104,
532 OID_GEN_RCV_NO_BUFFER
= 0x00020105,
534 /* Optional statistics OIDs */
535 OID_GEN_DIRECTED_BYTES_XMIT
= 0x00020201,
536 OID_GEN_DIRECTED_FRAMES_XMIT
= 0x00020202,
537 OID_GEN_MULTICAST_BYTES_XMIT
= 0x00020203,
538 OID_GEN_MULTICAST_FRAMES_XMIT
= 0x00020204,
539 OID_GEN_BROADCAST_BYTES_XMIT
= 0x00020205,
540 OID_GEN_BROADCAST_FRAMES_XMIT
= 0x00020206,
541 OID_GEN_DIRECTED_BYTES_RCV
= 0x00020207,
542 OID_GEN_DIRECTED_FRAMES_RCV
= 0x00020208,
543 OID_GEN_MULTICAST_BYTES_RCV
= 0x00020209,
544 OID_GEN_MULTICAST_FRAMES_RCV
= 0x0002020a,
545 OID_GEN_BROADCAST_BYTES_RCV
= 0x0002020b,
546 OID_GEN_BROADCAST_FRAMES_RCV
= 0x0002020c,
547 OID_GEN_RCV_CRC_ERROR
= 0x0002020d,
548 OID_GEN_TRANSMIT_QUEUE_LENGTH
= 0x0002020e,
549 OID_GEN_GET_TIME_CAPS
= 0x0002020f,
550 OID_GEN_GET_NETCARD_TIME
= 0x00020210,
551 OID_GEN_NETCARD_LOAD
= 0x00020211,
552 OID_GEN_DEVICE_PROFILE
= 0x00020212,
553 OID_GEN_INIT_TIME_MS
= 0x00020213,
554 OID_GEN_RESET_COUNTS
= 0x00020214,
555 OID_GEN_MEDIA_SENSE_COUNTS
= 0x00020215,
556 OID_GEN_FRIENDLY_NAME
= 0x00020216,
557 OID_GEN_MINIPORT_INFO
= 0x00020217,
558 OID_GEN_RESET_VERIFY_PARAMETERS
= 0x00020218,
560 /* IEEE 802.3 (Ethernet) OIDs */
561 OID_802_3_PERMANENT_ADDRESS
= 0x01010101,
562 OID_802_3_CURRENT_ADDRESS
= 0x01010102,
563 OID_802_3_MULTICAST_LIST
= 0x01010103,
564 OID_802_3_MAXIMUM_LIST_SIZE
= 0x01010104,
565 OID_802_3_MAC_OPTIONS
= 0x01010105,
566 OID_802_3_RCV_ERROR_ALIGNMENT
= 0x01020101,
567 OID_802_3_XMIT_ONE_COLLISION
= 0x01020102,
568 OID_802_3_XMIT_MORE_COLLISIONS
= 0x01020103,
569 OID_802_3_XMIT_DEFERRED
= 0x01020201,
570 OID_802_3_XMIT_MAX_COLLISIONS
= 0x01020202,
571 OID_802_3_RCV_OVERRUN
= 0x01020203,
572 OID_802_3_XMIT_UNDERRUN
= 0x01020204,
573 OID_802_3_XMIT_HEARTBEAT_FAILURE
= 0x01020205,
574 OID_802_3_XMIT_TIMES_CRS_LOST
= 0x01020206,
575 OID_802_3_XMIT_LATE_COLLISIONS
= 0x01020207,
578 static const uint32_t oid_supported_list
[] =
580 /* the general stuff */
581 OID_GEN_SUPPORTED_LIST
,
582 OID_GEN_HARDWARE_STATUS
,
583 OID_GEN_MEDIA_SUPPORTED
,
584 OID_GEN_MEDIA_IN_USE
,
585 OID_GEN_MAXIMUM_FRAME_SIZE
,
587 OID_GEN_TRANSMIT_BLOCK_SIZE
,
588 OID_GEN_RECEIVE_BLOCK_SIZE
,
590 OID_GEN_VENDOR_DESCRIPTION
,
591 OID_GEN_VENDOR_DRIVER_VERSION
,
592 OID_GEN_CURRENT_PACKET_FILTER
,
593 OID_GEN_MAXIMUM_TOTAL_SIZE
,
594 OID_GEN_MEDIA_CONNECT_STATUS
,
595 OID_GEN_PHYSICAL_MEDIUM
,
597 /* the statistical stuff */
602 OID_GEN_RCV_NO_BUFFER
,
605 /* the general stuff */
606 OID_802_3_PERMANENT_ADDRESS
,
607 OID_802_3_CURRENT_ADDRESS
,
608 OID_802_3_MULTICAST_LIST
,
609 OID_802_3_MAC_OPTIONS
,
610 OID_802_3_MAXIMUM_LIST_SIZE
,
612 /* the statistical stuff */
613 OID_802_3_RCV_ERROR_ALIGNMENT
,
614 OID_802_3_XMIT_ONE_COLLISION
,
615 OID_802_3_XMIT_MORE_COLLISIONS
,
618 #define NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA (1 << 0)
619 #define NDIS_MAC_OPTION_RECEIVE_SERIALIZED (1 << 1)
620 #define NDIS_MAC_OPTION_TRANSFERS_NOT_PEND (1 << 2)
621 #define NDIS_MAC_OPTION_NO_LOOPBACK (1 << 3)
622 #define NDIS_MAC_OPTION_FULL_DUPLEX (1 << 4)
623 #define NDIS_MAC_OPTION_EOTX_INDICATION (1 << 5)
624 #define NDIS_MAC_OPTION_8021P_PRIORITY (1 << 6)
626 struct rndis_response
{
627 QTAILQ_ENTRY(rndis_response
) entries
;
632 typedef struct USBNetState
{
635 enum rndis_state rndis_state
;
638 uint32_t media_state
;
642 unsigned int out_ptr
;
643 uint8_t out_buf
[2048];
645 unsigned int in_ptr
, in_len
;
646 uint8_t in_buf
[2048];
650 char usbstring_mac
[13];
653 QTAILQ_HEAD(, rndis_response
) rndis_resp
;
656 #define TYPE_USB_NET "usb-net"
657 #define USB_NET(obj) OBJECT_CHECK(USBNetState, (obj), TYPE_USB_NET)
659 static int is_rndis(USBNetState
*s
)
661 return s
->dev
.config
?
662 s
->dev
.config
->bConfigurationValue
== DEV_RNDIS_CONFIG_VALUE
: 0;
665 static int ndis_query(USBNetState
*s
, uint32_t oid
,
666 uint8_t *inbuf
, unsigned int inlen
, uint8_t *outbuf
,
672 /* general oids (table 4-1) */
674 case OID_GEN_SUPPORTED_LIST
:
675 for (i
= 0; i
< ARRAY_SIZE(oid_supported_list
); i
++) {
676 stl_le_p(outbuf
+ (i
* sizeof(le32
)), oid_supported_list
[i
]);
678 return sizeof(oid_supported_list
);
681 case OID_GEN_HARDWARE_STATUS
:
686 case OID_GEN_MEDIA_SUPPORTED
:
687 stl_le_p(outbuf
, s
->medium
);
691 case OID_GEN_MEDIA_IN_USE
:
692 stl_le_p(outbuf
, s
->medium
);
696 case OID_GEN_MAXIMUM_FRAME_SIZE
:
697 stl_le_p(outbuf
, ETH_FRAME_LEN
);
701 case OID_GEN_LINK_SPEED
:
702 stl_le_p(outbuf
, s
->speed
);
706 case OID_GEN_TRANSMIT_BLOCK_SIZE
:
707 stl_le_p(outbuf
, ETH_FRAME_LEN
);
711 case OID_GEN_RECEIVE_BLOCK_SIZE
:
712 stl_le_p(outbuf
, ETH_FRAME_LEN
);
716 case OID_GEN_VENDOR_ID
:
717 stl_le_p(outbuf
, s
->vendorid
);
721 case OID_GEN_VENDOR_DESCRIPTION
:
722 pstrcpy((char *)outbuf
, outlen
, "QEMU USB RNDIS Net");
723 return strlen((char *)outbuf
) + 1;
725 case OID_GEN_VENDOR_DRIVER_VERSION
:
730 case OID_GEN_CURRENT_PACKET_FILTER
:
731 stl_le_p(outbuf
, s
->filter
);
735 case OID_GEN_MAXIMUM_TOTAL_SIZE
:
736 stl_le_p(outbuf
, RNDIS_MAX_TOTAL_SIZE
);
740 case OID_GEN_MEDIA_CONNECT_STATUS
:
741 stl_le_p(outbuf
, s
->media_state
);
744 case OID_GEN_PHYSICAL_MEDIUM
:
748 case OID_GEN_MAC_OPTIONS
:
749 stl_le_p(outbuf
, NDIS_MAC_OPTION_RECEIVE_SERIALIZED
|
750 NDIS_MAC_OPTION_FULL_DUPLEX
);
753 /* statistics OIDs (table 4-2) */
755 case OID_GEN_XMIT_OK
:
765 case OID_GEN_XMIT_ERROR
:
770 case OID_GEN_RCV_ERROR
:
775 case OID_GEN_RCV_NO_BUFFER
:
779 /* ieee802.3 OIDs (table 4-3) */
781 case OID_802_3_PERMANENT_ADDRESS
:
782 memcpy(outbuf
, s
->conf
.macaddr
.a
, 6);
786 case OID_802_3_CURRENT_ADDRESS
:
787 memcpy(outbuf
, s
->conf
.macaddr
.a
, 6);
791 case OID_802_3_MULTICAST_LIST
:
792 stl_le_p(outbuf
, 0xe0000000);
796 case OID_802_3_MAXIMUM_LIST_SIZE
:
800 case OID_802_3_MAC_OPTIONS
:
803 /* ieee802.3 statistics OIDs (table 4-4) */
805 case OID_802_3_RCV_ERROR_ALIGNMENT
:
810 case OID_802_3_XMIT_ONE_COLLISION
:
815 case OID_802_3_XMIT_MORE_COLLISIONS
:
820 fprintf(stderr
, "usbnet: unknown OID 0x%08x\n", oid
);
826 static int ndis_set(USBNetState
*s
, uint32_t oid
,
827 uint8_t *inbuf
, unsigned int inlen
)
830 case OID_GEN_CURRENT_PACKET_FILTER
:
831 s
->filter
= ldl_le_p(inbuf
);
833 s
->rndis_state
= RNDIS_DATA_INITIALIZED
;
835 s
->rndis_state
= RNDIS_INITIALIZED
;
839 case OID_802_3_MULTICAST_LIST
:
845 static int rndis_get_response(USBNetState
*s
, uint8_t *buf
)
848 struct rndis_response
*r
= s
->rndis_resp
.tqh_first
;
853 QTAILQ_REMOVE(&s
->rndis_resp
, r
, entries
);
855 memcpy(buf
, r
->buf
, r
->length
);
861 static void *rndis_queue_response(USBNetState
*s
, unsigned int length
)
863 struct rndis_response
*r
=
864 g_malloc0(sizeof(struct rndis_response
) + length
);
866 if (QTAILQ_EMPTY(&s
->rndis_resp
)) {
867 usb_wakeup(s
->intr
, 0);
870 QTAILQ_INSERT_TAIL(&s
->rndis_resp
, r
, entries
);
876 static void rndis_clear_responsequeue(USBNetState
*s
)
878 struct rndis_response
*r
;
880 while ((r
= s
->rndis_resp
.tqh_first
)) {
881 QTAILQ_REMOVE(&s
->rndis_resp
, r
, entries
);
886 static int rndis_init_response(USBNetState
*s
, rndis_init_msg_type
*buf
)
888 rndis_init_cmplt_type
*resp
=
889 rndis_queue_response(s
, sizeof(rndis_init_cmplt_type
));
892 return USB_RET_STALL
;
894 resp
->MessageType
= cpu_to_le32(RNDIS_INITIALIZE_CMPLT
);
895 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_init_cmplt_type
));
896 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
897 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
898 resp
->MajorVersion
= cpu_to_le32(RNDIS_MAJOR_VERSION
);
899 resp
->MinorVersion
= cpu_to_le32(RNDIS_MINOR_VERSION
);
900 resp
->DeviceFlags
= cpu_to_le32(RNDIS_DF_CONNECTIONLESS
);
901 resp
->Medium
= cpu_to_le32(RNDIS_MEDIUM_802_3
);
902 resp
->MaxPacketsPerTransfer
= cpu_to_le32(1);
903 resp
->MaxTransferSize
= cpu_to_le32(ETH_FRAME_LEN
+
904 sizeof(struct rndis_packet_msg_type
) + 22);
905 resp
->PacketAlignmentFactor
= cpu_to_le32(0);
906 resp
->AFListOffset
= cpu_to_le32(0);
907 resp
->AFListSize
= cpu_to_le32(0);
911 static int rndis_query_response(USBNetState
*s
,
912 rndis_query_msg_type
*buf
, unsigned int length
)
914 rndis_query_cmplt_type
*resp
;
915 /* oid_supported_list is the largest data reply */
916 uint8_t infobuf
[sizeof(oid_supported_list
)];
917 uint32_t bufoffs
, buflen
;
919 unsigned int resplen
;
921 bufoffs
= le32_to_cpu(buf
->InformationBufferOffset
) + 8;
922 buflen
= le32_to_cpu(buf
->InformationBufferLength
);
923 if (buflen
> length
|| bufoffs
>= length
|| bufoffs
+ buflen
> length
) {
924 return USB_RET_STALL
;
927 infobuflen
= ndis_query(s
, le32_to_cpu(buf
->OID
),
928 bufoffs
+ (uint8_t *) buf
, buflen
, infobuf
,
930 resplen
= sizeof(rndis_query_cmplt_type
) +
931 ((infobuflen
< 0) ? 0 : infobuflen
);
932 resp
= rndis_queue_response(s
, resplen
);
934 return USB_RET_STALL
;
936 resp
->MessageType
= cpu_to_le32(RNDIS_QUERY_CMPLT
);
937 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
938 resp
->MessageLength
= cpu_to_le32(resplen
);
940 if (infobuflen
< 0) {
941 /* OID not supported */
942 resp
->Status
= cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED
);
943 resp
->InformationBufferLength
= cpu_to_le32(0);
944 resp
->InformationBufferOffset
= cpu_to_le32(0);
948 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
949 resp
->InformationBufferOffset
=
950 cpu_to_le32(infobuflen
? sizeof(rndis_query_cmplt_type
) - 8 : 0);
951 resp
->InformationBufferLength
= cpu_to_le32(infobuflen
);
952 memcpy(resp
+ 1, infobuf
, infobuflen
);
957 static int rndis_set_response(USBNetState
*s
,
958 rndis_set_msg_type
*buf
, unsigned int length
)
960 rndis_set_cmplt_type
*resp
=
961 rndis_queue_response(s
, sizeof(rndis_set_cmplt_type
));
962 uint32_t bufoffs
, buflen
;
966 return USB_RET_STALL
;
968 bufoffs
= le32_to_cpu(buf
->InformationBufferOffset
) + 8;
969 buflen
= le32_to_cpu(buf
->InformationBufferLength
);
970 if (buflen
> length
|| bufoffs
>= length
|| bufoffs
+ buflen
> length
) {
971 return USB_RET_STALL
;
974 ret
= ndis_set(s
, le32_to_cpu(buf
->OID
),
975 bufoffs
+ (uint8_t *) buf
, buflen
);
976 resp
->MessageType
= cpu_to_le32(RNDIS_SET_CMPLT
);
977 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
978 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_set_cmplt_type
));
980 /* OID not supported */
981 resp
->Status
= cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED
);
984 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
989 static int rndis_reset_response(USBNetState
*s
, rndis_reset_msg_type
*buf
)
991 rndis_reset_cmplt_type
*resp
=
992 rndis_queue_response(s
, sizeof(rndis_reset_cmplt_type
));
995 return USB_RET_STALL
;
997 resp
->MessageType
= cpu_to_le32(RNDIS_RESET_CMPLT
);
998 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_reset_cmplt_type
));
999 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
1000 resp
->AddressingReset
= cpu_to_le32(1); /* reset information */
1005 static int rndis_keepalive_response(USBNetState
*s
,
1006 rndis_keepalive_msg_type
*buf
)
1008 rndis_keepalive_cmplt_type
*resp
=
1009 rndis_queue_response(s
, sizeof(rndis_keepalive_cmplt_type
));
1012 return USB_RET_STALL
;
1014 resp
->MessageType
= cpu_to_le32(RNDIS_KEEPALIVE_CMPLT
);
1015 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_keepalive_cmplt_type
));
1016 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
1017 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
1022 /* Prepare to receive the next packet */
1023 static void usb_net_reset_in_buf(USBNetState
*s
)
1025 s
->in_ptr
= s
->in_len
= 0;
1026 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
1029 static int rndis_parse(USBNetState
*s
, uint8_t *data
, int length
)
1031 uint32_t msg_type
= ldl_le_p(data
);
1034 case RNDIS_INITIALIZE_MSG
:
1035 s
->rndis_state
= RNDIS_INITIALIZED
;
1036 return rndis_init_response(s
, (rndis_init_msg_type
*) data
);
1038 case RNDIS_HALT_MSG
:
1039 s
->rndis_state
= RNDIS_UNINITIALIZED
;
1042 case RNDIS_QUERY_MSG
:
1043 return rndis_query_response(s
, (rndis_query_msg_type
*) data
, length
);
1046 return rndis_set_response(s
, (rndis_set_msg_type
*) data
, length
);
1048 case RNDIS_RESET_MSG
:
1049 rndis_clear_responsequeue(s
);
1051 usb_net_reset_in_buf(s
);
1052 return rndis_reset_response(s
, (rndis_reset_msg_type
*) data
);
1054 case RNDIS_KEEPALIVE_MSG
:
1055 /* For USB: host does this every 5 seconds */
1056 return rndis_keepalive_response(s
, (rndis_keepalive_msg_type
*) data
);
1059 return USB_RET_STALL
;
1062 static void usb_net_handle_reset(USBDevice
*dev
)
1066 static void usb_net_handle_control(USBDevice
*dev
, USBPacket
*p
,
1067 int request
, int value
, int index
, int length
, uint8_t *data
)
1069 USBNetState
*s
= (USBNetState
*) dev
;
1072 ret
= usb_desc_handle_control(dev
, p
, request
, value
, index
, length
, data
);
1078 case ClassInterfaceOutRequest
| USB_CDC_SEND_ENCAPSULATED_COMMAND
:
1079 if (!is_rndis(s
) || value
|| index
!= 0) {
1082 #ifdef TRAFFIC_DEBUG
1085 fprintf(stderr
, "SEND_ENCAPSULATED_COMMAND:");
1086 for (i
= 0; i
< length
; i
++) {
1088 fprintf(stderr
, "\n%04x:", i
);
1089 fprintf(stderr
, " %02x", data
[i
]);
1091 fprintf(stderr
, "\n\n");
1094 ret
= rndis_parse(s
, data
, length
);
1100 case ClassInterfaceRequest
| USB_CDC_GET_ENCAPSULATED_RESPONSE
:
1101 if (!is_rndis(s
) || value
|| index
!= 0) {
1104 p
->actual_length
= rndis_get_response(s
, data
);
1105 if (p
->actual_length
== 0) {
1107 p
->actual_length
= 1;
1109 #ifdef TRAFFIC_DEBUG
1112 fprintf(stderr
, "GET_ENCAPSULATED_RESPONSE:");
1113 for (i
= 0; i
< p
->actual_length
; i
++) {
1115 fprintf(stderr
, "\n%04x:", i
);
1116 fprintf(stderr
, " %02x", data
[i
]);
1118 fprintf(stderr
, "\n\n");
1125 fprintf(stderr
, "usbnet: failed control transaction: "
1126 "request 0x%x value 0x%x index 0x%x length 0x%x\n",
1127 request
, value
, index
, length
);
1128 p
->status
= USB_RET_STALL
;
1133 static void usb_net_handle_statusin(USBNetState
*s
, USBPacket
*p
)
1137 if (p
->iov
.size
< 8) {
1138 p
->status
= USB_RET_STALL
;
1142 buf
[0] = cpu_to_le32(1);
1143 buf
[1] = cpu_to_le32(0);
1144 usb_packet_copy(p
, buf
, 8);
1145 if (!s
->rndis_resp
.tqh_first
) {
1146 p
->status
= USB_RET_NAK
;
1149 #ifdef TRAFFIC_DEBUG
1150 fprintf(stderr
, "usbnet: interrupt poll len %zu return %d",
1151 p
->iov
.size
, p
->status
);
1152 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", p
->status
);
1156 static void usb_net_handle_datain(USBNetState
*s
, USBPacket
*p
)
1160 if (s
->in_ptr
> s
->in_len
) {
1161 usb_net_reset_in_buf(s
);
1162 p
->status
= USB_RET_NAK
;
1166 p
->status
= USB_RET_NAK
;
1169 len
= s
->in_len
- s
->in_ptr
;
1170 if (len
> p
->iov
.size
) {
1173 usb_packet_copy(p
, &s
->in_buf
[s
->in_ptr
], len
);
1175 if (s
->in_ptr
>= s
->in_len
&&
1176 (is_rndis(s
) || (s
->in_len
& (64 - 1)) || !len
)) {
1177 /* no short packet necessary */
1178 usb_net_reset_in_buf(s
);
1181 #ifdef TRAFFIC_DEBUG
1182 fprintf(stderr
, "usbnet: data in len %zu return %d", p
->iov
.size
, len
);
1183 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", len
);
1187 static void usb_net_handle_dataout(USBNetState
*s
, USBPacket
*p
)
1189 int sz
= sizeof(s
->out_buf
) - s
->out_ptr
;
1190 struct rndis_packet_msg_type
*msg
=
1191 (struct rndis_packet_msg_type
*) s
->out_buf
;
1194 #ifdef TRAFFIC_DEBUG
1195 fprintf(stderr
, "usbnet: data out len %zu\n", p
->iov
.size
);
1196 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", p
->iov
.size
);
1199 if (sz
> p
->iov
.size
) {
1202 usb_packet_copy(p
, &s
->out_buf
[s
->out_ptr
], sz
);
1206 if (p
->iov
.size
< 64) {
1207 qemu_send_packet(qemu_get_queue(s
->nic
), s
->out_buf
, s
->out_ptr
);
1212 len
= le32_to_cpu(msg
->MessageLength
);
1213 if (s
->out_ptr
< 8 || s
->out_ptr
< len
) {
1216 if (le32_to_cpu(msg
->MessageType
) == RNDIS_PACKET_MSG
) {
1217 uint32_t offs
= 8 + le32_to_cpu(msg
->DataOffset
);
1218 uint32_t size
= le32_to_cpu(msg
->DataLength
);
1219 if (offs
< len
&& size
< len
&& offs
+ size
<= len
) {
1220 qemu_send_packet(qemu_get_queue(s
->nic
), s
->out_buf
+ offs
, size
);
1224 memmove(s
->out_buf
, &s
->out_buf
[len
], s
->out_ptr
);
1227 static void usb_net_handle_data(USBDevice
*dev
, USBPacket
*p
)
1229 USBNetState
*s
= (USBNetState
*) dev
;
1233 switch (p
->ep
->nr
) {
1235 usb_net_handle_statusin(s
, p
);
1239 usb_net_handle_datain(s
, p
);
1248 switch (p
->ep
->nr
) {
1250 usb_net_handle_dataout(s
, p
);
1260 p
->status
= USB_RET_STALL
;
1264 if (p
->status
== USB_RET_STALL
) {
1265 fprintf(stderr
, "usbnet: failed data transaction: "
1266 "pid 0x%x ep 0x%x len 0x%zx\n",
1267 p
->pid
, p
->ep
->nr
, p
->iov
.size
);
1271 static ssize_t
usbnet_receive(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
1273 USBNetState
*s
= qemu_get_nic_opaque(nc
);
1274 uint8_t *in_buf
= s
->in_buf
;
1275 size_t total_size
= size
;
1277 if (!s
->dev
.config
) {
1282 if (s
->rndis_state
!= RNDIS_DATA_INITIALIZED
) {
1285 total_size
+= sizeof(struct rndis_packet_msg_type
);
1287 if (total_size
> sizeof(s
->in_buf
)) {
1291 /* Only accept packet if input buffer is empty */
1292 if (s
->in_len
> 0) {
1297 struct rndis_packet_msg_type
*msg
;
1299 msg
= (struct rndis_packet_msg_type
*)in_buf
;
1300 memset(msg
, 0, sizeof(struct rndis_packet_msg_type
));
1301 msg
->MessageType
= cpu_to_le32(RNDIS_PACKET_MSG
);
1302 msg
->MessageLength
= cpu_to_le32(size
+ sizeof(*msg
));
1303 msg
->DataOffset
= cpu_to_le32(sizeof(*msg
) - 8);
1304 msg
->DataLength
= cpu_to_le32(size
);
1305 /* msg->OOBDataOffset;
1306 * msg->OOBDataLength;
1307 * msg->NumOOBDataElements;
1308 * msg->PerPacketInfoOffset;
1309 * msg->PerPacketInfoLength;
1313 in_buf
+= sizeof(*msg
);
1316 memcpy(in_buf
, buf
, size
);
1317 s
->in_len
= total_size
;
1322 static void usbnet_cleanup(NetClientState
*nc
)
1324 USBNetState
*s
= qemu_get_nic_opaque(nc
);
1329 static void usb_net_unrealize(USBDevice
*dev
)
1331 USBNetState
*s
= (USBNetState
*) dev
;
1333 /* TODO: remove the nd_table[] entry */
1334 rndis_clear_responsequeue(s
);
1335 qemu_del_nic(s
->nic
);
1338 static NetClientInfo net_usbnet_info
= {
1339 .type
= NET_CLIENT_DRIVER_NIC
,
1340 .size
= sizeof(NICState
),
1341 .receive
= usbnet_receive
,
1342 .cleanup
= usbnet_cleanup
,
1345 static void usb_net_realize(USBDevice
*dev
, Error
**errp
)
1347 USBNetState
*s
= USB_NET(dev
);
1349 usb_desc_create_serial(dev
);
1352 s
->rndis_state
= RNDIS_UNINITIALIZED
;
1353 QTAILQ_INIT(&s
->rndis_resp
);
1355 s
->medium
= 0; /* NDIS_MEDIUM_802_3 */
1356 s
->speed
= 1000000; /* 100MBps, in 100Bps units */
1357 s
->media_state
= 0; /* NDIS_MEDIA_STATE_CONNECTED */;
1359 s
->vendorid
= 0x1234;
1360 s
->intr
= usb_ep_get(dev
, USB_TOKEN_IN
, 1);
1362 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
1363 s
->nic
= qemu_new_nic(&net_usbnet_info
, &s
->conf
,
1364 object_get_typename(OBJECT(s
)), s
->dev
.qdev
.id
, s
);
1365 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
1366 snprintf(s
->usbstring_mac
, sizeof(s
->usbstring_mac
),
1367 "%02x%02x%02x%02x%02x%02x",
1369 s
->conf
.macaddr
.a
[1],
1370 s
->conf
.macaddr
.a
[2],
1371 s
->conf
.macaddr
.a
[3],
1372 s
->conf
.macaddr
.a
[4],
1373 s
->conf
.macaddr
.a
[5]);
1374 usb_desc_set_string(dev
, STRING_ETHADDR
, s
->usbstring_mac
);
1377 static void usb_net_instance_init(Object
*obj
)
1379 USBDevice
*dev
= USB_DEVICE(obj
);
1380 USBNetState
*s
= USB_NET(dev
);
1382 device_add_bootindex_property(obj
, &s
->conf
.bootindex
,
1383 "bootindex", "/ethernet-phy@0",
1387 static const VMStateDescription vmstate_usb_net
= {
1392 static Property net_properties
[] = {
1393 DEFINE_NIC_PROPERTIES(USBNetState
, conf
),
1394 DEFINE_PROP_END_OF_LIST(),
1397 static void usb_net_class_initfn(ObjectClass
*klass
, void *data
)
1399 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1400 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
1402 uc
->realize
= usb_net_realize
;
1403 uc
->product_desc
= "QEMU USB Network Interface";
1404 uc
->usb_desc
= &desc_net
;
1405 uc
->handle_reset
= usb_net_handle_reset
;
1406 uc
->handle_control
= usb_net_handle_control
;
1407 uc
->handle_data
= usb_net_handle_data
;
1408 uc
->unrealize
= usb_net_unrealize
;
1409 set_bit(DEVICE_CATEGORY_NETWORK
, dc
->categories
);
1410 dc
->fw_name
= "network";
1411 dc
->vmsd
= &vmstate_usb_net
;
1412 device_class_set_props(dc
, net_properties
);
1415 static const TypeInfo net_info
= {
1416 .name
= TYPE_USB_NET
,
1417 .parent
= TYPE_USB_DEVICE
,
1418 .instance_size
= sizeof(USBNetState
),
1419 .class_init
= usb_net_class_initfn
,
1420 .instance_init
= usb_net_instance_init
,
1423 static void usb_net_register_types(void)
1425 type_register_static(&net_info
);
1428 type_init(usb_net_register_types
)