2 * ffs-test.c -- user mode filesystem api for usb composite function
4 * Copyright (C) 2010 Samsung Electronics
5 * Author: Michal Nazarewicz <mina86@mina86.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 /* $(CROSS_COMPILE)cc -Wall -Wextra -g -o ffs-test ffs-test.c -lpthread */
25 #define _BSD_SOURCE /* for endian.h */
36 #include <sys/ioctl.h>
38 #include <sys/types.h>
40 #include <tools/le_byteshift.h>
42 #include "../../include/uapi/linux/usb/functionfs.h"
45 /******************** Little Endian Handling ********************************/
47 #define cpu_to_le16(x) htole16(x)
48 #define cpu_to_le32(x) htole32(x)
49 #define le32_to_cpu(x) le32toh(x)
50 #define le16_to_cpu(x) le16toh(x)
53 /******************** Messages and Errors ***********************************/
55 static const char argv0
[] = "ffs-test";
57 static unsigned verbosity
= 7;
59 static void _msg(unsigned level
, const char *fmt
, ...)
66 if (level
<= verbosity
) {
67 static const char levels
[8][6] = {
79 fprintf(stderr
, "%s: %s ", argv0
, levels
[level
]);
81 vfprintf(stderr
, fmt
, ap
);
84 if (fmt
[strlen(fmt
) - 1] != '\n') {
86 strerror_r(_errno
, buffer
, sizeof buffer
);
87 fprintf(stderr
, ": (-%d) %s\n", _errno
, buffer
);
94 #define die(...) (_msg(2, __VA_ARGS__), exit(1))
95 #define err(...) _msg(3, __VA_ARGS__)
96 #define warn(...) _msg(4, __VA_ARGS__)
97 #define note(...) _msg(5, __VA_ARGS__)
98 #define info(...) _msg(6, __VA_ARGS__)
99 #define debug(...) _msg(7, __VA_ARGS__)
101 #define die_on(cond, ...) do { \
107 /******************** Descriptors and Strings *******************************/
109 static const struct {
110 struct usb_functionfs_descs_head_v2 header
;
114 struct usb_interface_descriptor intf
;
115 struct usb_endpoint_descriptor_no_audio sink
;
116 struct usb_endpoint_descriptor_no_audio source
;
117 } __attribute__((packed
)) fs_descs
, hs_descs
;
118 } __attribute__((packed
)) descriptors
= {
120 .magic
= cpu_to_le32(FUNCTIONFS_DESCRIPTORS_MAGIC_V2
),
121 .flags
= cpu_to_le32(FUNCTIONFS_HAS_FS_DESC
|
122 FUNCTIONFS_HAS_HS_DESC
),
123 .length
= cpu_to_le32(sizeof descriptors
),
125 .fs_count
= cpu_to_le32(3),
128 .bLength
= sizeof descriptors
.fs_descs
.intf
,
129 .bDescriptorType
= USB_DT_INTERFACE
,
131 .bInterfaceClass
= USB_CLASS_VENDOR_SPEC
,
135 .bLength
= sizeof descriptors
.fs_descs
.sink
,
136 .bDescriptorType
= USB_DT_ENDPOINT
,
137 .bEndpointAddress
= 1 | USB_DIR_IN
,
138 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
139 /* .wMaxPacketSize = autoconfiguration (kernel) */
142 .bLength
= sizeof descriptors
.fs_descs
.source
,
143 .bDescriptorType
= USB_DT_ENDPOINT
,
144 .bEndpointAddress
= 2 | USB_DIR_OUT
,
145 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
146 /* .wMaxPacketSize = autoconfiguration (kernel) */
149 .hs_count
= cpu_to_le32(3),
152 .bLength
= sizeof descriptors
.fs_descs
.intf
,
153 .bDescriptorType
= USB_DT_INTERFACE
,
155 .bInterfaceClass
= USB_CLASS_VENDOR_SPEC
,
159 .bLength
= sizeof descriptors
.hs_descs
.sink
,
160 .bDescriptorType
= USB_DT_ENDPOINT
,
161 .bEndpointAddress
= 1 | USB_DIR_IN
,
162 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
163 .wMaxPacketSize
= cpu_to_le16(512),
166 .bLength
= sizeof descriptors
.hs_descs
.source
,
167 .bDescriptorType
= USB_DT_ENDPOINT
,
168 .bEndpointAddress
= 2 | USB_DIR_OUT
,
169 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
170 .wMaxPacketSize
= cpu_to_le16(512),
171 .bInterval
= 1, /* NAK every 1 uframe */
176 static size_t descs_to_legacy(void **legacy
, const void *descriptors_v2
)
178 const unsigned char *descs_end
, *descs_start
;
179 __u32 length
, fs_count
= 0, hs_count
= 0, count
;
184 const struct usb_functionfs_descs_head_v2 header
;
185 const __le32 counts
[];
186 } __attribute__((packed
)) *const in
= descriptors_v2
;
187 const __le32
*counts
= in
->counts
;
190 if (le32_to_cpu(in
->header
.magic
) !=
191 FUNCTIONFS_DESCRIPTORS_MAGIC_V2
)
193 length
= le32_to_cpu(in
->header
.length
);
194 if (length
<= sizeof in
->header
)
196 length
-= sizeof in
->header
;
197 flags
= le32_to_cpu(in
->header
.flags
);
198 if (flags
& ~(FUNCTIONFS_HAS_FS_DESC
| FUNCTIONFS_HAS_HS_DESC
|
199 FUNCTIONFS_HAS_SS_DESC
))
202 #define GET_NEXT_COUNT_IF_FLAG(ret, flg) do { \
203 if (!(flags & (flg))) \
207 ret = le32_to_cpu(*counts); \
212 GET_NEXT_COUNT_IF_FLAG(fs_count
, FUNCTIONFS_HAS_FS_DESC
);
213 GET_NEXT_COUNT_IF_FLAG(hs_count
, FUNCTIONFS_HAS_HS_DESC
);
214 GET_NEXT_COUNT_IF_FLAG(count
, FUNCTIONFS_HAS_SS_DESC
);
216 count
= fs_count
+ hs_count
;
219 descs_start
= (const void *)counts
;
221 #undef GET_NEXT_COUNT_IF_FLAG
225 * Find the end of FS and HS USB descriptors. SS descriptors
226 * are ignored since legacy format does not support them.
228 descs_end
= descs_start
;
230 if (length
< *descs_end
)
232 length
-= *descs_end
;
233 descs_end
+= *descs_end
;
236 /* Allocate legacy descriptors and copy the data. */
238 #pragma GCC diagnostic push
239 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
241 struct usb_functionfs_descs_head header
;
243 } __attribute__((packed
)) *out
;
244 #pragma GCC diagnostic pop
246 length
= sizeof out
->header
+ (descs_end
- descs_start
);
247 out
= malloc(length
);
248 out
->header
.magic
= cpu_to_le32(FUNCTIONFS_DESCRIPTORS_MAGIC
);
249 out
->header
.length
= cpu_to_le32(length
);
250 out
->header
.fs_count
= cpu_to_le32(fs_count
);
251 out
->header
.hs_count
= cpu_to_le32(hs_count
);
252 memcpy(out
->descriptors
, descs_start
, descs_end
- descs_start
);
260 #define STR_INTERFACE_ "Source/Sink"
262 static const struct {
263 struct usb_functionfs_strings_head header
;
266 const char str1
[sizeof STR_INTERFACE_
];
267 } __attribute__((packed
)) lang0
;
268 } __attribute__((packed
)) strings
= {
270 .magic
= cpu_to_le32(FUNCTIONFS_STRINGS_MAGIC
),
271 .length
= cpu_to_le32(sizeof strings
),
272 .str_count
= cpu_to_le32(1),
273 .lang_count
= cpu_to_le32(1),
276 cpu_to_le16(0x0409), /* en-us */
281 #define STR_INTERFACE strings.lang0.str1
284 /******************** Files and Threads Handling ****************************/
288 static ssize_t
read_wrap(struct thread
*t
, void *buf
, size_t nbytes
);
289 static ssize_t
write_wrap(struct thread
*t
, const void *buf
, size_t nbytes
);
290 static ssize_t
ep0_consume(struct thread
*t
, const void *buf
, size_t nbytes
);
291 static ssize_t
fill_in_buf(struct thread
*t
, void *buf
, size_t nbytes
);
292 static ssize_t
empty_out_buf(struct thread
*t
, const void *buf
, size_t nbytes
);
295 static struct thread
{
296 const char *const filename
;
299 ssize_t (*in
)(struct thread
*, void *, size_t);
300 const char *const in_name
;
302 ssize_t (*out
)(struct thread
*, const void *, size_t);
303 const char *const out_name
;
311 "ep0", 4 * sizeof(struct usb_functionfs_event
),
313 ep0_consume
, "<consume>",
325 empty_out_buf
, "<out>",
331 static void init_thread(struct thread
*t
)
333 t
->buf
= malloc(t
->buf_size
);
334 die_on(!t
->buf
, "malloc");
336 t
->fd
= open(t
->filename
, O_RDWR
);
337 die_on(t
->fd
< 0, "%s", t
->filename
);
340 static void cleanup_thread(void *arg
)
342 struct thread
*t
= arg
;
350 /* test the FIFO ioctls (non-ep0 code paths) */
352 ret
= ioctl(fd
, FUNCTIONFS_FIFO_STATUS
);
354 /* ENODEV reported after disconnect */
356 err("%s: get fifo status", t
->filename
);
358 warn("%s: unclaimed = %d\n", t
->filename
, ret
);
359 if (ioctl(fd
, FUNCTIONFS_FIFO_FLUSH
) < 0)
360 err("%s: fifo flush", t
->filename
);
365 err("%s: close", t
->filename
);
371 static void *start_thread_helper(void *arg
)
373 const char *name
, *op
, *in_name
, *out_name
;
374 struct thread
*t
= arg
;
377 info("%s: starts\n", t
->filename
);
378 in_name
= t
->in_name
? t
->in_name
: t
->filename
;
379 out_name
= t
->out_name
? t
->out_name
: t
->filename
;
381 pthread_cleanup_push(cleanup_thread
, arg
);
384 pthread_testcancel();
386 ret
= t
->in(t
, t
->buf
, t
->buf_size
);
388 ret
= t
->out(t
, t
->buf
, ret
);
399 debug("%s: %s: EOF", name
, op
);
401 } else if (errno
== EINTR
|| errno
== EAGAIN
) {
402 debug("%s: %s", name
, op
);
404 warn("%s: %s", name
, op
);
409 pthread_cleanup_pop(1);
412 info("%s: ends\n", t
->filename
);
416 static void start_thread(struct thread
*t
)
418 debug("%s: starting\n", t
->filename
);
420 die_on(pthread_create(&t
->id
, NULL
, start_thread_helper
, t
) < 0,
421 "pthread_create(%s)", t
->filename
);
424 static void join_thread(struct thread
*t
)
426 int ret
= pthread_join(t
->id
, NULL
);
429 err("%s: joining thread", t
->filename
);
431 debug("%s: joined\n", t
->filename
);
435 static ssize_t
read_wrap(struct thread
*t
, void *buf
, size_t nbytes
)
437 return read(t
->fd
, buf
, nbytes
);
440 static ssize_t
write_wrap(struct thread
*t
, const void *buf
, size_t nbytes
)
442 return write(t
->fd
, buf
, nbytes
);
446 /******************** Empty/Fill buffer routines ****************************/
448 /* 0 -- stream of zeros, 1 -- i % 63, 2 -- pipe */
449 enum pattern
{ PAT_ZERO
, PAT_SEQ
, PAT_PIPE
};
450 static enum pattern pattern
;
453 fill_in_buf(struct thread
*ignore
, void *buf
, size_t nbytes
)
462 memset(buf
, 0, nbytes
);
466 for (p
= buf
, i
= 0; i
< nbytes
; ++i
, ++p
)
471 return fread(buf
, 1, nbytes
, stdin
);
478 empty_out_buf(struct thread
*ignore
, const void *buf
, size_t nbytes
)
490 for (p
= buf
, len
= 0; len
< nbytes
; ++p
, ++len
)
496 for (p
= buf
, len
= 0; len
< nbytes
; ++p
, ++len
)
497 if (*p
!= len
% 63) {
504 ret
= fwrite(buf
, nbytes
, 1, stdout
);
510 err("bad OUT byte %zd, expected %02x got %02x\n",
512 for (p
= buf
, len
= 0; len
< nbytes
; ++p
, ++len
) {
514 fprintf(stderr
, "%4zd:", len
);
515 fprintf(stderr
, " %02x", *p
);
516 if (31 == (len
% 32))
517 fprintf(stderr
, "\n");
528 /******************** Endpoints routines ************************************/
530 static void handle_setup(const struct usb_ctrlrequest
*setup
)
532 printf("bRequestType = %d\n", setup
->bRequestType
);
533 printf("bRequest = %d\n", setup
->bRequest
);
534 printf("wValue = %d\n", le16_to_cpu(setup
->wValue
));
535 printf("wIndex = %d\n", le16_to_cpu(setup
->wIndex
));
536 printf("wLength = %d\n", le16_to_cpu(setup
->wLength
));
540 ep0_consume(struct thread
*ignore
, const void *buf
, size_t nbytes
)
542 static const char *const names
[] = {
543 [FUNCTIONFS_BIND
] = "BIND",
544 [FUNCTIONFS_UNBIND
] = "UNBIND",
545 [FUNCTIONFS_ENABLE
] = "ENABLE",
546 [FUNCTIONFS_DISABLE
] = "DISABLE",
547 [FUNCTIONFS_SETUP
] = "SETUP",
548 [FUNCTIONFS_SUSPEND
] = "SUSPEND",
549 [FUNCTIONFS_RESUME
] = "RESUME",
552 const struct usb_functionfs_event
*event
= buf
;
557 for (n
= nbytes
/ sizeof *event
; n
; --n
, ++event
)
558 switch (event
->type
) {
559 case FUNCTIONFS_BIND
:
560 case FUNCTIONFS_UNBIND
:
561 case FUNCTIONFS_ENABLE
:
562 case FUNCTIONFS_DISABLE
:
563 case FUNCTIONFS_SETUP
:
564 case FUNCTIONFS_SUSPEND
:
565 case FUNCTIONFS_RESUME
:
566 printf("Event %s\n", names
[event
->type
]);
567 if (event
->type
== FUNCTIONFS_SETUP
)
568 handle_setup(&event
->u
.setup
);
572 printf("Event %03u (unknown)\n", event
->type
);
578 static void ep0_init(struct thread
*t
, bool legacy_descriptors
)
584 if (legacy_descriptors
) {
585 info("%s: writing descriptors\n", t
->filename
);
589 info("%s: writing descriptors (in v2 format)\n", t
->filename
);
590 ret
= write(t
->fd
, &descriptors
, sizeof descriptors
);
592 if (ret
< 0 && errno
== EINVAL
) {
593 warn("%s: new format rejected, trying legacy\n", t
->filename
);
595 len
= descs_to_legacy(&legacy
, &descriptors
);
597 ret
= write(t
->fd
, legacy
, len
);
601 die_on(ret
< 0, "%s: write: descriptors", t
->filename
);
603 info("%s: writing strings\n", t
->filename
);
604 ret
= write(t
->fd
, &strings
, sizeof strings
);
605 die_on(ret
< 0, "%s: write: strings", t
->filename
);
609 /******************** Main **************************************************/
611 int main(int argc
, char **argv
)
613 bool legacy_descriptors
;
616 legacy_descriptors
= argc
> 2 && !strcmp(argv
[1], "-l");
618 init_thread(threads
);
619 ep0_init(threads
, legacy_descriptors
);
621 for (i
= 1; i
< sizeof threads
/ sizeof *threads
; ++i
)
622 init_thread(threads
+ i
);
624 for (i
= 1; i
< sizeof threads
/ sizeof *threads
; ++i
)
625 start_thread(threads
+ i
);
627 start_thread_helper(threads
);
629 for (i
= 1; i
< sizeof threads
/ sizeof *threads
; ++i
)
630 join_thread(threads
+ i
);