Linux Audio

Check our new training course

Loading...
v4.10.11
  1/*
  2 * ffs-test.c -- user mode filesystem api for usb composite function
  3 *
  4 * Copyright (C) 2010 Samsung Electronics
  5 *                    Author: Michal Nazarewicz <mina86@mina86.com>
  6 *
  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.
 11 *
 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.
 16 *
 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
 20 */
 21
 22/* $(CROSS_COMPILE)cc -Wall -Wextra -g -o ffs-test ffs-test.c -lpthread */
 23
 24
 25#define _BSD_SOURCE /* for endian.h */
 26
 27#include <endian.h>
 28#include <errno.h>
 29#include <fcntl.h>
 30#include <pthread.h>
 31#include <stdarg.h>
 32#include <stdbool.h>
 33#include <stdio.h>
 34#include <stdlib.h>
 35#include <string.h>
 36#include <sys/ioctl.h>
 37#include <sys/stat.h>
 38#include <sys/types.h>
 39#include <unistd.h>
 40#include <tools/le_byteshift.h>
 41
 42#include "../../include/uapi/linux/usb/functionfs.h"
 43
 44
 45/******************** Little Endian Handling ********************************/
 46
 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)
 51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 52
 53/******************** Messages and Errors ***********************************/
 54
 55static const char argv0[] = "ffs-test";
 56
 57static unsigned verbosity = 7;
 58
 59static void _msg(unsigned level, const char *fmt, ...)
 60{
 61	if (level < 2)
 62		level = 2;
 63	else if (level > 7)
 64		level = 7;
 65
 66	if (level <= verbosity) {
 67		static const char levels[8][6] = {
 68			[2] = "crit:",
 69			[3] = "err: ",
 70			[4] = "warn:",
 71			[5] = "note:",
 72			[6] = "info:",
 73			[7] = "dbg: "
 74		};
 75
 76		int _errno = errno;
 77		va_list ap;
 78
 79		fprintf(stderr, "%s: %s ", argv0, levels[level]);
 80		va_start(ap, fmt);
 81		vfprintf(stderr, fmt, ap);
 82		va_end(ap);
 83
 84		if (fmt[strlen(fmt) - 1] != '\n') {
 85			char buffer[128];
 86			strerror_r(_errno, buffer, sizeof buffer);
 87			fprintf(stderr, ": (-%d) %s\n", _errno, buffer);
 88		}
 89
 90		fflush(stderr);
 91	}
 92}
 93
 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__)
