~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/usb/rndis_host.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0+
  2 /*
  3  * Host Side support for RNDIS Networking Links
  4  * Copyright (C) 2005 by David Brownell
  5  */
  6 
  7 #ifndef __LINUX_USB_RNDIS_HOST_H
  8 #define __LINUX_USB_RNDIS_HOST_H
  9 
 10 #include <linux/rndis.h>
 11 
 12 /*
 13  * CONTROL uses CDC "encapsulated commands" with funky notifications.
 14  *  - control-out:  SEND_ENCAPSULATED
 15  *  - interrupt-in:  RESPONSE_AVAILABLE
 16  *  - control-in:  GET_ENCAPSULATED
 17  *
 18  * We'll try to ignore the RESPONSE_AVAILABLE notifications.
 19  *
 20  * REVISIT some RNDIS implementations seem to have curious issues still
 21  * to be resolved.
 22  */
 23 struct rndis_msg_hdr {
 24         __le32  msg_type;                       /* RNDIS_MSG_* */
 25         __le32  msg_len;
 26         /* followed by data that varies between messages */
 27         __le32  request_id;
 28         __le32  status;
 29         /* ... and more */
 30 } __attribute__ ((packed));
 31 
 32 /* MS-Windows uses this strange size, but RNDIS spec says 1024 minimum */
 33 #define CONTROL_BUFFER_SIZE             1025
 34 
 35 /* RNDIS defines an (absurdly huge) 10 second control timeout,
 36  * but ActiveSync seems to use a more usual 5 second timeout
 37  * (which matches the USB 2.0 spec).
 38  */
 39 #define RNDIS_CONTROL_TIMEOUT_MS        (5 * 1000)
 40 
 41 struct rndis_data_hdr {
 42         __le32  msg_type;               /* RNDIS_MSG_PACKET */
 43         __le32  msg_len;                /* rndis_data_hdr + data_len + pad */
 44         __le32  data_offset;            /* 36 -- right after header */
 45         __le32  data_len;               /* ... real packet size */
 46 
 47         __le32  oob_data_offset;        /* zero */
 48         __le32  oob_data_len;           /* zero */
 49         __le32  num_oob;                /* zero */
 50         __le32  packet_data_offset;     /* zero */
 51 
 52         __le32  packet_data_len;        /* zero */
 53         __le32  vc_handle;              /* zero */
 54         __le32  reserved;               /* zero */
 55 } __attribute__ ((packed));
 56 
 57 struct rndis_init {             /* OUT */
 58         /* header and: */
 59         __le32  msg_type;                       /* RNDIS_MSG_INIT */
 60         __le32  msg_len;                        /* 24 */
 61         __le32  request_id;
 62         __le32  major_version;                  /* of rndis (1.0) */
 63         __le32  minor_version;
 64         __le32  max_transfer_size;
 65 } __attribute__ ((packed));
 66 
 67 struct rndis_init_c {           /* IN */
 68         /* header and: */
 69         __le32  msg_type;                       /* RNDIS_MSG_INIT_C */
 70         __le32  msg_len;
 71         __le32  request_id;
 72         __le32  status;
 73         __le32  major_version;                  /* of rndis (1.0) */
 74         __le32  minor_version;
 75         __le32  device_flags;
 76         __le32  medium;                         /* zero == 802.3 */
 77         __le32  max_packets_per_message;
 78         __le32  max_transfer_size;
 79         __le32  packet_alignment;               /* max 7; (1<<n) bytes */
 80         __le32  af_list_offset;                 /* zero */
 81         __le32  af_list_size;                   /* zero */
 82 } __attribute__ ((packed));
 83 
 84 struct rndis_halt {             /* OUT (no reply) */
 85         /* header and: */
 86         __le32  msg_type;                       /* RNDIS_MSG_HALT */
 87         __le32  msg_len;
 88         __le32  request_id;
 89 } __attribute__ ((packed));
 90 
 91 struct rndis_query {            /* OUT */
 92         /* header and: */
 93         __le32  msg_type;                       /* RNDIS_MSG_QUERY */
 94         __le32  msg_len;
 95         __le32  request_id;
 96         __le32  oid;
 97         __le32  len;
 98         __le32  offset;
 99 /*?*/   __le32  handle;                         /* zero */
100 } __attribute__ ((packed));
101 
102 struct rndis_query_c {          /* IN */
103         /* header and: */
104         __le32  msg_type;                       /* RNDIS_MSG_QUERY_C */
105         __le32  msg_len;
106         __le32  request_id;
107         __le32  status;
108         __le32  len;
109         __le32  offset;
110 } __attribute__ ((packed));
111 
112 struct rndis_set {              /* OUT */
113         /* header and: */
114         __le32  msg_type;                       /* RNDIS_MSG_SET */
115         __le32  msg_len;
116         __le32  request_id;
117         __le32  oid;
118         __le32  len;
119         __le32  offset;
120 /*?*/   __le32  handle;                         /* zero */
121 } __attribute__ ((packed));
122 
123 struct rndis_set_c {            /* IN */
124         /* header and: */
125         __le32  msg_type;                       /* RNDIS_MSG_SET_C */
126         __le32  msg_len;
127         __le32  request_id;
128         __le32  status;
129 } __attribute__ ((packed));
130 
131 struct rndis_reset {            /* IN */
132         /* header and: */
133         __le32  msg_type;                       /* RNDIS_MSG_RESET */
134         __le32  msg_len;
135         __le32  reserved;
136 } __attribute__ ((packed));
137 
138 struct rndis_reset_c {          /* OUT */
139         /* header and: */
140         __le32  msg_type;                       /* RNDIS_MSG_RESET_C */
141         __le32  msg_len;
142         __le32  status;
143         __le32  addressing_lost;
144 } __attribute__ ((packed));
145 
146 struct rndis_indicate {         /* IN (unrequested) */
147         /* header and: */
148         __le32  msg_type;                       /* RNDIS_MSG_INDICATE */
149         __le32  msg_len;
150         __le32  status;
151         __le32  length;
152         __le32  offset;
153 /**/    __le32  diag_status;
154         __le32  error_offset;
155 /**/    __le32  message;
156 } __attribute__ ((packed));
157 
158 struct rndis_keepalive {        /* OUT (optionally IN) */
159         /* header and: */
160         __le32  msg_type;                       /* RNDIS_MSG_KEEPALIVE */
161         __le32  msg_len;
162         __le32  request_id;
163 } __attribute__ ((packed));
164 
165 struct rndis_keepalive_c {      /* IN (optionally OUT) */
166         /* header and: */
167         __le32  msg_type;                       /* RNDIS_MSG_KEEPALIVE_C */
168         __le32  msg_len;
169         __le32  request_id;
170         __le32  status;
171 } __attribute__ ((packed));
172 
173 /* default filter used with RNDIS devices */
174 #define RNDIS_DEFAULT_FILTER ( \
175         RNDIS_PACKET_TYPE_DIRECTED | \
176         RNDIS_PACKET_TYPE_BROADCAST | \
177         RNDIS_PACKET_TYPE_ALL_MULTICAST | \
178         RNDIS_PACKET_TYPE_PROMISCUOUS)
179 
180 /* Flags to require specific physical medium type for generic_rndis_bind() */
181 #define FLAG_RNDIS_PHYM_NOT_WIRELESS    0x0001
182 #define FLAG_RNDIS_PHYM_WIRELESS        0x0002
183 
184 /* Flags for driver_info::data */
185 #define RNDIS_DRIVER_DATA_POLL_STATUS   1       /* poll status before control */
186 #define RNDIS_DRIVER_DATA_DST_MAC_FIXUP 2       /* device ignores configured MAC address */
187 
188 extern void rndis_status(struct usbnet *dev, struct urb *urb);
189 extern int
190 rndis_command(struct usbnet *dev, struct rndis_msg_hdr *buf, int buflen);
191 extern int
192 generic_rndis_bind(struct usbnet *dev, struct usb_interface *intf, int flags);
193 extern void rndis_unbind(struct usbnet *dev, struct usb_interface *intf);
194 extern int rndis_rx_fixup(struct usbnet *dev, struct sk_buff *skb);
195 extern struct sk_buff *
196 rndis_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags);
197 
198 #endif  /* __LINUX_USB_RNDIS_HOST_H */
199 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php