summaryrefslogtreecommitdiff
path: root/lib/configfs.c
blob: a29e5764656a9baab3fcc13be4d5a90103336dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * ConfigFS Gadget device handling
 *
 * Copyright (C) 2018 Kieran Bingham
 *
 * Contact: Kieran Bingham <kieran.bingham@ideasonboard.com>
 */

/* To provide basename and asprintf from the GNU library. */
 #define _GNU_SOURCE

#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <glob.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include <linux/videodev2.h>

#include "configfs.h"
#include "tools.h"

/* -----------------------------------------------------------------------------
 * Path handling and support
 */

static char *path_join(const char *dirname, const char *name)
{
	char *path;
	int ret;

	ret = asprintf(&path, "%s/%s", dirname, name);

	/*
	 * asprintf returns -1 on allocation or other errors, leaving 'path'
	 * undefined. We shouldn't even call free(path) here. We want to return
	 * NULL on error, so we must manually set it.
	 */
	if (ret < 0)
		path = NULL;

	return path;
}

static char *path_glob_first_match(const char *g)
{
	glob_t globbuf;
	char *match = NULL;

	glob(g, 0, NULL, &globbuf);

	if (globbuf.gl_pathc)
		match = strdup(globbuf.gl_pathv[0]);

	globfree(&globbuf);

	return match;
}

/*
 * Find and return the full path of the first directory entry that satisfies
 * the match function.
 */
static char *dir_first_match(const char *dir, int(*match)(const struct dirent *))
{
	struct dirent **entries;
	unsigned int i;
	int n_entries;
	char *path;

	n_entries = scandir(dir, &entries, match, alphasort);
	if (n_entries < 0)
		return NULL;

	if (n_entries == 0) {
		free(entries);
		return NULL;
	}

	path = path_join(dir, entries[0]->d_name);

	for (i = 0; i < (unsigned int)n_entries; ++i)
		free(entries[i]);

	free(entries);

	return path;
}

/* -----------------------------------------------------------------------------
 * Attribute handling
 */

static int attribute_read(const char *path, const char *file, void *buf,
			  unsigned int len)
{
	char *f;
	int ret;
	int fd;

	f = path_join(path, file);
	if (!f)
		return -ENOMEM;

	fd = open(f, O_RDONLY);
	free(f);
	if (fd == -1) {
		printf("Failed to open attribute %s: %s\n", file,
		       strerror(errno));
		return -ENOENT;
	}

	ret = read(fd, buf, len);
	close(fd);

	if (ret < 0) {
		printf("Failed to read attribute %s: %s\n", file,
		       strerror(errno));
		return -ENODATA;
	}

	return len;
}

static int attribute_read_uint(const char *path, const char *file,
			       unsigned int *val)
{
	/* 4,294,967,295 */
	char buf[11];
	char *endptr;
	int ret;

	ret = attribute_read(path, file, buf, sizeof(buf) - 1);
	if (ret < 0)
		return ret;

	buf[ret] = '\0';

	errno = 0;

	/* base 0: Autodetect hex, octal, decimal. */
	*val = strtoul(buf, &endptr, 0);
	if (errno)
		return -errno;

	if (endptr == buf)
		return -ENODATA;

	return 0;
}

static char *attribute_read_str(const char *path, const char *file)
{
	char buf[1024];
	char *p;
	int ret;

	ret = attribute_read(path, file, buf, sizeof(buf) - 1);
	if (ret < 0)
		return NULL;

	buf[ret] = '\0';

	p = strrchr(buf, '\n');
	if (p != buf)
		*p = '\0';

	return strdup(buf);
}

/* -----------------------------------------------------------------------------
 * UDC parsing
 */

/*
 * udc_find_video_device - Find the video device node for a UVC function
 * @udc: The UDC name
 * @function: The UVC function name
 *
 * This function finds the video device node corresponding to a UVC function as
 * specified by a @function name and @udc name.
 *
 * The @function parameter specifies the name of the USB function, usually in
 * the form "uvc.%u". If NULL the first function found will be used.
 *
 * The @udc parameter specifies the name of the UDC. If NULL any UDC that
 * contains a function matching the @function name will be used.
 *
 * Return a pointer to a newly allocated string containing the video device node
 * full path if the function is found. Otherwise return NULL. The returned
 * pointer must be freed by the caller with a call to free().
 */
