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 "qemu-common.h"
30 #include "hw/usb/desc.h"
32 #include "qemu/error-report.h"
33 #include "qemu/queue.h"
34 #include "qemu/config-file.h"
35 #include "sysemu/sysemu.h"
37 #include "qemu/cutils.h"
39 /*#define TRAFFIC_DEBUG*/
40 /* Thanks to NetChip Technologies for donating this product ID.
41 * It's for devices with only CDC Ethernet configurations.
43 #define CDC_VENDOR_NUM 0x0525 /* NetChip */
44 #define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
45 /* For hardware that can talk RNDIS and either of the above protocols,
46 * use this ID ... the windows INF files will know it.
48 #define RNDIS_VENDOR_NUM 0x0525 /* NetChip */
49 #define RNDIS_PRODUCT_NUM 0xa4a2 /* Ethernet/RNDIS Gadget */
52 STRING_MANUFACTURER
= 1,
64 #define DEV_CONFIG_VALUE 1 /* CDC or a subset */
65 #define DEV_RNDIS_CONFIG_VALUE 2 /* RNDIS; optional */
67 #define USB_CDC_SUBCLASS_ACM 0x02
68 #define USB_CDC_SUBCLASS_ETHERNET 0x06
70 #define USB_CDC_PROTO_NONE 0
71 #define USB_CDC_ACM_PROTO_VENDOR 0xff
73 #define USB_CDC_HEADER_TYPE 0x00 /* header_desc */
74 #define USB_CDC_CALL_MANAGEMENT_TYPE 0x01 /* call_mgmt_descriptor */
75 #define USB_CDC_ACM_TYPE 0x02 /* acm_descriptor */
76 #define USB_CDC_UNION_TYPE 0x06 /* union_desc */
77 #define USB_CDC_ETHERNET_TYPE 0x0f /* ether_desc */
79 #define USB_CDC_SEND_ENCAPSULATED_COMMAND 0x00
80 #define USB_CDC_GET_ENCAPSULATED_RESPONSE 0x01
81 #define USB_CDC_REQ_SET_LINE_CODING 0x20
82 #define USB_CDC_REQ_GET_LINE_CODING 0x21
83 #define USB_CDC_REQ_SET_CONTROL_LINE_STATE 0x22
84 #define USB_CDC_REQ_SEND_BREAK 0x23
85 #define USB_CDC_SET_ETHERNET_MULTICAST_FILTERS 0x40
86 #define USB_CDC_SET_ETHERNET_PM_PATTERN_FILTER 0x41
87 #define USB_CDC_GET_ETHERNET_PM_PATTERN_FILTER 0x42
88 #define USB_CDC_SET_ETHERNET_PACKET_FILTER 0x43
89 #define USB_CDC_GET_ETHERNET_STATISTIC 0x44
91 #define LOG2_STATUS_INTERVAL_MSEC 5 /* 1 << 5 == 32 msec */
92 #define STATUS_BYTECOUNT 16 /* 8 byte header + data */
94 #define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */
96 static const USBDescStrings usb_net_stringtable
= {
97 [STRING_MANUFACTURER
] = "QEMU",
98 [STRING_PRODUCT
] = "RNDIS/QEMU USB Network Device",
99 [STRING_ETHADDR
] = "400102030405",
100 [STRING_DATA
] = "QEMU USB Net Data Interface",
101 [STRING_CONTROL
] = "QEMU USB Net Control Interface",
102 [STRING_RNDIS_CONTROL
] = "QEMU USB Net RNDIS Control Interface",
103 [STRING_CDC
] = "QEMU USB Net CDC",
104 [STRING_SUBSET
] = "QEMU USB Net Subset",
105 [STRING_RNDIS
] = "QEMU USB Net RNDIS",
106 [STRING_SERIALNUMBER
] = "1",
109 static const USBDescIface desc_iface_rndis
[] = {
111 /* RNDIS Control Interface */
112 .bInterfaceNumber
= 0,
114 .bInterfaceClass
= USB_CLASS_COMM
,
115 .bInterfaceSubClass
= USB_CDC_SUBCLASS_ACM
,
116 .bInterfaceProtocol
= USB_CDC_ACM_PROTO_VENDOR
,
117 .iInterface
= STRING_RNDIS_CONTROL
,
119 .descs
= (USBDescOther
[]) {
121 /* Header Descriptor */
122 .data
= (uint8_t[]) {
123 0x05, /* u8 bLength */
124 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
125 USB_CDC_HEADER_TYPE
, /* u8 bDescriptorSubType */
126 0x10, 0x01, /* le16 bcdCDC */
129 /* Call Management Descriptor */
130 .data
= (uint8_t[]) {
131 0x05, /* u8 bLength */
132 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
133 USB_CDC_CALL_MANAGEMENT_TYPE
, /* u8 bDescriptorSubType */
134 0x00, /* u8 bmCapabilities */
135 0x01, /* u8 bDataInterface */
139 .data
= (uint8_t[]) {
140 0x04, /* u8 bLength */
141 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
142 USB_CDC_ACM_TYPE
, /* u8 bDescriptorSubType */
143 0x00, /* u8 bmCapabilities */
146 /* Union Descriptor */
147 .data
= (uint8_t[]) {
148 0x05, /* u8 bLength */
149 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
150 USB_CDC_UNION_TYPE
, /* u8 bDescriptorSubType */
151 0x00, /* u8 bMasterInterface0 */
152 0x01, /* u8 bSlaveInterface0 */
156 .eps
= (USBDescEndpoint
[]) {
158 .bEndpointAddress
= USB_DIR_IN
| 0x01,
159 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
160 .wMaxPacketSize
= STATUS_BYTECOUNT
,
161 .bInterval
= 1 << LOG2_STATUS_INTERVAL_MSEC
,
165 /* RNDIS Data Interface */
166 .bInterfaceNumber
= 1,
168 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
169 .iInterface
= STRING_DATA
,
170 .eps
= (USBDescEndpoint
[]) {
172 .bEndpointAddress
= USB_DIR_IN
| 0x02,
173 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
174 .wMaxPacketSize
= 0x40,
176 .bEndpointAddress
= USB_DIR_OUT
| 0x02,
177 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
178 .wMaxPacketSize
= 0x40,
184 static const USBDescIface desc_iface_cdc
[] = {
186 /* CDC Control Interface */
187 .bInterfaceNumber
= 0,
189 .bInterfaceClass
= USB_CLASS_COMM
,
190 .bInterfaceSubClass
= USB_CDC_SUBCLASS_ETHERNET
,
191 .bInterfaceProtocol
= USB_CDC_PROTO_NONE
,
192 .iInterface
= STRING_CONTROL
,
194 .descs
= (USBDescOther
[]) {
196 /* Header Descriptor */
197 .data
= (uint8_t[]) {
198 0x05, /* u8 bLength */
199 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
200 USB_CDC_HEADER_TYPE
, /* u8 bDescriptorSubType */
201 0x10, 0x01, /* le16 bcdCDC */
204 /* Union Descriptor */
205 .data
= (uint8_t[]) {
206 0x05, /* u8 bLength */
207 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
208 USB_CDC_UNION_TYPE
, /* u8 bDescriptorSubType */
209 0x00, /* u8 bMasterInterface0 */
210 0x01, /* u8 bSlaveInterface0 */
213 /* Ethernet Descriptor */
214 .data
= (uint8_t[]) {
215 0x0d, /* u8 bLength */
216 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
217 USB_CDC_ETHERNET_TYPE
, /* u8 bDescriptorSubType */
218 STRING_ETHADDR
, /* u8 iMACAddress */
219 0x00, 0x00, 0x00, 0x00, /* le32 bmEthernetStatistics */
220 ETH_FRAME_LEN
& 0xff,
221 ETH_FRAME_LEN
>> 8, /* le16 wMaxSegmentSize */
222 0x00, 0x00, /* le16 wNumberMCFilters */
223 0x00, /* u8 bNumberPowerFilters */
227 .eps
= (USBDescEndpoint
[]) {
229 .bEndpointAddress
= USB_DIR_IN
| 0x01,
230 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
231 .wMaxPacketSize
= STATUS_BYTECOUNT
,
232 .bInterval
= 1 << LOG2_STATUS_INTERVAL_MSEC
,
236 /* CDC Data Interface (off) */
237 .bInterfaceNumber
= 1,
238 .bAlternateSetting
= 0,
240 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
242 /* CDC Data Interface */
243 .bInterfaceNumber
= 1,
244 .bAlternateSetting
= 1,
246 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
247 .iInterface
= STRING_DATA
,
248 .eps
= (USBDescEndpoint
[]) {
250 .bEndpointAddress
= USB_DIR_IN
| 0x02,
251 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
252 .wMaxPacketSize
= 0x40,
254 .bEndpointAddress
= USB_DIR_OUT
| 0x02,
255 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
256 .wMaxPacketSize
= 0x40,
262 static const USBDescDevice desc_device_net
= {
264 .bDeviceClass
= USB_CLASS_COMM
,
265 .bMaxPacketSize0
= 0x40,
266 .bNumConfigurations
= 2,
267 .confs
= (USBDescConfig
[]) {
270 .bConfigurationValue
= DEV_RNDIS_CONFIG_VALUE
,
271 .iConfiguration
= STRING_RNDIS
,
272 .bmAttributes
= USB_CFG_ATT_ONE
| USB_CFG_ATT_SELFPOWER
,
274 .nif
= ARRAY_SIZE(desc_iface_rndis
),
275 .ifs
= desc_iface_rndis
,
278 .bConfigurationValue
= DEV_CONFIG_VALUE
,
279 .iConfiguration
= STRING_CDC
,
280 .bmAttributes
= USB_CFG_ATT_ONE
| USB_CFG_ATT_SELFPOWER
,
282 .nif
= ARRAY_SIZE(desc_iface_cdc
),
283 .ifs
= desc_iface_cdc
,
288 static const USBDesc desc_net
= {
290 .idVendor
= RNDIS_VENDOR_NUM
,
291 .idProduct
= RNDIS_PRODUCT_NUM
,
293 .iManufacturer
= STRING_MANUFACTURER
,
294 .iProduct
= STRING_PRODUCT
,
295 .iSerialNumber
= STRING_SERIALNUMBER
,
297 .full
= &desc_device_net
,
298 .str
= usb_net_stringtable
,
302 * RNDIS Definitions - in theory not specific to USB.
304 #define RNDIS_MAXIMUM_FRAME_SIZE 1518
305 #define RNDIS_MAX_TOTAL_SIZE 1558
307 /* Remote NDIS Versions */
308 #define RNDIS_MAJOR_VERSION 1
309 #define RNDIS_MINOR_VERSION 0
312 #define RNDIS_STATUS_SUCCESS 0x00000000U /* Success */
313 #define RNDIS_STATUS_FAILURE 0xc0000001U /* Unspecified error */
314 #define RNDIS_STATUS_INVALID_DATA 0xc0010015U /* Invalid data */
315 #define RNDIS_STATUS_NOT_SUPPORTED 0xc00000bbU /* Unsupported request */
316 #define RNDIS_STATUS_MEDIA_CONNECT 0x4001000bU /* Device connected */
317 #define RNDIS_STATUS_MEDIA_DISCONNECT 0x4001000cU /* Device disconnected */
319 /* Message Set for Connectionless (802.3) Devices */
321 RNDIS_PACKET_MSG
= 1,
322 RNDIS_INITIALIZE_MSG
= 2, /* Initialize device */
327 RNDIS_INDICATE_STATUS_MSG
= 7,
328 RNDIS_KEEPALIVE_MSG
= 8,
331 /* Message completion */
333 RNDIS_INITIALIZE_CMPLT
= 0x80000002U
,
334 RNDIS_QUERY_CMPLT
= 0x80000004U
,
335 RNDIS_SET_CMPLT
= 0x80000005U
,
336 RNDIS_RESET_CMPLT
= 0x80000006U
,
337 RNDIS_KEEPALIVE_CMPLT
= 0x80000008U
,
342 RNDIS_DF_CONNECTIONLESS
= 1,
343 RNDIS_DF_CONNECTIONORIENTED
= 2,
346 #define RNDIS_MEDIUM_802_3 0x00000000U
348 /* from drivers/net/sk98lin/h/skgepnmi.h */
349 #define OID_PNP_CAPABILITIES 0xfd010100
350 #define OID_PNP_SET_POWER 0xfd010101
351 #define OID_PNP_QUERY_POWER 0xfd010102
352 #define OID_PNP_ADD_WAKE_UP_PATTERN 0xfd010103
353 #define OID_PNP_REMOVE_WAKE_UP_PATTERN 0xfd010104
354 #define OID_PNP_ENABLE_WAKE_UP 0xfd010106
356 typedef uint32_t le32
;
358 typedef struct rndis_init_msg_type
{
364 le32 MaxTransferSize
;
365 } rndis_init_msg_type
;
367 typedef struct rndis_init_cmplt_type
{
376 le32 MaxPacketsPerTransfer
;
377 le32 MaxTransferSize
;
378 le32 PacketAlignmentFactor
;
381 } rndis_init_cmplt_type
;
383 typedef struct rndis_halt_msg_type
{
387 } rndis_halt_msg_type
;
389 typedef struct rndis_query_msg_type
{
394 le32 InformationBufferLength
;
395 le32 InformationBufferOffset
;
397 } rndis_query_msg_type
;
399 typedef struct rndis_query_cmplt_type
{
404 le32 InformationBufferLength
;
405 le32 InformationBufferOffset
;
406 } rndis_query_cmplt_type
;
408 typedef struct rndis_set_msg_type
{
413 le32 InformationBufferLength
;
414 le32 InformationBufferOffset
;
416 } rndis_set_msg_type
;
418 typedef struct rndis_set_cmplt_type
{
423 } rndis_set_cmplt_type
;
425 typedef struct rndis_reset_msg_type
{
429 } rndis_reset_msg_type
;
431 typedef struct rndis_reset_cmplt_type
{
435 le32 AddressingReset
;
436 } rndis_reset_cmplt_type
;
438 typedef struct rndis_indicate_status_msg_type
{
442 le32 StatusBufferLength
;
443 le32 StatusBufferOffset
;
444 } rndis_indicate_status_msg_type
;
446 typedef struct rndis_keepalive_msg_type
{
450 } rndis_keepalive_msg_type
;
452 typedef struct rndis_keepalive_cmplt_type
{
457 } rndis_keepalive_cmplt_type
;
459 struct rndis_packet_msg_type
{
466 le32 NumOOBDataElements
;
467 le32 PerPacketInfoOffset
;
468 le32 PerPacketInfoLength
;
473 struct rndis_config_parameter
{
474 le32 ParameterNameOffset
;
475 le32 ParameterNameLength
;
477 le32 ParameterValueOffset
;
478 le32 ParameterValueLength
;
481 /* implementation specific */
486 RNDIS_DATA_INITIALIZED
,
491 /* Required Object IDs (OIDs) */
492 OID_GEN_SUPPORTED_LIST
= 0x00010101,
493 OID_GEN_HARDWARE_STATUS
= 0x00010102,
494 OID_GEN_MEDIA_SUPPORTED
= 0x00010103,
495 OID_GEN_MEDIA_IN_USE
= 0x00010104,
496 OID_GEN_MAXIMUM_LOOKAHEAD
= 0x00010105,
497 OID_GEN_MAXIMUM_FRAME_SIZE
= 0x00010106,
498 OID_GEN_LINK_SPEED
= 0x00010107,
499 OID_GEN_TRANSMIT_BUFFER_SPACE
= 0x00010108,
500 OID_GEN_RECEIVE_BUFFER_SPACE
= 0x00010109,
501 OID_GEN_TRANSMIT_BLOCK_SIZE
= 0x0001010a,
502 OID_GEN_RECEIVE_BLOCK_SIZE
= 0x0001010b,
503 OID_GEN_VENDOR_ID
= 0x0001010c,
504 OID_GEN_VENDOR_DESCRIPTION
= 0x0001010d,
505 OID_GEN_CURRENT_PACKET_FILTER
= 0x0001010e,
506 OID_GEN_CURRENT_LOOKAHEAD
= 0x0001010f,
507 OID_GEN_DRIVER_VERSION
= 0x00010110,
508 OID_GEN_MAXIMUM_TOTAL_SIZE
= 0x00010111,
509 OID_GEN_PROTOCOL_OPTIONS
= 0x00010112,
510 OID_GEN_MAC_OPTIONS
= 0x00010113,
511 OID_GEN_MEDIA_CONNECT_STATUS
= 0x00010114,
512 OID_GEN_MAXIMUM_SEND_PACKETS
= 0x00010115,
513 OID_GEN_VENDOR_DRIVER_VERSION
= 0x00010116,
514 OID_GEN_SUPPORTED_GUIDS
= 0x00010117,
515 OID_GEN_NETWORK_LAYER_ADDRESSES
= 0x00010118,
516 OID_GEN_TRANSPORT_HEADER_OFFSET
= 0x00010119,
517 OID_GEN_MACHINE_NAME
= 0x0001021a,
518 OID_GEN_RNDIS_CONFIG_PARAMETER
= 0x0001021b,
519 OID_GEN_VLAN_ID
= 0x0001021c,
522 OID_GEN_MEDIA_CAPABILITIES
= 0x00010201,
523 OID_GEN_PHYSICAL_MEDIUM
= 0x00010202,
525 /* Required statistics OIDs */
526 OID_GEN_XMIT_OK
= 0x00020101,
527 OID_GEN_RCV_OK
= 0x00020102,
528 OID_GEN_XMIT_ERROR
= 0x00020103,
529 OID_GEN_RCV_ERROR
= 0x00020104,
530 OID_GEN_RCV_NO_BUFFER
= 0x00020105,
532 /* Optional statistics OIDs */
533 OID_GEN_DIRECTED_BYTES_XMIT
= 0x00020201,
534 OID_GEN_DIRECTED_FRAMES_XMIT
= 0x00020202,
535 OID_GEN_MULTICAST_BYTES_XMIT
= 0x00020203,
536 OID_GEN_MULTICAST_FRAMES_XMIT
= 0x00020204,
537 OID_GEN_BROADCAST_BYTES_XMIT
= 0x00020205,
538 OID_GEN_BROADCAST_FRAMES_XMIT
= 0x00020206,
539 OID_GEN_DIRECTED_BYTES_RCV
= 0x00020207,
540 OID_GEN_DIRECTED_FRAMES_RCV
= 0x00020208,
541 OID_GEN_MULTICAST_BYTES_RCV
= 0x00020209,
542 OID_GEN_MULTICAST_FRAMES_RCV
= 0x0002020a,
543 OID_GEN_BROADCAST_BYTES_RCV
= 0x0002020b,
544 OID_GEN_BROADCAST_FRAMES_RCV
= 0x0002020c,
545 OID_GEN_RCV_CRC_ERROR
= 0x0002020d,
546 OID_GEN_TRANSMIT_QUEUE_LENGTH
= 0x0002020e,
547 OID_GEN_GET_TIME_CAPS
= 0x0002020f,
548 OID_GEN_GET_NETCARD_TIME
= 0x00020210,
549 OID_GEN_NETCARD_LOAD
= 0x00020211,
550 OID_GEN_DEVICE_PROFILE
= 0x00020212,
551 OID_GEN_INIT_TIME_MS
= 0x00020213,
552 OID_GEN_RESET_COUNTS
= 0x00020214,
553 OID_GEN_MEDIA_SENSE_COUNTS
= 0x00020215,
554 OID_GEN_FRIENDLY_NAME
= 0x00020216,
555 OID_GEN_MINIPORT_INFO
= 0x00020217,
556 OID_GEN_RESET_VERIFY_PARAMETERS
= 0x00020218,
558 /* IEEE 802.3 (Ethernet) OIDs */
559 OID_802_3_PERMANENT_ADDRESS
= 0x01010101,
560 OID_802_3_CURRENT_ADDRESS
= 0x01010102,
561 OID_802_3_MULTICAST_LIST
= 0x01010103,
562 OID_802_3_MAXIMUM_LIST_SIZE
= 0x01010104,
563 OID_802_3_MAC_OPTIONS
= 0x01010105,
564 OID_802_3_RCV_ERROR_ALIGNMENT
= 0x01020101,
565 OID_802_3_XMIT_ONE_COLLISION
= 0x01020102,
566 OID_802_3_XMIT_MORE_COLLISIONS
= 0x01020103,
567 OID_802_3_XMIT_DEFERRED
= 0x01020201,
568 OID_802_3_XMIT_MAX_COLLISIONS
= 0x01020202,
569 OID_802_3_RCV_OVERRUN
= 0x01020203,
570 OID_802_3_XMIT_UNDERRUN
= 0x01020204,
571 OID_802_3_XMIT_HEARTBEAT_FAILURE
= 0x01020205,
572 OID_802_3_XMIT_TIMES_CRS_LOST
= 0x01020206,
573 OID_802_3_XMIT_LATE_COLLISIONS
= 0x01020207,
576 static const uint32_t oid_supported_list
[] =
578 /* the general stuff */
579 OID_GEN_SUPPORTED_LIST
,
580 OID_GEN_HARDWARE_STATUS
,
581 OID_GEN_MEDIA_SUPPORTED
,
582 OID_GEN_MEDIA_IN_USE
,
583 OID_GEN_MAXIMUM_FRAME_SIZE
,
585 OID_GEN_TRANSMIT_BLOCK_SIZE
,
586 OID_GEN_RECEIVE_BLOCK_SIZE
,
588 OID_GEN_VENDOR_DESCRIPTION
,
589 OID_GEN_VENDOR_DRIVER_VERSION
,
590 OID_GEN_CURRENT_PACKET_FILTER
,
591 OID_GEN_MAXIMUM_TOTAL_SIZE
,
592 OID_GEN_MEDIA_CONNECT_STATUS
,
593 OID_GEN_PHYSICAL_MEDIUM
,
595 /* the statistical stuff */
600 OID_GEN_RCV_NO_BUFFER
,
603 /* the general stuff */
604 OID_802_3_PERMANENT_ADDRESS
,
605 OID_802_3_CURRENT_ADDRESS
,
606 OID_802_3_MULTICAST_LIST
,
607 OID_802_3_MAC_OPTIONS
,
608 OID_802_3_MAXIMUM_LIST_SIZE
,
610 /* the statistical stuff */
611 OID_802_3_RCV_ERROR_ALIGNMENT
,
612 OID_802_3_XMIT_ONE_COLLISION
,
613 OID_802_3_XMIT_MORE_COLLISIONS
,
616 #define NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA (1 << 0)
617 #define NDIS_MAC_OPTION_RECEIVE_SERIALIZED (1 << 1)
618 #define NDIS_MAC_OPTION_TRANSFERS_NOT_PEND (1 << 2)
619 #define NDIS_MAC_OPTION_NO_LOOPBACK (1 << 3)
620 #define NDIS_MAC_OPTION_FULL_DUPLEX (1 << 4)
621 #define NDIS_MAC_OPTION_EOTX_INDICATION (1 << 5)
622 #define NDIS_MAC_OPTION_8021P_PRIORITY (1 << 6)
624 struct rndis_response
{
625 QTAILQ_ENTRY(rndis_response
) entries
;
630 typedef struct USBNetState
{
633 enum rndis_state rndis_state
;
636 uint32_t media_state
;
640 unsigned int out_ptr
;
641 uint8_t out_buf
[2048];
643 unsigned int in_ptr
, in_len
;
644 uint8_t in_buf
[2048];
648 char usbstring_mac
[13];
651 QTAILQ_HEAD(rndis_resp_head
, rndis_response
) rndis_resp
;
654 #define TYPE_USB_NET "usb-net"
655 #define USB_NET(obj) OBJECT_CHECK(USBNetState, (obj), TYPE_USB_NET)
657 static int is_rndis(USBNetState
*s
)
659 return s
->dev
.config
?
660 s
->dev
.config
->bConfigurationValue
== DEV_RNDIS_CONFIG_VALUE
: 0;
663 static int ndis_query(USBNetState
*s
, uint32_t oid
,
664 uint8_t *inbuf
, unsigned int inlen
, uint8_t *outbuf
,
670 /* general oids (table 4-1) */
672 case OID_GEN_SUPPORTED_LIST
:
673 for (i
= 0; i
< ARRAY_SIZE(oid_supported_list
); i
++) {
674 stl_le_p(outbuf
+ (i
* sizeof(le32
)), oid_supported_list
[i
]);
676 return sizeof(oid_supported_list
);
679 case OID_GEN_HARDWARE_STATUS
:
684 case OID_GEN_MEDIA_SUPPORTED
:
685 stl_le_p(outbuf
, s
->medium
);
689 case OID_GEN_MEDIA_IN_USE
:
690 stl_le_p(outbuf
, s
->medium
);
694 case OID_GEN_MAXIMUM_FRAME_SIZE
:
695 stl_le_p(outbuf
, ETH_FRAME_LEN
);
699 case OID_GEN_LINK_SPEED
:
700 stl_le_p(outbuf
, s
->speed
);
704 case OID_GEN_TRANSMIT_BLOCK_SIZE
:
705 stl_le_p(outbuf
, ETH_FRAME_LEN
);
709 case OID_GEN_RECEIVE_BLOCK_SIZE
:
710 stl_le_p(outbuf
, ETH_FRAME_LEN
);
714 case OID_GEN_VENDOR_ID
:
715 stl_le_p(outbuf
, s
->vendorid
);
719 case OID_GEN_VENDOR_DESCRIPTION
:
720 pstrcpy((char *)outbuf
, outlen
, "QEMU USB RNDIS Net");
721 return strlen((char *)outbuf
) + 1;
723 case OID_GEN_VENDOR_DRIVER_VERSION
:
728 case OID_GEN_CURRENT_PACKET_FILTER
:
729 stl_le_p(outbuf
, s
->filter
);
733 case OID_GEN_MAXIMUM_TOTAL_SIZE
:
734 stl_le_p(outbuf
, RNDIS_MAX_TOTAL_SIZE
);
738 case OID_GEN_MEDIA_CONNECT_STATUS
:
739 stl_le_p(outbuf
, s
->media_state
);
742 case OID_GEN_PHYSICAL_MEDIUM
:
746 case OID_GEN_MAC_OPTIONS
:
747 stl_le_p(outbuf
, NDIS_MAC_OPTION_RECEIVE_SERIALIZED
|
748 NDIS_MAC_OPTION_FULL_DUPLEX
);
751 /* statistics OIDs (table 4-2) */
753 case OID_GEN_XMIT_OK
:
763 case OID_GEN_XMIT_ERROR
:
768 case OID_GEN_RCV_ERROR
:
773 case OID_GEN_RCV_NO_BUFFER
:
777 /* ieee802.3 OIDs (table 4-3) */
779 case OID_802_3_PERMANENT_ADDRESS
:
780 memcpy(outbuf
, s
->conf
.macaddr
.a
, 6);
784 case OID_802_3_CURRENT_ADDRESS
:
785 memcpy(outbuf
, s
->conf
.macaddr
.a
, 6);
789 case OID_802_3_MULTICAST_LIST
:
790 stl_le_p(outbuf
, 0xe0000000);
794 case OID_802_3_MAXIMUM_LIST_SIZE
:
798 case OID_802_3_MAC_OPTIONS
:
801 /* ieee802.3 statistics OIDs (table 4-4) */
803 case OID_802_3_RCV_ERROR_ALIGNMENT
:
808 case OID_802_3_XMIT_ONE_COLLISION
:
813 case OID_802_3_XMIT_MORE_COLLISIONS
:
818 fprintf(stderr
, "usbnet: unknown OID 0x%08x\n", oid
);
824 static int ndis_set(USBNetState
*s
, uint32_t oid
,
825 uint8_t *inbuf
, unsigned int inlen
)
828 case OID_GEN_CURRENT_PACKET_FILTER
:
829 s
->filter
= ldl_le_p(inbuf
);
831 s
->rndis_state
= RNDIS_DATA_INITIALIZED
;
833 s
->rndis_state
= RNDIS_INITIALIZED
;
837 case OID_802_3_MULTICAST_LIST
:
843 static int rndis_get_response(USBNetState
*s
, uint8_t *buf
)
846 struct rndis_response
*r
= s
->rndis_resp
.tqh_first
;
851 QTAILQ_REMOVE(&s
->rndis_resp
, r
, entries
);
853 memcpy(buf
, r
->buf
, r
->length
);
859 static void *rndis_queue_response(USBNetState
*s
, unsigned int length
)
861 struct rndis_response
*r
=
862 g_malloc0(sizeof(struct rndis_response
) + length
);
864 if (QTAILQ_EMPTY(&s
->rndis_resp
)) {
865 usb_wakeup(s
->intr
, 0);
868 QTAILQ_INSERT_TAIL(&s
->rndis_resp
, r
, entries
);
874 static void rndis_clear_responsequeue(USBNetState
*s
)
876 struct rndis_response
*r
;
878 while ((r
= s
->rndis_resp
.tqh_first
)) {
879 QTAILQ_REMOVE(&s
->rndis_resp
, r
, entries
);
884 static int rndis_init_response(USBNetState
*s
, rndis_init_msg_type
*buf
)
886 rndis_init_cmplt_type
*resp
=
887 rndis_queue_response(s
, sizeof(rndis_init_cmplt_type
));
890 return USB_RET_STALL
;
892 resp
->MessageType
= cpu_to_le32(RNDIS_INITIALIZE_CMPLT
);
893 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_init_cmplt_type
));
894 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
895 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
896 resp
->MajorVersion
= cpu_to_le32(RNDIS_MAJOR_VERSION
);
897 resp
->MinorVersion
= cpu_to_le32(RNDIS_MINOR_VERSION
);
898 resp
->DeviceFlags
= cpu_to_le32(RNDIS_DF_CONNECTIONLESS
);
899 resp
->Medium
= cpu_to_le32(RNDIS_MEDIUM_802_3
);
900 resp
->MaxPacketsPerTransfer
= cpu_to_le32(1);
901 resp
->MaxTransferSize
= cpu_to_le32(ETH_FRAME_LEN
+
902 sizeof(struct rndis_packet_msg_type
) + 22);
903 resp
->PacketAlignmentFactor
= cpu_to_le32(0);
904 resp
->AFListOffset
= cpu_to_le32(0);
905 resp
->AFListSize
= cpu_to_le32(0);
909 static int rndis_query_response(USBNetState
*s
,
910 rndis_query_msg_type
*buf
, unsigned int length
)
912 rndis_query_cmplt_type
*resp
;
913 /* oid_supported_list is the largest data reply */
914 uint8_t infobuf
[sizeof(oid_supported_list
)];
915 uint32_t bufoffs
, buflen
;
917 unsigned int resplen
;
919 bufoffs
= le32_to_cpu(buf
->InformationBufferOffset
) + 8;
920 buflen
= le32_to_cpu(buf
->InformationBufferLength
);
921 if (buflen
> length
|| bufoffs
>= length
|| bufoffs
+ buflen
> length
) {
922 return USB_RET_STALL
;
925 infobuflen
= ndis_query(s
, le32_to_cpu(buf
->OID
),
926 bufoffs
+ (uint8_t *) buf
, buflen
, infobuf
,
928 resplen
= sizeof(rndis_query_cmplt_type
) +
929 ((infobuflen
< 0) ? 0 : infobuflen
);
930 resp
= rndis_queue_response(s
, resplen
);
932 return USB_RET_STALL
;
934 resp
->MessageType
= cpu_to_le32(RNDIS_QUERY_CMPLT
);
935 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
936 resp
->MessageLength
= cpu_to_le32(resplen
);
938 if (infobuflen
< 0) {
939 /* OID not supported */
940 resp
->Status
= cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED
);
941 resp
->InformationBufferLength
= cpu_to_le32(0);
942 resp
->InformationBufferOffset
= cpu_to_le32(0);
946 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
947 resp
->InformationBufferOffset
=
948 cpu_to_le32(infobuflen
? sizeof(rndis_query_cmplt_type
) - 8 : 0);
949 resp
->InformationBufferLength
= cpu_to_le32(infobuflen
);
950 memcpy(resp
+ 1, infobuf
, infobuflen
);
955 static int rndis_set_response(USBNetState
*s
,
956 rndis_set_msg_type
*buf
, unsigned int length
)
958 rndis_set_cmplt_type
*resp
=
959 rndis_queue_response(s
, sizeof(rndis_set_cmplt_type
));
960 uint32_t bufoffs
, buflen
;
964 return USB_RET_STALL
;
966 bufoffs
= le32_to_cpu(buf
->InformationBufferOffset
) + 8;
967 buflen
= le32_to_cpu(buf
->InformationBufferLength
);
968 if (buflen
> length
|| bufoffs
>= length
|| bufoffs
+ buflen
> length
) {
969 return USB_RET_STALL
;
972 ret
= ndis_set(s
, le32_to_cpu(buf
->OID
),
973 bufoffs
+ (uint8_t *) buf
, buflen
);
974 resp
->MessageType
= cpu_to_le32(RNDIS_SET_CMPLT
);
975 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
976 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_set_cmplt_type
));
978 /* OID not supported */
979 resp
->Status
= cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED
);
982 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
987 static int rndis_reset_response(USBNetState
*s
, rndis_reset_msg_type
*buf
)
989 rndis_reset_cmplt_type
*resp
=
990 rndis_queue_response(s
, sizeof(rndis_reset_cmplt_type
));
993 return USB_RET_STALL
;
995 resp
->MessageType
= cpu_to_le32(RNDIS_RESET_CMPLT
);
996 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_reset_cmplt_type
));
997 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
998 resp
->AddressingReset
= cpu_to_le32(1); /* reset information */
1003 static int rndis_keepalive_response(USBNetState
*s
,
1004 rndis_keepalive_msg_type
*buf
)
1006 rndis_keepalive_cmplt_type
*resp
=
1007 rndis_queue_response(s
, sizeof(rndis_keepalive_cmplt_type
));
1010 return USB_RET_STALL
;
1012 resp
->MessageType
= cpu_to_le32(RNDIS_KEEPALIVE_CMPLT
);
1013 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_keepalive_cmplt_type
));
1014 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
1015 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
1020 /* Prepare to receive the next packet */
1021 static void usb_net_reset_in_buf(USBNetState
*s
)
1023 s
->in_ptr
= s
->in_len
= 0;
1024 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
1027 static int rndis_parse(USBNetState
*s
, uint8_t *data
, int length
)
1029 uint32_t msg_type
= ldl_le_p(data
);
1032 case RNDIS_INITIALIZE_MSG
:
1033 s
->rndis_state
= RNDIS_INITIALIZED
;
1034 return rndis_init_response(s
, (rndis_init_msg_type
*) data
);
1036 case RNDIS_HALT_MSG
:
1037 s
->rndis_state
= RNDIS_UNINITIALIZED
;
1040 case RNDIS_QUERY_MSG
:
1041 return rndis_query_response(s
, (rndis_query_msg_type
*) data
, length
);
1044 return rndis_set_response(s
, (rndis_set_msg_type
*) data
, length
);
1046 case RNDIS_RESET_MSG
:
1047 rndis_clear_responsequeue(s
);
1049 usb_net_reset_in_buf(s
);
1050 return rndis_reset_response(s
, (rndis_reset_msg_type
*) data
);
1052 case RNDIS_KEEPALIVE_MSG
:
1053 /* For USB: host does this every 5 seconds */
1054 return rndis_keepalive_response(s
, (rndis_keepalive_msg_type
*) data
);
1057 return USB_RET_STALL
;
1060 static void usb_net_handle_reset(USBDevice
*dev
)
1064 static void usb_net_handle_control(USBDevice
*dev
, USBPacket
*p
,
1065 int request
, int value
, int index
, int length
, uint8_t *data
)
1067 USBNetState
*s
= (USBNetState
*) dev
;
1070 ret
= usb_desc_handle_control(dev
, p
, request
, value
, index
, length
, data
);
1076 case ClassInterfaceOutRequest
| USB_CDC_SEND_ENCAPSULATED_COMMAND
:
1077 if (!is_rndis(s
) || value
|| index
!= 0) {
1080 #ifdef TRAFFIC_DEBUG
1083 fprintf(stderr
, "SEND_ENCAPSULATED_COMMAND:");
1084 for (i
= 0; i
< length
; i
++) {
1086 fprintf(stderr
, "\n%04x:", i
);
1087 fprintf(stderr
, " %02x", data
[i
]);
1089 fprintf(stderr
, "\n\n");
1092 ret
= rndis_parse(s
, data
, length
);
1098 case ClassInterfaceRequest
| USB_CDC_GET_ENCAPSULATED_RESPONSE
:
1099 if (!is_rndis(s
) || value
|| index
!= 0) {
1102 p
->actual_length
= rndis_get_response(s
, data
);
1103 if (p
->actual_length
== 0) {
1105 p
->actual_length
= 1;
1107 #ifdef TRAFFIC_DEBUG
1110 fprintf(stderr
, "GET_ENCAPSULATED_RESPONSE:");
1111 for (i
= 0; i
< p
->actual_length
; i
++) {
1113 fprintf(stderr
, "\n%04x:", i
);
1114 fprintf(stderr
, " %02x", data
[i
]);
1116 fprintf(stderr
, "\n\n");
1123 fprintf(stderr
, "usbnet: failed control transaction: "
1124 "request 0x%x value 0x%x index 0x%x length 0x%x\n",
1125 request
, value
, index
, length
);
1126 p
->status
= USB_RET_STALL
;
1131 static void usb_net_handle_statusin(USBNetState
*s
, USBPacket
*p
)
1135 if (p
->iov
.size
< 8) {
1136 p
->status
= USB_RET_STALL
;
1140 buf
[0] = cpu_to_le32(1);
1141 buf
[1] = cpu_to_le32(0);
1142 usb_packet_copy(p
, buf
, 8);
1143 if (!s
->rndis_resp
.tqh_first
) {
1144 p
->status
= USB_RET_NAK
;
1147 #ifdef TRAFFIC_DEBUG
1148 fprintf(stderr
, "usbnet: interrupt poll len %zu return %d",
1149 p
->iov
.size
, p
->status
);
1150 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", p
->status
);
1154 static void usb_net_handle_datain(USBNetState
*s
, USBPacket
*p
)
1158 if (s
->in_ptr
> s
->in_len
) {
1159 usb_net_reset_in_buf(s
);
1160 p
->status
= USB_RET_NAK
;
1164 p
->status
= USB_RET_NAK
;
1167 len
= s
->in_len
- s
->in_ptr
;
1168 if (len
> p
->iov
.size
) {
1171 usb_packet_copy(p
, &s
->in_buf
[s
->in_ptr
], len
);
1173 if (s
->in_ptr
>= s
->in_len
&&
1174 (is_rndis(s
) || (s
->in_len
& (64 - 1)) || !len
)) {
1175 /* no short packet necessary */
1176 usb_net_reset_in_buf(s
);
1179 #ifdef TRAFFIC_DEBUG
1180 fprintf(stderr
, "usbnet: data in len %zu return %d", p
->iov
.size
, len
);
1181 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", len
);
1185 static void usb_net_handle_dataout(USBNetState
*s
, USBPacket
*p
)
1187 int sz
= sizeof(s
->out_buf
) - s
->out_ptr
;
1188 struct rndis_packet_msg_type
*msg
=
1189 (struct rndis_packet_msg_type
*) s
->out_buf
;
1192 #ifdef TRAFFIC_DEBUG
1193 fprintf(stderr
, "usbnet: data out len %zu\n", p
->iov
.size
);
1194 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", p
->iov
.size
);
1197 if (sz
> p
->iov
.size
) {
1200 usb_packet_copy(p
, &s
->out_buf
[s
->out_ptr
], sz
);
1204 if (p
->iov
.size
< 64) {
1205 qemu_send_packet(qemu_get_queue(s
->nic
), s
->out_buf
, s
->out_ptr
);
1210 len
= le32_to_cpu(msg
->MessageLength
);
1211 if (s
->out_ptr
< 8 || s
->out_ptr
< len
) {
1214 if (le32_to_cpu(msg
->MessageType
) == RNDIS_PACKET_MSG
) {
1215 uint32_t offs
= 8 + le32_to_cpu(msg
->DataOffset
);
1216 uint32_t size
= le32_to_cpu(msg
->DataLength
);
1217 if (offs
< len
&& size
< len
&& offs
+ size
<= len
) {
1218 qemu_send_packet(qemu_get_queue(s
->nic
), s
->out_buf
+ offs
, size
);
1222 memmove(s
->out_buf
, &s
->out_buf
[len
], s
->out_ptr
);
1225 static void usb_net_handle_data(USBDevice
*dev
, USBPacket
*p
)
1227 USBNetState
*s
= (USBNetState
*) dev
;
1231 switch (p
->ep
->nr
) {
1233 usb_net_handle_statusin(s
, p
);
1237 usb_net_handle_datain(s
, p
);
1246 switch (p
->ep
->nr
) {
1248 usb_net_handle_dataout(s
, p
);
1258 p
->status
= USB_RET_STALL
;
1262 if (p
->status
== USB_RET_STALL
) {
1263 fprintf(stderr
, "usbnet: failed data transaction: "
1264 "pid 0x%x ep 0x%x len 0x%zx\n",
1265 p
->pid
, p
->ep
->nr
, p
->iov
.size
);
1269 static ssize_t
usbnet_receive(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
1271 USBNetState
*s
= qemu_get_nic_opaque(nc
);
1272 uint8_t *in_buf
= s
->in_buf
;
1273 size_t total_size
= size
;
1275 if (!s
->dev
.config
) {
1280 if (s
->rndis_state
!= RNDIS_DATA_INITIALIZED
) {
1283 total_size
+= sizeof(struct rndis_packet_msg_type
);
1285 if (total_size
> sizeof(s
->in_buf
)) {
1289 /* Only accept packet if input buffer is empty */
1290 if (s
->in_len
> 0) {
1295 struct rndis_packet_msg_type
*msg
;
1297 msg
= (struct rndis_packet_msg_type
*)in_buf
;
1298 memset(msg
, 0, sizeof(struct rndis_packet_msg_type
));
1299 msg
->MessageType
= cpu_to_le32(RNDIS_PACKET_MSG
);
1300 msg
->MessageLength
= cpu_to_le32(size
+ sizeof(*msg
));
1301 msg
->DataOffset
= cpu_to_le32(sizeof(*msg
) - 8);
1302 msg
->DataLength
= cpu_to_le32(size
);
1303 /* msg->OOBDataOffset;
1304 * msg->OOBDataLength;
1305 * msg->NumOOBDataElements;
1306 * msg->PerPacketInfoOffset;
1307 * msg->PerPacketInfoLength;
1311 in_buf
+= sizeof(*msg
);
1314 memcpy(in_buf
, buf
, size
);
1315 s
->in_len
= total_size
;
1320 static void usbnet_cleanup(NetClientState
*nc
)
1322 USBNetState
*s
= qemu_get_nic_opaque(nc
);
1327 static void usb_net_handle_destroy(USBDevice
*dev
)
1329 USBNetState
*s
= (USBNetState
*) dev
;
1331 /* TODO: remove the nd_table[] entry */
1332 rndis_clear_responsequeue(s
);
1333 qemu_del_nic(s
->nic
);
1336 static NetClientInfo net_usbnet_info
= {
1337 .type
= NET_CLIENT_OPTIONS_KIND_NIC
,
1338 .size
= sizeof(NICState
),
1339 .receive
= usbnet_receive
,
1340 .cleanup
= usbnet_cleanup
,
1343 static void usb_net_realize(USBDevice
*dev
, Error
**errrp
)
1345 USBNetState
*s
= USB_NET(dev
);
1347 usb_desc_create_serial(dev
);
1350 s
->rndis_state
= RNDIS_UNINITIALIZED
;
1351 QTAILQ_INIT(&s
->rndis_resp
);
1353 s
->medium
= 0; /* NDIS_MEDIUM_802_3 */
1354 s
->speed
= 1000000; /* 100MBps, in 100Bps units */
1355 s
->media_state
= 0; /* NDIS_MEDIA_STATE_CONNECTED */;
1357 s
->vendorid
= 0x1234;
1358 s
->intr
= usb_ep_get(dev
, USB_TOKEN_IN
, 1);
1360 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
1361 s
->nic
= qemu_new_nic(&net_usbnet_info
, &s
->conf
,
1362 object_get_typename(OBJECT(s
)), s
->dev
.qdev
.id
, s
);
1363 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
1364 snprintf(s
->usbstring_mac
, sizeof(s
->usbstring_mac
),
1365 "%02x%02x%02x%02x%02x%02x",
1367 s
->conf
.macaddr
.a
[1],
1368 s
->conf
.macaddr
.a
[2],
1369 s
->conf
.macaddr
.a
[3],
1370 s
->conf
.macaddr
.a
[4],
1371 s
->conf
.macaddr
.a
[5]);
1372 usb_desc_set_string(dev
, STRING_ETHADDR
, s
->usbstring_mac
);
1375 static void usb_net_instance_init(Object
*obj
)
1377 USBDevice
*dev
= USB_DEVICE(obj
);
1378 USBNetState
*s
= USB_NET(dev
);
1380 device_add_bootindex_property(obj
, &s
->conf
.bootindex
,
1381 "bootindex", "/ethernet-phy@0",
1385 static USBDevice
*usb_net_init(USBBus
*bus
, const char *cmdline
)
1387 Error
*local_err
= NULL
;
1392 opts
= qemu_opts_parse_noisily(qemu_find_opts("net"), cmdline
, false);
1396 qemu_opt_set(opts
, "type", "nic", &error_abort
);
1397 qemu_opt_set(opts
, "model", "usb", &error_abort
);
1399 idx
= net_client_init(opts
, 0, &local_err
);
1401 error_report_err(local_err
);
1405 dev
= usb_create(bus
, "usb-net");
1406 qdev_set_nic_properties(&dev
->qdev
, &nd_table
[idx
]);
1410 static const VMStateDescription vmstate_usb_net
= {
1415 static Property net_properties
[] = {
1416 DEFINE_NIC_PROPERTIES(USBNetState
, conf
),
1417 DEFINE_PROP_END_OF_LIST(),
1420 static void usb_net_class_initfn(ObjectClass
*klass
, void *data
)
1422 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1423 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
1425 uc
->realize
= usb_net_realize
;
1426 uc
->product_desc
= "QEMU USB Network Interface";
1427 uc
->usb_desc
= &desc_net
;
1428 uc
->handle_reset
= usb_net_handle_reset
;
1429 uc
->handle_control
= usb_net_handle_control
;
1430 uc
->handle_data
= usb_net_handle_data
;
1431 uc
->handle_destroy
= usb_net_handle_destroy
;
1432 set_bit(DEVICE_CATEGORY_NETWORK
, dc
->categories
);
1433 dc
->fw_name
= "network";
1434 dc
->vmsd
= &vmstate_usb_net
;
1435 dc
->props
= net_properties
;
1438 static const TypeInfo net_info
= {
1439 .name
= TYPE_USB_NET
,
1440 .parent
= TYPE_USB_DEVICE
,
1441 .instance_size
= sizeof(USBNetState
),
1442 .class_init
= usb_net_class_initfn
,
1443 .instance_init
= usb_net_instance_init
,
1446 static void usb_net_register_types(void)
1448 type_register_static(&net_info
);
1449 usb_legacy_register(TYPE_USB_NET
, "net", usb_net_init
);
1452 type_init(usb_net_register_types
)