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"
40 #include "qom/object.h"
42 /*#define TRAFFIC_DEBUG*/
43 /* Thanks to NetChip Technologies for donating this product ID.
44 * It's for devices with only CDC Ethernet configurations.
46 #define CDC_VENDOR_NUM 0x0525 /* NetChip */
47 #define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
48 /* For hardware that can talk RNDIS and either of the above protocols,
49 * use this ID ... the windows INF files will know it.
51 #define RNDIS_VENDOR_NUM 0x0525 /* NetChip */
52 #define RNDIS_PRODUCT_NUM 0xa4a2 /* Ethernet/RNDIS Gadget */
55 STRING_MANUFACTURER
= 1,
67 #define DEV_CONFIG_VALUE 1 /* CDC or a subset */
68 #define DEV_RNDIS_CONFIG_VALUE 2 /* RNDIS; optional */
70 #define USB_CDC_SUBCLASS_ACM 0x02
71 #define USB_CDC_SUBCLASS_ETHERNET 0x06
73 #define USB_CDC_PROTO_NONE 0
74 #define USB_CDC_ACM_PROTO_VENDOR 0xff
76 #define USB_CDC_HEADER_TYPE 0x00 /* header_desc */
77 #define USB_CDC_CALL_MANAGEMENT_TYPE 0x01 /* call_mgmt_descriptor */
78 #define USB_CDC_ACM_TYPE 0x02 /* acm_descriptor */
79 #define USB_CDC_UNION_TYPE 0x06 /* union_desc */
80 #define USB_CDC_ETHERNET_TYPE 0x0f /* ether_desc */
82 #define USB_CDC_SEND_ENCAPSULATED_COMMAND 0x00
83 #define USB_CDC_GET_ENCAPSULATED_RESPONSE 0x01
84 #define USB_CDC_REQ_SET_LINE_CODING 0x20
85 #define USB_CDC_REQ_GET_LINE_CODING 0x21
86 #define USB_CDC_REQ_SET_CONTROL_LINE_STATE 0x22
87 #define USB_CDC_REQ_SEND_BREAK 0x23
88 #define USB_CDC_SET_ETHERNET_MULTICAST_FILTERS 0x40
89 #define USB_CDC_SET_ETHERNET_PM_PATTERN_FILTER 0x41
90 #define USB_CDC_GET_ETHERNET_PM_PATTERN_FILTER 0x42
91 #define USB_CDC_SET_ETHERNET_PACKET_FILTER 0x43
92 #define USB_CDC_GET_ETHERNET_STATISTIC 0x44
94 #define USB_CDC_NETWORK_CONNECTION 0x00
96 #define LOG2_STATUS_INTERVAL_MSEC 5 /* 1 << 5 == 32 msec */
97 #define STATUS_BYTECOUNT 16 /* 8 byte header + data */
99 #define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */
101 static const USBDescStrings usb_net_stringtable
= {
102 [STRING_MANUFACTURER
] = "QEMU",
103 [STRING_PRODUCT
] = "RNDIS/QEMU USB Network Device",
104 [STRING_ETHADDR
] = "400102030405",
105 [STRING_DATA
] = "QEMU USB Net Data Interface",
106 [STRING_CONTROL
] = "QEMU USB Net Control Interface",
107 [STRING_RNDIS_CONTROL
] = "QEMU USB Net RNDIS Control Interface",
108 [STRING_CDC
] = "QEMU USB Net CDC",
109 [STRING_SUBSET
] = "QEMU USB Net Subset",
110 [STRING_RNDIS
] = "QEMU USB Net RNDIS",
111 [STRING_SERIALNUMBER
] = "1",
114 static const USBDescIface desc_iface_rndis
[] = {
116 /* RNDIS Control Interface */
117 .bInterfaceNumber
= 0,
119 .bInterfaceClass
= USB_CLASS_COMM
,
120 .bInterfaceSubClass
= USB_CDC_SUBCLASS_ACM
,
121 .bInterfaceProtocol
= USB_CDC_ACM_PROTO_VENDOR
,
122 .iInterface
= STRING_RNDIS_CONTROL
,
124 .descs
= (USBDescOther
[]) {
126 /* Header Descriptor */
127 .data
= (uint8_t[]) {
128 0x05, /* u8 bLength */
129 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
130 USB_CDC_HEADER_TYPE
, /* u8 bDescriptorSubType */
131 0x10, 0x01, /* le16 bcdCDC */
134 /* Call Management Descriptor */
135 .data
= (uint8_t[]) {
136 0x05, /* u8 bLength */
137 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
138 USB_CDC_CALL_MANAGEMENT_TYPE
, /* u8 bDescriptorSubType */
139 0x00, /* u8 bmCapabilities */
140 0x01, /* u8 bDataInterface */
144 .data
= (uint8_t[]) {
145 0x04, /* u8 bLength */
146 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
147 USB_CDC_ACM_TYPE
, /* u8 bDescriptorSubType */
148 0x00, /* u8 bmCapabilities */
151 /* Union Descriptor */
152 .data
= (uint8_t[]) {
153 0x05, /* u8 bLength */
154 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
155 USB_CDC_UNION_TYPE
, /* u8 bDescriptorSubType */
156 0x00, /* u8 bMasterInterface0 */
157 0x01, /* u8 bSlaveInterface0 */
161 .eps
= (USBDescEndpoint
[]) {
163 .bEndpointAddress
= USB_DIR_IN
| 0x01,
164 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
165 .wMaxPacketSize
= STATUS_BYTECOUNT
,
166 .bInterval
= 1 << LOG2_STATUS_INTERVAL_MSEC
,
170 /* RNDIS Data Interface */
171 .bInterfaceNumber
= 1,
173 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
174 .iInterface
= STRING_DATA
,
175 .eps
= (USBDescEndpoint
[]) {
177 .bEndpointAddress
= USB_DIR_IN
| 0x02,
178 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
179 .wMaxPacketSize
= 0x40,
181 .bEndpointAddress
= USB_DIR_OUT
| 0x02,
182 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
183 .wMaxPacketSize
= 0x40,
189 static const USBDescIface desc_iface_cdc
[] = {
191 /* CDC Control Interface */
192 .bInterfaceNumber
= 0,
194 .bInterfaceClass
= USB_CLASS_COMM
,
195 .bInterfaceSubClass
= USB_CDC_SUBCLASS_ETHERNET
,
196 .bInterfaceProtocol
= USB_CDC_PROTO_NONE
,
197 .iInterface
= STRING_CONTROL
,
199 .descs
= (USBDescOther
[]) {
201 /* Header Descriptor */
202 .data
= (uint8_t[]) {
203 0x05, /* u8 bLength */
204 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
205 USB_CDC_HEADER_TYPE
, /* u8 bDescriptorSubType */
206 0x10, 0x01, /* le16 bcdCDC */
209 /* Union Descriptor */
210 .data
= (uint8_t[]) {
211 0x05, /* u8 bLength */
212 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
213 USB_CDC_UNION_TYPE
, /* u8 bDescriptorSubType */
214 0x00, /* u8 bMasterInterface0 */
215 0x01, /* u8 bSlaveInterface0 */
218 /* Ethernet Descriptor */
219 .data
= (uint8_t[]) {
220 0x0d, /* u8 bLength */
221 USB_DT_CS_INTERFACE
, /* u8 bDescriptorType */
222 USB_CDC_ETHERNET_TYPE
, /* u8 bDescriptorSubType */
223 STRING_ETHADDR
, /* u8 iMACAddress */
224 0x00, 0x00, 0x00, 0x00, /* le32 bmEthernetStatistics */
225 ETH_FRAME_LEN
& 0xff,
226 ETH_FRAME_LEN
>> 8, /* le16 wMaxSegmentSize */
227 0x00, 0x00, /* le16 wNumberMCFilters */
228 0x00, /* u8 bNumberPowerFilters */
232 .eps
= (USBDescEndpoint
[]) {
234 .bEndpointAddress
= USB_DIR_IN
| 0x01,
235 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
236 .wMaxPacketSize
= STATUS_BYTECOUNT
,
237 .bInterval
= 1 << LOG2_STATUS_INTERVAL_MSEC
,
241 /* CDC Data Interface (off) */
242 .bInterfaceNumber
= 1,
243 .bAlternateSetting
= 0,
245 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
247 /* CDC Data Interface */
248 .bInterfaceNumber
= 1,
249 .bAlternateSetting
= 1,
251 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
252 .iInterface
= STRING_DATA
,
253 .eps
= (USBDescEndpoint
[]) {
255 .bEndpointAddress
= USB_DIR_IN
| 0x02,
256 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
257 .wMaxPacketSize
= 0x40,
259 .bEndpointAddress
= USB_DIR_OUT
| 0x02,
260 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
261 .wMaxPacketSize
= 0x40,
267 static const USBDescDevice desc_device_net
= {
269 .bDeviceClass
= USB_CLASS_COMM
,
270 .bMaxPacketSize0
= 0x40,
271 .bNumConfigurations
= 2,
272 .confs
= (USBDescConfig
[]) {
275 .bConfigurationValue
= DEV_RNDIS_CONFIG_VALUE
,
276 .iConfiguration
= STRING_RNDIS
,
277 .bmAttributes
= USB_CFG_ATT_ONE
| USB_CFG_ATT_SELFPOWER
,
279 .nif
= ARRAY_SIZE(desc_iface_rndis
),
280 .ifs
= desc_iface_rndis
,
283 .bConfigurationValue
= DEV_CONFIG_VALUE
,
284 .iConfiguration
= STRING_CDC
,
285 .bmAttributes
= USB_CFG_ATT_ONE
| USB_CFG_ATT_SELFPOWER
,
287 .nif
= ARRAY_SIZE(desc_iface_cdc
),
288 .ifs
= desc_iface_cdc
,
293 static const USBDesc desc_net
= {
295 .idVendor
= RNDIS_VENDOR_NUM
,
296 .idProduct
= RNDIS_PRODUCT_NUM
,
298 .iManufacturer
= STRING_MANUFACTURER
,
299 .iProduct
= STRING_PRODUCT
,
300 .iSerialNumber
= STRING_SERIALNUMBER
,
302 .full
= &desc_device_net
,
303 .str
= usb_net_stringtable
,
307 * RNDIS Definitions - in theory not specific to USB.
309 #define RNDIS_MAXIMUM_FRAME_SIZE 1518
310 #define RNDIS_MAX_TOTAL_SIZE 1558
312 /* Remote NDIS Versions */
313 #define RNDIS_MAJOR_VERSION 1
314 #define RNDIS_MINOR_VERSION 0
317 #define RNDIS_STATUS_SUCCESS 0x00000000U /* Success */
318 #define RNDIS_STATUS_FAILURE 0xc0000001U /* Unspecified error */
319 #define RNDIS_STATUS_INVALID_DATA 0xc0010015U /* Invalid data */
320 #define RNDIS_STATUS_NOT_SUPPORTED 0xc00000bbU /* Unsupported request */
321 #define RNDIS_STATUS_MEDIA_CONNECT 0x4001000bU /* Device connected */
322 #define RNDIS_STATUS_MEDIA_DISCONNECT 0x4001000cU /* Device disconnected */
324 /* Message Set for Connectionless (802.3) Devices */
326 RNDIS_PACKET_MSG
= 1,
327 RNDIS_INITIALIZE_MSG
= 2, /* Initialize device */
332 RNDIS_INDICATE_STATUS_MSG
= 7,
333 RNDIS_KEEPALIVE_MSG
= 8,
336 /* Message completion */
338 RNDIS_INITIALIZE_CMPLT
= 0x80000002U
,
339 RNDIS_QUERY_CMPLT
= 0x80000004U
,
340 RNDIS_SET_CMPLT
= 0x80000005U
,
341 RNDIS_RESET_CMPLT
= 0x80000006U
,
342 RNDIS_KEEPALIVE_CMPLT
= 0x80000008U
,
347 RNDIS_DF_CONNECTIONLESS
= 1,
348 RNDIS_DF_CONNECTIONORIENTED
= 2,
351 #define RNDIS_MEDIUM_802_3 0x00000000U
353 /* from drivers/net/sk98lin/h/skgepnmi.h */
354 #define OID_PNP_CAPABILITIES 0xfd010100
355 #define OID_PNP_SET_POWER 0xfd010101
356 #define OID_PNP_QUERY_POWER 0xfd010102
357 #define OID_PNP_ADD_WAKE_UP_PATTERN 0xfd010103
358 #define OID_PNP_REMOVE_WAKE_UP_PATTERN 0xfd010104
359 #define OID_PNP_ENABLE_WAKE_UP 0xfd010106
361 typedef uint32_t le32
;
363 typedef struct rndis_init_msg_type
{
369 le32 MaxTransferSize
;
370 } rndis_init_msg_type
;
372 typedef struct rndis_init_cmplt_type
{
381 le32 MaxPacketsPerTransfer
;
382 le32 MaxTransferSize
;
383 le32 PacketAlignmentFactor
;
386 } rndis_init_cmplt_type
;
388 typedef struct rndis_halt_msg_type
{
392 } rndis_halt_msg_type
;
394 typedef struct rndis_query_msg_type
{
399 le32 InformationBufferLength
;
400 le32 InformationBufferOffset
;
402 } rndis_query_msg_type
;
404 typedef struct rndis_query_cmplt_type
{
409 le32 InformationBufferLength
;
410 le32 InformationBufferOffset
;
411 } rndis_query_cmplt_type
;
413 typedef struct rndis_set_msg_type
{
418 le32 InformationBufferLength
;
419 le32 InformationBufferOffset
;
421 } rndis_set_msg_type
;
423 typedef struct rndis_set_cmplt_type
{
428 } rndis_set_cmplt_type
;
430 typedef struct rndis_reset_msg_type
{
434 } rndis_reset_msg_type
;
436 typedef struct rndis_reset_cmplt_type
{
440 le32 AddressingReset
;
441 } rndis_reset_cmplt_type
;
443 typedef struct rndis_indicate_status_msg_type
{
447 le32 StatusBufferLength
;
448 le32 StatusBufferOffset
;
449 } rndis_indicate_status_msg_type
;
451 typedef struct rndis_keepalive_msg_type
{
455 } rndis_keepalive_msg_type
;
457 typedef struct rndis_keepalive_cmplt_type
{
462 } rndis_keepalive_cmplt_type
;
464 struct rndis_packet_msg_type
{
471 le32 NumOOBDataElements
;
472 le32 PerPacketInfoOffset
;
473 le32 PerPacketInfoLength
;
478 struct rndis_config_parameter
{
479 le32 ParameterNameOffset
;
480 le32 ParameterNameLength
;
482 le32 ParameterValueOffset
;
483 le32 ParameterValueLength
;
486 /* implementation specific */
491 RNDIS_DATA_INITIALIZED
,
496 /* Required Object IDs (OIDs) */
497 OID_GEN_SUPPORTED_LIST
= 0x00010101,
498 OID_GEN_HARDWARE_STATUS
= 0x00010102,
499 OID_GEN_MEDIA_SUPPORTED
= 0x00010103,
500 OID_GEN_MEDIA_IN_USE
= 0x00010104,
501 OID_GEN_MAXIMUM_LOOKAHEAD
= 0x00010105,
502 OID_GEN_MAXIMUM_FRAME_SIZE
= 0x00010106,
503 OID_GEN_LINK_SPEED
= 0x00010107,
504 OID_GEN_TRANSMIT_BUFFER_SPACE
= 0x00010108,
505 OID_GEN_RECEIVE_BUFFER_SPACE
= 0x00010109,
506 OID_GEN_TRANSMIT_BLOCK_SIZE
= 0x0001010a,
507 OID_GEN_RECEIVE_BLOCK_SIZE
= 0x0001010b,
508 OID_GEN_VENDOR_ID
= 0x0001010c,
509 OID_GEN_VENDOR_DESCRIPTION
= 0x0001010d,
510 OID_GEN_CURRENT_PACKET_FILTER
= 0x0001010e,
511 OID_GEN_CURRENT_LOOKAHEAD
= 0x0001010f,
512 OID_GEN_DRIVER_VERSION
= 0x00010110,
513 OID_GEN_MAXIMUM_TOTAL_SIZE
= 0x00010111,
514 OID_GEN_PROTOCOL_OPTIONS
= 0x00010112,
515 OID_GEN_MAC_OPTIONS
= 0x00010113,
516 OID_GEN_MEDIA_CONNECT_STATUS
= 0x00010114,
517 OID_GEN_MAXIMUM_SEND_PACKETS
= 0x00010115,
518 OID_GEN_VENDOR_DRIVER_VERSION
= 0x00010116,
519 OID_GEN_SUPPORTED_GUIDS
= 0x00010117,
520 OID_GEN_NETWORK_LAYER_ADDRESSES
= 0x00010118,
521 OID_GEN_TRANSPORT_HEADER_OFFSET
= 0x00010119,
522 OID_GEN_MACHINE_NAME
= 0x0001021a,
523 OID_GEN_RNDIS_CONFIG_PARAMETER
= 0x0001021b,
524 OID_GEN_VLAN_ID
= 0x0001021c,
527 OID_GEN_MEDIA_CAPABILITIES
= 0x00010201,
528 OID_GEN_PHYSICAL_MEDIUM
= 0x00010202,
530 /* Required statistics OIDs */
531 OID_GEN_XMIT_OK
= 0x00020101,
532 OID_GEN_RCV_OK
= 0x00020102,
533 OID_GEN_XMIT_ERROR
= 0x00020103,
534 OID_GEN_RCV_ERROR
= 0x00020104,
535 OID_GEN_RCV_NO_BUFFER
= 0x00020105,
537 /* Optional statistics OIDs */
538 OID_GEN_DIRECTED_BYTES_XMIT
= 0x00020201,
539 OID_GEN_DIRECTED_FRAMES_XMIT
= 0x00020202,
540 OID_GEN_MULTICAST_BYTES_XMIT
= 0x00020203,
541 OID_GEN_MULTICAST_FRAMES_XMIT
= 0x00020204,
542 OID_GEN_BROADCAST_BYTES_XMIT
= 0x00020205,
543 OID_GEN_BROADCAST_FRAMES_XMIT
= 0x00020206,
544 OID_GEN_DIRECTED_BYTES_RCV
= 0x00020207,
545 OID_GEN_DIRECTED_FRAMES_RCV
= 0x00020208,
546 OID_GEN_MULTICAST_BYTES_RCV
= 0x00020209,
547 OID_GEN_MULTICAST_FRAMES_RCV
= 0x0002020a,
548 OID_GEN_BROADCAST_BYTES_RCV
= 0x0002020b,
549 OID_GEN_BROADCAST_FRAMES_RCV
= 0x0002020c,
550 OID_GEN_RCV_CRC_ERROR
= 0x0002020d,
551 OID_GEN_TRANSMIT_QUEUE_LENGTH
= 0x0002020e,
552 OID_GEN_GET_TIME_CAPS
= 0x0002020f,
553 OID_GEN_GET_NETCARD_TIME
= 0x00020210,
554 OID_GEN_NETCARD_LOAD
= 0x00020211,
555 OID_GEN_DEVICE_PROFILE
= 0x00020212,
556 OID_GEN_INIT_TIME_MS
= 0x00020213,
557 OID_GEN_RESET_COUNTS
= 0x00020214,
558 OID_GEN_MEDIA_SENSE_COUNTS
= 0x00020215,
559 OID_GEN_FRIENDLY_NAME
= 0x00020216,
560 OID_GEN_MINIPORT_INFO
= 0x00020217,
561 OID_GEN_RESET_VERIFY_PARAMETERS
= 0x00020218,
563 /* IEEE 802.3 (Ethernet) OIDs */
564 OID_802_3_PERMANENT_ADDRESS
= 0x01010101,
565 OID_802_3_CURRENT_ADDRESS
= 0x01010102,
566 OID_802_3_MULTICAST_LIST
= 0x01010103,
567 OID_802_3_MAXIMUM_LIST_SIZE
= 0x01010104,
568 OID_802_3_MAC_OPTIONS
= 0x01010105,
569 OID_802_3_RCV_ERROR_ALIGNMENT
= 0x01020101,
570 OID_802_3_XMIT_ONE_COLLISION
= 0x01020102,
571 OID_802_3_XMIT_MORE_COLLISIONS
= 0x01020103,
572 OID_802_3_XMIT_DEFERRED
= 0x01020201,
573 OID_802_3_XMIT_MAX_COLLISIONS
= 0x01020202,
574 OID_802_3_RCV_OVERRUN
= 0x01020203,
575 OID_802_3_XMIT_UNDERRUN
= 0x01020204,
576 OID_802_3_XMIT_HEARTBEAT_FAILURE
= 0x01020205,
577 OID_802_3_XMIT_TIMES_CRS_LOST
= 0x01020206,
578 OID_802_3_XMIT_LATE_COLLISIONS
= 0x01020207,
581 static const uint32_t oid_supported_list
[] =
583 /* the general stuff */
584 OID_GEN_SUPPORTED_LIST
,
585 OID_GEN_HARDWARE_STATUS
,
586 OID_GEN_MEDIA_SUPPORTED
,
587 OID_GEN_MEDIA_IN_USE
,
588 OID_GEN_MAXIMUM_FRAME_SIZE
,
590 OID_GEN_TRANSMIT_BLOCK_SIZE
,
591 OID_GEN_RECEIVE_BLOCK_SIZE
,
593 OID_GEN_VENDOR_DESCRIPTION
,
594 OID_GEN_VENDOR_DRIVER_VERSION
,
595 OID_GEN_CURRENT_PACKET_FILTER
,
596 OID_GEN_MAXIMUM_TOTAL_SIZE
,
597 OID_GEN_MEDIA_CONNECT_STATUS
,
598 OID_GEN_PHYSICAL_MEDIUM
,
600 /* the statistical stuff */
605 OID_GEN_RCV_NO_BUFFER
,
608 /* the general stuff */
609 OID_802_3_PERMANENT_ADDRESS
,
610 OID_802_3_CURRENT_ADDRESS
,
611 OID_802_3_MULTICAST_LIST
,
612 OID_802_3_MAC_OPTIONS
,
613 OID_802_3_MAXIMUM_LIST_SIZE
,
615 /* the statistical stuff */
616 OID_802_3_RCV_ERROR_ALIGNMENT
,
617 OID_802_3_XMIT_ONE_COLLISION
,
618 OID_802_3_XMIT_MORE_COLLISIONS
,
621 #define NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA (1 << 0)
622 #define NDIS_MAC_OPTION_RECEIVE_SERIALIZED (1 << 1)
623 #define NDIS_MAC_OPTION_TRANSFERS_NOT_PEND (1 << 2)
624 #define NDIS_MAC_OPTION_NO_LOOPBACK (1 << 3)
625 #define NDIS_MAC_OPTION_FULL_DUPLEX (1 << 4)
626 #define NDIS_MAC_OPTION_EOTX_INDICATION (1 << 5)
627 #define NDIS_MAC_OPTION_8021P_PRIORITY (1 << 6)
629 struct rndis_response
{
630 QTAILQ_ENTRY(rndis_response
) entries
;
638 enum rndis_state rndis_state
;
641 uint32_t media_state
;
647 unsigned int out_ptr
;
648 uint8_t out_buf
[2048];
650 unsigned int in_ptr
, in_len
;
651 uint8_t in_buf
[2048];
654 USBEndpoint
*bulk_in
;
656 char usbstring_mac
[13];
659 QTAILQ_HEAD(, rndis_response
) rndis_resp
;
662 #define TYPE_USB_NET "usb-net"
663 OBJECT_DECLARE_SIMPLE_TYPE(USBNetState
, USB_NET
)
665 static int is_rndis(USBNetState
*s
)
667 return s
->dev
.config
?
668 s
->dev
.config
->bConfigurationValue
== DEV_RNDIS_CONFIG_VALUE
: 0;
671 static int ndis_query(USBNetState
*s
, uint32_t oid
,
672 uint8_t *inbuf
, unsigned int inlen
, uint8_t *outbuf
,
678 /* general oids (table 4-1) */
680 case OID_GEN_SUPPORTED_LIST
:
681 for (i
= 0; i
< ARRAY_SIZE(oid_supported_list
); i
++) {
682 stl_le_p(outbuf
+ (i
* sizeof(le32
)), oid_supported_list
[i
]);
684 return sizeof(oid_supported_list
);
687 case OID_GEN_HARDWARE_STATUS
:
692 case OID_GEN_MEDIA_SUPPORTED
:
693 stl_le_p(outbuf
, s
->medium
);
697 case OID_GEN_MEDIA_IN_USE
:
698 stl_le_p(outbuf
, s
->medium
);
702 case OID_GEN_MAXIMUM_FRAME_SIZE
:
703 stl_le_p(outbuf
, ETH_FRAME_LEN
);
707 case OID_GEN_LINK_SPEED
:
708 stl_le_p(outbuf
, s
->speed
);
712 case OID_GEN_TRANSMIT_BLOCK_SIZE
:
713 stl_le_p(outbuf
, ETH_FRAME_LEN
);
717 case OID_GEN_RECEIVE_BLOCK_SIZE
:
718 stl_le_p(outbuf
, ETH_FRAME_LEN
);
722 case OID_GEN_VENDOR_ID
:
723 stl_le_p(outbuf
, s
->vendorid
);
727 case OID_GEN_VENDOR_DESCRIPTION
:
728 pstrcpy((char *)outbuf
, outlen
, "QEMU USB RNDIS Net");
729 return strlen((char *)outbuf
) + 1;
731 case OID_GEN_VENDOR_DRIVER_VERSION
:
736 case OID_GEN_CURRENT_PACKET_FILTER
:
737 stl_le_p(outbuf
, s
->filter
);
741 case OID_GEN_MAXIMUM_TOTAL_SIZE
:
742 stl_le_p(outbuf
, RNDIS_MAX_TOTAL_SIZE
);
746 case OID_GEN_MEDIA_CONNECT_STATUS
:
747 stl_le_p(outbuf
, s
->media_state
);
750 case OID_GEN_PHYSICAL_MEDIUM
:
754 case OID_GEN_MAC_OPTIONS
:
755 stl_le_p(outbuf
, NDIS_MAC_OPTION_RECEIVE_SERIALIZED
|
756 NDIS_MAC_OPTION_FULL_DUPLEX
);
759 /* statistics OIDs (table 4-2) */
761 case OID_GEN_XMIT_OK
:
771 case OID_GEN_XMIT_ERROR
:
776 case OID_GEN_RCV_ERROR
:
781 case OID_GEN_RCV_NO_BUFFER
:
785 /* ieee802.3 OIDs (table 4-3) */
787 case OID_802_3_PERMANENT_ADDRESS
:
788 memcpy(outbuf
, s
->conf
.macaddr
.a
, 6);
792 case OID_802_3_CURRENT_ADDRESS
:
793 memcpy(outbuf
, s
->conf
.macaddr
.a
, 6);
797 case OID_802_3_MULTICAST_LIST
:
798 stl_le_p(outbuf
, 0xe0000000);
802 case OID_802_3_MAXIMUM_LIST_SIZE
:
806 case OID_802_3_MAC_OPTIONS
:
809 /* ieee802.3 statistics OIDs (table 4-4) */
811 case OID_802_3_RCV_ERROR_ALIGNMENT
:
816 case OID_802_3_XMIT_ONE_COLLISION
:
821 case OID_802_3_XMIT_MORE_COLLISIONS
:
826 fprintf(stderr
, "usbnet: unknown OID 0x%08x\n", oid
);
832 static int ndis_set(USBNetState
*s
, uint32_t oid
,
833 uint8_t *inbuf
, unsigned int inlen
)
836 case OID_GEN_CURRENT_PACKET_FILTER
:
837 s
->filter
= ldl_le_p(inbuf
);
839 s
->rndis_state
= RNDIS_DATA_INITIALIZED
;
841 s
->rndis_state
= RNDIS_INITIALIZED
;
845 case OID_802_3_MULTICAST_LIST
:
851 static int rndis_get_response(USBNetState
*s
, uint8_t *buf
)
854 struct rndis_response
*r
= s
->rndis_resp
.tqh_first
;
859 QTAILQ_REMOVE(&s
->rndis_resp
, r
, entries
);
861 memcpy(buf
, r
->buf
, r
->length
);
867 static void *rndis_queue_response(USBNetState
*s
, unsigned int length
)
869 struct rndis_response
*r
=
870 g_malloc0(sizeof(struct rndis_response
) + length
);
872 if (QTAILQ_EMPTY(&s
->rndis_resp
)) {
873 usb_wakeup(s
->intr
, 0);
876 QTAILQ_INSERT_TAIL(&s
->rndis_resp
, r
, entries
);
882 static void rndis_clear_responsequeue(USBNetState
*s
)
884 struct rndis_response
*r
;
886 while ((r
= s
->rndis_resp
.tqh_first
)) {
887 QTAILQ_REMOVE(&s
->rndis_resp
, r
, entries
);
892 static int rndis_init_response(USBNetState
*s
, rndis_init_msg_type
*buf
)
894 rndis_init_cmplt_type
*resp
=
895 rndis_queue_response(s
, sizeof(rndis_init_cmplt_type
));
898 return USB_RET_STALL
;
900 resp
->MessageType
= cpu_to_le32(RNDIS_INITIALIZE_CMPLT
);
901 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_init_cmplt_type
));
902 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
903 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
904 resp
->MajorVersion
= cpu_to_le32(RNDIS_MAJOR_VERSION
);
905 resp
->MinorVersion
= cpu_to_le32(RNDIS_MINOR_VERSION
);
906 resp
->DeviceFlags
= cpu_to_le32(RNDIS_DF_CONNECTIONLESS
);
907 resp
->Medium
= cpu_to_le32(RNDIS_MEDIUM_802_3
);
908 resp
->MaxPacketsPerTransfer
= cpu_to_le32(1);
909 resp
->MaxTransferSize
= cpu_to_le32(ETH_FRAME_LEN
+
910 sizeof(struct rndis_packet_msg_type
) + 22);
911 resp
->PacketAlignmentFactor
= cpu_to_le32(0);
912 resp
->AFListOffset
= cpu_to_le32(0);
913 resp
->AFListSize
= cpu_to_le32(0);
917 static int rndis_query_response(USBNetState
*s
,
918 rndis_query_msg_type
*buf
, unsigned int length
)
920 rndis_query_cmplt_type
*resp
;
921 /* oid_supported_list is the largest data reply */
922 uint8_t infobuf
[sizeof(oid_supported_list
)];
923 uint32_t bufoffs
, buflen
;
925 unsigned int resplen
;
927 bufoffs
= le32_to_cpu(buf
->InformationBufferOffset
) + 8;
928 buflen
= le32_to_cpu(buf
->InformationBufferLength
);
929 if (buflen
> length
|| bufoffs
>= length
|| bufoffs
+ buflen
> length
) {
930 return USB_RET_STALL
;
933 infobuflen
= ndis_query(s
, le32_to_cpu(buf
->OID
),
934 bufoffs
+ (uint8_t *) buf
, buflen
, infobuf
,
936 resplen
= sizeof(rndis_query_cmplt_type
) +
937 ((infobuflen
< 0) ? 0 : infobuflen
);
938 resp
= rndis_queue_response(s
, resplen
);
940 return USB_RET_STALL
;
942 resp
->MessageType
= cpu_to_le32(RNDIS_QUERY_CMPLT
);
943 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
944 resp
->MessageLength
= cpu_to_le32(resplen
);
946 if (infobuflen
< 0) {
947 /* OID not supported */
948 resp
->Status
= cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED
);
949 resp
->InformationBufferLength
= cpu_to_le32(0);
950 resp
->InformationBufferOffset
= cpu_to_le32(0);
954 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
955 resp
->InformationBufferOffset
=
956 cpu_to_le32(infobuflen
? sizeof(rndis_query_cmplt_type
) - 8 : 0);
957 resp
->InformationBufferLength
= cpu_to_le32(infobuflen
);
958 memcpy(resp
+ 1, infobuf
, infobuflen
);
963 static int rndis_set_response(USBNetState
*s
,
964 rndis_set_msg_type
*buf
, unsigned int length
)
966 rndis_set_cmplt_type
*resp
=
967 rndis_queue_response(s
, sizeof(rndis_set_cmplt_type
));
968 uint32_t bufoffs
, buflen
;
972 return USB_RET_STALL
;
974 bufoffs
= le32_to_cpu(buf
->InformationBufferOffset
) + 8;
975 buflen
= le32_to_cpu(buf
->InformationBufferLength
);
976 if (buflen
> length
|| bufoffs
>= length
|| bufoffs
+ buflen
> length
) {
977 return USB_RET_STALL
;
980 ret
= ndis_set(s
, le32_to_cpu(buf
->OID
),
981 bufoffs
+ (uint8_t *) buf
, buflen
);
982 resp
->MessageType
= cpu_to_le32(RNDIS_SET_CMPLT
);
983 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
984 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_set_cmplt_type
));
986 /* OID not supported */
987 resp
->Status
= cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED
);
990 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
995 static int rndis_reset_response(USBNetState
*s
, rndis_reset_msg_type
*buf
)
997 rndis_reset_cmplt_type
*resp
=
998 rndis_queue_response(s
, sizeof(rndis_reset_cmplt_type
));
1001 return USB_RET_STALL
;
1003 resp
->MessageType
= cpu_to_le32(RNDIS_RESET_CMPLT
);
1004 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_reset_cmplt_type
));
1005 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
1006 resp
->AddressingReset
= cpu_to_le32(1); /* reset information */
1011 static int rndis_keepalive_response(USBNetState
*s
,
1012 rndis_keepalive_msg_type
*buf
)
1014 rndis_keepalive_cmplt_type
*resp
=
1015 rndis_queue_response(s
, sizeof(rndis_keepalive_cmplt_type
));
1018 return USB_RET_STALL
;
1020 resp
->MessageType
= cpu_to_le32(RNDIS_KEEPALIVE_CMPLT
);
1021 resp
->MessageLength
= cpu_to_le32(sizeof(rndis_keepalive_cmplt_type
));
1022 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
1023 resp
->Status
= cpu_to_le32(RNDIS_STATUS_SUCCESS
);
1028 /* Prepare to receive the next packet */
1029 static void usb_net_reset_in_buf(USBNetState
*s
)
1031 s
->in_ptr
= s
->in_len
= 0;
1032 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
1035 static int rndis_parse(USBNetState
*s
, uint8_t *data
, int length
)
1037 uint32_t msg_type
= ldl_le_p(data
);
1040 case RNDIS_INITIALIZE_MSG
:
1041 s
->rndis_state
= RNDIS_INITIALIZED
;
1042 return rndis_init_response(s
, (rndis_init_msg_type
*) data
);
1044 case RNDIS_HALT_MSG
:
1045 s
->rndis_state
= RNDIS_UNINITIALIZED
;
1048 case RNDIS_QUERY_MSG
:
1049 return rndis_query_response(s
, (rndis_query_msg_type
*) data
, length
);
1052 return rndis_set_response(s
, (rndis_set_msg_type
*) data
, length
);
1054 case RNDIS_RESET_MSG
:
1055 rndis_clear_responsequeue(s
);
1057 usb_net_reset_in_buf(s
);
1058 return rndis_reset_response(s
, (rndis_reset_msg_type
*) data
);
1060 case RNDIS_KEEPALIVE_MSG
:
1061 /* For USB: host does this every 5 seconds */
1062 return rndis_keepalive_response(s
, (rndis_keepalive_msg_type
*) data
);
1065 return USB_RET_STALL
;
1068 static void usb_net_handle_reset(USBDevice
*dev
)
1072 static void usb_net_handle_control(USBDevice
*dev
, USBPacket
*p
,
1073 int request
, int value
, int index
, int length
, uint8_t *data
)
1075 USBNetState
*s
= (USBNetState
*) dev
;
1078 ret
= usb_desc_handle_control(dev
, p
, request
, value
, index
, length
, data
);
1084 case ClassInterfaceOutRequest
| USB_CDC_SEND_ENCAPSULATED_COMMAND
:
1085 if (!is_rndis(s
) || value
|| index
!= 0) {
1088 #ifdef TRAFFIC_DEBUG
1091 fprintf(stderr
, "SEND_ENCAPSULATED_COMMAND:");
1092 for (i
= 0; i
< length
; i
++) {
1094 fprintf(stderr
, "\n%04x:", i
);
1095 fprintf(stderr
, " %02x", data
[i
]);
1097 fprintf(stderr
, "\n\n");
1100 ret
= rndis_parse(s
, data
, length
);
1106 case ClassInterfaceRequest
| USB_CDC_GET_ENCAPSULATED_RESPONSE
:
1107 if (!is_rndis(s
) || value
|| index
!= 0) {
1110 p
->actual_length
= rndis_get_response(s
, data
);
1111 if (p
->actual_length
== 0) {
1113 p
->actual_length
= 1;
1115 #ifdef TRAFFIC_DEBUG
1118 fprintf(stderr
, "GET_ENCAPSULATED_RESPONSE:");
1119 for (i
= 0; i
< p
->actual_length
; i
++) {
1121 fprintf(stderr
, "\n%04x:", i
);
1122 fprintf(stderr
, " %02x", data
[i
]);
1124 fprintf(stderr
, "\n\n");
1129 case ClassInterfaceOutRequest
| USB_CDC_SET_ETHERNET_PACKET_FILTER
:
1137 fprintf(stderr
, "usbnet: failed control transaction: "
1138 "request 0x%x value 0x%x index 0x%x length 0x%x\n",
1139 request
, value
, index
, length
);
1140 p
->status
= USB_RET_STALL
;
1145 static void usb_net_handle_statusin(USBNetState
*s
, USBPacket
*p
)
1150 if (p
->iov
.size
< 8) {
1151 p
->status
= USB_RET_STALL
;
1156 rbuf
[0] = cpu_to_le32(1);
1157 rbuf
[1] = cpu_to_le32(0);
1158 usb_packet_copy(p
, rbuf
, 8);
1159 if (!s
->rndis_resp
.tqh_first
) {
1160 p
->status
= USB_RET_NAK
;
1164 cpu_to_be16(ClassInterfaceRequest
| USB_CDC_NETWORK_CONNECTION
);
1165 ebuf
[1] = cpu_to_le16(s
->connection
);
1166 ebuf
[2] = cpu_to_le16(1);
1167 ebuf
[3] = cpu_to_le16(0);
1168 usb_packet_copy(p
, ebuf
, 8);
1171 #ifdef TRAFFIC_DEBUG
1172 fprintf(stderr
, "usbnet: interrupt poll len %zu return %d",
1173 p
->iov
.size
, p
->status
);
1174 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", p
->status
);
1178 static void usb_net_handle_datain(USBNetState
*s
, USBPacket
*p
)
1182 if (s
->in_ptr
> s
->in_len
) {
1183 usb_net_reset_in_buf(s
);
1184 p
->status
= USB_RET_NAK
;
1188 p
->status
= USB_RET_NAK
;
1191 len
= s
->in_len
- s
->in_ptr
;
1192 if (len
> p
->iov
.size
) {
1195 usb_packet_copy(p
, &s
->in_buf
[s
->in_ptr
], len
);
1197 if (s
->in_ptr
>= s
->in_len
&&
1198 (is_rndis(s
) || (s
->in_len
& (64 - 1)) || !len
)) {
1199 /* no short packet necessary */
1200 usb_net_reset_in_buf(s
);
1203 #ifdef TRAFFIC_DEBUG
1204 fprintf(stderr
, "usbnet: data in len %zu return %d", p
->iov
.size
, len
);
1205 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", len
);
1209 static void usb_net_handle_dataout(USBNetState
*s
, USBPacket
*p
)
1211 int sz
= sizeof(s
->out_buf
) - s
->out_ptr
;
1212 struct rndis_packet_msg_type
*msg
=
1213 (struct rndis_packet_msg_type
*) s
->out_buf
;
1216 #ifdef TRAFFIC_DEBUG
1217 fprintf(stderr
, "usbnet: data out len %zu\n", p
->iov
.size
);
1218 iov_hexdump(p
->iov
.iov
, p
->iov
.niov
, stderr
, "usbnet", p
->iov
.size
);
1221 if (sz
> p
->iov
.size
) {
1224 usb_packet_copy(p
, &s
->out_buf
[s
->out_ptr
], sz
);
1228 if (p
->iov
.size
% 64 || p
->iov
.size
== 0) {
1229 qemu_send_packet(qemu_get_queue(s
->nic
), s
->out_buf
, s
->out_ptr
);
1234 len
= le32_to_cpu(msg
->MessageLength
);
1235 if (s
->out_ptr
< 8 || s
->out_ptr
< len
) {
1238 if (le32_to_cpu(msg
->MessageType
) == RNDIS_PACKET_MSG
) {
1239 uint32_t offs
= 8 + le32_to_cpu(msg
->DataOffset
);
1240 uint32_t size
= le32_to_cpu(msg
->DataLength
);
1241 if (offs
< len
&& size
< len
&& offs
+ size
<= len
) {
1242 qemu_send_packet(qemu_get_queue(s
->nic
), s
->out_buf
+ offs
, size
);
1246 memmove(s
->out_buf
, &s
->out_buf
[len
], s
->out_ptr
);
1249 static void usb_net_handle_data(USBDevice
*dev
, USBPacket
*p
)
1251 USBNetState
*s
= (USBNetState
*) dev
;
1255 switch (p
->ep
->nr
) {
1257 usb_net_handle_statusin(s
, p
);
1261 usb_net_handle_datain(s
, p
);
1270 switch (p
->ep
->nr
) {
1272 usb_net_handle_dataout(s
, p
);
1282 p
->status
= USB_RET_STALL
;
1286 if (p
->status
== USB_RET_STALL
) {
1287 fprintf(stderr
, "usbnet: failed data transaction: "
1288 "pid 0x%x ep 0x%x len 0x%zx\n",
1289 p
->pid
, p
->ep
->nr
, p
->iov
.size
);
1293 static ssize_t
usbnet_receive(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
1295 USBNetState
*s
= qemu_get_nic_opaque(nc
);
1296 uint8_t *in_buf
= s
->in_buf
;
1297 size_t total_size
= size
;
1299 if (!s
->dev
.config
) {
1304 if (s
->rndis_state
!= RNDIS_DATA_INITIALIZED
) {
1307 total_size
+= sizeof(struct rndis_packet_msg_type
);
1309 if (total_size
> sizeof(s
->in_buf
)) {
1313 /* Only accept packet if input buffer is empty */
1314 if (s
->in_len
> 0) {
1319 struct rndis_packet_msg_type
*msg
;
1321 msg
= (struct rndis_packet_msg_type
*)in_buf
;
1322 memset(msg
, 0, sizeof(struct rndis_packet_msg_type
));
1323 msg
->MessageType
= cpu_to_le32(RNDIS_PACKET_MSG
);
1324 msg
->MessageLength
= cpu_to_le32(size
+ sizeof(*msg
));
1325 msg
->DataOffset
= cpu_to_le32(sizeof(*msg
) - 8);
1326 msg
->DataLength
= cpu_to_le32(size
);
1327 /* msg->OOBDataOffset;
1328 * msg->OOBDataLength;
1329 * msg->NumOOBDataElements;
1330 * msg->PerPacketInfoOffset;
1331 * msg->PerPacketInfoLength;
1335 in_buf
+= sizeof(*msg
);
1338 memcpy(in_buf
, buf
, size
);
1339 s
->in_len
= total_size
;
1341 usb_wakeup(s
->bulk_in
, 0);
1345 static void usbnet_cleanup(NetClientState
*nc
)
1347 USBNetState
*s
= qemu_get_nic_opaque(nc
);
1352 static void usb_net_unrealize(USBDevice
*dev
)
1354 USBNetState
*s
= (USBNetState
*) dev
;
1356 /* TODO: remove the nd_table[] entry */
1357 rndis_clear_responsequeue(s
);
1358 qemu_del_nic(s
->nic
);
1361 static NetClientInfo net_usbnet_info
= {
1362 .type
= NET_CLIENT_DRIVER_NIC
,
1363 .size
= sizeof(NICState
),
1364 .receive
= usbnet_receive
,
1365 .cleanup
= usbnet_cleanup
,
1368 static void usb_net_realize(USBDevice
*dev
, Error
**errp
)
1370 USBNetState
*s
= USB_NET(dev
);
1372 usb_desc_create_serial(dev
);
1375 s
->rndis_state
= RNDIS_UNINITIALIZED
;
1376 QTAILQ_INIT(&s
->rndis_resp
);
1378 s
->medium
= 0; /* NDIS_MEDIUM_802_3 */
1379 s
->speed
= 1000000; /* 100MBps, in 100Bps units */
1380 s
->media_state
= 0; /* NDIS_MEDIA_STATE_CONNECTED */;
1382 s
->vendorid
= 0x1234;
1383 s
->connection
= 1; /* Connected */
1384 s
->intr
= usb_ep_get(dev
, USB_TOKEN_IN
, 1);
1385 s
->bulk_in
= usb_ep_get(dev
, USB_TOKEN_IN
, 2);
1387 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
1388 s
->nic
= qemu_new_nic(&net_usbnet_info
, &s
->conf
,
1389 object_get_typename(OBJECT(s
)), s
->dev
.qdev
.id
, s
);
1390 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
1391 snprintf(s
->usbstring_mac
, sizeof(s
->usbstring_mac
),
1392 "%02x%02x%02x%02x%02x%02x",
1394 s
->conf
.macaddr
.a
[1],
1395 s
->conf
.macaddr
.a
[2],
1396 s
->conf
.macaddr
.a
[3],
1397 s
->conf
.macaddr
.a
[4],
1398 s
->conf
.macaddr
.a
[5]);
1399 usb_desc_set_string(dev
, STRING_ETHADDR
, s
->usbstring_mac
);
1402 static void usb_net_instance_init(Object
*obj
)
1404 USBDevice
*dev
= USB_DEVICE(obj
);
1405 USBNetState
*s
= USB_NET(dev
);
1407 device_add_bootindex_property(obj
, &s
->conf
.bootindex
,
1408 "bootindex", "/ethernet-phy@0",
1412 static const VMStateDescription vmstate_usb_net
= {
1417 static Property net_properties
[] = {
1418 DEFINE_NIC_PROPERTIES(USBNetState
, conf
),
1419 DEFINE_PROP_END_OF_LIST(),
1422 static void usb_net_class_initfn(ObjectClass
*klass
, void *data
)
1424 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1425 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
1427 uc
->realize
= usb_net_realize
;
1428 uc
->product_desc
= "QEMU USB Network Interface";
1429 uc
->usb_desc
= &desc_net
;
1430 uc
->handle_reset
= usb_net_handle_reset
;
1431 uc
->handle_control
= usb_net_handle_control
;
1432 uc
->handle_data
= usb_net_handle_data
;
1433 uc
->unrealize
= usb_net_unrealize
;
1434 set_bit(DEVICE_CATEGORY_NETWORK
, dc
->categories
);
1435 dc
->fw_name
= "network";
1436 dc
->vmsd
= &vmstate_usb_net
;
1437 device_class_set_props(dc
, net_properties
);
1440 static const TypeInfo net_info
= {
1441 .name
= TYPE_USB_NET
,
1442 .parent
= TYPE_USB_DEVICE
,
1443 .instance_size
= sizeof(USBNetState
),
1444 .class_init
= usb_net_class_initfn
,
1445 .instance_init
= usb_net_instance_init
,
1448 static void usb_net_register_types(void)
1450 type_register_static(&net_info
);
1453 type_init(usb_net_register_types
)