static char *udc_find_video_device(const char *udc, const char *function)
{
	char *vpath;
	char *video = NULL;
	glob_t globbuf;
	unsigned int i;
	int ret;

	ret = asprintf(&vpath,
		       "/sys/class/udc/%s/device/gadget*/video4linux/video*",
		       udc ? udc : "*");
	if (!ret)
		return NULL;

	glob(vpath, 0, NULL, &globbuf);
	free(vpath);

	for (i = 0; i < globbuf.gl_pathc; ++i) {
		char *config;
		bool match;

		/* Match on the first if no search string. */
		if (!function)
			break;

		config = attribute_read_str(globbuf.gl_pathv[i],
					    "function_name");
		match = strcmp(function, config) == 0;

		free(config);

		if (match)
			break;
	}

	if (i < globbuf.gl_pathc) {
		const char *v = basename(globbuf.gl_pathv[i]);

		video = path_join("/dev", v);
	}

	globfree(&globbuf);

	return video;
}

/* ------------------------------------------------------------------------
 * GUIDs and formats
 */

#define UVC_GUID_FORMAT_MJPEG \
	{ 'M',  'J',  'P',  'G', 0x00, 0x00, 0x10, 0x00, \
	 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}
#define UVC_GUID_FORMAT_YUY2 \
	{ 'Y',  'U',  'Y',  '2', 0x00, 0x00, 0x10, 0x00, \
	 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}

struct uvc_function_format_info {
	uint8_t guid[16];
	uint32_t fcc;
};

static struct uvc_function_format_info uvc_formats[] = {
	{
		.guid		= UVC_GUID_FORMAT_YUY2,
		.fcc		= V4L2_PIX_FMT_YUYV,
	},
	{
		.guid		= UVC_GUID_FORMAT_MJPEG,
		.fcc		= V4L2_PIX_FMT_MJPEG,
	},
};

/* -----------------------------------------------------------------------------
 * Legacy g_webcam support
 */

static const struct uvc_function_config g_webcam_config = {
	.control = {
		.intf = {
			.bInterfaceNumber = 0,
		},
	},
	.streaming = {
		.intf = {
			.bInterfaceNumber = 1,
		},
		.ep = {
			.bInterval = 1,
			.bMaxBurst = 0,
			.wMaxPacketSize = 1024,
		},
		.num_formats = 2,
		.formats = (struct uvc_function_config_format[]) {
			{
				.index = 1,
				.guid = UVC_GUID_FORMAT_YUY2,
				.fcc = V4L2_PIX_FMT_YUYV,
				.num_frames = 2,
				.frames = (struct uvc_function_config_frame[]) {
					{
						.index = 1,
						.width = 640,
						.height = 360,
						.num_intervals = 3,
						.intervals = (unsigned int[]) {
							666666,
							10000000,
							50000000,
						},
					}, {
						.index = 2,
						.width = 1280,
						.height = 720,
						.num_intervals = 1,
						.intervals = (unsigned int[]) {
							50000000,
						},
					},
				},
			}, {
				.index = 2,
				.guid = UVC_GUID_FORMAT_MJPEG,
				.fcc = V4L2_PIX_FMT_MJPEG,
				.num_frames = 2,
				.frames = (struct uvc_function_config_frame[]) {
					{
						.index = 1,
						.width = 640,
						.height = 360,
						.num_intervals = 3,
						.intervals = (unsigned int[]) {
							666666,
							10000000,
							50000000,
						},
					}, {
						.index = 2,
						.width = 1280,
						.height = 720,
						.num_intervals = 1,
						.intervals = (unsigned int[]) {
							50000000,
						},
					},
				},
			},
		},
	},
};

static void *memdup(const void *src, size_t size)
{
	void *dst;

	dst = malloc(size);
	if (!dst)
		return NULL;
	memcpy(dst, src, size);
	return dst;
}

static int parse_legacy_g_webcam(const char *udc,
				 struct uvc_function_config *fc)
{
	unsigned int i, j;
	size_t size;

	*fc = g_webcam_config;

	/*
	 * We need to duplicate all sub-structures as the
	 * configfs_free_uvc_function() function expects them to be dynamically
	 * allocated.
	 */
	size = sizeof *fc->streaming.formats * fc->streaming.num_formats;
	fc->streaming.formats = memdup(fc->streaming.formats, size);

	for (i = 0; i < fc->streaming.num_formats; ++i) {
		struct uvc_function_config_format *format =
			&fc->streaming.formats[i];

		size = sizeof *format->frames * format->num_frames;
		format->frames = memdup(format->frames, size);

		for (j = 0; j < format->num_frames; ++j) {
			struct uvc_function_config_frame *frame =
				&format->frames[j];

			size = sizeof *frame->intervals * frame->num_intervals;
			frame->intervals = memdup(frame->intervals, size);
		}
	}

	fc->video = udc_find_video_device(udc, NULL);

	return fc->video ? 0 : -ENODEV;
}