100
101#define die_on(cond, ...) do { \
102	if (cond) \
103		die(__VA_ARGS__); \
104	} while (0)
105
106
107/******************** Descriptors and Strings *******************************/
108
109static const struct {
110	struct usb_functionfs_descs_head_v2 header;
111	__le32 fs_count;
112	__le32 hs_count;
113	struct {
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 = {
119	.header = {
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),
 
 
124	},
125	.fs_count = cpu_to_le32(3),
126	.fs_descs = {
127		.intf = {
128			.bLength = sizeof descriptors.fs_descs.intf,
129			.bDescriptorType = USB_DT_INTERFACE,
130			.bNumEndpoints = 2,
131			.bInterfaceClass = USB_CLASS_VENDOR_SPEC,
132			.iInterface = 1,
133		},
134		.sink = {
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) */
140		},
141		.source = {
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) */
147		},
148	},
149	.hs_count = cpu_to_le32(3),
150	.hs_descs = {
151		.intf = {
152			.bLength = sizeof descriptors.fs_descs.intf,
153			.bDescriptorType = USB_DT_INTERFACE,
154			.bNumEndpoints = 2,
155			.bInterfaceClass = USB_CLASS_VENDOR_SPEC,
156			.iInterface = 1,
157		},
158		.sink = {
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),
164		},
165		.source = {
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 */
172		},
173	},
174};
175
176static size_t descs_to_legacy(void **legacy, const void *descriptors_v2)
177{
178	const unsigned char *descs_end, *descs_start;
179	__u32 length, fs_count = 0, hs_count = 0, count;
180
181	/* Read v2 header */
182	{
183		const struct {
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;
188		__u32 flags;
189
190		if (le32_to_cpu(in->header.magic) !=
191		    FUNCTIONFS_DESCRIPTORS_MAGIC_V2)
192			return 0;
193		length = le32_to_cpu(in->header.length);
194		if (length <= sizeof in->header)
195			return 0;
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))
200			return 0;
201
202#define GET_NEXT_COUNT_IF_FLAG(ret, flg) do {		\
203			if (!(flags & (flg)))		\
204				break;			\
205			if (length < 4)			\
206				return 0;		\
207			ret = le32_to_cpu(*counts);	\
208			length -= 4;			\
209			++counts;			\
210		} while (0)
211
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);
215
216		count = fs_count + hs_count;
217		if (!count)
218			return 0;
219		descs_start = (const void *)counts;
220
221#undef GET_NEXT_COUNT_IF_FLAG
222	}
223
224	/*
225	 * Find the end of FS and HS USB descriptors.  SS descriptors
226	 * are ignored since legacy format does not support them.
227	 */
228	descs_end = descs_start;
229	do {
230		if (length < *descs_end)
231			return 0;
232		length -= *descs_end;
233		descs_end += *descs_end;
234	} while (--count);
235
236	/* Allocate legacy descriptors and copy the data. */
237	{
238#pragma GCC diagnostic push
239#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
240		struct {
241			struct usb_functionfs_descs_head header;
242			__u8 descriptors[];
243		} __attribute__((packed)) *out;
244#pragma GCC diagnostic pop
245
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);
253		*legacy = out;
254	}
255
256	return length;
257}
258
259
260#define STR_INTERFACE_ "Source/Sink"
261
262static const struct {
263	struct usb_functionfs_strings_head header;
264	struct {
265		__le16 code;
266		const char str1[sizeof STR_INTERFACE_];
267	} __attribute__((packed)) lang0;
268} __attribute__((packed)) strings = {
269	.header = {
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),
274	},
275	.lang0 = {
276		cpu_to_le16(0x0409), /* en-us */
277		STR_INTERFACE_,
278	},
279};
280
281#define STR_INTERFACE strings.lang0.str1
282
283
284/******************** Files and Threads Handling ****************************/
285
286struct thread;
287
288static ssize_t read_wrap(struct thread *t, void *buf, size_t nbytes);
289static ssize_t write_wrap(struct thread *t, const void *buf, size_t nbytes);
290static ssize_t ep0_consume(struct thread *t, const void *buf, size_t nbytes);
291static ssize_t fill_in_buf(struct thread *t, void *buf, size_t nbytes);
292static ssize_t empty_out_buf(struct thread *t, const void *buf, size_t nbytes);
293
294
295static struct thread {
296	const char *const filename;
297	size_t buf_size;
298
299	ssize_t (*in)(struct thread *, void *, size_t);
300	const char *const in_name;
301
302	ssize_t (*out)(struct thread *, const void *, size_t);
303	const char *const out_name;
304
305	int fd;
306	pthread_t id;
307	void *buf;
308	ssize_t status;
309} threads[] = {
310	{
311		"ep0", 4 * sizeof(struct usb_functionfs_event),
312		read_wrap, NULL,
313		ep0_consume, "<consume>",
314		0, 0, NULL, 0
315	},
316	{
317		"ep1", 8 * 1024,
318		fill_in_buf, "<in>",
319		write_wrap, NULL,
320		0, 0, NULL, 0
321	},
322	{
323		"ep2", 8 * 1024,
324		read_wrap, NULL,
325		empty_out_buf, "<out>",
326		0, 0, NULL, 0
327	},
328};
329
330
331static void init_thread(struct thread *t)
332{
333	t->buf = malloc(t->buf_size);
334	die_on(!t->buf, "malloc");
335
336	t->fd = open(t->filename, O_RDWR);
337	die_on(t->fd < 0, "%s", t->filename);
338}
339
340static void cleanup_thread(void *arg)
341{
342	struct thread *t = arg;
343	int ret, fd;
344
345	fd = t->fd;
346	if (t->fd < 0)
347		return;
348	t->fd = -1;
349
350	/* test the FIFO ioctls (non-ep0 code paths) */
351	if (t != threads) {
352		ret = ioctl(fd, FUNCTIONFS_FIFO_STATUS);
353		if (ret < 0) {
354			/* ENODEV reported after disconnect */
355			if (errno != ENODEV)
356				err("%s: get fifo status", t->filename);
357		} else if (ret) {
358			warn("%s: unclaimed = %d\n", t->filename, ret);
359			if (ioctl(fd, FUNCTIONFS_FIFO_FLUSH) < 0)
360				err("%s: fifo flush", t->filename);
361		}
362	}
363
364	if (close(fd) < 0)
365		err("%s: close", t->filename);
366
367	free(t->buf);
368	t->buf = NULL;
369}
370
371static void *start_thread_helper(void *arg)
372{
373	const char *name, *op, *in_name, *out_name;
374	struct thread *t = arg;
375	ssize_t ret;
376
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;
380
381	pthread_cleanup_push(cleanup_thread, arg);
382
383	for (;;) {
384		pthread_testcancel();
385
386		ret = t->in(t, t->buf, t->buf_size);
387		if (ret > 0) {
388			ret = t->out(t, t->buf, ret);
389			name = out_name;
390			op = "write";
391		} else {
392			name = in_name;
393			op = "read";
394		}
395
396		if (ret > 0) {
397			/* nop */
398		} else if (!ret) {
399			debug("%s: %s: EOF", name, op);
400			break;
401		} else if (errno == EINTR || errno == EAGAIN) {
402			debug("%s: %s", name, op);
403		} else {
404			warn("%s: %s", name, op);
405			break;
406		}
407	}
408
409	pthread_cleanup_pop(1);
410
411	t->status = ret;
412	info("%s: ends\n", t->filename);
413	return NULL;
414}
415
416static void start_thread(struct thread *t)
417{
418	debug("%s: starting\n", t->filename);
419
420	die_on(pthread_create(&t->id, NULL, start_thread_helper, t) < 0,
421	       "pthread_create(%s)", t->filename);
422}
423
424static void join_thread(struct thread *t)
425{
426	int ret = pthread_join(t->id, NULL);
427
428	if (ret < 0)
429		err("%s: joining thread", t->filename);
430	else
431		debug("%s: joined\n", t->filename);
432}
433
434
435static ssize_t read_wrap(struct thread *t, void *buf, size_t nbytes)
436{
437	return read(t->fd, buf, nbytes);
438}
439
440static ssize_t write_wrap(struct thread *t, const void *buf, size_t nbytes)
441{
442	return write(t->fd, buf, nbytes);
443}
444
445
446/******************** Empty/Fill buffer routines ****************************/
447
448/* 0 -- stream of zeros, 1 -- i % 63, 2 -- pipe */
449enum pattern { PAT_ZERO, PAT_SEQ, PAT_PIPE };
450static enum pattern pattern;
451
452static ssize_t
453fill_in_buf(struct thread *ignore, void *buf, size_t nbytes)
454{
455	size_t i;
456	__u8 *p;
457
458	(void)ignore;
459
460	switch (pattern) {
461	case PAT_ZERO:
462		memset(buf, 0, nbytes);
463		break;
464
465	case PAT_SEQ:
466		for (p = buf, i = 0; i < nbytes; ++i, ++p)
467			*p = i % 63;
468		break;
469
470	case PAT_PIPE:
471		return fread(buf, 1, nbytes, stdin);
472	}
473
474	return nbytes;
475}
476
477static ssize_t
478empty_out_buf(struct thread *ignore, const void *buf, size_t nbytes)
479{
480	const __u8 *p;
481	__u8 expected;
482	ssize_t ret;
483	size_t len;
484
485	(void)ignore;
486
487	switch (pattern) {
488	case PAT_ZERO:
489		expected = 0;
490		for (p = buf, len = 0; len < nbytes; ++p, ++len)
491			if (*p)
492				goto invalid;
493		break;
494
495	case PAT_SEQ:
496		for (p = buf, len = 0; len < nbytes; ++p, ++len)
497			if (*p != len % 63) {
498				expected = len % 63;
499				goto invalid;
500			}
501		break;
502
503	case PAT_PIPE:
504		ret = fwrite(buf, nbytes, 1, stdout);
505		if (ret > 0)
506			fflush(stdout);
507		break;
508
509invalid:
510		err("bad OUT byte %zd, expected %02x got %02x\n",
511		    len, expected, *p);
512		for (p = buf, len = 0; len < nbytes; ++p, ++len) {
513			if (0 == (len % 32))
514				fprintf(stderr, "%4zd:", len);
515			fprintf(stderr, " %02x", *p);
516			if (31 == (len % 32))
517				fprintf(stderr, "\n");
518		}
519		fflush(stderr);
520		errno = EILSEQ;
521		return -1;
522	}
523
524	return len;
525}
526
527
528/******************** Endpoints routines ************************************/
529
530static void handle_setup(const struct usb_ctrlrequest *setup)
531{
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));
537}
538
539static ssize_t
540ep0_consume(struct thread *ignore, const void *buf, size_t nbytes)
541{
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",
550	};
551
552	const struct usb_functionfs_event *event = buf;
553	size_t n;
554
555	(void)ignore;
556
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);
569			break;
570
571		default:
572			printf("Event %03u (unknown)\n", event->type);
573		}
574
575	return nbytes;
576}
577
578static void ep0_init(struct thread *t, bool legacy_descriptors)
579{
580	void *legacy;
581	ssize_t ret;
582	size_t len;
583
584	if (legacy_descriptors) {
585		info("%s: writing descriptors\n", t->filename);
586		goto legacy;
587	}
588
589	info("%s: writing descriptors (in v2 format)\n", t->filename);
590	ret = write(t->fd, &descriptors, sizeof descriptors);
591
592	if (ret < 0 && errno == EINVAL) {
593		warn("%s: new format rejected, trying legacy\n", t->filename);
594legacy:
595		len = descs_to_legacy(&legacy, &descriptors);
596		if (len) {
597			ret = write(t->fd, legacy, len);
598			free(legacy);
599		}
600	}
601	die_on(ret < 0, "%s: write: descriptors", t->filename);
602
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);
606}
607
608
609/******************** Main **************************************************/
610
611int main(int argc, char **argv)
612{
613	bool legacy_descriptors;
614	unsigned i;
615
616	legacy_descriptors = argc > 2 && !strcmp(argv[1], "-l");
617
618	init_thread(threads);
619	ep0_init(threads, legacy_descriptors);
620
621	for (i = 1; i < sizeof threads / sizeof *threads; ++i)
622		init_thread(threads + i);
623
624	for (i = 1; i < sizeof threads / sizeof *threads; ++i)
625		start_thread(threads + i);
626
627	start_thread_helper(threads);
628
629	for (i = 1; i < sizeof threads / sizeof *threads; ++i)
630		join_thread(threads + i);
631
632	return 0;
633}
v3.1
  1/*
  2 * ffs-test.c.c -- user mode filesystem api for usb composite function
  3 *
  4 * Copyright (C) 2010 Samsung Electronics
  5 *                    Author: Michal Nazarewicz <m.nazarewicz@samsung.com>
  6 *
  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.
 11 *
 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.
 16 *
 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
 20 */
 21
 22/* $(CROSS_COMPILE)cc -Wall -Wextra -g -o ffs-test ffs-test.c -lpthread */
 23
 24
 25#define _BSD_SOURCE /* for endian.h */
 26
 27#include <endian.h>
 28#include <errno.h>
 29#include <fcntl.h>
 30#include <pthread.h>
 31#include <stdarg.h>
 
 32#include <stdio.h>
 33#include <stdlib.h>
 34#include <string.h>
 35#include <sys/ioctl.h>
 36#include <sys/stat.h>
 37#include <sys/types.h>
 38#include <unistd.h>
 
 39
 40#include "../../include/linux/usb/functionfs.h"
 41
 42
 43/******************** Little Endian Handling ********************************/
 44
 45#define cpu_to_le16(x)  htole16(x)
 46#define cpu_to_le32(x)  htole32(x)
 47#define le32_to_cpu(x)  le32toh(x)
 48#define le16_to_cpu(x)  le16toh(x)
 49
 50static inline __u16 get_unaligned_le16(const void *_ptr)
 51{
 52	const __u8 *ptr = _ptr;
 53	return ptr[0] | (ptr[1] << 8);
 54}
 55
 56static inline __u32 get_unaligned_le32(const void *_ptr)
 57{
 58	const __u8 *ptr = _ptr;
 59	return ptr[0] | (ptr[1] << 8) | (ptr[2] << 16) | (ptr[3] << 24);
 60}
 61
 62static inline void put_unaligned_le16(__u16 val, void *_ptr)
 63{
 64	__u8 *ptr = _ptr;
 65	*ptr++ = val;
 66	*ptr++ = val >> 8;
 67}
 68
 69static inline void put_unaligned_le32(__u32 val, void *_ptr)
 70{
 71	__u8 *ptr = _ptr;
 72	*ptr++ = val;
 73	*ptr++ = val >>  8;
 74	*ptr++ = val >> 16;
 75	*ptr++ = val >> 24;
 76}
 77
 78
 79/******************** Messages and Errors ***********************************/
 80
 81static const char argv0[] = "ffs-test";
 82
 83static unsigned verbosity = 7;
 84
 85static void _msg(unsigned level, const char *fmt, ...)
 86{
 87	if (level < 2)
 88		level = 2;
 89	else if (level > 7)
 90		level = 7;
 91
 92	if (level <= verbosity) {
 93		static const char levels[8][6] = {
 94			[2] = "crit:",
 95			[3] = "err: ",
 96			[4] = "warn:",
 97			[5] = "note:",
 98			[6] = "info:",
 99			[7] = "dbg: "
100		};
101
102		int _errno = errno;
103		va_list ap;
104
105		fprintf(stderr, "%s: %s ", argv0, levels[level]);
106		va_start(ap, fmt);
107		vfprintf(stderr, fmt, ap);
108		va_end(ap);
109
110		if (fmt[strlen(fmt) - 1] != '\n') {
111			char buffer[128];
112			strerror_r(_errno, buffer, sizeof buffer);
113			fprintf(stderr, ": (-%d) %s\n", _errno, buffer);
114		}
115
116		fflush(stderr);
117	}
118}
119
120#define die(...)  (_msg(2, __VA_ARGS__), exit(1))
121#define err(...)   _msg(3, __VA_ARGS__)
122#define warn(...)  _msg(4, __VA_ARGS__)
123#define note(...)  _msg(5, __VA_ARGS__)
124#define info(...)  _msg(6, __VA_ARGS__)
125#define debug(...) _msg(7, __VA_ARGS__)
126
127#define die_on(cond, ...) do { \
128	if (cond) \
129		die(__VA_ARGS__); \
130	} while (0)
131
132
133/******************** Descriptors and Strings *******************************/
134
135static const struct {
136	struct usb_functionfs_descs_head header;
 
 
137	struct {
138		struct usb_interface_descriptor intf;
139		struct usb_endpoint_descriptor_no_audio sink;
140		struct usb_endpoint_descriptor_no_audio source;
141	} __attribute__((packed)) fs_descs, hs_descs;
142} __attribute__((packed)) descriptors = {
143	.header = {
144		.magic = cpu_to_le32(FUNCTIONFS_DESCRIPTORS_MAGIC),
 
 
145		.length = cpu_to_le32(sizeof descriptors),
146		.fs_count = 3,
147		.hs_count = 3,
148	},
 
149	.fs_descs = {
150		.intf = {
151			.bLength = sizeof descriptors.fs_descs.intf,
152			.bDescriptorType = USB_DT_INTERFACE,
153			.bNumEndpoints = 2,
154			.bInterfaceClass = USB_CLASS_VENDOR_SPEC,
155			.iInterface = 1,
156		},
157		.sink = {
158			.bLength = sizeof descriptors.fs_descs.sink,
159			.bDescriptorType = USB_DT_ENDPOINT,
160			.bEndpointAddress = 1 | USB_DIR_IN,
161			.bmAttributes = USB_ENDPOINT_XFER_BULK,
162			/* .wMaxPacketSize = autoconfiguration (kernel) */
163		},
164		.source = {
165			.bLength = sizeof descriptors.fs_descs.source,
166			.bDescriptorType = USB_DT_ENDPOINT,
167			.bEndpointAddress = 2 | USB_DIR_OUT,
168			.bmAttributes = USB_ENDPOINT_XFER_BULK,
169			/* .wMaxPacketSize = autoconfiguration (kernel) */
170		},
171	},
 
172	.hs_descs = {
173		.intf = {
174			.bLength = sizeof descriptors.fs_descs.intf,
175			.bDescriptorType = USB_DT_INTERFACE,
176			.bNumEndpoints = 2,
177			.bInterfaceClass = USB_CLASS_VENDOR_SPEC,
178			.iInterface = 1,
179		},
180		.sink = {
181			.bLength = sizeof descriptors.hs_descs.sink,
182			.bDescriptorType = USB_DT_ENDPOINT,
183			.bEndpointAddress = 1 | USB_DIR_IN,
184			.bmAttributes = USB_ENDPOINT_XFER_BULK,
185			.wMaxPacketSize = cpu_to_le16(512),
186		},
187		.source = {
188			.bLength = sizeof descriptors.hs_descs.source,
189			.bDescriptorType = USB_DT_ENDPOINT,
190			.bEndpointAddress = 2 | USB_DIR_OUT,
191			.bmAttributes = USB_ENDPOINT_XFER_BULK,
192			.wMaxPacketSize = cpu_to_le16(512),
193			.bInterval = 1, /* NAK every 1 uframe */
194		},
195	},
196};
197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
199#define STR_INTERFACE_ "Source/Sink"
200
201static const struct {
202	struct usb_functionfs_strings_head header;
203	struct {
204		__le16 code;
205		const char str1[sizeof STR_INTERFACE_];
206	} __attribute__((packed)) lang0;
207} __attribute__((packed)) strings = {
208	.header = {
209		.magic = cpu_to_le32(FUNCTIONFS_STRINGS_MAGIC),
210		.length = cpu_to_le32(sizeof strings),
211		.str_count = cpu_to_le32(1),
212		.lang_count = cpu_to_le32(1),
213	},
214	.lang0 = {
215		cpu_to_le16(0x0409), /* en-us */
216		STR_INTERFACE_,
217	},
218};
219
220#define STR_INTERFACE strings.lang0.str1
221
222
223/******************** Files and Threads Handling ****************************/
224
225struct thread;
226
227static ssize_t read_wrap(struct thread *t, void *buf, size_t nbytes);
228static ssize_t write_wrap(struct thread *t, const void *buf, size_t nbytes);
229static ssize_t ep0_consume(struct thread *t, const void *buf, size_t nbytes);
230static ssize_t fill_in_buf(struct thread *t, void *buf, size_t nbytes);
231static ssize_t empty_out_buf(struct thread *t, const void *buf, size_t nbytes);
232
233
234static struct thread {
235	const char *const filename;
236	size_t buf_size;
237
238	ssize_t (*in)(struct thread *, void *, size_t);
239	const char *const in_name;
240
241	ssize_t (*out)(struct thread *, const void *, size_t);
242	const char *const out_name;
243
244	int fd;
245	pthread_t id;
246	void *buf;
247	ssize_t status;
248} threads[] = {
249	{
250		"ep0", 4 * sizeof(struct usb_functionfs_event),
251		read_wrap, NULL,
252		ep0_consume, "<consume>",
253		0, 0, NULL, 0
254	},
255	{
256		"ep1", 8 * 1024,
257		fill_in_buf, "<in>",
258		write_wrap, NULL,
259		0, 0, NULL, 0
260	},
261	{
262		"ep2", 8 * 1024,
263		read_wrap, NULL,
264		empty_out_buf, "<out>",
265		0, 0, NULL, 0
266	},
267};
268
269
270static void init_thread(struct thread *t)
271{
272	t->buf = malloc(t->buf_size);
273	die_on(!t->buf, "malloc");
274
275	t->fd = open(t->filename, O_RDWR);
276	die_on(t->fd < 0, "%s", t->filename);
277}
278
279static void cleanup_thread(void *arg)
280{
281	struct thread *t = arg;
282	int ret, fd;
283
284	fd = t->fd;
285	if (t->fd < 0)
286		return;
287	t->fd = -1;
288
289	/* test the FIFO ioctls (non-ep0 code paths) */
290	if (t != threads) {
291		ret = ioctl(fd, FUNCTIONFS_FIFO_STATUS);
292		if (ret < 0) {
293			/* ENODEV reported after disconnect */
294			if (errno != ENODEV)
295				err("%s: get fifo status", t->filename);
296		} else if (ret) {
297			warn("%s: unclaimed = %d\n", t->filename, ret);
298			if (ioctl(fd, FUNCTIONFS_FIFO_FLUSH) < 0)
299				err("%s: fifo flush", t->filename);
300		}
301	}
302
303	if (close(fd) < 0)
304		err("%s: close", t->filename);
305
306	free(t->buf);
307	t->buf = NULL;
308}
309
310static void *start_thread_helper(void *arg)
311{
312	const char *name, *op, *in_name, *out_name;
313	struct thread *t = arg;
314	ssize_t ret;
315
316	info("%s: starts\n", t->filename);
317	in_name = t->in_name ? t->in_name : t->filename;
318	out_name = t->out_name ? t->out_name : t->filename;
319
320	pthread_cleanup_push(cleanup_thread, arg);
321
322	for (;;) {
323		pthread_testcancel();
324
325		ret = t->in(t, t->buf, t->buf_size);
326		if (ret > 0) {
327			ret = t->out(t, t->buf, t->buf_size);
328			name = out_name;
329			op = "write";
330		} else {
331			name = in_name;
332			op = "read";
333		}
334
335		if (ret > 0) {
336			/* nop */
337		} else if (!ret) {
338			debug("%s: %s: EOF", name, op);
339			break;
340		} else if (errno == EINTR || errno == EAGAIN) {
341			debug("%s: %s", name, op);
342		} else {
343			warn("%s: %s", name, op);
344			break;
345		}
346	}
347
348	pthread_cleanup_pop(1);
349
350	t->status = ret;
351	info("%s: ends\n", t->filename);
352	return NULL;
353}
354
355static void start_thread(struct thread *t)
356{
357	debug("%s: starting\n", t->filename);
358
359	die_on(pthread_create(&t->id, NULL, start_thread_helper, t) < 0,
360	       "pthread_create(%s)", t->filename);
361}
362
363static void join_thread(struct thread *t)
364{
365	int ret = pthread_join(t->id, NULL);
366
367	if (ret < 0)
368		err("%s: joining thread", t->filename);
369	else
370		debug("%s: joined\n", t->filename);
371}
372
373
374static ssize_t read_wrap(struct thread *t, void *buf, size_t nbytes)
375{
376	return read(t->fd, buf, nbytes);
377}
378
379static ssize_t write_wrap(struct thread *t, const void *buf, size_t nbytes)
380{
381	return write(t->fd, buf, nbytes);
382}
383
384
385/******************** Empty/Fill buffer routines ****************************/
386
387/* 0 -- stream of zeros, 1 -- i % 63, 2 -- pipe */
388enum pattern { PAT_ZERO, PAT_SEQ, PAT_PIPE };
389static enum pattern pattern;
390
391static ssize_t
392fill_in_buf(struct thread *ignore, void *buf, size_t nbytes)
393{
394	size_t i;
395	__u8 *p;
396
397	(void)ignore;
398
399	switch (pattern) {
400	case PAT_ZERO:
401		memset(buf, 0, nbytes);
402		break;
403
404	case PAT_SEQ:
405		for (p = buf, i = 0; i < nbytes; ++i, ++p)
406			*p = i % 63;
407		break;
408
409	case PAT_PIPE:
410		return fread(buf, 1, nbytes, stdin);
411	}
412
413	return nbytes;
414}
415
416static ssize_t
417empty_out_buf(struct thread *ignore, const void *buf, size_t nbytes)
418{
419	const __u8 *p;
420	__u8 expected;
421	ssize_t ret;
422	size_t len;
423
424	(void)ignore;
425
426	switch (pattern) {
427	case PAT_ZERO:
428		expected = 0;
429		for (p = buf, len = 0; len < nbytes; ++p, ++len)
430			if (*p)
431				goto invalid;
432		break;
433
434	case PAT_SEQ:
435		for (p = buf, len = 0; len < nbytes; ++p, ++len)
436			if (*p != len % 63) {
437				expected = len % 63;
438				goto invalid;
439			}
440		break;
441
442	case PAT_PIPE:
443		ret = fwrite(buf, nbytes, 1, stdout);
444		if (ret > 0)
445			fflush(stdout);
446		break;
447
448invalid:
449		err("bad OUT byte %zd, expected %02x got %02x\n",
450		    len, expected, *p);
451		for (p = buf, len = 0; len < nbytes; ++p, ++len) {
452			if (0 == (len % 32))
453				fprintf(stderr, "%4zd:", len);
454			fprintf(stderr, " %02x", *p);
455			if (31 == (len % 32))
456				fprintf(stderr, "\n");
457		}
458		fflush(stderr);
459		errno = EILSEQ;
460		return -1;
461	}
462
463	return len;
464}
465
466
467/******************** Endpoints routines ************************************/
468
469static void handle_setup(const struct usb_ctrlrequest *setup)
470{
471	printf("bRequestType = %d\n", setup->bRequestType);
472	printf("bRequest     = %d\n", setup->bRequest);
473	printf("wValue       = %d\n", le16_to_cpu(setup->wValue));
474	printf("wIndex       = %d\n", le16_to_cpu(setup->wIndex));
475	printf("wLength      = %d\n", le16_to_cpu(setup->wLength));
476}
477
478static ssize_t
479ep0_consume(struct thread *ignore, const void *buf, size_t nbytes)
480{
481	static const char *const names[] = {
482		[FUNCTIONFS_BIND] = "BIND",
483		[FUNCTIONFS_UNBIND] = "UNBIND",
484		[FUNCTIONFS_ENABLE] = "ENABLE",
485		[FUNCTIONFS_DISABLE] = "DISABLE",
486		[FUNCTIONFS_SETUP] = "SETUP",
487		[FUNCTIONFS_SUSPEND] = "SUSPEND",
488		[FUNCTIONFS_RESUME] = "RESUME",
489	};
490
491	const struct usb_functionfs_event *event = buf;
492	size_t n;
493
494	(void)ignore;
495
496	for (n = nbytes / sizeof *event; n; --n, ++event)
497		switch (event->type) {
498		case FUNCTIONFS_BIND:
499		case FUNCTIONFS_UNBIND:
500		case FUNCTIONFS_ENABLE:
501		case FUNCTIONFS_DISABLE:
502		case FUNCTIONFS_SETUP:
503		case FUNCTIONFS_SUSPEND:
504		case FUNCTIONFS_RESUME:
505			printf("Event %s\n", names[event->type]);
506			if (event->type == FUNCTIONFS_SETUP)
507				handle_setup(&event->u.setup);
508			break;
509
510		default:
511			printf("Event %03u (unknown)\n", event->type);
512		}
513
514	return nbytes;
515}
516
517static void ep0_init(struct thread *t)
518{
 
519	ssize_t ret;
 
 
 
 
 
 
520
521	info("%s: writing descriptors\n", t->filename);
522	ret = write(t->fd, &descriptors, sizeof descriptors);
 
 
 
 
 
 
 
 
 
 
523	die_on(ret < 0, "%s: write: descriptors", t->filename);
524
525	info("%s: writing strings\n", t->filename);
526	ret = write(t->fd, &strings, sizeof strings);
527	die_on(ret < 0, "%s: write: strings", t->filename);
528}
529
530
531/******************** Main **************************************************/
532
533int main(void)
534{
 
535	unsigned i;
536
537	/* XXX TODO: Argument parsing missing */
538
539	init_thread(threads);
540	ep0_init(threads);
541
542	for (i = 1; i < sizeof threads / sizeof *threads; ++i)
543		init_thread(threads + i);
544
545	for (i = 1; i < sizeof threads / sizeof *threads; ++i)
546		start_thread(threads + i);
547
548	start_thread_helper(threads);
549
550	for (i = 1; i < sizeof threads / sizeof *threads; ++i)
551		join_thread(threads + i);
552
553	return 0;
554}