GNU Linux-libre 4.19.314-gnu1
[releases.git] / sound / usb / format.c
1 /*
2  *   This program is free software; you can redistribute it and/or modify
3  *   it under the terms of the GNU General Public License as published by
4  *   the Free Software Foundation; either version 2 of the License, or
5  *   (at your option) any later version.
6  *
7  *   This program is distributed in the hope that it will be useful,
8  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *   GNU General Public License for more details.
11  *
12  *   You should have received a copy of the GNU General Public License
13  *   along with this program; if not, write to the Free Software
14  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15  *
16  */
17
18 #include <linux/init.h>
19 #include <linux/slab.h>
20 #include <linux/usb.h>
21 #include <linux/usb/audio.h>
22 #include <linux/usb/audio-v2.h>
23 #include <linux/usb/audio-v3.h>
24
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27
28 #include "usbaudio.h"
29 #include "card.h"
30 #include "quirks.h"
31 #include "helper.h"
32 #include "debug.h"
33 #include "clock.h"
34 #include "format.h"
35
36 /*
37  * parse the audio format type I descriptor
38  * and returns the corresponding pcm format
39  *
40  * @dev: usb device
41  * @fp: audioformat record
42  * @format: the format tag (wFormatTag)
43  * @fmt: the format type descriptor (v1/v2) or AudioStreaming descriptor (v3)
44  */
45 static u64 parse_audio_format_i_type(struct snd_usb_audio *chip,
46                                      struct audioformat *fp,
47                                      u64 format, void *_fmt)
48 {
49         int sample_width, sample_bytes;
50         u64 pcm_formats = 0;
51
52         switch (fp->protocol) {
53         case UAC_VERSION_1:
54         default: {
55                 struct uac_format_type_i_discrete_descriptor *fmt = _fmt;
56                 if (format >= 64) {
57                         usb_audio_info(chip,
58                                        "%u:%d: invalid format type 0x%llx is detected, processed as PCM\n",
59                                        fp->iface, fp->altsetting, format);
60                         format = UAC_FORMAT_TYPE_I_PCM;
61                 }
62                 sample_width = fmt->bBitResolution;
63                 sample_bytes = fmt->bSubframeSize;
64                 format = 1ULL << format;
65                 break;
66         }
67
68         case UAC_VERSION_2: {
69                 struct uac_format_type_i_ext_descriptor *fmt = _fmt;
70                 sample_width = fmt->bBitResolution;
71                 sample_bytes = fmt->bSubslotSize;
72
73                 if (format & UAC2_FORMAT_TYPE_I_RAW_DATA) {
74                         pcm_formats |= SNDRV_PCM_FMTBIT_SPECIAL;
75                         /* flag potentially raw DSD capable altsettings */
76                         fp->dsd_raw = true;
77                 }
78
79                 format <<= 1;
80                 break;
81         }
82         case UAC_VERSION_3: {
83                 struct uac3_as_header_descriptor *as = _fmt;
84
85                 sample_width = as->bBitResolution;
86                 sample_bytes = as->bSubslotSize;
87
88                 if (format & UAC3_FORMAT_TYPE_I_RAW_DATA)
89                         pcm_formats |= SNDRV_PCM_FMTBIT_SPECIAL;
90
91                 format <<= 1;
92                 break;
93         }
94         }
95
96         if ((pcm_formats == 0) &&
97             (format == 0 || format == (1 << UAC_FORMAT_TYPE_I_UNDEFINED))) {
98                 /* some devices don't define this correctly... */
99                 usb_audio_info(chip, "%u:%d : format type 0 is detected, processed as PCM\n",
100                         fp->iface, fp->altsetting);
101                 format = 1 << UAC_FORMAT_TYPE_I_PCM;
102         }
103         if (format & (1 << UAC_FORMAT_TYPE_I_PCM)) {
104                 if (((chip->usb_id == USB_ID(0x0582, 0x0016)) ||
105                      /* Edirol SD-90 */
106                      (chip->usb_id == USB_ID(0x0582, 0x000c))) &&
107                      /* Roland SC-D70 */
108                     sample_width == 24 && sample_bytes == 2)
109                         sample_bytes = 3;
110                 else if (sample_width > sample_bytes * 8) {
111                         usb_audio_info(chip, "%u:%d : sample bitwidth %d in over sample bytes %d\n",
112                                  fp->iface, fp->altsetting,
113                                  sample_width, sample_bytes);
114                 }
115                 /* check the format byte size */
116                 switch (sample_bytes) {
117                 case 1:
118                         pcm_formats |= SNDRV_PCM_FMTBIT_S8;
119                         break;
120                 case 2:
121                         if (snd_usb_is_big_endian_format(chip, fp))
122                                 pcm_formats |= SNDRV_PCM_FMTBIT_S16_BE; /* grrr, big endian!! */
123                         else
124                                 pcm_formats |= SNDRV_PCM_FMTBIT_S16_LE;
125                         break;
126                 case 3:
127                         if (snd_usb_is_big_endian_format(chip, fp))
128                                 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3BE; /* grrr, big endian!! */
129                         else
130                                 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3LE;
131                         break;
132                 case 4:
133                         pcm_formats |= SNDRV_PCM_FMTBIT_S32_LE;
134                         break;
135                 default:
136                         usb_audio_info(chip,
137                                  "%u:%d : unsupported sample bitwidth %d in %d bytes\n",
138                                  fp->iface, fp->altsetting,
139                                  sample_width, sample_bytes);
140                         break;
141                 }
142         }
143         if (format & (1 << UAC_FORMAT_TYPE_I_PCM8)) {
144                 /* Dallas DS4201 workaround: it advertises U8 format, but really
145                    supports S8. */
146                 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
147                         pcm_formats |= SNDRV_PCM_FMTBIT_S8;
148                 else
149                         pcm_formats |= SNDRV_PCM_FMTBIT_U8;
150         }
151         if (format & (1 << UAC_FORMAT_TYPE_I_IEEE_FLOAT)) {
152                 pcm_formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
153         }
154         if (format & (1 << UAC_FORMAT_TYPE_I_ALAW)) {
155                 pcm_formats |= SNDRV_PCM_FMTBIT_A_LAW;
156         }
157         if (format & (1 << UAC_FORMAT_TYPE_I_MULAW)) {
158                 pcm_formats |= SNDRV_PCM_FMTBIT_MU_LAW;
159         }
160         if (format & ~0x3f) {
161                 usb_audio_info(chip,
162                          "%u:%d : unsupported format bits %#llx\n",
163                          fp->iface, fp->altsetting, format);
164         }
165
166         pcm_formats |= snd_usb_interface_dsd_format_quirks(chip, fp, sample_bytes);
167
168         return pcm_formats;
169 }
170
171
172 /*
173  * parse the format descriptor and stores the possible sample rates
174  * on the audioformat table (audio class v1).
175  *
176  * @dev: usb device
177  * @fp: audioformat record
178  * @fmt: the format descriptor
179  * @offset: the start offset of descriptor pointing the rate type
180  *          (7 for type I and II, 8 for type II)
181  */
182 static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audioformat *fp,
183                                        unsigned char *fmt, int offset)
184 {
185         int nr_rates = fmt[offset];
186
187         if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
188                 usb_audio_err(chip,
189                         "%u:%d : invalid UAC_FORMAT_TYPE desc\n",
190                         fp->iface, fp->altsetting);
191                 return -EINVAL;
192         }
193
194         if (nr_rates) {
195                 /*
196                  * build the rate table and bitmap flags
197                  */
198                 int r, idx;
199
200                 fp->rate_table = kmalloc_array(nr_rates, sizeof(int),
201                                                GFP_KERNEL);
202                 if (fp->rate_table == NULL)
203                         return -ENOMEM;
204
205                 fp->nr_rates = 0;
206                 fp->rate_min = fp->rate_max = 0;
207                 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
208                         unsigned int rate = combine_triple(&fmt[idx]);
209                         if (!rate)
210                                 continue;
211                         /* C-Media CM6501 mislabels its 96 kHz altsetting */
212                         /* Terratec Aureon 7.1 USB C-Media 6206, too */
213                         /* Ozone Z90 USB C-Media, too */
214                         if (rate == 48000 && nr_rates == 1 &&
215                             (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
216                              chip->usb_id == USB_ID(0x0d8c, 0x0102) ||
217                              chip->usb_id == USB_ID(0x0d8c, 0x0078) ||
218                              chip->usb_id == USB_ID(0x0ccd, 0x00b1)) &&
219                             fp->altsetting == 5 && fp->maxpacksize == 392)
220                                 rate = 96000;
221                         /* Creative VF0420/VF0470 Live Cams report 16 kHz instead of 8kHz */
222                         if (rate == 16000 &&
223                             (chip->usb_id == USB_ID(0x041e, 0x4064) ||
224                              chip->usb_id == USB_ID(0x041e, 0x4068)))
225                                 rate = 8000;
226
227                         fp->rate_table[fp->nr_rates] = rate;
228                         if (!fp->rate_min || rate < fp->rate_min)
229                                 fp->rate_min = rate;
230                         if (!fp->rate_max || rate > fp->rate_max)
231                                 fp->rate_max = rate;
232                         fp->rates |= snd_pcm_rate_to_rate_bit(rate);
233                         fp->nr_rates++;
234                 }
235                 if (!fp->nr_rates) {
236                         hwc_debug("All rates were zero. Skipping format!\n");
237                         return -EINVAL;
238                 }
239         } else {
240                 /* continuous rates */
241                 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
242                 fp->rate_min = combine_triple(&fmt[offset + 1]);
243                 fp->rate_max = combine_triple(&fmt[offset + 4]);
244         }
245         return 0;
246 }
247
248 /*
249  * Many Focusrite devices supports a limited set of sampling rates per
250  * altsetting. Maximum rate is exposed in the last 4 bytes of Format Type
251  * descriptor which has a non-standard bLength = 10.
252  */
253 static bool focusrite_valid_sample_rate(struct snd_usb_audio *chip,
254                                         struct audioformat *fp,
255                                         unsigned int rate)
256 {
257         struct usb_interface *iface;
258         struct usb_host_interface *alts;
259         unsigned char *fmt;
260         unsigned int max_rate;
261
262         iface = usb_ifnum_to_if(chip->dev, fp->iface);
263         if (!iface)
264                 return true;
265
266         alts = &iface->altsetting[fp->altset_idx];
267         fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen,
268                                       NULL, UAC_FORMAT_TYPE);
269         if (!fmt)
270                 return true;
271
272         if (fmt[0] == 10) { /* bLength */
273                 max_rate = combine_quad(&fmt[6]);
274
275                 /* Validate max rate */
276                 if (max_rate != 48000 &&
277                     max_rate != 96000 &&
278                     max_rate != 192000 &&
279                     max_rate != 384000) {
280
281                         usb_audio_info(chip,
282                                 "%u:%d : unexpected max rate: %u\n",
283                                 fp->iface, fp->altsetting, max_rate);
284
285                         return true;
286                 }
287
288                 return rate <= max_rate;
289         }
290
291         return true;
292 }
293
294 /*
295  * Helper function to walk the array of sample rate triplets reported by
296  * the device. The problem is that we need to parse whole array first to
297  * get to know how many sample rates we have to expect.
298  * Then fp->rate_table can be allocated and filled.
299  */
300 static int parse_uac2_sample_rate_range(struct snd_usb_audio *chip,
301                                         struct audioformat *fp, int nr_triplets,
302                                         const unsigned char *data)
303 {
304         int i, nr_rates = 0;
305
306         fp->rates = fp->rate_min = fp->rate_max = 0;
307
308         for (i = 0; i < nr_triplets; i++) {
309                 int min = combine_quad(&data[2 + 12 * i]);
310                 int max = combine_quad(&data[6 + 12 * i]);
311                 int res = combine_quad(&data[10 + 12 * i]);
312                 unsigned int rate;
313
314                 if ((max < 0) || (min < 0) || (res < 0) || (max < min))
315                         continue;
316
317                 /*
318                  * for ranges with res == 1, we announce a continuous sample
319                  * rate range, and this function should return 0 for no further
320                  * parsing.
321                  */
322                 if (res == 1) {
323                         fp->rate_min = min;
324                         fp->rate_max = max;
325                         fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
326                         return 0;
327                 }
328
329                 for (rate = min; rate <= max; rate += res) {
330                         /* Filter out invalid rates on Focusrite devices */
331                         if (USB_ID_VENDOR(chip->usb_id) == 0x1235 &&
332                             !focusrite_valid_sample_rate(chip, fp, rate))
333                                 goto skip_rate;
334
335                         if (fp->rate_table)
336                                 fp->rate_table[nr_rates] = rate;
337                         if (!fp->rate_min || rate < fp->rate_min)
338                                 fp->rate_min = rate;
339                         if (!fp->rate_max || rate > fp->rate_max)
340                                 fp->rate_max = rate;
341                         fp->rates |= snd_pcm_rate_to_rate_bit(rate);
342
343                         nr_rates++;
344                         if (nr_rates >= MAX_NR_RATES) {
345                                 usb_audio_err(chip, "invalid uac2 rates\n");
346                                 break;
347                         }
348
349 skip_rate:
350                         /* avoid endless loop */
351                         if (res == 0)
352                                 break;
353                 }
354         }
355
356         return nr_rates;
357 }
358
359 /*
360  * parse the format descriptor and stores the possible sample rates
361  * on the audioformat table (audio class v2 and v3).
362  */
363 static int parse_audio_format_rates_v2v3(struct snd_usb_audio *chip,
364                                        struct audioformat *fp)
365 {
366         struct usb_device *dev = chip->dev;
367         unsigned char tmp[2], *data;
368         int nr_triplets, data_size, ret = 0;
369         int clock = snd_usb_clock_find_source(chip, fp, false);
370
371         if (clock < 0) {
372                 dev_err(&dev->dev,
373                         "%s(): unable to find clock source (clock %d)\n",
374                                 __func__, clock);
375                 goto err;
376         }
377
378         /* get the number of sample rates first by only fetching 2 bytes */
379         ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
380                               USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
381                               UAC2_CS_CONTROL_SAM_FREQ << 8,
382                               snd_usb_ctrl_intf(chip) | (clock << 8),
383                               tmp, sizeof(tmp));
384
385         if (ret < 0) {
386                 dev_err(&dev->dev,
387                         "%s(): unable to retrieve number of sample rates (clock %d)\n",
388                                 __func__, clock);
389                 goto err;
390         }
391
392         nr_triplets = (tmp[1] << 8) | tmp[0];
393         data_size = 2 + 12 * nr_triplets;
394         data = kzalloc(data_size, GFP_KERNEL);
395         if (!data) {
396                 ret = -ENOMEM;
397                 goto err;
398         }
399
400         /* now get the full information */
401         ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
402                               USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
403                               UAC2_CS_CONTROL_SAM_FREQ << 8,
404                               snd_usb_ctrl_intf(chip) | (clock << 8),
405                               data, data_size);
406
407         if (ret < 0) {
408                 dev_err(&dev->dev,
409                         "%s(): unable to retrieve sample rate range (clock %d)\n",
410                                 __func__, clock);
411                 ret = -EINVAL;
412                 goto err_free;
413         }
414
415         /* Call the triplet parser, and make sure fp->rate_table is NULL.
416          * We just use the return value to know how many sample rates we
417          * will have to deal with. */
418         kfree(fp->rate_table);
419         fp->rate_table = NULL;
420         fp->nr_rates = parse_uac2_sample_rate_range(chip, fp, nr_triplets, data);
421
422         if (fp->nr_rates == 0) {
423                 /* SNDRV_PCM_RATE_CONTINUOUS */
424                 ret = 0;
425                 goto err_free;
426         }
427
428         fp->rate_table = kmalloc_array(fp->nr_rates, sizeof(int), GFP_KERNEL);
429         if (!fp->rate_table) {
430                 ret = -ENOMEM;
431                 goto err_free;
432         }
433
434         /* Call the triplet parser again, but this time, fp->rate_table is
435          * allocated, so the rates will be stored */
436         parse_uac2_sample_rate_range(chip, fp, nr_triplets, data);
437
438 err_free:
439         kfree(data);
440 err:
441         return ret;
442 }
443
444 /*
445  * parse the format type I and III descriptors
446  */
447 static int parse_audio_format_i(struct snd_usb_audio *chip,
448                                 struct audioformat *fp, u64 format,
449                                 void *_fmt)
450 {
451         snd_pcm_format_t pcm_format;
452         unsigned int fmt_type;
453         int ret;
454
455         switch (fp->protocol) {
456         default:
457         case UAC_VERSION_1:
458         case UAC_VERSION_2: {
459                 struct uac_format_type_i_continuous_descriptor *fmt = _fmt;
460
461                 fmt_type = fmt->bFormatType;
462                 break;
463         }
464         case UAC_VERSION_3: {
465                 /* fp->fmt_type is already set in this case */
466                 fmt_type = fp->fmt_type;
467                 break;
468         }
469         }
470
471         if (fmt_type == UAC_FORMAT_TYPE_III) {
472                 /* FIXME: the format type is really IECxxx
473                  *        but we give normal PCM format to get the existing
474                  *        apps working...
475                  */
476                 switch (chip->usb_id) {
477
478                 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
479                         if (chip->setup == 0x00 && 
480                             fp->altsetting == 6)
481                                 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
482                         else
483                                 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
484                         break;
485                 default:
486                         pcm_format = SNDRV_PCM_FORMAT_S16_LE;
487                 }
488                 fp->formats = pcm_format_to_bits(pcm_format);
489         } else {
490                 fp->formats = parse_audio_format_i_type(chip, fp, format, _fmt);
491                 if (!fp->formats)
492                         return -EINVAL;
493         }
494
495         /* gather possible sample rates */
496         /* audio class v1 reports possible sample rates as part of the
497          * proprietary class specific descriptor.
498          * audio class v2 uses class specific EP0 range requests for that.
499          */
500         switch (fp->protocol) {
501         default:
502         case UAC_VERSION_1: {
503                 struct uac_format_type_i_continuous_descriptor *fmt = _fmt;
504
505                 fp->channels = fmt->bNrChannels;
506                 ret = parse_audio_format_rates_v1(chip, fp, (unsigned char *) fmt, 7);
507                 break;
508         }
509         case UAC_VERSION_2:
510         case UAC_VERSION_3: {
511                 /* fp->channels is already set in this case */
512                 ret = parse_audio_format_rates_v2v3(chip, fp);
513                 break;
514         }
515         }
516
517         if (fp->channels < 1) {
518                 usb_audio_err(chip,
519                         "%u:%d : invalid channels %d\n",
520                         fp->iface, fp->altsetting, fp->channels);
521                 return -EINVAL;
522         }
523
524         return ret;
525 }
526
527 /*
528  * parse the format type II descriptor
529  */
530 static int parse_audio_format_ii(struct snd_usb_audio *chip,
531                                  struct audioformat *fp,
532                                  u64 format, void *_fmt)
533 {
534         int brate, framesize, ret;
535
536         switch (format) {
537         case UAC_FORMAT_TYPE_II_AC3:
538                 /* FIXME: there is no AC3 format defined yet */
539                 // fp->formats = SNDRV_PCM_FMTBIT_AC3;
540                 fp->formats = SNDRV_PCM_FMTBIT_U8; /* temporary hack to receive byte streams */
541                 break;
542         case UAC_FORMAT_TYPE_II_MPEG:
543                 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
544                 break;
545         default:
546                 usb_audio_info(chip,
547                          "%u:%d : unknown format tag %#llx is detected.  processed as MPEG.\n",
548                          fp->iface, fp->altsetting, format);
549                 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
550                 break;
551         }
552
553         fp->channels = 1;
554
555         switch (fp->protocol) {
556         default:
557         case UAC_VERSION_1: {
558                 struct uac_format_type_ii_discrete_descriptor *fmt = _fmt;
559                 brate = le16_to_cpu(fmt->wMaxBitRate);
560                 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
561                 usb_audio_info(chip, "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
562                 fp->frame_size = framesize;
563                 ret = parse_audio_format_rates_v1(chip, fp, _fmt, 8); /* fmt[8..] sample rates */
564                 break;
565         }
566         case UAC_VERSION_2: {
567                 struct uac_format_type_ii_ext_descriptor *fmt = _fmt;
568                 brate = le16_to_cpu(fmt->wMaxBitRate);
569                 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
570                 usb_audio_info(chip, "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
571                 fp->frame_size = framesize;
572                 ret = parse_audio_format_rates_v2v3(chip, fp);
573                 break;
574         }
575         }
576
577         return ret;
578 }
579
580 int snd_usb_parse_audio_format(struct snd_usb_audio *chip,
581                                struct audioformat *fp, u64 format,
582                                struct uac_format_type_i_continuous_descriptor *fmt,
583                                int stream)
584 {
585         int err;
586
587         switch (fmt->bFormatType) {
588         case UAC_FORMAT_TYPE_I:
589         case UAC_FORMAT_TYPE_III:
590                 err = parse_audio_format_i(chip, fp, format, fmt);
591                 break;
592         case UAC_FORMAT_TYPE_II:
593                 err = parse_audio_format_ii(chip, fp, format, fmt);
594                 break;
595         default:
596                 usb_audio_info(chip,
597                          "%u:%d : format type %d is not supported yet\n",
598                          fp->iface, fp->altsetting,
599                          fmt->bFormatType);
600                 return -ENOTSUPP;
601         }
602         fp->fmt_type = fmt->bFormatType;
603         if (err < 0)
604                 return err;
605 #if 1
606         /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
607         /* extigy apparently supports sample rates other than 48k
608          * but not in ordinary way.  so we enable only 48k atm.
609          */
610         if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
611             chip->usb_id == USB_ID(0x041e, 0x3020) ||
612             chip->usb_id == USB_ID(0x041e, 0x3061)) {
613                 if (fmt->bFormatType == UAC_FORMAT_TYPE_I &&
614                     fp->rates != SNDRV_PCM_RATE_48000 &&
615                     fp->rates != SNDRV_PCM_RATE_96000)
616                         return -ENOTSUPP;
617         }
618 #endif
619         return 0;
620 }
621
622 int snd_usb_parse_audio_format_v3(struct snd_usb_audio *chip,
623                                struct audioformat *fp,
624                                struct uac3_as_header_descriptor *as,
625                                int stream)
626 {
627         u64 format = le64_to_cpu(as->bmFormats);
628         int err;
629
630         /*
631          * Type I format bits are D0..D6
632          * This test works because type IV is not supported
633          */
634         if (format & 0x7f)
635                 fp->fmt_type = UAC_FORMAT_TYPE_I;
636         else
637                 fp->fmt_type = UAC_FORMAT_TYPE_III;
638
639         err = parse_audio_format_i(chip, fp, format, as);
640         if (err < 0)
641                 return err;
642
643         return 0;
644 }