/* -----------------------------------------------------------------------------
 * ConfigFS support
 */

/*
 * configfs_mount_point - Identify the ConfigFS mount location
 *
 * Return a pointer to a newly allocated string containing the fully qualified
 * path to the ConfigFS mount point if located. Returns NULL if the ConfigFS
 * mount point can not be identified.
 */
static char *configfs_mount_point(void)
{
	FILE *mounts;
	char *line = NULL;
	char *path = NULL;
	size_t len = 0;

	mounts = fopen("/proc/mounts", "r");
	if (mounts == NULL)
		return NULL;

	while (getline(&line, &len, mounts) != -1) {
		if (strstr(line, "configfs")) {
			char *saveptr;
			char *token;

			/* Obtain the second token. */
			token = strtok_r(line, " ", &saveptr);
			token = strtok_r(NULL, " ", &saveptr);

			if (token)
				path = strdup(token);

			break;
		}
	}

	free(line);
	fclose(mounts);

	return path;
}

/*
 * configfs_find_uvc_function - Find the ConfigFS full path for a UVC function
 * @function: The UVC function name
 *
 * Return a pointer to a newly allocated string containing the full ConfigFS
 * path to the function if the function is found. Otherwise return NULL. The
 * returned pointer must be freed by the caller with a call to free().
 */
static char *configfs_find_uvc_function(const char *function)
{
	const char *target = function ? function : "*";
	const char *format;
	char *configfs;
	char *func_path;
	char *path;
	int ret;

	configfs = configfs_mount_point();
	if (!configfs)
		printf("Failed to locate configfs mount point, using default\n");

	/*
	 * The function description can be provided as a path from the
	 * usb_gadget root "g1/functions/uvc.0", or if there is no ambiguity
	 * over the gadget name, a shortcut "uvc.0" can be provided.
	 */
	if (!strchr(target, '/'))
		format = "%s/usb_gadget/*/functions/%s";
	else
		format = "%s/usb_gadget/%s";

	ret = asprintf(&path, format, configfs ? configfs : "/sys/kernel/config",
		       target);
	free(configfs);
	if (!ret)
		return NULL;

	func_path = path_glob_first_match(path);
	free(path);

	return func_path;
}

/*
 * configfs_free_uvc_function - Free a uvc_function_config object
 * @fc: The uvc_function_config to be freed
 *
 * Free the given @fc function previously allocated by a call to
 * configfs_parse_uvc_function().
 */
void configfs_free_uvc_function(struct uvc_function_config *fc)
{
	unsigned int i, j;

	free(fc->udc);
	free(fc->video);

	for (i = 0; i < fc->streaming.num_formats; ++i) {
		struct uvc_function_config_format *format =
			&fc->streaming.formats[i];

		for (j = 0; j < format->num_frames; ++j) {
			struct uvc_function_config_frame *frame =
				&format->frames[j];

			free(frame->intervals);
		}

		free(format->frames);
	}

	free(fc->streaming.formats);
	free(fc);
}

#define configfs_parse_child(parent, child, cfg, parse)			\
({									\
	char *__path;							\
	int __ret;							\
									\
	__path = path_join((parent), (child));				\
	if (__path) {							\
		__ret = parse(__path, (cfg));				\
		free(__path);						\
	} else {							\
		__ret = -ENOMEM;					\
	}								\
									\
	__ret;								\
})

static int configfs_parse_interface(const char *path,
				    struct uvc_function_config_interface *cfg)
{
	int ret;

	ret = attribute_read_uint(path, "bInterfaceNumber",
				  &cfg->bInterfaceNumber);

	return ret;
}

static int configfs_parse_control(const char *path,
				  struct uvc_function_config_control *cfg)
{
	int ret;

	ret = configfs_parse_interface(path, &cfg->intf);

	return ret;
}

static int configfs_parse_streaming_frame(const char *path,
			struct uvc_function_config_frame *frame)
{
	char *intervals;
	char *p;
	int ret = 0;

	ret = ret ? : attribute_read_uint(path, "bFrameIndex", &frame->index);
	ret = ret ? : attribute_read_uint(path, "wWidth", &frame->width);
	ret = ret ? : attribute_read_uint(path, "wHeight", &frame->height);
	if (ret)
		return ret;

	intervals = attribute_read_str(path, "dwFrameInterval");
	if (!intervals)
		return -EINVAL;

	for (p = intervals; *p; ) {
		unsigned int interval;
		unsigned int *mem;
		char *endp;
		size_t size;

		interval = strtoul(p, &endp, 10);
		if (*endp != '\0' && *endp != '\n') {
			ret = -EINVAL;
			break;
		}

		p = *endp ? endp + 1 : endp;

		size = sizeof *frame->intervals * (frame->num_intervals + 1);
		mem = realloc(frame->intervals, size);
		if (!mem) {
			ret = -ENOMEM;
			break;
		}

		frame->intervals = mem;
		frame->intervals[frame->num_intervals++] = interval;
	}

	free(intervals);

	return ret;
}

static int frame_filter(const struct dirent *ent)
{
	/* Accept all directories but "." and "..". */
	if (ent->d_type != DT_DIR)
		return 0;
	if (!strcmp(ent->d_name, "."))
		return 0;
	if (!strcmp(ent->d_name, ".."))
		return 0;
	return 1;
}

static int frame_compare(const void *a, const void *b)
{
	const struct uvc_function_config_frame *fa = a;
	const struct uvc_function_config_frame *fb = b;

	if (fa->index < fb->index)
		return -1;
	else if (fa->index == fb->index)
		return 0;
	else
		return 1;
}

static int configfs_parse_streaming_format(const char *path,
			struct uvc_function_config_format *format)
{
	struct dirent **entries;
	char link_target[1024];
	char *segment;
	unsigned int i;
	int n_entries;
	int ret;

	ret = attribute_read_uint(path, "bFormatIndex", &format->index);
	if (ret < 0)
		return ret;

	ret = readlink(path, link_target, sizeof(link_target) - 1);
	if (ret < 0)
		return ret;

	link_target[ret] = '\0';

	/*
	 * Extract the second-to-last path component of the link target,
	 * which contains the format descriptor type name as exposed by
	 * the UVC function driver.
	 */
	segment = strrchr(link_target, '/');
	if (!segment)
		return -EINVAL;
	*segment = '\0';
	segment = strrchr(link_target, '/');
	if (!segment)
		return -EINVAL;
	segment++;

	if (!strcmp(segment, "mjpeg")) {
		static const uint8_t guid[16] = UVC_GUID_FORMAT_MJPEG;
		memcpy(format->guid, guid, 16);
	} else if (!strcmp(segment, "uncompressed")) {
		ret = attribute_read(path, "guidFormat", format->guid,
				     sizeof(format->guid));
		if (ret < 0)
			return ret;
	} else {
		return -EINVAL;
	}

	for (i = 0; i < ARRAY_SIZE(uvc_formats); ++i) {
		if (!memcmp(uvc_formats[i].guid, format->guid, 16)) {
			format->fcc = uvc_formats[i].fcc;
			break;
		}
	}

	/* Find all entries corresponding to a frame and parse them. */
	n_entries = scandir(path, &entries, frame_filter, alphasort);
	if (n_entries < 0)
		return -errno;

	if (n_entries == 0) {
		free(entries);
		return -EINVAL;
	}

	format->num_frames = n_entries;
	format->frames = calloc(sizeof *format->frames, format->num_frames);
	if (!format->frames)
		return -ENOMEM;

	for (i = 0; i < (unsigned int)n_entries; ++i) {
		char *frame;

		frame = path_join(path, entries[i]->d_name);
		if (!frame) {
			ret = -ENOMEM;
			goto done;
		}

		ret = configfs_parse_streaming_frame(frame, &format->frames[i]);
		free(frame);
		if (ret < 0)
			goto done;
	}

	/* Sort the frames by index. */
	qsort(format->frames, format->num_frames, sizeof *format->frames,
	      frame_compare);

done:
	for (i = 0; i < (unsigned int)n_entries; ++i)
		free(entries[i]);
	free(entries);

	return ret;
}

static int format_filter(const struct dirent *ent)
{
	char *path;
	bool valid;

	/*
	 * Accept all links that point to a directory containing a
	 * "bFormatIndex" file.
	 */
	if (ent->d_type != DT_LNK)
		return 0;

	path = path_join(ent->d_name, "bFormatIndex");
	if (!path)
		return 0;

	valid = access(path, R_OK);
	free(path);
	return valid;
}

static int format_compare(const void *a, const void *b)
{
	const struct uvc_function_config_format *fa = a;
	const struct uvc_function_config_format *fb = b;

	if (fa->index < fb->index)
		return -1;
	else if (fa->index == fb->index)
		return 0;
	else
		return 1;
}

static int configfs_parse_streaming_header(const char *path,
			struct uvc_function_config_streaming *cfg)
{
	struct dirent **entries;
	unsigned int i;
	int n_entries;
	int ret;

	/* Find all entries corresponding to a format and parse them. */
	n_entries = scandir(path, &entries, format_filter, alphasort);
	if (n_entries < 0)
		return -errno;

	if (n_entries == 0) {
		free(entries);
		return -EINVAL;
	}

	cfg->num_formats = n_entries;
	cfg->formats = calloc(sizeof *cfg->formats, cfg->num_formats);
	if (!cfg->formats)
		return -ENOMEM;

	for (i = 0; i < (unsigned int)n_entries; ++i) {
		char *format;

		format = path_join(path, entries[i]->d_name);
		if (!format) {
			ret = -ENOMEM;
			goto done;
		}

		ret = configfs_parse_streaming_format(format, &cfg->formats[i]);
		free(format);
		if (ret < 0)
			goto done;
	}

	/* Sort the formats by index. */
	qsort(cfg->formats, cfg->num_formats, sizeof *cfg->formats,
	      format_compare);

done:
	for (i = 0; i < (unsigned int)n_entries; ++i)
		free(entries[i]);
	free(entries);

	return ret;
}

static int link_filter(const struct dirent *ent)
{
	/* Accept all links. */
	return ent->d_type == DT_LNK;
}

static int configfs_parse_streaming(const char *path,
				    struct uvc_function_config_streaming *cfg)
{
	char *header;
	char *class;
	int ret;

	ret = configfs_parse_interface(path, &cfg->intf);
	if (ret < 0)
		return ret;

	/*
	 * Handle the high-speed class descriptors only for now. Find the first
	 * link to the class descriptors.
	 */
	class = path_join(path, "class/hs");
	if (!class)
		return -ENOMEM;

	header = dir_first_match(class, link_filter);
	free(class);
	if (!header)
		return -EINVAL;

	ret = configfs_parse_streaming_header(header, cfg);
	free(header);
	return ret;
}

static int configfs_parse_uvc(const char *fpath,
			      struct uvc_function_config *fc)
{
	int ret = 0;

	ret = ret ? : configfs_parse_child(fpath, "control", &fc->control,
					   configfs_parse_control);
	ret = ret ? : configfs_parse_child(fpath, "streaming", &fc->streaming,
					   configfs_parse_streaming);

	/*
	 * These parameters should be part of the streaming interface in
	 * ConfigFS, but for legacy reasons they are located directly in the
	 * function directory.
	 */
	ret = ret ? : attribute_read_uint(fpath, "streaming_interval",
					  &fc->streaming.ep.bInterval);
	ret = ret ? : attribute_read_uint(fpath, "streaming_maxburst",
					  &fc->streaming.ep.bMaxBurst);
	ret = ret ? : attribute_read_uint(fpath, "streaming_maxpacket",
					  &fc->streaming.ep.wMaxPacketSize);

	return ret;
}

/*
 * configfs_parse_uvc_function - Parse a UVC function configuration in ConfigFS
 * @function: The function name
 *
 * This function locates and parse the configuration of a UVC function in
 * ConfigFS as specified by the @function name argument. The function name can
 * be fully qualified with a gadget name (e.g. "g%u/functions/uvc.%u"), or as a
 * shortcut can be an unqualified function name (e.g. "uvc.%u"). When the
 * function name is unqualified, the first function matching the name in any
 * UDC will be returned.
 *
 * Return a pointer to a newly allocated UVC function configuration structure
 * that contains configuration parameters for the function, if the function is
 * found. Otherwise return NULL. The returned pointer must be freed by the
 * caller with a call to free().
 */
struct uvc_function_config *configfs_parse_uvc_function(const char *function)
{
	struct uvc_function_config *fc;
	char *fpath;
	int ret = 0;

	fc = malloc(sizeof *fc);
	if (fc == NULL)
		return NULL;

	memset(fc, 0, sizeof *fc);

	/* Find the function in ConfigFS. */
	fpath = configfs_find_uvc_function(function);
	if (!fpath) {
		/*
		 * If the function can't be found attempt legacy parsing to
		 * support the g_webcam gadget. The function parameter contains
		 * a UDC name in that case.
		 */
		ret = parse_legacy_g_webcam(function, fc);
		if (ret) {
			configfs_free_uvc_function(fc);
			fc = NULL;
		}

		return fc;
	}

	/*
	 * Parse the function configuration. Remove the gadget name qualifier
	 * from the function name, if any.
	 */
	if (function)
		function = basename(function);

	fc->udc = attribute_read_str(fpath, "../../UDC");
	fc->video = udc_find_video_device(fc->udc, function);
	if (!fc->video) {
		ret = -ENODEV;
		goto done;
	}

	ret = configfs_parse_uvc(fpath, fc);

done:
	if (ret) {
		configfs_free_uvc_function(fc);
		fc = NULL;
	}

	free(fpath);

	return fc;
}